From: York Sun <yorksun@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request : u-boot-mpc85xx
Date: Tue, 20 Aug 2013 12:46:20 -0700 [thread overview]
Message-ID: <5213C78C.2030302@freescale.com> (raw)
Tom,
The following changes since commit 39bc12ddc36c9e30199471da0f3a929b178a04b2:
SPL: Makefile: Build a separate autoconf.mk for SPL (2013-08-19
18:05:19 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-mpc85xx.git master
for you to fetch changes up to e6394e9e8f83b77b61f0b240fcd39622571be690:
Fix for incorrect conversion hex string to number (FMAN firmware
address). (2013-08-20 11:51:26 -0700)
----------------------------------------------------------------
Prabhakar Kushwaha (1):
powerpc: Fix CamelCase checkpatch warnings
Shaohui Xie (3):
powerpc/common/vsc3316: remove const from vsc3316_config parameter
define
powerpc/t4240: fix lanes routing for QSGMII protocols
powerpc/t4240: add QSGMII interface support
Shengzhou Liu (2):
powerpc/p1010rdb: fix calculating ddr_freq_mhz
powerpc/sec: Add workaround for SEC A-003571
Shruti Kanetkar (2):
powerpc: Use print_size() where appropriate
powerpcv2: Print hardcoded size like print_size() does
Ying Zhang (8):
spl: env_common.c: make CONFIG_SPL_BUILD contain function env_import
powerpc: deleted unused symbol CONFIG_SPL_NAND_MINIMAL and enabled
some functionality for common SPL
powerpc: mpc85xx: Support booting from SD Card with SPL
powerpc: p1022ds: Enable P1022DS to boot from SD Card with SPL
powerpc : spi flash : Support to start from eSPI with SPL
powerpc : p1022ds : Enable p1022ds to start from eSPI with SPL
TPL : introduce the TPL based on the SPL
powerpc: p1022ds: add TPL for p1022ds nand boot
York Sun (1):
SPDX-License-Identifier: clean up license header
??????? ??????? (1):
Fix for incorrect conversion hex string to number (FMAN firmware
address).
Makefile | 50 +++++-
README | 24 +++
arch/powerpc/cpu/mpc824x/cpu.c | 8 +-
arch/powerpc/cpu/mpc85xx/cmd_errata.c | 4 +
arch/powerpc/cpu/mpc85xx/cpu.c | 45 +++---
arch/powerpc/cpu/mpc85xx/cpu_init.c | 32 ++--
arch/powerpc/cpu/mpc85xx/fdt.c | 12 +-
arch/powerpc/cpu/mpc85xx/speed.c | 142 ++++++++---------
arch/powerpc/cpu/mpc85xx/t4240_serdes.c | 14 +-
arch/powerpc/cpu/mpc85xx/tlb.c | 3 +-
arch/powerpc/cpu/mpc85xx/u-boot-spl.lds | 5 +
arch/powerpc/cpu/mpc86xx/cpu.c | 22 +--
arch/powerpc/cpu/mpc86xx/speed.c | 40 ++---
arch/powerpc/cpu/mpc8xx/cpu.c | 24 ++-
arch/powerpc/cpu/mpc8xx/video.c | 4 +-
.../cpu/mpc8xxx/ddr/lc_common_dimm_params.c | 4 +
arch/powerpc/cpu/mpc8xxx/ddr/main.c | 3 +-
arch/powerpc/cpu/mpc8xxx/law.c | 6 +-
arch/powerpc/cpu/ppc4xx/cpu.c | 8 +-
arch/powerpc/include/asm/config_mpc85xx.h | 1 +
board/freescale/b4860qds/b4860qds_crossbar_con.h | 12 +-
board/freescale/common/Makefile | 2 -
board/freescale/common/vsc3316_3308.c | 2 +-
board/freescale/common/vsc3316_3308.h | 2 +-
board/freescale/mpc8540ads/mpc8540ads.c | 2 +-
board/freescale/mpc8541cds/mpc8541cds.c | 2 +-
board/freescale/mpc8555cds/mpc8555cds.c | 2 +-
board/freescale/mpc8560ads/mpc8560ads.c | 2 +-
board/freescale/p1010rdb/spl_minimal.c | 2 +-
board/freescale/p1022ds/Makefile | 3 +
board/freescale/p1022ds/spl.c | 121 ++++++++++++++
board/freescale/p1022ds/spl_minimal.c | 53 +------
board/freescale/p1022ds/tlb.c | 23 ++-
board/freescale/p1_p2_rdb_pc/ddr.c | 2 +-
board/freescale/p1_twr/ddr.c | 2 +-
board/freescale/t4qds/eth.c | 80 +++++++---
board/freescale/t4qds/t4240qds.c | 47 +++++-
board/sbc8548/sbc8548.c | 4 +-
board/socrates/socrates.c | 2 +-
board/xes/xpedite537x/ddr.c | 2 +-
common/env_common.c | 2 -
config.mk | 30 +++-
doc/README.TPL | 45 ++++++
doc/README.mpc85xx-sd-spi-boot | 81 ++++++++++
drivers/mmc/Makefile | 3 +
drivers/mmc/fsl_esdhc_spl.c | 115 ++++++++++++++
drivers/mmc/mmc.c | 2 +
drivers/mtd/nand/Makefile | 1 +
drivers/mtd/nand/fsl_elbc_spl.c | 27 +++-
drivers/mtd/spi/Makefile | 1 +
drivers/mtd/spi/fsl_espi_spl.c | 62 ++++++++
drivers/mtd/spi/spi_flash.c | 2 +
drivers/net/fm/eth.c | 4 +-
drivers/net/fm/memac.c | 1 +
drivers/net/fm/t4240.c | 40 ++++-
drivers/spi/fsl_espi.c | 2 +-
include/configs/MPC8313ERDB.h | 1 -
include/configs/P1022DS.h | 166
++++++++++++++++----
include/configs/p1_p2_rdb_pc.h | 1 -
include/e500.h | 16 +-
include/fsl_esdhc.h | 1 +
include/mpc86xx.h | 6 +-
spl/Makefile | 23 ++-
63 files changed, 1101 insertions(+), 349 deletions(-)
create mode 100644 board/freescale/p1022ds/spl.c
create mode 100644 doc/README.TPL
create mode 100644 doc/README.mpc85xx-sd-spi-boot
create mode 100644 drivers/mmc/fsl_esdhc_spl.c
create mode 100644 drivers/mtd/spi/fsl_espi_spl.c
York
next reply other threads:[~2013-08-20 19:46 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-20 19:46 York Sun [this message]
2013-08-21 13:40 ` [U-Boot] Pull request : u-boot-mpc85xx Tom Rini
2013-08-21 16:10 ` York Sun
-- strict thread matches above, loose matches on Subject: below --
2019-11-07 4:01 [U-Boot] pull request u-boot-mpc85xx 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
2014-01-21 23:07 [U-Boot] Pull " York Sun
2014-01-22 15:33 ` 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-14 19:11 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=5213C78C.2030302@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;
as well as URLs for NNTP newsgroup(s).