LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [git pull] m68knommu arch updates
@ 2011-01-18 10:35 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2011-01-18 10:35 UTC (permalink / raw)
To: torvalds; +Cc: gerg, Greg Ungerer, linux-kernel, linux-m68k
Hi Linus,
(I would normally send this from my gerg@snapgear.com email account,
but the server and routers for that have been under water recently :-(
Not sure when I will be able to get that back working again).
Can you please pull the m68knommu git tree, for-linus branch.
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
for-linus
The most significant changes are:
1. using separate user and supervisor stack pointers on ColdFire
parts that support it
2. reworking the CPU cache support, it now supports all forms of
instruction and data cache on various ColdFire family members
Quite a few other cleanups and some random fixes in there too. The 548x
support has been made more generic and supports the 547x family as well.
A bit of dead code removal as well.
Thanks
Greg
The following changes since commit 3c0eee3fe6a3a1c745379547c7e7c904aa64f6d5:
Linus Torvalds (1):
Linux 2.6.37
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
for-linus
Greg Ungerer (21):
m68knommu: make Coldfire 548x support more generic
m68knommu: add support for the ColdFire 547x family of processors
m68knommu: move ColdFire CPU names into their headers
m68knommu: fix clock rate value reported for ColdFire 54xx parts
m68knommu: move UART addressing to part specific includes
m68knommu: remove fasthandler interrupt code
m68knommu: remove command line printing DEBUG
m68knommu: use user stack pointer hardware on some ColdFire cores
m68knommu: remove do_page_fault(), it is not used
m68knommu: remove kernel_map() code, it is not used
m68knommu: remove empty __iounmap() it is no used
m68knommu: create bit definitions for the version 2 ColdFire
cache controller
m68knommu: merge bit definitions for version 3 ColdFire cache
controller
m68knommu: move inclusion of ColdFire v4 cache registers
m68knommu: clean up ColdFire cache control code
m68knommu: make cache push code ColdFire generic
m68knommu: support version 2 ColdFire split cache
m68knommu: support ColdFire caches that do copyback and write-through
m68knommu: create optimal separate instruction and data cache for
ColdFire
m68knommu: switch to using -mcpu= flags for ColdFire targets
m68knommu: fix broken setting of irq_chip and handler
Philippe De Muyter (4):
m68knommu: Create new m54xxacr.h from m5407sim.h subpart
m68knommu: Move __flush_cache_all definition for m54xx in m54xxacr.h
m68knommu: Use symbolic constants for cache operations on M54xx
m68knommu: arch/m68knommu/Kconfig whitespace cleanup
arch/m68k/include/asm/cacheflush_no.h | 95 ++++++--------
arch/m68k/include/asm/coldfire.h | 2 +-
arch/m68k/include/asm/entry_no.h | 59 +++++----
arch/m68k/include/asm/gpio.h | 2 +-
arch/m68k/include/asm/io_no.h | 1 -
arch/m68k/include/asm/m5206sim.h | 14 ++-
arch/m68k/include/asm/m520xsim.h | 17 +++-
arch/m68k/include/asm/m523xsim.h | 11 ++
arch/m68k/include/asm/m5249sim.h | 10 ++
arch/m68k/include/asm/m5272sim.h | 8 +
arch/m68k/include/asm/m527xsim.h | 10 ++
arch/m68k/include/asm/m528xsim.h | 11 ++
arch/m68k/include/asm/m52xxacr.h | 94 ++++++++++++++
arch/m68k/include/asm/m5307sim.h | 43 +++----
arch/m68k/include/asm/m532xsim.h | 33 ++----
arch/m68k/include/asm/m53xxacr.h | 101 +++++++++++++++
arch/m68k/include/asm/m5407sim.h | 42 +-----
arch/m68k/include/asm/m54xxacr.h | 97 ++++++++++++++
arch/m68k/include/asm/{m548xgpt.h => m54xxgpt.h} | 10 +-
arch/m68k/include/asm/{m548xsim.h => m54xxsim.h} | 23 +++-
arch/m68k/include/asm/mcfcache.h | 150
----------------------
arch/m68k/include/asm/mcfsim.h | 4 +-
arch/m68k/include/asm/mcfuart.h | 45 +-------
arch/m68k/include/asm/processor.h | 13 +-
arch/m68knommu/Kconfig | 98 +++++++++++++--
arch/m68knommu/Makefile | 14 +-
arch/m68knommu/kernel/setup.c | 72 +++--------
arch/m68knommu/mm/Makefile | 2 +-
arch/m68knommu/mm/fault.c | 57 --------
arch/m68knommu/mm/kmap.c | 9 --
arch/m68knommu/mm/memory.c | 33 -----
arch/m68knommu/platform/{548x => 54xx}/Makefile | 0
arch/m68knommu/platform/{548x => 54xx}/config.c | 32 +++---
arch/m68knommu/platform/68328/ints.c | 4 +-
arch/m68knommu/platform/coldfire/Makefile | 4 +-
arch/m68knommu/platform/coldfire/cache.c | 48 +++++++
arch/m68knommu/platform/coldfire/entry.S | 56 ++-------
arch/m68knommu/platform/coldfire/head.S | 26 +++-
38 files changed, 727 insertions(+), 623 deletions(-)
create mode 100644 arch/m68k/include/asm/m52xxacr.h
create mode 100644 arch/m68k/include/asm/m53xxacr.h
create mode 100644 arch/m68k/include/asm/m54xxacr.h
rename arch/m68k/include/asm/{m548xgpt.h => m54xxgpt.h} (95%)
rename arch/m68k/include/asm/{m548xsim.h => m54xxsim.h} (73%)
delete mode 100644 arch/m68k/include/asm/mcfcache.h
delete mode 100644 arch/m68knommu/mm/fault.c
delete mode 100644 arch/m68knommu/mm/memory.c
rename arch/m68knommu/platform/{548x => 54xx}/Makefile (100%)
rename arch/m68knommu/platform/{548x => 54xx}/config.c (74%)
create mode 100644 arch/m68knommu/platform/coldfire/cache.c
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2011-07-26 2:19 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2011-07-26 2:19 UTC (permalink / raw)
To: Linus Torvalds
Cc: Linux Kernel Development, Linux/m68k, uClinux development list,
Greg Ungerer
Hi Linus,
Can you please pull the m68knommu git tree, for-linus branch:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Mostly this is more m68k/m68knommu merge and cleanup work. Still more
of that to come too. A couple of minor fixes as well.
Thanks
Greg
The following changes since commit b6844e8f64920cdee620157252169ba63afb0c89:
Linus Torvalds (1):
Merge branch 'for-linus' of master.kernel.org:/home/rmk/linux-2.6-arm
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Geert Uytterhoeven (4):
m68knommu: Make empty_zero_page "void *", like on m68k
m68knommu: Fix printk() format in free_initrd_mem()
m68knommu: Move forward declaration of do_IRQ() from machdep.h to irq.h
m68k: Revive reporting of spurious interrupts
Greg Ungerer (9):
m68k: merge the non-mmu and mmu versions of module.c
m68k: merge MMU and non-MMU versions of asm/hardirq.h
m68k: merge MMU and non MMU versions of system.h
m68k: merge mmu and non-mmu bitops.h
m68knommu: merge ColdFire 5206 and 5206e platform code
m68knommu: correctly use trap_init
m68k: merge and clean up delay.h files
m68k: use CPU_HAS_NO_BITFIELDS for signal functions
m68k: fix some atomic operation asm address modes for ColdFire
arch/m68k/Kconfig | 4 +
arch/m68k/Kconfig.nommu | 3 +
arch/m68k/Makefile_no | 2 +-
arch/m68k/include/asm/atomic.h | 6 +-
arch/m68k/include/asm/bitops.h | 531 ++++++++++++++++++++++++++++++-
arch/m68k/include/asm/bitops_mm.h | 501 -----------------------------
arch/m68k/include/asm/bitops_no.h | 333 -------------------
arch/m68k/include/asm/delay.h | 97 ++++++-
arch/m68k/include/asm/delay_mm.h | 57 ----
arch/m68k/include/asm/delay_no.h | 76 -----
arch/m68k/include/asm/entry_no.h | 12 +-
arch/m68k/include/asm/hardirq.h | 35 ++-
arch/m68k/include/asm/hardirq_mm.h | 16 -
arch/m68k/include/asm/hardirq_no.h | 19 --
arch/m68k/include/asm/irq.h | 11 +-
arch/m68k/include/asm/machdep.h | 1 -
arch/m68k/include/asm/module.h | 31 +-
arch/m68k/include/asm/signal.h | 15 +-
arch/m68k/include/asm/system.h | 194 +++++++++++-
arch/m68k/include/asm/system_mm.h | 193 -----------
arch/m68k/include/asm/system_no.h | 153 ---------
arch/m68k/include/asm/traps.h | 1 -
arch/m68k/kernel/irq.c | 10 +
arch/m68k/kernel/module.c | 130 ++++++++-
arch/m68k/kernel/module_mm.c | 128 --------
arch/m68k/kernel/module_no.c | 92 ------
arch/m68k/kernel/traps_no.c | 4 -
arch/m68k/lib/Makefile | 2 +-
arch/m68k/lib/delay.c | 21 --
arch/m68k/mm/init_no.c | 11 +-
arch/m68k/platform/5206/config.c | 6 +
arch/m68k/platform/5206e/Makefile | 18 -
arch/m68k/platform/5206e/config.c | 127 --------
arch/m68k/platform/5206e/gpio.c | 49 ---
arch/m68k/platform/5272/intc.c | 2 -
arch/m68k/platform/68328/entry.S | 15 +-
arch/m68k/platform/68328/ints.c | 10 +-
arch/m68k/platform/68360/entry.S | 15 +-
arch/m68k/platform/68360/ints.c | 11 +-
arch/m68k/platform/coldfire/entry.S | 24 +-
arch/m68k/platform/coldfire/intc-2.c | 2 -
arch/m68k/platform/coldfire/intc-simr.c | 2 -
arch/m68k/platform/coldfire/intc.c | 1 -
arch/m68k/platform/coldfire/vectors.c | 10 +-
44 files changed, 1074 insertions(+), 1907 deletions(-)
delete mode 100644 arch/m68k/include/asm/bitops_mm.h
delete mode 100644 arch/m68k/include/asm/bitops_no.h
delete mode 100644 arch/m68k/include/asm/delay_mm.h
delete mode 100644 arch/m68k/include/asm/delay_no.h
delete mode 100644 arch/m68k/include/asm/hardirq_mm.h
delete mode 100644 arch/m68k/include/asm/hardirq_no.h
delete mode 100644 arch/m68k/include/asm/system_mm.h
delete mode 100644 arch/m68k/include/asm/system_no.h
delete mode 100644 arch/m68k/kernel/module_mm.c
delete mode 100644 arch/m68k/kernel/module_no.c
delete mode 100644 arch/m68k/lib/delay.c
delete mode 100644 arch/m68k/platform/5206e/Makefile
delete mode 100644 arch/m68k/platform/5206e/config.c
delete mode 100644 arch/m68k/platform/5206e/gpio.c
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2011-05-24 6:30 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2011-05-24 6:30 UTC (permalink / raw)
To: torvalds; +Cc: gerg, linux-kernel, linux-m68k, uclinux-dev
Hi Linus,
Can you please pull the m68knommu git tree, for-linus branch:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
A couple of changes to fix breakage from the m68k/m68knommu merge.
But most of this is a start on cleaning up common or nearly common
code that couldn't be trivially combined. Of course this is doing the
easy stuff first. Much more to come.
Thanks
Greg
The following changes since commit ea2b50ef4c9e030749ae473e95258f477c3a68ca:
Linus Torvalds (1):
Merge branch 'x86-apic-for-linus' of git://git.kernel.org/.../tip/linux-2.6-tip
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Akinobu Mita (1):
m68knommu: use asm-generic/bitops/ext2-atomic.h
Geert Uytterhoeven (2):
m68knommu: Remove obsolete #include <linux/sys.h>
m68knommu: Use generic show_interrupts()
Greg Ungerer (18):
m68k: merge mmu and non-mmu versions of muldi3
m68k: merge mmu and non-mmu versions of lib/Makefile
m68k: remove duplicate memmove() implementation
m68k: remove duplicate memset() implementation
m68k: remove duplicate memcpy() implementation
m68k: let Makefile sort out compiling mmu and non-mmu lib/checksum.c
m68knommu: remove unused kernel_set_cachemode()
m68knommu: remove stubs for __ioremap() and iounmap()
m68k: mv kmap_mm.c to kmap.c
m68k: merge the mmu and non-mmu mm/Makefile
m68knommu: clean up mm/init_no.c
m68knommu: move EXPORT of dump_fpu to function definition
m68knommu: move EXPORT of local checksumming functions to definitions
m68knommu: move EXPORT of kernel_thread to function definition
m68knommu: remove un-needed exporting of COLDFIRE symbols
m68k: merge non-mmu and mmu versions of m68k_ksyms.c
m68k: merge mmu and non-mmu versions of asm-offsets.c
m68k: merge the mmu and non-mmu versions of sys_m68k.c
Steven King (1):
coldfire_qspi compile fix
arch/m68k/Kconfig | 1 +
arch/m68k/include/asm/bitops_no.h | 18 +-
arch/m68k/include/asm/io_no.h | 8 +-
arch/m68k/kernel/asm-offsets.c | 106 ++++++-
arch/m68k/kernel/asm-offsets_mm.c | 100 ------
arch/m68k/kernel/asm-offsets_no.c | 76 -----
arch/m68k/kernel/entry_no.S | 1 -
arch/m68k/kernel/irq.c | 28 --
arch/m68k/kernel/m68k_ksyms.c | 36 ++-
arch/m68k/kernel/m68k_ksyms_mm.c | 16 -
arch/m68k/kernel/m68k_ksyms_no.c | 78 -----
arch/m68k/kernel/process_no.c | 2 +
arch/m68k/kernel/sys_m68k.c | 581 ++++++++++++++++++++++++++++++++++-
arch/m68k/kernel/sys_m68k_mm.c | 546 --------------------------------
arch/m68k/kernel/sys_m68k_no.c | 94 ------
arch/m68k/kernel/syscalltable.S | 1 -
arch/m68k/lib/Makefile | 13 +-
arch/m68k/lib/Makefile_mm | 6 -
arch/m68k/lib/Makefile_no | 7 -
arch/m68k/lib/checksum.c | 5 -
arch/m68k/lib/checksum_no.c | 3 +
arch/m68k/lib/memcpy.c | 128 +++++----
arch/m68k/lib/memmove.c | 2 -
arch/m68k/lib/memset.c | 114 +++++---
arch/m68k/lib/muldi3.c | 99 ++++++-
arch/m68k/lib/muldi3_mm.c | 63 ----
arch/m68k/lib/muldi3_no.c | 86 -----
arch/m68k/lib/string.c | 223 --------------
arch/m68k/mm/Makefile | 14 +-
arch/m68k/mm/Makefile_mm | 8 -
arch/m68k/mm/Makefile_no | 5 -
arch/m68k/mm/init_no.c | 51 +---
arch/m68k/mm/kmap.c | 368 ++++++++++++++++++++++-
arch/m68k/mm/kmap_mm.c | 367 ----------------------
arch/m68k/mm/kmap_no.c | 45 ---
arch/m68k/platform/68328/entry.S | 7 +-
arch/m68k/platform/68360/entry.S | 7 +-
arch/m68k/platform/coldfire/dma.c | 3 +
arch/m68k/platform/coldfire/entry.S | 11 +-
arch/m68k/platform/coldfire/head.S | 1 -
drivers/spi/coldfire_qspi.c | 1 +
41 files changed, 1369 insertions(+), 1960 deletions(-)
delete mode 100644 arch/m68k/kernel/asm-offsets_mm.c
delete mode 100644 arch/m68k/kernel/asm-offsets_no.c
delete mode 100644 arch/m68k/kernel/m68k_ksyms_mm.c
delete mode 100644 arch/m68k/kernel/m68k_ksyms_no.c
delete mode 100644 arch/m68k/kernel/sys_m68k_mm.c
delete mode 100644 arch/m68k/kernel/sys_m68k_no.c
delete mode 100644 arch/m68k/lib/Makefile_mm
delete mode 100644 arch/m68k/lib/Makefile_no
delete mode 100644 arch/m68k/lib/checksum.c
delete mode 100644 arch/m68k/lib/muldi3_mm.c
delete mode 100644 arch/m68k/lib/muldi3_no.c
delete mode 100644 arch/m68k/mm/Makefile_mm
delete mode 100644 arch/m68k/mm/Makefile_no
delete mode 100644 arch/m68k/mm/kmap_mm.c
delete mode 100644 arch/m68k/mm/kmap_no.c
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2010-10-25 0:29 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2010-10-25 0:29 UTC (permalink / raw)
To: torvalds; +Cc: gerg, linux-kernel, linux-m68k
Hi Linus,
Can you please pull the m68knommu git tree, for-linus branch.
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Changes include support for the ColdFire 548x family, removal of
__do_IRQ use, strace cleanups, some minor bug fixes, and quite a
few cleanup patches (remove un-used symbols, whitespace formating,
comments, etc).
Thanks
Greg
The following changes since commit f6f94e2ab1b33f0082ac22d71f66385a60d8157f:
Linus Torvalds (1):
Linux 2.6.36
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Christian Dietrich (5):
arch/m68knommu: Removing dead M68000 config option
arch/m68knommu: Removing dead RELOCATE config option
arch/m68knommu: Removing dead M68KFPU_EMU config option
arch/m68knommu: Removing dead RAM_{16,32}_MB config option
arch/m68knommu: Removing dead 68328_SERIAL_UART2 config option
Greg Ungerer (5):
m68knommu: stop using __do_IRQ
m68knommu: mask of vector bits in exception word properly
m68knommu: support the external GPIO based interrupts of the 5272
m68knommu: some boards use fixed phy for FEC ethernet
m68knommu: convert to using tracehook_report_syscall_*
Philippe De Muyter (10):
m68knommu: fix default starting date
m68knommu: fix strace support for 68328/68360
m68knommu: Document supported chips in intc-2.c and intc-simr.c.
m68knommu: whitespace cleanup in 68328/entry.S
m68k{nommu}: Remove unused DEFINE's from asm-offsets.c
m68knommu: add support for Coldfire 547x/548x interrupt controller
m68knommu: rename PT_OFF_VECTOR to PT_OFF_FORMATVEC.
m68knommu: .gitignore vmlinux.lds
m68knommu: add basic mmu-less m548x support
m68knommu: Fix MCFUART_TXFIFOSIZE for m548x.
matt mooney (1):
m68knommu: change to new flag variables
arch/m68k/include/asm/cacheflush_no.h | 2 +-
arch/m68k/include/asm/coldfire.h | 4 +-
arch/m68k/include/asm/gpio.h | 7 +-
arch/m68k/include/asm/m548xgpt.h | 88 ++++++++++++++++
arch/m68k/include/asm/m548xsim.h | 55 ++++++++++
arch/m68k/include/asm/mcfcache.h | 2 +-
arch/m68k/include/asm/mcfsim.h | 2 +
arch/m68k/include/asm/mcfslt.h | 44 ++++++++
arch/m68k/include/asm/mcfuart.h | 9 ++-
arch/m68k/kernel/asm-offsets.c | 12 --
arch/m68knommu/Kconfig | 11 ++-
arch/m68knommu/Makefile | 3 +
arch/m68knommu/kernel/.gitignore | 1 +
arch/m68knommu/kernel/asm-offsets.c | 11 +--
arch/m68knommu/kernel/ptrace.c | 47 +++------
arch/m68knommu/kernel/setup.c | 3 -
arch/m68knommu/kernel/time.c | 13 ++-
arch/m68knommu/kernel/traps.c | 26 ++---
arch/m68knommu/platform/5206/Makefile | 4 +-
arch/m68knommu/platform/5206e/Makefile | 4 +-
arch/m68knommu/platform/520x/Makefile | 4 +-
arch/m68knommu/platform/523x/Makefile | 4 +-
arch/m68knommu/platform/5249/Makefile | 4 +-
arch/m68knommu/platform/5272/Makefile | 4 +-
arch/m68knommu/platform/5272/config.c | 16 +++
arch/m68knommu/platform/5272/intc.c | 60 +++++++++--
arch/m68knommu/platform/527x/Makefile | 4 +-
arch/m68knommu/platform/528x/Makefile | 4 +-
arch/m68knommu/platform/5307/Makefile | 4 +-
arch/m68knommu/platform/532x/Makefile | 4 +-
arch/m68knommu/platform/5407/Makefile | 4 +-
arch/m68knommu/platform/548x/Makefile | 18 +++
arch/m68knommu/platform/548x/config.c | 115 ++++++++++++++++++++
arch/m68knommu/platform/68328/entry.S | 36 +++---
arch/m68knommu/platform/68328/head-de2.S | 6 -
arch/m68knommu/platform/68328/head-ram.S | 27 -----
arch/m68knommu/platform/68328/ints.c | 6 +-
arch/m68knommu/platform/68360/entry.S | 13 ++-
arch/m68knommu/platform/68360/ints.c | 6 +-
arch/m68knommu/platform/68VZ328/config.c | 5 -
arch/m68knommu/platform/coldfire/Makefile | 5 +-
arch/m68knommu/platform/coldfire/entry.S | 4 +-
arch/m68knommu/platform/coldfire/intc-2.c | 53 ++++++++--
arch/m68knommu/platform/coldfire/intc-simr.c | 10 +-
arch/m68knommu/platform/coldfire/intc.c | 8 +-
arch/m68knommu/platform/coldfire/sltimers.c | 145 ++++++++++++++++++++++++++
drivers/serial/68328serial.h | 5 -
47 files changed, 707 insertions(+), 215 deletions(-)
create mode 100644 arch/m68k/include/asm/m548xgpt.h
create mode 100644 arch/m68k/include/asm/m548xsim.h
create mode 100644 arch/m68k/include/asm/mcfslt.h
create mode 100644 arch/m68knommu/kernel/.gitignore
create mode 100644 arch/m68knommu/platform/548x/Makefile
create mode 100644 arch/m68knommu/platform/548x/config.c
create mode 100644 arch/m68knommu/platform/coldfire/sltimers.c
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2010-05-25 6:19 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2010-05-25 6:19 UTC (permalink / raw)
To: torvalds; +Cc: gerg, linux-kernel, linux-m68k
Hi Linus,
Please pull:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Biggest change is the QSPI driver platform support. Also platform support
for the SMC91x driver on some ColdFire platforms. A couple of bug fixes,
and some cleanups as well.
Thanks
Greg
The following changes since commit e40152ee1e1c7a63f4777791863215e3faa37a86:
Linus Torvalds (1):
Linus 2.6.34
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Andrea Gelmini (2):
arch/m68knommu/mm/fault.c: Checkpatch cleanup
arch/m68knommu/platform/68360/commproc.c: Checkpatch cleanup
Greg Ungerer (5):
m68knommu: fix broken use of BUAD_TABLE_SIZE in 68328serial driver
m68knommu: remove size limit on non-MMU TASK_SIZE
m68knommu: add smc91x support to ColdFire 5249 platform
m68knommu: add smc91x support for ColdFire NETtel boards
m68knommu: remove un-used mcfsmc.h
Philippe De Muyter (1):
m68knommu: improve short help of m68knommu/Kconfig/RAMSIZE for '0' case
Steven King (1):
m68knommu: Coldfire QSPI platform support
arch/m68k/include/asm/m520xsim.h | 1 +
arch/m68k/include/asm/m523xsim.h | 5 +
arch/m68k/include/asm/m5249sim.h | 2 +
arch/m68k/include/asm/m527xsim.h | 7 +
arch/m68k/include/asm/m528xsim.h | 67 +---------
arch/m68k/include/asm/m532xsim.h | 1 +
arch/m68k/include/asm/mcfqspi.h | 64 +++++++++
arch/m68k/include/asm/mcfsmc.h | 187 --------------------------
arch/m68k/include/asm/processor.h | 4 +
arch/m68knommu/Kconfig | 2 +-
arch/m68knommu/mm/fault.c | 10 +-
arch/m68knommu/platform/520x/config.c | 149 +++++++++++++++++++++
arch/m68knommu/platform/523x/config.c | 170 +++++++++++++++++++++++
arch/m68knommu/platform/5249/config.c | 215 ++++++++++++++++++++++++++++++
arch/m68knommu/platform/527x/config.c | 182 +++++++++++++++++++++++++
arch/m68knommu/platform/528x/config.c | 137 +++++++++++++++++++
arch/m68knommu/platform/5307/Makefile | 4 +-
arch/m68knommu/platform/5307/nettel.c | 153 +++++++++++++++++++++
arch/m68knommu/platform/532x/config.c | 124 +++++++++++++++++
arch/m68knommu/platform/68360/commproc.c | 4 +-
drivers/serial/68328serial.c | 2 +-
21 files changed, 1227 insertions(+), 263 deletions(-)
create mode 100644 arch/m68k/include/asm/mcfqspi.h
delete mode 100644 arch/m68k/include/asm/mcfsmc.h
create mode 100644 arch/m68knommu/platform/5307/nettel.c
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2010-03-09 3:47 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2010-03-09 3:47 UTC (permalink / raw)
To: torvalds; +Cc: gerg, linux-kernel, linux-m68k
Hi Linus,
Please pull to get m68knommu updates. The usual few fixes, and also
changes to support NPTL, and hardware support for the ColdFire QSPI
interface.
Thanks
Greg
The following changes since commit 6ebdc661b608671e9ca572af8bb42d58108cc008:
Linus Torvalds (1):
Merge branch 'next-devicetree' of git://git.secretlab.ca/git/linux-2.6
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Greg Ungerer (1):
m68knommu: remove a duplicate vector setting line for 68360
Jun Sun (1):
uclinux: error message when FLAT reloc symbol is invalid, v2
Maxim Kuvyrkov (2):
m68knommu: NPTL support for m68knommu
Fix m68k-uclinux's rt_sigreturn trampoline
Philip Nye (1):
m68knommu: correct the CC flags for Coldfire M5272 targets
Steven King (1):
m68knommu: Coldfire QSPI platform support
arch/m68k/include/asm/m520xsim.h | 1 +
arch/m68k/include/asm/m523xsim.h | 5 +
arch/m68k/include/asm/m5249sim.h | 2 +
arch/m68k/include/asm/m527xsim.h | 7 ++
arch/m68k/include/asm/m528xsim.h | 67 +------------
arch/m68k/include/asm/m532xsim.h | 1 +
arch/m68k/include/asm/mcfqspi.h | 64 +++++++++++
arch/m68k/include/asm/thread_info_no.h | 1 +
arch/m68knommu/Makefile | 2 +-
arch/m68knommu/kernel/entry.S | 2 +-
arch/m68knommu/kernel/process.c | 4 +
arch/m68knommu/kernel/ptrace.c | 5 +
arch/m68knommu/kernel/sys_m68k.c | 36 ++++++
arch/m68knommu/kernel/syscalltable.S | 4 +
arch/m68knommu/platform/520x/config.c | 149 ++++++++++++++++++++++++++
arch/m68knommu/platform/523x/config.c | 170 +++++++++++++++++++++++++++++
arch/m68knommu/platform/5249/config.c | 167 +++++++++++++++++++++++++++++
arch/m68knommu/platform/527x/config.c | 182 ++++++++++++++++++++++++++++++++
arch/m68knommu/platform/528x/config.c | 137 ++++++++++++++++++++++++
arch/m68knommu/platform/532x/config.c | 124 ++++++++++++++++++++++
arch/m68knommu/platform/68360/ints.c | 1 -
fs/binfmt_flat.c | 2 +-
22 files changed, 1063 insertions(+), 70 deletions(-)
create mode 100644 arch/m68k/include/asm/mcfqspi.h
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [git pull] m68knommu arch updates
2009-12-10 3:13 ` Linus Torvalds
@ 2009-12-10 4:54 ` Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2009-12-10 4:54 UTC (permalink / raw)
To: Linus Torvalds
Cc: Geert Uytterhoeven, gerg, Linux Kernel Mailing List, linux-m68k
Hi Linus,
Linus Torvalds wrote:
>
> On Wed, 9 Dec 2009, Greg Ungerer wrote:
>> Please pull to get the latest m68knommu arch fixes. Not a lot in here,
>> mostly small fixes. The biggest change is Tim Abbott's linker script
>> cleanups.
>
> Hmm. I got a conflict due to the other m68k changes on the file
> arch/m68k/include/asm/ptrace.h.
>
> I fixed it up the way that seemed most appropriate, but somebody should
> double-check. My resolution is not identical to either source branch tree.
The end result looks fine to me.
Regards
Greg
--
------------------------------------------------------------------------
Greg Ungerer -- Principal Engineer EMAIL: gerg@snapgear.com
SnapGear Group, McAfee PHONE: +61 7 3435 2888
8 Gardner Close FAX: +61 7 3217 5323
Milton, QLD, 4064, Australia WEB: http://www.SnapGear.com
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [git pull] m68knommu arch updates
2009-12-09 7:58 Greg Ungerer
@ 2009-12-10 3:13 ` Linus Torvalds
2009-12-10 4:54 ` Greg Ungerer
0 siblings, 1 reply; 11+ messages in thread
From: Linus Torvalds @ 2009-12-10 3:13 UTC (permalink / raw)
To: Greg Ungerer, Geert Uytterhoeven
Cc: gerg, Linux Kernel Mailing List, linux-m68k
On Wed, 9 Dec 2009, Greg Ungerer wrote:
>
> Please pull to get the latest m68knommu arch fixes. Not a lot in here,
> mostly small fixes. The biggest change is Tim Abbott's linker script
> cleanups.
Hmm. I got a conflict due to the other m68k changes on the file
arch/m68k/include/asm/ptrace.h.
I fixed it up the way that seemed most appropriate, but somebody should
double-check. My resolution is not identical to either source branch tree.
Linus
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2009-12-09 7:58 Greg Ungerer
2009-12-10 3:13 ` Linus Torvalds
0 siblings, 1 reply; 11+ messages in thread
From: Greg Ungerer @ 2009-12-09 7:58 UTC (permalink / raw)
To: torvalds; +Cc: gerg, linux-kernel, linux-m68k
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2191 bytes --]
Hi Linus,
Please pull to get the latest m68knommu arch fixes. Not a lot in here,
mostly small fixes. The biggest change is Tim Abbott's linker script
cleanups.
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Thanks
Greg
The following changes since commit 22763c5cf3690a681551162c15d34d935308c8d7:
Linus Torvalds (1):
Linux 2.6.32
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Greg Ungerer (3):
m68knommu: define arch_has_single_step() and friends
m68knommu: add a task_pt_regs() macro
m68knommu: rename BSS define in linker script
Lennart Sorensen (1):
m68knommu: add uboot commandline argument passing support
Steven King (2):
m68knommu: Coldfire GPIO corrections
m68knommu: export clk_* symbols in clk.c
Tim Abbott (7):
m68knommu: Don't hardcode the value of PAGE_SIZE in the linker script.
m68knommu: Make THREAD_SIZE available to assembly files.
m68knommu: Use INIT_TASK_DATA and CACHELINE_ALIGNED_DATA.
m68knommu: Use more macros inside the .init section.
m68knommu: Move __init_begin out of the .init section.
m68knommu: Move __init_end out of the .init section.
m68knommu: Split the .init section into INIT_TEXT_SECTION and INIT_DATA_SECTION.
Uwe Kleine-König (1):
m68knommu: move mcf_remove to .devexit.text
arch/m68k/include/asm/processor.h | 2 +
arch/m68k/include/asm/ptrace.h | 12 ++++
arch/m68k/include/asm/thread_info_no.h | 4 +-
arch/m68knommu/Kconfig | 7 ++
arch/m68knommu/kernel/ptrace.c | 18 +++++-
arch/m68knommu/kernel/setup.c | 92 ++++++++++++++++++++++++++++++-
arch/m68knommu/kernel/vmlinux.lds.S | 47 +++++-----------
arch/m68knommu/platform/523x/gpio.c | 5 +-
arch/m68knommu/platform/527x/gpio.c | 6 +-
arch/m68knommu/platform/528x/gpio.c | 2 +-
arch/m68knommu/platform/coldfire/clk.c | 7 ++-
arch/m68knommu/platform/coldfire/head.S | 10 +++
drivers/serial/mcf.c | 2 +-
13 files changed, 167 insertions(+), 47 deletions(-)
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2009-04-02 4:53 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2009-04-02 4:53 UTC (permalink / raw)
To: torvalds; +Cc: gerg, linux-kernel, linux-m68k
Hi Linus,
Please pull from to get a set of updates for the m68knommu arch.
There is a lot of header file clean ups after the m68knommu/m68k
header file merge. Most of the separate files only differ in minor
ways, and are easy to merge into a single file.
There is a handful of other fixes too. In particular to the UART
settings in the platform code of some ColdFire family members.
Regards
Greg
The following changes since commit 8e0ee43bc2c3e19db56a4adaa9a9b04ce885cd84:
Linus Torvalds (1):
Linux 2.6.29
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Geert Uytterhoeven (2):
m68k: Use dma_addr_t for scatterlist.dma_address
m68k: Restore correct include guards for <asm/unaligned.h>
Greg Ungerer (38):
m68knommu: mark all RAM as ZONE_DMA
m68knommu: add a local dma_sync_single_for_cpu() function
m68k: use the mmu pci.h for m68knommu as well
m68k: swtich non-mmu setups to use the mmu dma-mapping.h
m68k: use the mc146818rtc.h for non-mmu setups as well.
m68k: use mmu kmap_types.h for non-mmu setups as well
m68knommu: remove no longer used mcfpci.h
m68k: merge the mmu and non-mmu versions of mmu.h
m68k: use mmu scatterlist.h for non-mmu setups as well
m68k: use mmu fpu.h for non-mmu builds as well
m68k: use mmu timex.h for non-mmu setups as well
m68k: use mmu version of elf.h for non-mmu builds as well
m68k: use non-mmu version of unaligned.h for all m68k
m68k: the one hw_irq.h can be used buy all m68k
m68k: merge the mmu and non-mmu versions of page_offset.h
m68knommu: mv definition of check_pgt_cache()
m68k: merge the mmu and non-mmu versions of pgalloc.h
m68k: merge the mmu and non-mmu versions of ucontext.h
m68k: merge the mmu and non-mmu versions of segment.h
m68k: merge the mmu and non-mmu versions of fb.h
m68k: use the mmu version of bootinfo.h for m68knommu as well
m68k: use the mmu version of cache.h for m68knommu as well
m68k: merge the mmu and non-mmu versions of bug.h
m68k: merge the mmu and non-mmu versions of bugs.h
m68k: merge the mmu and non-mmu versions of div64.h
m68k: merge the mmu and non-mmu versions of current.h
m68k: merge the mmu and non-mmu versions of mmu_context.h
m68knommu: add missing interrupt line definition for UART 2
m68k: merge the mmu and non-mmu versions of module.h
m68knommu: introduce basic clk infrastructure
m68k: merge the mmu and non-mmu versions of tlbflush.h
m68knommu: switch to using generic_handle_irq()
m68knommu: fix end of uart table marker
m68knommu: fix 5249 ColdFire UART setup
m68knommu: fix 5249 ColdFire UART vector setup
m68knommu: fix 5307 ColdFire UART vector setup
m68knommu: fix 5407 ColdFire UART vector setup
m68knommu: improve compile arch switch settings
Len Sorensen (1):
m68knommu: Fix support for console port other than ttyS0 on mcf.c
arch/m68k/include/asm/bootinfo.h | 381 ++++++++++++++++++++++++++++-
arch/m68k/include/asm/bootinfo_mm.h | 378 ----------------------------
arch/m68k/include/asm/bootinfo_no.h | 2 -
arch/m68k/include/asm/bug.h | 31 ++-
arch/m68k/include/asm/bug_mm.h | 29 ---
arch/m68k/include/asm/bug_no.h | 4 -
arch/m68k/include/asm/bugs.h | 21 ++-
arch/m68k/include/asm/bugs_mm.h | 14 -
arch/m68k/include/asm/bugs_no.h | 16 --
arch/m68k/include/asm/cache.h | 14 +-
arch/m68k/include/asm/cache_mm.h | 11 -
arch/m68k/include/asm/cache_no.h | 12 -
arch/m68k/include/asm/current.h | 31 ++-
arch/m68k/include/asm/current_mm.h | 6 -
arch/m68k/include/asm/current_no.h | 24 --
arch/m68k/include/asm/div64.h | 37 +++-
arch/m68k/include/asm/div64_mm.h | 28 --
arch/m68k/include/asm/div64_no.h | 1 -
arch/m68k/include/asm/dma-mapping.h | 113 +++++++++-
arch/m68k/include/asm/dma-mapping_mm.h | 112 ---------
arch/m68k/include/asm/dma-mapping_no.h | 6 -
arch/m68k/include/asm/elf.h | 120 +++++++++-
arch/m68k/include/asm/elf_mm.h | 119 ---------
arch/m68k/include/asm/elf_no.h | 110 ---------
arch/m68k/include/asm/fb.h | 41 +++-
arch/m68k/include/asm/fb_mm.h | 34 ---
arch/m68k/include/asm/fb_no.h | 12 -
arch/m68k/include/asm/fpu.h | 22 ++-
arch/m68k/include/asm/fpu_mm.h | 21 --
arch/m68k/include/asm/fpu_no.h | 21 --
arch/m68k/include/asm/hw_irq.h | 9 +-
arch/m68k/include/asm/hw_irq_mm.h | 6 -
arch/m68k/include/asm/hw_irq_no.h | 4 -
arch/m68k/include/asm/kmap_types.h | 26 ++-
arch/m68k/include/asm/kmap_types_mm.h | 21 --
arch/m68k/include/asm/kmap_types_no.h | 21 --
arch/m68k/include/asm/m532xsim.h | 1 +
arch/m68k/include/asm/mc146818rtc.h | 31 ++-
arch/m68k/include/asm/mc146818rtc_mm.h | 26 --
arch/m68k/include/asm/mc146818rtc_no.h | 9 -
arch/m68k/include/asm/mcfpci.h | 119 ---------
arch/m68k/include/asm/mmu.h | 14 +-
arch/m68k/include/asm/mmu_context.h | 176 +++++++++++++-
arch/m68k/include/asm/mmu_context_mm.h | 154 ------------
arch/m68k/include/asm/mmu_context_no.h | 33 ---
arch/m68k/include/asm/mmu_mm.h | 7 -
arch/m68k/include/asm/mmu_no.h | 10 -
arch/m68k/include/asm/module.h | 51 ++++-
arch/m68k/include/asm/module_mm.h | 39 ---
arch/m68k/include/asm/module_no.h | 11 -
arch/m68k/include/asm/page_offset.h | 12 +-
arch/m68k/include/asm/page_offset_mm.h | 8 -
arch/m68k/include/asm/page_offset_no.h | 5 -
arch/m68k/include/asm/pci.h | 17 +-
arch/m68k/include/asm/pci_mm.h | 12 -
arch/m68k/include/asm/pci_no.h | 29 ---
arch/m68k/include/asm/pgalloc.h | 20 ++-
arch/m68k/include/asm/pgalloc_mm.h | 19 --
arch/m68k/include/asm/pgalloc_no.h | 8 -
arch/m68k/include/asm/pgtable_no.h | 2 +
arch/m68k/include/asm/scatterlist.h | 26 ++-
arch/m68k/include/asm/scatterlist_mm.h | 23 --
arch/m68k/include/asm/scatterlist_no.h | 22 --
arch/m68k/include/asm/segment.h | 64 +++++-
arch/m68k/include/asm/segment_mm.h | 57 -----
arch/m68k/include/asm/segment_no.h | 51 ----
arch/m68k/include/asm/timex.h | 21 ++-
arch/m68k/include/asm/timex_mm.h | 18 --
arch/m68k/include/asm/timex_no.h | 23 --
arch/m68k/include/asm/tlbflush.h | 268 ++++++++++++++++++++-
arch/m68k/include/asm/tlbflush_mm.h | 219 -----------------
arch/m68k/include/asm/tlbflush_no.h | 55 ----
arch/m68k/include/asm/ucontext.h | 33 +++-
arch/m68k/include/asm/ucontext_mm.h | 30 ---
arch/m68k/include/asm/ucontext_no.h | 32 ---
arch/m68k/include/asm/unaligned.h | 26 ++-
arch/m68k/include/asm/unaligned_mm.h | 13 -
arch/m68k/include/asm/unaligned_no.h | 25 --
arch/m68knommu/Makefile | 14 +-
arch/m68knommu/kernel/dma.c | 8 +-
arch/m68knommu/kernel/irq.c | 2 +-
arch/m68knommu/mm/init.c | 6 +-
arch/m68knommu/platform/5249/config.c | 11 +-
arch/m68knommu/platform/5307/config.c | 8 +-
arch/m68knommu/platform/5407/config.c | 8 +-
arch/m68knommu/platform/coldfire/Makefile | 2 +-
arch/m68knommu/platform/coldfire/clk.c | 40 +++
drivers/serial/mcf.c | 2 +-
88 files changed, 1589 insertions(+), 2189 deletions(-)
delete mode 100644 arch/m68k/include/asm/bootinfo_mm.h
delete mode 100644 arch/m68k/include/asm/bootinfo_no.h
delete mode 100644 arch/m68k/include/asm/bug_mm.h
delete mode 100644 arch/m68k/include/asm/bug_no.h
delete mode 100644 arch/m68k/include/asm/bugs_mm.h
delete mode 100644 arch/m68k/include/asm/bugs_no.h
delete mode 100644 arch/m68k/include/asm/cache_mm.h
delete mode 100644 arch/m68k/include/asm/cache_no.h
delete mode 100644 arch/m68k/include/asm/current_mm.h
delete mode 100644 arch/m68k/include/asm/current_no.h
delete mode 100644 arch/m68k/include/asm/div64_mm.h
delete mode 100644 arch/m68k/include/asm/div64_no.h
delete mode 100644 arch/m68k/include/asm/dma-mapping_mm.h
delete mode 100644 arch/m68k/include/asm/dma-mapping_no.h
delete mode 100644 arch/m68k/include/asm/elf_mm.h
delete mode 100644 arch/m68k/include/asm/elf_no.h
delete mode 100644 arch/m68k/include/asm/fb_mm.h
delete mode 100644 arch/m68k/include/asm/fb_no.h
delete mode 100644 arch/m68k/include/asm/fpu_mm.h
delete mode 100644 arch/m68k/include/asm/fpu_no.h
delete mode 100644 arch/m68k/include/asm/hw_irq_mm.h
delete mode 100644 arch/m68k/include/asm/hw_irq_no.h
delete mode 100644 arch/m68k/include/asm/kmap_types_mm.h
delete mode 100644 arch/m68k/include/asm/kmap_types_no.h
delete mode 100644 arch/m68k/include/asm/mc146818rtc_mm.h
delete mode 100644 arch/m68k/include/asm/mc146818rtc_no.h
delete mode 100644 arch/m68k/include/asm/mcfpci.h
delete mode 100644 arch/m68k/include/asm/mmu_context_mm.h
delete mode 100644 arch/m68k/include/asm/mmu_context_no.h
delete mode 100644 arch/m68k/include/asm/mmu_mm.h
delete mode 100644 arch/m68k/include/asm/mmu_no.h
delete mode 100644 arch/m68k/include/asm/module_mm.h
delete mode 100644 arch/m68k/include/asm/module_no.h
delete mode 100644 arch/m68k/include/asm/page_offset_mm.h
delete mode 100644 arch/m68k/include/asm/page_offset_no.h
delete mode 100644 arch/m68k/include/asm/pci_mm.h
delete mode 100644 arch/m68k/include/asm/pci_no.h
delete mode 100644 arch/m68k/include/asm/pgalloc_mm.h
delete mode 100644 arch/m68k/include/asm/pgalloc_no.h
delete mode 100644 arch/m68k/include/asm/scatterlist_mm.h
delete mode 100644 arch/m68k/include/asm/scatterlist_no.h
delete mode 100644 arch/m68k/include/asm/segment_mm.h
delete mode 100644 arch/m68k/include/asm/segment_no.h
delete mode 100644 arch/m68k/include/asm/timex_mm.h
delete mode 100644 arch/m68k/include/asm/timex_no.h
delete mode 100644 arch/m68k/include/asm/tlbflush_mm.h
delete mode 100644 arch/m68k/include/asm/tlbflush_no.h
delete mode 100644 arch/m68k/include/asm/ucontext_mm.h
delete mode 100644 arch/m68k/include/asm/ucontext_no.h
delete mode 100644 arch/m68k/include/asm/unaligned_mm.h
delete mode 100644 arch/m68k/include/asm/unaligned_no.h
create mode 100644 arch/m68knommu/platform/coldfire/clk.c
^ permalink raw reply [flat|nested] 11+ messages in thread
* [git pull] m68knommu arch updates
@ 2008-07-24 7:22 Greg Ungerer
0 siblings, 0 replies; 11+ messages in thread
From: Greg Ungerer @ 2008-07-24 7:22 UTC (permalink / raw)
To: torvalds; +Cc: gerg, linux-kernel
Linus,
Please pull to get the m68knommu architecture updates.
Thanks, Greg.
The following changes since commit deca05c3e81df4fcc38aa891eb8d8add14bce68b:
Greg Ungerer (1):
m68knommu: change to a configs directory for board configurations
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus
Greg Ungerer (6):
m68knommu: defconfig for M5249EVB board
m68knommu: defconfig for M5275EVB board
m68knommu: defconfig for M5307C3 board
m68knommu: defconfig for M5407C3 board
m68knommu: remove last use of CONFIG_FADS and CONFIG_RPXCLASSIC
m68knommu: put ColdFire head code into .text.head section
Sebastian Siewior (11):
m68knommu: Add Coldfire DMA Timer support
m68knommu: m68knommu: add old stack trace method
m68knommu: move code within time.c
m68knommu: complete generic time
m68knommu: add sched_clock() for the DMA timer
m68knommu: add ffs and __ffs plattform which support ISA A+ or ISA C
m68knommu: add byteswap assembly opcode for ISA A+
m68knommu: add read_barrier_depends() and irqs_disabled_flags()
m68knommu: MCF5307 PIT GENERIC_CLOCKEVENTS support
m68knommu: fec: remove FADS
m68knommu: remove RPXCLASSIC from the m68k tree
arch/m68knommu/Kconfig | 15 +
arch/m68knommu/Makefile | 11 +-
arch/m68knommu/configs/m5249evb_defconfig | 497 ++++++++++++++++++++
arch/m68knommu/configs/m5275evb_defconfig | 627 +++++++++++++++++++++++++
arch/m68knommu/configs/m5307c3_defconfig | 580 +++++++++++++++++++++++
arch/m68knommu/configs/m5407c3_defconfig | 641 ++++++++++++++++++++++++++
arch/m68knommu/kernel/time.c | 40 +-
arch/m68knommu/kernel/traps.c | 38 ++-
arch/m68knommu/kernel/vmlinux.lds.S | 1 +
arch/m68knommu/platform/coldfire/Makefile | 2 +-
arch/m68knommu/platform/coldfire/dma_timer.c | 84 ++++
arch/m68knommu/platform/coldfire/head.S | 3 +-
arch/m68knommu/platform/coldfire/pit.c | 91 ++++-
drivers/net/fec.c | 54 +---
include/asm-m68knommu/bitops.h | 30 ++
include/asm-m68knommu/byteorder.h | 16 +-
include/asm-m68knommu/commproc.h | 19 -
include/asm-m68knommu/system.h | 11 +
18 files changed, 2643 insertions(+), 117 deletions(-)
create mode 100644 arch/m68knommu/configs/m5249evb_defconfig
create mode 100644 arch/m68knommu/configs/m5275evb_defconfig
create mode 100644 arch/m68knommu/configs/m5307c3_defconfig
create mode 100644 arch/m68knommu/configs/m5407c3_defconfig
create mode 100644 arch/m68knommu/platform/coldfire/dma_timer.c
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2011-07-26 2:29 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-18 10:35 [git pull] m68knommu arch updates Greg Ungerer
-- strict thread matches above, loose matches on Subject: below --
2011-07-26 2:19 Greg Ungerer
2011-05-24 6:30 Greg Ungerer
2010-10-25 0:29 Greg Ungerer
2010-05-25 6:19 Greg Ungerer
2010-03-09 3:47 Greg Ungerer
2009-12-09 7:58 Greg Ungerer
2009-12-10 3:13 ` Linus Torvalds
2009-12-10 4:54 ` Greg Ungerer
2009-04-02 4:53 Greg Ungerer
2008-07-24 7:22 Greg Ungerer
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).