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 11/60] microblaze_v4: cache support
Date: Thu, 26 Jun 2008 14:29:40 +0200 [thread overview]
Message-ID: <1214483429-32360-12-git-send-email-monstr@seznam.cz> (raw)
In-Reply-To: <1214483429-32360-11-git-send-email-monstr@seznam.cz>
From: Michal Simek <monstr@monstr.eu>
Signed-off-by: Michal Simek <monstr@monstr.eu>
---
arch/microblaze/kernel/cpu/cache.c | 255 +++++++++++++++++++++++++++++++++++
include/asm-microblaze/cache.h | 44 ++++++
include/asm-microblaze/cacheflush.h | 75 ++++++++++
3 files changed, 374 insertions(+), 0 deletions(-)
create mode 100644 arch/microblaze/kernel/cpu/cache.c
create mode 100644 include/asm-microblaze/cache.h
create mode 100644 include/asm-microblaze/cacheflush.h
diff --git a/arch/microblaze/kernel/cpu/cache.c b/arch/microblaze/kernel/cpu/cache.c
new file mode 100644
index 0000000..9dcf3e9
--- /dev/null
+++ b/arch/microblaze/kernel/cpu/cache.c
@@ -0,0 +1,255 @@
+/*
+ * Cache control for MicroBlaze cache memories
+ *
+ * Copyright (C) 2007 Michal Simek <monstr@monstr.eu>
+ * Copyright (C) 2007 PetaLogix
+ * Copyright (C) 2007 John Williams <john.williams@petalogix.com>
+ *
+ * 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.
+ *
+ */
+
+#include <asm/cacheflush.h>
+#include <asm/cache.h>
+#include <asm/cpuinfo.h>
+
+/* Exported functions */
+
+void _enable_icache(void)
+{
+ if (cpuinfo.use_icache) {
+#if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
+ __asm__ __volatile__ (" \
+ msrset r0, %0; \
+ nop; " \
+ : \
+ : "i" (MSR_ICE) \
+ : "memory");
+#else
+ __asm__ __volatile__ (" \
+ mfs r12, rmsr; \
+ ori r12, r12, %0; \
+ mts rmsr, r12; \
+ nop; " \
+ : \
+ : "i" (MSR_ICE) \
+ : "memory", "r12");
+#endif
+ }
+}
+
+void _disable_icache(void)
+{
+ if (cpuinfo.use_icache) {
+#if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
+ __asm__ __volatile__ (" \
+ msrclr r0, %0; \
+ nop; " \
+ : \
+ : "i" (MSR_ICE) \
+ : "memory");
+#else
+ __asm__ __volatile__ (" \
+ mfs r12, rmsr; \
+ andi r12, r12, ~%0; \
+ mts rmsr, r12; \
+ nop; " \
+ : \
+ : "i" (MSR_ICE) \
+ : "memory", "r12");
+#endif
+ }
+}
+
+void _invalidate_icache(unsigned int addr)
+{
+ if (cpuinfo.use_icache) {
+ __asm__ __volatile__ (" \
+ wic %0, r0" \
+ : \
+ : "r" (addr));
+ }
+}
+
+void _enable_dcache(void)
+{
+ if (cpuinfo.use_dcache) {
+#if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
+ __asm__ __volatile__ (" \
+ msrset r0, %0; \
+ nop; " \
+ : \
+ : "i" (MSR_DCE) \
+ : "memory");
+#else
+ __asm__ __volatile__ (" \
+ mfs r12, rmsr; \
+ ori r12, r12, %0; \
+ mts rmsr, r12; \
+ nop; " \
+ : \
+ : "i" (MSR_DCE) \
+ : "memory", "r12");
+#endif
+ }
+}
+
+void _disable_dcache(void)
+{
+ if (cpuinfo.use_dcache) {
+#if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
+ __asm__ __volatile__ (" \
+ msrclr r0, %0; \
+ nop; " \
+ : \
+ : "i" (MSR_DCE) \
+ : "memory");
+#else
+ __asm__ __volatile__ (" \
+ mfs r12, rmsr; \
+ andi r12, r12, ~%0; \
+ mts rmsr, r12; \
+ nop; " \
+ : \
+ : "i" (MSR_DCE) \
+ : "memory", "r12");
+#endif
+ }
+}
+
+void _invalidate_dcache(unsigned int addr)
+{
+ if (cpuinfo.use_dcache)
+ __asm__ __volatile__ (" \
+ wdc %0, r0" \
+ : \
+ : "r" (addr));
+}
+
+void __invalidate_icache_all(void)
+{
+ unsigned int i;
+ unsigned flags;
+
+ if (cpuinfo.use_icache) {
+ local_irq_save(flags);
+ __disable_icache();
+
+ /* Just loop through cache size and invalidate, no need to add
+ CACHE_BASE address */
+ for (i = 0; i < cpuinfo.icache_size;
+ i += cpuinfo.icache_line)
+ __invalidate_icache(i);
+
+ __enable_icache();
+ local_irq_restore(flags);
+ }
+}
+
+void __invalidate_icache_range(unsigned long start, unsigned long end)
+{
+ unsigned int i;
+ unsigned flags;
+ unsigned int align;
+
+ if (cpuinfo.use_icache) {
+ /*
+ * No need to cover entire cache range,
+ * just cover cache footprint
+ */
+ end = min(start + cpuinfo.icache_size, end);
+ align = ~(cpuinfo.icache_line - 1);
+ start &= align; /* Make sure we are aligned */
+ /* Push end up to the next cache line */
+ end = ((end & align) + cpuinfo.icache_line);
+
+ local_irq_save(flags);
+ __disable_icache();
+
+ for (i = start; i < end; i += cpuinfo.icache_line)
+ __invalidate_icache(i);
+
+ __enable_icache();
+ local_irq_restore(flags);
+ }
+}
+
+void __invalidate_icache_page(struct vm_area_struct *vma, struct page *page)
+{
+ __invalidate_icache_all();
+}
+
+void __invalidate_icache_user_range(struct vm_area_struct *vma,
+ struct page *page, unsigned long adr,
+ int len)
+{
+ __invalidate_icache_all();
+}
+
+void __invalidate_cache_sigtramp(unsigned long addr)
+{
+ __invalidate_icache_range(addr, addr + 8);
+}
+
+void __invalidate_dcache_all(void)
+{
+ unsigned int i;
+ unsigned flags;
+
+ if (cpuinfo.use_dcache) {
+ local_irq_save(flags);
+ __disable_dcache();
+
+ /*
+ * Just loop through cache size and invalidate,
+ * no need to add CACHE_BASE address
+ */
+ for (i = 0; i < cpuinfo.dcache_size;
+ i += cpuinfo.dcache_line)
+ __invalidate_dcache(i);
+
+ __enable_dcache();
+ local_irq_restore(flags);
+ }
+}
+
+void __invalidate_dcache_range(unsigned long start, unsigned long end)
+{
+ unsigned int i;
+ unsigned flags;
+ unsigned int align;
+
+ if (cpuinfo.use_dcache) {
+ /*
+ * No need to cover entire cache range,
+ * just cover cache footprint
+ */
+ end = min(start + cpuinfo.dcache_size, end);
+ align = ~(cpuinfo.dcache_line - 1);
+ start &= align; /* Make sure we are aligned */
+ /* Push end up to the next cache line */
+ end = ((end & align) + cpuinfo.dcache_line);
+ local_irq_save(flags);
+ __disable_dcache();
+
+ for (i = start; i < end; i += cpuinfo.dcache_line)
+ __invalidate_dcache(i);
+
+ __enable_dcache();
+ local_irq_restore(flags);
+ }
+}
+
+void __invalidate_dcache_page(struct vm_area_struct *vma, struct page *page)
+{
+ __invalidate_dcache_all();
+}
+
+void __invalidate_dcache_user_range(struct vm_area_struct *vma,
+ struct page *page, unsigned long adr,
+ int len)
+{
+ __invalidate_dcache_all();
+}
diff --git a/include/asm-microblaze/cache.h b/include/asm-microblaze/cache.h
new file mode 100644
index 0000000..08828ec
--- /dev/null
+++ b/include/asm-microblaze/cache.h
@@ -0,0 +1,44 @@
+/*
+ * Cache operations
+ *
+ * Copyright (C) 2007 Michal Simek <monstr@monstr.eu>
+ * Copyright (C) 2003 John Williams <jwilliams@itee.uq.edu.au>
+ *
+ * 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_CACHE_H
+#define _ASM_MICROBLAZE_CACHE_H
+
+#include <asm/registers.h>
+#include <linux/autoconf.h>
+
+#ifndef L1_CACHE_BYTES
+/* word-granular cache in microblaze */
+#define L1_CACHE_BYTES 4
+#endif
+
+void _enable_icache(void);
+void _disable_icache(void);
+void _invalidate_icache(unsigned int addr);
+
+#define __enable_icache() _enable_icache()
+#define __disable_icache() _disable_icache()
+#define __invalidate_icache(addr) _invalidate_icache(addr)
+
+void _enable_dcache(void);
+void _disable_dcache(void);
+void _invalidate_dcache(unsigned int addr);
+
+#define __enable_dcache() _enable_dcache()
+#define __disable_dcache() _disable_dcache()
+#define __invalidate_dcache(addr) _invalidate_dcache(addr)
+
+/* FIXME - I don't think this is right */
+#ifdef CONFIG_XILINX_UNCACHED_SHADOW
+#define UNCACHED_SHADOW_MASK (CONFIG_XILINX_ERAM_SIZE)
+#endif
+
+#endif /* _ASM_MICROBLAZE_CACHE_H */
diff --git a/include/asm-microblaze/cacheflush.h b/include/asm-microblaze/cacheflush.h
new file mode 100644
index 0000000..6afe017
--- /dev/null
+++ b/include/asm-microblaze/cacheflush.h
@@ -0,0 +1,75 @@
+/*
+ * Copyright (C) 2007 PetaLogix
+ * Copyright (C) 2007 John Williams <john.williams@petalogix.com>
+ * based on v850 version which was
+ * Copyright (C) 2001,02,03 NEC Electronics Corporation
+ * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
+ *
+ * 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_CACHEFLUSH_H
+#define _ASM_MICROBLAZE_CACHEFLUSH_H
+
+/* Somebody depends on this; sigh... */
+#include <linux/mm.h>
+
+/*
+ * Cache handling functions.
+ * Microblaze has a write-through data cache, and no icache snooping of dcache
+ */
+
+#define flush_cache_all() __invalidate_cache_all()
+#define flush_cache_mm(mm) do { } while (0)
+#define flush_cache_range(vma, start, end) __invalidate_cache_all()
+#define flush_cache_page(vma, vmaddr, pfn) do { } while (0)
+
+#define flush_dcache_range(start, end) __invalidate_dcache_range(start, end)
+#define flush_dcache_page(page) do { } while (0)
+#define flush_dcache_mmap_lock(mapping) do { } while (0)
+#define flush_dcache_mmap_unlock(mapping) do { } while (0)
+
+#define flush_icache_range(start, len) __invalidate_icache_range(start, len)
+#define flush_icache_page(vma, pg) do { } while (0)
+
+#define flush_cache_vmap(start, end) do { } while (0)
+#define flush_cache_vunmap(start, end) do { } while (0)
+
+struct page;
+struct mm_struct;
+struct vm_area_struct;
+
+/* see arch/microblaze/kernel/cache.c */
+extern void __invalidate_icache_all(void);
+extern void __invalidate_icache_range(unsigned long start, unsigned long end);
+extern void __invalidate_icache_page(struct vm_area_struct *vma, struct page *page);
+extern void __invalidate_icache_user_range(struct vm_area_struct *vma,
+ struct page *page,
+ unsigned long adr, int len);
+extern void __invalidate_cache_sigtramp(unsigned long addr);
+
+extern void __invalidate_dcache_all(void);
+extern void __invalidate_dcache_range(unsigned long start, unsigned long end);
+extern void __invalidate_dcache_page(struct vm_area_struct *vma, struct page *page);
+extern void __invalidate_dcache_user_range(struct vm_area_struct *vma,
+ struct page *page,
+ unsigned long adr, int len);
+
+extern inline void __invalidate_cache_all(void)
+{
+ __invalidate_icache_all();
+ __invalidate_dcache_all();
+}
+
+#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
+do { memcpy((dst), (src), (len)); \
+ flush_icache_range((unsigned) (dst), (unsigned) (dst) + (len)); \
+} while (0)
+
+#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
+ memcpy((dst), (src), (len))
+
+#endif /* _ASM_MICROBLAZE_CACHEFLUSH_H */
--
1.5.4.GIT
next prev parent reply other threads:[~2008-06-26 13:41 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 ` monstr [this message]
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 ` [PATCH 31/60] microblaze_v4: memory inicialization, MMU, TLB monstr
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-12-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).