linux-kernel mailing list

FromSubjectsort iconDate
monstr
[PATCH 01/52] [microblaze] Kconfig patches
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/Kconfig | 160 +++++++++++++++++++++++++ arch/microblaze/Kconfig.debug | 22 ++++ arch/microblaze/platform/Kconfig.platform | 46 +++++++ arch/microblaze/platform/generic/Kconfig.auto | 45 +++++++ 4 files changed, 273 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/Kconfig create mode 100644 arch/microblaze/Kco...
Jan 24, 11:05 am 2008
monstr
[PATCH 02/52] [microblaze] Makefiles for Microblaze cpu
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/Makefile | 66 +++++++++++++++++++++++++++++ arch/microblaze/boot/Makefile | 17 +++++++ arch/microblaze/kernel/Makefile | 14 ++++++ arch/microblaze/kernel/cpu/Makefile | 8 ++++ arch/microblaze/lib/Makefile | 5 ++ arch/microblaze/mm/Makefile | 5 ++ arch/microblaze/platform/Makefile ...
Jan 24, 11:05 am 2008
monstr
Microblaze init port
Hello everybody, this is first set of patches with Microblaze Linux kernel port. I tried to clean coding style and repair code with sparse. I tried to split patches to the smallest parts as were possible. Please be patient with incorrect division - it was a lot of patches. I personally feel the biggest pain in header files. There are no comments in set of patches because I had no energy write it. I suppose we will discuss more about individual patches. I create pages for this longer pro...
Jan 24, 11:02 am 2008
monstr
[PATCH 10/52] [microblaze] Generic dts file for platforms
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/platform/generic/system.dts | 137 +++++++++++++++++++++++++++ 1 files changed, 137 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/platform/generic/system.dts diff --git a/arch/microblaze/platform/generic/system.dts b/arch/microblaze/platform/generic/system.dts new file mode 100644 index 0000000..91eac31 --- /dev/null +++ b/arch/microblaze/platform/generic...
Jan 24, 11:02 am 2008
monstr
[PATCH 11/52] [microblaze] kernel modules support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/microblaze_ksyms.c | 129 +++++++++++++++++++++++++ arch/microblaze/kernel/module.c | 149 +++++++++++++++++++++++++++++ include/asm-microblaze/module.h | 41 ++++++++ 3 files changed, 319 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/microblaze_ksyms.c create mode 100644 arch/microblaze/kernel/module.c create mode 1006...
Jan 24, 11:02 am 2008
monstr
[PATCH 12/52] [microblaze] lmb support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/mm/lmb.c | 342 ++++++++++++++++++++++++++++++++++++++++++ include/asm-microblaze/lmb.h | 84 ++++++++++ 2 files changed, 426 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/mm/lmb.c create mode 100644 include/asm-microblaze/lmb.h diff --git a/arch/microblaze/mm/lmb.c b/arch/microblaze/mm/lmb.c new file mode 100644 index 0000000..993ea49 --- /dev/nu...
Jan 24, 11:02 am 2008
monstr
[PATCH 13/52] [microblaze] PVR support, cpuinfo support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/cpu/mb.c | 115 ++++++++++++++++++++++++++++++++++++++ arch/microblaze/kernel/cpu/pvr.c | 83 +++++++++++++++++++++++++++ 2 files changed, 198 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/cpu/mb.c create mode 100644 arch/microblaze/kernel/cpu/pvr.c diff --git a/arch/microblaze/kernel/cpu/mb.c b/arch/microblaze/kernel/cpu/mb.c new file mo...
Jan 24, 11:02 am 2008
monstr
[PATCH 14/52] [microblaze] defconfig file
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/defconfig | 449 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 449 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/defconfig diff --git a/arch/microblaze/defconfig b/arch/microblaze/defconfig new file mode 100644 index 0000000..ea25a7b --- /dev/null +++ b/arch/microblaze/defconfig @@ -0,0 +1,449 @@ +# +# Automatically generated make conf...
Jan 24, 11:02 am 2008
monstr
[PATCH 15/52] [microblaze] assembler files head.S, entry.S, ...
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/entry.S | 597 ++++++++++++++++++++++++++++++++ arch/microblaze/kernel/head.S | 40 +++ arch/microblaze/kernel/syscall_table.S | 328 ++++++++++++++++++ arch/microblaze/kernel/vmlinux.lds.S | 145 ++++++++ 4 files changed, 1110 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/entry.S create mode 100644 arch/microblaze/kerne...
Jan 24, 11:02 am 2008
monstr
[PATCH 16/52] [microblaze] supported function for memory - k...
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/lib/memcpy.c | 159 +++++++++++++++++++++++++++++++++++++ arch/microblaze/lib/memmove.c | 174 +++++++++++++++++++++++++++++++++++++++++ arch/microblaze/lib/memset.c | 83 +++++++++++++++++++ 3 files changed, 416 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/lib/memcpy.c create mode 100644 arch/microblaze/lib/memmove.c create mode 100644 arch/microbla...
Jan 24, 11:02 am 2008
monstr
[PATCH 17/52] [microblaze] checksum support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/lib/checksum.c | 159 +++++++++++++++++++++++++++++++++++++ include/asm-microblaze/checksum.h | 101 +++++++++++++++++++++++ 2 files changed, 260 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/lib/checksum.c create mode 100644 include/asm-microblaze/checksum.h diff --git a/arch/microblaze/lib/checksum.c b/arch/microblaze/lib/checksum.c new file mode 10...
Jan 24, 11:02 am 2008
monstr
[PATCH 18/52] [microblaze] early_printk support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- 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,...
Jan 24, 11:02 am 2008
monstr
[PATCH 19/52] [microblaze] uaccess files
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/lib/uaccess.c | 43 +++++++++++++ include/asm-microblaze/uaccess.h | 126 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 169 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/lib/uaccess.c create mode 100644 include/asm-microblaze/uaccess.h diff --git a/arch/microblaze/lib/uaccess.c b/arch/microblaze/lib/uaccess.c new file mode 100644 index 000...
Jan 24, 11:02 am 2008
monstr
[PATCH 20/52] [microblaze] heartbeat file
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/heartbeat.c | 40 ++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/heartbeat.c diff --git a/arch/microblaze/kernel/heartbeat.c b/arch/microblaze/kernel/heartbeat.c new file mode 100644 index 0000000..e29aa1f --- /dev/null +++ b/arch/microblaze/kernel/heartbeat.c @@ -0,0 +1,40 @@ +/* +...
Jan 24, 11:02 am 2008
monstr
[PATCH 21/52] [microblaze] setup.c - system setting
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/setup.c | 170 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 170 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/setup.c diff --git a/arch/microblaze/kernel/setup.c b/arch/microblaze/kernel/setup.c new file mode 100644 index 0000000..1d05fac --- /dev/null +++ b/arch/microblaze/kernel/setup.c @@ -0,0 +1,170 @@ +/* + * arch/microb...
Jan 24, 11:02 am 2008
monstr
[PATCH 22/52] [microblaze] asm-offsets
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/asm-offsets.c | 118 ++++++++++++++++++++++++++++++++++ 1 files changed, 118 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/asm-offsets.c diff --git a/arch/microblaze/kernel/asm-offsets.c b/arch/microblaze/kernel/asm-offsets.c new file mode 100644 index 0000000..f01aa3b --- /dev/null +++ b/arch/microblaze/kernel/asm-offsets.c @@ -0,0 +1,118 ...
Jan 24, 11:02 am 2008
monstr
[PATCH 23/52] [microblaze] process and init task function
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/init_task.c | 31 +++++++++ arch/microblaze/kernel/process.c | 129 ++++++++++++++++++++++++++++++++++++ 2 files changed, 160 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/init_task.c create mode 100644 arch/microblaze/kernel/process.c diff --git a/arch/microblaze/kernel/init_task.c b/arch/microblaze/kernel/init_task.c new file mode 1006...
Jan 24, 11:02 am 2008
monstr
[PATCH 24/52] [microblaze] time support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/time.c | 90 ++++++++++++++++++++++++++++++++++++++++ include/asm-microblaze/delay.h | 28 ++++++++++++ include/asm-microblaze/timex.h | 21 +++++++++ 3 files changed, 139 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/time.c create mode 100644 include/asm-microblaze/delay.h create mode 100644 include/asm-microblaze/timex.h diff --git...
Jan 24, 11:02 am 2008
monstr
[PATCH 25/52] [microblaze] ptrace support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/ptrace.c | 212 +++++++++++++++++++++++++++++++++++++++ include/asm-microblaze/ptrace.h | 70 +++++++++++++ 2 files changed, 282 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/ptrace.c create mode 100644 include/asm-microblaze/ptrace.h diff --git a/arch/microblaze/kernel/ptrace.c b/arch/microblaze/kernel/ptrace.c new file mode 100644 index...
Jan 24, 11:03 am 2008
monstr
[PATCH 26/52] [microblaze] IPC support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/sys_microblaze.c | 331 +++++++++++++++++++++++++++++++ include/asm-microblaze/ipc.h | 18 ++ include/asm-microblaze/ipcbuf.h | 38 ++++ 3 files changed, 387 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/sys_microblaze.c create mode 100644 include/asm-microblaze/ipc.h create mode 100644 include/asm-microblaze/ipcbuf.h ...
Jan 24, 11:03 am 2008
monstr
[PATCH 27/52] [microblaze] traps support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/traps.c | 88 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 88 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/traps.c diff --git a/arch/microblaze/kernel/traps.c b/arch/microblaze/kernel/traps.c new file mode 100644 index 0000000..eb8202b --- /dev/null +++ b/arch/microblaze/kernel/traps.c @@ -0,0 +1,88 @@ +/* + * arch/microbla...
Jan 24, 11:03 am 2008
monstr
[PATCH 28/52] [microblaze] support for a.out
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/a.out.h | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/a.out.h diff --git a/include/asm-microblaze/a.out.h b/include/asm-microblaze/a.out.h new file mode 100644 index 0000000..63046bd --- /dev/null +++ b/include/asm-microblaze/a.out.h @@ -0,0 +1,14 @@ +/* + * include/asm-microblaze/a.out.h + * + ...
Jan 24, 11:03 am 2008
monstr
[PATCH 29/52] [microblaze] memory inicialization, MMU, TLB
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/mm/init.c | 188 ++++++++++++++++++++++++++++++++++ include/asm-microblaze/mmu.h | 19 ++++ include/asm-microblaze/mmu_context.h | 24 +++++ include/asm-microblaze/tlb.h | 18 ++++ include/asm-microblaze/tlbflush.h | 22 ++++ 5 files changed, 271 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/mm/init.c create mode 10064...
Jan 24, 11:03 am 2008
monstr
[PATCH 30/52] [microblaze] consistent allocation & page.h, ...
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/mm/consistent.c | 176 ++++++++++++++++++++++++++++++++++++ include/asm-microblaze/page.h | 117 ++++++++++++++++++++++++ include/asm-microblaze/segment.h | 42 +++++++++ include/asm-microblaze/unaligned.h | 16 ++++ 4 files changed, 351 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/mm/consistent.c create mode 100644 include/asm-microblaze/pa...
Jan 24, 11:03 am 2008
monstr
[PATCH 31/52] [microblaze] pci header files
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/pci-bridge.h | 146 +++++++++++++++++++++++++++++++++++ include/asm-microblaze/pci.h | 139 +++++++++++++++++++++++++++++++++ 2 files changed, 285 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/pci-bridge.h create mode 100644 include/asm-microblaze/pci.h diff --git a/include/asm-microblaze/pci-bridge.h b/include/asm-microblaze/pci-brid...
Jan 24, 11:03 am 2008
monstr
[PATCH 32/52] [microblaze] includes SHM*, msgbuf
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/msgbuf.h | 41 +++++++++++++++++++++++++++++ include/asm-microblaze/shmbuf.h | 52 +++++++++++++++++++++++++++++++++++++ include/asm-microblaze/shmparam.h | 16 +++++++++++ 3 files changed, 109 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/msgbuf.h create mode 100644 include/asm-microblaze/shmbuf.h create mode 100644 include/asm-micr...
Jan 24, 11:03 am 2008
monstr
[PATCH 33/52] [microblaze] bug headers files
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/bug.h | 17 +++++++++++++++++ include/asm-microblaze/bugs.h | 19 +++++++++++++++++++ 2 files changed, 36 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/bug.h create mode 100644 include/asm-microblaze/bugs.h diff --git a/include/asm-microblaze/bug.h b/include/asm-microblaze/bug.h new file mode 100644 index 0000000..5e23942 --- /dev/null...
Jan 24, 11:03 am 2008
monstr
[PATCH 34/52] [microblaze] definitions of types
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/posix_types.h | 75 ++++++++++++++++++++++++++++++++++ include/asm-microblaze/types.h | 64 +++++++++++++++++++++++++++++ 2 files changed, 139 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/posix_types.h create mode 100644 include/asm-microblaze/types.h diff --git a/include/asm-microblaze/posix_types.h b/include/asm-microblaze/posix_t...
Jan 24, 11:03 am 2008
monstr
[PATCH 35/52] [microblaze] ioctl support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/ioctl.h | 84 +++++++++++++++++++++++++++++++++++ include/asm-microblaze/ioctls.h | 93 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 177 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/ioctl.h create mode 100644 include/asm-microblaze/ioctls.h diff --git a/include/asm-microblaze/ioctl.h b/include/asm-microblaze/ioctl.h new file...
Jan 24, 11:03 am 2008
monstr
[PATCH 36/52] [microblaze] io.h IO operations
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/io.h | 210 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 210 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/io.h diff --git a/include/asm-microblaze/io.h b/include/asm-microblaze/io.h new file mode 100644 index 0000000..a0a5401 --- /dev/null +++ b/include/asm-microblaze/io.h @@ -0,0 +1,210 @@ +/* + * include/asm-microblaze/...
Jan 24, 11:03 am 2008
monstr
[PATCH 37/52] [microblaze] headers for executables format FL...
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/elf.h | 24 +++++++++++ include/asm-microblaze/flat.h | 93 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 117 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/elf.h create mode 100644 include/asm-microblaze/flat.h diff --git a/include/asm-microblaze/elf.h b/include/asm-microblaze/elf.h new file mode 100644 index 0000000..8b956...
Jan 24, 11:03 am 2008
monstr
[PATCH 38/52] [microblaze] dma support
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/dma-mapping.h | 124 ++++++++++++++++++++++++++++++++++ include/asm-microblaze/dma.h | 21 ++++++ include/asm-microblaze/scatterlist.h | 21 ++++++ 3 files changed, 166 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/dma-mapping.h create mode 100644 include/asm-microblaze/dma.h create mode 100644 include/asm-microblaze/scatterlist.h...
Jan 24, 11:03 am 2008
monstr
[PATCH 39/52] [microblaze] headers for irq
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/hardirq.h | 31 +++++++++++++++++++++++++++++++ include/asm-microblaze/hw_irq.h | 19 +++++++++++++++++++ include/asm-microblaze/irq_regs.h | 19 +++++++++++++++++++ 3 files changed, 69 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/hardirq.h create mode 100644 include/asm-microblaze/hw_irq.h create mode 100644 include/asm-microblaze/i...
Jan 24, 11:03 am 2008
monstr
[PATCH 40/52] [microblaze] atomic.h bitops.h byteorder.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/atomic.h | 108 ++++++++++++++++++++++++++++++++++++ include/asm-microblaze/bitops.h | 29 ++++++++++ include/asm-microblaze/byteorder.h | 23 ++++++++ 3 files changed, 160 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/atomic.h create mode 100644 include/asm-microblaze/bitops.h create mode 100644 include/asm-microblaze/byteorder.h ...
Jan 24, 11:03 am 2008
monstr
[PATCH 41/52] [microblaze] headers pgalloc.h pgtable.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/pgalloc.h | 16 ++++++++++++ include/asm-microblaze/pgtable.h | 50 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/pgalloc.h create mode 100644 include/asm-microblaze/pgtable.h diff --git a/include/asm-microblaze/pgalloc.h b/include/asm-microblaze/pgalloc.h new file mode 100644 in...
Jan 24, 11:03 am 2008
monstr
[PATCH 42/52] [microblaze] system.h pvr.h processor.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/processor.h | 89 +++++++++++++++++ include/asm-microblaze/pvr.h | 185 ++++++++++++++++++++++++++++++++++++ include/asm-microblaze/system.h | 185 ++++++++++++++++++++++++++++++++++++ 3 files changed, 459 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/processor.h create mode 100644 include/asm-microblaze/pvr.h create mode 100644 i...
Jan 24, 11:03 am 2008
monstr
[PATCH 43/52] [microblaze] clinkage.h linkage.h sections.h k...
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/clinkage.h | 29 +++++++++++++++++++++++++++++ include/asm-microblaze/kmap_types.h | 31 +++++++++++++++++++++++++++++++ include/asm-microblaze/linkage.h | 17 +++++++++++++++++ include/asm-microblaze/sections.h | 19 +++++++++++++++++++ 4 files changed, 96 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/clinkage.h create mode 1006...
Jan 24, 11:03 am 2008
monstr
[PATCH 44/52] [microblaze] stats headers
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/stat.h | 75 +++++++++++++++++++++++++++++++++++++++ include/asm-microblaze/statfs.h | 16 ++++++++ 2 files changed, 91 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/stat.h create mode 100644 include/asm-microblaze/statfs.h diff --git a/include/asm-microblaze/stat.h b/include/asm-microblaze/stat.h new file mode 100644 index 0000000..a8...
Jan 24, 11:03 am 2008
monstr
[PATCH 45/52] [microblaze] termbits.h termios.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/termbits.h | 203 +++++++++++++++++++++++++++++++++++++ include/asm-microblaze/termios.h | 86 ++++++++++++++++ 2 files changed, 289 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/termbits.h create mode 100644 include/asm-microblaze/termios.h diff --git a/include/asm-microblaze/termbits.h b/include/asm-microblaze/termbits.h new file mode 1...
Jan 24, 11:03 am 2008
monstr
[PATCH 46/52] [microblaze] sigcontext.h siginfo.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/sigcontext.h | 21 +++++++++++++++++++++ include/asm-microblaze/siginfo.h | 17 +++++++++++++++++ 2 files changed, 38 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/sigcontext.h create mode 100644 include/asm-microblaze/siginfo.h diff --git a/include/asm-microblaze/sigcontext.h b/include/asm-microblaze/sigcontext.h new file mode 100644 ...
Jan 24, 11:03 am 2008
monstr
[PATCH 47/52] [microblaze] headers simple files
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/auxvec.h | 14 ++++++++++++++ include/asm-microblaze/cputime.h | 16 ++++++++++++++++ include/asm-microblaze/div64.h | 16 ++++++++++++++++ include/asm-microblaze/emergency-restart.h | 16 ++++++++++++++++ include/asm-microblaze/errno.h | 16 ++++++++++++++++ include/asm-microblaze/futex.h | 16 ++++++++++...
Jan 24, 11:03 am 2008
monstr
[PATCH 48/52] [microblaze] headers files entry.h current.h m...
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/current.h | 25 +++++++++++++++++++++++++ include/asm-microblaze/entry.h | 32 ++++++++++++++++++++++++++++++++ include/asm-microblaze/mman.h | 27 +++++++++++++++++++++++++++ include/asm-microblaze/registers.h | 26 ++++++++++++++++++++++++++ include/asm-microblaze/sembuf.h | 36 ++++++++++++++++++++++++++++++++++++ 5 files changed, 146 insertions(...
Jan 24, 11:03 am 2008
monstr
[PATCH 49/52] [microblaze] device.h param.h topology.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/device.h | 27 ++++++++ include/asm-microblaze/param.h | 36 +++++++++++ include/asm-microblaze/topology.h | 124 +++++++++++++++++++++++++++++++++++++ 3 files changed, 187 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/device.h create mode 100644 include/asm-microblaze/param.h create mode 100644 include/asm-microblaze/topology.h d...
Jan 24, 11:03 am 2008
monstr
[PATCH 50/52] [microblaze] pool.h socket.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/poll.h | 37 +++++++++++++++++++++++ include/asm-microblaze/socket.h | 62 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 99 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/poll.h create mode 100644 include/asm-microblaze/socket.h diff --git a/include/asm-microblaze/poll.h b/include/asm-microblaze/poll.h new file mode 100644 in...
Jan 24, 11:03 am 2008
monstr
[PATCH 51/52] [microblaze] fcntl.h sockios.h ucontext.h unis...
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/fcntl.h | 104 +++++++ include/asm-microblaze/sockios.h | 23 ++ include/asm-microblaze/ucontext.h | 24 ++ include/asm-microblaze/unistd.h | 548 +++++++++++++++++++++++++++++++++++++ 4 files changed, 699 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/fcntl.h create mode 100644 include/asm-microblaze/sockios.h create mode 100644 i...
Jan 24, 11:03 am 2008
monstr
[PATCH 52/52] [microblaze] setup.h string.h thread_info.h
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- include/asm-microblaze/setup.h | 36 ++++++++ include/asm-microblaze/string.h | 22 +++++ include/asm-microblaze/thread_info.h | 156 ++++++++++++++++++++++++++++++++++ 3 files changed, 214 insertions(+), 0 deletions(-) create mode 100644 include/asm-microblaze/setup.h create mode 100644 include/asm-microblaze/string.h create mode 100644 include/asm-microblaze/thread_info.h ...
Jan 24, 11:03 am 2008
monstr
[PATCH 03/52] [microblaze] Cpuinfo handling
From: microblaze <microblaze@localhost.localdomain> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c | 83 +++++++++++++++++ arch/microblaze/kernel/cpu/cpuinfo-static.c | 123 +++++++++++++++++++++++++ arch/microblaze/kernel/cpu/cpuinfo.c | 93 +++++++++++++++++++ include/asm-microblaze/cpuinfo.h | 114 +++++++++++++++++++++++ 4 files changed, 413 insertions(+), 0 deletions(-) create mode 100644 arch/micr...
Jan 24, 11:03 am 2008
monstr
[PATCH 04/52] [microblaze] Open firmware files
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/of_device.c | 109 +++ arch/microblaze/kernel/of_platform.c | 395 +++++++++++ arch/microblaze/kernel/prom.c | 1248 ++++++++++++++++++++++++++++++++++ arch/microblaze/kernel/prom_parse.c | 1033 ++++++++++++++++++++++++++++ include/asm-microblaze/of_device.h | 37 + include/asm-microblaze/of_platform.h | 37 + include/asm-microblaze/prom.h | 333...
Jan 24, 11:03 am 2008
monstr
[PATCH 05/52] [microblaze] Support for semaphores
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/semaphore.c | 222 ++++++++++++++++++++++++++++++++++++ include/asm-microblaze/semaphore.h | 100 ++++++++++++++++ 2 files changed, 322 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/semaphore.c create mode 100644 include/asm-microblaze/semaphore.h diff --git a/arch/microblaze/kernel/semaphore.c b/arch/microblaze/kernel/semaphore.c new file ...
Jan 24, 11:03 am 2008
monstr
[PATCH 06/52] [microblaze] exception handling
From: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <monstr@monstr.eu> --- arch/microblaze/kernel/exceptions.c | 79 +++++ arch/microblaze/kernel/hw_exception_handler.S | 395 +++++++++++++++++++++++++ include/asm-microblaze/exceptions.h | 66 ++++ 3 files changed, 540 insertions(+), 0 deletions(-) create mode 100644 arch/microblaze/kernel/exceptions.c create mode 100644 arch/microblaze/kernel/hw_exception_handler.S create mode 100644 inclu...
Jan 24, 11:03 am 2008
previous daytodaynext day
January 23, 2008January 24, 2008January 25, 2008