blob: 64d14e8911845fb9675f5f182b297a9e823ff5de [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk591dda52002-11-18 00:14:45 +00002/*
Gabe Black1cf51212011-12-05 12:09:23 +00003 * Copyright (c) 2011 The Chromium OS Authors.
wdenk591dda52002-11-18 00:14:45 +00004 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02005 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk591dda52002-11-18 00:14:45 +00006 */
7
wdenk57b2d802003-06-27 21:31:46 +00008/*
Graeme Russ45fc1d82011-04-13 19:43:26 +10009 * Linux x86 zImage and bzImage loading
wdenk57b2d802003-06-27 21:31:46 +000010 *
11 * based on the procdure described in
wdenk591dda52002-11-18 00:14:45 +000012 * linux/Documentation/i386/boot.txt
13 */
14
15#include <common.h>
Simon Glassed38aef2020-05-10 11:40:03 -060016#include <command.h>
Simon Glass83c2e492019-08-01 09:46:50 -060017#include <env.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070018#include <irq_func.h>
Ivan Gorinov901bb0b2018-03-26 18:06:54 -070019#include <malloc.h>
Simon Glass858fed12020-04-08 16:57:36 -060020#include <acpi/acpi_table.h>
wdenk591dda52002-11-18 00:14:45 +000021#include <asm/io.h>
22#include <asm/ptrace.h>
23#include <asm/zimage.h>
wdenk591dda52002-11-18 00:14:45 +000024#include <asm/byteorder.h>
Simon Glassaa83f2b2014-10-19 21:11:20 -060025#include <asm/bootm.h>
Graeme Russ1bab1042010-04-24 00:05:49 +100026#include <asm/bootparam.h>
Vadim Bendebury8cd22c82012-10-23 18:04:34 +000027#ifdef CONFIG_SYS_COREBOOT
28#include <asm/arch/timestamp.h>
29#endif
Stefan Reinauer2e5225e2012-10-23 18:04:37 +000030#include <linux/compiler.h>
Ivan Gorinov901bb0b2018-03-26 18:06:54 -070031#include <linux/libfdt.h>
wdenk591dda52002-11-18 00:14:45 +000032
33/*
34 * Memory lay-out:
wdenk57b2d802003-06-27 21:31:46 +000035 *
wdenk591dda52002-11-18 00:14:45 +000036 * relative to setup_base (which is 0x90000 currently)
wdenk57b2d802003-06-27 21:31:46 +000037 *
38 * 0x0000-0x7FFF Real mode kernel
wdenk591dda52002-11-18 00:14:45 +000039 * 0x8000-0x8FFF Stack and heap
40 * 0x9000-0x90FF Kernel command line
41 */
Graeme Russ883c6032011-11-08 02:33:15 +000042#define DEFAULT_SETUP_BASE 0x90000
43#define COMMAND_LINE_OFFSET 0x9000
44#define HEAP_END_OFFSET 0x8e00
wdenk591dda52002-11-18 00:14:45 +000045
Graeme Russ883c6032011-11-08 02:33:15 +000046#define COMMAND_LINE_SIZE 2048
wdenk591dda52002-11-18 00:14:45 +000047
48static void build_command_line(char *command_line, int auto_boot)
49{
50 char *env_command_line;
wdenk57b2d802003-06-27 21:31:46 +000051
wdenk591dda52002-11-18 00:14:45 +000052 command_line[0] = '\0';
wdenk57b2d802003-06-27 21:31:46 +000053
Simon Glass64b723f2017-08-03 12:22:12 -060054 env_command_line = env_get("bootargs");
wdenk57b2d802003-06-27 21:31:46 +000055
wdenk591dda52002-11-18 00:14:45 +000056 /* set console= argument if we use a serial console */
Graeme Russ883c6032011-11-08 02:33:15 +000057 if (!strstr(env_command_line, "console=")) {
Simon Glass64b723f2017-08-03 12:22:12 -060058 if (!strcmp(env_get("stdout"), "serial")) {
wdenk57b2d802003-06-27 21:31:46 +000059
wdenk591dda52002-11-18 00:14:45 +000060 /* We seem to use serial console */
wdenk57b2d802003-06-27 21:31:46 +000061 sprintf(command_line, "console=ttyS0,%s ",
Simon Glass64b723f2017-08-03 12:22:12 -060062 env_get("baudrate"));
wdenk591dda52002-11-18 00:14:45 +000063 }
64 }
wdenk57b2d802003-06-27 21:31:46 +000065
Graeme Russ883c6032011-11-08 02:33:15 +000066 if (auto_boot)
wdenk591dda52002-11-18 00:14:45 +000067 strcat(command_line, "auto ");
wdenk57b2d802003-06-27 21:31:46 +000068
Graeme Russ883c6032011-11-08 02:33:15 +000069 if (env_command_line)
wdenk591dda52002-11-18 00:14:45 +000070 strcat(command_line, env_command_line);
wdenk57b2d802003-06-27 21:31:46 +000071
wdenk591dda52002-11-18 00:14:45 +000072 printf("Kernel command line: \"%s\"\n", command_line);
73}
74
Gabe Black540c2622011-12-05 12:09:26 +000075static int kernel_magic_ok(struct setup_header *hdr)
wdenk591dda52002-11-18 00:14:45 +000076{
Graeme Russ1bab1042010-04-24 00:05:49 +100077 if (KERNEL_MAGIC != hdr->boot_flag) {
Gabe Black1cf51212011-12-05 12:09:23 +000078 printf("Error: Invalid Boot Flag "
79 "(found 0x%04x, expected 0x%04x)\n",
80 hdr->boot_flag, KERNEL_MAGIC);
wdenk591dda52002-11-18 00:14:45 +000081 return 0;
Graeme Russ1bab1042010-04-24 00:05:49 +100082 } else {
83 printf("Valid Boot Flag\n");
Gabe Black540c2622011-12-05 12:09:26 +000084 return 1;
wdenk591dda52002-11-18 00:14:45 +000085 }
Gabe Black540c2622011-12-05 12:09:26 +000086}
wdenk57b2d802003-06-27 21:31:46 +000087
Gabe Black540c2622011-12-05 12:09:26 +000088static int get_boot_protocol(struct setup_header *hdr)
89{
90 if (hdr->header == KERNEL_V2_MAGIC) {
Graeme Russ1bab1042010-04-24 00:05:49 +100091 printf("Magic signature found\n");
Gabe Black540c2622011-12-05 12:09:26 +000092 return hdr->version;
wdenk591dda52002-11-18 00:14:45 +000093 } else {
94 /* Very old kernel */
Graeme Russ1bab1042010-04-24 00:05:49 +100095 printf("Magic signature not found\n");
Gabe Black540c2622011-12-05 12:09:26 +000096 return 0x0100;
wdenk591dda52002-11-18 00:14:45 +000097 }
Gabe Black540c2622011-12-05 12:09:26 +000098}
99
Ivan Gorinov901bb0b2018-03-26 18:06:54 -0700100static int setup_device_tree(struct setup_header *hdr, const void *fdt_blob)
101{
102 int bootproto = get_boot_protocol(hdr);
103 struct setup_data *sd;
104 int size;
105
106 if (bootproto < 0x0209)
107 return -ENOTSUPP;
108
109 if (!fdt_blob)
110 return 0;
111
112 size = fdt_totalsize(fdt_blob);
113 if (size < 0)
114 return -EINVAL;
115
116 size += sizeof(struct setup_data);
117 sd = (struct setup_data *)malloc(size);
118 if (!sd) {
119 printf("Not enough memory for DTB setup data\n");
120 return -ENOMEM;
121 }
122
123 sd->next = hdr->setup_data;
124 sd->type = SETUP_DTB;
125 sd->len = fdt_totalsize(fdt_blob);
126 memcpy(sd->data, fdt_blob, sd->len);
127 hdr->setup_data = (unsigned long)sd;
128
129 return 0;
130}
131
Gabe Black540c2622011-12-05 12:09:26 +0000132struct boot_params *load_zimage(char *image, unsigned long kernel_size,
Simon Glassd98a5bd2014-10-10 08:21:56 -0600133 ulong *load_addressp)
Gabe Black540c2622011-12-05 12:09:26 +0000134{
135 struct boot_params *setup_base;
136 int setup_size;
137 int bootproto;
138 int big_image;
139
140 struct boot_params *params = (struct boot_params *)image;
141 struct setup_header *hdr = &params->hdr;
142
143 /* base address for real-mode segment */
144 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
145
146 if (!kernel_magic_ok(hdr))
147 return 0;
wdenk57b2d802003-06-27 21:31:46 +0000148
wdenk591dda52002-11-18 00:14:45 +0000149 /* determine size of setup */
Graeme Russ1bab1042010-04-24 00:05:49 +1000150 if (0 == hdr->setup_sects) {
151 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk591dda52002-11-18 00:14:45 +0000152 setup_size = 5 * 512;
153 } else {
Graeme Russ1bab1042010-04-24 00:05:49 +1000154 setup_size = (hdr->setup_sects + 1) * 512;
wdenk591dda52002-11-18 00:14:45 +0000155 }
wdenk57b2d802003-06-27 21:31:46 +0000156
Graeme Russ1bab1042010-04-24 00:05:49 +1000157 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
158
Graeme Russ883c6032011-11-08 02:33:15 +0000159 if (setup_size > SETUP_MAX_SIZE)
wdenk591dda52002-11-18 00:14:45 +0000160 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk57b2d802003-06-27 21:31:46 +0000161
Gabe Black540c2622011-12-05 12:09:26 +0000162 /* determine boot protocol version */
163 bootproto = get_boot_protocol(hdr);
164
165 printf("Using boot protocol version %x.%02x\n",
166 (bootproto & 0xff00) >> 8, bootproto & 0xff);
167
168 if (bootproto >= 0x0200) {
169 if (hdr->setup_sects >= 15) {
170 printf("Linux kernel version %s\n",
171 (char *)params +
172 hdr->kernel_version + 0x200);
173 } else {
174 printf("Setup Sectors < 15 - "
175 "Cannot print kernel version.\n");
176 }
177 }
178
wdenk591dda52002-11-18 00:14:45 +0000179 /* Determine image type */
Graeme Russ883c6032011-11-08 02:33:15 +0000180 big_image = (bootproto >= 0x0200) &&
181 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk57b2d802003-06-27 21:31:46 +0000182
Graeme Russ1bab1042010-04-24 00:05:49 +1000183 /* Determine load address */
Gabe Black1cf51212011-12-05 12:09:23 +0000184 if (big_image)
Simon Glassd98a5bd2014-10-10 08:21:56 -0600185 *load_addressp = BZIMAGE_LOAD_ADDR;
Gabe Black1cf51212011-12-05 12:09:23 +0000186 else
Simon Glassd98a5bd2014-10-10 08:21:56 -0600187 *load_addressp = ZIMAGE_LOAD_ADDR;
wdenk57b2d802003-06-27 21:31:46 +0000188
Gabe Blackc67a9482011-12-05 12:09:24 +0000189 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
190 memset(setup_base, 0, sizeof(*setup_base));
191 setup_base->hdr = params->hdr;
wdenk57b2d802003-06-27 21:31:46 +0000192
Gabe Black540c2622011-12-05 12:09:26 +0000193 if (bootproto >= 0x0204)
194 kernel_size = hdr->syssize * 16;
195 else
196 kernel_size -= setup_size;
wdenk57b2d802003-06-27 21:31:46 +0000197
wdenk57b2d802003-06-27 21:31:46 +0000198 if (bootproto == 0x0100) {
Graeme Russ883c6032011-11-08 02:33:15 +0000199 /*
200 * A very old kernel MUST have its real-mode code
201 * loaded at 0x90000
202 */
Simon Glassca37a392017-01-16 07:03:35 -0700203 if ((ulong)setup_base != 0x90000) {
wdenk591dda52002-11-18 00:14:45 +0000204 /* Copy the real-mode kernel */
Graeme Russ883c6032011-11-08 02:33:15 +0000205 memmove((void *)0x90000, setup_base, setup_size);
206
wdenk591dda52002-11-18 00:14:45 +0000207 /* Copy the command line */
Graeme Russ883c6032011-11-08 02:33:15 +0000208 memmove((void *)0x99000,
Gabe Black1cf51212011-12-05 12:09:23 +0000209 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ883c6032011-11-08 02:33:15 +0000210 COMMAND_LINE_SIZE);
wdenk57b2d802003-06-27 21:31:46 +0000211
Graeme Russ883c6032011-11-08 02:33:15 +0000212 /* Relocated */
Gabe Black1cf51212011-12-05 12:09:23 +0000213 setup_base = (struct boot_params *)0x90000;
wdenk591dda52002-11-18 00:14:45 +0000214 }
wdenk57b2d802003-06-27 21:31:46 +0000215
wdenk591dda52002-11-18 00:14:45 +0000216 /* It is recommended to clear memory up to the 32K mark */
Gabe Black1cf51212011-12-05 12:09:23 +0000217 memset((u8 *)0x90000 + setup_size, 0,
218 SETUP_MAX_SIZE - setup_size);
wdenk591dda52002-11-18 00:14:45 +0000219 }
wdenk57b2d802003-06-27 21:31:46 +0000220
Gabe Black540c2622011-12-05 12:09:26 +0000221 if (big_image) {
222 if (kernel_size > BZIMAGE_MAX_SIZE) {
223 printf("Error: bzImage kernel too big! "
224 "(size: %ld, max: %d)\n",
225 kernel_size, BZIMAGE_MAX_SIZE);
226 return 0;
227 }
228 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
229 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
230 kernel_size, ZIMAGE_MAX_SIZE);
231 return 0;
232 }
233
Simon Glassd98a5bd2014-10-10 08:21:56 -0600234 printf("Loading %s at address %lx (%ld bytes)\n",
235 big_image ? "bzImage" : "zImage", *load_addressp, kernel_size);
Gabe Black540c2622011-12-05 12:09:26 +0000236
Simon Glassd98a5bd2014-10-10 08:21:56 -0600237 memmove((void *)*load_addressp, image + setup_size, kernel_size);
Gabe Black540c2622011-12-05 12:09:26 +0000238
239 return setup_base;
240}
241
242int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
243 unsigned long initrd_addr, unsigned long initrd_size)
244{
245 struct setup_header *hdr = &setup_base->hdr;
246 int bootproto = get_boot_protocol(hdr);
247
Gabe Black540c2622011-12-05 12:09:26 +0000248 setup_base->e820_entries = install_e820_map(
249 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Graeme Russ1bab1042010-04-24 00:05:49 +1000250
Gabe Black540c2622011-12-05 12:09:26 +0000251 if (bootproto == 0x0100) {
252 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
253 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
254 }
wdenk591dda52002-11-18 00:14:45 +0000255 if (bootproto >= 0x0200) {
Graeme Russ1bab1042010-04-24 00:05:49 +1000256 hdr->type_of_loader = 8;
257
wdenk591dda52002-11-18 00:14:45 +0000258 if (initrd_addr) {
Gabe Black1cf51212011-12-05 12:09:23 +0000259 printf("Initial RAM disk at linear address "
260 "0x%08lx, size %ld bytes\n",
wdenk591dda52002-11-18 00:14:45 +0000261 initrd_addr, initrd_size);
wdenk57b2d802003-06-27 21:31:46 +0000262
Graeme Russ1bab1042010-04-24 00:05:49 +1000263 hdr->ramdisk_image = initrd_addr;
264 hdr->ramdisk_size = initrd_size;
wdenk591dda52002-11-18 00:14:45 +0000265 }
266 }
wdenk57b2d802003-06-27 21:31:46 +0000267
wdenk591dda52002-11-18 00:14:45 +0000268 if (bootproto >= 0x0201) {
Graeme Russ1bab1042010-04-24 00:05:49 +1000269 hdr->heap_end_ptr = HEAP_END_OFFSET;
270 hdr->loadflags |= HEAP_FLAG;
wdenk591dda52002-11-18 00:14:45 +0000271 }
wdenk57b2d802003-06-27 21:31:46 +0000272
Simon Glass4b4f2732014-10-19 21:11:21 -0600273 if (cmd_line) {
274 if (bootproto >= 0x0202) {
275 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
276 } else if (bootproto >= 0x0200) {
277 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
278 setup_base->screen_info.cl_offset =
279 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ1bab1042010-04-24 00:05:49 +1000280
Simon Glass4b4f2732014-10-19 21:11:21 -0600281 hdr->setup_move_size = 0x9100;
282 }
283
284 /* build command line at COMMAND_LINE_OFFSET */
285 build_command_line(cmd_line, auto_boot);
wdenk591dda52002-11-18 00:14:45 +0000286 }
wdenk591dda52002-11-18 00:14:45 +0000287
Andy Shevchenko8b7adf82018-01-10 19:40:14 +0200288#ifdef CONFIG_INTEL_MID
289 if (bootproto >= 0x0207)
290 hdr->hardware_subarch = X86_SUBARCH_INTEL_MID;
291#endif
292
Andy Shevchenkod87a21d2019-09-13 18:42:00 +0300293#ifdef CONFIG_GENERATE_ACPI_TABLE
294 setup_base->acpi_rsdp_addr = acpi_get_rsdp_addr();
295#endif
296
Ivan Gorinov901bb0b2018-03-26 18:06:54 -0700297 setup_device_tree(hdr, (const void *)env_get_hex("fdtaddr", 0));
Bin Mengf6d504f2015-07-06 16:31:36 +0800298 setup_video(&setup_base->screen_info);
299
Bin Meng106dcfc2018-08-23 08:24:10 -0700300#ifdef CONFIG_EFI_STUB
301 setup_efi_info(&setup_base->efi_info);
302#endif
303
Gabe Black540c2622011-12-05 12:09:26 +0000304 return 0;
wdenk591dda52002-11-18 00:14:45 +0000305}
306
Graeme Russ81d90dd2011-12-23 10:20:55 +1100307void setup_pcat_compatibility(void)
308 __attribute__((weak, alias("__setup_pcat_compatibility")));
309
310void __setup_pcat_compatibility(void)
311{
312}
313
Simon Glassed38aef2020-05-10 11:40:03 -0600314int do_zboot(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ1bab1042010-04-24 00:05:49 +1000315{
Gabe Black540c2622011-12-05 12:09:26 +0000316 struct boot_params *base_ptr;
Graeme Russ3134be22010-10-07 20:03:19 +1100317 void *bzImage_addr = NULL;
Simon Glassd98a5bd2014-10-10 08:21:56 -0600318 ulong load_address;
Graeme Russ3134be22010-10-07 20:03:19 +1100319 char *s;
Graeme Russ1bab1042010-04-24 00:05:49 +1000320 ulong bzImage_size = 0;
Gabe Black69b49ee2011-12-05 12:09:27 +0000321 ulong initrd_addr = 0;
322 ulong initrd_size = 0;
Graeme Russ1bab1042010-04-24 00:05:49 +1000323
324 disable_interrupts();
325
326 /* Setup board for maximum PC/AT Compatibility */
327 setup_pcat_compatibility();
328
Gabe Black1cf51212011-12-05 12:09:23 +0000329 if (argc >= 2) {
Graeme Russ3134be22010-10-07 20:03:19 +1100330 /* argv[1] holds the address of the bzImage */
331 s = argv[1];
Gabe Black1cf51212011-12-05 12:09:23 +0000332 } else {
Simon Glass64b723f2017-08-03 12:22:12 -0600333 s = env_get("fileaddr");
Gabe Black1cf51212011-12-05 12:09:23 +0000334 }
Graeme Russ1bab1042010-04-24 00:05:49 +1000335
Graeme Russ3134be22010-10-07 20:03:19 +1100336 if (s)
337 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
338
Gabe Black69b49ee2011-12-05 12:09:27 +0000339 if (argc >= 3) {
Graeme Russ3134be22010-10-07 20:03:19 +1100340 /* argv[2] holds the size of the bzImage */
Graeme Russ1bab1042010-04-24 00:05:49 +1000341 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black69b49ee2011-12-05 12:09:27 +0000342 }
343
344 if (argc >= 4)
345 initrd_addr = simple_strtoul(argv[3], NULL, 16);
346 if (argc >= 5)
347 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ1bab1042010-04-24 00:05:49 +1000348
Gabe Black1cf51212011-12-05 12:09:23 +0000349 /* Lets look for */
Gabe Black540c2622011-12-05 12:09:26 +0000350 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ1bab1042010-04-24 00:05:49 +1000351
Graeme Russ883c6032011-11-08 02:33:15 +0000352 if (!base_ptr) {
Simon Glassddf446b2014-10-10 08:21:59 -0600353 puts("## Kernel loading failed ...\n");
Gabe Black540c2622011-12-05 12:09:26 +0000354 return -1;
Graeme Russ1bab1042010-04-24 00:05:49 +1000355 }
Gabe Black540c2622011-12-05 12:09:26 +0000356 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black69b49ee2011-12-05 12:09:27 +0000357 0, initrd_addr, initrd_size)) {
Simon Glassddf446b2014-10-10 08:21:59 -0600358 puts("Setting up boot parameters failed ...\n");
Gabe Black540c2622011-12-05 12:09:26 +0000359 return -1;
360 }
361
Gabe Black540c2622011-12-05 12:09:26 +0000362 /* we assume that the kernel is in place */
Simon Glassd98a5bd2014-10-10 08:21:56 -0600363 return boot_linux_kernel((ulong)base_ptr, load_address, false);
Graeme Russ1bab1042010-04-24 00:05:49 +1000364}
365
366U_BOOT_CMD(
Gabe Black69b49ee2011-12-05 12:09:27 +0000367 zboot, 5, 0, do_zboot,
Graeme Russ1bab1042010-04-24 00:05:49 +1000368 "Boot bzImage",
Gabe Black69b49ee2011-12-05 12:09:27 +0000369 "[addr] [size] [initrd addr] [initrd size]\n"
370 " addr - The optional starting address of the bzimage.\n"
371 " If not set it defaults to the environment\n"
372 " variable \"fileaddr\".\n"
373 " size - The optional size of the bzimage. Defaults to\n"
374 " zero.\n"
375 " initrd addr - The address of the initrd image to use, if any.\n"
376 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ1bab1042010-04-24 00:05:49 +1000377);