2011-07-21 13:10:21 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*
|
|
|
|
* Aneesh V <aneesh@ti.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-07-21 13:10:21 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
2014-11-11 00:16:46 +00:00
|
|
|
#include <dm.h>
|
2012-08-13 19:03:19 +00:00
|
|
|
#include <spl.h>
|
2011-07-21 13:10:21 +00:00
|
|
|
#include <asm/u-boot.h>
|
2011-09-14 19:29:26 +00:00
|
|
|
#include <nand.h>
|
2011-07-21 13:10:27 +00:00
|
|
|
#include <fat.h>
|
Move timestamp and version files into 'generated' subdir
There is a rather subtle build problem where the build time stamp is not
updated for out-of-tree builds if there exists an in-tree build which
has a valid timestamp file. So if you do an in-tree build, then an
out-of-tree build your timestamp will not change.
The correct timestamp_autogenerated.h lives in the object tree, but it
is not always found there. The source still lives in the source tree and
when compiling version.h, it includes timestamp_autogenerated.h. Since
the current directory is always searched first, this will come from the
source tree rather than the object tree if it exists there. This affects
dependency generation also, which means that common/cmd_version.o will not
even be rebuilt if you have ever done an in-tree build.
A similar problem exists with the version file.
This change moves both files into the 'generated' subdir, which is already
used for asm-offsets.h. Then timestamp.h and version.h are updated to
include the files from there.
There are other places where these generated files are included, but I
cannot see why these don't just use the timestamp.h and version.h headers.
So this change also tidies that up.
I have tested this with in- and out-of-tree builds, but not SPL. I have
looked at various other options for fixing this, including sed on the dep
files, -I- and -include flags to gcc, but I don't think they can be made
to work. Comments welcome.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
2011-10-10 08:55:19 +00:00
|
|
|
#include <version.h>
|
2011-07-21 13:10:27 +00:00
|
|
|
#include <image.h>
|
2011-10-21 16:29:34 +00:00
|
|
|
#include <malloc.h>
|
2014-11-11 00:16:46 +00:00
|
|
|
#include <dm/root.h>
|
2012-01-04 15:26:24 +00:00
|
|
|
#include <linux/compiler.h>
|
2011-07-21 13:10:21 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2012-08-28 08:50:59 +00:00
|
|
|
#ifndef CONFIG_SYS_UBOOT_START
|
|
|
|
#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
|
|
|
|
#endif
|
2012-08-23 10:46:16 +00:00
|
|
|
#ifndef CONFIG_SYS_MONITOR_LEN
|
2014-10-25 00:54:55 +00:00
|
|
|
/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
|
2012-08-23 10:46:16 +00:00
|
|
|
#define CONFIG_SYS_MONITOR_LEN (200 * 1024)
|
|
|
|
#endif
|
|
|
|
|
2012-08-13 19:03:19 +00:00
|
|
|
u32 *boot_params_ptr = NULL;
|
2011-09-14 19:33:34 +00:00
|
|
|
struct spl_image_info spl_image;
|
|
|
|
|
2012-08-22 22:31:05 +00:00
|
|
|
/* Define board data structure */
|
2011-07-21 13:10:21 +00:00
|
|
|
static bd_t bdata __attribute__ ((section(".data")));
|
|
|
|
|
2016-06-07 06:31:20 +00:00
|
|
|
/*
|
|
|
|
* Board-specific Platform code can reimplement show_boot_progress () if needed
|
|
|
|
*/
|
|
|
|
__weak void show_boot_progress(int val) {}
|
|
|
|
|
2012-03-15 04:01:38 +00:00
|
|
|
/*
|
|
|
|
* Default function to determine if u-boot or the OS should
|
|
|
|
* be started. This implementation always returns 1.
|
|
|
|
*
|
|
|
|
* Please implement your own board specific funcion to do this.
|
|
|
|
*
|
|
|
|
* RETURN
|
|
|
|
* 0 to not start u-boot
|
|
|
|
* positive if u-boot should start
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_SPL_OS_BOOT
|
|
|
|
__weak int spl_start_uboot(void)
|
|
|
|
{
|
2012-08-14 19:06:43 +00:00
|
|
|
puts("SPL: Please implement spl_start_uboot() for your board\n");
|
|
|
|
puts("SPL: Direct Linux boot not active!\n");
|
2012-03-15 04:01:38 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2016-07-12 18:28:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Weak default function for arch specific zImage check. Return zero
|
|
|
|
* and fill start and end address if image is recognized.
|
|
|
|
*/
|
|
|
|
int __weak bootz_setup(ulong image, ulong *start, ulong *end)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2012-03-15 04:01:38 +00:00
|
|
|
#endif
|
|
|
|
|
2012-08-23 06:34:21 +00:00
|
|
|
/*
|
|
|
|
* Weak default function for board specific cleanup/preparation before
|
|
|
|
* Linux boot. Some boards/platforms might not need it, so just provide
|
|
|
|
* an empty stub here.
|
|
|
|
*/
|
|
|
|
__weak void spl_board_prepare_for_linux(void)
|
|
|
|
{
|
|
|
|
/* Nothing to do! */
|
|
|
|
}
|
|
|
|
|
2016-05-10 05:54:20 +00:00
|
|
|
__weak void spl_board_prepare_for_boot(void)
|
|
|
|
{
|
|
|
|
/* Nothing to do! */
|
|
|
|
}
|
|
|
|
|
2016-09-25 00:19:52 +00:00
|
|
|
void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
|
2014-10-31 07:31:00 +00:00
|
|
|
{
|
2016-09-25 00:19:52 +00:00
|
|
|
spl_image->size = CONFIG_SYS_MONITOR_LEN;
|
|
|
|
spl_image->entry_point = CONFIG_SYS_UBOOT_START;
|
|
|
|
spl_image->load_addr = CONFIG_SYS_TEXT_BASE;
|
|
|
|
spl_image->os = IH_OS_U_BOOT;
|
|
|
|
spl_image->name = "U-Boot";
|
2014-10-31 07:31:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 00:19:53 +00:00
|
|
|
int spl_parse_image_header(struct spl_image_info *spl_image,
|
|
|
|
const struct image_header *header)
|
2011-07-21 13:10:27 +00:00
|
|
|
{
|
|
|
|
u32 header_size = sizeof(struct image_header);
|
|
|
|
|
2012-08-27 10:50:57 +00:00
|
|
|
if (image_get_magic(header) == IH_MAGIC) {
|
2016-09-25 00:19:53 +00:00
|
|
|
if (spl_image->flags & SPL_COPY_PAYLOAD_ONLY) {
|
2012-08-27 10:50:58 +00:00
|
|
|
/*
|
|
|
|
* On some system (e.g. powerpc), the load-address and
|
|
|
|
* entry-point is located at address 0. We can't load
|
|
|
|
* to 0-0x40. So skip header in this case.
|
|
|
|
*/
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_image->load_addr = image_get_load(header);
|
|
|
|
spl_image->entry_point = image_get_ep(header);
|
|
|
|
spl_image->size = image_get_data_size(header);
|
2012-08-27 10:50:58 +00:00
|
|
|
} else {
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_image->entry_point = image_get_load(header);
|
2012-08-27 10:50:58 +00:00
|
|
|
/* Load including the header */
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_image->load_addr = spl_image->entry_point -
|
2012-08-27 10:50:58 +00:00
|
|
|
header_size;
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_image->size = image_get_data_size(header) +
|
2012-08-27 10:50:58 +00:00
|
|
|
header_size;
|
|
|
|
}
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_image->os = image_get_os(header);
|
|
|
|
spl_image->name = image_get_name(header);
|
2013-07-16 11:45:01 +00:00
|
|
|
debug("spl: payload image: %.*s load addr: 0x%x size: %d\n",
|
2016-09-25 00:19:53 +00:00
|
|
|
(int)sizeof(spl_image->name), spl_image->name,
|
|
|
|
spl_image->load_addr, spl_image->size);
|
2011-07-21 13:10:27 +00:00
|
|
|
} else {
|
2015-03-31 09:40:50 +00:00
|
|
|
#ifdef CONFIG_SPL_PANIC_ON_RAW_IMAGE
|
|
|
|
/*
|
|
|
|
* CONFIG_SPL_PANIC_ON_RAW_IMAGE is defined when the
|
|
|
|
* code which loads images in SPL cannot guarantee that
|
|
|
|
* absolutely all read errors will be reported.
|
|
|
|
* An example is the LPC32XX MLC NAND driver, which
|
|
|
|
* will consider that a completely unreadable NAND block
|
|
|
|
* is bad, and thus should be skipped silently.
|
|
|
|
*/
|
|
|
|
panic("** no mkimage signature but raw image not supported");
|
2016-08-24 18:04:42 +00:00
|
|
|
#endif
|
|
|
|
|
2016-07-12 18:28:14 +00:00
|
|
|
#ifdef CONFIG_SPL_OS_BOOT
|
|
|
|
ulong start, end;
|
|
|
|
|
|
|
|
if (!bootz_setup((ulong)header, &start, &end)) {
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_image->name = "Linux";
|
|
|
|
spl_image->os = IH_OS_LINUX;
|
|
|
|
spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
|
|
|
|
spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
|
|
|
|
spl_image->size = end - start;
|
2016-07-12 18:28:14 +00:00
|
|
|
debug("spl: payload zImage, load addr: 0x%x size: %d\n",
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_image->load_addr, spl_image->size);
|
2016-07-12 18:28:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2016-08-24 18:04:42 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_ABORT_ON_RAW_IMAGE
|
|
|
|
/* Signature not found, proceed to other boot methods. */
|
|
|
|
return -EINVAL;
|
|
|
|
#else
|
2011-07-21 13:10:27 +00:00
|
|
|
/* Signature not found - assume u-boot.bin */
|
2012-08-14 19:06:43 +00:00
|
|
|
debug("mkimage signature not found - ih_magic = %x\n",
|
2011-07-21 13:10:27 +00:00
|
|
|
header->ih_magic);
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_set_header_raw_uboot(spl_image);
|
2015-03-31 09:40:50 +00:00
|
|
|
#endif
|
2011-07-21 13:10:27 +00:00
|
|
|
}
|
2016-04-28 22:44:54 +00:00
|
|
|
return 0;
|
2011-07-21 13:10:27 +00:00
|
|
|
}
|
|
|
|
|
2012-10-19 21:08:22 +00:00
|
|
|
__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
|
2011-07-21 13:10:27 +00:00
|
|
|
{
|
2013-04-24 00:41:24 +00:00
|
|
|
typedef void __noreturn (*image_entry_noargs_t)(void);
|
|
|
|
|
2011-07-21 13:10:27 +00:00
|
|
|
image_entry_noargs_t image_entry =
|
2015-03-24 20:25:02 +00:00
|
|
|
(image_entry_noargs_t)(unsigned long)spl_image->entry_point;
|
2011-07-21 13:10:27 +00:00
|
|
|
|
2012-10-19 21:08:22 +00:00
|
|
|
debug("image entry point: 0x%X\n", spl_image->entry_point);
|
2013-04-24 00:41:24 +00:00
|
|
|
image_entry();
|
2011-07-21 13:10:27 +00:00
|
|
|
}
|
|
|
|
|
2016-04-28 07:54:16 +00:00
|
|
|
#ifndef CONFIG_SPL_LOAD_FIT_ADDRESS
|
|
|
|
# define CONFIG_SPL_LOAD_FIT_ADDRESS 0
|
|
|
|
#endif
|
|
|
|
|
2016-07-28 12:09:17 +00:00
|
|
|
#if defined(CONFIG_SPL_RAM_DEVICE) || defined(CONFIG_SPL_DFU_SUPPORT)
|
2016-04-28 07:54:16 +00:00
|
|
|
static ulong spl_ram_load_read(struct spl_load_info *load, ulong sector,
|
|
|
|
ulong count, void *buf)
|
|
|
|
{
|
|
|
|
debug("%s: sector %lx, count %lx, buf %lx\n",
|
|
|
|
__func__, sector, count, (ulong)buf);
|
|
|
|
memcpy(buf, (void *)(CONFIG_SPL_LOAD_FIT_ADDRESS + sector), count);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2015-11-08 15:11:49 +00:00
|
|
|
static int spl_ram_load_image(void)
|
2012-08-30 20:42:11 +00:00
|
|
|
{
|
2016-04-28 07:54:16 +00:00
|
|
|
struct image_header *header;
|
|
|
|
|
|
|
|
header = (struct image_header *)CONFIG_SPL_LOAD_FIT_ADDRESS;
|
2012-08-30 20:42:11 +00:00
|
|
|
|
2016-04-28 07:54:16 +00:00
|
|
|
if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
|
|
|
|
image_get_magic(header) == FDT_MAGIC) {
|
|
|
|
struct spl_load_info load;
|
2012-08-30 20:42:11 +00:00
|
|
|
|
2016-04-28 07:54:16 +00:00
|
|
|
debug("Found FIT\n");
|
|
|
|
load.bl_len = 1;
|
|
|
|
load.read = spl_ram_load_read;
|
|
|
|
spl_load_simple_fit(&load, 0, header);
|
|
|
|
} else {
|
|
|
|
debug("Legacy image\n");
|
|
|
|
/*
|
|
|
|
* Get the header. It will point to an address defined by
|
|
|
|
* handoff which will tell where the image located inside
|
|
|
|
* the flash. For now, it will temporary fixed to address
|
|
|
|
* pointed by U-Boot.
|
|
|
|
*/
|
|
|
|
header = (struct image_header *)
|
|
|
|
(CONFIG_SYS_TEXT_BASE - sizeof(struct image_header));
|
|
|
|
|
2016-09-25 00:19:53 +00:00
|
|
|
spl_parse_image_header(&spl_image, header);
|
2016-04-28 07:54:16 +00:00
|
|
|
}
|
2015-11-08 15:11:49 +00:00
|
|
|
|
|
|
|
return 0;
|
2012-08-30 20:42:11 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-06-23 21:39:10 +00:00
|
|
|
int spl_init(void)
|
2011-07-21 13:10:21 +00:00
|
|
|
{
|
2015-02-28 05:06:42 +00:00
|
|
|
int ret;
|
|
|
|
|
2015-06-23 21:39:10 +00:00
|
|
|
debug("spl_init()\n");
|
|
|
|
#if defined(CONFIG_SYS_MALLOC_F_LEN)
|
2016-05-25 00:14:56 +00:00
|
|
|
#ifdef CONFIG_MALLOC_F_ADDR
|
|
|
|
gd->malloc_base = CONFIG_MALLOC_F_ADDR;
|
|
|
|
#endif
|
2015-02-28 05:06:37 +00:00
|
|
|
gd->malloc_limit = CONFIG_SYS_MALLOC_F_LEN;
|
2014-11-11 00:16:45 +00:00
|
|
|
gd->malloc_ptr = 0;
|
2012-08-13 21:13:07 +00:00
|
|
|
#endif
|
2016-07-04 17:57:56 +00:00
|
|
|
if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
|
2015-02-28 05:06:42 +00:00
|
|
|
ret = fdtdec_setup();
|
|
|
|
if (ret) {
|
|
|
|
debug("fdtdec_setup() returned error %d\n", ret);
|
2015-06-23 21:39:10 +00:00
|
|
|
return ret;
|
2015-02-28 05:06:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (IS_ENABLED(CONFIG_SPL_DM)) {
|
2016-07-04 17:58:14 +00:00
|
|
|
/* With CONFIG_OF_PLATDATA, bring in all devices */
|
|
|
|
ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
|
2015-02-28 05:06:42 +00:00
|
|
|
if (ret) {
|
|
|
|
debug("dm_init_and_scan() returned error %d\n", ret);
|
2015-06-23 21:39:10 +00:00
|
|
|
return ret;
|
2015-02-28 05:06:42 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-23 21:39:10 +00:00
|
|
|
gd->flags |= GD_FLG_SPL_INIT;
|
2011-10-21 16:29:34 +00:00
|
|
|
|
2015-06-23 21:39:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-08 15:11:51 +00:00
|
|
|
#ifndef BOOT_DEVICE_NONE
|
|
|
|
#define BOOT_DEVICE_NONE 0xdeadbeef
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static u32 spl_boot_list[] = {
|
|
|
|
BOOT_DEVICE_NONE,
|
|
|
|
BOOT_DEVICE_NONE,
|
|
|
|
BOOT_DEVICE_NONE,
|
|
|
|
BOOT_DEVICE_NONE,
|
|
|
|
BOOT_DEVICE_NONE,
|
|
|
|
};
|
|
|
|
|
|
|
|
__weak void board_boot_order(u32 *spl_boot_list)
|
|
|
|
{
|
|
|
|
spl_boot_list[0] = spl_boot_device();
|
|
|
|
}
|
|
|
|
|
2015-11-08 15:11:52 +00:00
|
|
|
#ifdef CONFIG_SPL_BOARD_LOAD_IMAGE
|
|
|
|
__weak void spl_board_announce_boot_device(void) { }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
|
|
|
|
struct boot_device_name {
|
|
|
|
u32 boot_dev;
|
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct boot_device_name boot_name_table[] = {
|
|
|
|
#ifdef CONFIG_SPL_RAM_DEVICE
|
|
|
|
{ BOOT_DEVICE_RAM, "RAM" },
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_MMC_SUPPORT
|
2016-03-20 13:17:10 +00:00
|
|
|
{ BOOT_DEVICE_MMC1, "MMC1" },
|
|
|
|
{ BOOT_DEVICE_MMC2, "MMC2" },
|
|
|
|
{ BOOT_DEVICE_MMC2_2, "MMC2_2" },
|
2015-11-08 15:11:52 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_NAND_SUPPORT
|
|
|
|
{ BOOT_DEVICE_NAND, "NAND" },
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_ONENAND_SUPPORT
|
|
|
|
{ BOOT_DEVICE_ONENAND, "OneNAND" },
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_NOR_SUPPORT
|
|
|
|
{ BOOT_DEVICE_NOR, "NOR" },
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_YMODEM_SUPPORT
|
|
|
|
{ BOOT_DEVICE_UART, "UART" },
|
|
|
|
#endif
|
2016-06-07 11:28:34 +00:00
|
|
|
#if defined(CONFIG_SPL_SPI_SUPPORT) || defined(CONFIG_SPL_SPI_FLASH_SUPPORT)
|
2015-11-08 15:11:52 +00:00
|
|
|
{ BOOT_DEVICE_SPI, "SPI" },
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_ETH_SUPPORT
|
|
|
|
#ifdef CONFIG_SPL_ETH_DEVICE
|
|
|
|
{ BOOT_DEVICE_CPGMAC, "eth device" },
|
|
|
|
#else
|
|
|
|
{ BOOT_DEVICE_CPGMAC, "net" },
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_USBETH_SUPPORT
|
|
|
|
{ BOOT_DEVICE_USBETH, "USB eth" },
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_USB_SUPPORT
|
|
|
|
{ BOOT_DEVICE_USB, "USB" },
|
|
|
|
#endif
|
2016-07-28 12:09:17 +00:00
|
|
|
#ifdef CONFIG_SPL_DFU_SUPPORT
|
|
|
|
{ BOOT_DEVICE_DFU, "USB DFU" },
|
|
|
|
#endif
|
2015-11-08 15:11:52 +00:00
|
|
|
#ifdef CONFIG_SPL_SATA_SUPPORT
|
|
|
|
{ BOOT_DEVICE_SATA, "SATA" },
|
|
|
|
#endif
|
|
|
|
/* Keep this entry last */
|
|
|
|
{ BOOT_DEVICE_NONE, "unknown boot device" },
|
|
|
|
};
|
|
|
|
|
|
|
|
static void announce_boot_device(u32 boot_device)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
puts("Trying to boot from ");
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_BOARD_LOAD_IMAGE
|
|
|
|
if (boot_device == BOOT_DEVICE_BOARD) {
|
|
|
|
spl_board_announce_boot_device();
|
|
|
|
puts("\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
for (i = 0; i < ARRAY_SIZE(boot_name_table) - 1; i++) {
|
|
|
|
if (boot_name_table[i].boot_dev == boot_device)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s\n", boot_name_table[i].name);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void announce_boot_device(u32 boot_device) { }
|
|
|
|
#endif
|
|
|
|
|
2015-11-08 15:11:50 +00:00
|
|
|
static int spl_load_image(u32 boot_device)
|
2015-06-23 21:39:10 +00:00
|
|
|
{
|
2011-07-21 13:10:27 +00:00
|
|
|
switch (boot_device) {
|
2012-08-30 20:42:11 +00:00
|
|
|
#ifdef CONFIG_SPL_RAM_DEVICE
|
|
|
|
case BOOT_DEVICE_RAM:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_ram_load_image();
|
2012-08-30 20:42:11 +00:00
|
|
|
#endif
|
2011-09-14 19:29:26 +00:00
|
|
|
#ifdef CONFIG_SPL_MMC_SUPPORT
|
2011-07-21 13:10:27 +00:00
|
|
|
case BOOT_DEVICE_MMC1:
|
|
|
|
case BOOT_DEVICE_MMC2:
|
2012-03-12 02:25:47 +00:00
|
|
|
case BOOT_DEVICE_MMC2_2:
|
2015-11-08 15:11:54 +00:00
|
|
|
return spl_mmc_load_image(boot_device);
|
2011-09-14 19:29:26 +00:00
|
|
|
#endif
|
2016-07-12 18:28:13 +00:00
|
|
|
#ifdef CONFIG_SPL_UBI
|
|
|
|
case BOOT_DEVICE_NAND:
|
|
|
|
case BOOT_DEVICE_ONENAND:
|
|
|
|
return spl_ubi_load_image(boot_device);
|
|
|
|
#else
|
2011-09-14 19:29:26 +00:00
|
|
|
#ifdef CONFIG_SPL_NAND_SUPPORT
|
|
|
|
case BOOT_DEVICE_NAND:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_nand_load_image();
|
2012-01-31 12:03:57 +00:00
|
|
|
#endif
|
2013-02-07 23:14:48 +00:00
|
|
|
#ifdef CONFIG_SPL_ONENAND_SUPPORT
|
|
|
|
case BOOT_DEVICE_ONENAND:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_onenand_load_image();
|
2013-02-07 23:14:48 +00:00
|
|
|
#endif
|
2016-07-12 18:28:13 +00:00
|
|
|
#endif
|
2012-08-27 10:50:59 +00:00
|
|
|
#ifdef CONFIG_SPL_NOR_SUPPORT
|
|
|
|
case BOOT_DEVICE_NOR:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_nor_load_image();
|
2012-08-27 10:50:59 +00:00
|
|
|
#endif
|
2012-01-31 12:03:57 +00:00
|
|
|
#ifdef CONFIG_SPL_YMODEM_SUPPORT
|
|
|
|
case BOOT_DEVICE_UART:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_ymodem_load_image();
|
2012-08-14 19:25:23 +00:00
|
|
|
#endif
|
2016-06-07 11:28:34 +00:00
|
|
|
#if defined(CONFIG_SPL_SPI_SUPPORT) || defined(CONFIG_SPL_SPI_FLASH_SUPPORT)
|
2012-08-14 19:25:23 +00:00
|
|
|
case BOOT_DEVICE_SPI:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_spi_load_image();
|
2012-09-18 00:22:50 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_ETH_SUPPORT
|
|
|
|
case BOOT_DEVICE_CPGMAC:
|
|
|
|
#ifdef CONFIG_SPL_ETH_DEVICE
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_net_load_image(CONFIG_SPL_ETH_DEVICE);
|
2012-09-18 00:22:50 +00:00
|
|
|
#else
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_net_load_image(NULL);
|
2012-09-18 00:22:50 +00:00
|
|
|
#endif
|
2013-02-05 11:36:24 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_USBETH_SUPPORT
|
|
|
|
case BOOT_DEVICE_USBETH:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_net_load_image("usb_ether");
|
2014-01-16 17:23:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_USB_SUPPORT
|
|
|
|
case BOOT_DEVICE_USB:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_usb_load_image();
|
2014-02-03 12:59:01 +00:00
|
|
|
#endif
|
2016-07-28 12:09:17 +00:00
|
|
|
#ifdef CONFIG_SPL_DFU_SUPPORT
|
|
|
|
case BOOT_DEVICE_DFU:
|
|
|
|
spl_dfu_cmd(0, "dfu_alt_info_ram", "ram", "0");
|
|
|
|
return spl_ram_load_image();
|
|
|
|
#endif
|
2014-02-03 12:59:01 +00:00
|
|
|
#ifdef CONFIG_SPL_SATA_SUPPORT
|
|
|
|
case BOOT_DEVICE_SATA:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_sata_load_image();
|
2015-02-07 17:47:29 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_BOARD_LOAD_IMAGE
|
|
|
|
case BOOT_DEVICE_BOARD:
|
2015-11-08 15:11:50 +00:00
|
|
|
return spl_board_load_image();
|
2011-09-14 19:29:26 +00:00
|
|
|
#endif
|
2011-07-21 13:10:27 +00:00
|
|
|
default:
|
2014-11-11 18:03:55 +00:00
|
|
|
#if defined(CONFIG_SPL_SERIAL_SUPPORT) && defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
|
2015-01-27 15:45:09 +00:00
|
|
|
puts("SPL: Unsupported Boot Device!\n");
|
2014-11-11 18:03:55 +00:00
|
|
|
#endif
|
2015-11-08 15:11:50 +00:00
|
|
|
return -ENODEV;
|
2011-07-21 13:10:27 +00:00
|
|
|
}
|
|
|
|
|
2015-11-08 15:11:50 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void board_init_r(gd_t *dummy1, ulong dummy2)
|
|
|
|
{
|
2015-11-08 15:11:51 +00:00
|
|
|
int i;
|
2015-11-08 15:11:50 +00:00
|
|
|
|
|
|
|
debug(">>spl:board_init_r()\n");
|
|
|
|
|
|
|
|
#if defined(CONFIG_SYS_SPL_MALLOC_START)
|
|
|
|
mem_malloc_init(CONFIG_SYS_SPL_MALLOC_START,
|
|
|
|
CONFIG_SYS_SPL_MALLOC_SIZE);
|
|
|
|
gd->flags |= GD_FLG_FULL_MALLOC_INIT;
|
|
|
|
#endif
|
|
|
|
if (!(gd->flags & GD_FLG_SPL_INIT)) {
|
|
|
|
if (spl_init())
|
|
|
|
hang();
|
|
|
|
}
|
|
|
|
#ifndef CONFIG_PPC
|
|
|
|
/*
|
|
|
|
* timer_init() does not exist on PPC systems. The timer is initialized
|
|
|
|
* and enabled (decrementer) in interrupt_init() here.
|
|
|
|
*/
|
|
|
|
timer_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_BOARD_INIT
|
|
|
|
spl_board_init();
|
|
|
|
#endif
|
|
|
|
|
2015-11-08 15:11:51 +00:00
|
|
|
board_boot_order(spl_boot_list);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(spl_boot_list) &&
|
|
|
|
spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
|
2015-11-08 15:11:52 +00:00
|
|
|
announce_boot_device(spl_boot_list[i]);
|
2015-11-08 15:11:51 +00:00
|
|
|
if (!spl_load_image(spl_boot_list[i]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == ARRAY_SIZE(spl_boot_list) ||
|
|
|
|
spl_boot_list[i] == BOOT_DEVICE_NONE) {
|
|
|
|
puts("SPL: failed to boot from all boot devices\n");
|
2015-11-08 15:11:50 +00:00
|
|
|
hang();
|
2015-11-08 15:11:51 +00:00
|
|
|
}
|
2015-11-08 15:11:50 +00:00
|
|
|
|
2011-09-14 19:33:34 +00:00
|
|
|
switch (spl_image.os) {
|
2011-07-21 13:10:27 +00:00
|
|
|
case IH_OS_U_BOOT:
|
|
|
|
debug("Jumping to U-Boot\n");
|
|
|
|
break;
|
2012-03-15 04:01:38 +00:00
|
|
|
#ifdef CONFIG_SPL_OS_BOOT
|
|
|
|
case IH_OS_LINUX:
|
|
|
|
debug("Jumping to Linux\n");
|
|
|
|
spl_board_prepare_for_linux();
|
|
|
|
jump_to_image_linux((void *)CONFIG_SYS_SPL_ARGS_ADDR);
|
|
|
|
#endif
|
2011-07-21 13:10:27 +00:00
|
|
|
default:
|
2012-08-27 21:58:28 +00:00
|
|
|
debug("Unsupported OS image.. Jumping nevertheless..\n");
|
2011-07-21 13:10:27 +00:00
|
|
|
}
|
2014-11-11 00:16:45 +00:00
|
|
|
#if defined(CONFIG_SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE)
|
|
|
|
debug("SPL malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
|
|
|
|
gd->malloc_ptr / 1024);
|
|
|
|
#endif
|
|
|
|
|
2015-06-23 21:39:11 +00:00
|
|
|
debug("loaded - jumping to U-Boot...");
|
2016-05-10 05:54:20 +00:00
|
|
|
spl_board_prepare_for_boot();
|
2012-10-19 21:08:22 +00:00
|
|
|
jump_to_image_no_args(&spl_image);
|
2011-07-21 13:10:21 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 22:31:05 +00:00
|
|
|
/*
|
|
|
|
* This requires UART clocks to be enabled. In order for this to work the
|
|
|
|
* caller must ensure that the gd pointer is valid.
|
|
|
|
*/
|
2011-07-21 13:10:21 +00:00
|
|
|
void preloader_console_init(void)
|
|
|
|
{
|
|
|
|
gd->bd = &bdata;
|
|
|
|
gd->baudrate = CONFIG_BAUDRATE;
|
|
|
|
|
|
|
|
serial_init(); /* serial communications setup */
|
|
|
|
|
2011-11-01 13:16:03 +00:00
|
|
|
gd->have_console = 1;
|
|
|
|
|
2012-08-14 19:06:43 +00:00
|
|
|
puts("\nU-Boot SPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \
|
|
|
|
U_BOOT_TIME ")\n");
|
2012-08-13 18:37:56 +00:00
|
|
|
#ifdef CONFIG_SPL_DISPLAY_PRINT
|
|
|
|
spl_display_print();
|
|
|
|
#endif
|
2011-10-04 04:59:23 +00:00
|
|
|
}
|
2015-03-03 15:03:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* spl_relocate_stack_gd() - Relocate stack ready for board_init_r() execution
|
|
|
|
*
|
|
|
|
* Sometimes board_init_f() runs with a stack in SRAM but we want to use SDRAM
|
|
|
|
* for the main board_init_r() execution. This is typically because we need
|
|
|
|
* more stack space for things like the MMC sub-system.
|
|
|
|
*
|
|
|
|
* This function calculates the stack position, copies the global_data into
|
arm: move gd handling outside of C code
As of gcc 5.2.1 for Thumb-1, it is not possible any
more to assign gd from C code, as gd is mapped to r9,
and r9 may now be saved in the prolog sequence, and
restored in the epilog sequence, of any C functions.
Therefore arch_setup_gd(), which is supposed to set
r9, may actually have no effect, causing U-Boot to
use a bad address to access GD.
Fix this by never calling arch_setup_gd() for ARM,
and instead setting r9 in arch/arm/lib/crt0.S, to
the value returned by board_init_f_alloc_reserve().
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Reviewed-by: Simon Glass <sjg@chromium.org>
2015-11-25 16:56:33 +00:00
|
|
|
* place, sets the new gd (except for ARM, for which setting GD within a C
|
|
|
|
* function may not always work) and returns the new stack position. The
|
|
|
|
* caller is responsible for setting up the sp register and, in the case
|
|
|
|
* of ARM, setting up gd.
|
|
|
|
*
|
|
|
|
* All of this is done using the same layout and alignments as done in
|
|
|
|
* board_init_f_init_reserve() / board_init_f_alloc_reserve().
|
2015-03-03 15:03:00 +00:00
|
|
|
*
|
|
|
|
* @return new stack location, or 0 to use the same stack
|
|
|
|
*/
|
|
|
|
ulong spl_relocate_stack_gd(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SPL_STACK_R
|
|
|
|
gd_t *new_gd;
|
arm: move gd handling outside of C code
As of gcc 5.2.1 for Thumb-1, it is not possible any
more to assign gd from C code, as gd is mapped to r9,
and r9 may now be saved in the prolog sequence, and
restored in the epilog sequence, of any C functions.
Therefore arch_setup_gd(), which is supposed to set
r9, may actually have no effect, causing U-Boot to
use a bad address to access GD.
Fix this by never calling arch_setup_gd() for ARM,
and instead setting r9 in arch/arm/lib/crt0.S, to
the value returned by board_init_f_alloc_reserve().
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Reviewed-by: Simon Glass <sjg@chromium.org>
2015-11-25 16:56:33 +00:00
|
|
|
ulong ptr = CONFIG_SPL_STACK_R_ADDR;
|
2015-03-03 15:03:00 +00:00
|
|
|
|
2015-09-13 13:04:17 +00:00
|
|
|
#ifdef CONFIG_SPL_SYS_MALLOC_SIMPLE
|
|
|
|
if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
|
|
|
|
ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
|
|
|
|
gd->malloc_base = ptr;
|
|
|
|
gd->malloc_limit = CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
|
|
|
|
gd->malloc_ptr = 0;
|
|
|
|
}
|
|
|
|
#endif
|
arm: move gd handling outside of C code
As of gcc 5.2.1 for Thumb-1, it is not possible any
more to assign gd from C code, as gd is mapped to r9,
and r9 may now be saved in the prolog sequence, and
restored in the epilog sequence, of any C functions.
Therefore arch_setup_gd(), which is supposed to set
r9, may actually have no effect, causing U-Boot to
use a bad address to access GD.
Fix this by never calling arch_setup_gd() for ARM,
and instead setting r9 in arch/arm/lib/crt0.S, to
the value returned by board_init_f_alloc_reserve().
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Reviewed-by: Simon Glass <sjg@chromium.org>
2015-11-25 16:56:33 +00:00
|
|
|
/* Get stack position: use 8-byte alignment for ABI compliance */
|
|
|
|
ptr = CONFIG_SPL_STACK_R_ADDR - roundup(sizeof(gd_t),16);
|
|
|
|
new_gd = (gd_t *)ptr;
|
|
|
|
memcpy(new_gd, (void *)gd, sizeof(gd_t));
|
|
|
|
#if !defined(CONFIG_ARM)
|
|
|
|
gd = new_gd;
|
|
|
|
#endif
|
2015-03-03 15:03:00 +00:00
|
|
|
return ptr;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|