
Wolfgang D., please pull mainly mpc837x support and libfdt code updates for mpc83xx (this pull request depends on the mpc85xx pull request):
The following changes since commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2: Wolfgang Denk (1): Release v1.3.1
are available in the git repository at:
git://www.denx.de/git/u-boot-mpc83xx.git
Anton Vorontsov (1): MPC8360E-MDS: configure and enable second UART
Dave Liu (6): mpc83xx: Add the support of MPC837x SoC mpc83xx: Add the support of MPC8315E SoC mpc83xx: Add the support of MPC837xEMDS board mpc83xx: Add the MPC837xEMDS board readme mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds mpc83xx: update the CREDITS and MAINTAINERS
Joakim Tjernlund (1): Add support CONFIG_UEC_ETH3 in MPC83xx
Kim Phillips (8): mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x mpc83xx: fix remaining fdt_find_node_by_path references mpc83xx: supress compiler warning mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x) mpc83xx: convert to using do_fixup_*() mpc83xx: remove FLAT_TREE code mpc83xx: rm remaining FLAT_TREE code
Kumar Gala (1): Remove CONFIG options related to OF that we dont use
Paul Gortmaker (3): sbc8349: Remove board specific ECC code sbc8349: migrate board to libfdt sbc8349: enable libfdt by default on WRS SBC8349 board.
Timur Tabi (1): 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
CREDITS | 5 + MAINTAINERS | 2 + MAKEALL | 1 + Makefile | 10 + board/freescale/mpc8313erdb/mpc8313erdb.c | 14 +- board/freescale/mpc8323erdb/mpc8323erdb.c | 10 - board/freescale/mpc832xemds/mpc832xemds.c | 14 +- board/freescale/mpc832xemds/pci.c | 46 +-- board/freescale/mpc8349emds/mpc8349emds.c | 14 +- board/freescale/mpc8349emds/pci.c | 76 ++--- board/freescale/mpc8349itx/mpc8349itx.c | 14 +- board/freescale/mpc8349itx/pci.c | 76 ++--- board/freescale/mpc8360emds/mpc8360emds.c | 61 +++- board/freescale/mpc8360emds/pci.c | 46 +-- board/freescale/mpc837xemds/Makefile | 50 +++ board/freescale/mpc837xemds/config.mk | 28 ++ board/freescale/mpc837xemds/mpc837xemds.c | 132 +++++++ board/freescale/mpc837xemds/pci.c | 65 +++ board/sbc8349/pci.c | 52 ++- board/sbc8349/sbc8349.c | 347 +---------------- cpu/mpc83xx/Makefile | 2 +- cpu/mpc83xx/cpu.c | 362 ++---------------- cpu/mpc83xx/cpu_init.c | 6 +- cpu/mpc83xx/fdt.c | 72 ++++ cpu/mpc83xx/pci.c | 83 ++--- cpu/mpc83xx/spd_sdram.c | 7 +- cpu/mpc83xx/speed.c | 201 ++++++++-- doc/README.mpc837xemds | 104 +++++ drivers/net/tsec.c | 10 + drivers/qe/uec.c | 23 ++ include/asm-ppc/global_data.h | 15 +- include/asm-ppc/immap_83xx.h | 145 +++++++- include/configs/MPC8313ERDB.h | 9 +- include/configs/MPC8323ERDB.h | 12 +- include/configs/MPC832XEMDS.h | 12 +- include/configs/MPC8349EMDS.h | 8 +- include/configs/MPC8349ITX.h | 11 +- include/configs/MPC8360EMDS.h | 15 +- include/configs/MPC837XEMDS.h | 600 +++++++++++++++++++++++++++++ include/configs/sbc8349.h | 10 +- include/mpc83xx.h | 261 ++++++++++++-- net/eth.c | 3 + 42 files changed, 1953 insertions(+), 1081 deletions(-) create mode 100644 board/freescale/mpc837xemds/Makefile create mode 100644 board/freescale/mpc837xemds/config.mk create mode 100644 board/freescale/mpc837xemds/mpc837xemds.c create mode 100644 board/freescale/mpc837xemds/pci.c create mode 100644 cpu/mpc83xx/fdt.c create mode 100644 doc/README.mpc837xemds create mode 100644 include/configs/MPC837XEMDS.h
p.s. I was unable to get the UEC and PHY latency fixes to a satisfactory state without re-reverting the relocation for 83xx commit (assuming that was what was causing Joakim's and Russell's problem). Now I'm going on vacation (random email access). btw, they should probably go through Ben Warren (net custodian) anyway.
Kim