blob: c3f8a7308faaa2e84198083533a9a6b60ff9725a [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;
Gabe Black233dbc12011-12-05 12:09:24 +000064
Bin Meng54c60012015-04-21 12:21:36 +080065 return 3;
66}
Gabe Black233dbc12011-12-05 12:09:24 +000067
wdenk2262cfe2002-11-18 00:14:45 +000068static void build_command_line(char *command_line, int auto_boot)
69{
70 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000071
wdenk2262cfe2002-11-18 00:14:45 +000072 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000073
wdenk2262cfe2002-11-18 00:14:45 +000074 env_command_line = getenv("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000075
wdenk2262cfe2002-11-18 00:14:45 +000076 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000077 if (!strstr(env_command_line, "console=")) {
78 if (!strcmp(getenv("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000079
wdenk2262cfe2002-11-18 00:14:45 +000080 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000081 sprintf(command_line, "console=ttyS0,%s ",
Graeme Russ83088af2011-11-08 02:33:15 +000082 getenv("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000083 }
84 }
wdenk8bde7f72003-06-27 21:31:46 +000085
Graeme Russ83088af2011-11-08 02:33:15 +000086 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000087 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000088
Graeme Russ83088af2011-11-08 02:33:15 +000089 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000090 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000091
wdenk2262cfe2002-11-18 00:14:45 +000092 printf("Kernel command line: \"%s\"\n", command_line);
93}
94
Gabe Black69370d12011-12-05 12:09:26 +000095static int kernel_magic_ok(struct setup_header *hdr)
96{
97 if (KERNEL_MAGIC != hdr->boot_flag) {
98 printf("Error: Invalid Boot Flag "
99 "(found 0x%04x, expected 0x%04x)\n",
100 hdr->boot_flag, KERNEL_MAGIC);
101 return 0;
102 } else {
103 printf("Valid Boot Flag\n");
104 return 1;
105 }
106}
107
108static int get_boot_protocol(struct setup_header *hdr)
109{
110 if (hdr->header == KERNEL_V2_MAGIC) {
111 printf("Magic signature found\n");
112 return hdr->version;
113 } else {
114 /* Very old kernel */
115 printf("Magic signature not found\n");
116 return 0x0100;
117 }
118}
119
120struct boot_params *load_zimage(char *image, unsigned long kernel_size,
Simon Glass76539382014-10-10 08:21:56 -0600121 ulong *load_addressp)
wdenk2262cfe2002-11-18 00:14:45 +0000122{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000123 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000124 int setup_size;
125 int bootproto;
126 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000127
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000128 struct boot_params *params = (struct boot_params *)image;
129 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000130
Graeme Russ83088af2011-11-08 02:33:15 +0000131 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000132 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000133
Gabe Black69370d12011-12-05 12:09:26 +0000134 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000135 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000136
wdenk2262cfe2002-11-18 00:14:45 +0000137 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000138 if (0 == hdr->setup_sects) {
139 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000140 setup_size = 5 * 512;
141 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000142 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000143 }
wdenk8bde7f72003-06-27 21:31:46 +0000144
Graeme Russ95ffaba2010-04-24 00:05:49 +1000145 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
146
Graeme Russ83088af2011-11-08 02:33:15 +0000147 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000148 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000149
Gabe Black69370d12011-12-05 12:09:26 +0000150 /* determine boot protocol version */
151 bootproto = get_boot_protocol(hdr);
152
153 printf("Using boot protocol version %x.%02x\n",
154 (bootproto & 0xff00) >> 8, bootproto & 0xff);
155
156 if (bootproto >= 0x0200) {
157 if (hdr->setup_sects >= 15) {
158 printf("Linux kernel version %s\n",
159 (char *)params +
160 hdr->kernel_version + 0x200);
161 } else {
162 printf("Setup Sectors < 15 - "
163 "Cannot print kernel version.\n");
164 }
165 }
166
wdenk2262cfe2002-11-18 00:14:45 +0000167 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000168 big_image = (bootproto >= 0x0200) &&
169 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000170
Graeme Russ95ffaba2010-04-24 00:05:49 +1000171 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000172 if (big_image)
Simon Glass76539382014-10-10 08:21:56 -0600173 *load_addressp = BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000174 else
Simon Glass76539382014-10-10 08:21:56 -0600175 *load_addressp = ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000176
Gabe Black233dbc12011-12-05 12:09:24 +0000177 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
178 memset(setup_base, 0, sizeof(*setup_base));
179 setup_base->hdr = params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000180
Gabe Black69370d12011-12-05 12:09:26 +0000181 if (bootproto >= 0x0204)
182 kernel_size = hdr->syssize * 16;
183 else
184 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000185
wdenk8bde7f72003-06-27 21:31:46 +0000186 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000187 /*
188 * A very old kernel MUST have its real-mode code
189 * loaded at 0x90000
190 */
wdenk2262cfe2002-11-18 00:14:45 +0000191 if ((u32)setup_base != 0x90000) {
192 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000193 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000194
Graeme Russ83088af2011-11-08 02:33:15 +0000195 /* Copy the command line */
196 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000197 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000198 COMMAND_LINE_SIZE);
199
200 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000201 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000202 }
wdenk8bde7f72003-06-27 21:31:46 +0000203
wdenk2262cfe2002-11-18 00:14:45 +0000204 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000205 memset((u8 *)0x90000 + setup_size, 0,
206 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000207 }
wdenk8bde7f72003-06-27 21:31:46 +0000208
Gabe Black69370d12011-12-05 12:09:26 +0000209 if (big_image) {
210 if (kernel_size > BZIMAGE_MAX_SIZE) {
211 printf("Error: bzImage kernel too big! "
212 "(size: %ld, max: %d)\n",
213 kernel_size, BZIMAGE_MAX_SIZE);
214 return 0;
215 }
216 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
217 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
218 kernel_size, ZIMAGE_MAX_SIZE);
219 return 0;
220 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000221
Simon Glass76539382014-10-10 08:21:56 -0600222 printf("Loading %s at address %lx (%ld bytes)\n",
223 big_image ? "bzImage" : "zImage", *load_addressp, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000224
Simon Glass76539382014-10-10 08:21:56 -0600225 memmove((void *)*load_addressp, image + setup_size, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000226
227 return setup_base;
228}
229
230int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
231 unsigned long initrd_addr, unsigned long initrd_size)
232{
233 struct setup_header *hdr = &setup_base->hdr;
234 int bootproto = get_boot_protocol(hdr);
235
Gabe Black69370d12011-12-05 12:09:26 +0000236 setup_base->e820_entries = install_e820_map(
237 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Gabe Black69370d12011-12-05 12:09:26 +0000238
239 if (bootproto == 0x0100) {
240 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
241 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
242 }
wdenk2262cfe2002-11-18 00:14:45 +0000243 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000244 hdr->type_of_loader = 8;
245
wdenk2262cfe2002-11-18 00:14:45 +0000246 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000247 printf("Initial RAM disk at linear address "
248 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000249 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000250
Graeme Russ95ffaba2010-04-24 00:05:49 +1000251 hdr->ramdisk_image = initrd_addr;
252 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000253 }
254 }
wdenk8bde7f72003-06-27 21:31:46 +0000255
wdenk2262cfe2002-11-18 00:14:45 +0000256 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000257 hdr->heap_end_ptr = HEAP_END_OFFSET;
258 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000259 }
wdenk8bde7f72003-06-27 21:31:46 +0000260
Simon Glass97d1e0c2014-10-19 21:11:21 -0600261 if (cmd_line) {
262 if (bootproto >= 0x0202) {
263 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
264 } else if (bootproto >= 0x0200) {
265 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
266 setup_base->screen_info.cl_offset =
267 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000268
Simon Glass97d1e0c2014-10-19 21:11:21 -0600269 hdr->setup_move_size = 0x9100;
270 }
271
272 /* build command line at COMMAND_LINE_OFFSET */
273 build_command_line(cmd_line, auto_boot);
wdenk2262cfe2002-11-18 00:14:45 +0000274 }
wdenk2262cfe2002-11-18 00:14:45 +0000275
Gabe Black69370d12011-12-05 12:09:26 +0000276 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000277}
278
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100279void setup_pcat_compatibility(void)
280 __attribute__((weak, alias("__setup_pcat_compatibility")));
281
282void __setup_pcat_compatibility(void)
283{
284}
285
Graeme Russ83088af2011-11-08 02:33:15 +0000286int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000287{
Gabe Black69370d12011-12-05 12:09:26 +0000288 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100289 void *bzImage_addr = NULL;
Simon Glass76539382014-10-10 08:21:56 -0600290 ulong load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100291 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000292 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000293 ulong initrd_addr = 0;
294 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000295
296 disable_interrupts();
297
298 /* Setup board for maximum PC/AT Compatibility */
299 setup_pcat_compatibility();
300
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000301 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100302 /* argv[1] holds the address of the bzImage */
303 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000304 } else {
Graeme Russabe98f42010-10-07 20:03:19 +1100305 s = getenv("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000306 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000307
Graeme Russabe98f42010-10-07 20:03:19 +1100308 if (s)
309 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
310
Gabe Black6f9d9982011-12-05 12:09:27 +0000311 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100312 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000313 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000314 }
315
316 if (argc >= 4)
317 initrd_addr = simple_strtoul(argv[3], NULL, 16);
318 if (argc >= 5)
319 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000320
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000321 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000322 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000323
Graeme Russ83088af2011-11-08 02:33:15 +0000324 if (!base_ptr) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600325 puts("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000326 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000327 }
Gabe Black69370d12011-12-05 12:09:26 +0000328 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000329 0, initrd_addr, initrd_size)) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600330 puts("Setting up boot parameters failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000331 return -1;
332 }
333
Gabe Black69370d12011-12-05 12:09:26 +0000334 /* we assume that the kernel is in place */
Simon Glass76539382014-10-10 08:21:56 -0600335 return boot_linux_kernel((ulong)base_ptr, load_address, false);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000336}
337
338U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000339 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000340 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000341 "[addr] [size] [initrd addr] [initrd size]\n"
342 " addr - The optional starting address of the bzimage.\n"
343 " If not set it defaults to the environment\n"
344 " variable \"fileaddr\".\n"
345 " size - The optional size of the bzimage. Defaults to\n"
346 " zero.\n"
347 " initrd addr - The address of the initrd image to use, if any.\n"
348 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000349);