From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kumar Gala Date: Mon, 11 Jul 2011 13:25:15 -0500 (CDT) Subject: [U-Boot] [GIT pull] Please pull u-boot-mpc85xx Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The following changes since commit 810cb19003ffe0115d10700fc512a2a743916f20: MPC83XX: Fix PCI express clock setup (2011-07-06 19:09:28 -0500) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx master Felix Radensky (1): powerpc/85xx: Fix pin muxing for second USB controller Kumar Gala (4): powerpc/85xx: Fix compile errors if CONFIG_SYS_{B,Q}MAN_MEM_PHYS aren't set powerpc/85xx: Fix compile errors if CONFIG_SYS_{BR,OR}0_PRELIM aren't set powerpc/85xx: Fix compile errors if CONFIG_SYS_DPAA_QBMAN isn't set powerpc/85xx: Add P2041 processor support Mingkai Hu (1): powerpc/p2040: Add various p2040 specific information Ramneek Mehresh (5): qoriq/p1_p2_rdb: Add Dual Role USB support macro for P1020RDB powerpc/8xxx: Update USB mode device tree fixup powerpc/85xx: Specify hwconfig usage for USB controller qoriq/p1_p2_rdb: USB device-tree fixups for P1020 powerpc/85xx: Add default usb mode and phy type to hwconfig Roy Zang (1): powerpc/85xx: Add basic support for P1023RDS board Shaohui Xie (1): powerpc/85xx: Add NAND boot support for P3041/P5020DS Timur Tabi (2): powerpc/86xx: display boot device and bank on the MPC8610 HPCD powerpc/85xx: remove SERDES4 soft-reset work-around York Sun (11): powerpc/mpc8xxx: adjust DDR burst length and chop accroding to sdram width powerpc/mpc8xxx: check SPD length before using part number powerpc/mpc8xxx: Add 16-bit support for DDR3 Adding more SPD registers powerpc/mpc8xxx: Enable calculation for fixed DDR chips powerpc/mpc8xxx: Adding fallback to raw timing on supported boards powerpc/mpc8xxx: fix DDR data width checking powerpc/corenet_ds: Fix RCW overriding for RDIMM powerpc/mpc85xx: Display a warning for unsupported DDR data rates powerpc/mpc8xxx: Allow override DDR read-to-write turnaround time powerpc/corenet_ds: add back buffer write for NOR flash MAINTAINERS | 1 + README | 6 + arch/powerpc/cpu/mpc85xx/Makefile | 6 + arch/powerpc/cpu/mpc85xx/cpu.c | 4 +- arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 71 ++- arch/powerpc/cpu/mpc85xx/p2040_ids.c | 109 +++++ arch/powerpc/cpu/mpc85xx/p2040_serdes.c | 24 + arch/powerpc/cpu/mpc85xx/p3041_ids.c | 11 +- arch/powerpc/cpu/mpc85xx/p4080_ids.c | 13 +- arch/powerpc/cpu/mpc85xx/p5020_ids.c | 11 +- arch/powerpc/cpu/mpc8xxx/cpu.c | 2 + arch/powerpc/cpu/mpc8xxx/ddr/Makefile | 13 +- arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c | 3 + arch/powerpc/cpu/mpc8xxx/ddr/ddr.h | 7 + arch/powerpc/cpu/mpc8xxx/ddr/ddr3_dimm_params.c | 3 +- arch/powerpc/cpu/mpc8xxx/ddr/main.c | 34 ++- arch/powerpc/cpu/mpc8xxx/ddr/options.c | 44 ++- arch/powerpc/cpu/mpc8xxx/fdt.c | 77 +++- arch/powerpc/cpu/mpc8xxx/fsl_lbc.c | 2 + arch/powerpc/include/asm/config_mpc85xx.h | 16 + arch/powerpc/include/asm/fsl_ddr_sdram.h | 6 + arch/powerpc/include/asm/immap_85xx.h | 2 +- arch/powerpc/include/asm/processor.h | 2 + board/freescale/corenet_ds/corenet_ds.c | 2 + board/freescale/corenet_ds/ddr.c | 8 +- board/freescale/corenet_ds/law.c | 4 + board/freescale/corenet_ds/tlb.c | 4 + board/freescale/mpc8572ds/ddr.c | 8 +- board/freescale/mpc8610hpcd/mpc8610hpcd.c | 25 +- board/freescale/mpc8641hpcn/ddr.c | 5 + board/freescale/p1023rds/Makefile | 38 ++ board/freescale/p1023rds/bcsr.h | 53 +++ board/freescale/p1023rds/law.c | 35 ++ board/freescale/p1023rds/p1023rds.c | 162 +++++++ board/freescale/p1023rds/tlb.c | 118 +++++ board/freescale/p1_p2_rdb/p1_p2_rdb.c | 47 ++ board/freescale/p2020ds/ddr.c | 6 + board/xes/xpedite550x/ddr.c | 6 + boards.cfg | 4 + doc/README.fsl-hwconfig | 25 + doc/README.p1023rds | 101 ++++ include/configs/MPC8536DS.h | 3 +- include/configs/P1023RDS.h | 562 +++++++++++++++++++++++ include/configs/P1_P2_RDB.h | 3 +- include/configs/P2020DS.h | 3 +- include/configs/corenet_ds.h | 39 ++- include/ddr_spd.h | 4 +- nand_spl/board/freescale/p1023rds/Makefile | 132 ++++++ nand_spl/board/freescale/p1023rds/nand_boot.c | 99 ++++ 49 files changed, 1888 insertions(+), 75 deletions(-) create mode 100644 arch/powerpc/cpu/mpc85xx/p2040_ids.c create mode 100644 board/freescale/p1023rds/Makefile create mode 100644 board/freescale/p1023rds/bcsr.h create mode 100644 board/freescale/p1023rds/law.c create mode 100644 board/freescale/p1023rds/p1023rds.c create mode 100644 board/freescale/p1023rds/tlb.c create mode 100644 doc/README.p1023rds create mode 100644 include/configs/P1023RDS.h create mode 100644 nand_spl/board/freescale/p1023rds/Makefile create mode 100644 nand_spl/board/freescale/p1023rds/nand_boot.c