public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: York Sun <yorksun@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-mpc85xx/master
Date: Fri, 7 Mar 2014 15:09:23 -0800	[thread overview]
Message-ID: <531A51A3.7050301@freescale.com> (raw)

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

Thanks,

York

             reply	other threads:[~2014-03-07 23:09 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-07 23:09 York Sun [this message]
2014-03-08  1:54 ` [U-Boot] Please pull u-boot-mpc85xx/master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2013-12-11 19:22 York Sun
2013-12-12  1:36 ` Tom Rini
2013-12-04 23:47 York Sun
2013-12-06 13:32 ` Tom Rini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=531A51A3.7050301@freescale.com \
    --to=yorksun@freescale.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox