Yes. I have some internal review stuff to finish, but I will get to MMC next.
On Wed, Jan 30, 2013 at 5:17 PM, Tom Rini <tr...@ti.com> wrote: > On Wed, Jan 30, 2013 at 11:34:47AM -0600, Andy Fleming wrote: > > > Merge branch 'master' of git://git.denx.de/u-boot-i2c (2013-01-29 > 15:36:27 -0500) > > > > are available in the git repository at: > > > > > > git://www.denx.de/git/u-boot-mpc85xx.git master > > > > for you to fetch changes up to d4ed6542788169b789c7eed142efc0a6fa5ca698: > > > > corenet: Disable video on P2020DS (2013-01-30 11:25:16 -0600) > > > > ---------------------------------------------------------------- > > Anatolij Gustschin (1): > > mpc8xxx: fix DDR init value to use CONFIG_MEM_INIT_VALUE > > > > Andy Fleming (1): > > corenet: Disable video on P2020DS > > > > Hongtao Jia (2): > > powerpc/mpc8572ds: Enable bank interleaving to cs0+cs1 for > dual-rank DIMMs > > powerpc/mpc8544ds: Add USB controller support for MPC8544DS > > > > James Yang (5): > > Move DDR command parsing to separate function > > Fix data stage name matching issue > > Add copy command to FSL DDR interactive > > README.fsl-ddr typos and update to reflect hotkey > > powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands > > > > Poonam Aggrwal (2): > > powerpc/mpc85xx: Few updates for B4860 cpu changes > > powerpc/mpc85xx:Add support of B4420 SoC > > > > Prabhakar Kushwaha (8): > > board/T4240qds:Fix TLB and LAW size of NAND flash > > boards/T4240qds:Fix IFC AMASK init as per FPGA register space > > board/freescale/common:Add support of QTAG register > > powerpc/mpc85xx:Fix Core cluster configuration loop > > powerpc/t4240qds: Print FPGA detail version > > powerpc/mpc85xx: Add BSC9132/BSC9232 processor support > > powerpc/85xx: Add BSC9132QDS support > > board/common: Add support for QIXIS read/write using i2c > > > > Scott Wood (1): > > powerpc/mpc85xx: add support for MMUv2 page sizes > > > > Shaohui Xie (1): > > powerpc/p2041: move Lanes mux to board early init > > > > Shaveta Leekha (3): > > powerpc/qixis: enable qixis dump command and add switch dumping > command > > powerpc/b4860qds: Add support to dump switch settings on b4860qds > board > > powerpc/t4240qds: Add support to dump switch settings on t4240qds > board > > > > Shengzhou Liu (1): > > powerpc/t4240: Adding workaround errata A-005871 > > > > Timur Tabi (1): > > powerpc/t4qds: move VSC3316 config data from t4qds.h to t4qds.c > > > > Vakul Garg (1): > > powerpc/mpc85xx: Add property 'fsl, sec-era' in device tree node > 'crypto' > > > > Valentin Longchamp (2): > > powerpc/p2041: add RCW file for P2041RDB > > powerpc/p2041: set RCW and PBI files for .pbl build or P2041RDB > > > > York Sun (4): > > powerpc/mpc85xx: Reserve default boot page > > powerpc/t4240qds: Update IFC timing for NOR flash > > powerpc/b4860qds: Added Support for B4860QDS > > powerpc/mpc8xxx: Enable entering DDR debugging by key press > > > > MAINTAINERS | 4 + > > arch/powerpc/cpu/mpc85xx/Makefile | 5 + > > arch/powerpc/cpu/mpc85xx/b4860_ids.c | 6 + > > arch/powerpc/cpu/mpc85xx/b4860_serdes.c | 60 ++ > > arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c | 96 +++ > > arch/powerpc/cpu/mpc85xx/cmd_errata.c | 4 + > > arch/powerpc/cpu/mpc85xx/cpu_init.c | 44 +- > > arch/powerpc/cpu/mpc85xx/fdt.c | 24 + > > arch/powerpc/cpu/mpc85xx/start.S | 2 +- > > arch/powerpc/cpu/mpc85xx/tlb.c | 19 +- > > arch/powerpc/cpu/mpc8xxx/cpu.c | 2 + > > arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c | 4 + > > arch/powerpc/cpu/mpc8xxx/ddr/ddr.h | 3 +- > > arch/powerpc/cpu/mpc8xxx/ddr/interactive.c | 324 ++++++--- > > arch/powerpc/cpu/mpc8xxx/ddr/main.c | 8 +- > > arch/powerpc/cpu/mpc8xxx/fdt.c | 78 +- > > arch/powerpc/include/asm/config_mpc85xx.h | 39 +- > > arch/powerpc/include/asm/immap_85xx.h | 34 +- > > arch/powerpc/include/asm/mmu.h | 52 +- > > arch/powerpc/include/asm/processor.h | 2 + > > board/freescale/b4860qds/Makefile | 54 ++ > > board/freescale/b4860qds/b4860qds.c | 505 +++++++++++++ > > board/freescale/b4860qds/b4860qds.h | 26 + > > board/freescale/b4860qds/b4860qds_crossbar_con.h | 67 ++ > > board/freescale/b4860qds/b4860qds_qixis.h | 37 + > > board/freescale/b4860qds/ddr.c | 190 +++++ > > board/freescale/b4860qds/eth_b4860qds.c | 338 +++++++++ > > board/freescale/b4860qds/law.c | 44 ++ > > board/freescale/b4860qds/pci.c | 39 + > > board/freescale/b4860qds/tlb.c | 127 ++++ > > board/freescale/bsc9132qds/Makefile | 52 ++ > > board/freescale/bsc9132qds/README | 150 ++++ > > board/freescale/bsc9132qds/bsc9132qds.c | 403 +++++++++++ > > board/freescale/bsc9132qds/ddr.c | 209 ++++++ > > board/freescale/bsc9132qds/law.c | 35 + > > board/freescale/bsc9132qds/tlb.c | 92 +++ > > board/freescale/common/qixis.c | 107 ++- > > board/freescale/common/qixis.h | 13 + > > board/freescale/corenet_ds/rcw_p2041rdb.cfg | 11 + > > board/freescale/p2041rdb/eth.c | 39 - > > board/freescale/p2041rdb/p2041rdb.c | 44 ++ > > board/freescale/t4qds/law.c | 2 +- > > board/freescale/t4qds/t4qds.c | 83 ++- > > board/freescale/t4qds/t4qds.h | 11 - > > board/freescale/t4qds/tlb.c | 2 +- > > boards.cfg | 12 + > > doc/README.b4860qds | 330 +++++++++ > > doc/README.fsl-ddr | 33 +- > > drivers/net/fm/Makefile | 1 + > > drivers/net/fm/b4860.c | 79 +++ > > include/configs/B4860QDS.h | 820 > ++++++++++++++++++++++ > > include/configs/BSC9132QDS.h | 667 > ++++++++++++++++++ > > include/configs/MPC8544DS.h | 12 + > > include/configs/MPC8572DS.h | 2 +- > > include/configs/P2020DS.h | 2 +- > > include/configs/P2041RDB.h | 2 + > > include/configs/t4qds.h | 12 +- > > 57 files changed, 5257 insertions(+), 205 deletions(-) > > create mode 100644 arch/powerpc/cpu/mpc85xx/bsc9132_serdes.c > > create mode 100644 board/freescale/b4860qds/Makefile > > create mode 100644 board/freescale/b4860qds/b4860qds.c > > create mode 100644 board/freescale/b4860qds/b4860qds.h > > create mode 100644 board/freescale/b4860qds/b4860qds_crossbar_con.h > > create mode 100644 board/freescale/b4860qds/b4860qds_qixis.h > > create mode 100644 board/freescale/b4860qds/ddr.c > > create mode 100644 board/freescale/b4860qds/eth_b4860qds.c > > create mode 100644 board/freescale/b4860qds/law.c > > create mode 100644 board/freescale/b4860qds/pci.c > > create mode 100644 board/freescale/b4860qds/tlb.c > > create mode 100644 board/freescale/bsc9132qds/Makefile > > create mode 100644 board/freescale/bsc9132qds/README > > create mode 100644 board/freescale/bsc9132qds/bsc9132qds.c > > create mode 100644 board/freescale/bsc9132qds/ddr.c > > create mode 100644 board/freescale/bsc9132qds/law.c > > create mode 100644 board/freescale/bsc9132qds/tlb.c > > create mode 100644 board/freescale/corenet_ds/rcw_p2041rdb.cfg > > create mode 100644 doc/README.b4860qds > > create mode 100644 drivers/net/fm/b4860.c > > create mode 100644 include/configs/B4860QDS.h > > create mode 100644 include/configs/BSC9132QDS.h > > Applied to u-boot/master, thanks! > > As an aside, will you be doing an MMC review / pull request soon? > There's been a few patches going of late I'd like to see a ack/nak on, > thanks! > > -- > Tom > > _______________________________________________ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > >
_______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot