blob: a1ec57e8d3ea478e1d75babac788f71eafd89e18 [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>
17#include <asm/io.h>
18#include <asm/ptrace.h>
19#include <asm/zimage.h>
wdenk2262cfe2002-11-18 00:14:45 +000020#include <asm/byteorder.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060021#include <asm/bootm.h>
Graeme Russ95ffaba2010-04-24 00:05:49 +100022#include <asm/bootparam.h>
Vadim Bendebury3cdc18a2012-10-23 18:04:34 +000023#ifdef CONFIG_SYS_COREBOOT
24#include <asm/arch/timestamp.h>
25#endif
Stefan Reinauer61e0ea92012-10-23 18:04:37 +000026#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000027
Bin Meng54c60012015-04-21 12:21:36 +080028DECLARE_GLOBAL_DATA_PTR;
29
wdenk2262cfe2002-11-18 00:14:45 +000030/*
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
Bin Meng54c60012015-04-21 12:21:36 +080045/*
46 * Install a default e820 table with 3 entries as follows:
47 *
48 * 0x000000-0x0a0000 Useable RAM
49 * 0x0a0000-0x100000 Reserved for ISA
50 * 0x100000-gd->ram_size Useable RAM
51 */
52__weak unsigned install_e820_map(unsigned max_entries,
53 struct e820entry *entries)
Gabe Black233dbc12011-12-05 12:09:24 +000054{
Bin Meng54c60012015-04-21 12:21:36 +080055 entries[0].addr = 0;
56 entries[0].size = ISA_START_ADDRESS;
57 entries[0].type = E820_RAM;
58 entries[1].addr = ISA_START_ADDRESS;
59 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS;
60 entries[1].type = E820_RESERVED;
61 entries[2].addr = ISA_END_ADDRESS;
62 entries[2].size = gd->ram_size - ISA_END_ADDRESS;
63 entries[2].type = E820_RAM;
Bin Meng1ed66482015-07-22 01:21:15 -070064 entries[3].addr = CONFIG_PCIE_ECAM_BASE;
65 entries[3].size = CONFIG_PCIE_ECAM_SIZE;
66 entries[3].type = E820_RESERVED;
Gabe Black233dbc12011-12-05 12:09:24 +000067
Bin Meng1ed66482015-07-22 01:21:15 -070068 return 4;
Bin Meng54c60012015-04-21 12:21:36 +080069}
Gabe Black233dbc12011-12-05 12:09:24 +000070
wdenk2262cfe2002-11-18 00:14:45 +000071static void build_command_line(char *command_line, int auto_boot)
72{
73 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000074
wdenk2262cfe2002-11-18 00:14:45 +000075 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000076
wdenk2262cfe2002-11-18 00:14:45 +000077 env_command_line = getenv("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000078
wdenk2262cfe2002-11-18 00:14:45 +000079 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000080 if (!strstr(env_command_line, "console=")) {
81 if (!strcmp(getenv("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000082
wdenk2262cfe2002-11-18 00:14:45 +000083 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000084 sprintf(command_line, "console=ttyS0,%s ",
Graeme Russ83088af2011-11-08 02:33:15 +000085 getenv("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000086 }
87 }
wdenk8bde7f72003-06-27 21:31:46 +000088
Graeme Russ83088af2011-11-08 02:33:15 +000089 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000090 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000091
Graeme Russ83088af2011-11-08 02:33:15 +000092 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000093 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000094
wdenk2262cfe2002-11-18 00:14:45 +000095 printf("Kernel command line: \"%s\"\n", command_line);
96}
97
Gabe Black69370d12011-12-05 12:09:26 +000098static int kernel_magic_ok(struct setup_header *hdr)
99{
100 if (KERNEL_MAGIC != hdr->boot_flag) {
101 printf("Error: Invalid Boot Flag "
102 "(found 0x%04x, expected 0x%04x)\n",
103 hdr->boot_flag, KERNEL_MAGIC);
104 return 0;
105 } else {
106 printf("Valid Boot Flag\n");
107 return 1;
108 }
109}
110
111static int get_boot_protocol(struct setup_header *hdr)
112{
113 if (hdr->header == KERNEL_V2_MAGIC) {
114 printf("Magic signature found\n");
115 return hdr->version;
116 } else {
117 /* Very old kernel */
118 printf("Magic signature not found\n");
119 return 0x0100;
120 }
121}
122
123struct boot_params *load_zimage(char *image, unsigned long kernel_size,
Simon Glass76539382014-10-10 08:21:56 -0600124 ulong *load_addressp)
wdenk2262cfe2002-11-18 00:14:45 +0000125{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000126 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000127 int setup_size;
128 int bootproto;
129 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000130
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000131 struct boot_params *params = (struct boot_params *)image;
132 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000133
Graeme Russ83088af2011-11-08 02:33:15 +0000134 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000135 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000136
Gabe Black69370d12011-12-05 12:09:26 +0000137 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000138 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000139
wdenk2262cfe2002-11-18 00:14:45 +0000140 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000141 if (0 == hdr->setup_sects) {
142 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000143 setup_size = 5 * 512;
144 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000145 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000146 }
wdenk8bde7f72003-06-27 21:31:46 +0000147
Graeme Russ95ffaba2010-04-24 00:05:49 +1000148 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
149
Graeme Russ83088af2011-11-08 02:33:15 +0000150 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000151 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000152
Gabe Black69370d12011-12-05 12:09:26 +0000153 /* determine boot protocol version */
154 bootproto = get_boot_protocol(hdr);
155
156 printf("Using boot protocol version %x.%02x\n",
157 (bootproto & 0xff00) >> 8, bootproto & 0xff);
158
159 if (bootproto >= 0x0200) {
160 if (hdr->setup_sects >= 15) {
161 printf("Linux kernel version %s\n",
162 (char *)params +
163 hdr->kernel_version + 0x200);
164 } else {
165 printf("Setup Sectors < 15 - "
166 "Cannot print kernel version.\n");
167 }
168 }
169
wdenk2262cfe2002-11-18 00:14:45 +0000170 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000171 big_image = (bootproto >= 0x0200) &&
172 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000173
Graeme Russ95ffaba2010-04-24 00:05:49 +1000174 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000175 if (big_image)
Simon Glass76539382014-10-10 08:21:56 -0600176 *load_addressp = BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000177 else
Simon Glass76539382014-10-10 08:21:56 -0600178 *load_addressp = ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000179
Gabe Black233dbc12011-12-05 12:09:24 +0000180 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
181 memset(setup_base, 0, sizeof(*setup_base));
182 setup_base->hdr = params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000183
Gabe Black69370d12011-12-05 12:09:26 +0000184 if (bootproto >= 0x0204)
185 kernel_size = hdr->syssize * 16;
186 else
187 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000188
wdenk8bde7f72003-06-27 21:31:46 +0000189 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000190 /*
191 * A very old kernel MUST have its real-mode code
192 * loaded at 0x90000
193 */
wdenk2262cfe2002-11-18 00:14:45 +0000194 if ((u32)setup_base != 0x90000) {
195 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000196 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000197
Graeme Russ83088af2011-11-08 02:33:15 +0000198 /* Copy the command line */
199 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000200 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000201 COMMAND_LINE_SIZE);
202
203 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000204 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000205 }
wdenk8bde7f72003-06-27 21:31:46 +0000206
wdenk2262cfe2002-11-18 00:14:45 +0000207 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000208 memset((u8 *)0x90000 + setup_size, 0,
209 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000210 }
wdenk8bde7f72003-06-27 21:31:46 +0000211
Gabe Black69370d12011-12-05 12:09:26 +0000212 if (big_image) {
213 if (kernel_size > BZIMAGE_MAX_SIZE) {
214 printf("Error: bzImage kernel too big! "
215 "(size: %ld, max: %d)\n",
216 kernel_size, BZIMAGE_MAX_SIZE);
217 return 0;
218 }
219 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
220 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
221 kernel_size, ZIMAGE_MAX_SIZE);
222 return 0;
223 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000224
Simon Glass76539382014-10-10 08:21:56 -0600225 printf("Loading %s at address %lx (%ld bytes)\n",
226 big_image ? "bzImage" : "zImage", *load_addressp, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000227
Simon Glass76539382014-10-10 08:21:56 -0600228 memmove((void *)*load_addressp, image + setup_size, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000229
230 return setup_base;
231}
232
233int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
234 unsigned long initrd_addr, unsigned long initrd_size)
235{
236 struct setup_header *hdr = &setup_base->hdr;
237 int bootproto = get_boot_protocol(hdr);
238
Gabe Black69370d12011-12-05 12:09:26 +0000239 setup_base->e820_entries = install_e820_map(
240 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Gabe Black69370d12011-12-05 12:09:26 +0000241
242 if (bootproto == 0x0100) {
243 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
244 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
245 }
wdenk2262cfe2002-11-18 00:14:45 +0000246 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000247 hdr->type_of_loader = 8;
248
wdenk2262cfe2002-11-18 00:14:45 +0000249 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000250 printf("Initial RAM disk at linear address "
251 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000252 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000253
Graeme Russ95ffaba2010-04-24 00:05:49 +1000254 hdr->ramdisk_image = initrd_addr;
255 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000256 }
257 }
wdenk8bde7f72003-06-27 21:31:46 +0000258
wdenk2262cfe2002-11-18 00:14:45 +0000259 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000260 hdr->heap_end_ptr = HEAP_END_OFFSET;
261 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000262 }
wdenk8bde7f72003-06-27 21:31:46 +0000263
Simon Glass97d1e0c2014-10-19 21:11:21 -0600264 if (cmd_line) {
265 if (bootproto >= 0x0202) {
266 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
267 } else if (bootproto >= 0x0200) {
268 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
269 setup_base->screen_info.cl_offset =
270 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000271
Simon Glass97d1e0c2014-10-19 21:11:21 -0600272 hdr->setup_move_size = 0x9100;
273 }
274
275 /* build command line at COMMAND_LINE_OFFSET */
276 build_command_line(cmd_line, auto_boot);
wdenk2262cfe2002-11-18 00:14:45 +0000277 }
wdenk2262cfe2002-11-18 00:14:45 +0000278
Bin Menga4520022015-07-06 16:31:36 +0800279 setup_video(&setup_base->screen_info);
280
Gabe Black69370d12011-12-05 12:09:26 +0000281 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000282}
283
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100284void setup_pcat_compatibility(void)
285 __attribute__((weak, alias("__setup_pcat_compatibility")));
286
287void __setup_pcat_compatibility(void)
288{
289}
290
Graeme Russ83088af2011-11-08 02:33:15 +0000291int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000292{
Gabe Black69370d12011-12-05 12:09:26 +0000293 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100294 void *bzImage_addr = NULL;
Simon Glass76539382014-10-10 08:21:56 -0600295 ulong load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100296 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000297 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000298 ulong initrd_addr = 0;
299 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000300
301 disable_interrupts();
302
303 /* Setup board for maximum PC/AT Compatibility */
304 setup_pcat_compatibility();
305
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000306 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100307 /* argv[1] holds the address of the bzImage */
308 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000309 } else {
Graeme Russabe98f42010-10-07 20:03:19 +1100310 s = getenv("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000311 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000312
Graeme Russabe98f42010-10-07 20:03:19 +1100313 if (s)
314 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
315
Gabe Black6f9d9982011-12-05 12:09:27 +0000316 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100317 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000318 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000319 }
320
321 if (argc >= 4)
322 initrd_addr = simple_strtoul(argv[3], NULL, 16);
323 if (argc >= 5)
324 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000325
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000326 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000327 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000328
Graeme Russ83088af2011-11-08 02:33:15 +0000329 if (!base_ptr) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600330 puts("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000331 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000332 }
Gabe Black69370d12011-12-05 12:09:26 +0000333 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000334 0, initrd_addr, initrd_size)) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600335 puts("Setting up boot parameters failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000336 return -1;
337 }
338
Gabe Black69370d12011-12-05 12:09:26 +0000339 /* we assume that the kernel is in place */
Simon Glass76539382014-10-10 08:21:56 -0600340 return boot_linux_kernel((ulong)base_ptr, load_address, false);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000341}
342
343U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000344 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000345 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000346 "[addr] [size] [initrd addr] [initrd size]\n"
347 " addr - The optional starting address of the bzimage.\n"
348 " If not set it defaults to the environment\n"
349 " variable \"fileaddr\".\n"
350 " size - The optional size of the bzimage. Defaults to\n"
351 " zero.\n"
352 " initrd addr - The address of the initrd image to use, if any.\n"
353 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000354);