diff options
author | Po Liu <po.liu@freescale.com> | 2014-01-10 10:10:58 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-01-21 13:42:01 -0800 |
commit | 6609916efb74724e53db368dd48bfb290d4d9f4c (patch) | |
tree | b3fabb33b4de7f9db70eaa148d760bcb5416f193 /spl | |
parent | 76356eb57cdf607d4e77dd57cd0449d7f5b7bdab (diff) | |
download | u-boot-imx-6609916efb74724e53db368dd48bfb290d4d9f4c.zip u-boot-imx-6609916efb74724e53db368dd48bfb290d4d9f4c.tar.gz u-boot-imx-6609916efb74724e53db368dd48bfb290d4d9f4c.tar.bz2 |
powerpc:mpc85xx: Add ifc nand boot support for TPL/SPL
Using the TPL method for nand boot by sram was already
supported. Here add some code for mpc85xx ifc nand boot.
- For ifc, elbc, esdhc, espi, all need the SPL without
section .resetvec.
- Use a clear function name for nand spl boot.
- Add CONFIG_SPL_DRIVERS_MISC_SUPPORT to compile the fsl_ifc.c
in spl/Makefile;
Signed-off-by: Po Liu <Po.Liu@freescale.com>
Acked-by: Scott Wood <scottwood@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spl/Makefile b/spl/Makefile index 5e5472d..ceb425b 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -72,6 +72,7 @@ LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/ LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/ \ drivers/power/pmic/ LIBS-$(if $(CONFIG_CMD_NAND),$(CONFIG_SPL_NAND_SUPPORT)) += drivers/mtd/nand/ +LIBS-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += drivers/misc/ LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/ LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/ LIBS-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/ |