linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] m68knommu arch fixes
@ 2010-03-23  4:14 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2010-03-23  4:14 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel, linux-m68k

Hi Linus,

Please pull to get some m68knommu fixes. Nothing too major in here,
adding QSPI platform support and some minor fixes.

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 (1):
      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/m68knommu/Makefile               |    2 +-
 arch/m68knommu/kernel/entry.S         |    2 +-
 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 +-
 17 files changed, 1013 insertions(+), 70 deletions(-)
 create mode 100644 arch/m68k/include/asm/mcfqspi.h

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2011-03-16 22:36 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2011-03-16 22:36 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

There is quite a few changes in here, but major themes are:

. interrupt irq_chip converted to new functions
. cleanup, extension and optimization of irq handling functions
. clean up compiler warnings in ColdFire GPIO initializers
. rationalize use of various ColdFire internal peripheral base registers
. simplify ColdFire bus clock divider setting

Thanks
Greg



The following changes since commit 521cb40b0c44418a4fd36dc633f575813d59a43d:
  Linus Torvalds (1):
        Linux 2.6.38

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus

Alexander Kurz (1):
      m68knommu: fixing compiler warnings

Greg Ungerer (30):
      m68knommu: move ColdFire 5249 MBAR2 definition
      m68knommu: remove kludge seting of MCF_IPSBAR for ColdFire 54xx
      m68knommu: remove bogus definition of MBAR for ColdFire 532x family
      m68knommu: move ColdFire PIT timer base addresses
      m68knommu: remove MBAR and IPSBAR hacks for the ColdFire 520x CPUs
      m68knommu: remove use of MBAR value for ColdFire 523x peripheral addressing
      m68knommu: remove use of MBAR value for ColdFire 527x peripheral addressing
      m68knommu: remove use of MBAR value for ColdFire 528x peripheral addressing
      m68knommu: move ColdFire DMA register addresses to per-cpu headers
      m68knommu: remove use of MBAR in old-style ColdFire timer
      m68knommu: clean up use of MBAR for DRAM registers on ColdFire start
      m68knommu: clean up definitions of ColdFire peripheral base registers
      m68knommu: make ColdFire internal peripheral region configurable
      m68knommu: add basic support for the ColdFire based FireBee board
      m68knommu: limit interrupts supported by ColdFire intc-2 driver
      m68knommu: move some init code out of unmask routine for ColdFire intc-2
      m68knommu: limit interrupts supported by ColdFire intc-simr driver
      m68knommu: fix gpio warnings for ColdFire 5206 targets
      m68knommu: fix gpio warnings for ColdFire 5206e targets
      m68knommu: fix gpio warnings for ColdFire 520x targets
      m68knommu: fix gpio warnings for ColdFire 523x targets
      m68knommu: fix gpio warnings for ColdFire 5249 targets
      m68knommu: fix gpio warnings for ColdFire 5272 targets
      m68knommu: fix gpio warnings for ColdFire 527x targets
      m68knommu: fix gpio warnings for ColdFire 5307 targets
      m68knommu: fix gpio warnings for ColdFire 532x targets
      m68knommu: fix gpio warnings for ColdFire 5407 targets
      m68knommu: remove ColdFire CLOCK_DIV config option
      m68knommu: external interrupt support to ColdFire intc-2 controller
      m68knommu: external interrupt support to ColdFire intc-simr controller

Thomas Gleixner (10):
      m68knommu: 5772: Replace private irq flow handler
      m68knommu: Convert coldfire intc irq_chip to new
      m68knommu: Convert coldfire intc-2 irq_chip to new
      m68knommu: Convert coldfire intc-simr irq_chip to new
      m68knommu: Convert 68328 ints irq_chip to new functions
      m68knommu: Convert 68360 ints irq_chip to new functions
      m68knommu: Convert 5272 intc irq_chip to new functions
      m68knommu: Convert 5249 intc irq_chip to new functions
      m68knommu: Use proper irq_desc accessors in
      m68knommu: Select GENERIC_HARDIRQS_NO_DEPRECATED

 arch/m68k/include/asm/coldfire.h             |   42 ++--
 arch/m68k/include/asm/m5206sim.h             |   23 ++-
 arch/m68k/include/asm/m520xsim.h             |   50 +++--
 arch/m68k/include/asm/m523xsim.h             |   52 ++++-
 arch/m68k/include/asm/m5249sim.h             |   30 ++-
 arch/m68k/include/asm/m5272sim.h             |    8 +
 arch/m68k/include/asm/m527xsim.h             |   68 ++++--
 arch/m68k/include/asm/m528xsim.h             |   44 +++-
 arch/m68k/include/asm/m5307sim.h             |   25 ++-
 arch/m68k/include/asm/m532xsim.h             |    9 +
 arch/m68k/include/asm/m5407sim.h             |   25 ++-
 arch/m68k/include/asm/m54xxsim.h             |   14 +-
 arch/m68k/include/asm/mcfdma.h               |   23 --
 arch/m68k/include/asm/mcfpit.h               |   16 +--
 arch/m68k/include/asm/mcftimer.h             |   23 --
 arch/m68knommu/Kconfig                       |   58 ++++-
 arch/m68knommu/kernel/irq.c                  |    6 +-
 arch/m68knommu/platform/5206/gpio.c          |    6 +-
 arch/m68knommu/platform/5206e/gpio.c         |    6 +-
 arch/m68knommu/platform/520x/config.c        |   36 ++--
 arch/m68knommu/platform/520x/gpio.c          |   96 ++++----
 arch/m68knommu/platform/523x/config.c        |   10 +-
 arch/m68knommu/platform/523x/gpio.c          |  136 ++++++------
 arch/m68knommu/platform/5249/gpio.c          |   12 +-
 arch/m68knommu/platform/5249/intc2.c         |   20 +-
 arch/m68knommu/platform/5272/gpio.c          |   18 +-
 arch/m68knommu/platform/5272/intc.c          |   33 ++--
 arch/m68knommu/platform/527x/config.c        |   14 +-
 arch/m68knommu/platform/527x/gpio.c          |  312 +++++++++++++-------------
 arch/m68knommu/platform/528x/config.c        |   14 +-
 arch/m68knommu/platform/528x/gpio.c          |  210 +++++++++---------
 arch/m68knommu/platform/5307/gpio.c          |    6 +-
 arch/m68knommu/platform/532x/gpio.c          |  166 +++++++-------
 arch/m68knommu/platform/5407/gpio.c          |    6 +-
 arch/m68knommu/platform/54xx/Makefile        |    1 +
 arch/m68knommu/platform/54xx/firebee.c       |   86 +++++++
 arch/m68knommu/platform/68328/ints.c         |   12 +-
 arch/m68knommu/platform/68360/ints.c         |   18 +-
 arch/m68knommu/platform/coldfire/dma.c       |    8 +-
 arch/m68knommu/platform/coldfire/head.S      |   10 +-
 arch/m68knommu/platform/coldfire/intc-2.c    |  176 +++++++++++----
 arch/m68knommu/platform/coldfire/intc-simr.c |  165 ++++++++++++---
 arch/m68knommu/platform/coldfire/intc.c      |   20 +-
 arch/m68knommu/platform/coldfire/pit.c       |    2 +-
 arch/m68knommu/platform/coldfire/timers.c    |    4 +-
 45 files changed, 1284 insertions(+), 835 deletions(-)
 create mode 100644 arch/m68knommu/platform/54xx/firebee.c

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2010-11-04  5:22 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2010-11-04  5:22 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel, linux-m68k


Hi Linus,

Please pull from:

git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus-fixes

to get fixes for some rc1 breakage. Two things in there for minor problems
with some of the m68k/m68knommu merged headers.

Thanks
Greg


 
---
The following changes since commit d88c0922fa0e2c021a028b310a641126c6d4b7dc:
  Michel Lespinasse (1):
        Release page reference during page fault retry

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus-fixes

Greg Ungerer (1):
      m68knommu: add back in declaration of do_IRQ

Philippe De Muyter (1):
      m68k, m68knommu: Do not include linux/hardirq.h in asm/irqflags.h

 arch/m68k/include/asm/irqflags.h |    2 ++
 arch/m68k/include/asm/machdep.h  |    1 +
 2 files changed, 3 insertions(+), 0 deletions(-)

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2010-08-18  4:56 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2010-08-18  4:56 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel, linux-m68k


Hi Linus,

Can you please pull the m68knommu git tree, for-linus branch.
A couple of minor bug fixes here for the m68knommu arch.

Thanks
Greg



The following changes since commit da5cabf80e2433131bf0ed8993abc0f7ea618c73:
  Linus Torvalds (1):
        Linux 2.6.36-rc1

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: include sched.h in ColdFire/SPI driver

Jate Sujjavanich (1):
      m68knommu: arch/m68k/include/asm/ide.h fix for nommu

Kulikov Vasiliy (1):
      m68knommu: formatting of pointers in printk()

 arch/m68k/include/asm/ide.h     |   13 +++++++++++--
 arch/m68knommu/kernel/process.c |   10 +++++-----
 drivers/spi/coldfire_qspi.c     |    1 +
 3 files changed, 17 insertions(+), 7 deletions(-)

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2009-10-01  6:16 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2009-10-01  6:16 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel, linux-m68k

Hi Linus,

Please pull to get m68knommu arch bug fixes.

git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus

The pt_regs rename fix is important, the other couple are minor fixups.

Thanks
Greg




The following changes since commit 17d857be649a21ca90008c6dc425d849fa83db5c:
  Linus Torvalds (1):
        Linux 2.6.32-rc1

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: fix rename of pt_regs offset defines breakage

Huang Weiyi (1):
      m68knommu: remove duplicated #include

Lennart Sorensen (1):
      m68knommu: show KiB rather than pages in "Freeing initrd memory:" message

 arch/m68knommu/kernel/asm-offsets.c      |   28 +++++++++++++-------------
 arch/m68knommu/kernel/entry.S            |    6 ++--
 arch/m68knommu/mm/init.c                 |    2 +-
 arch/m68knommu/platform/5206e/config.c   |    1 -
 arch/m68knommu/platform/68328/entry.S    |   32 +++++++++++++++---------------
 arch/m68knommu/platform/68360/entry.S    |   16 +++++++-------
 arch/m68knommu/platform/coldfire/entry.S |   20 +++++++++---------
 7 files changed, 52 insertions(+), 53 deletions(-)

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2009-09-16  0:08 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2009-09-16  0:08 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel, linux-m68k

The following changes since commit 74fca6a42863ffacaf7ba6f1936a9f228950f657:
  Linus Torvalds (1):
        Linux 2.6.31

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus

Christoph Hellwig (1):
      m68knommu: convert to asm-generic/hardirq.h

Greg Ungerer (36):
      m68k: remove unused elia.h include file
      m68k: merge mmu and non-mmu versions of processor.h
      m68k: merge mmu and non-mmu versions of irq.h
      m68k: merge the mmu and non-mmu versions of checksum.h
      m68k: merge mmu and non-mmu versions of dma.h
      m68k: clean up comment delimiters in dma.h
      m68knommu: use general interrupt controller for ColdFire 520x family
      m68knommu: remove per device interrupt mask setting for ColdFire 520x
      m68knommu: general interrupt controller for ColdFire many 52xx parts
      m68knommu: clean up ColdFire 527x interrupt setup
      m68knommu: clean up ColdFire 528x interrupt setup
      m68knommu: clean up ColdFire 523x interrupt setup
      m68knommu: general interrupt controller for ColdFire 532x parts
      m68knommu: clean up ColdFire 532x interrupt setup
      m68knommu: use common interrupt controller code for older ColdFire CPU's
      m68knommu: complete interrupt controller code for the 68328 CPU's
      m68knommu: complete interrupt controller code for the 68360 CPU
      m68knommu: remove the common interrupt controller structure
      m68knommu: remove unecessary interrupt level setting in ColdFire 520x setup
      m68knommu: remove interrupt masking from ColdFire pit timer
      m68knommu: remove timer device interrupt setup for ColdFire 532x
      m68knommu: mask off all interrupts in ColdFire intc-simr controller
      m68knommu: move ColdFire INTC definitions to new include file
      m68knommu: remove duplicate ColdFire mcf_autovector() code
      m68knommu: merge old ColdFire interrupt controller masking macros
      m68knommu: support code to mask external interrupts on old ColdFire CPU's
      m68knommu: simplify ColdFire "timers" clock initialization
      m68knommu: clean up ColdFire 532x CPU timer setup
      m68knommu: map ColdFire interrupts to correct masking bits
      m68knommu: clean up old ColdFire timer irq setup
      m68knommu: add support for second interrupt controller of ColdFire 5249
      m68knommu: create a speciailized ColdFire 5272 interrupt controller
      m68knommu: remove ColdFire direct interrupt register access
      m68knommu: relax IO_SPACE_LIMIT setting
      m68knommu: remove special interrupt handling code for ne2k support
      m68knommu: set multi-function pins for ethernet when enabled

Joe Perches (1):
      arch/m68knommu/kernel/time.c: Remove unnecessary semicolons

Philippe De Muyter (1):
      m68knommu: fix ColdFire definition of CLOCK_TICK_RATE

Tim Abbott (1):
      m68knommu: Make PAGE_SIZE available to assembly files.

sfking@fdwdc.com (13):
      core generic GPIO support for Freescale Coldfire processors.
      generic GPIO support for the Freescale Coldfire 5206.
      generic GPIO support for the Freescale Coldire 5206e.
      generic GPIO support for the Freescale Coldfire 520x.
      generic GPIO support for the Freescale Coldfire 523x.
      generic GPIO support for the Freescale Coldfire 5249.
      generic GPIO support for the Freescale Coldfire 527x.
      generic GPIO support for the Freescale Coldfire 5272.
      generic GPIO support for the Freescale Coldfire 528x.
      generic GPIO support for the Freescale Coldfire 5307.
      generic GPIO support for the Freescale Coldfire 532x.
      generic GPIO support for the Freescale Coldfire 5407.
      generic GPIO support misc files.

 arch/m68k/include/asm/checksum.h             |  173 +++++++-
 arch/m68k/include/asm/checksum_mm.h          |  148 -------
 arch/m68k/include/asm/checksum_no.h          |  132 ------
 arch/m68k/include/asm/dma.h                  |  492 +++++++++++++++++++++-
 arch/m68k/include/asm/dma_mm.h               |   16 -
 arch/m68k/include/asm/dma_no.h               |  494 ---------------------
 arch/m68k/include/asm/elia.h                 |   41 --
 arch/m68k/include/asm/gpio.h                 |  238 ++++++++++
 arch/m68k/include/asm/hardirq_no.h           |   10 +-
 arch/m68k/include/asm/io_no.h                |    2 +-
 arch/m68k/include/asm/irq.h                  |  135 ++++++-
 arch/m68k/include/asm/irq_mm.h               |  126 ------
 arch/m68k/include/asm/irq_no.h               |   26 --
 arch/m68k/include/asm/m5206sim.h             |   33 +-
 arch/m68k/include/asm/m520xsim.h             |   77 +++-
 arch/m68k/include/asm/m523xsim.h             |   77 ++++
 arch/m68k/include/asm/m5249sim.h             |   54 ++-
 arch/m68k/include/asm/m5272sim.h             |   62 +++-
 arch/m68k/include/asm/m527xsim.h             |  169 +++++++
 arch/m68k/include/asm/m528xsim.h             |  151 +++++++
 arch/m68k/include/asm/m5307sim.h             |   32 +-
 arch/m68k/include/asm/m532xsim.h             |  198 ++++-----
 arch/m68k/include/asm/m5407sim.h             |   28 +-
 arch/m68k/include/asm/mcfgpio.h              |   40 ++
 arch/m68k/include/asm/mcfintc.h              |   89 ++++
 arch/m68k/include/asm/mcfne.h                |   83 ----
 arch/m68k/include/asm/mcfsim.h               |   95 +----
 arch/m68k/include/asm/mcfsmc.h               |    6 +-
 arch/m68k/include/asm/nettel.h               |    4 +-
 arch/m68k/include/asm/page_no.h              |    4 +-
 arch/m68k/include/asm/pinmux.h               |   30 ++
 arch/m68k/include/asm/processor.h            |  171 +++++++-
 arch/m68k/include/asm/processor_mm.h         |  130 ------
 arch/m68k/include/asm/processor_no.h         |  143 ------
 arch/m68k/include/asm/timex.h                |   17 +-
 arch/m68knommu/Kconfig                       |    6 +
 arch/m68knommu/kernel/irq.c                  |   26 --
 arch/m68knommu/kernel/time.c                 |    2 +-
 arch/m68knommu/lib/checksum.c                |   11 +-
 arch/m68knommu/platform/5206/Makefile        |    2 +-
 arch/m68knommu/platform/5206/config.c        |   56 +--
 arch/m68knommu/platform/5206/gpio.c          |   49 ++
 arch/m68knommu/platform/5206e/Makefile       |    2 +-
 arch/m68knommu/platform/5206e/config.c       |   58 +--
 arch/m68knommu/platform/5206e/gpio.c         |   49 ++
 arch/m68knommu/platform/520x/Makefile        |    2 +-
 arch/m68knommu/platform/520x/config.c        |   30 --
 arch/m68knommu/platform/520x/gpio.c          |  211 +++++++++
 arch/m68knommu/platform/523x/Makefile        |    2 +-
 arch/m68knommu/platform/523x/config.c        |   66 +---
 arch/m68knommu/platform/523x/gpio.c          |  283 ++++++++++++
 arch/m68knommu/platform/5249/Makefile        |    2 +-
 arch/m68knommu/platform/5249/config.c        |   49 +--
 arch/m68knommu/platform/5249/gpio.c          |   65 +++
 arch/m68knommu/platform/5249/intc2.c         |   59 +++
 arch/m68knommu/platform/5272/Makefile        |    2 +-
 arch/m68knommu/platform/5272/config.c        |   78 +---
 arch/m68knommu/platform/5272/gpio.c          |   81 ++++
 arch/m68knommu/platform/5272/intc.c          |  138 ++++++
 arch/m68knommu/platform/527x/Makefile        |    2 +-
 arch/m68knommu/platform/527x/config.c        |   49 --
 arch/m68knommu/platform/527x/gpio.c          |  607 ++++++++++++++++++++++++++
 arch/m68knommu/platform/528x/Makefile        |    2 +-
 arch/m68knommu/platform/528x/config.c        |   51 +--
 arch/m68knommu/platform/528x/gpio.c          |  438 +++++++++++++++++++
 arch/m68knommu/platform/5307/Makefile        |    2 +-
 arch/m68knommu/platform/5307/config.c        |   65 +--
 arch/m68knommu/platform/5307/gpio.c          |   49 ++
 arch/m68knommu/platform/532x/Makefile        |    2 +-
 arch/m68knommu/platform/532x/config.c        |   53 +---
 arch/m68knommu/platform/532x/gpio.c          |  337 ++++++++++++++
 arch/m68knommu/platform/5407/Makefile        |    2 +-
 arch/m68knommu/platform/5407/config.c        |   68 +--
 arch/m68knommu/platform/5407/gpio.c          |   49 ++
 arch/m68knommu/platform/68328/ints.c         |   72 ++--
 arch/m68knommu/platform/68360/ints.c         |   44 ++-
 arch/m68knommu/platform/coldfire/Makefile    |   21 +-
 arch/m68knommu/platform/coldfire/gpio.c      |  127 ++++++
 arch/m68knommu/platform/coldfire/intc-2.c    |   93 ++++
 arch/m68knommu/platform/coldfire/intc-simr.c |   78 ++++
 arch/m68knommu/platform/coldfire/intc.c      |  153 +++++++
 arch/m68knommu/platform/coldfire/pinmux.c    |   28 ++
 arch/m68knommu/platform/coldfire/pit.c       |    8 -
 arch/m68knommu/platform/coldfire/timers.c    |   18 +-
 arch/m68knommu/platform/coldfire/vectors.c   |   20 +-
 drivers/net/fec.c                            |   18 +-
 86 files changed, 5202 insertions(+), 2309 deletions(-)
 delete mode 100644 arch/m68k/include/asm/checksum_mm.h
 delete mode 100644 arch/m68k/include/asm/checksum_no.h
 delete mode 100644 arch/m68k/include/asm/dma_mm.h
 delete mode 100644 arch/m68k/include/asm/dma_no.h
 delete mode 100644 arch/m68k/include/asm/elia.h
 create mode 100644 arch/m68k/include/asm/gpio.h
 delete mode 100644 arch/m68k/include/asm/irq_mm.h
 delete mode 100644 arch/m68k/include/asm/irq_no.h
 create mode 100644 arch/m68k/include/asm/mcfgpio.h
 create mode 100644 arch/m68k/include/asm/mcfintc.h
 create mode 100644 arch/m68k/include/asm/pinmux.h
 delete mode 100644 arch/m68k/include/asm/processor_mm.h
 delete mode 100644 arch/m68k/include/asm/processor_no.h
 create mode 100644 arch/m68knommu/platform/5206/gpio.c
 create mode 100644 arch/m68knommu/platform/5206e/gpio.c
 create mode 100644 arch/m68knommu/platform/520x/gpio.c
 create mode 100644 arch/m68knommu/platform/523x/gpio.c
 create mode 100644 arch/m68knommu/platform/5249/gpio.c
 create mode 100644 arch/m68knommu/platform/5249/intc2.c
 create mode 100644 arch/m68knommu/platform/5272/gpio.c
 create mode 100644 arch/m68knommu/platform/5272/intc.c
 create mode 100644 arch/m68knommu/platform/527x/gpio.c
 create mode 100644 arch/m68knommu/platform/528x/gpio.c
 create mode 100644 arch/m68knommu/platform/5307/gpio.c
 create mode 100644 arch/m68knommu/platform/532x/gpio.c
 create mode 100644 arch/m68knommu/platform/5407/gpio.c
 create mode 100644 arch/m68knommu/platform/coldfire/gpio.c
 create mode 100644 arch/m68knommu/platform/coldfire/intc-2.c
 create mode 100644 arch/m68knommu/platform/coldfire/intc-simr.c
 create mode 100644 arch/m68knommu/platform/coldfire/intc.c
 create mode 100644 arch/m68knommu/platform/coldfire/pinmux.c

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [git pull] m68knommu arch fixes
  2009-06-12  7:02   ` Greg Ungerer
@ 2009-06-12 15:34     ` Sam Ravnborg
  0 siblings, 0 replies; 12+ messages in thread
From: Sam Ravnborg @ 2009-06-12 15:34 UTC (permalink / raw)
  To: Greg Ungerer; +Cc: Geert Uytterhoeven, linux-kernel, linux-m68k, Andrew Morton

On Fri, Jun 12, 2009 at 05:02:44PM +1000, Greg Ungerer wrote:
> Hi Geert,
> 
> Geert Uytterhoeven wrote:
> >On Fri, Jun 12, 2009 at 03:14, Greg Ungerer<gerg@snapgear.com> wrote:
> >>Please pull to get fixes for the m68knommu arch.
> >
> >>Jaswinder Singh Rajput (1):
> >>     headers_check fix: m68k, swab.h
> >
> >Thanks!
> 
> No problem :-)
> 
> 
> >Probably I won't have time to handle and submit any m68k patches
> >during this merge window,
> >so if anyone needs anything to be in 2.6.31, it would be nice if
> >somebody else could take care of
> >it.
> 
> I have a few more header file re-merges that I have had sitting
> around for a while, any chance you can review them?  (Or maybe I
> just send them to the m68k-linux mailing list?)

Please copy lkml too.

	Sam

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [git pull] m68knommu arch fixes
  2009-06-12  6:22 ` Geert Uytterhoeven
@ 2009-06-12  7:02   ` Greg Ungerer
  2009-06-12 15:34     ` Sam Ravnborg
  0 siblings, 1 reply; 12+ messages in thread
From: Greg Ungerer @ 2009-06-12  7:02 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: linux-kernel, linux-m68k, Andrew Morton

Hi Geert,

Geert Uytterhoeven wrote:
> On Fri, Jun 12, 2009 at 03:14, Greg Ungerer<gerg@snapgear.com> wrote:
>> Please pull to get fixes for the m68knommu arch.
> 
>> Jaswinder Singh Rajput (1):
>>      headers_check fix: m68k, swab.h
> 
> Thanks!

No problem :-)


> Probably I won't have time to handle and submit any m68k patches
> during this merge window,
> so if anyone needs anything to be in 2.6.31, it would be nice if
> somebody else could take care of
> it.

I have a few more header file re-merges that I have had sitting
around for a while, any chance you can review them?  (Or maybe I
just send them to the m68k-linux mailing list?)

Currently they are on the branch at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git includes

The easy ones are done, so the re-joining now is not completely
trivial. This set (of 5) is reasonably strait forward though.

Regards
Greg



------------------------------------------------------------------------
Greg Ungerer  --  Principal Engineer        EMAIL:     gerg@snapgear.com
SnapGear Group, McAfee                      PHONE:       +61 7 3435 2888
825 Stanley St,                             FAX:         +61 7 3891 3630
Woolloongabba, QLD, 4102, Australia         WEB: http://www.SnapGear.com

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [git pull] m68knommu arch fixes
  2009-06-12  1:14 Greg Ungerer
@ 2009-06-12  6:22 ` Geert Uytterhoeven
  2009-06-12  7:02   ` Greg Ungerer
  0 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2009-06-12  6:22 UTC (permalink / raw)
  To: Greg Ungerer; +Cc: torvalds, gerg, linux-kernel, linux-m68k, Andrew Morton

On Fri, Jun 12, 2009 at 03:14, Greg Ungerer<gerg@snapgear.com> wrote:
> Please pull to get fixes for the m68knommu arch.

> Jaswinder Singh Rajput (1):
>      headers_check fix: m68k, swab.h

Thanks!

Probably I won't have time to handle and submit any m68k patches
during this merge window,
so if anyone needs anything to be in 2.6.31, it would be nice if
somebody else could take care of
it.

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2009-06-12  1:14 Greg Ungerer
  2009-06-12  6:22 ` Geert Uytterhoeven
  0 siblings, 1 reply; 12+ messages in thread
From: Greg Ungerer @ 2009-06-12  1:14 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel, linux-m68k


Hi Linus,

Please pull to get fixes for the m68knommu arch.

Regards
Greg



The following changes since commit 769f3e8c384795cc350e2aae27de2a12374d19d4:
  Linus Torvalds (1):
        Merge branch 'printk-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

Greg Ungerer (16):
      m68knommu: fix system reset for ColdFire 527x family
      m68knommu: merge system reset for code ColdFire 523x family
      m68knommu: add CPU reset code for the 5307 ColdFire
      m68knommu: add CPU reset code for the 5407 ColdFire
      m68knommu: add CPU reset code for the 5206 ColdFire
      m68knommu: add CPU reset code for the 5206e ColdFire
      m68knommu: add CPU reset code for the 5249 ColdFire
      m68knommu: add CPU reset code for the 532x ColdFire
      m68knommu: move CPU reset code for the 520x ColdFire into its platform code
      m68knommu: move CPU reset code for the 523x ColdFire into its platform code
      m68knommu: move CPU reset code for the 527x ColdFire into its platform code
      m68knommu: move CPU reset code for the 528x ColdFire into its platform code
      m68knommu: move CPU reset code for the 5272 ColdFire into its platform code
      m68knommu: remove obsolete reset code
      m68knommu: enumerate INIT_THREAD fields properly
      m68knommu: remove unecessary include of thread_info.h in entry.S

Jaswinder Singh Rajput (1):
      headers_check fix: m68k, swab.h

Joe Perches (1):
      arch/m68knommu: Convert #ifdef DEBUG printk(KERN_DEBUG to pr_debug(

 arch/m68k/include/asm/m520xsim.h           |    9 +++
 arch/m68k/include/asm/m523xsim.h           |    9 +++
 arch/m68k/include/asm/m527xsim.h           |    9 +++
 arch/m68k/include/asm/m528xsim.h           |    8 ++
 arch/m68k/include/asm/m532xsim.h           |   12 +++
 arch/m68k/include/asm/processor_no.h       |    8 +-
 arch/m68k/include/asm/swab.h               |    2 +-
 arch/m68k/include/asm/system_no.h          |  107 ----------------------------
 arch/m68knommu/kernel/entry.S              |    1 -
 arch/m68knommu/kernel/setup.c              |   16 ++---
 arch/m68knommu/mm/init.c                   |    4 +-
 arch/m68knommu/platform/5206/config.c      |   18 +++--
 arch/m68knommu/platform/5206e/config.c     |   18 +++--
 arch/m68knommu/platform/520x/config.c      |   15 +++--
 arch/m68knommu/platform/523x/config.c      |   14 ++--
 arch/m68knommu/platform/5249/config.c      |   18 +++--
 arch/m68knommu/platform/5272/config.c      |   18 ++++-
 arch/m68knommu/platform/527x/config.c      |   15 +++--
 arch/m68knommu/platform/528x/config.c      |   13 +++-
 arch/m68knommu/platform/5307/config.c      |   16 +++-
 arch/m68knommu/platform/532x/config.c      |   12 +++-
 arch/m68knommu/platform/5407/config.c      |   16 +++-
 arch/m68knommu/platform/coldfire/vectors.c |    7 --
 23 files changed, 178 insertions(+), 187 deletions(-)

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2009-04-23 23:33 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2009-04-23 23:33 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel, linux-m68k


Hi Linus,

Please pull to get a small set of fixes for the m68knommu arch,
and updates to the defconfigs.

Regards
Greg



The following changes since commit ccc5ff94c66e628d3c501b26ace5d4339667715d:
  Linus Torvalds (1):
        Merge git://git.kernel.org/.../mason/btrfs-unstable

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus

Greg Ungerer (9):
      m68knommu: fix missing .data.cacheline_aligned section
      m68knommu: remove unused kernel stats offsets
      m68knommu: fix DMA support for ColdFire
      m68knommu: update the defconfig for the ColdFire 5208evb board
      m68knommu: add a defconfig for the ColdFire M5272C3 board
      m68knommu: update the default config for the ColdFire 5249EVB.
      m68knommu: update the default config for the ColdFire 5257EVB board
      m68knommu: update the default config for the ColdFire 5307C3 board
      m68knommu: update the default config for the ColdFire 5407C3 board

Richard Retanubun (1):
      m68knommu: Fixed GPIO pin initialization for CONFIG_M5271 FEC.

 arch/m68knommu/Kconfig                    |    1 +
 arch/m68knommu/configs/m5208evb_defconfig |  163 +++++----
 arch/m68knommu/configs/m5249evb_defconfig |  268 ++++++++++---
 arch/m68knommu/configs/m5272c3_defconfig  |  645 +++++++++++++++++++++++++++++
 arch/m68knommu/configs/m5275evb_defconfig |  167 +++++----
 arch/m68knommu/configs/m5307c3_defconfig  |  231 ++++++++---
 arch/m68knommu/configs/m5407c3_defconfig  |  179 +++++----
 arch/m68knommu/kernel/asm-offsets.c       |    6 -
 arch/m68knommu/kernel/dma.c               |   37 ++-
 arch/m68knommu/kernel/vmlinux.lds.S       |    2 +
 arch/m68knommu/platform/527x/config.c     |    5 +
 11 files changed, 1346 insertions(+), 358 deletions(-)
 create mode 100644 arch/m68knommu/configs/m5272c3_defconfig

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [git pull] m68knommu arch fixes
@ 2009-01-28  4:59 Greg Ungerer
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Ungerer @ 2009-01-28  4:59 UTC (permalink / raw)
  To: torvalds; +Cc: gerg, linux-kernel

Linus,

Please pull to get m68knommu architecture fixes.

Thanks
Greg



The following changes since commit 5ee810072175042775e39bdd3eaaa68884c27805:
  Linus Torvalds (1):
        Fix "multiple definition of `debugfs_create_size_t'"

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus

Adrian Bunk (3):
      m68knommu: set NO_DMA
      m68knommu: remove obsolete and unused eLIA board
      m68knommu: remove the no longer used PCI support option

Greg Ungerer (4):
      m68knommu: fix cache flushing for the 527x ColdFire processors
      m68knommu: remove the obsolete and long unused comempci chip support
      m68knommu: fix syscall restarting
      uclinux: add process name to allocation error message

John Adamson (1):
      m68knommu: fix ColdFire 5272 serial baud rates in mcf.c

Matt Waddel (3):
      m68knommu: add ColdFire M532x to the FEC configuration options
      m68knommu: correct the mii calculations for 532x ColdFire FEC
      m68knommu: fix 5329 ColdFire periphal addressing

Sebastian Siewior (1):
      m68knommu: use one exist from execption

 arch/m68k/include/asm/cacheflush_no.h    |   11 +-
 arch/m68k/include/asm/dma-mapping_no.h   |    4 -
 arch/m68k/include/asm/system_no.h        |    2 +-
 arch/m68knommu/Kconfig                   |   27 +-
 arch/m68knommu/Makefile                  |    1 -
 arch/m68knommu/kernel/Makefile           |    1 -
 arch/m68knommu/kernel/comempci.c         |  980 ------------------------------
 arch/m68knommu/kernel/signal.c           |   15 +
 arch/m68knommu/kernel/syscalltable.S     |    2 +-
 arch/m68knommu/platform/5307/config.c    |    2 +-
 arch/m68knommu/platform/532x/config.c    |    8 +-
 arch/m68knommu/platform/coldfire/entry.S |   15 +-
 drivers/net/Kconfig                      |    2 +-
 drivers/net/fec.c                        |    2 +-
 drivers/serial/mcf.c                     |   11 +
 mm/nommu.c                               |    4 +-
 16 files changed, 52 insertions(+), 1035 deletions(-)
 delete mode 100644 arch/m68knommu/kernel/comempci.c

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2011-03-16 22:40 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-23  4:14 [git pull] m68knommu arch fixes Greg Ungerer
  -- strict thread matches above, loose matches on Subject: below --
2011-03-16 22:36 Greg Ungerer
2010-11-04  5:22 Greg Ungerer
2010-08-18  4:56 Greg Ungerer
2009-10-01  6:16 Greg Ungerer
2009-09-16  0:08 Greg Ungerer
2009-06-12  1:14 Greg Ungerer
2009-06-12  6:22 ` Geert Uytterhoeven
2009-06-12  7:02   ` Greg Ungerer
2009-06-12 15:34     ` Sam Ravnborg
2009-04-23 23:33 Greg Ungerer
2009-01-28  4:59 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).