linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Paul Mackerras <paulus@samba.org>
To: linuxppc-dev@ozlabs.org
Subject: Patches added to powerpc.git for-2.6.24 branch
Date: Wed, 22 Aug 2007 19:47:35 +1000	[thread overview]
Message-ID: <18124.1591.112487.322248@cargo.ozlabs.ibm.com> (raw)

Josh Boyer (10):
      [POWERPC] Rename 4xx paths to 40x
      [POWERPC] 4xx Kconfig cleanup
      [POWERPC] Rename 44x bootwrapper
      [POWERPC] 4xx bootwrapper reworks
      [POWERPC] 40x MMU
      [POWERPC] 40x decrementer fixes
      [POWERPC] Fix 40x build
      [POWERPC] Bamboo DTS
      [POWERPC] Bamboo board support
      [POWERPC] Bamboo zImage wrapper

Olaf Hering (1):
      [POWERPC] Advertise correct IDE mode on Pegasos2

Olof Johansson (1):
      [POWERPC] Rework SMP timebase handoff for pasemi

Scott Wood (15):
      [POWERPC] Whitespace cleanup in arch/powerpc
      [POWERPC] Add clrbits8 and setbits8
      [POWERPC] Use strcasecmp() rather than strncasecmp() when determining device node compatibility
      [POWERPC] bootwrapper: Update .gitignore
      [POWERPC] bootwrapper: Set timebase_period_ns from dt_fixup_cpu_clocks
      [POWERPC] bootwrapper: dt_xlate_range() bugfixes
      [POWERPC] bootwrapper: Add dt_is_compatible()
      [POWERPC] bootwrapper: Add 16-bit I/O, sync(), eieio(), and barrier()
      [POWERPC] bootwrapper: Add TARGET_HAS_ETHn tests to ppcboot.h
      [POWERPC] bootwrapper: serial_console_init() fixes
      [POWERPC] bootwrapper: Declare udelay() in ops.h
      [POWERPC] bootwrapper: Add CPM serial driver
      [POWERPC] bootwrapper: Move linker symbols into ops.h
      [POWERPC] bootwrapper: Add 8xx cuboot support
      [POWERPC] bootwrapper: Add PowerQUICC II (82xx with CPM) cuboot support

Stephen Rothwell (6):
      [POWERPC] iSeries: Clean up lparmap mess
      [POWERPC] Move iSeries startup code out of head_64.S
      [POWERPC] Move the exception macros into a header file
      [POWERPC] Move the iSeries exception vectors
      [POWERPC] Split out iSeries specific exception macros
      [POWERPC] Exception numbers are not relevant to iSeries

 arch/powerpc/Makefile                      |    2 
 arch/powerpc/boot/.gitignore               |    8 
 arch/powerpc/boot/44x.c                    |   85 ---
 arch/powerpc/boot/44x.h                    |    5 
 arch/powerpc/boot/4xx.c                    |  192 +++++++
 arch/powerpc/boot/4xx.h                    |   21 +
 arch/powerpc/boot/Makefile                 |   10 
 arch/powerpc/boot/bamboo.c                 |   45 ++
 arch/powerpc/boot/cpm-serial.c             |  249 +++++++++
 arch/powerpc/boot/cuboot-83xx.c            |    1 
 arch/powerpc/boot/cuboot-85xx.c            |    1 
 arch/powerpc/boot/cuboot-8xx.c             |   45 ++
 arch/powerpc/boot/cuboot-pq2.c             |  283 ++++++++++
 arch/powerpc/boot/cuboot.c                 |    3 
 arch/powerpc/boot/dcr.h                    |   13 
 arch/powerpc/boot/devtree.c                |   70 ++-
 arch/powerpc/boot/dts/bamboo.dts           |  244 +++++++++
 arch/powerpc/boot/dts/mpc8272ads.dts       |  376 +++++++-------
 arch/powerpc/boot/ebony.c                  |    6 
 arch/powerpc/boot/holly.c                  |    5 
 arch/powerpc/boot/io.h                     |   49 ++
 arch/powerpc/boot/main.c                   |   10 
 arch/powerpc/boot/mpsc.c                   |    1 
 arch/powerpc/boot/mv64x60_i2c.c            |    2 
 arch/powerpc/boot/of.c                     |    2 
 arch/powerpc/boot/ops.h                    |   24 +
 arch/powerpc/boot/ppcboot.h                |    7 
 arch/powerpc/boot/prpmc2800.c              |    6 
 arch/powerpc/boot/ps3.c                    |    4 
 arch/powerpc/boot/serial.c                 |   19 -
 arch/powerpc/boot/treeboot-bamboo.c        |   27 +
 arch/powerpc/boot/treeboot-ebony.c         |    2 
 arch/powerpc/configs/bamboo_defconfig      |  775 ++++++++++++++++++++++++++++
 arch/powerpc/kernel/Makefile               |    9 
 arch/powerpc/kernel/asm-offsets.c          |    8 
 arch/powerpc/kernel/head_40x.S             |    3 
 arch/powerpc/kernel/head_64.S              |  585 +--------------------
 arch/powerpc/kernel/irq.c                  |    4 
 arch/powerpc/kernel/lparmap.c              |   32 -
 arch/powerpc/kernel/ppc_ksyms.c            |    2 
 arch/powerpc/kernel/prom_init.c            |   11 
 arch/powerpc/kernel/time.c                 |    2 
 arch/powerpc/mm/40x_mmu.c                  |    4 
 arch/powerpc/mm/Makefile                   |    2 
 arch/powerpc/platforms/40x/Kconfig         |   77 ---
 arch/powerpc/platforms/40x/Makefile        |    0 
 arch/powerpc/platforms/44x/Kconfig         |   15 -
 arch/powerpc/platforms/44x/Makefile        |    1 
 arch/powerpc/platforms/44x/bamboo.c        |   66 ++
 arch/powerpc/platforms/8xx/m8xx_setup.c    |   72 +--
 arch/powerpc/platforms/Kconfig             |    1 
 arch/powerpc/platforms/Kconfig.cputype     |    2 
 arch/powerpc/platforms/chrp/pci.c          |   29 +
 arch/powerpc/platforms/iseries/Makefile    |    1 
 arch/powerpc/platforms/iseries/exception.S |  251 +++++++++
 arch/powerpc/platforms/iseries/exception.h |   58 ++
 arch/powerpc/platforms/pasemi/setup.c      |   24 +
 arch/powerpc/sysdev/commproc.c             |   20 -
 arch/powerpc/sysdev/cpm2_common.c          |    2 
 include/asm-powerpc/exception.h            |  309 +++++++++++
 include/asm-powerpc/io.h                   |    3 
 include/asm-powerpc/iseries/lpar_map.h     |    3 
 include/asm-powerpc/mmu-40x.h              |   65 ++
 include/asm-powerpc/mmu.h                  |    3 
 include/asm-powerpc/page_64.h              |    2 
 include/asm-powerpc/ppc_asm.h              |   14 +
 include/asm-powerpc/prom.h                 |    2 
 include/asm-powerpc/time.h                 |    2 
 68 files changed, 3158 insertions(+), 1118 deletions(-)
 delete mode 100644 arch/powerpc/boot/44x.c
 create mode 100644 arch/powerpc/boot/4xx.c
 create mode 100644 arch/powerpc/boot/4xx.h
 create mode 100644 arch/powerpc/boot/bamboo.c
 create mode 100644 arch/powerpc/boot/cpm-serial.c
 create mode 100644 arch/powerpc/boot/cuboot-8xx.c
 create mode 100644 arch/powerpc/boot/cuboot-pq2.c
 create mode 100644 arch/powerpc/boot/dts/bamboo.dts
 create mode 100644 arch/powerpc/boot/treeboot-bamboo.c
 create mode 100644 arch/powerpc/configs/bamboo_defconfig
 rename arch/powerpc/kernel/{head_4xx.S => head_40x.S} (99%)
 delete mode 100644 arch/powerpc/kernel/lparmap.c
 rename arch/powerpc/mm/{4xx_mmu.c => 40x_mmu.c} (96%)
 rename arch/powerpc/platforms/{4xx/Kconfig => 40x/Kconfig} (68%)
 rename arch/powerpc/platforms/{4xx/Makefile => 40x/Makefile} (100%)
 create mode 100644 arch/powerpc/platforms/44x/bamboo.c
 create mode 100644 arch/powerpc/platforms/iseries/exception.S
 create mode 100644 arch/powerpc/platforms/iseries/exception.h
 create mode 100644 include/asm-powerpc/exception.h
 create mode 100644 include/asm-powerpc/mmu-40x.h

             reply	other threads:[~2007-08-22  9:47 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-08-22  9:47 Paul Mackerras [this message]
2007-08-22 12:44 ` Patches added to powerpc.git for-2.6.24 branch Timur Tabi
2007-08-22 14:03   ` Kumar Gala
2007-08-22 14:22     ` Timur Tabi
2007-08-22 13:25 ` Kumar Gala
2007-08-22 14:59   ` Kumar Gala
2007-08-22 22:39     ` Arnd Bergmann
2007-08-22 23:28       ` Kumar Gala
  -- strict thread matches above, loose matches on Subject: below --
2007-09-13 17:53 Paul Mackerras
2007-09-14  1:43 ` Michael Neuling
2007-09-20  1:42 Paul Mackerras
2007-09-20  2:52 ` Jeremy Kerr
2007-09-20 15:13   ` Kumar Gala
2007-10-03  6:27 Paul Mackerras
2007-10-03  7:15 ` Stephen Rothwell
2007-10-03  8:12   ` Stephen Rothwell
2007-10-03 13:41 ` Kumar Gala

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=18124.1591.112487.322248@cargo.ozlabs.ibm.com \
    --to=paulus@samba.org \
    --cc=linuxppc-dev@ozlabs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).