
Wolfgang, it appears that you didn't pull mpc83xx. I've taken the patches that showed up on the list since my last pull request, and added them to my master branch, which I since rebased on top of your last night's HEAD.
Please do a:
git-pull git://www.denx.de/git/u-boot-mpc83xx.git
to get the following changes since commit b0d2962faf200b816410893faff31e54287b9075: Wolfgang Denk (1): Merge with git+ssh://atlas/home/wd/git/u-boot/master
Dave Liu (6): mpc83xx: Revise the MPC8360EMDS readme doc mpc83xx: Fix the align bug of SDMA buffer mpc83xx: Add support for the display of reset status mpc83xx: Correct the burst length for DDR2 with 32 bits mpc83xx: Consolidate the ECC support of 83xx mpc83xx: Correct the README for DDR ECC
Jerry Van Baren (2): mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path(). mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
Kim Phillips (4): mpc83xx: fix 8360 and cpu functions to update fdt being passed mpc83xx: fixup generic pci for libfdt mpc83xx: add support for the MPC8323E RDB mpc83xx: fix ITX[GP] O=builddir builds
Lee Nipper (1): mpc83xx: Add support for 8360 silicon revision 2.1
Martin Krause (1): TQM834x: cleanup configuraton
Timur Tabi (2): Update SCCR programming in cpu_init_f() to support all 83xx processors FSL I2C driver programs the two I2C busses differently
david.saada (1): MPC83xx: Fix makefile to generate config.h file in the build directory
Makefile | 19 +- board/freescale/mpc8323erdb/Makefile | 50 ++ board/freescale/mpc8323erdb/config.mk | 28 + board/freescale/mpc8323erdb/mpc8323erdb.c | 217 ++++++++ board/mpc8349emds/mpc8349emds.c | 327 ----------- board/mpc8349itx/config.mk | 6 - board/mpc8360emds/mpc8360emds.c | 389 +------------- board/mpc8360emds/pci.c | 22 +- cpu/mpc83xx/Makefile | 2 +- cpu/mpc83xx/cpu.c | 118 +++-- cpu/mpc83xx/cpu_init.c | 50 ++- cpu/mpc83xx/ecc.c | 390 +++++++++++++ cpu/mpc83xx/pci.c | 36 ++- cpu/mpc83xx/spd_sdram.c | 8 +- doc/README.mpc8323erdb | 71 +++ doc/README.mpc8360emds | 23 +- ...ME.mpc8349emds.ddrecc => README.mpc83xx.ddrecc} | 60 +- drivers/fsl_i2c.c | 3 +- drivers/qe/qe.c | 2 +- drivers/qe/qe.h | 2 +- include/common.h | 2 + include/configs/MPC8323ERDB.h | 583 ++++++++++++++++++++ include/configs/TQM834x.h | 3 - include/mpc83xx.h | 4 + lib_ppc/board.c | 6 +- 25 files changed, 1590 insertions(+), 831 deletions(-) create mode 100644 board/freescale/mpc8323erdb/Makefile create mode 100644 board/freescale/mpc8323erdb/config.mk create mode 100644 board/freescale/mpc8323erdb/mpc8323erdb.c create mode 100644 cpu/mpc83xx/ecc.c create mode 100644 doc/README.mpc8323erdb rename doc/{README.mpc8349emds.ddrecc => README.mpc83xx.ddrecc} (62%) create mode 100644 include/configs/MPC8323ERDB.h
Thanks,
Kim