
Tom,
The following changes since commit 69c0d323e325f48f3124fb0696de3d68fcbcae8e:
kbuild: Fix trailing whitespaces (2014-05-12 16:31:51 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-mpc85xx.git master
for you to fetch changes up to 8ad5d45e0044f5e64dbe7c6bd4e6aa0121a26b23:
boards.cfg: fix a configuration error of ep8248 board (2014-05-13 11:00:01 -0500)
---------------------------------------------------------------- Alexander Graf (4): PPC 85xx QEMU: Always assume 1 core PPC 85xx QEMU: Don't use HID1 powerpc/mpc85xx: Update TLB CAMs in relocated mode PPC 85xx QEMU: Make a generic board file
Aneesh Bansal (2): powerpc/mpc85xx: SECURE BOOT- secure boot target for t1040rdb powerpc/mpc85xx: SECURE BOOT- Add secure boot target for T2080RDB
Chunhe Lan (1): powerpc/85xx: Add T4240RDB board support
Masahiro Yamada (1): boards.cfg: fix a configuration error of ep8248 board
Shaohui Xie (1): powerpc/fman/memac: use default MDIO_HOLD value
Shaveta Leekha (2): board/freescale/common: ZM7300 driver board/b4qds: VID support
Shengzhou Liu (2): powerpc/t208x: enable errata A006261, A006593, A006379 powerpc/85xx: add T4080 SoC support
Stefan Bigler (2): kmp204x: Add support for the unit LEDs kmp204x: handle dip-switch for factory settings
Valentin Longchamp (6): kmp204x: selftest/factory test pin support kmp204x: update the CONFIG_PRAM and CONFIG_KM_RESERVED_PRAM defines kmp204x: complete the reset sequence and PRST configuration kmp204x: update the RCW kmp204x: add workaround for A-004849 kmp204x: enable the errata command
York Sun (6): powerpc/mpc8572ds: Increase u-boot size to 768KB powerpc/mpc85xx: Ignore FDT pointer for non-QEMU in cpu_init_early_f() powerpc/freescale: Change the return value of mac_read_from_eeprom() powerpc/mpc85xx: Fix boot_flag for calling board_init_f() powerpc/mpc86xx: Fix boot_flag for calling board_init_f() powerpc/freescale: Convert selected boards to generic board architecture
Zhao Qiang (1): qe: disable qe when qe-ucode fails to be uploaded for "deep sleep"
arch/powerpc/cpu/mpc85xx/Makefile | 2 + arch/powerpc/cpu/mpc85xx/cpu.c | 24 + arch/powerpc/cpu/mpc85xx/cpu_init.c | 17 +- arch/powerpc/cpu/mpc85xx/cpu_init_early.c | 2 + arch/powerpc/cpu/mpc85xx/speed.c | 3 +- arch/powerpc/cpu/mpc85xx/spl_minimal.c | 4 +- arch/powerpc/cpu/mpc85xx/start.S | 4 +- arch/powerpc/cpu/mpc85xx/t4240_ids.c | 2 + arch/powerpc/cpu/mpc85xx/t4240_serdes.c | 2 +- arch/powerpc/cpu/mpc86xx/start.S | 1 + arch/powerpc/cpu/mpc8xxx/cpu.c | 5 +- arch/powerpc/include/asm/config_mpc85xx.h | 19 +- arch/powerpc/include/asm/fsl_errata.h | 5 + arch/powerpc/include/asm/fsl_secure_boot.h | 3 +- arch/powerpc/include/asm/immap_85xx.h | 6 +- arch/powerpc/include/asm/processor.h | 1 + board/freescale/b4860qds/b4860qds.c | 240 +++++++++ board/freescale/common/Makefile | 1 + board/freescale/common/sys_eeprom.c | 6 +- board/freescale/common/zm7300.c | 235 +++++++++ board/freescale/common/zm7300.h | 22 + board/freescale/qemu-ppce500/qemu-ppce500.c | 20 + board/freescale/t4rdb/Makefile | 12 + board/freescale/t4rdb/ddr.c | 118 +++++ board/freescale/t4rdb/ddr.h | 78 +++ board/freescale/t4rdb/eth.c | 146 ++++++ board/freescale/t4rdb/law.c | 28 + board/freescale/t4rdb/pci.c | 23 + board/freescale/t4rdb/t4240rdb.c | 125 +++++ board/freescale/t4rdb/t4_pbi.cfg | 31 ++ board/freescale/t4rdb/t4_rcw.cfg | 7 + board/freescale/t4rdb/t4rdb.h | 18 + board/freescale/t4rdb/tlb.c | 111 ++++ board/keymile/kmp204x/kmp204x.c | 75 ++- board/keymile/kmp204x/kmp204x.h | 3 + board/keymile/kmp204x/pbi.cfg | 43 +- board/keymile/kmp204x/pci.c | 17 +- board/keymile/kmp204x/qrio.c | 31 +- board/keymile/kmp204x/rcw_kmp204x.cfg | 2 +- boards.cfg | 7 +- drivers/mmc/fsl_esdhc.c | 2 +- drivers/net/fm/Makefile | 1 + drivers/net/fm/memac_phy.c | 8 +- drivers/qe/qe.c | 9 +- include/common.h | 5 +- include/configs/B4860QDS.h | 14 + include/configs/MPC8536DS.h | 2 + include/configs/MPC8572DS.h | 5 +- include/configs/MPC8641HPCN.h | 3 + include/configs/T208xRDB.h | 1 + include/configs/T4240RDB.h | 752 +++++++++++++++++++++++++++ include/configs/corenet_ds.h | 3 + include/configs/km/kmp204x-common.h | 17 +- include/configs/p1_p2_rdb_pc.h | 3 + include/configs/qemu-ppce500.h | 1 + include/configs/t4qds.h | 2 + 56 files changed, 2257 insertions(+), 70 deletions(-) create mode 100644 board/freescale/common/zm7300.c create mode 100644 board/freescale/common/zm7300.h create mode 100644 board/freescale/t4rdb/Makefile create mode 100644 board/freescale/t4rdb/ddr.c create mode 100644 board/freescale/t4rdb/ddr.h create mode 100644 board/freescale/t4rdb/eth.c create mode 100644 board/freescale/t4rdb/law.c create mode 100644 board/freescale/t4rdb/pci.c create mode 100644 board/freescale/t4rdb/t4240rdb.c create mode 100644 board/freescale/t4rdb/t4_pbi.cfg create mode 100644 board/freescale/t4rdb/t4_rcw.cfg create mode 100644 board/freescale/t4rdb/t4rdb.h create mode 100644 board/freescale/t4rdb/tlb.c create mode 100644 include/configs/T4240RDB.h
Thanks,
York