linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Paul Mackerras <paulus@samba.org>
To: torvalds@osdl.org
Cc: linuxppc-dev@ozlabs.org
Subject: Please pull powerpc.git 'master' branch
Date: Wed, 4 Oct 2006 23:01:29 +1000	[thread overview]
Message-ID: <17699.45225.614110.388085@cargo.ozlabs.ibm.com> (raw)

Linus,

Please do:

git pull \
git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc.git

to get some more PowerPC updates.

This includes a series from Leo Li and Kim Phillips adding support for
devices on the Freescale 83xx chips, a series from Stephen Rothwell
that means we can include support for legacy iSeries along with other
64-bit platforms, a series from Vitaly Bordug adding support for the
mpc8272ads board, and various bug fixes and cleanups.

Thanks,
Paul.

 Documentation/powerpc/booting-without-of.txt |  252 ++++++
 arch/powerpc/Kconfig                         |   21 -
 arch/powerpc/boot/dts/mpc8272ads.dts         |  223 ++++++
 arch/powerpc/boot/dts/mpc8360emds.dts        |  375 ++++++++++
 arch/powerpc/boot/zImage.coff.lds.S          |    1 
 arch/powerpc/configs/mpc8360emds_defconfig   | 1018 ++++++++++++++++++++++++++
 arch/powerpc/kernel/cputable.c               |   15 
 arch/powerpc/kernel/entry_64.S               |   18 
 arch/powerpc/kernel/head_64.S                |   28 +
 arch/powerpc/kernel/misc_64.S                |   46 +
 arch/powerpc/kernel/pci_64.c                 |   58 +
 arch/powerpc/kernel/setup-common.c           |   25 -
 arch/powerpc/kernel/setup_32.c               |    8 
 arch/powerpc/kernel/setup_64.c               |   12 
 arch/powerpc/kernel/vmlinux.lds.S            |    8 
 arch/powerpc/mm/pgtable_64.c                 |   29 -
 arch/powerpc/mm/slb_low.S                    |    3 
 arch/powerpc/platforms/82xx/Kconfig          |   21 +
 arch/powerpc/platforms/82xx/Makefile         |    5 
 arch/powerpc/platforms/82xx/m82xx_pci.h      |   19 
 arch/powerpc/platforms/82xx/mpc82xx.c        |  111 +++
 arch/powerpc/platforms/82xx/mpc82xx_ads.c    |  661 +++++++++++++++++
 arch/powerpc/platforms/82xx/pq2ads.h         |   67 ++
 arch/powerpc/platforms/83xx/Kconfig          |   13 
 arch/powerpc/platforms/83xx/mpc832x_mds.c    |  215 +++++
 arch/powerpc/platforms/83xx/mpc832x_mds.h    |   19 
 arch/powerpc/platforms/83xx/mpc8360e_pb.c    |  219 ++++++
 arch/powerpc/platforms/cell/interrupt.c      |  235 ++++--
 arch/powerpc/platforms/cell/interrupt.h      |   97 ++
 arch/powerpc/platforms/cell/spider-pic.c     |    9 
 arch/powerpc/platforms/cell/spu_base.c       |   19 
 arch/powerpc/platforms/iseries/pci.c         |    8 
 arch/powerpc/platforms/iseries/setup.c       |   16 
 arch/powerpc/platforms/powermac/udbg_scc.c   |   14 
 arch/powerpc/platforms/pseries/setup.c       |    2 
 arch/powerpc/sysdev/Makefile                 |    1 
 arch/powerpc/sysdev/cpm2_pic.c               |    2 
 arch/powerpc/sysdev/cpm2_pic.h               |    2 
 arch/powerpc/sysdev/fsl_soc.c                |   62 +-
 arch/powerpc/sysdev/qe_lib/Kconfig           |   30 +
 arch/powerpc/sysdev/qe_lib/Makefile          |    8 
 arch/powerpc/sysdev/qe_lib/qe.c              |  353 +++++++++
 arch/powerpc/sysdev/qe_lib/qe_ic.c           |  555 ++++++++++++++
 arch/powerpc/sysdev/qe_lib/qe_ic.h           |  106 +++
 arch/powerpc/sysdev/qe_lib/qe_io.c           |  226 ++++++
 arch/powerpc/sysdev/qe_lib/ucc.c             |  251 ++++++
 arch/powerpc/sysdev/qe_lib/ucc_fast.c        |  396 ++++++++++
 arch/powerpc/sysdev/qe_lib/ucc_slow.c        |  404 ++++++++++
 arch/powerpc/xmon/xmon.c                     |   35 +
 drivers/block/swim3.c                        |    4 
 drivers/char/hvc_iseries.c                   |    8 
 drivers/char/hvc_vio.c                       |    4 
 include/asm-powerpc/firmware.h               |   67 +-
 include/asm-powerpc/immap_qe.h               |  477 ++++++++++++
 include/asm-powerpc/qe.h                     |  457 ++++++++++++
 include/asm-powerpc/qe_ic.h                  |   64 ++
 include/asm-powerpc/system.h                 |    4 
 include/asm-powerpc/ucc.h                    |   84 ++
 include/asm-powerpc/ucc_fast.h               |  243 ++++++
 include/asm-powerpc/ucc_slow.h               |  289 +++++++
 include/asm-powerpc/xmon.h                   |   26 -
 include/linux/fsl_devices.h                  |   65 +-
 62 files changed, 7809 insertions(+), 304 deletions(-)
 create mode 100644 arch/powerpc/boot/dts/mpc8272ads.dts
 create mode 100644 arch/powerpc/boot/dts/mpc8360emds.dts
 create mode 100644 arch/powerpc/configs/mpc8360emds_defconfig
 create mode 100644 arch/powerpc/platforms/82xx/Kconfig
 create mode 100644 arch/powerpc/platforms/82xx/Makefile
 create mode 100644 arch/powerpc/platforms/82xx/m82xx_pci.h
 create mode 100644 arch/powerpc/platforms/82xx/mpc82xx.c
 create mode 100644 arch/powerpc/platforms/82xx/mpc82xx_ads.c
 create mode 100644 arch/powerpc/platforms/82xx/pq2ads.h
 create mode 100644 arch/powerpc/platforms/83xx/mpc832x_mds.c
 create mode 100644 arch/powerpc/platforms/83xx/mpc832x_mds.h
 create mode 100644 arch/powerpc/platforms/83xx/mpc8360e_pb.c
 create mode 100644 arch/powerpc/sysdev/qe_lib/Kconfig
 create mode 100644 arch/powerpc/sysdev/qe_lib/Makefile
 create mode 100644 arch/powerpc/sysdev/qe_lib/qe.c
 create mode 100644 arch/powerpc/sysdev/qe_lib/qe_ic.c
 create mode 100644 arch/powerpc/sysdev/qe_lib/qe_ic.h
 create mode 100644 arch/powerpc/sysdev/qe_lib/qe_io.c
 create mode 100644 arch/powerpc/sysdev/qe_lib/ucc.c
 create mode 100644 arch/powerpc/sysdev/qe_lib/ucc_fast.c
 create mode 100644 arch/powerpc/sysdev/qe_lib/ucc_slow.c
 create mode 100644 include/asm-powerpc/immap_qe.h
 create mode 100644 include/asm-powerpc/qe.h
 create mode 100644 include/asm-powerpc/qe_ic.h
 create mode 100644 include/asm-powerpc/ucc.h
 create mode 100644 include/asm-powerpc/ucc_fast.h
 create mode 100644 include/asm-powerpc/ucc_slow.h

Benjamin Herrenschmidt:
      [POWERPC] Cell interrupt rework
      [POWERPC] Fix zImage.coff on oldworld PowerMac
      [POWERPC] Get default baud rate in udbg_scc

Kim Phillips:
      [POWERPC] Add initial support for the e300c2 core
      [POWERPC] Add support for the mpc832x mds board

Li Yang:
      [POWERPC] Add QE device tree node definition
      [POWERPC] Add QUICC Engine (QE) infrastructure
      [POWERPC] Add MPC8360EMDS board support
      [POWERPC] Add MPC8360EMDS default dts file

Michael Ellerman:
      [POWERPC] Cleanup include/asm-powerpc/xmon.h
      [POWERPC] Fix xmon=off and cleanup xmon initialisation
      [POWERPC] Fix a printk in pseries_mpic_init_IRQ

Olaf Hering:
      [POWERPC] Update swim3 printk after blkdev.h change

Paul Mackerras:
      [POWERPC] Don't try to just continue if xmon has no input device

Stephen Rothwell:
      [POWERPC] iSeries: set FW_FEATURE_ISERIES earlier
      [POWERPC] The two vio HVC backends clash
      [POWERPC] modify PCI code for a merged kernel
      [POWERPC] fix ioremap for a combined kernel
      [POWERPC] Allow combined iSeries and MULTIPLATFORM build
      [POWERPC] iSeries does not need pcibios_fixup_resources
      [POWERPC] implement BEGIN/END_FW_FTR_SECTION
      [POWERPC] iSeries has no legacy I/O

Vitaly Bordug:
      POWERPC: Added devicetree for mpc8272ads board
      POWERPC: 8272ads merge to powerpc: common stuff
      POWERPC: mpc82xx merge: board-specific/platform stuff(resend)

             reply	other threads:[~2006-10-04 13:01 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-10-04 13:01 Paul Mackerras [this message]
  -- strict thread matches above, loose matches on Subject: below --
2008-04-20 11:03 Please pull powerpc.git master branch Paul Mackerras
2007-10-23  0:08 Paul Mackerras
2007-10-12  4:28 Paul Mackerras
2007-10-12  5:38 ` Linus Torvalds
2007-06-07 12:51 Paul Mackerras
2007-06-03  1:15 Paul Mackerras
2007-06-03 10:54 ` Michael Neuling
2007-05-22 23:18 Paul Mackerras
2007-05-18 12:55 Paul Mackerras
2007-05-12  2:58 Paul Mackerras
2007-05-10 12:29 Paul Mackerras
2007-05-09  9:53 Paul Mackerras
2007-05-08  5:16 Paul Mackerras
2007-02-17 12:15 Paul Mackerras
2007-02-18 22:54 ` Paul Mackerras
2007-02-14  1:07 Paul Mackerras
2007-02-08  5:29 Paul Mackerras
2006-12-11 21:37 Please pull powerpc.git 'master' branch Paul Mackerras
2006-12-05  1:28 Paul Mackerras
2006-10-04 23:36 Paul Mackerras
2006-10-02 12:19 Paul Mackerras
2006-09-22  6:39 Paul Mackerras
2006-07-03 12:04 please " Paul Mackerras
2006-07-03 21:37 ` Paul Mackerras
2006-06-29 11:35 Paul Mackerras

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=17699.45225.614110.388085@cargo.ozlabs.ibm.com \
    --to=paulus@samba.org \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=torvalds@osdl.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).