[U-Boot] Please pull u-boot-mpc85xx/master

Tom Rini trini at ti.com
Sat Mar 8 02:54:59 CET 2014


On Fri, Mar 07, 2014 at 03:09:23PM -0800, York Sun wrote:

> Tom,
> 
> The following changes since commit e4b87e5b1d026bd010e2ba3abbf89561e8320287:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-nand-flash (2014-03-04
> 21:23:42 -0500)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-mpc85xx.git master
> 
> for you to fetch changes up to 96ac18c9ccc77c7f57dff5651b34a3cc914c8abd:
> 
>   powerpc/t104xrdb: Update DDR initialization related settings (2014-03-07
> 14:53:48 -0800)
> 
> ----------------------------------------------------------------
> Mela Custodio (1):
>       bootstage: powerpc: support fdt stash and reporting
> 
> Priyanka Jain (3):
>       powerpc/mpc85xx: Add SCFG_PIXCLKCR register support for T1040
>       powerpc/t1040qds: Add Video - HDMI support
>       powerpc/t104xrdb: Update DDR initialization related settings
> 
> Shaveta Leekha (5):
>       board/b4860qds: Add support to make Aurora work on B4860QDS
>       board/b4860qds: Add support to make PCIe SATA work on B4860QDS
>       B4860/B4420: Add PLL_NUM define for B4420/B4860 to use SerDes2 Refclks
> re-configuration
>       B4860qds: Set SerDes2 refclk2 at to 156.25MHz for XFI to work
>       powerpc/b4860: Add workaround for errata A006384 and A006475
> 
> Shengzhou Liu (2):
>       powerpc/t208xqds: fixup for t208xqds
>       powerpc/t2080rdb: Add T2080PCIe-RDB board support
> 
> Suresh Gupta (1):
>       powerpc/usb: Workaround for erratum-A006261
> 
> poonam aggrwal (1):
>       85xx/b4860: Alternate serdes protocols for B4860/B4420
> 
>  arch/powerpc/cpu/mpc85xx/b4860_serdes.c          |   61 ++
>  arch/powerpc/cpu/mpc85xx/cmd_errata.c            |   12 +
>  arch/powerpc/cpu/mpc85xx/cpu_init.c              |   62 ++
>  arch/powerpc/include/asm/config_mpc85xx.h        |   11 +
>  arch/powerpc/include/asm/fsl_errata.h            |   34 +
>  arch/powerpc/include/asm/immap_85xx.h            |   31 +-
>  arch/powerpc/lib/bootm.c                         |    7 +
>  board/freescale/b4860qds/b4860qds.c              |  392 ++++++++++-
>  board/freescale/b4860qds/b4860qds_crossbar_con.h |    8 +
>  board/freescale/b4860qds/eth_b4860qds.c          |    5 +
>  board/freescale/t1040qds/Makefile                |    1 +
>  board/freescale/t1040qds/diu.c                   |  215 ++++++
>  board/freescale/t1040qds/t1040qds.h              |    1 +
>  board/freescale/t1040qds/t1040qds_qixis.h        |   12 +
>  board/freescale/t104xrdb/ddr.c                   |   13 +-
>  board/freescale/t104xrdb/ddr.h                   |   38 +-
>  board/freescale/t208xqds/eth_t208xqds.c          |    3 +-
>  board/freescale/t208xrdb/Makefile                |   13 +
>  board/freescale/t208xrdb/README                  |  208 ++++++
>  board/freescale/t208xrdb/cpld.c                  |   71 ++
>  board/freescale/t208xrdb/cpld.h                  |   42 ++
>  board/freescale/t208xrdb/ddr.c                   |  112 ++++
>  board/freescale/t208xrdb/ddr.h                   |   47 ++
>  board/freescale/t208xrdb/eth_t208xrdb.c          |  106 +++
>  board/freescale/t208xrdb/law.c                   |   34 +
>  board/freescale/t208xrdb/pci.c                   |   23 +
>  board/freescale/t208xrdb/t2080_pbi.cfg           |   41 ++
>  board/freescale/t208xrdb/t2080_rcw.cfg           |    8 +
>  board/freescale/t208xrdb/t208xrdb.c              |  124 ++++
>  board/freescale/t208xrdb/t208xrdb.h              |   13 +
>  board/freescale/t208xrdb/tlb.c                   |  151 +++++
>  boards.cfg                                       |    5 +
>  include/configs/T1040QDS.h                       |   27 +-
>  include/configs/T1040RDB.h                       |    2 +-
>  include/configs/T1042RDB_PI.h                    |    2 +-
>  include/configs/T208xQDS.h                       |    2 +-
>  include/configs/T208xRDB.h                       |  779 ++++++++++++++++++++++
>  include/fsl_usb.h                                |   23 +-
>  38 files changed, 2687 insertions(+), 52 deletions(-)
>  create mode 100644 board/freescale/t1040qds/diu.c
>  create mode 100644 board/freescale/t208xrdb/Makefile
>  create mode 100644 board/freescale/t208xrdb/README
>  create mode 100644 board/freescale/t208xrdb/cpld.c
>  create mode 100644 board/freescale/t208xrdb/cpld.h
>  create mode 100644 board/freescale/t208xrdb/ddr.c
>  create mode 100644 board/freescale/t208xrdb/ddr.h
>  create mode 100644 board/freescale/t208xrdb/eth_t208xrdb.c
>  create mode 100644 board/freescale/t208xrdb/law.c
>  create mode 100644 board/freescale/t208xrdb/pci.c
>  create mode 100644 board/freescale/t208xrdb/t2080_pbi.cfg
>  create mode 100644 board/freescale/t208xrdb/t2080_rcw.cfg
>  create mode 100644 board/freescale/t208xrdb/t208xrdb.c
>  create mode 100644 board/freescale/t208xrdb/t208xrdb.h
>  create mode 100644 board/freescale/t208xrdb/tlb.c
>  create mode 100644 include/configs/T208xRDB.h

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/20140307/b01c1c4f/attachment.pgp>


More information about the U-Boot mailing list