All of lore.kernel.org
 help / color / mirror / Atom feed
From: York Sun <yorksun@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request u-boot-mpc85xx
Date: Tue, 21 Jan 2014 15:07:40 -0800	[thread overview]
Message-ID: <52DEFDBC.3020803@freescale.com> (raw)

Tom,

The following changes since commit b44bd2c73c4cfb6e3b9e7f8cf987e8e39aa74a0b:

  Prepare v2014.01 (2014-01-20 17:52:59 -0500)

are available in the git repository at:

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

for you to fetch changes up to e222b1f36fedb0363dbc21e0add7dc3848bae553:

  powerpc/mpc85xx:Increase binary size for P, B & T series boards. (2014-01-21
14:06:30 -0800)

----------------------------------------------------------------
Po Liu (2):
      powerpc:mpc85xx: Add ifc nand boot support for TPL/SPL
      powerpc/c29xpcie: 8k page size NAND boot support base on TPL/SPL

Prabhakar Kushwaha (2):
      powerpc:Rename CONFIG_PBLRCW_CONFIG & CONFIG_SYS_FSL_PBL_PBI
      powerpc/mpc85xx:Increase binary size for P, B & T series boards.

Priyanka Jain (1):
      powerpc/t1040qds: Update DDR initialization related settings

Ramneek Mehresh (1):
      powerpc/83xx: Add support for get_svr() for 83xx devices

Shengzhou Liu (4):
      powerpc/t2080qds: some update for t2080qds
      powerpc/85xx: update erratum a006379
      t2080qds/ddr: update ddr parameters
      net/fm: revert commit 732dfe090d50af53bb682d0c8971784f8de1f90f

York Sun (2):
      powerpc/mpc85xx: Fix a typo in workaround message for DDR erratum A003474
      powerpc/mpc85xx: Revise workaround for DDR-A003

 Makefile                                    |    4 +-
 README                                      |    9 ++
 arch/powerpc/cpu/mpc83xx/start.S            |    5 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c       |    2 +-
 arch/powerpc/cpu/mpc85xx/u-boot-spl.lds     |   15 +--
 arch/powerpc/include/asm/fsl_errata.h       |    6 +-
 board/freescale/c29xpcie/Makefile           |   15 +++
 board/freescale/c29xpcie/README             |   12 +--
 board/freescale/c29xpcie/cpld.c             |    2 +
 board/freescale/c29xpcie/spl.c              |   77 +++++++++++++++
 board/freescale/c29xpcie/spl_minimal.c      |   63 ++++++++++++
 board/freescale/c29xpcie/tlb.c              |   13 ++-
 board/freescale/p1010rdb/README.P1010RDB-PA |   12 +--
 board/freescale/p1010rdb/README.P1010RDB-PB |    4 +-
 board/freescale/p1023rds/README             |    4 +-
 board/freescale/p1_p2_rdb/README            |   12 +--
 board/freescale/p2041rdb/README             |   12 +--
 board/freescale/t1040qds/README             |   12 +--
 board/freescale/t1040qds/ddr.h              |   22 +++--
 board/freescale/t104xrdb/README             |   12 +--
 board/freescale/t2080qds/ddr.c              |   12 +--
 board/freescale/t2080qds/ddr.h              |   65 +++++--------
 board/freescale/t2080qds/eth_t2080qds.c     |   12 ++-
 board/freescale/t2080qds/t2080qds.c         |   66 +++++++++++--
 boards.cfg                                  |   67 ++++++-------
 doc/README.SPL                              |    1 +
 doc/README.b4860qds                         |   12 +--
 drivers/ddr/fsl/mpc85xx_ddr_gen3.c          |   69 +++++++++++++-
 drivers/mtd/nand/fsl_ifc_spl.c              |   31 ++++--
 drivers/net/fm/init.c                       |   53 +---------
 drivers/net/fm/t2080.c                      |   10 +-
 include/configs/B4860QDS.h                  |   12 +--
 include/configs/BSC9131RDB.h                |    6 +-
 include/configs/BSC9132QDS.h                |   17 ++--
 include/configs/C29XPCIE.h                  |  138 +++++++++++++++++++++++++--
 include/configs/P1010RDB.h                  |   16 ++--
 include/configs/P1022DS.h                   |   12 +--
 include/configs/P1023RDB.h                  |    8 +-
 include/configs/P1023RDS.h                  |   12 +--
 include/configs/P1_P2_RDB.h                 |   14 +--
 include/configs/P2020DS.h                   |   10 +-
 include/configs/P2041RDB.h                  |   21 ++--
 include/configs/T1040QDS.h                  |   26 ++---
 include/configs/T1040RDB.h                  |   16 ++--
 include/configs/T1042RDB_PI.h               |   16 ++--
 include/configs/T2080QDS.h                  |   20 ++--
 include/configs/T4240EMU.h                  |    4 +-
 include/configs/T4240QDS.h                  |   18 ++--
 include/configs/corenet_ds.h                |   30 +++---
 include/configs/km/kmp204x-common.h         |    4 +-
 include/configs/p1_p2_rdb_pc.h              |   12 +--
 include/configs/p1_twr.h                    |    8 +-
 include/configs/t4qds.h                     |    2 +-
 spl/Makefile                                |    1 +
 54 files changed, 742 insertions(+), 392 deletions(-)
 create mode 100644 board/freescale/c29xpcie/spl.c
 create mode 100644 board/freescale/c29xpcie/spl_minimal.c

Thanks,

York

             reply	other threads:[~2014-01-21 23:07 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-21 23:07 York Sun [this message]
2014-01-22 15:33 ` [U-Boot] Pull request u-boot-mpc85xx Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2019-11-07  4:01 [U-Boot] pull " Priyanka Jain
2019-11-07 17:31 ` Tom Rini
2019-11-20  5:45 ` Priyanka Jain
2019-11-20 22:43   ` Tom Rini
2019-11-26  4:49   ` Priyanka Jain
2019-12-02 15:15     ` Tom Rini
2013-09-12 17:36 [U-Boot] Pull request: u-boot-mpc85xx York Sun
2013-09-14  1:26 ` Tom Rini
2013-08-21 17:28 York Sun
2013-08-22 15:18 ` Tom Rini
2013-08-20 19:46 [U-Boot] Pull request : u-boot-mpc85xx York Sun
2013-08-21 13:40 ` Tom Rini
2013-08-21 16:10   ` York Sun
2013-08-14 19:11 [U-Boot] Pull request: u-boot-mpc85xx York Sun
2013-08-16 13:35 ` Tom Rini
2013-08-12 22:43 York Sun
2013-08-13 15:38 ` 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=52DEFDBC.3020803@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.