linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: monstr@seznam.cz
To: linux-kernel@vger.kernel.org
Cc: arnd@arndb.de, linux-arch@vger.kernel.org,
	stephen.neuendorffer@xilinx.com, John.Linn@xilinx.com,
	john.williams@petalogix.com, matthew@wil.cx,
	will.newton@gmail.com, drepper@redhat.com,
	microblaze-uclinux@itee.uq.edu.au, grant.likely@secretlab.ca,
	Michal Simek <monstr@monstr.eu>
Subject: [PATCH 11/56] microblaze_v2: kernel modules support
Date: Sun,  4 May 2008 13:41:00 +0200	[thread overview]
Message-ID: <0873f3a1f3b72591735c6461b51964693cac52e5.1209897266.git.monstr@monstr.eu> (raw)
In-Reply-To: <2391e49379fb6639f57d9d6e5811f3d49a4c6fda.1209897266.git.monstr@monstr.eu>
In-Reply-To: <a4a778e34c66d126f5c4bf1ca423cf32950ea5ab.1209897266.git.monstr@monstr.eu>

From: Michal Simek <monstr@monstr.eu>


Signed-off-by: Michal Simek <monstr@monstr.eu>
---
 arch/microblaze/kernel/microblaze_ksyms.c |   49 ++++++++++
 arch/microblaze/kernel/module.c           |  149 +++++++++++++++++++++++++++++
 include/asm-microblaze/module.h           |   41 ++++++++
 3 files changed, 239 insertions(+), 0 deletions(-)
 create mode 100644 arch/microblaze/kernel/microblaze_ksyms.c
 create mode 100644 arch/microblaze/kernel/module.c
 create mode 100644 include/asm-microblaze/module.h

diff --git a/arch/microblaze/kernel/microblaze_ksyms.c b/arch/microblaze/kernel/microblaze_ksyms.c
new file mode 100644
index 0000000..3efa1a1
--- /dev/null
+++ b/arch/microblaze/kernel/microblaze_ksyms.c
@@ -0,0 +1,49 @@
+/*
+ * arch/microblaze/kernel/microblaze_ksyms.c
+ *
+ * Copyright (C) 2008 Michal Simek <monstr@monstr.eu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+#include <linux/module.h>
+#include <linux/string.h>
+#include <linux/cryptohash.h>
+#include <linux/delay.h>
+#include <linux/in6.h>
+#include <linux/syscalls.h>
+
+#include <asm/checksum.h>
+#include <asm/io.h>
+#include <asm/page.h>
+#include <asm/system.h>
+#include <asm/uaccess.h>
+
+/*
+ * libgcc functions - functions that are used internally by the
+ * compiler... (prototypes are not correct though, but that
+ * doesn't really matter since they're not versioned).
+ */
+extern void __ashldi3(void);
+EXPORT_SYMBOL(__ashldi3);
+extern void __ashrdi3(void);
+EXPORT_SYMBOL(__ashrdi3);
+extern void __divsi3(void);
+EXPORT_SYMBOL(__divsi3);
+extern void __lshrdi3(void);
+EXPORT_SYMBOL(__lshrdi3);
+extern void __modsi3(void);
+EXPORT_SYMBOL(__modsi3);
+extern void __mulsi3(void);
+EXPORT_SYMBOL(__mulsi3);
+extern void __muldi3(void);
+EXPORT_SYMBOL(__muldi3);
+extern void __ucmpdi2(void);
+EXPORT_SYMBOL(__ucmpdi2);
+extern void __udivsi3(void);
+EXPORT_SYMBOL(__udivsi3);
+extern void __umodsi3(void);
+EXPORT_SYMBOL(__umodsi3);
+/*extern void fpundefinstr(void);
+extern void fp_enter(void);*/
diff --git a/arch/microblaze/kernel/module.c b/arch/microblaze/kernel/module.c
new file mode 100644
index 0000000..efef0ba
--- /dev/null
+++ b/arch/microblaze/kernel/module.c
@@ -0,0 +1,149 @@
+/*
+ * linux/arch/microblaze/kernel/module.c
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ */
+#include <linux/module.h>
+#include <linux/moduleloader.h>
+#include <linux/kernel.h>
+#include <linux/elf.h>
+#include <linux/vmalloc.h>
+#include <linux/slab.h>
+#include <linux/fs.h>
+#include <linux/string.h>
+
+#include <asm/pgtable.h>
+
+#if 0
+#define DBPRINTK(...) printk(__VA_ARGS__)
+#else
+#define DBPRINTK(...)
+#endif
+
+void *module_alloc(unsigned long size)
+{
+	void *ret;
+	ret = (size == 0) ? NULL : vmalloc(size);
+	DBPRINTK("module_alloc (%08lx@%08lx)\n", size, (unsigned long int)ret);
+	return ret;
+}
+
+void module_free(struct module *module, void *region)
+{
+	DBPRINTK("module_free(%s,%08lx)\n", module->name, region);
+	vfree(region);
+}
+
+int module_frob_arch_sections(Elf_Ehdr *hdr,
+				Elf_Shdr *sechdrs,
+				char *secstrings,
+				struct module *mod)
+{
+	return 0;
+}
+
+int
+apply_relocate(Elf32_Shdr *sechdrs, const char *strtab, unsigned int symindex,
+		unsigned int relsec, struct module *module)
+{
+
+	printk(KERN_ERR "module %s: ADD RELOCATION unsupported\n",
+		module->name);
+	return -ENOEXEC;
+
+}
+
+int
+apply_relocate_add(Elf32_Shdr *sechdrs, const char *strtab,
+	unsigned int symindex, unsigned int relsec, struct module *module)
+{
+
+	unsigned int i;
+	Elf32_Rela *rela = (void *)sechdrs[relsec].sh_addr;
+	Elf32_Sym *sym;
+	unsigned long int *location;
+	unsigned long int locoffs;
+	unsigned long int value;
+	unsigned long int old_value;
+
+	DBPRINTK("Applying add relocation section %u to %u\n",
+		relsec, sechdrs[relsec].sh_info);
+
+	for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rela); i++) {
+
+		location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr +
+				rela[i].r_offset;
+		sym = (Elf32_Sym *)sechdrs[symindex].sh_addr +
+			ELF32_R_SYM(rela[i].r_info);
+		value = sym->st_value + rela[i].r_addend;
+
+		switch (ELF32_R_TYPE(rela[i].r_info)) {
+
+		/*
+		 * Be careful! mb-gcc / mb-ld splits the relocs between the
+		 * text and the reloc table. In general this means we must
+		 * read the current contents of (*location), add any offset
+		 * then store the result back in
+		 */
+
+		case R_MICROBLAZE_32:
+			old_value = *location;
+			*location = value + old_value;
+			DBPRINTK("R_MICROBLAZE_32 (%08lx->%08lx)\n",
+				old_value, value);
+			break;
+
+		case R_MICROBLAZE_64:
+			old_value = ((location[0] & 0x0000FFFF) << 16) |
+				((location[1] & 0x0000FFFF));
+			value += old_value;
+			location[0] = (location[0] & 0xFFFF0000) |
+					(value >> 16);
+			location[1] = (location[1] & 0xFFFF0000) |
+					(value & 0xFFFF);
+			DBPRINTK("R_MICROBLAZE_64 (%08lx->%08lx)\n",
+				old_value, value);
+			break;
+
+		case R_MICROBLAZE_64_PCREL:
+			locoffs = (location[0] & 0xFFFF) << 16 |
+				(location[1] & 0xFFFF);
+			value -= (unsigned long int)(location) + 4 +
+				locoffs;
+			location[0] = (location[0] & 0xFFFF0000) |
+					(value >> 16);
+			location[1] = (location[1] & 0xFFFF0000) |
+					(value & 0xFFFF);
+			DBPRINTK("R_MICROBLAZE_64_PCREL (%08lx)\n",
+				value);
+			break;
+
+		case R_MICROBLAZE_NONE:
+			DBPRINTK("R_MICROBLAZE_NONE\n");
+			break;
+
+		default:
+			printk(KERN_ERR "module %s: "
+				"Unknown relocation: %u\n",
+				module->name,
+				ELF32_R_TYPE(rela->r_info));
+			return -ENOEXEC;
+		}
+	}
+	return 0;
+}
+
+int
+module_finalize(const Elf32_Ehdr *hdr, const Elf_Shdr *sechdrs,
+		struct module *module)
+{
+	return 0;
+}
+
+void
+module_arch_cleanup(struct module *mod)
+{
+}
diff --git a/include/asm-microblaze/module.h b/include/asm-microblaze/module.h
new file mode 100644
index 0000000..8ee1bba
--- /dev/null
+++ b/include/asm-microblaze/module.h
@@ -0,0 +1,41 @@
+/*
+ * include/asm-microblaze/module.h
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
+ * Copyright (C) 2006 Atmark Techno, Inc.
+ */
+
+#ifndef _ASM_MICROBLAZE_MODULE_H
+#define _ASM_MICROBLAZE_MODULE_H
+
+#define EM_XILINX_MICROBLAZE 0xbaab
+
+/* Microblaze Relocations */
+#define R_MICROBLAZE_NONE 0
+#define R_MICROBLAZE_32 1
+#define R_MICROBLAZE_32_PCREL 2
+#define R_MICROBLAZE_64_PCREL 3
+#define R_MICROBLAZE_32_PCREL_LO 4
+#define R_MICROBLAZE_64 5
+#define R_MICROBLAZE_32_LO 6
+#define R_MICROBLAZE_SRO32 7
+#define R_MICROBLAZE_SRW32 8
+#define R_MICROBLAZE_64_NONE 9
+#define R_MICROBLAZE_32_SYM_OP_SYM 10
+/* Keep this the last entry. */
+#define R_MICROBLAZE_NUM 11
+
+struct mod_arch_specific {
+	int foo;
+};
+
+#define Elf_Shdr	Elf32_Shdr
+#define Elf_Sym		Elf32_Sym
+#define Elf_Ehdr	Elf32_Ehdr
+
+typedef struct { volatile int counter; } module_t;
+
+#endif /* _ASM_MICROBLAZE_MODULE_H */
-- 
1.5.4.GIT


  reply	other threads:[~2008-05-04 16:17 UTC|newest]

Thread overview: 170+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-04 11:40 Microblaze patches V2 monstr
2008-05-04 11:40 ` [PATCH 01/56] microblaze_v2: Kconfig patches monstr
2008-05-04 11:40   ` [PATCH 02/56] microblaze_v2: Makefiles for Microblaze cpu monstr
2008-05-04 11:40     ` [PATCH 03/56] microblaze_v2: Cpuinfo handling monstr
2008-05-04 11:40       ` [PATCH 04/56] microblaze_v2: Open firmware files monstr
2008-05-04 11:40         ` [PATCH 05/56] microblaze_v2: Support for semaphores monstr
2008-05-04 11:40           ` [PATCH 06/56] microblaze_v2: exception handling monstr
2008-05-04 11:40             ` [PATCH 07/56] microblaze_v2: Signal support monstr
2008-05-04 11:40               ` [PATCH 08/56] microblaze_v2: Interrupt handling, timer support, supported function monstr
2008-05-04 11:40                 ` [PATCH 09/56] microblaze_v2: cache support monstr
2008-05-04 11:40                   ` [PATCH 10/56] microblaze_v2: Generic dts file for platforms monstr
2008-05-04 11:41                     ` monstr [this message]
2008-05-04 11:41                       ` [PATCH 12/56] microblaze_v2: lmb support monstr
2008-05-04 11:41                         ` [PATCH 13/56] microblaze_v2: PVR support, cpuinfo support monstr
2008-05-04 11:41                           ` [PATCH 14/56] microblaze_v2: defconfig file monstr
2008-05-04 11:41                             ` [PATCH 15/56] microblaze_v2: head.S + linker script monstr
2008-05-04 11:41                               ` [PATCH 16/56] microblaze_v2: supported function for memory - kernel/lib monstr
2008-05-04 11:41                                 ` [PATCH 17/56] microblaze_v2: checksum support monstr
2008-05-04 11:41                                   ` [PATCH 18/56] microblaze_v2: early_printk support monstr
2008-05-04 11:41                                     ` [PATCH 19/56] microblaze_v2: uaccess files monstr
2008-05-04 11:41                                       ` [PATCH 20/56] microblaze_v2: heartbeat file monstr
2008-05-04 11:41                                         ` [PATCH 21/56] microblaze_v2: setup.c - system setting monstr
2008-05-04 11:41                                           ` [PATCH 22/56] microblaze_v2: asm-offsets monstr
2008-05-04 11:41                                             ` [PATCH 23/56] microblaze_v2: process and init task function monstr
2008-05-04 11:41                                               ` [PATCH 24/56] microblaze_v2: time support monstr
2008-05-04 11:41                                                 ` [PATCH 25/56] microblaze_v2: ptrace support monstr
2008-05-04 11:41                                                   ` [PATCH 26/56] microblaze_v2: traps support monstr
2008-05-04 11:41                                                     ` [PATCH 27/56] microblaze_v2: support for a.out monstr
2008-05-04 11:41                                                       ` [PATCH 28/56] microblaze_v2: memory inicialization, MMU, TLB monstr
2008-05-04 11:41                                                         ` [PATCH 29/56] microblaze_v2: page.h, segment.h, unaligned.h monstr
2008-05-04 11:41                                                           ` [PATCH 30/56] microblaze_v2: includes SHM*, msgbuf monstr
2008-05-04 11:41                                                             ` [PATCH 31/56] microblaze_v2: bug headers files monstr
2008-05-04 11:41                                                               ` [PATCH 32/56] microblaze_v2: definitions of types monstr
2008-05-04 11:41                                                                 ` [PATCH 33/56] microblaze_v2: ioctl support monstr
2008-05-04 11:41                                                                   ` [PATCH 34/56] microblaze_v2: io.h IO operations monstr
2008-05-04 11:41                                                                     ` [PATCH 35/56] microblaze_v2: headers for executables format FLAT, ELF monstr
2008-05-04 11:41                                                                       ` [PATCH 36/56] microblaze_v2: dma support monstr
2008-05-04 11:41                                                                         ` [PATCH 37/56] microblaze_v2: headers for irq monstr
2008-05-04 11:41                                                                           ` [PATCH 38/56] microblaze_v2: atomic.h bitops.h byteorder.h monstr
2008-05-04 11:41                                                                             ` [PATCH 39/56] microblaze_v2: headers pgalloc.h pgtable.h monstr
2008-05-04 11:41                                                                               ` [PATCH 40/56] microblaze_v2: system.h pvr.h processor.h monstr
2008-05-04 11:41                                                                                 ` [PATCH 41/56] microblaze_v2: clinkage.h linkage.h sections.h kmap_types.h monstr
2008-05-04 11:41                                                                                   ` [PATCH 42/56] microblaze_v2: stats headers monstr
2008-05-04 11:41                                                                                     ` [PATCH 43/56] microblaze_v2: termbits.h termios.h monstr
2008-05-04 11:41                                                                                       ` [PATCH 44/56] microblaze_v2: sigcontext.h siginfo.h monstr
2008-05-04 11:41                                                                                         ` [PATCH 45/56] microblaze_v2: headers simple files - empty or redirect to asm-generic monstr
2008-05-04 11:41                                                                                           ` [PATCH 46/56] microblaze_v2: headers files entry.h current.h mman.h registers.h sembuf.h monstr
2008-05-04 11:41                                                                                             ` [PATCH 47/56] microblaze_v2: device.h param.h topology.h monstr
2008-05-04 11:41                                                                                               ` [PATCH 48/56] microblaze_v2: pool.h socket.h monstr
2008-05-04 11:41                                                                                                 ` [PATCH 49/56] microblaze_v2: fcntl.h sockios.h ucontext.h monstr
2008-05-04 11:41                                                                                                   ` [PATCH 50/56] microblaze_v2: setup.h string.h thread_info.h monstr
2008-05-04 11:41                                                                                                     ` [PATCH 51/56] microblaze_v2: Kbuild file monstr
2008-05-04 11:41                                                                                                       ` [PATCH 52/56] microblaze_v2: pci headers monstr
2008-05-04 11:41                                                                                                         ` [PATCH 53/56] microblaze_v2: IPC headers monstr
2008-05-04 11:41                                                                                                           ` [PATCH 54/56] microblaze_v2: entry.S monstr
2008-05-04 11:41                                                                                                             ` [PATCH 55/56] microblaze_v2: sys_microblaze.c monstr
2008-05-04 11:41                                                                                                               ` [PATCH 56/56] microblaze_v2: syscall_table.S and unistd.h monstr
2008-05-04 22:45                                                                                                         ` [PATCH 52/56] microblaze_v2: pci headers Arnd Bergmann
2008-05-05 14:08                                                                                                           ` Michal Simek
2008-05-05  2:39                                                                                                     ` [PATCH 50/56] microblaze_v2: setup.h string.h thread_info.h John Williams
2008-05-05 14:24                                                                                                       ` Michal Simek
2008-05-04 22:43                                                                                                   ` [PATCH 49/56] microblaze_v2: fcntl.h sockios.h ucontext.h Arnd Bergmann
2008-05-05 14:08                                                                                                     ` Michal Simek
2008-05-04 22:39                                                                                                 ` [PATCH 48/56] microblaze_v2: pool.h socket.h Arnd Bergmann
2008-05-04 22:37                                                                                               ` [PATCH 47/56] microblaze_v2: device.h param.h topology.h Arnd Bergmann
2008-05-05 14:07                                                                                                 ` Michal Simek
2008-05-05  9:54                                                                                             ` [PATCH 46/56] microblaze_v2: headers files entry.h current.h mman.h registers.h sembuf.h Arnd Bergmann
2008-05-06  9:07                                                                                               ` Michal Simek
2008-05-06 20:57                                                                                             ` Geert Uytterhoeven
2008-05-05  2:34                                                                                           ` [PATCH 45/56] microblaze_v2: headers simple files - empty or redirect to asm-generic John Williams
2008-05-05 15:10                                                                                             ` Grant Likely
2008-05-06  9:02                                                                                               ` Arnd Bergmann
2008-05-06 14:47                                                                                             ` Stephen Rothwell
2008-05-06 15:23                                                                                               ` Michal Simek
2008-05-06 15:38                                                                                                 ` Grant Likely
2008-05-06 16:21                                                                                                 ` Arnd Bergmann
2008-05-07 18:46                                                                                                   ` Michal Simek
2008-05-05  9:50                                                                                       ` [PATCH 43/56] microblaze_v2: termbits.h termios.h Arnd Bergmann
2008-05-04 22:31                                                                                     ` [PATCH 42/56] microblaze_v2: stats headers Arnd Bergmann
2008-05-04 21:58                                                                             ` [PATCH 38/56] microblaze_v2: atomic.h bitops.h byteorder.h Arnd Bergmann
2008-05-05  2:28                                                                               ` John Williams
2008-05-06  8:42                                                                                 ` Michal Simek
2008-05-07  7:26                                                                           ` [PATCH 37/56] microblaze_v2: headers for irq Thomas Gleixner
2008-05-11 13:56                                                                             ` Michal Simek
2008-05-05  2:25                                                                         ` [PATCH 36/56] microblaze_v2: dma support John Williams
2008-05-05  6:45                                                                           ` Geert Uytterhoeven
2008-05-06  9:16                                                                             ` Michal Simek
2008-05-06  9:48                                                                               ` Geert Uytterhoeven
2008-05-06  9:53                                                                                 ` Michal Simek
2008-05-06 11:17                                                                                   ` Geert Uytterhoeven
2008-05-06 11:24                                                                                     ` Arnd Bergmann
2008-05-06 13:20                                                                                       ` Michal Simek
2008-05-06 15:36                                                                                         ` Arnd Bergmann
2008-05-07  6:24                                                                                           ` Michal Simek
2008-05-07  7:17                                                                                             ` Geert Uytterhoeven
2008-05-07  9:21                                                                                               ` Arnd Bergmann
2008-05-07 18:43                                                                                                 ` Michal Simek
2008-05-05  2:24                                                                       ` [PATCH 35/56] microblaze_v2: headers for executables format FLAT, ELF John Williams
2008-05-04 21:34                                                                   ` [PATCH 33/56] microblaze_v2: ioctl support Arnd Bergmann
2008-05-05 14:06                                                                     ` Michal Simek
2008-05-04 21:28                                                                 ` [PATCH 32/56] microblaze_v2: definitions of types Arnd Bergmann
2008-05-04 21:10                                                             ` [PATCH 30/56] microblaze_v2: includes SHM*, msgbuf Arnd Bergmann
2008-05-05  2:19                                                 ` [PATCH 24/56] microblaze_v2: time support John Williams
2008-05-05 14:22                                                   ` Michal Simek
2008-05-06  0:30                                                     ` John Williams
2008-05-06  9:56                                                       ` Michal Simek
2008-05-06 10:02                                                       ` Michal Simek
2008-05-06 11:38                                                         ` Arnd Bergmann
2008-05-06 13:26                                                           ` Michal Simek
2008-05-06 22:50                                                             ` John Williams
2008-05-06 14:28                                                           ` Grant Likely
2008-05-06 16:36                                                           ` Stephen Neuendorffer
2008-05-07  7:22                                                 ` Thomas Gleixner
2008-05-05  2:15                                           ` [PATCH 21/56] microblaze_v2: setup.c - system setting John Williams
2008-05-05 14:21                                             ` Michal Simek
2008-05-05 14:36                                     ` [PATCH 18/56] microblaze_v2: early_printk support Grant Likely
2008-05-05 20:10                                       ` Michal Simek
2008-05-05 23:22                                     ` John Williams
2008-05-06  8:14                                       ` Michal Simek
2008-05-04 19:59                                   ` [PATCH 17/56] microblaze_v2: checksum support Arnd Bergmann
2008-05-05 14:05                                     ` Michal Simek
2008-05-05  2:14                           ` [PATCH 13/56] microblaze_v2: PVR support, cpuinfo support John Williams
2008-05-05 14:20                             ` Michal Simek
2008-05-05  2:11                         ` [PATCH 12/56] microblaze_v2: lmb support John Williams
2008-05-05 21:32                           ` Segher Boessenkool
2008-05-05 14:31                     ` [PATCH 10/56] microblaze_v2: Generic dts file for platforms Grant Likely
2008-05-05 20:07                       ` Michal Simek
2008-05-05 17:25                     ` Stephen Neuendorffer
2008-05-05 23:16                       ` John Williams
2008-05-05 23:32                         ` Stephen Neuendorffer
2008-05-06  0:10                           ` John Williams
2008-05-06  0:17                             ` Stephen Neuendorffer
2008-05-06  7:50                             ` Michal Simek
2008-05-06  7:38                           ` Michal Simek
2008-05-05  2:09                   ` [PATCH 09/56] microblaze_v2: cache support John Williams
2008-05-05 17:37                   ` [microblaze-uclinux] " Stephen Neuendorffer
2008-05-06  9:22                     ` Michal Simek
2008-05-05 22:37                   ` Stephen Neuendorffer
2008-05-05  1:58                 ` [PATCH 08/56] microblaze_v2: Interrupt handling, timer support, supported function John Williams
2008-05-05 14:20                   ` Michal Simek
2008-05-07  7:04                 ` Thomas Gleixner
2008-05-11 13:55                   ` Michal Simek
2008-05-11 14:35                     ` Thomas Gleixner
2008-05-11 21:55                       ` Michal Simek
2008-05-04 19:52               ` [PATCH 07/56] microblaze_v2: Signal support Arnd Bergmann
2008-05-05 21:32               ` Stephen Neuendorffer
2008-05-05 23:33                 ` John Williams
2008-05-06  0:13                   ` Stephen Neuendorffer
2008-05-06  0:25                     ` John Williams
2008-05-06  0:33                       ` Stephen Neuendorffer
2008-05-06  9:41                         ` Michal Simek
2008-05-05 14:24         ` [PATCH 04/56] microblaze_v2: Open firmware files Grant Likely
2008-05-05 21:56         ` Stephen Neuendorffer
2008-05-06  7:27           ` Michal Simek
2008-05-07 16:04         ` [microblaze-uclinux] " Stephen Neuendorffer
2008-05-07 18:40           ` Michal Simek
2008-05-07 18:59             ` Grant Likely
2008-05-07 19:12               ` Michal Simek
2008-05-07 20:14                 ` Stephen Neuendorffer
2008-05-05  1:52       ` [PATCH 03/56] microblaze_v2: Cpuinfo handling John Williams
2008-05-05 14:19         ` Michal Simek
2008-05-05  1:47     ` [PATCH 02/56] microblaze_v2: Makefiles for Microblaze cpu John Williams
2008-05-06  8:51       ` Michal Simek
2008-05-04 21:24   ` [PATCH 01/56] microblaze_v2: Kconfig patches Grant Likely
2008-05-05  6:36     ` Michal Simek
2008-05-05  1:42   ` John Williams
2008-05-05  6:46     ` Michal Simek
2008-05-05 14:16     ` Michal Simek
2008-05-05  2:30 ` Microblaze patches V2 John Williams
2008-05-05  7:02   ` Michal Simek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0873f3a1f3b72591735c6461b51964693cac52e5.1209897266.git.monstr@monstr.eu \
    --to=monstr@seznam.cz \
    --cc=John.Linn@xilinx.com \
    --cc=arnd@arndb.de \
    --cc=drepper@redhat.com \
    --cc=grant.likely@secretlab.ca \
    --cc=john.williams@petalogix.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matthew@wil.cx \
    --cc=microblaze-uclinux@itee.uq.edu.au \
    --cc=monstr@monstr.eu \
    --cc=stephen.neuendorffer@xilinx.com \
    --cc=will.newton@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).