blob: ffc09630b7d0d8037279f30fba61da0e7dab7403 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00002/*
Gabe Blackd3a2bc32011-12-05 12:09:23 +00003 * Copyright (c) 2011 The Chromium OS Authors.
wdenk2262cfe2002-11-18 00:14:45 +00004 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02005 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk2262cfe2002-11-18 00:14:45 +00006 */
7
wdenk8bde7f72003-06-27 21:31:46 +00008/*
Graeme Russdbf71152011-04-13 19:43:26 +10009 * Linux x86 zImage and bzImage loading
wdenk8bde7f72003-06-27 21:31:46 +000010 *
11 * based on the procdure described in
wdenk2262cfe2002-11-18 00:14:45 +000012 * linux/Documentation/i386/boot.txt
13 */
14
15#include <common.h>
Simon Glasscdbff9f2019-08-01 09:46:50 -060016#include <env.h>
Simon Glass36bf4462019-11-14 12:57:42 -070017#include <irq_func.h>
Ivan Gorinov5d732922018-03-26 18:06:54 -070018#include <malloc.h>
Simon Glass776cc202020-04-08 16:57:36 -060019#include <acpi/acpi_table.h>
wdenk2262cfe2002-11-18 00:14:45 +000020#include <asm/io.h>
21#include <asm/ptrace.h>
22#include <asm/zimage.h>
wdenk2262cfe2002-11-18 00:14:45 +000023#include <asm/byteorder.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060024#include <asm/bootm.h>
Graeme Russ95ffaba2010-04-24 00:05:49 +100025#include <asm/bootparam.h>
Vadim Bendebury3cdc18a2012-10-23 18:04:34 +000026#ifdef CONFIG_SYS_COREBOOT
27#include <asm/arch/timestamp.h>
28#endif
Stefan Reinauer61e0ea92012-10-23 18:04:37 +000029#include <linux/compiler.h>
Ivan Gorinov5d732922018-03-26 18:06:54 -070030#include <linux/libfdt.h>
wdenk2262cfe2002-11-18 00:14:45 +000031
32/*
33 * Memory lay-out:
wdenk8bde7f72003-06-27 21:31:46 +000034 *
wdenk2262cfe2002-11-18 00:14:45 +000035 * relative to setup_base (which is 0x90000 currently)
wdenk8bde7f72003-06-27 21:31:46 +000036 *
37 * 0x0000-0x7FFF Real mode kernel
wdenk2262cfe2002-11-18 00:14:45 +000038 * 0x8000-0x8FFF Stack and heap
39 * 0x9000-0x90FF Kernel command line
40 */
Graeme Russ83088af2011-11-08 02:33:15 +000041#define DEFAULT_SETUP_BASE 0x90000
42#define COMMAND_LINE_OFFSET 0x9000
43#define HEAP_END_OFFSET 0x8e00
wdenk2262cfe2002-11-18 00:14:45 +000044
Graeme Russ83088af2011-11-08 02:33:15 +000045#define COMMAND_LINE_SIZE 2048
wdenk2262cfe2002-11-18 00:14:45 +000046
47static void build_command_line(char *command_line, int auto_boot)
48{
49 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000050
wdenk2262cfe2002-11-18 00:14:45 +000051 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000052
Simon Glass00caae62017-08-03 12:22:12 -060053 env_command_line = env_get("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000054
wdenk2262cfe2002-11-18 00:14:45 +000055 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000056 if (!strstr(env_command_line, "console=")) {
Simon Glass00caae62017-08-03 12:22:12 -060057 if (!strcmp(env_get("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000058
wdenk2262cfe2002-11-18 00:14:45 +000059 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000060 sprintf(command_line, "console=ttyS0,%s ",
Simon Glass00caae62017-08-03 12:22:12 -060061 env_get("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000062 }
63 }
wdenk8bde7f72003-06-27 21:31:46 +000064
Graeme Russ83088af2011-11-08 02:33:15 +000065 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000066 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000067
Graeme Russ83088af2011-11-08 02:33:15 +000068 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000069 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000070
wdenk2262cfe2002-11-18 00:14:45 +000071 printf("Kernel command line: \"%s\"\n", command_line);
72}
73
Gabe Black69370d12011-12-05 12:09:26 +000074static int kernel_magic_ok(struct setup_header *hdr)
75{
76 if (KERNEL_MAGIC != hdr->boot_flag) {
77 printf("Error: Invalid Boot Flag "
78 "(found 0x%04x, expected 0x%04x)\n",
79 hdr->boot_flag, KERNEL_MAGIC);
80 return 0;
81 } else {
82 printf("Valid Boot Flag\n");
83 return 1;
84 }
85}
86
87static int get_boot_protocol(struct setup_header *hdr)
88{
89 if (hdr->header == KERNEL_V2_MAGIC) {
90 printf("Magic signature found\n");
91 return hdr->version;
92 } else {
93 /* Very old kernel */
94 printf("Magic signature not found\n");
95 return 0x0100;
96 }
97}
98
Ivan Gorinov5d732922018-03-26 18:06:54 -070099static int setup_device_tree(struct setup_header *hdr, const void *fdt_blob)
100{
101 int bootproto = get_boot_protocol(hdr);
102 struct setup_data *sd;
103 int size;
104
105 if (bootproto < 0x0209)
106 return -ENOTSUPP;
107
108 if (!fdt_blob)
109 return 0;
110
111 size = fdt_totalsize(fdt_blob);
112 if (size < 0)
113 return -EINVAL;
114
115 size += sizeof(struct setup_data);
116 sd = (struct setup_data *)malloc(size);
117 if (!sd) {
118 printf("Not enough memory for DTB setup data\n");
119 return -ENOMEM;
120 }
121
122 sd->next = hdr->setup_data;
123 sd->type = SETUP_DTB;
124 sd->len = fdt_totalsize(fdt_blob);
125 memcpy(sd->data, fdt_blob, sd->len);
126 hdr->setup_data = (unsigned long)sd;
127
128 return 0;
129}
130
Gabe Black69370d12011-12-05 12:09:26 +0000131struct boot_params *load_zimage(char *image, unsigned long kernel_size,
Simon Glass76539382014-10-10 08:21:56 -0600132 ulong *load_addressp)
wdenk2262cfe2002-11-18 00:14:45 +0000133{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000134 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000135 int setup_size;
136 int bootproto;
137 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000138
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000139 struct boot_params *params = (struct boot_params *)image;
140 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000141
Graeme Russ83088af2011-11-08 02:33:15 +0000142 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000143 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000144
Gabe Black69370d12011-12-05 12:09:26 +0000145 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000146 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000147
wdenk2262cfe2002-11-18 00:14:45 +0000148 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000149 if (0 == hdr->setup_sects) {
150 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000151 setup_size = 5 * 512;
152 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000153 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000154 }
wdenk8bde7f72003-06-27 21:31:46 +0000155
Graeme Russ95ffaba2010-04-24 00:05:49 +1000156 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
157
Graeme Russ83088af2011-11-08 02:33:15 +0000158 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000159 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000160
Gabe Black69370d12011-12-05 12:09:26 +0000161 /* determine boot protocol version */
162 bootproto = get_boot_protocol(hdr);
163
164 printf("Using boot protocol version %x.%02x\n",
165 (bootproto & 0xff00) >> 8, bootproto & 0xff);
166
167 if (bootproto >= 0x0200) {
168 if (hdr->setup_sects >= 15) {
169 printf("Linux kernel version %s\n",
170 (char *)params +
171 hdr->kernel_version + 0x200);
172 } else {
173 printf("Setup Sectors < 15 - "
174 "Cannot print kernel version.\n");
175 }
176 }
177
wdenk2262cfe2002-11-18 00:14:45 +0000178 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000179 big_image = (bootproto >= 0x0200) &&
180 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000181
Graeme Russ95ffaba2010-04-24 00:05:49 +1000182 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000183 if (big_image)
Simon Glass76539382014-10-10 08:21:56 -0600184 *load_addressp = BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000185 else
Simon Glass76539382014-10-10 08:21:56 -0600186 *load_addressp = ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000187
Gabe Black233dbc12011-12-05 12:09:24 +0000188 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
189 memset(setup_base, 0, sizeof(*setup_base));
190 setup_base->hdr = params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000191
Gabe Black69370d12011-12-05 12:09:26 +0000192 if (bootproto >= 0x0204)
193 kernel_size = hdr->syssize * 16;
194 else
195 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000196
wdenk8bde7f72003-06-27 21:31:46 +0000197 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000198 /*
199 * A very old kernel MUST have its real-mode code
200 * loaded at 0x90000
201 */
Simon Glass42fd8c12017-01-16 07:03:35 -0700202 if ((ulong)setup_base != 0x90000) {
wdenk2262cfe2002-11-18 00:14:45 +0000203 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000204 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000205
Graeme Russ83088af2011-11-08 02:33:15 +0000206 /* Copy the command line */
207 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000208 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000209 COMMAND_LINE_SIZE);
210
211 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000212 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000213 }
wdenk8bde7f72003-06-27 21:31:46 +0000214
wdenk2262cfe2002-11-18 00:14:45 +0000215 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000216 memset((u8 *)0x90000 + setup_size, 0,
217 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000218 }
wdenk8bde7f72003-06-27 21:31:46 +0000219
Gabe Black69370d12011-12-05 12:09:26 +0000220 if (big_image) {
221 if (kernel_size > BZIMAGE_MAX_SIZE) {
222 printf("Error: bzImage kernel too big! "
223 "(size: %ld, max: %d)\n",
224 kernel_size, BZIMAGE_MAX_SIZE);
225 return 0;
226 }
227 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
228 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
229 kernel_size, ZIMAGE_MAX_SIZE);
230 return 0;
231 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000232
Simon Glass76539382014-10-10 08:21:56 -0600233 printf("Loading %s at address %lx (%ld bytes)\n",
234 big_image ? "bzImage" : "zImage", *load_addressp, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000235
Simon Glass76539382014-10-10 08:21:56 -0600236 memmove((void *)*load_addressp, image + setup_size, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000237
238 return setup_base;
239}
240
241int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
242 unsigned long initrd_addr, unsigned long initrd_size)
243{
244 struct setup_header *hdr = &setup_base->hdr;
245 int bootproto = get_boot_protocol(hdr);
246
Gabe Black69370d12011-12-05 12:09:26 +0000247 setup_base->e820_entries = install_e820_map(
248 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Gabe Black69370d12011-12-05 12:09:26 +0000249
250 if (bootproto == 0x0100) {
251 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
252 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
253 }
wdenk2262cfe2002-11-18 00:14:45 +0000254 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000255 hdr->type_of_loader = 8;
256
wdenk2262cfe2002-11-18 00:14:45 +0000257 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000258 printf("Initial RAM disk at linear address "
259 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000260 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000261
Graeme Russ95ffaba2010-04-24 00:05:49 +1000262 hdr->ramdisk_image = initrd_addr;
263 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000264 }
265 }
wdenk8bde7f72003-06-27 21:31:46 +0000266
wdenk2262cfe2002-11-18 00:14:45 +0000267 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000268 hdr->heap_end_ptr = HEAP_END_OFFSET;
269 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000270 }
wdenk8bde7f72003-06-27 21:31:46 +0000271
Simon Glass97d1e0c2014-10-19 21:11:21 -0600272 if (cmd_line) {
273 if (bootproto >= 0x0202) {
274 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
275 } else if (bootproto >= 0x0200) {
276 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
277 setup_base->screen_info.cl_offset =
278 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000279
Simon Glass97d1e0c2014-10-19 21:11:21 -0600280 hdr->setup_move_size = 0x9100;
281 }
282
283 /* build command line at COMMAND_LINE_OFFSET */
284 build_command_line(cmd_line, auto_boot);
wdenk2262cfe2002-11-18 00:14:45 +0000285 }
wdenk2262cfe2002-11-18 00:14:45 +0000286
Andy Shevchenko378960d2018-01-10 19:40:14 +0200287#ifdef CONFIG_INTEL_MID
288 if (bootproto >= 0x0207)
289 hdr->hardware_subarch = X86_SUBARCH_INTEL_MID;
290#endif
291
Andy Shevchenkod905aa82019-09-13 18:42:00 +0300292#ifdef CONFIG_GENERATE_ACPI_TABLE
293 setup_base->acpi_rsdp_addr = acpi_get_rsdp_addr();
294#endif
295
Ivan Gorinov5d732922018-03-26 18:06:54 -0700296 setup_device_tree(hdr, (const void *)env_get_hex("fdtaddr", 0));
Bin Menga4520022015-07-06 16:31:36 +0800297 setup_video(&setup_base->screen_info);
298
Bin Meng1fdeacd2018-08-23 08:24:10 -0700299#ifdef CONFIG_EFI_STUB
300 setup_efi_info(&setup_base->efi_info);
301#endif
302
Gabe Black69370d12011-12-05 12:09:26 +0000303 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000304}
305
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100306void setup_pcat_compatibility(void)
307 __attribute__((weak, alias("__setup_pcat_compatibility")));
308
309void __setup_pcat_compatibility(void)
310{
311}
312
Graeme Russ83088af2011-11-08 02:33:15 +0000313int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000314{
Gabe Black69370d12011-12-05 12:09:26 +0000315 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100316 void *bzImage_addr = NULL;
Simon Glass76539382014-10-10 08:21:56 -0600317 ulong load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100318 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000319 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000320 ulong initrd_addr = 0;
321 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000322
323 disable_interrupts();
324
325 /* Setup board for maximum PC/AT Compatibility */
326 setup_pcat_compatibility();
327
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000328 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100329 /* argv[1] holds the address of the bzImage */
330 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000331 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600332 s = env_get("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000333 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000334
Graeme Russabe98f42010-10-07 20:03:19 +1100335 if (s)
336 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
337
Gabe Black6f9d9982011-12-05 12:09:27 +0000338 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100339 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000340 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000341 }
342
343 if (argc >= 4)
344 initrd_addr = simple_strtoul(argv[3], NULL, 16);
345 if (argc >= 5)
346 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000347
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000348 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000349 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000350
Graeme Russ83088af2011-11-08 02:33:15 +0000351 if (!base_ptr) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600352 puts("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000353 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000354 }
Gabe Black69370d12011-12-05 12:09:26 +0000355 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000356 0, initrd_addr, initrd_size)) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600357 puts("Setting up boot parameters failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000358 return -1;
359 }
360
Gabe Black69370d12011-12-05 12:09:26 +0000361 /* we assume that the kernel is in place */
Simon Glass76539382014-10-10 08:21:56 -0600362 return boot_linux_kernel((ulong)base_ptr, load_address, false);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000363}
364
365U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000366 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000367 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000368 "[addr] [size] [initrd addr] [initrd size]\n"
369 " addr - The optional starting address of the bzimage.\n"
370 " If not set it defaults to the environment\n"
371 " variable \"fileaddr\".\n"
372 " size - The optional size of the bzimage. Defaults to\n"
373 " zero.\n"
374 " initrd addr - The address of the initrd image to use, if any.\n"
375 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000376);