
The following changes since commit 19bf91f9628f80a55d4f171df71041574882b3d6: Wolfgang Denk (1): Merge with /home/tur/git/u-boot#motionpro
are found in the git repository at:
git://www.denx.de/git/u-boot-ppc4xx.git
Stefan Roese (13): ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe) ppc4xx: Change Luan config file to support ECC ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo NAND: Update nand_ecc.c to latest Linux version NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c ppc4xx: Update in_be32() functions and friends to latest Linux version ppc4xx: Prepare Bamboo port for NAND booting support NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board ppc4xx: Update Sequoia NAND booting support with ECC ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz Merge with /home/stefan/git/u-boot/bamboo-nand ppc4xx: Add missing file for Bamboo NAND booting support
MAKEALL | 30 ++-- Makefile | 9 + board/amcc/bamboo/Makefile | 4 +- board/amcc/bamboo/bamboo.c | 29 ++- board/amcc/bamboo/config.mk | 6 +- board/amcc/bamboo/flash.c | 6 +- board/amcc/bamboo/init.S | 183 +++++++++--------- board/amcc/bamboo/u-boot-nand.lds | 137 +++++++++++++ board/amcc/sequoia/sdram.c | 4 + board/amcc/sequoia/sequoia.c | 6 - cpu/ppc4xx/44x_spd_ddr.c | 341 ++++++++++++++++----------------- cpu/ppc4xx/44x_spd_ddr2.c | 7 +- cpu/ppc4xx/ndfc.c | 74 +++++-- cpu/ppc4xx/start.S | 221 +++++++++++++--------- drivers/nand/nand_ecc.c | 228 +++++++++------------- include/asm-ppc/io.h | 89 ++++++---- include/configs/bamboo.h | 88 ++++++++-- include/configs/luan.h | 3 +- include/configs/sequoia.h | 13 +- nand_spl/board/amcc/bamboo/Makefile | 100 ++++++++++ nand_spl/board/amcc/bamboo/config.mk | 49 +++++ nand_spl/board/amcc/bamboo/sdram.c | 92 +++++++++ nand_spl/board/amcc/bamboo/u-boot.lds | 65 +++++++ nand_spl/board/amcc/sequoia/Makefile | 9 +- nand_spl/nand_boot.c | 95 ++++++---- 25 files changed, 1243 insertions(+), 645 deletions(-) create mode 100644 board/amcc/bamboo/u-boot-nand.lds create mode 100644 nand_spl/board/amcc/bamboo/Makefile create mode 100644 nand_spl/board/amcc/bamboo/config.mk create mode 100644 nand_spl/board/amcc/bamboo/sdram.c create mode 100644 nand_spl/board/amcc/bamboo/u-boot.lds