* [git pull] Please pull powerpc.git next branch
@ 2010-10-13 22:08 Kumar Gala
2010-10-14 1:02 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 4+ messages in thread
From: Kumar Gala @ 2010-10-13 22:08 UTC (permalink / raw)
To: Benjamin Herrenschmidt; +Cc: linuxppc-dev
The following changes since commit 4108d9ba9091c55cfb968d42dd7dcae9a098b876:
powerpc/Makefiles: Change to new flag variables (2010-10-13 16:19:22 +1100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git next
Harninder Rai (1):
powerpc/fsl: 85xx: add cache-sram support
Ilya Yanok (1):
powerpc/mpc83xx: Support for MPC8308 P1M board
Kumar Gala (10):
powerpc/fsl-pci: Fix MSI support on 83xx platforms
powerpc/mpc8xxx_gpio: Add support for 'qoriq-gpio' controllers
powerpc/fsl-booke: Add PCI device ids for P2040/P3041/P5010/P5020 QoirQ chips
powerpc/fsl-booke: Add p3041 DS board support
powerpc: Fix compile error with paca code on ppc64e
powerpc/fsl-booke: Add support for FSL 64-bit e5500 core
powerpc/fsl-booke: Add support for FSL Arch v1.0 MMU in setup_page_sizes
powerpc/fsl-booke64: Use TLB CAMs to cover linear mapping on FSL 64-bit chips
powerpc/fsl-booke: Add p5020 DS board support
powerpc/fsl-booke: Add e55xx (64-bit) smp defconfig
Matthew McClintock (6):
powerpc/kexec: make masking/disabling interrupts generic
powerpc/85xx: Remove call to mpic_teardown_this_cpu in kexec
powerpc/85xx: Minor fixups for kexec on 85xx
powerpc/85xx: flush dcache before resetting cores
powerpc/fsl_soc: Search all global-utilities nodes for rstccr
powerpc/fsl_booke: Add support to boot from core other than 0
Paul Gortmaker (1):
powerpc: Fix invalid page flags in create TLB CAM path for PTE_64BIT
Scott Wood (1):
oprofile/fsl emb: Don't set MSR[PMM] until after clearing the interrupt.
Timur Tabi (4):
powerpc: export ppc_proc_freq and ppc_tb_freq as GPL symbols
powerpc/watchdog: Allow the Book-E driver to be compiled as a module
powerpc/p1022: Add probing for individual DMA channels
powerpc/85xx: add ngPIXIS FPGA device tree node to the P1022DS board
arch/powerpc/boot/dts/mpc8308_p1m.dts | 332 ++++++++++++++++++++++++
arch/powerpc/boot/dts/p1022ds.dts | 11 +
arch/powerpc/configs/e55xx_smp_defconfig | 84 ++++++
arch/powerpc/configs/ppc64e_defconfig | 4 +-
arch/powerpc/include/asm/fsl_85xx_cache_sram.h | 48 ++++
arch/powerpc/include/asm/kexec.h | 1 +
arch/powerpc/include/asm/mmu-book3e.h | 15 +
arch/powerpc/include/asm/pte-common.h | 7 +
arch/powerpc/kernel/Makefile | 4 +-
arch/powerpc/kernel/asm-offsets.c | 4 +-
arch/powerpc/kernel/cpu_setup_fsl_booke.S | 15 +
arch/powerpc/kernel/cputable.c | 28 ++-
arch/powerpc/kernel/crash.c | 13 +-
arch/powerpc/kernel/head_fsl_booke.S | 10 +-
arch/powerpc/kernel/machine_kexec.c | 24 ++
arch/powerpc/kernel/machine_kexec_32.c | 4 +
arch/powerpc/kernel/paca.c | 2 +-
arch/powerpc/kernel/setup_32.c | 2 +-
arch/powerpc/kernel/time.c | 3 +-
arch/powerpc/kernel/traps.c | 5 +
arch/powerpc/mm/Makefile | 2 +-
arch/powerpc/mm/fsl_booke_mmu.c | 15 +-
arch/powerpc/mm/mmu_decl.h | 5 +-
arch/powerpc/mm/tlb_nohash.c | 56 ++++-
arch/powerpc/mm/tlb_nohash_low.S | 2 +-
arch/powerpc/oprofile/op_model_fsl_emb.c | 15 +-
arch/powerpc/platforms/83xx/Kconfig | 4 +-
arch/powerpc/platforms/83xx/mpc830x_rdb.c | 3 +-
arch/powerpc/platforms/85xx/Kconfig | 28 ++-
arch/powerpc/platforms/85xx/Makefile | 2 +
arch/powerpc/platforms/85xx/p1022_ds.c | 2 +
arch/powerpc/platforms/85xx/p3041_ds.c | 64 +++++
arch/powerpc/platforms/85xx/p5020_ds.c | 69 +++++
arch/powerpc/platforms/85xx/smp.c | 76 +++++-
arch/powerpc/platforms/Kconfig.cputype | 8 +-
arch/powerpc/sysdev/Makefile | 1 +
arch/powerpc/sysdev/fsl_85xx_cache_ctlr.h | 101 +++++++
arch/powerpc/sysdev/fsl_85xx_cache_sram.c | 159 +++++++++++
arch/powerpc/sysdev/fsl_85xx_l2ctlr.c | 231 ++++++++++++++++
arch/powerpc/sysdev/fsl_msi.c | 9 +-
arch/powerpc/sysdev/fsl_pci.c | 51 ++++-
arch/powerpc/sysdev/fsl_pci.h | 1 +
arch/powerpc/sysdev/fsl_soc.c | 20 +-
arch/powerpc/sysdev/mpc8xxx_gpio.c | 3 +
drivers/watchdog/Kconfig | 5 +-
drivers/watchdog/booke_wdt.c | 39 +++-
include/linux/pci_ids.h | 8 +
47 files changed, 1516 insertions(+), 79 deletions(-)
create mode 100644 arch/powerpc/boot/dts/mpc8308_p1m.dts
create mode 100644 arch/powerpc/configs/e55xx_smp_defconfig
create mode 100644 arch/powerpc/include/asm/fsl_85xx_cache_sram.h
create mode 100644 arch/powerpc/platforms/85xx/p3041_ds.c
create mode 100644 arch/powerpc/platforms/85xx/p5020_ds.c
create mode 100644 arch/powerpc/sysdev/fsl_85xx_cache_ctlr.h
create mode 100644 arch/powerpc/sysdev/fsl_85xx_cache_sram.c
create mode 100644 arch/powerpc/sysdev/fsl_85xx_l2ctlr.c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [git pull] Please pull powerpc.git next branch
2010-10-13 22:08 [git pull] Please pull powerpc.git next branch Kumar Gala
@ 2010-10-14 1:02 ` Benjamin Herrenschmidt
2010-10-14 6:19 ` [git pull] Please pull powerpc.git next branch (updated) Kumar Gala
0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2010-10-14 1:02 UTC (permalink / raw)
To: Kumar Gala; +Cc: linuxppc-dev
On Wed, 2010-10-13 at 17:08 -0500, Kumar Gala wrote:
> The following changes since commit 4108d9ba9091c55cfb968d42dd7dcae9a098b876:
>
> powerpc/Makefiles: Change to new flag variables (2010-10-13 16:19:22 +1100)
>
> are available in the git repository at:
> git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git next
Fail :-)
/home/benh/linux-powerpc-test/arch/powerpc/sysdev/fsl_pci.c:494: error: redefinition of 'fsl_pci_immrbar_base'
/home/benh/linux-powerpc-test/arch/powerpc/sysdev/fsl_pci.c:313: note: previous definition of 'fsl_pci_immrbar_base' was here
make[2]: *** [arch/powerpc/sysdev/fsl_pci.o] Error 1
make[2]: *** Waiting for unfinished jobs....
Cheers,
Ben.
> Harninder Rai (1):
> powerpc/fsl: 85xx: add cache-sram support
>
> Ilya Yanok (1):
> powerpc/mpc83xx: Support for MPC8308 P1M board
>
> Kumar Gala (10):
> powerpc/fsl-pci: Fix MSI support on 83xx platforms
> powerpc/mpc8xxx_gpio: Add support for 'qoriq-gpio' controllers
> powerpc/fsl-booke: Add PCI device ids for P2040/P3041/P5010/P5020 QoirQ chips
> powerpc/fsl-booke: Add p3041 DS board support
> powerpc: Fix compile error with paca code on ppc64e
> powerpc/fsl-booke: Add support for FSL 64-bit e5500 core
> powerpc/fsl-booke: Add support for FSL Arch v1.0 MMU in setup_page_sizes
> powerpc/fsl-booke64: Use TLB CAMs to cover linear mapping on FSL 64-bit chips
> powerpc/fsl-booke: Add p5020 DS board support
> powerpc/fsl-booke: Add e55xx (64-bit) smp defconfig
>
> Matthew McClintock (6):
> powerpc/kexec: make masking/disabling interrupts generic
> powerpc/85xx: Remove call to mpic_teardown_this_cpu in kexec
> powerpc/85xx: Minor fixups for kexec on 85xx
> powerpc/85xx: flush dcache before resetting cores
> powerpc/fsl_soc: Search all global-utilities nodes for rstccr
> powerpc/fsl_booke: Add support to boot from core other than 0
>
> Paul Gortmaker (1):
> powerpc: Fix invalid page flags in create TLB CAM path for PTE_64BIT
>
> Scott Wood (1):
> oprofile/fsl emb: Don't set MSR[PMM] until after clearing the interrupt.
>
> Timur Tabi (4):
> powerpc: export ppc_proc_freq and ppc_tb_freq as GPL symbols
> powerpc/watchdog: Allow the Book-E driver to be compiled as a module
> powerpc/p1022: Add probing for individual DMA channels
> powerpc/85xx: add ngPIXIS FPGA device tree node to the P1022DS board
>
> arch/powerpc/boot/dts/mpc8308_p1m.dts | 332 ++++++++++++++++++++++++
> arch/powerpc/boot/dts/p1022ds.dts | 11 +
> arch/powerpc/configs/e55xx_smp_defconfig | 84 ++++++
> arch/powerpc/configs/ppc64e_defconfig | 4 +-
> arch/powerpc/include/asm/fsl_85xx_cache_sram.h | 48 ++++
> arch/powerpc/include/asm/kexec.h | 1 +
> arch/powerpc/include/asm/mmu-book3e.h | 15 +
> arch/powerpc/include/asm/pte-common.h | 7 +
> arch/powerpc/kernel/Makefile | 4 +-
> arch/powerpc/kernel/asm-offsets.c | 4 +-
> arch/powerpc/kernel/cpu_setup_fsl_booke.S | 15 +
> arch/powerpc/kernel/cputable.c | 28 ++-
> arch/powerpc/kernel/crash.c | 13 +-
> arch/powerpc/kernel/head_fsl_booke.S | 10 +-
> arch/powerpc/kernel/machine_kexec.c | 24 ++
> arch/powerpc/kernel/machine_kexec_32.c | 4 +
> arch/powerpc/kernel/paca.c | 2 +-
> arch/powerpc/kernel/setup_32.c | 2 +-
> arch/powerpc/kernel/time.c | 3 +-
> arch/powerpc/kernel/traps.c | 5 +
> arch/powerpc/mm/Makefile | 2 +-
> arch/powerpc/mm/fsl_booke_mmu.c | 15 +-
> arch/powerpc/mm/mmu_decl.h | 5 +-
> arch/powerpc/mm/tlb_nohash.c | 56 ++++-
> arch/powerpc/mm/tlb_nohash_low.S | 2 +-
> arch/powerpc/oprofile/op_model_fsl_emb.c | 15 +-
> arch/powerpc/platforms/83xx/Kconfig | 4 +-
> arch/powerpc/platforms/83xx/mpc830x_rdb.c | 3 +-
> arch/powerpc/platforms/85xx/Kconfig | 28 ++-
> arch/powerpc/platforms/85xx/Makefile | 2 +
> arch/powerpc/platforms/85xx/p1022_ds.c | 2 +
> arch/powerpc/platforms/85xx/p3041_ds.c | 64 +++++
> arch/powerpc/platforms/85xx/p5020_ds.c | 69 +++++
> arch/powerpc/platforms/85xx/smp.c | 76 +++++-
> arch/powerpc/platforms/Kconfig.cputype | 8 +-
> arch/powerpc/sysdev/Makefile | 1 +
> arch/powerpc/sysdev/fsl_85xx_cache_ctlr.h | 101 +++++++
> arch/powerpc/sysdev/fsl_85xx_cache_sram.c | 159 +++++++++++
> arch/powerpc/sysdev/fsl_85xx_l2ctlr.c | 231 ++++++++++++++++
> arch/powerpc/sysdev/fsl_msi.c | 9 +-
> arch/powerpc/sysdev/fsl_pci.c | 51 ++++-
> arch/powerpc/sysdev/fsl_pci.h | 1 +
> arch/powerpc/sysdev/fsl_soc.c | 20 +-
> arch/powerpc/sysdev/mpc8xxx_gpio.c | 3 +
> drivers/watchdog/Kconfig | 5 +-
> drivers/watchdog/booke_wdt.c | 39 +++-
> include/linux/pci_ids.h | 8 +
> 47 files changed, 1516 insertions(+), 79 deletions(-)
> create mode 100644 arch/powerpc/boot/dts/mpc8308_p1m.dts
> create mode 100644 arch/powerpc/configs/e55xx_smp_defconfig
> create mode 100644 arch/powerpc/include/asm/fsl_85xx_cache_sram.h
> create mode 100644 arch/powerpc/platforms/85xx/p3041_ds.c
> create mode 100644 arch/powerpc/platforms/85xx/p5020_ds.c
> create mode 100644 arch/powerpc/sysdev/fsl_85xx_cache_ctlr.h
> create mode 100644 arch/powerpc/sysdev/fsl_85xx_cache_sram.c
> create mode 100644 arch/powerpc/sysdev/fsl_85xx_l2ctlr.c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [git pull] Please pull powerpc.git next branch (updated)
2010-10-14 1:02 ` Benjamin Herrenschmidt
@ 2010-10-14 6:19 ` Kumar Gala
0 siblings, 0 replies; 4+ messages in thread
From: Kumar Gala @ 2010-10-14 6:19 UTC (permalink / raw)
To: Benjamin Herrenschmidt; +Cc: linuxppc-dev
[ should fix the compile issue and pulled in 2 other minor patches ]
The following changes since commit 4108d9ba9091c55cfb968d42dd7dcae9a098b876:
powerpc/Makefiles: Change to new flag variables (2010-10-13 16:19:22 +1100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git next
Harninder Rai (1):
powerpc/85xx: add cache-sram support
Ilya Yanok (1):
powerpc/mpc83xx: Support for MPC8308 P1M board
Kumar Gala (10):
powerpc/fsl-pci: Fix MSI support on 83xx platforms
powerpc/mpc8xxx_gpio: Add support for 'qoriq-gpio' controllers
powerpc/fsl-booke: Add PCI device ids for P2040/P3041/P5010/P5020 QoirQ chips
powerpc/fsl-booke: Add p3041 DS board support
powerpc: Fix compile error with paca code on ppc64e
powerpc/fsl-booke: Add support for FSL 64-bit e5500 core
powerpc/fsl-booke: Add support for FSL Arch v1.0 MMU in setup_page_sizes
powerpc/fsl-booke64: Use TLB CAMs to cover linear mapping on FSL 64-bit chips
powerpc/fsl-booke: Add p5020 DS board support
powerpc/fsl-booke: Add e55xx (64-bit) smp defconfig
Matthew McClintock (6):
powerpc/kexec: make masking/disabling interrupts generic
powerpc/85xx: Remove call to mpic_teardown_this_cpu in kexec
powerpc/85xx: Minor fixups for kexec on 85xx
powerpc/85xx: flush dcache before resetting cores
powerpc/fsl_soc: Search all global-utilities nodes for rstccr
powerpc/fsl_booke: Add support to boot from core other than 0
Paul Gortmaker (1):
powerpc: Fix invalid page flags in create TLB CAM path for PTE_64BIT
Scott Wood (1):
oprofile/fsl emb: Don't set MSR[PMM] until after clearing the interrupt.
Shaohui Xie (1):
fsl_rio: Add comments for sRIO registers.
Timur Tabi (5):
powerpc: export ppc_proc_freq and ppc_tb_freq as GPL symbols
powerpc/watchdog: Allow the Book-E driver to be compiled as a module
powerpc/p1022: Add probing for individual DMA channels
powerpc/85xx: add ngPIXIS FPGA device tree node to the P1022DS board
powerpc/watchdog: Make default timeout for Book-E watchdog a Kconfig option
arch/powerpc/boot/dts/mpc8308_p1m.dts | 332 ++++++++++++++++++++++++
arch/powerpc/boot/dts/p1022ds.dts | 11 +
arch/powerpc/configs/e55xx_smp_defconfig | 84 ++++++
arch/powerpc/configs/ppc64e_defconfig | 4 +-
arch/powerpc/include/asm/fsl_85xx_cache_sram.h | 48 ++++
arch/powerpc/include/asm/kexec.h | 1 +
arch/powerpc/include/asm/mmu-book3e.h | 15 +
arch/powerpc/include/asm/pte-common.h | 7 +
arch/powerpc/kernel/Makefile | 4 +-
arch/powerpc/kernel/asm-offsets.c | 4 +-
arch/powerpc/kernel/cpu_setup_fsl_booke.S | 15 +
arch/powerpc/kernel/cputable.c | 28 ++-
arch/powerpc/kernel/crash.c | 13 +-
arch/powerpc/kernel/head_fsl_booke.S | 10 +-
arch/powerpc/kernel/machine_kexec.c | 24 ++
arch/powerpc/kernel/machine_kexec_32.c | 4 +
arch/powerpc/kernel/paca.c | 2 +-
arch/powerpc/kernel/setup_32.c | 2 +-
arch/powerpc/kernel/time.c | 3 +-
arch/powerpc/kernel/traps.c | 5 +
arch/powerpc/mm/Makefile | 2 +-
arch/powerpc/mm/fsl_booke_mmu.c | 15 +-
arch/powerpc/mm/mmu_decl.h | 5 +-
arch/powerpc/mm/tlb_nohash.c | 56 ++++-
arch/powerpc/mm/tlb_nohash_low.S | 2 +-
arch/powerpc/oprofile/op_model_fsl_emb.c | 15 +-
arch/powerpc/platforms/83xx/Kconfig | 4 +-
arch/powerpc/platforms/83xx/mpc830x_rdb.c | 3 +-
arch/powerpc/platforms/85xx/Kconfig | 28 ++-
arch/powerpc/platforms/85xx/Makefile | 2 +
arch/powerpc/platforms/85xx/p1022_ds.c | 2 +
arch/powerpc/platforms/85xx/p3041_ds.c | 64 +++++
arch/powerpc/platforms/85xx/p5020_ds.c | 69 +++++
arch/powerpc/platforms/85xx/smp.c | 76 +++++-
arch/powerpc/platforms/Kconfig.cputype | 8 +-
arch/powerpc/sysdev/Makefile | 1 +
arch/powerpc/sysdev/fsl_85xx_cache_ctlr.h | 101 +++++++
arch/powerpc/sysdev/fsl_85xx_cache_sram.c | 159 +++++++++++
arch/powerpc/sysdev/fsl_85xx_l2ctlr.c | 231 ++++++++++++++++
arch/powerpc/sysdev/fsl_msi.c | 9 +-
arch/powerpc/sysdev/fsl_pci.c | 60 ++++-
arch/powerpc/sysdev/fsl_pci.h | 1 +
arch/powerpc/sysdev/fsl_rio.c | 65 +++--
arch/powerpc/sysdev/fsl_soc.c | 20 +-
arch/powerpc/sysdev/mpc8xxx_gpio.c | 3 +
drivers/watchdog/Kconfig | 22 ++-
drivers/watchdog/booke_wdt.c | 47 +++-
include/linux/pci_ids.h | 8 +
48 files changed, 1582 insertions(+), 112 deletions(-)
create mode 100644 arch/powerpc/boot/dts/mpc8308_p1m.dts
create mode 100644 arch/powerpc/configs/e55xx_smp_defconfig
create mode 100644 arch/powerpc/include/asm/fsl_85xx_cache_sram.h
create mode 100644 arch/powerpc/platforms/85xx/p3041_ds.c
create mode 100644 arch/powerpc/platforms/85xx/p5020_ds.c
create mode 100644 arch/powerpc/sysdev/fsl_85xx_cache_ctlr.h
create mode 100644 arch/powerpc/sysdev/fsl_85xx_cache_sram.c
create mode 100644 arch/powerpc/sysdev/fsl_85xx_l2ctlr.c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [git pull] Please pull powerpc.git next branch (updated)
2011-06-23 10:29 [git pull] Please pull powerpc.git next branch Kumar Gala
@ 2011-06-28 7:38 ` Kumar Gala
0 siblings, 0 replies; 4+ messages in thread
From: Kumar Gala @ 2011-06-28 7:38 UTC (permalink / raw)
To: Benjamin Herrenschmidt; +Cc: linuxppc-dev
[ pulled in a few additional patches, and fixed the fsl_pci change to
build on ppc64 platforms as well ]
The following changes since commit dc28518f7d7dfd93cd44edb44f9b8e961f5a5c1b:
powerpc: Fix doorbell type shift (2011-06-20 11:21:48 +1000)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git next
Ashish Kalra (2):
powerpc/85xx: Save scratch registers to thread info instead of using SPRGs.
powerpc: introduce the ePAPR embedded hypervisor vmpic driver
Baruch Siach (1):
MAINTAINERS: add arch/powerpc/platforms/85xx/ to the 85xx entry
Dmitry Eremin-Solenikov (2):
powerpc/85xx: tqm8540 - add description for onboard flash
powerpc/85xx: specify interrupt for pq3-localbus devices
Kumar Gala (11):
powerpc: Rename e55xx_smp_defconfig to corenet64_smp_defconfig
powerpc: Add a defconfig for 'corenet' 32-bit platforms
powerpc/85xx: Add P5020DS device tree
powerpc/85xx: Add P3041DS device tree
powerpc/85xx: Updates to P4080DS device tree
powerpc/85xx: Cleanup PCIe support on corenet_ds boards
powerpc/fsl_pci: Simplify matching logic for PCI_FIXUP_HEADER
powerpc/pci: Move FSL fixup from 32-bit to common
powerpc/85xx: Add PCI support in 64-bit mode on P5020DS
powerpc/qe: Limit QE support to ppc32
powerpc/85xx: Add P4080 SoC device tree include stub
Lei Xu (2):
powerpc/85xx: Update device tree to add nand info for p5020ds
powerpc/85xx: Update device tree to add nand info for p3041ds
Prabhakar Kushwaha (2):
powerpc/85xx: Add host-pci(e) bridge only for RC
powerpc/85xx: Add P1010RDB board support
Roy Zang (1):
powerpc/85xx: Add basic P1023RDS board support
Scott Wood (2):
powerpc/85xx: Set up doorbells even with no mpic
powerpc/e500mc: Add support for the wait instruction in e500_idle
Stuart Yoder (1):
powerpc: make irq_choose_cpu() available to all PIC drivers
Timur Tabi (9):
powerpc: introduce ePAPR embedded hypervisor hcall interface
powerpc: add Freescale hypervisor partition control functions
powerpc/85xx: add board support for the Freescale hypervisor
powerpc/p1022ds: add missing iounmap calls to platform file
powerpc/85xx: clamp the P1022DS DIU pixel clock to allowed values
powerpc/85xx: enable the framebuffer console for the defconfigs
powerpc/86xx: improve calculation of DIU pixel clock on the MPC8610 HPCD
powerpc/86xx: enable the framebuffer console on the MPC8610 HPCD
powerpc/85xx: disable timebase synchronization under the hypervisor
MAINTAINERS | 1 +
arch/powerpc/boot/dts/mpc8568mds.dts | 2 +
arch/powerpc/boot/dts/p1010rdb.dts | 280 +++++++
arch/powerpc/boot/dts/p1010si.dtsi | 376 ++++++++++
arch/powerpc/boot/dts/p1023rds.dts | 546 ++++++++++++++
arch/powerpc/boot/dts/p3041ds.dts | 791 ++++++++++++++++++++
arch/powerpc/boot/dts/p4080ds.dts | 533 +-------------
arch/powerpc/boot/dts/p4080si.dtsi | 661 ++++++++++++++++
arch/powerpc/boot/dts/p5020ds.dts | 784 +++++++++++++++++++
arch/powerpc/boot/dts/socrates.dts | 2 +
arch/powerpc/boot/dts/tqm8540.dts | 42 +
arch/powerpc/boot/dts/tqm8548-bigflash.dts | 2 +
arch/powerpc/boot/dts/tqm8548.dts | 2 +
arch/powerpc/boot/dts/tqm8560.dts | 2 +
arch/powerpc/boot/dts/xpedite5200.dts | 2 +
arch/powerpc/boot/dts/xpedite5200_xmon.dts | 2 +
arch/powerpc/configs/85xx/p1023rds_defconfig | 173 +++++
arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig | 5 +
arch/powerpc/configs/corenet32_smp_defconfig | 183 +++++
...e55xx_smp_defconfig => corenet64_smp_defconfig} | 0
arch/powerpc/configs/mpc85xx_defconfig | 12 +-
arch/powerpc/configs/mpc85xx_smp_defconfig | 10 +-
arch/powerpc/include/asm/ehv_pic.h | 40 +
arch/powerpc/include/asm/epapr_hcalls.h | 502 +++++++++++++
arch/powerpc/include/asm/fsl_hcalls.h | 655 ++++++++++++++++
arch/powerpc/include/asm/irq.h | 2 +
arch/powerpc/include/asm/processor.h | 5 +
arch/powerpc/include/asm/reg.h | 4 +-
arch/powerpc/kernel/asm-offsets.c | 3 +
arch/powerpc/kernel/head_booke.h | 42 +-
arch/powerpc/kernel/head_fsl_booke.S | 49 +-
arch/powerpc/kernel/idle_e500.S | 12 +
arch/powerpc/kernel/irq.c | 35 +
arch/powerpc/kernel/pci-common.c | 18 +
arch/powerpc/kernel/pci_32.c | 19 -
arch/powerpc/platforms/85xx/Kconfig | 19 +
arch/powerpc/platforms/85xx/Makefile | 2 +
arch/powerpc/platforms/85xx/corenet_ds.c | 41 +-
arch/powerpc/platforms/85xx/p1010rdb.c | 122 +++
arch/powerpc/platforms/85xx/p1022_ds.c | 18 +-
arch/powerpc/platforms/85xx/p1023_rds.c | 162 ++++
arch/powerpc/platforms/85xx/p3041_ds.c | 28 +-
arch/powerpc/platforms/85xx/p4080_ds.c | 38 +-
arch/powerpc/platforms/85xx/p5020_ds.c | 32 +-
arch/powerpc/platforms/85xx/smp.c | 21 +-
arch/powerpc/platforms/86xx/mpc8610_hpcd.c | 107 ++--
arch/powerpc/platforms/Kconfig | 6 +-
arch/powerpc/sysdev/Makefile | 1 +
arch/powerpc/sysdev/ehv_pic.c | 302 ++++++++
arch/powerpc/sysdev/fsl_pci.c | 83 +--
arch/powerpc/sysdev/fsl_soc.c | 27 +
arch/powerpc/sysdev/fsl_soc.h | 3 +
arch/powerpc/sysdev/mpic.c | 36 -
53 files changed, 6076 insertions(+), 769 deletions(-)
create mode 100644 arch/powerpc/boot/dts/p1010rdb.dts
create mode 100644 arch/powerpc/boot/dts/p1010si.dtsi
create mode 100644 arch/powerpc/boot/dts/p1023rds.dts
create mode 100644 arch/powerpc/boot/dts/p3041ds.dts
create mode 100644 arch/powerpc/boot/dts/p4080si.dtsi
create mode 100644 arch/powerpc/boot/dts/p5020ds.dts
create mode 100644 arch/powerpc/configs/85xx/p1023rds_defconfig
create mode 100644 arch/powerpc/configs/corenet32_smp_defconfig
rename arch/powerpc/configs/{e55xx_smp_defconfig => corenet64_smp_defconfig} (100%)
create mode 100644 arch/powerpc/include/asm/ehv_pic.h
create mode 100644 arch/powerpc/include/asm/epapr_hcalls.h
create mode 100644 arch/powerpc/include/asm/fsl_hcalls.h
create mode 100644 arch/powerpc/platforms/85xx/p1010rdb.c
create mode 100644 arch/powerpc/platforms/85xx/p1023_rds.c
create mode 100644 arch/powerpc/sysdev/ehv_pic.c
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-06-28 7:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-13 22:08 [git pull] Please pull powerpc.git next branch Kumar Gala
2010-10-14 1:02 ` Benjamin Herrenschmidt
2010-10-14 6:19 ` [git pull] Please pull powerpc.git next branch (updated) Kumar Gala
-- strict thread matches above, loose matches on Subject: below --
2011-06-23 10:29 [git pull] Please pull powerpc.git next branch Kumar Gala
2011-06-28 7:38 ` [git pull] Please pull powerpc.git next branch (updated) Kumar Gala
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).