
Wolfgang,
please pull:
http://opensource.freescale.com/pub/scm/u-boot-83xx.git upstream
to get the following commits.
Thanks, Kim
Dave Liu (5): mpc83xx: Fix the UEC driver bug of QE mpc83xx: streamline the 83xx immr head file mpc83xx: Add support for the MPC832XEMDS board mpc83xx: Add the MPC832XEMDS board readme mpc83xx: Fix the LAW1/3 bug
Emilian Medve (1): mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
Jerry Van Baren (1): mpc83xx: Put the version (and magic) after the HRCW.
Joakim Tjernlund (1): mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
Kim Phillips (9): mpc83xx: sort Makefile targets mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL mpc83xx: make 8360 default environment fdt be 8360 (not 8349) mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt mpc83xx: don't hang if watchdog configured on 8360, 832x mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers mpc83xx: add command line editing by default mpc83xx: update [local-]mac-address properties on UEC based devices mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
Kumar Gala (2): mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
Paul Gortmaker (1): mpc83xx: U-Boot support for Wind River SBC8349
Sam Song (1): mpc83xx: Remove a redundant semicolon in mpc8349itx.c
Timur Tabi (3): mpc83xx: Delete sdram_init() for MPC8349E-mITX mpc83xx: Add support for the MPC8349E-mITX-GP mpc83xx: write MAC address to mac-address and local-mac-address
Xie Xiaobo (3): mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
CREDITS | 4 + MAINTAINERS | 1 + MAKEALL | 3 +- Makefile | 47 +- board/mpc832xemds/Makefile | 50 + board/mpc832xemds/config.mk | 28 + board/mpc832xemds/mpc832xemds.c | 176 ++++ board/mpc832xemds/pci.c | 316 +++++++ board/mpc832xemds/u-boot.lds | 123 +++ board/mpc8349emds/mpc8349emds.c | 17 +- board/mpc8349itx/config.mk | 6 +- board/mpc8349itx/mpc8349itx.c | 112 +-- board/mpc8360emds/mpc8360emds.c | 24 +- board/mpc8360emds/pci.c | 3 + board/sbc8349/Makefile | 49 + board/sbc8349/config.mk | 27 + board/sbc8349/pci.c | 348 +++++++ board/sbc8349/sbc8349.c | 585 ++++++++++++ board/sbc8349/u-boot.lds | 125 +++ board/tqm834x/tqm834x.c | 4 +- cpu/mpc83xx/cpu.c | 91 ++- cpu/mpc83xx/cpu_init.c | 47 +- cpu/mpc83xx/qe_io.c | 2 +- cpu/mpc83xx/spd_sdram.c | 388 +++++++-- cpu/mpc83xx/speed.c | 61 +- cpu/mpc83xx/start.S | 28 +- doc/README.mpc832xemds | 129 +++ doc/README.mpc8349itx | 187 ++++ doc/README.sbc8349 | 99 ++ drivers/fsl_i2c.c | 27 +- drivers/qe/qe.h | 2 +- drivers/qe/uec.c | 27 +- drivers/tsec.c | 84 ++ drivers/tsec.h | 5 + include/asm-ppc/e300.h | 5 + include/asm-ppc/global_data.h | 4 +- include/asm-ppc/immap_83xx.h | 1958 ++++++--------------------------------- include/asm-ppc/immap_qe.h | 6 + include/configs/MPC832XEMDS.h | 631 +++++++++++++ include/configs/MPC8349EMDS.h | 56 +- include/configs/MPC8349ITX.h | 459 ++++------ include/configs/MPC8360EMDS.h | 43 +- include/configs/TQM834x.h | 11 - include/configs/sbc8349.h | 734 +++++++++++++++ include/mpc83xx.h | 1325 +++++++++++++++++++-------- 45 files changed, 5838 insertions(+), 2619 deletions(-) create mode 100644 board/mpc832xemds/Makefile create mode 100644 board/mpc832xemds/config.mk create mode 100644 board/mpc832xemds/mpc832xemds.c create mode 100644 board/mpc832xemds/pci.c create mode 100644 board/mpc832xemds/u-boot.lds create mode 100644 board/sbc8349/Makefile create mode 100644 board/sbc8349/config.mk create mode 100644 board/sbc8349/pci.c create mode 100644 board/sbc8349/sbc8349.c create mode 100644 board/sbc8349/u-boot.lds create mode 100644 doc/README.mpc832xemds create mode 100644 doc/README.mpc8349itx create mode 100644 doc/README.sbc8349 create mode 100644 include/configs/MPC832XEMDS.h create mode 100644 include/configs/sbc8349.h