Skip to content
Snippets Groups Projects
Commit d97b4ce8 authored by Tom Rini's avatar Tom Rini
Browse files

SPL: NAND: Move arch/arm/cpu/armv7/omap-common/spl_nand.c to common/spl


We move the spl_nand_load_image function to common/spl.  This will allow
for easier integration of SPL-boots-Linux code on other arches.

Signed-off-by: default avatarTom Rini <trini@ti.com>
parent 77552b06
No related branches found
No related tags found
No related merge requests found
...@@ -42,12 +42,6 @@ COBJS += boot-common.o ...@@ -42,12 +42,6 @@ COBJS += boot-common.o
SOBJS += lowlevel_init.o SOBJS += lowlevel_init.o
endif endif
ifdef CONFIG_SPL_BUILD
ifdef CONFIG_SPL_NAND_SUPPORT
COBJS += spl_nand.o
endif
endif
ifndef CONFIG_SPL_BUILD ifndef CONFIG_SPL_BUILD
ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),) ifneq ($(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
COBJS += mem-common.o COBJS += mem-common.o
......
...@@ -16,6 +16,7 @@ LIB = $(obj)libspl.o ...@@ -16,6 +16,7 @@ LIB = $(obj)libspl.o
ifdef CONFIG_SPL_BUILD ifdef CONFIG_SPL_BUILD
COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o
COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o COBJS-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o
COBJS-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o
endif endif
COBJS := $(sort $(COBJS-y)) COBJS := $(sort $(COBJS-y))
......
...@@ -21,12 +21,10 @@ ...@@ -21,12 +21,10 @@
* MA 02111-1307 USA * MA 02111-1307 USA
*/ */
#include <common.h> #include <common.h>
#include <config.h>
#include <spl.h> #include <spl.h>
#include <asm/u-boot.h>
#include <asm/utils.h>
#include <asm/io.h> #include <asm/io.h>
#include <nand.h> #include <nand.h>
#include <version.h>
void spl_nand_load_image(void) void spl_nand_load_image(void)
{ {
...@@ -71,10 +69,10 @@ void spl_nand_load_image(void) ...@@ -71,10 +69,10 @@ void spl_nand_load_image(void)
nand_deselect(); nand_deselect();
return; return;
} else { } else {
printf("The Expected Linux image was not" puts("The Expected Linux image was not "
"found. Please check your NAND" "found. Please check your NAND "
"configuration.\n"); "configuration.\n");
printf("Trying to start u-boot now...\n"); puts("Trying to start u-boot now...\n");
} }
} }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment