blob: 0442fda760652a2e57ff1aea027a979d319442ec [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>
Ivan Gorinov5d732922018-03-26 18:06:54 -070016#include <malloc.h>
Bin Meng45410da2018-01-30 05:01:16 -080017#include <asm/acpi_table.h>
wdenk2262cfe2002-11-18 00:14:45 +000018#include <asm/io.h>
19#include <asm/ptrace.h>
20#include <asm/zimage.h>
wdenk2262cfe2002-11-18 00:14:45 +000021#include <asm/byteorder.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060022#include <asm/bootm.h>
Graeme Russ95ffaba2010-04-24 00:05:49 +100023#include <asm/bootparam.h>
Vadim Bendebury3cdc18a2012-10-23 18:04:34 +000024#ifdef CONFIG_SYS_COREBOOT
25#include <asm/arch/timestamp.h>
26#endif
Stefan Reinauer61e0ea92012-10-23 18:04:37 +000027#include <linux/compiler.h>
Ivan Gorinov5d732922018-03-26 18:06:54 -070028#include <linux/libfdt.h>
wdenk2262cfe2002-11-18 00:14:45 +000029
30/*
31 * Memory lay-out:
wdenk8bde7f72003-06-27 21:31:46 +000032 *
wdenk2262cfe2002-11-18 00:14:45 +000033 * relative to setup_base (which is 0x90000 currently)
wdenk8bde7f72003-06-27 21:31:46 +000034 *
35 * 0x0000-0x7FFF Real mode kernel
wdenk2262cfe2002-11-18 00:14:45 +000036 * 0x8000-0x8FFF Stack and heap
37 * 0x9000-0x90FF Kernel command line
38 */
Graeme Russ83088af2011-11-08 02:33:15 +000039#define DEFAULT_SETUP_BASE 0x90000
40#define COMMAND_LINE_OFFSET 0x9000
41#define HEAP_END_OFFSET 0x8e00
wdenk2262cfe2002-11-18 00:14:45 +000042
Graeme Russ83088af2011-11-08 02:33:15 +000043#define COMMAND_LINE_SIZE 2048
wdenk2262cfe2002-11-18 00:14:45 +000044
45static void build_command_line(char *command_line, int auto_boot)
46{
47 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000048
wdenk2262cfe2002-11-18 00:14:45 +000049 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000050
Simon Glass00caae62017-08-03 12:22:12 -060051 env_command_line = env_get("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000052
wdenk2262cfe2002-11-18 00:14:45 +000053 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000054 if (!strstr(env_command_line, "console=")) {
Simon Glass00caae62017-08-03 12:22:12 -060055 if (!strcmp(env_get("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000056
wdenk2262cfe2002-11-18 00:14:45 +000057 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000058 sprintf(command_line, "console=ttyS0,%s ",
Simon Glass00caae62017-08-03 12:22:12 -060059 env_get("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000060 }
61 }
wdenk8bde7f72003-06-27 21:31:46 +000062
Graeme Russ83088af2011-11-08 02:33:15 +000063 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000064 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000065
Graeme Russ83088af2011-11-08 02:33:15 +000066 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000067 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000068
wdenk2262cfe2002-11-18 00:14:45 +000069 printf("Kernel command line: \"%s\"\n", command_line);
70}
71
Gabe Black69370d12011-12-05 12:09:26 +000072static int kernel_magic_ok(struct setup_header *hdr)
73{
74 if (KERNEL_MAGIC != hdr->boot_flag) {
75 printf("Error: Invalid Boot Flag "
76 "(found 0x%04x, expected 0x%04x)\n",
77 hdr->boot_flag, KERNEL_MAGIC);
78 return 0;
79 } else {
80 printf("Valid Boot Flag\n");
81 return 1;
82 }
83}
84
85static int get_boot_protocol(struct setup_header *hdr)
86{
87 if (hdr->header == KERNEL_V2_MAGIC) {
88 printf("Magic signature found\n");
89 return hdr->version;
90 } else {
91 /* Very old kernel */
92 printf("Magic signature not found\n");
93 return 0x0100;
94 }
95}
96
Ivan Gorinov5d732922018-03-26 18:06:54 -070097static int setup_device_tree(struct setup_header *hdr, const void *fdt_blob)
98{
99 int bootproto = get_boot_protocol(hdr);
100 struct setup_data *sd;
101 int size;
102
103 if (bootproto < 0x0209)
104 return -ENOTSUPP;
105
106 if (!fdt_blob)
107 return 0;
108
109 size = fdt_totalsize(fdt_blob);
110 if (size < 0)
111 return -EINVAL;
112
113 size += sizeof(struct setup_data);
114 sd = (struct setup_data *)malloc(size);
115 if (!sd) {
116 printf("Not enough memory for DTB setup data\n");
117 return -ENOMEM;
118 }
119
120 sd->next = hdr->setup_data;
121 sd->type = SETUP_DTB;
122 sd->len = fdt_totalsize(fdt_blob);
123 memcpy(sd->data, fdt_blob, sd->len);
124 hdr->setup_data = (unsigned long)sd;
125
126 return 0;
127}
128
Gabe Black69370d12011-12-05 12:09:26 +0000129struct boot_params *load_zimage(char *image, unsigned long kernel_size,
Simon Glass76539382014-10-10 08:21:56 -0600130 ulong *load_addressp)
wdenk2262cfe2002-11-18 00:14:45 +0000131{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000132 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000133 int setup_size;
134 int bootproto;
135 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000136
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000137 struct boot_params *params = (struct boot_params *)image;
138 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000139
Graeme Russ83088af2011-11-08 02:33:15 +0000140 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000141 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000142
Gabe Black69370d12011-12-05 12:09:26 +0000143 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000144 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000145
wdenk2262cfe2002-11-18 00:14:45 +0000146 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000147 if (0 == hdr->setup_sects) {
148 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000149 setup_size = 5 * 512;
150 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000151 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000152 }
wdenk8bde7f72003-06-27 21:31:46 +0000153
Graeme Russ95ffaba2010-04-24 00:05:49 +1000154 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
155
Graeme Russ83088af2011-11-08 02:33:15 +0000156 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000157 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000158
Gabe Black69370d12011-12-05 12:09:26 +0000159 /* determine boot protocol version */
160 bootproto = get_boot_protocol(hdr);
161
162 printf("Using boot protocol version %x.%02x\n",
163 (bootproto & 0xff00) >> 8, bootproto & 0xff);
164
165 if (bootproto >= 0x0200) {
166 if (hdr->setup_sects >= 15) {
167 printf("Linux kernel version %s\n",
168 (char *)params +
169 hdr->kernel_version + 0x200);
170 } else {
171 printf("Setup Sectors < 15 - "
172 "Cannot print kernel version.\n");
173 }
174 }
175
wdenk2262cfe2002-11-18 00:14:45 +0000176 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000177 big_image = (bootproto >= 0x0200) &&
178 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000179
Graeme Russ95ffaba2010-04-24 00:05:49 +1000180 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000181 if (big_image)
Simon Glass76539382014-10-10 08:21:56 -0600182 *load_addressp = BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000183 else
Simon Glass76539382014-10-10 08:21:56 -0600184 *load_addressp = ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000185
Gabe Black233dbc12011-12-05 12:09:24 +0000186 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
187 memset(setup_base, 0, sizeof(*setup_base));
188 setup_base->hdr = params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000189
Gabe Black69370d12011-12-05 12:09:26 +0000190 if (bootproto >= 0x0204)
191 kernel_size = hdr->syssize * 16;
192 else
193 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000194
wdenk8bde7f72003-06-27 21:31:46 +0000195 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000196 /*
197 * A very old kernel MUST have its real-mode code
198 * loaded at 0x90000
199 */
Simon Glass42fd8c12017-01-16 07:03:35 -0700200 if ((ulong)setup_base != 0x90000) {
wdenk2262cfe2002-11-18 00:14:45 +0000201 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000202 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000203
Graeme Russ83088af2011-11-08 02:33:15 +0000204 /* Copy the command line */
205 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000206 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000207 COMMAND_LINE_SIZE);
208
209 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000210 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000211 }
wdenk8bde7f72003-06-27 21:31:46 +0000212
wdenk2262cfe2002-11-18 00:14:45 +0000213 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000214 memset((u8 *)0x90000 + setup_size, 0,
215 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000216 }
wdenk8bde7f72003-06-27 21:31:46 +0000217
Gabe Black69370d12011-12-05 12:09:26 +0000218 if (big_image) {
219 if (kernel_size > BZIMAGE_MAX_SIZE) {
220 printf("Error: bzImage kernel too big! "
221 "(size: %ld, max: %d)\n",
222 kernel_size, BZIMAGE_MAX_SIZE);
223 return 0;
224 }
225 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
226 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
227 kernel_size, ZIMAGE_MAX_SIZE);
228 return 0;
229 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000230
Simon Glass76539382014-10-10 08:21:56 -0600231 printf("Loading %s at address %lx (%ld bytes)\n",
232 big_image ? "bzImage" : "zImage", *load_addressp, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000233
Simon Glass76539382014-10-10 08:21:56 -0600234 memmove((void *)*load_addressp, image + setup_size, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000235
236 return setup_base;
237}
238
239int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
240 unsigned long initrd_addr, unsigned long initrd_size)
241{
242 struct setup_header *hdr = &setup_base->hdr;
243 int bootproto = get_boot_protocol(hdr);
244
Gabe Black69370d12011-12-05 12:09:26 +0000245 setup_base->e820_entries = install_e820_map(
246 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Gabe Black69370d12011-12-05 12:09:26 +0000247
248 if (bootproto == 0x0100) {
249 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
250 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
251 }
wdenk2262cfe2002-11-18 00:14:45 +0000252 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000253 hdr->type_of_loader = 8;
254
wdenk2262cfe2002-11-18 00:14:45 +0000255 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000256 printf("Initial RAM disk at linear address "
257 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000258 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000259
Graeme Russ95ffaba2010-04-24 00:05:49 +1000260 hdr->ramdisk_image = initrd_addr;
261 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000262 }
263 }
wdenk8bde7f72003-06-27 21:31:46 +0000264
wdenk2262cfe2002-11-18 00:14:45 +0000265 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000266 hdr->heap_end_ptr = HEAP_END_OFFSET;
267 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000268 }
wdenk8bde7f72003-06-27 21:31:46 +0000269
Simon Glass97d1e0c2014-10-19 21:11:21 -0600270 if (cmd_line) {
271 if (bootproto >= 0x0202) {
272 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
273 } else if (bootproto >= 0x0200) {
274 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
275 setup_base->screen_info.cl_offset =
276 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000277
Simon Glass97d1e0c2014-10-19 21:11:21 -0600278 hdr->setup_move_size = 0x9100;
279 }
280
281 /* build command line at COMMAND_LINE_OFFSET */
282 build_command_line(cmd_line, auto_boot);
wdenk2262cfe2002-11-18 00:14:45 +0000283 }
wdenk2262cfe2002-11-18 00:14:45 +0000284
Andy Shevchenko378960d2018-01-10 19:40:14 +0200285#ifdef CONFIG_INTEL_MID
286 if (bootproto >= 0x0207)
287 hdr->hardware_subarch = X86_SUBARCH_INTEL_MID;
288#endif
289
Andy Shevchenko3469bf42018-01-10 19:40:15 +0200290#ifdef CONFIG_GENERATE_ACPI_TABLE
291 if (bootproto >= 0x020e)
Bin Meng45410da2018-01-30 05:01:16 -0800292 hdr->acpi_rsdp_addr = acpi_get_rsdp_addr();
Andy Shevchenko3469bf42018-01-10 19:40:15 +0200293#endif
294
Ivan Gorinov5d732922018-03-26 18:06:54 -0700295 setup_device_tree(hdr, (const void *)env_get_hex("fdtaddr", 0));
Bin Menga4520022015-07-06 16:31:36 +0800296 setup_video(&setup_base->screen_info);
297
Bin Meng1fdeacd2018-08-23 08:24:10 -0700298#ifdef CONFIG_EFI_STUB
299 setup_efi_info(&setup_base->efi_info);
300#endif
301
Gabe Black69370d12011-12-05 12:09:26 +0000302 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000303}
304
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100305void setup_pcat_compatibility(void)
306 __attribute__((weak, alias("__setup_pcat_compatibility")));
307
308void __setup_pcat_compatibility(void)
309{
310}
311
Graeme Russ83088af2011-11-08 02:33:15 +0000312int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000313{
Gabe Black69370d12011-12-05 12:09:26 +0000314 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100315 void *bzImage_addr = NULL;
Simon Glass76539382014-10-10 08:21:56 -0600316 ulong load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100317 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000318 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000319 ulong initrd_addr = 0;
320 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000321
322 disable_interrupts();
323
324 /* Setup board for maximum PC/AT Compatibility */
325 setup_pcat_compatibility();
326
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000327 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100328 /* argv[1] holds the address of the bzImage */
329 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000330 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600331 s = env_get("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000332 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000333
Graeme Russabe98f42010-10-07 20:03:19 +1100334 if (s)
335 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
336
Gabe Black6f9d9982011-12-05 12:09:27 +0000337 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100338 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000339 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000340 }
341
342 if (argc >= 4)
343 initrd_addr = simple_strtoul(argv[3], NULL, 16);
344 if (argc >= 5)
345 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000346
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000347 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000348 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000349
Graeme Russ83088af2011-11-08 02:33:15 +0000350 if (!base_ptr) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600351 puts("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000352 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000353 }
Gabe Black69370d12011-12-05 12:09:26 +0000354 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000355 0, initrd_addr, initrd_size)) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600356 puts("Setting up boot parameters failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000357 return -1;
358 }
359
Gabe Black69370d12011-12-05 12:09:26 +0000360 /* we assume that the kernel is in place */
Simon Glass76539382014-10-10 08:21:56 -0600361 return boot_linux_kernel((ulong)base_ptr, load_address, false);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000362}
363
364U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000365 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000366 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000367 "[addr] [size] [initrd addr] [initrd size]\n"
368 " addr - The optional starting address of the bzimage.\n"
369 " If not set it defaults to the environment\n"
370 " variable \"fileaddr\".\n"
371 " size - The optional size of the bzimage. Defaults to\n"
372 " zero.\n"
373 " initrd addr - The address of the initrd image to use, if any.\n"
374 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000375);