2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2013-02-07 23:14:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013
|
|
|
|
* ISEE 2007 SL - Enric Balletbo i Serra <eballetbo@iseebcn.com>
|
|
|
|
*
|
|
|
|
* Based on common/spl/spl_nand.c
|
|
|
|
* Copyright (C) 2011
|
|
|
|
* Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <config.h>
|
2020-05-10 17:40:01 +00:00
|
|
|
#include <image.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2013-02-07 23:14:48 +00:00
|
|
|
#include <spl.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <onenand_uboot.h>
|
|
|
|
|
2016-09-25 00:20:13 +00:00
|
|
|
static int spl_onenand_load_image(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
2013-02-07 23:14:48 +00:00
|
|
|
{
|
|
|
|
struct image_header *header;
|
2016-04-28 22:44:54 +00:00
|
|
|
int ret;
|
2013-02-07 23:14:48 +00:00
|
|
|
|
|
|
|
debug("spl: onenand\n");
|
|
|
|
|
2018-08-14 09:27:02 +00:00
|
|
|
header = spl_get_load_buffer(0, CONFIG_SYS_ONENAND_PAGE_SIZE);
|
2013-02-07 23:14:48 +00:00
|
|
|
/* Load u-boot */
|
|
|
|
onenand_spl_load_image(CONFIG_SYS_ONENAND_U_BOOT_OFFS,
|
|
|
|
CONFIG_SYS_ONENAND_PAGE_SIZE, (void *)header);
|
2016-09-25 00:20:13 +00:00
|
|
|
ret = spl_parse_image_header(spl_image, header);
|
2016-04-28 22:44:54 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2013-02-07 23:14:48 +00:00
|
|
|
onenand_spl_load_image(CONFIG_SYS_ONENAND_U_BOOT_OFFS,
|
2016-09-25 00:20:13 +00:00
|
|
|
spl_image->size, (void *)spl_image->load_addr);
|
2015-11-08 15:11:49 +00:00
|
|
|
|
|
|
|
return 0;
|
2013-02-07 23:14:48 +00:00
|
|
|
}
|
2016-09-25 00:20:03 +00:00
|
|
|
/* Use priorty 1 so that Ubi can override this */
|
2016-11-30 22:30:50 +00:00
|
|
|
SPL_LOAD_IMAGE_METHOD("OneNAND", 1, BOOT_DEVICE_ONENAND,
|
|
|
|
spl_onenand_load_image);
|