diff options
author | Ying Zhang | 2013-08-16 15:16:11 +0800 |
---|---|---|
committer | York Sun | 2013-08-20 09:47:26 -0700 |
commit | bb0dc1084f5dcf1dfd951d320c932d08bccbe429 (patch) | |
tree | ba59aece0acb35211a67f503e25cac3111788fc4 /spl/Makefile | |
parent | 0151d99d74ec4b8a33133acf94ebcd25d717dfd7 (diff) |
powerpc: mpc85xx: Support booting from SD Card with SPL
The code from the internal on-chip ROM. It loads the final uboot image
into DDR, then jump to it to begin execution.
The SPL's size is sizeable, the maximum size must not exceed the size of L2
SRAM. It initializes the DDR through SPD code, and copys final uboot image
to DDR. So there are two stage uboot images:
* spl_boot, 96KB size. The env variables are copied to L2 SRAM, so that
ddr spd code can get the interleaving mode setting in env. It loads
final uboot image from offset 96KB.
* final uboot image, size is variable depends on the functions enabled.
Signed-off-by: Ying Zhang <b40530@freescale.com>
Acked-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'spl/Makefile')
-rw-r--r-- | spl/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/spl/Makefile b/spl/Makefile index 02f48607558..a9a8564f62c 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -50,6 +50,9 @@ LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o endif ifeq ($(CPU),mpc85xx) LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o +ifdef CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT +LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o +endif endif ifeq ($(CPU),mpc86xx) LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |