
The following changes since commit 7385c28e9b5f7d47e6a8f1ad9800e6e70af714e2: Wolfgang Denk (1): fs/fat: Big code cleanup.
are available in the git repository at:
git://git.denx.de/u-boot-mpc85xx master
Kim Phillips (2): powerpc/85xx: configure autocompletion support powerpc/8xxx: query feature reporting register for num cores on unknown cpus
Kumar Gala (10): powerpc/85xx: Add additional p4080 platform related defines/structs powerpc/fsl_fman: Add initial fman immap structures powerpc/p4080: Add support for CPC(Corenet platform cache) on CoreNet platforms fdt: Add function to alloc phandle values powerpc/85xx: Add support to initialize LIODN registers and portals powerpc/p4080: Add support for initializing SERDES powerpc/p4080: Add workaround for errata SERDES8 powerpc/p4080: Add workaround for erratum CPU22 powerpc/8xxx: Enabled hwconfig for memory interleaving powerpc/p4080: Add support for the P4080DS board
york (8): powerpc/85xx: Move INIT_RAM_ADDR physical address to 36-bit space powerpc/p2020: Move INIT_RAM_ADDR physical address higher for 36-bit for P2020DS powerpc/8xxx: Fix bug in memctrl interleaving & bank interleaving on cs0~cs4 powerpc/8xxx: Enable quad-rank DIMMs. powerpc/8xxx: Enabled address hashing for 85xx powerpc/8xxx: Enable DDR3 RDIMM support powerpc/8xxx: Improvement to DDR parameters powerpc/p2020ds: Integrated with P2020DS DDR change and enabled hwconfig
MAKEALL | 1 + Makefile | 1 + arch/powerpc/cpu/mpc85xx/Makefile | 8 + arch/powerpc/cpu/mpc85xx/cmd_errata.c | 6 + arch/powerpc/cpu/mpc85xx/cpu_init.c | 52 ++- arch/powerpc/cpu/mpc85xx/ddr-gen3.c | 2 + arch/powerpc/cpu/mpc85xx/fdt.c | 39 ++ arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 495 ++++++++++++++ arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h | 44 ++ arch/powerpc/cpu/mpc85xx/liodn.c | 187 ++++++ arch/powerpc/cpu/mpc85xx/p4080_ids.c | 115 ++++ arch/powerpc/cpu/mpc85xx/p4080_serdes.c | 98 +++ arch/powerpc/cpu/mpc85xx/portals.c | 238 +++++++ arch/powerpc/cpu/mpc85xx/release.S | 6 + arch/powerpc/cpu/mpc85xx/start.S | 10 + arch/powerpc/cpu/mpc8xxx/cpu.c | 10 +- .../powerpc/cpu/mpc8xxx/ddr/common_timing_params.h | 3 + arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c | 264 +++++--- arch/powerpc/cpu/mpc8xxx/ddr/ddr.h | 1 + arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c | 6 +- .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c | 30 +- arch/powerpc/cpu/mpc8xxx/ddr/main.c | 40 +- arch/powerpc/cpu/mpc8xxx/ddr/options.c | 154 ++++- arch/powerpc/include/asm/fsl_ddr_dimm_params.h | 3 + arch/powerpc/include/asm/fsl_ddr_sdram.h | 3 + arch/powerpc/include/asm/fsl_fman.h | 212 ++++++ arch/powerpc/include/asm/fsl_law.h | 3 +- arch/powerpc/include/asm/fsl_liodn.h | 142 ++++ arch/powerpc/include/asm/fsl_portals.h | 59 ++ arch/powerpc/include/asm/fsl_serdes.h | 11 +- arch/powerpc/include/asm/immap_85xx.h | 219 ++++++- arch/powerpc/include/asm/processor.h | 1 + board/freescale/common/Makefile | 1 + board/freescale/corenet_ds/Makefile | 55 ++ board/freescale/corenet_ds/config.mk | 30 + board/freescale/corenet_ds/corenet_ds.c | 259 ++++++++ board/freescale/corenet_ds/ddr.c | 176 +++++ board/freescale/corenet_ds/law.c | 40 ++ board/freescale/corenet_ds/pci.c | 127 ++++ board/freescale/corenet_ds/tlb.c | 112 ++++ board/freescale/mpc8641hpcn/mpc8641hpcn.c | 2 + board/freescale/p2020ds/ddr.c | 56 +- board/freescale/p2020ds/p2020ds.c | 7 +- board/freescale/p2020ds/tlb.c | 8 +- boards.cfg | 1 + common/fdt_support.c | 18 + doc/README.fsl-ddr | 39 +- include/configs/MPC8536DS.h | 1 + include/configs/MPC8540ADS.h | 3 +- include/configs/MPC8541CDS.h | 3 +- include/configs/MPC8544DS.h | 3 +- include/configs/MPC8548CDS.h | 3 +- include/configs/MPC8555CDS.h | 3 +- include/configs/MPC8560ADS.h | 3 +- include/configs/MPC8568MDS.h | 3 +- include/configs/MPC8569MDS.h | 5 +- include/configs/MPC8572DS.h | 3 +- include/configs/MPC8641HPCN.h | 2 + include/configs/P1022DS.h | 1 + include/configs/P1_P2_RDB.h | 1 + include/configs/P2020DS.h | 21 +- include/configs/P4080DS.h | 35 + include/configs/TQM85xx.h | 1 + include/configs/XPEDITE5200.h | 1 + include/configs/XPEDITE5370.h | 1 + include/configs/corenet_ds.h | 673 ++++++++++++++++++++ include/configs/sbc8548.h | 1 + include/configs/socrates.h | 1 + include/configs/stxssa.h | 1 + include/ddr_spd.h | 14 + include/fdt_support.h | 1 + 71 files changed, 3933 insertions(+), 245 deletions(-) create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c create mode 100644 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h create mode 100644 arch/powerpc/cpu/mpc85xx/liodn.c create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_ids.c create mode 100644 arch/powerpc/cpu/mpc85xx/p4080_serdes.c create mode 100644 arch/powerpc/cpu/mpc85xx/portals.c create mode 100644 arch/powerpc/include/asm/fsl_fman.h create mode 100644 arch/powerpc/include/asm/fsl_liodn.h create mode 100644 arch/powerpc/include/asm/fsl_portals.h create mode 100644 board/freescale/corenet_ds/Makefile create mode 100644 board/freescale/corenet_ds/config.mk create mode 100644 board/freescale/corenet_ds/corenet_ds.c create mode 100644 board/freescale/corenet_ds/ddr.c create mode 100644 board/freescale/corenet_ds/law.c create mode 100644 board/freescale/corenet_ds/pci.c create mode 100644 board/freescale/corenet_ds/tlb.c create mode 100644 include/configs/P4080DS.h create mode 100644 include/configs/corenet_ds.h