[U-Boot] Please pull u-boot-mpc85xx.git
Tom Rini
trini at ti.com
Sat May 25 20:40:21 CEST 2013
On Fri, May 24, 2013 at 05:17:48PM -0500, Andy Fleming wrote:
> The following changes since commit 53237afe5b64abe7b17fbfed958f3dc83f503ffa:
>
> cmd_mem: fix cp command (2013-05-24 10:38:08 -0400)
>
> are available in the git repository at:
>
> git://www.denx.de/git/u-boot-mpc85xx.git master
>
> for you to fetch changes up to a71d45d706a5b51c348160163b6c159632273fed:
>
> powerpc/mpc85xx: Clear L1 D-cache lock (2013-05-24 16:54:14 -0500)
>
> ----------------------------------------------------------------
> Ed Swarthout (2):
> powerpc/qixis: add clock measurement registers
> powerpc/t4qds: use clock measurement for sysclk and ddr clock
>
> James Yang (2):
> Enable L2 cache parity/ECC error checking
> Add e6500 L2 replacement policy selection
>
> Poonam Aggrwal (1):
> powerpc/B4: Merge B4420 and B4860 in config_mpc85xx.h
>
> Ruchika Gupta (1):
> SECURE BOOT - Removed deletion of TLB entries code
>
> Shaohui Xie (6):
> net/phy: fix select line for TN80xx
> T4240/ramboot: enable PBL tool for T4240
> powerpc/p5040: enable NAND, SD, SPI boot support
> powerpc/p5040: enable PBL tool support
> powerpc/p2041: fix serdes reference clock frequency display for PC board
> powerpc/p5040: fix mdio mux for 10G port
>
> Shaveta Leekha (2):
> powerpc/b4860: fix for Serdes connectivity to SFP's
> powerpc/b4860qds: Add LAW Target ID and Create LAW entry for Maple
>
> Shengzhou Liu (1):
> powerpc/t4240qds: fix PHY reset timeout issue
>
> Stephen George (1):
> board/t4240qds, b4860qds: LAW/TLB for DCSR set to size 32M
>
> Suresh Gupta (1):
> Enable XAUI interface for B4860QDS
>
> Xie Xiaobo (1):
> sf: spansion: Add support for S25FL128S
>
> York Sun (10):
> common: Update cmd_bdinfo for PPC
> powerpc/t4240qds: Add board detail for bdinfo command
> powerpc/mpc85xx: check if core is disabled for showing status
> powerpc/t4240qds: Add VDD override
> powerpc/T4160: Merge T4160 and T4240 in config_mpc85xx.h
> powerpc/mpc8xxx: Add T1040 and variant SoCs
> powerpc/chassis2: Change core numbering scheme
> powerpc/mpc8xxx: Allow DDR overclock
> powerpc/t4qds: Add SW7[4] in the DIP switch display
> powerpc/mpc85xx: Clear L1 D-cache lock
>
> arch/powerpc/cpu/mpc85xx/Makefile | 3 +
> arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 +-
> arch/powerpc/cpu/mpc85xx/cpu_init_early.c | 7 -
> arch/powerpc/cpu/mpc85xx/mp.c | 2 +
> arch/powerpc/cpu/mpc85xx/release.S | 41 +++--
> arch/powerpc/cpu/mpc85xx/speed.c | 20 +--
> arch/powerpc/cpu/mpc85xx/start.S | 4 +-
> arch/powerpc/cpu/mpc85xx/t1040_ids.c | 135 +++++++++++++++
> arch/powerpc/cpu/mpc85xx/t1040_serdes.c | 93 +++++++++++
> arch/powerpc/cpu/mpc8xxx/cpu.c | 59 ++++++-
> .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c | 2 -
> arch/powerpc/include/asm/config_mpc85xx.h | 98 +++++------
> arch/powerpc/include/asm/fsl_law.h | 2 +
> arch/powerpc/include/asm/fsl_secure_boot.h | 10 --
> arch/powerpc/include/asm/fsl_serdes.h | 8 +
> arch/powerpc/include/asm/immap_85xx.h | 29 ++--
> arch/powerpc/include/asm/processor.h | 17 ++
> board/freescale/b4860qds/b4860qds.c | 6 +-
> board/freescale/b4860qds/b4860qds_crossbar_con.h | 31 ++--
> board/freescale/b4860qds/eth_b4860qds.c | 35 ++++
> board/freescale/b4860qds/law.c | 6 +-
> board/freescale/b4860qds/tlb.c | 2 +-
> board/freescale/common/qixis.h | 6 +-
> board/freescale/corenet_ds/eth_superhydra.c | 8 +-
> board/freescale/corenet_ds/rcw_p5040ds.cfg | 11 ++
> board/freescale/p2041rdb/p2041rdb.c | 11 ++
> board/freescale/t4qds/eth.c | 19 ++-
> board/freescale/t4qds/law.c | 3 +-
> board/freescale/t4qds/t4_pbi.cfg | 36 ++++
> board/freescale/t4qds/t4_rcw.cfg | 7 +
> board/freescale/t4qds/t4qds.c | 172 +++++++++++++++++++-
> board/freescale/t4qds/tlb.c | 2 +-
> boards.cfg | 3 +
> common/cmd_bdinfo.c | 5 +
> doc/README.b4860qds | 4 +-
> doc/README.t4240qds | 26 ++-
> drivers/mtd/spi/spansion.c | 2 +-
> drivers/net/fm/b4860.c | 6 +-
> drivers/net/phy/teranetics.c | 16 +-
> include/configs/B4860QDS.h | 16 +-
> include/configs/corenet_ds.h | 2 +
> include/configs/t4qds.h | 3 +-
> 42 files changed, 805 insertions(+), 165 deletions(-)
> create mode 100644 arch/powerpc/cpu/mpc85xx/t1040_ids.c
> create mode 100644 arch/powerpc/cpu/mpc85xx/t1040_serdes.c
> create mode 100644 board/freescale/corenet_ds/rcw_p5040ds.cfg
> create mode 100644 board/freescale/t4qds/t4_pbi.cfg
> create mode 100644 board/freescale/t4qds/t4_rcw.cfg
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130525/910abc36/attachment.pgp>
More information about the U-Boot
mailing list