From 33d346464adb8dc206d1f9adf73bdfe2ed959502 Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Mon, 27 Aug 2012 12:50:59 +0200 Subject: SPL: Add NOR flash booting support SPL NOR flash booting support is quite simple. Only copying of the images is needed. On MPC5xxx we need to make sure to only use the standard memcpy() implementation and not the MPC5xxx specific one. As the MPC5xxx version has some complexity which is not needed for this SPL booting. Signed-off-by: Stefan Roese Signed-off-by: Tom Rini --- include/spl.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/spl.h') diff --git a/include/spl.h b/include/spl.h index 2923cd2a8d..e40538600e 100644 --- a/include/spl.h +++ b/include/spl.h @@ -56,6 +56,9 @@ void spl_display_print(void); /* NAND SPL functions */ void spl_nand_load_image(void); +/* NOR SPL functions */ +void spl_nor_load_image(void); + /* MMC SPL functions */ void spl_mmc_load_image(void); -- cgit v1.2.1