
WD, please pull support for two new boards (mpc8315erdb and mpc837xerdb), and some fixes for some bugs that crept in recently:
The following changes since commit cd9d23053d435c08fc8695017b5cb9003fcda786: Anton Vorontsov (1): nand: FSL UPM NAND driver
are available in the git repository at:
git://www.denx.de/git/u-boot-mpc83xx.git
Dave Liu (3): mpc83xx: Remove cache config from MPC8360ERDK.h mpc83xx: Add config of eTSEC emergency priority in SPCR mpc83xx: Add the support for MPC8315ERDB board
Jerry Van Baren (1): Enable the isdram command on the MPC8360EMDS board
Kim Phillips (5): mpc83xx: fix phy-connection-type fixup code mpc83xx: clean up mpc8360emds.c warnings mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value mpc83xx: add support for more system clock performance controls Add support for the MPC837xERDB
Kumar Gala (1): mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
Poonam Aggrwal (1): Changes in uboot DDR configuration for MPC8313eRDB
CREDITS | 2 +- MAINTAINERS | 5 + MAKEALL | 2 + Makefile | 6 + board/freescale/mpc8313erdb/Makefile | 2 +- board/freescale/mpc8315erdb/Makefile | 50 +++ board/freescale/mpc8315erdb/config.mk | 1 + board/freescale/mpc8315erdb/mpc8315erdb.c | 132 +++++++ board/freescale/mpc8315erdb/sdram.c | 120 ++++++ board/freescale/mpc8349itx/Makefile | 2 +- board/freescale/mpc8360emds/mpc8360emds.c | 34 +- board/freescale/mpc837xerdb/Makefile | 50 +++ board/freescale/mpc837xerdb/config.mk | 28 ++ board/freescale/mpc837xerdb/mpc837xerdb.c | 150 ++++++++ board/freescale/mpc837xerdb/pci.c | 59 +++ cpu/mpc83xx/cpu_init.c | 78 +++- cpu/mpc83xx/speed.c | 12 +- doc/README.mpc8315erdb | 80 ++++ doc/README.mpc837xerdb | 98 +++++ include/configs/MPC8313ERDB.h | 32 +- include/configs/MPC8315ERDB.h | 547 ++++++++++++++++++++++++++ include/configs/MPC8323ERDB.h | 2 +- include/configs/MPC832XEMDS.h | 2 +- include/configs/MPC8360EMDS.h | 3 +- include/configs/MPC8360ERDK.h | 11 +- include/configs/MPC837XERDB.h | 596 +++++++++++++++++++++++++++++ include/mpc83xx.h | 13 +- 27 files changed, 2040 insertions(+), 77 deletions(-) create mode 100644 board/freescale/mpc8315erdb/Makefile create mode 100644 board/freescale/mpc8315erdb/config.mk create mode 100644 board/freescale/mpc8315erdb/mpc8315erdb.c create mode 100644 board/freescale/mpc8315erdb/sdram.c create mode 100644 board/freescale/mpc837xerdb/Makefile create mode 100644 board/freescale/mpc837xerdb/config.mk create mode 100644 board/freescale/mpc837xerdb/mpc837xerdb.c create mode 100644 board/freescale/mpc837xerdb/pci.c create mode 100644 doc/README.mpc8315erdb create mode 100644 doc/README.mpc837xerdb create mode 100644 include/configs/MPC8315ERDB.h create mode 100644 include/configs/MPC837XERDB.h
Thanks,
Kim