Enric Balletbo i Serra | 6000992 | 2013-02-07 23:14:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 |
| 3 | * ISEE 2007 SL - Enric Balletbo i Serra <eballetbo@iseebcn.com> |
| 4 | * |
| 5 | * Based on common/spl/spl_nand.c |
| 6 | * Copyright (C) 2011 |
| 7 | * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de> |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Enric Balletbo i Serra | 6000992 | 2013-02-07 23:14:48 +0000 | [diff] [blame] | 10 | */ |
| 11 | #include <common.h> |
| 12 | #include <config.h> |
| 13 | #include <spl.h> |
| 14 | #include <asm/io.h> |
| 15 | #include <onenand_uboot.h> |
| 16 | |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 17 | static int spl_onenand_load_image(struct spl_image_info *spl_image, |
| 18 | struct spl_boot_device *bootdev) |
Enric Balletbo i Serra | 6000992 | 2013-02-07 23:14:48 +0000 | [diff] [blame] | 19 | { |
| 20 | struct image_header *header; |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 21 | int ret; |
Enric Balletbo i Serra | 6000992 | 2013-02-07 23:14:48 +0000 | [diff] [blame] | 22 | |
| 23 | debug("spl: onenand\n"); |
| 24 | |
| 25 | /*use CONFIG_SYS_TEXT_BASE as temporary storage area */ |
| 26 | header = (struct image_header *)(CONFIG_SYS_TEXT_BASE); |
| 27 | /* Load u-boot */ |
| 28 | onenand_spl_load_image(CONFIG_SYS_ONENAND_U_BOOT_OFFS, |
| 29 | CONFIG_SYS_ONENAND_PAGE_SIZE, (void *)header); |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 30 | ret = spl_parse_image_header(spl_image, header); |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 31 | if (ret) |
| 32 | return ret; |
Enric Balletbo i Serra | 6000992 | 2013-02-07 23:14:48 +0000 | [diff] [blame] | 33 | onenand_spl_load_image(CONFIG_SYS_ONENAND_U_BOOT_OFFS, |
Simon Glass | 2a2ee2a | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 34 | spl_image->size, (void *)spl_image->load_addr); |
Nikita Kiryanov | 36afd45 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 35 | |
| 36 | return 0; |
Enric Balletbo i Serra | 6000992 | 2013-02-07 23:14:48 +0000 | [diff] [blame] | 37 | } |
Simon Glass | afa6e6c | 2016-09-24 18:20:03 -0600 | [diff] [blame] | 38 | /* Use priorty 1 so that Ubi can override this */ |
| 39 | SPL_LOAD_IMAGE_METHOD(1, BOOT_DEVICE_ONENAND, spl_onenand_load_image); |