linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: monstr@seznam.cz
To: linux-kernel@vger.kernel.org
Cc: linux-arch@vger.kernel.org, alan@lxorguk.ukuu.org.uk,
	Michal Simek <monstr@monstr.eu>,
	vapier.adi@gmail.com, arnd@arndb.de, matthew@wil.cx,
	microblaze-uclinux@itee.uq.edu.au, drepper@redhat.com,
	linuxppc-dev@ozlabs.org, will.newton@gmail.com, hpa@zytor.com,
	John.Linn@xilinx.com, john.williams@petalogix.com
Subject: [PATCH 31/60] microblaze_v4: memory inicialization, MMU, TLB
Date: Thu, 26 Jun 2008 14:30:00 +0200	[thread overview]
Message-ID: <1214483429-32360-32-git-send-email-monstr@seznam.cz> (raw)
In-Reply-To: <1214483429-32360-31-git-send-email-monstr@seznam.cz>

From: Michal Simek <monstr@monstr.eu>


Signed-off-by: Michal Simek <monstr@monstr.eu>
---
 arch/microblaze/mm/init.c            |  184 ++++++++++++++++++++++++++++++++++
 include/asm-microblaze/mmu.h         |   17 +++
 include/asm-microblaze/mmu_context.h |   22 ++++
 include/asm-microblaze/tlb.h         |   16 +++
 include/asm-microblaze/tlbflush.h    |   20 ++++
 5 files changed, 259 insertions(+), 0 deletions(-)
 create mode 100644 arch/microblaze/mm/init.c
 create mode 100644 include/asm-microblaze/mmu.h
 create mode 100644 include/asm-microblaze/mmu_context.h
 create mode 100644 include/asm-microblaze/tlb.h
 create mode 100644 include/asm-microblaze/tlbflush.h

diff --git a/arch/microblaze/mm/init.c b/arch/microblaze/mm/init.c
new file mode 100644
index 0000000..5bb3e01
--- /dev/null
+++ b/arch/microblaze/mm/init.c
@@ -0,0 +1,184 @@
+/*
+ * arch/microblaze/mm/init.c
+ *
+ * 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) 2007-2008 Michal Simek <monstr@monstr.eu>
+ * Copyright (C) 2006 Atmark Techno, Inc.
+ */
+
+#undef DEBUG
+
+#include <linux/autoconf.h>
+#include <linux/init.h>
+#include <linux/mm.h>
+#include "../../../mm/internal.h"
+#include <linux/swap.h>
+#include <linux/bootmem.h>
+#include <linux/pfn.h>
+#include <linux/lmb.h>
+
+#include <asm/sections.h>
+#include <asm/uaccess.h>
+#include <asm/system.h>
+#include <asm/pgtable.h>
+
+char *klimit = _end;
+static unsigned int memory_start;
+unsigned int memory_end; /* due to mm/nommu.c */
+
+unsigned int __page_offset;
+/* EXPORT_SYMBOL(__page_offset); */
+
+void __init setup_memory(void)
+{
+	int i;
+	unsigned int start, end;
+	unsigned long map_size;
+	unsigned long start_pfn = 0;
+	unsigned long end_pfn = 0;
+
+	/* Find main memory where is the kernel */
+	for (i = 0; i < lmb.memory.cnt; i++) {
+		start_pfn = lmb.memory.region[i].base >> PAGE_SHIFT;
+		end_pfn = start_pfn + lmb_size_pages(&lmb.memory, i);
+		if ((start_pfn <= (((int)_text) >> PAGE_SHIFT)) &&
+			(((int)_text >> PAGE_SHIFT) <= end_pfn)) {
+			memory_end = (end_pfn << PAGE_SHIFT) - 1;
+			PAGE_OFFSET = memory_start = start_pfn << PAGE_SHIFT;
+			pr_debug("%s: Main mem: 0x%x-0x%x\n", __func__,
+				memory_start, memory_end);
+			break;
+		}
+	}
+	/*
+	 * start_pfn - start page - starting point
+	 * end_pfn - first unused page
+	 * memory_start - base physical address of main memory
+	 * memory_end - end physical address of main memory
+	 * PAGE_OFFSET - moving of first page
+	 *
+	 * Kernel:
+	 * start: base phys address of kernel - page align
+	 * end: base phys address of kernel - page align
+	 *
+	 * min_low_pfn - the first page (mm/bootmem.c - node_boot_start)
+	 * max_low_pfn
+	 * max_mapnr - the first unused page (mm/bootmem.c - node_low_pfn)
+	 * num_physpages - number of all pages
+	 *
+	 */
+
+	/* reservation of region where is the kernel */
+	start = PFN_DOWN((int)_text) << PAGE_SHIFT;
+	end = PAGE_ALIGN((unsigned long)klimit);
+	lmb_reserve(start, end - start);
+	pr_debug("%s: kernel addr 0x%08x-0x%08x\n", __func__, start, end);
+
+	/* calculate free pages, etc. */
+	min_low_pfn = PFN_UP(start_pfn << PAGE_SHIFT);
+	max_mapnr = PFN_DOWN((end_pfn << PAGE_SHIFT));
+	max_low_pfn = max_mapnr - min_low_pfn;
+	num_physpages = max_mapnr - min_low_pfn + 1;
+	printk(KERN_INFO "%s: max_mapnr: %#lx\n", __func__, max_mapnr);
+	printk(KERN_INFO "%s: min_low_pfn: %#lx\n", __func__, min_low_pfn);
+	printk(KERN_INFO "%s: max_low_pfn: %#lx\n", __func__, max_low_pfn);
+
+	/* add place for data pages */
+	map_size = init_bootmem_node(NODE_DATA(0), PFN_UP(end),
+			min_low_pfn, max_mapnr);
+	lmb_reserve(PFN_UP(end) << PAGE_SHIFT, map_size);
+
+	/* free bootmem is whole main memory */
+	free_bootmem_node(NODE_DATA(0), start_pfn << PAGE_SHIFT,
+			((end_pfn - start_pfn) << PAGE_SHIFT) - 1);
+
+	/* reserve allocate blocks */
+	for (i = 0; i < lmb.reserved.cnt; i++) {
+		pr_debug("reserved %d - 0x%08x-0x%08x\n", i,
+			(u32) lmb.reserved.region[i].base,
+			(u32) lmb_size_bytes(&lmb.reserved, i));
+		reserve_bootmem(lmb.reserved.region[i].base,
+			lmb_size_bytes(&lmb.reserved, i) - 1, BOOTMEM_DEFAULT);
+	}
+}
+
+void __init paging_init(void)
+{
+	int i;
+	unsigned long zones_size[MAX_NR_ZONES];
+
+	/* we can DMA to/from any address.  put all page into
+	 * ZONE_DMA. */
+	zones_size[ZONE_NORMAL] = max_low_pfn;
+
+	/* every other zones are empty */
+	for (i = 1; i < MAX_NR_ZONES; i++)
+		zones_size[i] = 0;
+
+	free_area_init_node(0, NODE_DATA(0), zones_size,
+		NODE_DATA(0)->bdata->node_boot_start >> PAGE_SHIFT, NULL);
+}
+
+void free_init_pages(char *what, unsigned long begin, unsigned long end)
+{
+	unsigned long addr;
+
+	for (addr = begin; addr < end; addr += PAGE_SIZE) {
+		ClearPageReserved(virt_to_page(addr));
+		init_page_count(virt_to_page(addr));
+		memset((void *)addr, 0xcc, PAGE_SIZE);
+		free_page(addr);
+		totalram_pages++;
+	}
+	printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
+}
+
+#ifdef CONFIG_BLK_DEV_INITRD
+void free_initrd_mem(unsigned long start, unsigned long end)
+{
+	int pages = 0;
+	for (; start < end; start += PAGE_SIZE) {
+		ClearPageReserved(virt_to_page(start));
+		set_page_count(virt_to_page(start), 1);
+		free_page(start);
+		totalram_pages++;
+		pages++;
+	}
+	printk(KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages);
+}
+#endif
+
+void free_initmem(void)
+{
+	free_init_pages("unused kernel memory",
+			(unsigned long)(&__init_begin),
+			(unsigned long)(&__init_end));
+}
+
+/* FIXME from arch/powerpc/mm/mem.c*/
+void show_mem(void)
+{
+	printk(KERN_NOTICE "%s\n", __func__);
+}
+
+void __init mem_init(void)
+{
+	high_memory = (void *)(memory_end);
+
+	/* this will put all memory onto the freelists */
+	totalram_pages += free_all_bootmem();
+
+	printk(KERN_INFO "Memory: %luk/%luk available\n",
+	       (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
+	       num_physpages << (PAGE_SHIFT-10));
+}
+
+/* Check against bounds of physical memory */
+int ___range_ok(unsigned long addr, unsigned long size)
+{
+	return ((addr < memory_start) ||
+		((addr + size) >= memory_end));
+}
diff --git a/include/asm-microblaze/mmu.h b/include/asm-microblaze/mmu.h
new file mode 100644
index 0000000..e9cd52d
--- /dev/null
+++ b/include/asm-microblaze/mmu.h
@@ -0,0 +1,17 @@
+/*
+ * Copyright (C) 2006 Atmark Techno, Inc.
+ *
+ * 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.
+ */
+
+#ifndef _ASM_MICROBLAZE_MMU_H
+#define _ASM_MICROBLAZE_MMU_H
+
+typedef struct {
+	struct vm_list_struct	*vmlist;
+	unsigned long		end_brk;
+} mm_context_t;
+
+#endif /* _ASM_MICROBLAZE_MMU_H */
diff --git a/include/asm-microblaze/mmu_context.h b/include/asm-microblaze/mmu_context.h
new file mode 100644
index 0000000..bd4952a
--- /dev/null
+++ b/include/asm-microblaze/mmu_context.h
@@ -0,0 +1,22 @@
+/*
+ * Copyright (C) 2006 Atmark Techno, Inc.
+ *
+ * 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.
+ */
+
+#ifndef _ASM_MICROBLAZE_MMU_CONTEXT_H
+#define _ASM_MICROBLAZE_MMU_CONTEXT_H
+
+#define init_new_context(tsk, mm)		({ 0; })
+
+#define enter_lazy_tlb(mm, tsk)			do {} while (0)
+#define change_mm_context(old, ctx, _pml4)	do {} while (0)
+#define destroy_context(mm)			do {} while (0)
+#define deactivate_mm(tsk, mm)			do {} while (0)
+#define switch_mm(prev, next, tsk)		do {} while (0)
+#define activate_mm(prev, next)			do {} while (0)
+
+
+#endif /* _ASM_MICROBLAZE_MMU_CONTEXT_H */
diff --git a/include/asm-microblaze/tlb.h b/include/asm-microblaze/tlb.h
new file mode 100644
index 0000000..d1dfe37
--- /dev/null
+++ b/include/asm-microblaze/tlb.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright (C) 2006 Atmark Techno, Inc.
+ *
+ * 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.
+ */
+
+#ifndef _ASM_MICROBLAZE_TLB_H
+#define _ASM_MICROBLAZE_TLB_H
+
+#define tlb_flush(tlb)	do {} while (0)
+
+#include <asm-generic/tlb.h>
+
+#endif /* _ASM_MICROBLAZE_TLB_H */
diff --git a/include/asm-microblaze/tlbflush.h b/include/asm-microblaze/tlbflush.h
new file mode 100644
index 0000000..d7fe762
--- /dev/null
+++ b/include/asm-microblaze/tlbflush.h
@@ -0,0 +1,20 @@
+/*
+ * Copyright (C) 2006 Atmark Techno, Inc.
+ *
+ * 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.
+ */
+
+#ifndef _ASM_MICROBLAZE_TLBFLUSH_H
+#define _ASM_MICROBLAZE_TLBFLUSH_H
+
+#define flush_tlb()				BUG()
+#define flush_tlb_all()				BUG()
+#define flush_tlb_mm(mm)			BUG()
+#define flush_tlb_page(vma, addr)		BUG()
+#define flush_tlb_range(mm, start, end)		BUG()
+#define flush_tlb_pgtables(mm, start, end)	BUG()
+#define flush_tlb_kernel_range(start, end)	BUG()
+
+#endif /* _ASM_MICROBLAZE_TLBFLUSH_H */
-- 
1.5.4.GIT

  reply	other threads:[~2008-06-26 12:42 UTC|newest]

Thread overview: 137+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-26 12:29 Microblaze init port v4 monstr
2008-06-26 12:29 ` [PATCH 01/60] microblaze_v4: Kconfig patches monstr
2008-06-26 12:29   ` [PATCH 02/60] microblaze_v4: Makefiles for Microblaze cpu monstr
2008-06-26 12:29     ` [PATCH 03/60] microblaze_v4: Cpuinfo handling monstr
2008-06-26 12:29       ` [PATCH 04/60] microblaze_v4: Open firmware files1 monstr
2008-06-26 12:29         ` [PATCH 05/60] microblaze_v4: Open firmware files2 monstr
2008-06-26 12:29           ` [PATCH 06/60] microblaze_v4: Open firmware common files monstr
2008-06-26 12:29             ` [PATCH 07/60] microblaze_v4: Support for semaphores monstr
2008-06-26 12:29               ` [PATCH 08/60] microblaze_v4: exception handling monstr
2008-06-26 12:29                 ` [PATCH 09/60] microblaze_v4: Signal support monstr
2008-06-26 12:29                   ` [PATCH 10/60] microblaze_v4: Interrupt handling, timer support, supported function monstr
2008-06-26 12:29                     ` [PATCH 11/60] microblaze_v4: cache support monstr
2008-06-26 12:29                       ` [PATCH 12/60] microblaze_v4: Generic dts file for platforms monstr
2008-06-26 12:29                         ` [PATCH 13/60] microblaze_v4: kernel modules support monstr
2008-06-26 12:29                           ` [PATCH 14/60] microblaze_v4: lmb support monstr
2008-06-26 12:29                             ` [PATCH 15/60] microblaze_v4: PVR support, cpuinfo support monstr
2008-06-26 12:29                               ` [PATCH 16/60] microblaze_v4: defconfig file monstr
2008-06-26 12:29                                 ` [PATCH 17/60] microblaze_v4: head.S + linker script monstr
2008-06-26 12:29                                   ` [PATCH 18/60] microblaze_v4: supported function for memory - kernel/lib monstr
2008-06-26 12:29                                     ` [PATCH 19/60] microblaze_v4: checksum support monstr
2008-06-26 12:29                                       ` [PATCH 20/60] microblaze_v4: early_printk support monstr
2008-06-26 12:29                                         ` [PATCH 21/60] microblaze_v4: uaccess files monstr
2008-06-26 12:29                                           ` [PATCH 22/60] microblaze_v4: heartbeat file monstr
2008-06-26 12:29                                             ` [PATCH 23/60] microblaze_v4: setup.c - system setting monstr
2008-06-26 12:29                                               ` [PATCH 24/60] microblaze_v4: asm-offsets monstr
2008-06-26 12:29                                                 ` [PATCH 25/60] microblaze_v4: process and init task function monstr
2008-06-26 12:29                                                   ` [PATCH 26/60] microblaze_v4: time support monstr
2008-06-26 12:29                                                     ` [PATCH 27/60] microblaze_v4: virtualization monstr
2008-06-26 12:29                                                       ` [PATCH 28/60] microblaze_v4: ptrace support monstr
2008-06-26 12:29                                                         ` [PATCH 29/60] microblaze_v4: traps support monstr
2008-06-26 12:29                                                           ` [PATCH 30/60] microblaze_v4: support for a.out monstr
2008-06-26 12:30                                                             ` monstr [this message]
2008-06-26 12:30                                                               ` [PATCH 32/60] microblaze_v4: page.h, segment.h, unaligned.h monstr
2008-06-26 12:30                                                                 ` [PATCH 33/60] microblaze_v4: includes SHM*, msgbuf monstr
2008-06-26 12:30                                                                   ` [PATCH 34/60] microblaze_v4: bug headers files monstr
2008-06-26 12:30                                                                     ` [PATCH 35/60] microblaze_v4: definitions of types monstr
2008-06-26 12:30                                                                       ` [PATCH 36/60] microblaze_v4: ioctl support monstr
2008-06-26 12:30                                                                         ` [PATCH 37/60] microblaze_v4: io.h IO operations monstr
2008-06-26 12:30                                                                           ` [PATCH 38/60] microblaze_v4: headers for executables format FLAT, ELF monstr
2008-06-26 12:30                                                                             ` [PATCH 39/60] microblaze_v4: dma support monstr
2008-06-26 12:30                                                                               ` [PATCH 40/60] microblaze_v4: headers for irq monstr
2008-06-26 12:30                                                                                 ` [PATCH 41/60] microblaze_v4: atomic.h bitops.h byteorder.h monstr
2008-06-26 12:30                                                                                   ` [PATCH 42/60] microblaze_v4: headers pgalloc.h pgtable.h monstr
2008-06-26 12:30                                                                                     ` [PATCH 43/60] microblaze_v4: system.h pvr.h processor.h monstr
2008-06-26 12:30                                                                                       ` [PATCH 44/60] microblaze_v4: clinkage.h linkage.h sections.h kmap_types.h monstr
2008-06-26 12:30                                                                                         ` [PATCH 45/60] microblaze_v4: stats headers monstr
2008-06-26 12:30                                                                                           ` [PATCH 46/60] microblaze_v4: termbits.h termios.h monstr
2008-06-26 12:30                                                                                             ` [PATCH 47/60] microblaze_v4: sigcontext.h siginfo.h monstr
2008-06-26 12:30                                                                                               ` [PATCH 48/60] microblaze_v4: headers simple files - empty or redirect to asm-generic monstr
2008-06-26 12:30                                                                                                 ` [PATCH 49/60] microblaze_v4: headers files entry.h current.h mman.h registers.h sembuf.h monstr
2008-06-26 12:30                                                                                                   ` [PATCH 50/60] microblaze_v4: device.h param.h topology.h monstr
2008-06-26 12:30                                                                                                     ` [PATCH 51/60] microblaze_v4: pool.h socket.h monstr
2008-06-26 12:30                                                                                                       ` [PATCH 52/60] microblaze_v4: fcntl.h sockios.h ucontext.h monstr
2008-06-26 12:30                                                                                                         ` [PATCH 53/60] microblaze_v4: setup.h string.h thread_info.h monstr
2008-06-26 12:30                                                                                                           ` [PATCH 54/60] microblaze_v4: Kbuild file monstr
2008-06-26 12:30                                                                                                             ` [PATCH 55/60] microblaze_v4: pci headers monstr
2008-06-26 12:30                                                                                                               ` [PATCH 56/60] microblaze_v4: IPC headers monstr
2008-06-26 12:30                                                                                                                 ` [PATCH 57/60] microblaze_v4: entry.S monstr
2008-06-26 12:30                                                                                                                   ` [PATCH 58/60] microblaze_v4: sys_microblaze.c monstr
2008-06-26 12:30                                                                                                                     ` [PATCH 59/60] microblaze_v4: syscall_table.S and unistd.h monstr
2008-06-26 12:30                                                                                                                       ` [PATCH 60/60] microblaze_v4: Enable drivers for Microblaze monstr
2008-06-26 14:16                                                                                                                         ` Peter Korsgaard
2008-06-26 16:31                                                                                                                       ` [PATCH 59/60] microblaze_v4: syscall_table.S and unistd.h Arnd Bergmann
2008-06-26 17:02                                                                                                                         ` H. Peter Anvin
2008-06-28  5:10                                                                                                                       ` Paul Mundt
2008-06-26 15:48                                                                                                                     ` [PATCH 58/60] microblaze_v4: sys_microblaze.c Arnd Bergmann
2008-06-26 19:07                                                                                                                       ` Michal Simek
2008-06-26 22:34                                                                                                                         ` Arnd Bergmann
2008-06-26 16:04                                                                                                                     ` Arnd Bergmann
2008-06-26 15:43                                                                                                         ` [PATCH 52/60] microblaze_v4: fcntl.h sockios.h ucontext.h Arnd Bergmann
2008-06-26 16:46                                                                                                           ` Arnd Bergmann
2008-06-26 15:35                                                                                                 ` [PATCH 48/60] microblaze_v4: headers simple files - empty or redirect to asm-generic Arnd Bergmann
2008-06-26 16:21                                                                                                   ` Adrian Bunk
2008-06-26 16:38                                                                                                     ` Arnd Bergmann
2008-06-26 17:57                                                                                                       ` H. Peter Anvin
2008-06-26 22:09                                                                                                         ` Arnd Bergmann
2008-06-26 18:05                                                                                                       ` Adrian Bunk
2008-06-26 23:23                                                                                                         ` Arnd Bergmann
2008-06-27 11:59                                                                                                           ` Adrian Bunk
2008-06-27 13:19                                                                                                             ` Michal Simek
2008-06-27 13:55                                                                                                             ` Sam Ravnborg
2008-06-26 13:18                                                                                             ` [PATCH 46/60] microblaze_v4: termbits.h termios.h Alan Cox
2008-06-26 18:44                                                                                               ` Michal Simek
2008-06-26 15:28                                                                                             ` Arnd Bergmann
2008-06-26 15:18                                                                   ` [PATCH 33/60] microblaze_v4: includes SHM*, msgbuf Arnd Bergmann
2008-06-26 15:14                                                               ` [PATCH 31/60] microblaze_v4: memory inicialization, MMU, TLB Arnd Bergmann
2008-07-08  6:17                                                                 ` Michal Simek
2008-06-26 14:37                                                             ` [PATCH 30/60] microblaze_v4: support for a.out Adrian Bunk
2008-06-26 19:23                                                               ` Michal Simek
2008-06-26 19:27                                                                 ` H. Peter Anvin
2008-06-26 21:30                                                                   ` Michal Simek
2008-06-26 21:38                                                                     ` H. Peter Anvin
2008-06-28  5:04                                                             ` Paul Mundt
2008-06-28  5:03                                                           ` [PATCH 29/60] microblaze_v4: traps support Paul Mundt
2008-06-28  4:59                                                         ` [PATCH 28/60] microblaze_v4: ptrace support Paul Mundt
2008-07-01 20:46                                                       ` [PATCH 27/60] microblaze_v4: virtualization Adrian Bunk
2008-06-27 10:43                                                     ` [PATCH 26/60] microblaze_v4: time support Thomas Gleixner
2008-06-27 13:10                                                       ` Michal Simek
2008-06-28  4:50                                                   ` [PATCH 25/60] microblaze_v4: process and init task function Paul Mundt
2008-06-28  4:43                                                 ` [PATCH 24/60] microblaze_v4: asm-offsets Paul Mundt
2008-06-28 22:28                                       ` [PATCH 19/60] microblaze_v4: checksum support Segher Boessenkool
2008-06-30  7:18                                         ` Michal Simek
2008-06-30 16:25                                           ` Segher Boessenkool
2008-06-26 15:07                         ` [PATCH 12/60] microblaze_v4: Generic dts file for platforms Jon Loeliger
2008-06-26 18:57                           ` Michal Simek
2008-06-26 20:18                             ` Stephen Neuendorffer
2008-06-26 21:41                               ` Michal Simek
2008-06-26 21:44                                 ` Jon Loeliger
2008-06-28  5:49                         ` Grant Likely
2008-06-30  0:02                           ` John Williams
2008-06-30  3:39                             ` Stephen Neuendorffer
2008-06-30  3:59                               ` John Williams
2008-06-30  7:11                               ` Michal Simek
2008-07-01  6:21                               ` Benjamin Herrenschmidt
2008-07-01 15:58                                 ` Stephen Neuendorffer
2008-07-02  0:25                                   ` Benjamin Herrenschmidt
2008-06-30  6:48                             ` Michal Simek
2008-06-26 16:35                 ` [PATCH 08/60] microblaze_v4: exception handling Ray Lee
2008-06-26 19:19                   ` Michal Simek
2008-06-26 19:43                     ` Ray Lee
2008-06-26 21:06                       ` Michal Simek
2008-06-26 14:36               ` [PATCH 07/60] microblaze_v4: Support for semaphores Adrian Bunk
2008-06-26 19:27                 ` Michal Simek
2008-06-26 14:36     ` [PATCH 02/60] microblaze_v4: Makefiles for Microblaze cpu Adrian Bunk
2008-06-26 18:46       ` Michal Simek
2008-06-26 19:40         ` Adrian Bunk
2008-06-27  0:03           ` John Williams
2008-06-28  4:38   ` [PATCH 01/60] microblaze_v4: Kconfig patches Paul Mundt
2008-06-26 15:01 ` Microblaze init port v4 Adrian Bunk
2008-06-26 18:50   ` Michal Simek
2008-06-26 19:43     ` Adrian Bunk
2008-06-26 20:27       ` Stephen Neuendorffer
2008-06-27  0:12   ` John Williams
2008-06-26 15:09 ` Arnd Bergmann
2008-06-26 17:51   ` Arnd Bergmann
2008-06-26 17:54     ` H. Peter Anvin
2008-06-26 18:59   ` 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=1214483429-32360-32-git-send-email-monstr@seznam.cz \
    --to=monstr@seznam.cz \
    --cc=John.Linn@xilinx.com \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=arnd@arndb.de \
    --cc=drepper@redhat.com \
    --cc=hpa@zytor.com \
    --cc=john.williams@petalogix.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=matthew@wil.cx \
    --cc=microblaze-uclinux@itee.uq.edu.au \
    --cc=monstr@monstr.eu \
    --cc=vapier.adi@gmail.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).