blob: b9637b3ec3d8de93f51bdd09ce295383fbaa4617 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Rini5db28902016-08-12 08:31:15 -04002/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Tom Rini5db28902016-08-12 08:31:15 -04005 */
6
Tom Rinid678a592024-05-18 20:20:43 -06007#include <common.h>
Tom Rini5db28902016-08-12 08:31:15 -04008#include <bootm.h>
9#include <command.h>
10#include <image.h>
Simon Glass36bf4462019-11-14 12:57:42 -070011#include <irq_func.h>
Tom Rini5db28902016-08-12 08:31:15 -040012#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Tom Rini5db28902016-08-12 08:31:15 -040014#include <mapmem.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Masahiro Yamada28085762017-03-09 16:28:25 +090016#include <linux/kernel.h>
17#include <linux/sizes.h>
Tom Rini5db28902016-08-12 08:31:15 -040018
Atish Patra414c34e2020-03-05 16:24:23 -080019DECLARE_GLOBAL_DATA_PTR;
Tom Rini5db28902016-08-12 08:31:15 -040020/*
21 * Image booting support
22 */
Simon Glassa6c49162023-12-15 20:14:18 -070023static int booti_start(struct bootm_info *bmi)
Tom Rini5db28902016-08-12 08:31:15 -040024{
Simon Glassa6c49162023-12-15 20:14:18 -070025 struct bootm_headers *images = bmi->images;
Tom Rini5db28902016-08-12 08:31:15 -040026 int ret;
Bin Chen6808ef92018-01-27 16:59:09 +110027 ulong ld;
28 ulong relocated_addr;
29 ulong image_size;
Atish Patra414c34e2020-03-05 16:24:23 -080030 uint8_t *temp;
31 ulong dest;
32 ulong dest_end;
33 unsigned long comp_len;
34 unsigned long decomp_len;
35 int ctype;
Tom Rini5db28902016-08-12 08:31:15 -040036
Simon Glassb5d397f2023-12-15 20:14:19 -070037 ret = bootm_run_states(bmi, BOOTM_STATE_START);
Tom Rini5db28902016-08-12 08:31:15 -040038
39 /* Setup Linux kernel Image entry point */
Simon Glassa6c49162023-12-15 20:14:18 -070040 if (!bmi->addr_img) {
Simon Glassbb872dd2019-12-28 10:45:02 -070041 ld = image_load_addr;
Tom Rini5db28902016-08-12 08:31:15 -040042 debug("* kernel: default image load address = 0x%08lx\n",
Simon Glassbb872dd2019-12-28 10:45:02 -070043 image_load_addr);
Tom Rini5db28902016-08-12 08:31:15 -040044 } else {
Simon Glassa6c49162023-12-15 20:14:18 -070045 ld = hextoul(bmi->addr_img, NULL);
Masahiro Yamadabf14d9a2018-02-13 12:10:02 +090046 debug("* kernel: cmdline image address = 0x%08lx\n", ld);
Tom Rini5db28902016-08-12 08:31:15 -040047 }
48
Atish Patra414c34e2020-03-05 16:24:23 -080049 temp = map_sysmem(ld, 0);
50 ctype = image_decomp_type(temp, 2);
51 if (ctype > 0) {
52 dest = env_get_ulong("kernel_comp_addr_r", 16, 0);
53 comp_len = env_get_ulong("kernel_comp_size", 16, 0);
54 if (!dest || !comp_len) {
55 puts("kernel_comp_addr_r or kernel_comp_size is not provided!\n");
56 return -EINVAL;
57 }
58 if (dest < gd->ram_base || dest > gd->ram_top) {
59 puts("kernel_comp_addr_r is outside of DRAM range!\n");
60 return -EINVAL;
61 }
62
63 debug("kernel image compression type %d size = 0x%08lx address = 0x%08lx\n",
64 ctype, comp_len, (ulong)dest);
65 decomp_len = comp_len * 10;
66 ret = image_decomp(ctype, 0, ld, IH_TYPE_KERNEL,
67 (void *)dest, (void *)ld, comp_len,
68 decomp_len, &dest_end);
69 if (ret)
70 return ret;
71 /* dest_end contains the uncompressed Image size */
72 memmove((void *) ld, (void *)dest, dest_end);
73 }
74 unmap_sysmem((void *)ld);
75
Marek Vasut7f13b372018-06-13 06:13:32 +020076 ret = booti_setup(ld, &relocated_addr, &image_size, false);
Heinrich Schuchardt04fc4702024-01-11 09:03:43 +010077 if (ret)
Tom Rini5db28902016-08-12 08:31:15 -040078 return 1;
79
Bin Chen6808ef92018-01-27 16:59:09 +110080 /* Handle BOOTM_STATE_LOADOS */
81 if (relocated_addr != ld) {
Tero Kristo9b83f9c2020-06-12 15:41:21 +030082 printf("Moving Image from 0x%lx to 0x%lx, end=%lx\n", ld,
83 relocated_addr, relocated_addr + image_size);
Bin Chen6808ef92018-01-27 16:59:09 +110084 memmove((void *)relocated_addr, (void *)ld, image_size);
85 }
Tom Rini5db28902016-08-12 08:31:15 -040086
Bin Chen6808ef92018-01-27 16:59:09 +110087 images->ep = relocated_addr;
Lokesh Vutla683cdd62019-10-07 13:52:16 +053088 images->os.start = relocated_addr;
89 images->os.end = relocated_addr + image_size;
90
Bin Chen6808ef92018-01-27 16:59:09 +110091 lmb_reserve(&images->lmb, images->ep, le32_to_cpu(image_size));
Tom Rini5db28902016-08-12 08:31:15 -040092
93 /*
94 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
95 * have a header that provide this informaiton.
96 */
Simon Glassa6c49162023-12-15 20:14:18 -070097 if (bootm_find_images(image_load_addr, bmi->conf_ramdisk, bmi->conf_fdt,
98 relocated_addr, image_size))
Tom Rini5db28902016-08-12 08:31:15 -040099 return 1;
100
101 return 0;
102}
103
Simon Glass09140112020-05-10 11:40:03 -0600104int do_booti(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Tom Rini5db28902016-08-12 08:31:15 -0400105{
Simon Glassa6c49162023-12-15 20:14:18 -0700106 struct bootm_info bmi;
Simon Glass0c96b682023-12-15 20:14:16 -0700107 int states;
Tom Rini5db28902016-08-12 08:31:15 -0400108 int ret;
109
110 /* Consume 'booti' */
111 argc--; argv++;
112
Simon Glassa6c49162023-12-15 20:14:18 -0700113 bootm_init(&bmi);
114 if (argc)
115 bmi.addr_img = argv[0];
116 if (argc > 1)
117 bmi.conf_ramdisk = argv[1];
118 if (argc > 2)
119 bmi.conf_fdt = argv[2];
120 bmi.boot_progress = true;
121 bmi.cmd_name = "booti";
122 /* do not set up argc and argv[] since nothing uses them */
123
124 if (booti_start(&bmi))
Tom Rini5db28902016-08-12 08:31:15 -0400125 return 1;
126
127 /*
128 * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
129 * disable interrupts ourselves
130 */
131 bootm_disable_interrupts();
132
133 images.os.os = IH_OS_LINUX;
Simon Glass0c96b682023-12-15 20:14:16 -0700134 if (IS_ENABLED(CONFIG_RISCV_SMODE))
135 images.os.arch = IH_ARCH_RISCV;
136 else if (IS_ENABLED(CONFIG_ARM64))
137 images.os.arch = IH_ARCH_ARM64;
138
139 states = BOOTM_STATE_MEASURE | BOOTM_STATE_OS_PREP |
140 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO;
141 if (IS_ENABLED(CONFIG_SYS_BOOT_RAMDISK_HIGH))
142 states |= BOOTM_STATE_RAMDISK;
Simon Glassa6c49162023-12-15 20:14:18 -0700143
Simon Glassb5d397f2023-12-15 20:14:19 -0700144 ret = bootm_run_states(&bmi, states);
Tom Rini5db28902016-08-12 08:31:15 -0400145
146 return ret;
147}
148
Tom Rini36162182023-10-07 15:13:08 -0400149U_BOOT_LONGHELP(booti,
Tom Rini5db28902016-08-12 08:31:15 -0400150 "[addr [initrd[:size]] [fdt]]\n"
Atish Patra414c34e2020-03-05 16:24:23 -0800151 " - boot Linux flat or compressed 'Image' stored at 'addr'\n"
Tom Rini5db28902016-08-12 08:31:15 -0400152 "\tThe argument 'initrd' is optional and specifies the address\n"
153 "\tof an initrd in memory. The optional parameter ':size' allows\n"
154 "\tspecifying the size of a RAW initrd.\n"
Atish Patra414c34e2020-03-05 16:24:23 -0800155 "\tCurrently only booting from gz, bz2, lzma and lz4 compression\n"
156 "\ttypes are supported. In order to boot from any of these compressed\n"
Vagrant Cascadiand1896e32020-06-04 10:42:01 -0700157 "\timages, user have to set kernel_comp_addr_r and kernel_comp_size environment\n"
Atish Patra414c34e2020-03-05 16:24:23 -0800158 "\tvariables beforehand.\n"
Tom Rini5db28902016-08-12 08:31:15 -0400159#if defined(CONFIG_OF_LIBFDT)
160 "\tSince booting a Linux kernel requires a flat device-tree, a\n"
161 "\tthird argument providing the address of the device-tree blob\n"
162 "\tis required. To boot a kernel with a device-tree blob but\n"
163 "\twithout an initrd image, use a '-' for the initrd argument.\n"
164#endif
Tom Rini36162182023-10-07 15:13:08 -0400165 );
Tom Rini5db28902016-08-12 08:31:15 -0400166
167U_BOOT_CMD(
168 booti, CONFIG_SYS_MAXARGS, 1, do_booti,
Atish Patra3cedc972019-05-06 17:49:39 -0700169 "boot Linux kernel 'Image' format from memory", booti_help_text
Tom Rini5db28902016-08-12 08:31:15 -0400170);