[U-Boot] Please pull u-boot-mpc85xx.git

The following changes since commit 63216de13488e8bc81afb53d0f5177142ee34ceb:
omap5_uevm: Enable redundant MMC environment (2013-05-01 16:41:10 -0400)
are available in the git repository at:
git://www.denx.de/git/u-boot-mpc85xx.git master
for you to fetch changes up to 9e186857c7f99600808b8ecb2fc0fa2adeddebaa:
powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards (2013-05-02 16:57:34 -0500)
Apologies for the long absense. I got buried in large amounts of work. This is not all of the outstanding 85xx patches, but I intend to now switch and apply a bunch of my MMC backlog.
---------------------------------------------------------------- Cristian Sovaiala (1): powerpc/mpc85xx: Changed LIODN offset values
Dongsheng.wang@freescale.com (1): powerpc/mpc85xx: add setting of clock-frequency for mpic node
Horst Kronstorfer (1): mpc85xx: Fix a compiler warning when CONFIG_WATCHDOG is turned on
Jeffrey Ladouceur (1): powerpc/mpc85xx: Add revision properties in portal device tree node 'pme'
Jiang Bin (1): board/freescale/common/cds_pci_ft.c: Fix rotate wrong cells in interrupt-map property
Liu Gang (2): powerpc/b4: Fix the wrong register offset of B4 PCIE module powerpc/b4860qds: Add the tlb entries for SRIO interfaces
Matthew McClintock (1): powerpc/p1022ds: Add support for NAND and NAND boot using SPL
Poonam Aggrwal (1): doc/ramboot.mpc85xx: Documented the RAMBOOT for MPC85xx
Prabhakar Kushwaha (1): powerpc/mpc85xx:IFC Errata A003399 is not valid for BSC913x
Shaohui Xie (1): powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards
Shengzhou Liu (3): powerpc/b4860: Adding workaround errata A-005871 powerpc/p1010rdb: Change flexcan compatible string powerpc/p1010rdb: add readme document for p1010rdb
Tang Yuantian (1): powerpc/mpc85xx: set clock-frequency for T4/B4 clockgen node
Timur Tabi (1): powerpc/85xx: add SerDes bank 4 lanes
Xu Jiucheng (1): powerpc/p1_p2_rdb_pc: Add a pin to reset the DDR chip for P1021RDB-PC
Xulei (1): powerpc/85xx: Add workaround for errata USB-14 (enable on P204x/P3041/P50x0)
York Sun (1): powerpc/mpc85xx: Extend workaround for erratum DDR_A003 to other SoCs
Zang Roy-R61911 (1): fman/mEMAC: set SETSP bit in IF_MODE regisgter for RGMII speed
Zhicheng Fan (1): qoriq/p1_p2_rdb_pc: USB device-tree fixups for P1020
arch/powerpc/cpu/mpc85xx/cmd_errata.c | 3 + arch/powerpc/cpu/mpc85xx/cpu.c | 18 ++- arch/powerpc/cpu/mpc85xx/cpu_init.c | 14 ++ arch/powerpc/cpu/mpc85xx/fdt.c | 7 + arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 4 + arch/powerpc/cpu/mpc85xx/p2041_ids.c | 20 +-- arch/powerpc/cpu/mpc85xx/p3041_ids.c | 20 +-- arch/powerpc/cpu/mpc85xx/p5020_ids.c | 20 +-- arch/powerpc/cpu/mpc85xx/portals.c | 20 ++- arch/powerpc/include/asm/config_mpc85xx.h | 12 +- arch/powerpc/include/asm/fsl_memac.h | 4 + arch/powerpc/include/asm/immap_85xx.h | 12 +- board/freescale/b4860qds/tlb.c | 19 ++- board/freescale/common/Makefile | 6 + board/freescale/common/cds_pci_ft.c | 26 +++- board/freescale/p1010rdb/p1010rdb.c | 2 +- board/freescale/p1022ds/Makefile | 14 ++ board/freescale/p1022ds/law.c | 1 + board/freescale/p1022ds/spl_minimal.c | 129 ++++++++++++++++ board/freescale/p1022ds/tlb.c | 20 ++- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 66 +++++++- board/freescale/p1_p2_rdb_pc/spl_minimal.c | 15 ++ boards.cfg | 2 + doc/README.p1010rdb | 199 +++++++++++++++++++++++++ doc/README.ramboot-ppc85xx | 102 +++++++++++++ drivers/net/fm/memac.c | 17 +++ include/configs/P1022DS.h | 132 ++++++++++++++-- include/configs/corenet_ds.h | 1 + 28 files changed, 833 insertions(+), 72 deletions(-) create mode 100644 board/freescale/p1022ds/spl_minimal.c create mode 100644 doc/README.p1010rdb create mode 100644 doc/README.ramboot-ppc85xx

With the u-boot-with-spl.bin rule calling $(OBJCOPY) with CONFIG_SPL_PAD_TO, and CONFIG_SPL_PAD_TO defaulting to CONFIG_SPL_MAX_SIZE we cannot use math here, so set it to 4096 rather than 4 * 1024.
Signed-off-by: Tom Rini trini@ti.com --- include/configs/P1022DS.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/P1022DS.h b/include/configs/P1022DS.h index b282e7b..8b13b10 100644 --- a/include/configs/P1022DS.h +++ b/include/configs/P1022DS.h @@ -47,7 +47,7 @@
#define CONFIG_SYS_TEXT_BASE 0x00201000 #define CONFIG_SPL_TEXT_BASE 0xfffff000 -#define CONFIG_SPL_MAX_SIZE (4 * 1024) +#define CONFIG_SPL_MAX_SIZE 4096 #define CONFIG_SPL_RELOC_TEXT_BASE 0x00100000 #define CONFIG_SPL_RELOC_STACK 0x00100000 #define CONFIG_SYS_NAND_U_BOOT_SIZE ((512 << 10) + CONFIG_SPL_MAX_SIZE)

On Thu, May 02, 2013 at 06:15:46PM -0500, Andy Fleming wrote:
The following changes since commit 63216de13488e8bc81afb53d0f5177142ee34ceb:
omap5_uevm: Enable redundant MMC environment (2013-05-01 16:41:10 -0400)
are available in the git repository at:
git://www.denx.de/git/u-boot-mpc85xx.git master
for you to fetch changes up to 9e186857c7f99600808b8ecb2fc0fa2adeddebaa:
powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards (2013-05-02 16:57:34 -0500)
Apologies for the long absense. I got buried in large amounts of work. This is not all of the outstanding 85xx patches, but I intend to now switch and apply a bunch of my MMC backlog.
Cristian Sovaiala (1): powerpc/mpc85xx: Changed LIODN offset values
Dongsheng.wang@freescale.com (1): powerpc/mpc85xx: add setting of clock-frequency for mpic node
Horst Kronstorfer (1): mpc85xx: Fix a compiler warning when CONFIG_WATCHDOG is turned on
Jeffrey Ladouceur (1): powerpc/mpc85xx: Add revision properties in portal device tree node 'pme'
Jiang Bin (1): board/freescale/common/cds_pci_ft.c: Fix rotate wrong cells in interrupt-map property
Liu Gang (2): powerpc/b4: Fix the wrong register offset of B4 PCIE module powerpc/b4860qds: Add the tlb entries for SRIO interfaces
Matthew McClintock (1): powerpc/p1022ds: Add support for NAND and NAND boot using SPL
Poonam Aggrwal (1): doc/ramboot.mpc85xx: Documented the RAMBOOT for MPC85xx
Prabhakar Kushwaha (1): powerpc/mpc85xx:IFC Errata A003399 is not valid for BSC913x
Shaohui Xie (1): powerpc/85xx: set USB2 default mode to 'device' for (super)hydra boards
Shengzhou Liu (3): powerpc/b4860: Adding workaround errata A-005871 powerpc/p1010rdb: Change flexcan compatible string powerpc/p1010rdb: add readme document for p1010rdb
Tang Yuantian (1): powerpc/mpc85xx: set clock-frequency for T4/B4 clockgen node
Timur Tabi (1): powerpc/85xx: add SerDes bank 4 lanes
Xu Jiucheng (1): powerpc/p1_p2_rdb_pc: Add a pin to reset the DDR chip for P1021RDB-PC
Xulei (1): powerpc/85xx: Add workaround for errata USB-14 (enable on P204x/P3041/P50x0)
York Sun (1): powerpc/mpc85xx: Extend workaround for erratum DDR_A003 to other SoCs
Zang Roy-R61911 (1): fman/mEMAC: set SETSP bit in IF_MODE regisgter for RGMII speed
Zhicheng Fan (1): qoriq/p1_p2_rdb_pc: USB device-tree fixups for P1020
arch/powerpc/cpu/mpc85xx/cmd_errata.c | 3 + arch/powerpc/cpu/mpc85xx/cpu.c | 18 ++- arch/powerpc/cpu/mpc85xx/cpu_init.c | 14 ++ arch/powerpc/cpu/mpc85xx/fdt.c | 7 + arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c | 4 + arch/powerpc/cpu/mpc85xx/p2041_ids.c | 20 +-- arch/powerpc/cpu/mpc85xx/p3041_ids.c | 20 +-- arch/powerpc/cpu/mpc85xx/p5020_ids.c | 20 +-- arch/powerpc/cpu/mpc85xx/portals.c | 20 ++- arch/powerpc/include/asm/config_mpc85xx.h | 12 +- arch/powerpc/include/asm/fsl_memac.h | 4 + arch/powerpc/include/asm/immap_85xx.h | 12 +- board/freescale/b4860qds/tlb.c | 19 ++- board/freescale/common/Makefile | 6 + board/freescale/common/cds_pci_ft.c | 26 +++- board/freescale/p1010rdb/p1010rdb.c | 2 +- board/freescale/p1022ds/Makefile | 14 ++ board/freescale/p1022ds/law.c | 1 + board/freescale/p1022ds/spl_minimal.c | 129 ++++++++++++++++ board/freescale/p1022ds/tlb.c | 20 ++- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 66 +++++++- board/freescale/p1_p2_rdb_pc/spl_minimal.c | 15 ++ boards.cfg | 2 + doc/README.p1010rdb | 199 +++++++++++++++++++++++++ doc/README.ramboot-ppc85xx | 102 +++++++++++++ drivers/net/fm/memac.c | 17 +++ include/configs/P1022DS.h | 132 ++++++++++++++-- include/configs/corenet_ds.h | 1 + 28 files changed, 833 insertions(+), 72 deletions(-) create mode 100644 board/freescale/p1022ds/spl_minimal.c create mode 100644 doc/README.p1010rdb create mode 100644 doc/README.ramboot-ppc85xx
With the patch I just sent to fix P1022DS as well, applied to u-boot/master, thanks!

include/configs/P1022DS.h | 132 ++++++++++++++-- include/configs/corenet_ds.h | 1 + 28 files changed, 833 insertions(+), 72 deletions(-) create mode 100644 board/freescale/p1022ds/spl_minimal.c create mode 100644 doc/README.p1010rdb create mode 100644 doc/README.ramboot-ppc85xx
With the patch I just sent to fix P1022DS as well, applied to u-boot/master, thanks!
Ah, nice catch, thanks!
Andy
participants (3)
-
Andy Fleming
-
Fleming Andy-AFLEMING
-
Tom Rini