blob: 2a82bc83d6cfcb19bc3b2513ae2bdc6920cca123 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
Gabe Blackd3a2bc32011-12-05 12:09:23 +00002 * Copyright (c) 2011 The Chromium OS Authors.
wdenk2262cfe2002-11-18 00:14:45 +00003 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02004 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk8bde7f72003-06-27 21:31:46 +00005 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00007 */
8
wdenk8bde7f72003-06-27 21:31:46 +00009/*
Graeme Russdbf71152011-04-13 19:43:26 +100010 * Linux x86 zImage and bzImage loading
wdenk8bde7f72003-06-27 21:31:46 +000011 *
12 * based on the procdure described in
wdenk2262cfe2002-11-18 00:14:45 +000013 * linux/Documentation/i386/boot.txt
14 */
15
16#include <common.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>
wdenk2262cfe2002-11-18 00:14:45 +000028
Bin Meng54c60012015-04-21 12:21:36 +080029DECLARE_GLOBAL_DATA_PTR;
30
wdenk2262cfe2002-11-18 00:14:45 +000031/*
32 * Memory lay-out:
wdenk8bde7f72003-06-27 21:31:46 +000033 *
wdenk2262cfe2002-11-18 00:14:45 +000034 * relative to setup_base (which is 0x90000 currently)
wdenk8bde7f72003-06-27 21:31:46 +000035 *
36 * 0x0000-0x7FFF Real mode kernel
wdenk2262cfe2002-11-18 00:14:45 +000037 * 0x8000-0x8FFF Stack and heap
38 * 0x9000-0x90FF Kernel command line
39 */
Graeme Russ83088af2011-11-08 02:33:15 +000040#define DEFAULT_SETUP_BASE 0x90000
41#define COMMAND_LINE_OFFSET 0x9000
42#define HEAP_END_OFFSET 0x8e00
wdenk2262cfe2002-11-18 00:14:45 +000043
Graeme Russ83088af2011-11-08 02:33:15 +000044#define COMMAND_LINE_SIZE 2048
wdenk2262cfe2002-11-18 00:14:45 +000045
46static void build_command_line(char *command_line, int auto_boot)
47{
48 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000049
wdenk2262cfe2002-11-18 00:14:45 +000050 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000051
Simon Glass00caae62017-08-03 12:22:12 -060052 env_command_line = env_get("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000053
wdenk2262cfe2002-11-18 00:14:45 +000054 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000055 if (!strstr(env_command_line, "console=")) {
Simon Glass00caae62017-08-03 12:22:12 -060056 if (!strcmp(env_get("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000057
wdenk2262cfe2002-11-18 00:14:45 +000058 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000059 sprintf(command_line, "console=ttyS0,%s ",
Simon Glass00caae62017-08-03 12:22:12 -060060 env_get("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000061 }
62 }
wdenk8bde7f72003-06-27 21:31:46 +000063
Graeme Russ83088af2011-11-08 02:33:15 +000064 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000065 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000066
Graeme Russ83088af2011-11-08 02:33:15 +000067 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000068 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000069
wdenk2262cfe2002-11-18 00:14:45 +000070 printf("Kernel command line: \"%s\"\n", command_line);
71}
72
Gabe Black69370d12011-12-05 12:09:26 +000073static int kernel_magic_ok(struct setup_header *hdr)
74{
75 if (KERNEL_MAGIC != hdr->boot_flag) {
76 printf("Error: Invalid Boot Flag "
77 "(found 0x%04x, expected 0x%04x)\n",
78 hdr->boot_flag, KERNEL_MAGIC);
79 return 0;
80 } else {
81 printf("Valid Boot Flag\n");
82 return 1;
83 }
84}
85
86static int get_boot_protocol(struct setup_header *hdr)
87{
88 if (hdr->header == KERNEL_V2_MAGIC) {
89 printf("Magic signature found\n");
90 return hdr->version;
91 } else {
92 /* Very old kernel */
93 printf("Magic signature not found\n");
94 return 0x0100;
95 }
96}
97
98struct boot_params *load_zimage(char *image, unsigned long kernel_size,
Simon Glass76539382014-10-10 08:21:56 -060099 ulong *load_addressp)
wdenk2262cfe2002-11-18 00:14:45 +0000100{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000101 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000102 int setup_size;
103 int bootproto;
104 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000105
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000106 struct boot_params *params = (struct boot_params *)image;
107 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000108
Graeme Russ83088af2011-11-08 02:33:15 +0000109 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000110 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000111
Gabe Black69370d12011-12-05 12:09:26 +0000112 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000113 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000114
wdenk2262cfe2002-11-18 00:14:45 +0000115 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000116 if (0 == hdr->setup_sects) {
117 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000118 setup_size = 5 * 512;
119 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000120 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000121 }
wdenk8bde7f72003-06-27 21:31:46 +0000122
Graeme Russ95ffaba2010-04-24 00:05:49 +1000123 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
124
Graeme Russ83088af2011-11-08 02:33:15 +0000125 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000126 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000127
Gabe Black69370d12011-12-05 12:09:26 +0000128 /* determine boot protocol version */
129 bootproto = get_boot_protocol(hdr);
130
131 printf("Using boot protocol version %x.%02x\n",
132 (bootproto & 0xff00) >> 8, bootproto & 0xff);
133
134 if (bootproto >= 0x0200) {
135 if (hdr->setup_sects >= 15) {
136 printf("Linux kernel version %s\n",
137 (char *)params +
138 hdr->kernel_version + 0x200);
139 } else {
140 printf("Setup Sectors < 15 - "
141 "Cannot print kernel version.\n");
142 }
143 }
144
wdenk2262cfe2002-11-18 00:14:45 +0000145 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000146 big_image = (bootproto >= 0x0200) &&
147 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000148
Graeme Russ95ffaba2010-04-24 00:05:49 +1000149 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000150 if (big_image)
Simon Glass76539382014-10-10 08:21:56 -0600151 *load_addressp = BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000152 else
Simon Glass76539382014-10-10 08:21:56 -0600153 *load_addressp = ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000154
Gabe Black233dbc12011-12-05 12:09:24 +0000155 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
156 memset(setup_base, 0, sizeof(*setup_base));
157 setup_base->hdr = params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000158
Gabe Black69370d12011-12-05 12:09:26 +0000159 if (bootproto >= 0x0204)
160 kernel_size = hdr->syssize * 16;
161 else
162 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000163
wdenk8bde7f72003-06-27 21:31:46 +0000164 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000165 /*
166 * A very old kernel MUST have its real-mode code
167 * loaded at 0x90000
168 */
Simon Glass42fd8c12017-01-16 07:03:35 -0700169 if ((ulong)setup_base != 0x90000) {
wdenk2262cfe2002-11-18 00:14:45 +0000170 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000171 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000172
Graeme Russ83088af2011-11-08 02:33:15 +0000173 /* Copy the command line */
174 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000175 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000176 COMMAND_LINE_SIZE);
177
178 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000179 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000180 }
wdenk8bde7f72003-06-27 21:31:46 +0000181
wdenk2262cfe2002-11-18 00:14:45 +0000182 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000183 memset((u8 *)0x90000 + setup_size, 0,
184 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000185 }
wdenk8bde7f72003-06-27 21:31:46 +0000186
Gabe Black69370d12011-12-05 12:09:26 +0000187 if (big_image) {
188 if (kernel_size > BZIMAGE_MAX_SIZE) {
189 printf("Error: bzImage kernel too big! "
190 "(size: %ld, max: %d)\n",
191 kernel_size, BZIMAGE_MAX_SIZE);
192 return 0;
193 }
194 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
195 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
196 kernel_size, ZIMAGE_MAX_SIZE);
197 return 0;
198 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000199
Simon Glass76539382014-10-10 08:21:56 -0600200 printf("Loading %s at address %lx (%ld bytes)\n",
201 big_image ? "bzImage" : "zImage", *load_addressp, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000202
Simon Glass76539382014-10-10 08:21:56 -0600203 memmove((void *)*load_addressp, image + setup_size, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000204
205 return setup_base;
206}
207
208int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
209 unsigned long initrd_addr, unsigned long initrd_size)
210{
211 struct setup_header *hdr = &setup_base->hdr;
212 int bootproto = get_boot_protocol(hdr);
213
Gabe Black69370d12011-12-05 12:09:26 +0000214 setup_base->e820_entries = install_e820_map(
215 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Gabe Black69370d12011-12-05 12:09:26 +0000216
217 if (bootproto == 0x0100) {
218 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
219 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
220 }
wdenk2262cfe2002-11-18 00:14:45 +0000221 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000222 hdr->type_of_loader = 8;
223
wdenk2262cfe2002-11-18 00:14:45 +0000224 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000225 printf("Initial RAM disk at linear address "
226 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000227 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000228
Graeme Russ95ffaba2010-04-24 00:05:49 +1000229 hdr->ramdisk_image = initrd_addr;
230 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000231 }
232 }
wdenk8bde7f72003-06-27 21:31:46 +0000233
wdenk2262cfe2002-11-18 00:14:45 +0000234 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000235 hdr->heap_end_ptr = HEAP_END_OFFSET;
236 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000237 }
wdenk8bde7f72003-06-27 21:31:46 +0000238
Simon Glass97d1e0c2014-10-19 21:11:21 -0600239 if (cmd_line) {
240 if (bootproto >= 0x0202) {
241 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
242 } else if (bootproto >= 0x0200) {
243 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
244 setup_base->screen_info.cl_offset =
245 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000246
Simon Glass97d1e0c2014-10-19 21:11:21 -0600247 hdr->setup_move_size = 0x9100;
248 }
249
250 /* build command line at COMMAND_LINE_OFFSET */
251 build_command_line(cmd_line, auto_boot);
wdenk2262cfe2002-11-18 00:14:45 +0000252 }
wdenk2262cfe2002-11-18 00:14:45 +0000253
Andy Shevchenko378960d2018-01-10 19:40:14 +0200254#ifdef CONFIG_INTEL_MID
255 if (bootproto >= 0x0207)
256 hdr->hardware_subarch = X86_SUBARCH_INTEL_MID;
257#endif
258
Andy Shevchenko3469bf42018-01-10 19:40:15 +0200259#ifdef CONFIG_GENERATE_ACPI_TABLE
260 if (bootproto >= 0x020e)
Bin Meng45410da2018-01-30 05:01:16 -0800261 hdr->acpi_rsdp_addr = acpi_get_rsdp_addr();
Andy Shevchenko3469bf42018-01-10 19:40:15 +0200262#endif
263
Bin Menga4520022015-07-06 16:31:36 +0800264 setup_video(&setup_base->screen_info);
265
Gabe Black69370d12011-12-05 12:09:26 +0000266 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000267}
268
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100269void setup_pcat_compatibility(void)
270 __attribute__((weak, alias("__setup_pcat_compatibility")));
271
272void __setup_pcat_compatibility(void)
273{
274}
275
Graeme Russ83088af2011-11-08 02:33:15 +0000276int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000277{
Gabe Black69370d12011-12-05 12:09:26 +0000278 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100279 void *bzImage_addr = NULL;
Simon Glass76539382014-10-10 08:21:56 -0600280 ulong load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100281 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000282 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000283 ulong initrd_addr = 0;
284 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000285
286 disable_interrupts();
287
288 /* Setup board for maximum PC/AT Compatibility */
289 setup_pcat_compatibility();
290
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000291 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100292 /* argv[1] holds the address of the bzImage */
293 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000294 } else {
Simon Glass00caae62017-08-03 12:22:12 -0600295 s = env_get("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000296 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000297
Graeme Russabe98f42010-10-07 20:03:19 +1100298 if (s)
299 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
300
Gabe Black6f9d9982011-12-05 12:09:27 +0000301 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100302 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000303 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000304 }
305
306 if (argc >= 4)
307 initrd_addr = simple_strtoul(argv[3], NULL, 16);
308 if (argc >= 5)
309 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000310
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000311 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000312 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000313
Graeme Russ83088af2011-11-08 02:33:15 +0000314 if (!base_ptr) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600315 puts("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000316 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000317 }
Gabe Black69370d12011-12-05 12:09:26 +0000318 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000319 0, initrd_addr, initrd_size)) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600320 puts("Setting up boot parameters failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000321 return -1;
322 }
323
Gabe Black69370d12011-12-05 12:09:26 +0000324 /* we assume that the kernel is in place */
Simon Glass76539382014-10-10 08:21:56 -0600325 return boot_linux_kernel((ulong)base_ptr, load_address, false);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000326}
327
328U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000329 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000330 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000331 "[addr] [size] [initrd addr] [initrd size]\n"
332 " addr - The optional starting address of the bzimage.\n"
333 " If not set it defaults to the environment\n"
334 " variable \"fileaddr\".\n"
335 " size - The optional size of the bzimage. Defaults to\n"
336 " zero.\n"
337 " initrd addr - The address of the initrd image to use, if any.\n"
338 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000339);