2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-08-12 12:31:15 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000-2009
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <bootm.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <image.h>
|
2019-11-14 19:57:42 +00:00
|
|
|
#include <irq_func.h>
|
2016-08-12 12:31:15 +00:00
|
|
|
#include <lmb.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2016-08-12 12:31:15 +00:00
|
|
|
#include <mapmem.h>
|
2017-03-09 07:28:25 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sizes.h>
|
2016-08-12 12:31:15 +00:00
|
|
|
|
2020-03-06 00:24:23 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2016-08-12 12:31:15 +00:00
|
|
|
/*
|
|
|
|
* Image booting support
|
|
|
|
*/
|
2020-05-10 17:40:03 +00:00
|
|
|
static int booti_start(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[], bootm_headers_t *images)
|
2016-08-12 12:31:15 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2018-01-27 05:59:09 +00:00
|
|
|
ulong ld;
|
|
|
|
ulong relocated_addr;
|
|
|
|
ulong image_size;
|
2020-03-06 00:24:23 +00:00
|
|
|
uint8_t *temp;
|
|
|
|
ulong dest;
|
|
|
|
ulong dest_end;
|
|
|
|
unsigned long comp_len;
|
|
|
|
unsigned long decomp_len;
|
|
|
|
int ctype;
|
2016-08-12 12:31:15 +00:00
|
|
|
|
|
|
|
ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
|
|
|
|
images, 1);
|
|
|
|
|
|
|
|
/* Setup Linux kernel Image entry point */
|
|
|
|
if (!argc) {
|
2019-12-28 17:45:02 +00:00
|
|
|
ld = image_load_addr;
|
2016-08-12 12:31:15 +00:00
|
|
|
debug("* kernel: default image load address = 0x%08lx\n",
|
2019-12-28 17:45:02 +00:00
|
|
|
image_load_addr);
|
2016-08-12 12:31:15 +00:00
|
|
|
} else {
|
2018-01-27 05:59:09 +00:00
|
|
|
ld = simple_strtoul(argv[0], NULL, 16);
|
2018-02-13 03:10:02 +00:00
|
|
|
debug("* kernel: cmdline image address = 0x%08lx\n", ld);
|
2016-08-12 12:31:15 +00:00
|
|
|
}
|
|
|
|
|
2020-03-06 00:24:23 +00:00
|
|
|
temp = map_sysmem(ld, 0);
|
|
|
|
ctype = image_decomp_type(temp, 2);
|
|
|
|
if (ctype > 0) {
|
|
|
|
dest = env_get_ulong("kernel_comp_addr_r", 16, 0);
|
|
|
|
comp_len = env_get_ulong("kernel_comp_size", 16, 0);
|
|
|
|
if (!dest || !comp_len) {
|
|
|
|
puts("kernel_comp_addr_r or kernel_comp_size is not provided!\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (dest < gd->ram_base || dest > gd->ram_top) {
|
|
|
|
puts("kernel_comp_addr_r is outside of DRAM range!\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("kernel image compression type %d size = 0x%08lx address = 0x%08lx\n",
|
|
|
|
ctype, comp_len, (ulong)dest);
|
|
|
|
decomp_len = comp_len * 10;
|
|
|
|
ret = image_decomp(ctype, 0, ld, IH_TYPE_KERNEL,
|
|
|
|
(void *)dest, (void *)ld, comp_len,
|
|
|
|
decomp_len, &dest_end);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
/* dest_end contains the uncompressed Image size */
|
|
|
|
memmove((void *) ld, (void *)dest, dest_end);
|
|
|
|
}
|
|
|
|
unmap_sysmem((void *)ld);
|
|
|
|
|
2018-06-13 04:13:32 +00:00
|
|
|
ret = booti_setup(ld, &relocated_addr, &image_size, false);
|
2016-08-12 12:31:15 +00:00
|
|
|
if (ret != 0)
|
|
|
|
return 1;
|
|
|
|
|
2018-01-27 05:59:09 +00:00
|
|
|
/* Handle BOOTM_STATE_LOADOS */
|
|
|
|
if (relocated_addr != ld) {
|
2020-06-12 12:41:21 +00:00
|
|
|
printf("Moving Image from 0x%lx to 0x%lx, end=%lx\n", ld,
|
|
|
|
relocated_addr, relocated_addr + image_size);
|
2018-01-27 05:59:09 +00:00
|
|
|
memmove((void *)relocated_addr, (void *)ld, image_size);
|
|
|
|
}
|
2016-08-12 12:31:15 +00:00
|
|
|
|
2018-01-27 05:59:09 +00:00
|
|
|
images->ep = relocated_addr;
|
2019-10-07 08:22:16 +00:00
|
|
|
images->os.start = relocated_addr;
|
|
|
|
images->os.end = relocated_addr + image_size;
|
|
|
|
|
2018-01-27 05:59:09 +00:00
|
|
|
lmb_reserve(&images->lmb, images->ep, le32_to_cpu(image_size));
|
2016-08-12 12:31:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
|
|
|
|
* have a header that provide this informaiton.
|
|
|
|
*/
|
2020-06-12 12:41:20 +00:00
|
|
|
if (bootm_find_images(flag, argc, argv, relocated_addr, image_size))
|
2016-08-12 12:31:15 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
int do_booti(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
2016-08-12 12:31:15 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Consume 'booti' */
|
|
|
|
argc--; argv++;
|
|
|
|
|
|
|
|
if (booti_start(cmdtp, flag, argc, argv, &images))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We are doing the BOOTM_STATE_LOADOS state ourselves, so must
|
|
|
|
* disable interrupts ourselves
|
|
|
|
*/
|
|
|
|
bootm_disable_interrupts();
|
|
|
|
|
|
|
|
images.os.os = IH_OS_LINUX;
|
2019-05-07 00:49:39 +00:00
|
|
|
#ifdef CONFIG_RISCV_SMODE
|
|
|
|
images.os.arch = IH_ARCH_RISCV;
|
|
|
|
#elif CONFIG_ARM64
|
2017-01-26 22:55:44 +00:00
|
|
|
images.os.arch = IH_ARCH_ARM64;
|
2019-05-07 00:49:39 +00:00
|
|
|
#endif
|
2016-08-12 12:31:15 +00:00
|
|
|
ret = do_bootm_states(cmdtp, flag, argc, argv,
|
2017-01-23 15:51:45 +00:00
|
|
|
#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
|
|
|
|
BOOTM_STATE_RAMDISK |
|
|
|
|
#endif
|
2016-08-12 12:31:15 +00:00
|
|
|
BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
|
|
|
|
BOOTM_STATE_OS_GO,
|
|
|
|
&images, 1);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_LONGHELP
|
|
|
|
static char booti_help_text[] =
|
|
|
|
"[addr [initrd[:size]] [fdt]]\n"
|
2020-03-06 00:24:23 +00:00
|
|
|
" - boot Linux flat or compressed 'Image' stored at 'addr'\n"
|
2016-08-12 12:31:15 +00:00
|
|
|
"\tThe argument 'initrd' is optional and specifies the address\n"
|
|
|
|
"\tof an initrd in memory. The optional parameter ':size' allows\n"
|
|
|
|
"\tspecifying the size of a RAW initrd.\n"
|
2020-03-06 00:24:23 +00:00
|
|
|
"\tCurrently only booting from gz, bz2, lzma and lz4 compression\n"
|
|
|
|
"\ttypes are supported. In order to boot from any of these compressed\n"
|
2020-06-04 17:42:01 +00:00
|
|
|
"\timages, user have to set kernel_comp_addr_r and kernel_comp_size environment\n"
|
2020-03-06 00:24:23 +00:00
|
|
|
"\tvariables beforehand.\n"
|
2016-08-12 12:31:15 +00:00
|
|
|
#if defined(CONFIG_OF_LIBFDT)
|
|
|
|
"\tSince booting a Linux kernel requires a flat device-tree, a\n"
|
|
|
|
"\tthird argument providing the address of the device-tree blob\n"
|
|
|
|
"\tis required. To boot a kernel with a device-tree blob but\n"
|
|
|
|
"\twithout an initrd image, use a '-' for the initrd argument.\n"
|
|
|
|
#endif
|
|
|
|
"";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
U_BOOT_CMD(
|
|
|
|
booti, CONFIG_SYS_MAXARGS, 1, do_booti,
|
2019-05-07 00:49:39 +00:00
|
|
|
"boot Linux kernel 'Image' format from memory", booti_help_text
|
2016-08-12 12:31:15 +00:00
|
|
|
);
|