diff options
author | Enric Balletbo i Serra | 2013-02-07 23:14:48 +0000 |
---|---|---|
committer | Tom Rini | 2013-03-11 11:05:49 -0400 |
commit | 6000992e265f507a18b0dcbcf2a89179822b42c4 (patch) | |
tree | d82925cbd37b98c2bc1e7d6f6cb035391eea3476 /include | |
parent | f99613782a41dbf1b91c19684fe9556ed02ec6d1 (diff) |
SPL: ONENAND: Support SPL to boot u-boot from OneNAND.
This patch will allow use SPL to boot an u-boot from the OneNAND.
Tested with IGEPv2 board with a OneNAND from Numonyx
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
[trini: Add <spl.h> hunk to fix warning]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/spl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/spl.h b/include/spl.h index b02f36fa941..b40be8039c0 100644 --- a/include/spl.h +++ b/include/spl.h @@ -59,6 +59,9 @@ void spl_display_print(void); /* NAND SPL functions */ void spl_nand_load_image(void); +/* OneNAND SPL functions */ +void spl_onenand_load_image(void); + /* NOR SPL functions */ void spl_nor_load_image(void); |