On Tue, Aug 20, 2013 at 12:46:20PM -0700, York Sun wrote: > 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
I see problems with: P1021RDB-PC_NAND BSC9132QDS_NAND_DDRCLK133 P1025RDB_NAND BSC9131RDB_NAND_SYSCLK100 P1022DS_SDCARD P1010RDB_NAND MPC8313ERDB_NAND_33 P1020RDB-PD_NAND BSC9131RDB_NAND P1022DS_36BIT_SDCARD P1022DS_36BIT_NAND P1022DS_36BIT_SPIFLASH P1022DS_NAND P1020RDB-PC_NAND P1010RDB_36BIT_NAND P1024RDB_NAND BSC9132QDS_NAND_DDRCLK100 P1021RDB-PC_36BIT_NAND P1022DS_SPIFLASH MPC8313ERDB_NAND_66 P2020RDB-PC_NAND P2020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_NAND The problem looks like: cat: /home/trini/work/u-boot/u-boot/powerpc/P2020RDB-PC_NAND//home/trini/work/u-boot/u-boot/powerpc/P2020RDB-PC_NAND/u-boot.bin: No such file or directory So something is off with separate object directories. -- Tom
signature.asc
Description: Digital signature
_______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot