
The following changes since commit 229549a56d9ae413c00f64fd7c728c6879a1b54b: Stefan Roese (1): mpc512x: MPC5121ADS: Add NAND support
are available in the git repository at:
git://git.denx.de/u-boot-mpc85xx.git next
Haiying Wang (10): drivers/qe: Rename the camel-case identifiers in uec 85xx: Add QE clk support drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs drivers/qe: Add more SNUM number for QE 85xx: Add UEC3 and UEC4 support for MPC8569MDS 85xx: Add RMII support for MPC8569MDS fsl: Update the number of ethxaddr in reading system eeprom qe: Pass in uec_info struct through uec_initialize drivers/qe: add sgmii support in for UEC driver 85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
Kumar Gala (2): 85xx: Always attempt ethernet device tree fixup 85xx: Added MPC8535/E identifiers
Peter Tyser (6): fsl: Create common fsl_dma.h for 85xx and 86xx cpus fsl/85xx, 86xx: Sync up DMA code 85xx: Add PORBMSR and PORDEVSR shift defines xes: Update Freescale PCI code to work with 86xx processors xes: Update Freescale DDR code to work with 86xx processors xes: Update Freescale clock code to work with 86xx processors
Srikanth Srinivasan (1): 85xx: Add P2020DS support
MAKEALL | 2 + Makefile | 9 + board/freescale/common/sys_eeprom.c | 23 +- board/freescale/mpc8569mds/bcsr.c | 19 +- board/freescale/mpc8569mds/bcsr.h | 2 +- board/freescale/mpc8569mds/mpc8569mds.c | 126 ++++- board/freescale/p2020ds/Makefile | 54 ++ board/freescale/p2020ds/config.mk | 32 + board/freescale/p2020ds/ddr.c | 130 ++++ board/freescale/p2020ds/law.c | 42 ++ board/freescale/p2020ds/p2020ds.c | 634 +++++++++++++++++ board/freescale/p2020ds/tlb.c | 95 +++ board/freescale/p2020ds/u-boot.lds | 143 ++++ board/xes/common/Makefile | 7 +- .../xes/common/{fsl_8572_clk.c => fsl_8xxx_clk.c} | 8 + .../xes/common/{fsl_85xx_ddr.c => fsl_8xxx_ddr.c} | 8 +- .../xes/common/{fsl_85xx_pci.c => fsl_8xxx_pci.c} | 81 ++- cpu/mpc83xx/cpu.c | 20 +- cpu/mpc85xx/cpu.c | 60 +- cpu/mpc85xx/fdt.c | 3 - cpu/mpc85xx/speed.c | 15 +- cpu/mpc86xx/cpu.c | 35 +- drivers/qe/qe.c | 18 +- drivers/qe/qe.h | 18 +- drivers/qe/uec.c | 224 ++----- drivers/qe/uec.h | 56 ++- include/asm-ppc/fsl_dma.h | 51 ++ include/asm-ppc/immap_85xx.h | 80 +-- include/asm-ppc/immap_86xx.h | 78 +-- include/asm-ppc/immap_qe.h | 13 +- include/asm-ppc/processor.h | 2 + include/configs/MPC8569MDS.h | 82 +++- include/configs/P2020DS.h | 741 ++++++++++++++++++++ include/e500.h | 1 + 34 files changed, 2493 insertions(+), 419 deletions(-) create mode 100644 board/freescale/p2020ds/Makefile create mode 100644 board/freescale/p2020ds/config.mk create mode 100644 board/freescale/p2020ds/ddr.c create mode 100644 board/freescale/p2020ds/law.c create mode 100644 board/freescale/p2020ds/p2020ds.c create mode 100644 board/freescale/p2020ds/tlb.c create mode 100644 board/freescale/p2020ds/u-boot.lds rename board/xes/common/{fsl_8572_clk.c => fsl_8xxx_clk.c} (86%) rename board/xes/common/{fsl_85xx_ddr.c => fsl_8xxx_ddr.c} (92%) rename board/xes/common/{fsl_85xx_pci.c => fsl_8xxx_pci.c} (79%) create mode 100644 include/asm-ppc/fsl_dma.h create mode 100644 include/configs/P2020DS.h