public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-mpc85xx/master
@ 2014-03-07 23:09 York Sun
  2014-03-08  1:54 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2014-03-07 23:09 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [U-Boot] Please pull u-boot-mpc85xx/master
@ 2013-12-11 19:22 York Sun
  2013-12-12  1:36 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2013-12-11 19:22 UTC (permalink / raw)
  To: u-boot

Tom,

The following changes since commit 4b210ad34282bfd9fc982a8e3c9a9126f4094cdb:

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2013-12-10
17:15:18 -0500)

are available in the git repository at:


  git://git.denx.de/u-boot-mpc85xx.git master

for you to fetch changes up to e03c76c30342797a25ef9350e51c8daa0b56f1df:

  powerpc/mpc85xx: Update CONFIG_SYS_FSL_TBCLK_DIV for T1040 (2013-12-11
11:12:54 -0800)

----------------------------------------------------------------
Claudiu Manoil (1):
      powerpc/p1_p2_rdb_pc: Fix warnings for __iomem pointers

Prabhakar Kushwaha (1):
      powerpc/mpc85xx: Update CONFIG_SYS_FSL_TBCLK_DIV for T1040

Shaohui Xie (1):
      powerpc/t4240: Add a frequency setting case for fman1

Shengzhou Liu (1):
      net/fman: add ft_fixup_xgec to support 3rd and 4th 10GEC

 arch/powerpc/cpu/mpc85xx/speed.c            |    3 ++
 arch/powerpc/include/asm/config_mpc85xx.h   |    2 +-
 board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c |    4 +-
 drivers/net/fm/init.c                       |   53
++++++++++++++++++++++++++-
 4 files changed, 58 insertions(+), 4 deletions(-)

Thanks,

York

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [U-Boot] Please pull u-boot-mpc85xx/master
@ 2013-12-04 23:47 York Sun
  2013-12-06 13:32 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2013-12-04 23:47 UTC (permalink / raw)
  To: u-boot

Tom,

The following changes since commit f44483b57c49282299da0e5c10073b909cdad979:

  Merge branch 'serial' of git://git.denx.de/u-boot-microblaze
(2013-12-02 08:48:02 -0500)

are available in the git repository at:


  git://git.denx.de/u-boot-mpc85xx.git master

for you to fetch changes up to 1df99080cb6dea9216ee1925f03bd7cc35dc34c7:

  powerpc/mpc8349: Use generic mpc85xx DDR driver (2013-12-04 14:55:05
-0800)

----------------------------------------------------------------
Dave Liu (1):
      powerpc/corenet: CPC1 speculation disable

Po Liu (1):
      powerpc/c29xpcie: Getting DDR SPD image from 16-bit sub-address EEPROM

Priyanka Jain (1):
      powerpc: spiflash:Add corenet devices support in eSPI SPL

Shengzhou Liu (1):
      powerpc/t2080qds: undef CONFIG_FSL_DDR_INTERACTIVE

York Sun (1):
      powerpc/mpc8349: Use generic mpc85xx DDR driver

Zang Roy-R61911 (1):
      T4240: Address T4240/T4160 Rev2.0 DDR clock change

Zhao Qiang (1):
      powerpc/p1010rdb:modify the mtest start_address

 arch/powerpc/cpu/mpc83xx/Makefile |    4 +---
 arch/powerpc/cpu/mpc85xx/speed.c  |    8 ++++++++
 arch/powerpc/cpu/mpc85xx/start.S  |    4 ++++
 board/freescale/c29xpcie/ddr.c    |   13 +++++++++++++
 drivers/mtd/spi/fsl_espi_spl.c    |    5 +++++
 include/configs/MPC8349EMDS.h     |    1 +
 include/configs/P1010RDB.h        |    2 +-
 include/configs/T2080QDS.h        |    2 +-
 8 files changed, 34 insertions(+), 5 deletions(-)

Thanks,

York

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-03-08  1:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-07 23:09 [U-Boot] Please pull u-boot-mpc85xx/master York Sun
2014-03-08  1:54 ` 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox