]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
powerpc: p1010rdb: Enable p1010rdb to start from NAND/SD/SPI flash with SPL
authorYing Zhang <b40530@freescale.com>
Fri, 24 Jan 2014 07:50:09 +0000 (15:50 +0800)
committerYork Sun <yorksun@freescale.com>
Mon, 24 Feb 2014 23:23:32 +0000 (15:23 -0800)
commitc9e1f58818c2e6ac13296406125e43775c4daa55
tree38b8acc431f6375cff8b7bc2eeaf2d4fe2bc756d
parent27585bd3572f2743fef87adebd9e48b33483c4be
powerpc: p1010rdb: Enable p1010rdb to start from NAND/SD/SPI flash with SPL

In the previous patches, we introduced the SPL/TPL fraamework.
For SD/SPI flash booting way, we introduce the SPL to enable a loader stub. The
SPL was loaded by the code from the internal on-chip ROM. The SPL initializes
the DDR according to the SPD and loads the final uboot image into DDR, then
jump to the DDR to begin execution.

For NAND booting way, the nand SPL has size limitation on some board(e.g.
P1010RDB), it can not be more than 8KB, we can call it "minimal SPL", So the
dynamic DDR driver doesn't fit into this minimum SPL. We added the TPL that is
loaded by the the minimal SPL. The TPL initializes the DDR according to the SPD
and loads the final uboot image into DDR,then jump to the DDR to begin execution.

This patch enabled SPL/TPL for P1010RDB to support starting from NAND/SD/SPI
flash with SPL framework and initializing the DDR according to SPD in the SPL/TPL.
Because the minimal SPL load the TPL to L2 SRAM and the jump to the L2 SRAM to
execute, so the section .resetvec is no longer needed.

Signed-off-by: Ying Zhang <b40530@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
board/freescale/p1010rdb/Makefile
board/freescale/p1010rdb/spl.c [new file with mode: 0644]
board/freescale/p1010rdb/spl_minimal.c
board/freescale/p1010rdb/tlb.c
include/configs/P1010RDB.h