Please pull from 'for-2.6.24' branch
From: Josh Boyer <hidden>
Date: 2007-08-17 13:46:31
Hi Paul, Please pull from the 'for-2.6.24' branch of git://git.infradead.org/~jwboyer/powerpc.git for-2.6.24 It contains the patches sent in http://ozlabs.org/pipermail/linuxppc-dev/2007-August/040512.html rebased on top of your for-2.6.24 branch with the acks from David included in the commits. Diffstat and shortlog below. josh arch/powerpc/Makefile | 2 +- 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 | 7 +- arch/powerpc/boot/bamboo.c | 45 ++ arch/powerpc/boot/dcr.h | 13 + arch/powerpc/boot/dts/bamboo.dts | 244 ++++++++ arch/powerpc/boot/ebony.c | 3 +- arch/powerpc/boot/treeboot-bamboo.c | 27 + arch/powerpc/configs/bamboo_defconfig | 775 ++++++++++++++++++++++++ arch/powerpc/kernel/Makefile | 2 +- arch/powerpc/kernel/{head_4xx.S => head_40x.S} | 3 +- arch/powerpc/kernel/ppc_ksyms.c | 2 +- arch/powerpc/kernel/time.c | 2 +- arch/powerpc/mm/{4xx_mmu.c => 40x_mmu.c} | 4 +- arch/powerpc/mm/Makefile | 2 +- arch/powerpc/platforms/{4xx => 40x}/Kconfig | 77 --- arch/powerpc/platforms/{4xx => 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/Kconfig.cputype | 1 + include/asm-powerpc/mmu-40x.h | 65 ++ include/asm-powerpc/mmu.h | 3 + include/asm-powerpc/time.h | 2 +- 27 files changed, 1477 insertions(+), 187 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/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} (100%) rename arch/powerpc/mm/{4xx_mmu.c => 40x_mmu.c} (97%) rename arch/powerpc/platforms/{4xx => 40x}/Kconfig (68%) rename arch/powerpc/platforms/{4xx => 40x}/Makefile (100%) create mode 100644 arch/powerpc/platforms/44x/bamboo.c create mode 100644 include/asm-powerpc/mmu-40x.h Josh Boyer (10): Rename 4xx paths to 40x 4xx Kconfig cleanup Rename 44x bootwrapper 4xx bootwrapper reworks 40x MMU 40x decrementer fixes Fix 40x build Bamboo DTS Bamboo board support Bamboo zImage wrapper