login
Login
/
Register
Search
Header Space
Forums
News
Jobs
Blogs
Features
Man Pages
Site
Home
»
Mailing list archives
»
linux-kernel
»
2008
»
May
»
5
Re: [PATCH 18/56] microblaze_v2: early_printk support
view
thread
Score:
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From:
Michal Simek <monstr@...>
To: Grant Likely <grant.likely@...>
Cc: <linux-kernel@...>, <arnd@...>, <linux-arch@...>, <stephen.neuendorffer@...>, <John.Linn@...>, <john.williams@...>, <matthew@...>, <will.newton@...>, <drepper@...>, <microblaze-uclinux@...>, Michal Simek <monstr@...>
Subject:
Re: [PATCH 18/56] microblaze_v2: early_printk support
Date: Monday, May 5, 2008 - 4:10 pm
I added it to future plan on wiki. M
quoted text
> On Sun, May 4, 2008 at 5:41 AM, <monstr@seznam.cz> wrote: >> From: Michal Simek <monstr@monstr.eu> >> >> >> Signed-off-by: Michal Simek <monstr@monstr.eu> > > I'm not opposed to this as is, but longer term will you be getting the > base address out of the device tree instead of from > CONFIG_EARLY_PRINTK_UARTLITE_ADDRESS? > > Cheers, > g. > >> --- >> arch/microblaze/kernel/early_printk.c | 115 +++++++++++++++++++++++++++++++++ >> 1 files changed, 115 insertions(+), 0 deletions(-) >> create mode 100644 arch/microblaze/kernel/early_printk.c >> >> diff --git a/arch/microblaze/kernel/early_printk.c b/arch/microblaze/kernel/early_printk.c >> new file mode 100644 >> index 0000000..0f533ff >> --- /dev/null >> +++ b/arch/microblaze/kernel/early_printk.c >> @@ -0,0 +1,115 @@ >> +/* >> + * arch/microblaze/kernel/early_printk.c >> + * >> + * Copyright (C) 2007 Michal Simek <monstr@monstr.eu> >> + * Copyright (C) 2003-2006 Yasushi SHOJI <yashi@atmark-techno.com> >> + * >> + * Early printk support for Microblaze. >> + * >> + * Once we got some system without uart light, we need to refactor. >> + */ >> + >> +#include <linux/console.h> >> +#include <linux/kernel.h> >> +#include <linux/init.h> >> +#include <linux/string.h> >> +#include <linux/tty.h> >> +#include <asm/io.h> >> +#include <asm/processor.h> >> +#include <asm/fcntl.h> >> +#include <asm/setup.h> >> + >> +#ifdef CONFIG_EARLY_PRINTK >> +#define BASE_ADDR ((unsigned char *)CONFIG_EARLY_PRINTK_UARTLITE_ADDRESS) >> + >> +#define RX_FIFO BASE_ADDR >> +#define TX_FIFO ((unsigned long *)(BASE_ADDR + 4)) >> +#define STATUS ((unsigned long *)(BASE_ADDR + 8)) >> +#define CONTROL ((unsigned long *)(BASE_ADDR + 12)) >> + >> +static void early_printk_putc(char c) >> +{ >> + while (ioread32(STATUS) & (1<<3)); >> + iowrite32((c & 0xff), TX_FIFO); >> +} >> + >> +static void early_printk_write(struct console *unused, >> + const char *s, unsigned n) >> +{ >> + while (*s && n-- > 0) { >> + early_printk_putc(*s); >> + if (*s == '\n') >> + early_printk_putc('\r'); >> + s++; >> + } >> +} >> + >> +static struct console early_serial_console = { >> + .name = "earlyser", >> + .write = early_printk_write, >> + .flags = CON_PRINTBUFFER, >> + .index = -1, >> +}; >> + >> +/* Direct interface for emergencies */ >> +static struct console *early_console = &early_serial_console; >> +static int early_console_initialized; >> + >> +void early_printk(const char *fmt, ...) >> +{ >> + char buf[512]; >> + int n; >> + va_list ap; >> + >> + if (early_console_initialized) { >> + va_start(ap, fmt); >> + n = vscnprintf(buf, 512, fmt, ap); >> + early_console->write(early_console, buf, n); >> + va_end(ap); >> + } >> +} >> + >> +static int __initdata keep_early; >> + >> +int __init setup_early_printk(char *opt) >> +{ >> + char *space; >> + char buf[256]; >> + >> + if (early_console_initialized) >> + return 1; >> + >> + strlcpy(buf, opt, sizeof(buf)); >> + space = strchr(buf, ' '); >> + if (space) >> + *space = 0; >> + >> + if (strstr(buf, "keep")) >> + keep_early = 1; >> + >> + early_console = &early_serial_console; >> + early_console_initialized = 1; >> + register_console(early_console); >> + return 0; >> +} >> +#if 0 >> +static void __init disable_early_printk(void) >> +{ >> + if (!early_console_initialized || !early_console) >> + return; >> + if (!keep_early) { >> + printk(KERN_INFO "disabling early console\n"); >> + unregister_console(early_console); >> + early_console_initialized = 0; >> + } else >> + printk(KERN_INFO "keeping early console\n"); >> +} >> +#endif >> + >> +__setup("earlyprintk=", setup_early_printk); >> + >> +#else >> +void early_printk(const char *fmt, ...) >> +{ >> +} >> +#endif >> -- >> 1.5.4.GIT >> >> > > >
--
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
Microblaze patches V2
,
, (Sun May 4, 7:40 am)
[PATCH 01/56] microblaze_v2: Kconfig patches
,
, (Sun May 4, 7:40 am)
Re: [PATCH 01/56] microblaze_v2: Kconfig patches
, Grant Likely
, (Sun May 4, 5:24 pm)
Re: [PATCH 01/56] microblaze_v2: Kconfig patches
, Michal Simek
, (Mon May 5, 2:36 am)
[PATCH 02/56] microblaze_v2: Makefiles for Microblaze cpu
,
, (Sun May 4, 7:40 am)
[PATCH 03/56] microblaze_v2: Cpuinfo handling
,
, (Sun May 4, 7:40 am)
[PATCH 04/56] microblaze_v2: Open firmware files
,
, (Sun May 4, 7:40 am)
RE: [microblaze-uclinux] [PATCH 04/56] microblaze_v2: Open f...
, Stephen Neuendorffer
, (Wed May 7, 12:04 pm)
Re: [microblaze-uclinux] [PATCH 04/56] microblaze_v2: Open f...
, Michal Simek
, (Wed May 7, 2:40 pm)
Re: [microblaze-uclinux] [PATCH 04/56] microblaze_v2: Open f...
, Grant Likely
, (Wed May 7, 2:59 pm)
Re: [microblaze-uclinux] [PATCH 04/56] microblaze_v2: Open f...
, Michal Simek
, (Wed May 7, 3:12 pm)
RE: [microblaze-uclinux] [PATCH 04/56] microblaze_v2: Open f...
, Stephen Neuendorffer
, (Wed May 7, 4:14 pm)
RE: [PATCH 04/56] microblaze_v2: Open firmware files
, Stephen Neuendorffer
, (Mon May 5, 5:56 pm)
Re: [PATCH 04/56] microblaze_v2: Open firmware files
, Michal Simek
, (Tue May 6, 3:27 am)
Re: [PATCH 04/56] microblaze_v2: Open firmware files
, Grant Likely
, (Mon May 5, 10:24 am)
[PATCH 05/56] microblaze_v2: Support for semaphores
,
, (Sun May 4, 7:40 am)
[PATCH 06/56] microblaze_v2: exception handling
,
, (Sun May 4, 7:40 am)
[PATCH 07/56] microblaze_v2: Signal support
,
, (Sun May 4, 7:40 am)
RE: [PATCH 07/56] microblaze_v2: Signal support
, Stephen Neuendorffer
, (Mon May 5, 5:32 pm)
RE: [PATCH 07/56] microblaze_v2: Signal support
, John Williams
, (Mon May 5, 7:33 pm)
RE: [PATCH 07/56] microblaze_v2: Signal support
, Stephen Neuendorffer
, (Mon May 5, 8:13 pm)
RE: [PATCH 07/56] microblaze_v2: Signal support
, John Williams
, (Mon May 5, 8:25 pm)
RE: [PATCH 07/56] microblaze_v2: Signal support
, Stephen Neuendorffer
, (Mon May 5, 8:33 pm)
Re: [PATCH 07/56] microblaze_v2: Signal support
, Michal Simek
, (Tue May 6, 5:41 am)
[PATCH 08/56] microblaze_v2: Interrupt handling, timer suppo...
,
, (Sun May 4, 7:40 am)
Re: [PATCH 08/56] microblaze_v2: Interrupt handling, timer s...
, Thomas Gleixner
, (Wed May 7, 3:04 am)
Re: [PATCH 08/56] microblaze_v2: Interrupt handling, timer s...
, Michal Simek
, (Sun May 11, 9:55 am)
Re: [PATCH 08/56] microblaze_v2: Interrupt handling, timer s...
, Thomas Gleixner
, (Sun May 11, 10:35 am)
Re: [PATCH 08/56] microblaze_v2: Interrupt handling, timer s...
, Michal Simek
, (Sun May 11, 5:55 pm)
[PATCH 09/56] microblaze_v2: cache support
,
, (Sun May 4, 7:40 am)
RE: [PATCH 09/56] microblaze_v2: cache support
, Stephen Neuendorffer
, (Mon May 5, 6:37 pm)
RE: [microblaze-uclinux] [PATCH 09/56] microblaze_v2: cache ...
, Stephen Neuendorffer
, (Mon May 5, 1:37 pm)
Re: [microblaze-uclinux] [PATCH 09/56] microblaze_v2: cache ...
, Michal Simek
, (Tue May 6, 5:22 am)
[PATCH 10/56] microblaze_v2: Generic dts file for platforms
,
, (Sun May 4, 7:40 am)
RE: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, Stephen Neuendorffer
, (Mon May 5, 1:25 pm)
RE: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, John Williams
, (Mon May 5, 7:16 pm)
RE: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, Stephen Neuendorffer
, (Mon May 5, 7:32 pm)
Re: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, Michal Simek
, (Tue May 6, 3:38 am)
RE: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, John Williams
, (Mon May 5, 8:10 pm)
Re: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, Michal Simek
, (Tue May 6, 3:50 am)
RE: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, Stephen Neuendorffer
, (Mon May 5, 8:17 pm)
Re: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, Grant Likely
, (Mon May 5, 10:31 am)
Re: [PATCH 10/56] microblaze_v2: Generic dts file for platfo...
, Michal Simek
, (Mon May 5, 4:07 pm)
[PATCH 11/56] microblaze_v2: kernel modules support
,
, (Sun May 4, 7:41 am)
[PATCH 12/56] microblaze_v2: lmb support
,
, (Sun May 4, 7:41 am)
[PATCH 13/56] microblaze_v2: PVR support, cpuinfo support
,
, (Sun May 4, 7:41 am)
[PATCH 14/56] microblaze_v2: defconfig file
,
, (Sun May 4, 7:41 am)
[PATCH 15/56] microblaze_v2: head.S + linker script
,
, (Sun May 4, 7:41 am)
[PATCH 16/56] microblaze_v2: supported function for memory -...
,
, (Sun May 4, 7:41 am)
[PATCH 17/56] microblaze_v2: checksum support
,
, (Sun May 4, 7:41 am)
[PATCH 18/56] microblaze_v2: early_printk support
,
, (Sun May 4, 7:41 am)
Re: [PATCH 18/56] microblaze_v2: early_printk support
, John Williams
, (Mon May 5, 7:22 pm)
Re: [PATCH 18/56] microblaze_v2: early_printk support
, Michal Simek
, (Tue May 6, 4:14 am)
Re: [PATCH 18/56] microblaze_v2: early_printk support
, Grant Likely
, (Mon May 5, 10:36 am)
Re: [PATCH 18/56] microblaze_v2: early_printk support
, Michal Simek
, (Mon May 5, 4:10 pm)
[PATCH 19/56] microblaze_v2: uaccess files
,
, (Sun May 4, 7:41 am)
[PATCH 20/56] microblaze_v2: heartbeat file
,
, (Sun May 4, 7:41 am)
[PATCH 21/56] microblaze_v2: setup.c - system setting
,
, (Sun May 4, 7:41 am)
[PATCH 22/56] microblaze_v2: asm-offsets
,
, (Sun May 4, 7:41 am)
[PATCH 23/56] microblaze_v2: process and init task function
,
, (Sun May 4, 7:41 am)
[PATCH 24/56] microblaze_v2: time support
,
, (Sun May 4, 7:41 am)
Re: [PATCH 24/56] microblaze_v2: time support
, Thomas Gleixner
, (Wed May 7, 3:22 am)
[PATCH 25/56] microblaze_v2: ptrace support
,
, (Sun May 4, 7:41 am)
[PATCH 26/56] microblaze_v2: traps support
,
, (Sun May 4, 7:41 am)
[PATCH 27/56] microblaze_v2: support for a.out
,
, (Sun May 4, 7:41 am)
[PATCH 28/56] microblaze_v2: memory inicialization, MMU, TLB
,
, (Sun May 4, 7:41 am)
[PATCH 29/56] microblaze_v2: page.h, segment.h, unaligned.h
,
, (Sun May 4, 7:41 am)
[PATCH 30/56] microblaze_v2: includes SHM*, msgbuf
,
, (Sun May 4, 7:41 am)
[PATCH 31/56] microblaze_v2: bug headers files
,
, (Sun May 4, 7:41 am)
[PATCH 32/56] microblaze_v2: definitions of types
,
, (Sun May 4, 7:41 am)
[PATCH 33/56] microblaze_v2: ioctl support
,
, (Sun May 4, 7:41 am)
[PATCH 34/56] microblaze_v2: io.h IO operations
,
, (Sun May 4, 7:41 am)
[PATCH 35/56] microblaze_v2: headers for executables format ...
,
, (Sun May 4, 7:41 am)
[PATCH 36/56] microblaze_v2: dma support
,
, (Sun May 4, 7:41 am)
[PATCH 37/56] microblaze_v2: headers for irq
,
, (Sun May 4, 7:41 am)
Re: [PATCH 37/56] microblaze_v2: headers for irq
, Thomas Gleixner
, (Wed May 7, 3:26 am)
Re: [PATCH 37/56] microblaze_v2: headers for irq
, Michal Simek
, (Sun May 11, 9:56 am)
[PATCH 38/56] microblaze_v2: atomic.h bitops.h byteorder.h
,
, (Sun May 4, 7:41 am)
[PATCH 39/56] microblaze_v2: headers pgalloc.h pgtable.h
,
, (Sun May 4, 7:41 am)
[PATCH 40/56] microblaze_v2: system.h pvr.h processor.h
,
, (Sun May 4, 7:41 am)
[PATCH 41/56] microblaze_v2: clinkage.h linkage.h sections.h...
,
, (Sun May 4, 7:41 am)
[PATCH 42/56] microblaze_v2: stats headers
,
, (Sun May 4, 7:41 am)
[PATCH 43/56] microblaze_v2: termbits.h termios.h
,
, (Sun May 4, 7:41 am)
[PATCH 44/56] microblaze_v2: sigcontext.h siginfo.h
,
, (Sun May 4, 7:41 am)
[PATCH 45/56] microblaze_v2: headers simple files - empty or...
,
, (Sun May 4, 7:41 am)
[PATCH 46/56] microblaze_v2: headers files entry.h current.h...
,
, (Sun May 4, 7:41 am)
Re: [PATCH 46/56] microblaze_v2: headers files entry.h curre...
, Geert Uytterhoeven
, (Tue May 6, 4:57 pm)
[PATCH 47/56] microblaze_v2: device.h param.h topology.h
,
, (Sun May 4, 7:41 am)
[PATCH 48/56] microblaze_v2: pool.h socket.h
,
, (Sun May 4, 7:41 am)
[PATCH 49/56] microblaze_v2: fcntl.h sockios.h ucontext.h
,
, (Sun May 4, 7:41 am)
[PATCH 50/56] microblaze_v2: setup.h string.h thread_info.h
,
, (Sun May 4, 7:41 am)
[PATCH 51/56] microblaze_v2: Kbuild file
,
, (Sun May 4, 7:41 am)
[PATCH 52/56] microblaze_v2: pci headers
,
, (Sun May 4, 7:41 am)
[PATCH 53/56] microblaze_v2: IPC headers
,
, (Sun May 4, 7:41 am)
[PATCH 54/56] microblaze_v2: entry.S
,
, (Sun May 4, 7:41 am)
[PATCH 55/56] microblaze_v2: sys_microblaze.c
,
, (Sun May 4, 7:41 am)
[PATCH 56/56] microblaze_v2: syscall_table.S and unistd.h
,
, (Sun May 4, 7:41 am)
Re: [PATCH 52/56] microblaze_v2: pci headers
, Arnd Bergmann
, (Sun May 4, 6:45 pm)
Re: [PATCH 52/56] microblaze_v2: pci headers
, Michal Simek
, (Mon May 5, 10:08 am)
Re: [PATCH 50/56] microblaze_v2: setup.h string.h thread_inf...
, John Williams
, (Sun May 4, 10:39 pm)
Re: [PATCH 50/56] microblaze_v2: setup.h string.h thread_inf...
, Michal Simek
, (Mon May 5, 10:24 am)
Re: [PATCH 49/56] microblaze_v2: fcntl.h sockios.h ucontext.h
, Arnd Bergmann
, (Sun May 4, 6:43 pm)
Re: [PATCH 49/56] microblaze_v2: fcntl.h sockios.h ucontext.h
, Michal Simek
, (Mon May 5, 10:08 am)
Re: [PATCH 48/56] microblaze_v2: pool.h socket.h
, Arnd Bergmann
, (Sun May 4, 6:39 pm)
Re: [PATCH 47/56] microblaze_v2: device.h param.h topology.h
, Arnd Bergmann
, (Sun May 4, 6:37 pm)
Re: [PATCH 47/56] microblaze_v2: device.h param.h topology.h
, Michal Simek
, (Mon May 5, 10:07 am)
Re: [PATCH 46/56] microblaze_v2: headers files entry.h curre...
, Arnd Bergmann
, (Mon May 5, 5:54 am)
Re: [PATCH 46/56] microblaze_v2: headers files entry.h curre...
, Michal Simek
, (Tue May 6, 5:07 am)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, John Williams
, (Sun May 4, 10:34 pm)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, Stephen Rothwell
, (Tue May 6, 10:47 am)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, Michal Simek
, (Tue May 6, 11:23 am)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, Arnd Bergmann
, (Tue May 6, 12:21 pm)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, Michal Simek
, (Wed May 7, 2:46 pm)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, Grant Likely
, (Tue May 6, 11:38 am)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, Grant Likely
, (Mon May 5, 11:10 am)
Re: [PATCH 45/56] microblaze_v2: headers simple files - empt...
, Arnd Bergmann
, (Tue May 6, 5:02 am)
Re: [PATCH 43/56] microblaze_v2: termbits.h termios.h
, Arnd Bergmann
, (Mon May 5, 5:50 am)
Re: [PATCH 42/56] microblaze_v2: stats headers
, Arnd Bergmann
, (Sun May 4, 6:31 pm)
Re: [PATCH 38/56] microblaze_v2: atomic.h bitops.h byteorder.h
, Arnd Bergmann
, (Sun May 4, 5:58 pm)
Re: [PATCH 38/56] microblaze_v2: atomic.h bitops.h byteorder.h
, John Williams
, (Sun May 4, 10:28 pm)
Re: [PATCH 38/56] microblaze_v2: atomic.h bitops.h byteorder.h
, Michal Simek
, (Tue May 6, 4:42 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, John Williams
, (Sun May 4, 10:25 pm)
Re: [PATCH 36/56] microblaze_v2: dma support
, Geert Uytterhoeven
, (Mon May 5, 2:45 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Michal Simek
, (Tue May 6, 5:16 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Geert Uytterhoeven
, (Tue May 6, 5:48 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Michal Simek
, (Tue May 6, 5:53 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Geert Uytterhoeven
, (Tue May 6, 7:17 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Arnd Bergmann
, (Tue May 6, 7:24 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Michal Simek
, (Tue May 6, 9:20 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Arnd Bergmann
, (Tue May 6, 11:36 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Michal Simek
, (Wed May 7, 2:24 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Geert Uytterhoeven
, (Wed May 7, 3:17 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Arnd Bergmann
, (Wed May 7, 5:21 am)
Re: [PATCH 36/56] microblaze_v2: dma support
, Michal Simek
, (Wed May 7, 2:43 pm)
Re: [PATCH 35/56] microblaze_v2: headers for executables for...
, John Williams
, (Sun May 4, 10:24 pm)
Re: [PATCH 33/56] microblaze_v2: ioctl support
, Arnd Bergmann
, (Sun May 4, 5:34 pm)
Re: [PATCH 33/56] microblaze_v2: ioctl support
, Michal Simek
, (Mon May 5, 10:06 am)
Re: [PATCH 32/56] microblaze_v2: definitions of types
, Arnd Bergmann
, (Sun May 4, 5:28 pm)
Re: [PATCH 30/56] microblaze_v2: includes SHM*, msgbuf
, Arnd Bergmann
, (Sun May 4, 5:10 pm)
Re: [PATCH 24/56] microblaze_v2: time support
, John Williams
, (Sun May 4, 10:19 pm)
Re: [PATCH 24/56] microblaze_v2: time support
, Michal Simek
, (Mon May 5, 10:22 am)
Re: [PATCH 24/56] microblaze_v2: time support
, John Williams
, (Mon May 5, 8:30 pm)
Re: [PATCH 24/56] microblaze_v2: time support
, Michal Simek
, (Tue May 6, 6:02 am)
Re: [PATCH 24/56] microblaze_v2: time support
, Arnd Bergmann
, (Tue May 6, 7:38 am)
RE: [PATCH 24/56] microblaze_v2: time support
, Stephen Neuendorffer
, (Tue May 6, 12:36 pm)
Re: [PATCH 24/56] microblaze_v2: time support
, Grant Likely
, (Tue May 6, 10:28 am)
Re: [PATCH 24/56] microblaze_v2: time support
, Michal Simek
, (Tue May 6, 9:26 am)
Re: [PATCH 24/56] microblaze_v2: time support
, John Williams
, (Tue May 6, 6:50 pm)
Re: [PATCH 24/56] microblaze_v2: time support
, Michal Simek
, (Tue May 6, 5:56 am)
Re: [PATCH 21/56] microblaze_v2: setup.c - system setting
, John Williams
, (Sun May 4, 10:15 pm)
Re: [PATCH 21/56] microblaze_v2: setup.c - system setting
, Michal Simek
, (Mon May 5, 10:21 am)
Re: [PATCH 17/56] microblaze_v2: checksum support
, Arnd Bergmann
, (Sun May 4, 3:59 pm)
Re: [PATCH 17/56] microblaze_v2: checksum support
, Michal Simek
, (Mon May 5, 10:05 am)
Re: [PATCH 13/56] microblaze_v2: PVR support, cpuinfo support
, John Williams
, (Sun May 4, 10:14 pm)
Re: [PATCH 13/56] microblaze_v2: PVR support, cpuinfo support
, Michal Simek
, (Mon May 5, 10:20 am)
Re: [PATCH 12/56] microblaze_v2: lmb support
, John Williams
, (Sun May 4, 10:11 pm)
Re: [PATCH 12/56] microblaze_v2: lmb support
, Segher Boessenkool
, (Mon May 5, 5:32 pm)
Re: [PATCH 09/56] microblaze_v2: cache support
, John Williams
, (Sun May 4, 10:09 pm)
Re: [PATCH 08/56] microblaze_v2: Interrupt handling, timer s...
, John Williams
, (Sun May 4, 9:58 pm)
Re: [PATCH 08/56] microblaze_v2: Interrupt handling, timer s...
, Michal Simek
, (Mon May 5, 10:20 am)
Re: [PATCH 07/56] microblaze_v2: Signal support
, Arnd Bergmann
, (Sun May 4, 3:52 pm)
Re: [PATCH 03/56] microblaze_v2: Cpuinfo handling
, John Williams
, (Sun May 4, 9:52 pm)
Re: [PATCH 03/56] microblaze_v2: Cpuinfo handling
, Michal Simek
, (Mon May 5, 10:19 am)
Re: [PATCH 02/56] microblaze_v2: Makefiles for Microblaze cpu
, John Williams
, (Sun May 4, 9:47 pm)
Re: [PATCH 02/56] microblaze_v2: Makefiles for Microblaze cpu
, Michal Simek
, (Tue May 6, 4:51 am)
Re: [PATCH 01/56] microblaze_v2: Kconfig patches
, John Williams
, (Sun May 4, 9:42 pm)
Re: [PATCH 01/56] microblaze_v2: Kconfig patches
, Michal Simek
, (Mon May 5, 10:16 am)
Re: [PATCH 01/56] microblaze_v2: Kconfig patches
, Michal Simek
, (Mon May 5, 2:46 am)
Re: Microblaze patches V2
, John Williams
, (Sun May 4, 10:30 pm)
Re: Microblaze patches V2
, Michal Simek
, (Mon May 5, 3:02 am)
Navigation
Create content
Mailing list archives
Recent posts
Mail archive search
Enter your search terms.
all mailing lists
alsa-devel
dragonflybsd-bugs
dragonflybsd-commit
dragonflybsd-docs
dragonflybsd-kernel
dragonflybsd-submit
dragonflybsd-user
freebsd-announce
freebsd-bugs
freebsd-chat
freebsd-cluster
freebsd-current
freebsd-drivers
freebsd-embeded
freebsd-fs
freebsd-hackers
freebsd-hardware
freebsd-mobile
freebsd-net
freebsd-performance
freebsd-pf
freebsd-security
freebsd-security-notifications
freebsd-threads
git
git-commits-head
linux-activists
linux-arm
linux-ath5k-devel
linux-btrfs
linux-c-programming
linux-driver-devel
linux-ext4
linux-fsdevel
linux-ia64
linux-input
linux-kernel
linux-kernel-janitors
linux-kernel-mentors
linux-kernel-newbies
linux-kvm
linux-net
linux-netdev
linux-newbie
linux-nfs
linux-raid
linux-scsi
linux-security-module
linux-sparse
linux-usb
linux-usb-devel
madwifi-devel
netbsd-announce
netbsd-tech-kern
openbsd-announce
openbsd-bugs
openbsd-ipv6
openbsd-misc
openbsd-security-announce
openbsd-smp
openbsd-source-changes
openbsd-tech
openfabrics-general
openmoko-community
openmoko-devel
openmoko-kernel
reiserfs-devel
tux3
ucarp
Optionally limit your search to a specific mailing list.
advanced
Popular discussions
linux-kernel
:
Alan Cox
[PATCH 00/76] Queued TTY Patches
Nick Piggin
[patch 1/6] mm: debug check for the fault vs invalidate race
Andi Kleen
[PATCH] [1/22] x86_64: dma_ops as const
Linus Torvalds
Linux 2.6.27-rc8
git
:
Jeff King
Re: What's cooking in git/spearce.git (topics)
Jeff King
Re: [RFC] origin link for cherry-pick and revert
Matt Seitz (matseitz)
Symbolic link documentation
Jon Smirl
Huge win, compressing a window of delta runs as a unit
openbsd-misc
:
Richard Stallman
Real men don't attack straw men
Leon Dippenaar
New tcp stack attack
Nuno Magalhães
Can't scp, ssh is slow to authenticate.
Brandon Lee
DELL PERC 5iR slow performance
linux-netdev
:
KOSAKI Motohiro
[bug?] tg3: Failed to load firmware "tigon/tg3_tso.bin"
Denys Vlasenko
Re: bnx2 dirver's firmware images
Pavel Emelyanov
[PATCH 0/8] Cleanup/fix the sk_alloc() call
Kok, Auke
Re: [PATCH] drivers/net: remove network drivers' last few uses of IRQF_SAMPLE_RANDOM
Latest forum posts
usb mic not detected
2 hours ago
Applications and Utilities
linux-2.6.10
3 hours ago
Linux kernel
How to detect usb device insertioin and removal event ?
6 hours ago
Linux general
Extended configuration Read/Write
6 hours ago
Windows
Add ext2 inode field
17 hours ago
Linux kernel
the kernel how to power off the machine
1 day ago
Linux kernel
struct gendisk via request_queue
1 day ago
Linux kernel
page initialization during kernel initialization
2 days ago
Linux kernel
Read Transport Layer Data form network packets (tcp/ip)
2 days ago
Linux kernel
Getting blinking screen in Fedora 9
3 days ago
Linux general
Show all forums...
Recent Tags
Linux
Intel
2.6.27-rc8
-rc
-rc8
bugs
Linus Torvalds
quote
2.6.27
more tags
Colocation donated by:
Who's online
There are currently
3 users
and
1425 guests
online.
Online users
Jeremy
kingneutron
strcmp
Syndicate
speck-geostationary