blob: 4e9e1f77e5ac35bda83ff2fe8b23c0e9970c9859 [file] [log] [blame]
wdenk591dda52002-11-18 00:14:45 +00001/*
Gabe Black1cf51212011-12-05 12:09:23 +00002 * Copyright (c) 2011 The Chromium OS Authors.
wdenk591dda52002-11-18 00:14:45 +00003 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02004 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
wdenk57b2d802003-06-27 21:31:46 +00005 *
wdenk591dda52002-11-18 00:14:45 +00006 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
wdenk57b2d802003-06-27 21:31:46 +000025/*
Graeme Russ45fc1d82011-04-13 19:43:26 +100026 * Linux x86 zImage and bzImage loading
wdenk57b2d802003-06-27 21:31:46 +000027 *
28 * based on the procdure described in
wdenk591dda52002-11-18 00:14:45 +000029 * linux/Documentation/i386/boot.txt
30 */
31
32#include <common.h>
33#include <asm/io.h>
34#include <asm/ptrace.h>
35#include <asm/zimage.h>
wdenk591dda52002-11-18 00:14:45 +000036#include <asm/byteorder.h>
Graeme Russ1bab1042010-04-24 00:05:49 +100037#include <asm/bootparam.h>
Vadim Bendebury8cd22c82012-10-23 18:04:34 +000038#ifdef CONFIG_SYS_COREBOOT
39#include <asm/arch/timestamp.h>
40#endif
Stefan Reinauer2e5225e2012-10-23 18:04:37 +000041#include <linux/compiler.h>
wdenk591dda52002-11-18 00:14:45 +000042
43/*
44 * Memory lay-out:
wdenk57b2d802003-06-27 21:31:46 +000045 *
wdenk591dda52002-11-18 00:14:45 +000046 * relative to setup_base (which is 0x90000 currently)
wdenk57b2d802003-06-27 21:31:46 +000047 *
48 * 0x0000-0x7FFF Real mode kernel
wdenk591dda52002-11-18 00:14:45 +000049 * 0x8000-0x8FFF Stack and heap
50 * 0x9000-0x90FF Kernel command line
51 */
Graeme Russ883c6032011-11-08 02:33:15 +000052#define DEFAULT_SETUP_BASE 0x90000
53#define COMMAND_LINE_OFFSET 0x9000
54#define HEAP_END_OFFSET 0x8e00
wdenk591dda52002-11-18 00:14:45 +000055
Graeme Russ883c6032011-11-08 02:33:15 +000056#define COMMAND_LINE_SIZE 2048
wdenk591dda52002-11-18 00:14:45 +000057
Gabe Blackc67a9482011-12-05 12:09:24 +000058unsigned generic_install_e820_map(unsigned max_entries,
59 struct e820entry *entries)
60{
61 return 0;
62}
63
64unsigned install_e820_map(unsigned max_entries,
65 struct e820entry *entries)
66 __attribute__((weak, alias("generic_install_e820_map")));
67
wdenk591dda52002-11-18 00:14:45 +000068static void build_command_line(char *command_line, int auto_boot)
69{
70 char *env_command_line;
wdenk57b2d802003-06-27 21:31:46 +000071
wdenk591dda52002-11-18 00:14:45 +000072 command_line[0] = '\0';
wdenk57b2d802003-06-27 21:31:46 +000073
wdenk591dda52002-11-18 00:14:45 +000074 env_command_line = getenv("bootargs");
wdenk57b2d802003-06-27 21:31:46 +000075
wdenk591dda52002-11-18 00:14:45 +000076 /* set console= argument if we use a serial console */
Graeme Russ883c6032011-11-08 02:33:15 +000077 if (!strstr(env_command_line, "console=")) {
78 if (!strcmp(getenv("stdout"), "serial")) {
wdenk57b2d802003-06-27 21:31:46 +000079
wdenk591dda52002-11-18 00:14:45 +000080 /* We seem to use serial console */
wdenk57b2d802003-06-27 21:31:46 +000081 sprintf(command_line, "console=ttyS0,%s ",
Graeme Russ883c6032011-11-08 02:33:15 +000082 getenv("baudrate"));
wdenk591dda52002-11-18 00:14:45 +000083 }
84 }
wdenk57b2d802003-06-27 21:31:46 +000085
Graeme Russ883c6032011-11-08 02:33:15 +000086 if (auto_boot)
wdenk591dda52002-11-18 00:14:45 +000087 strcat(command_line, "auto ");
wdenk57b2d802003-06-27 21:31:46 +000088
Graeme Russ883c6032011-11-08 02:33:15 +000089 if (env_command_line)
wdenk591dda52002-11-18 00:14:45 +000090 strcat(command_line, env_command_line);
wdenk57b2d802003-06-27 21:31:46 +000091
wdenk591dda52002-11-18 00:14:45 +000092 printf("Kernel command line: \"%s\"\n", command_line);
93}
94
Gabe Black540c2622011-12-05 12:09:26 +000095static int kernel_magic_ok(struct setup_header *hdr)
wdenk591dda52002-11-18 00:14:45 +000096{
Graeme Russ1bab1042010-04-24 00:05:49 +100097 if (KERNEL_MAGIC != hdr->boot_flag) {
Gabe Black1cf51212011-12-05 12:09:23 +000098 printf("Error: Invalid Boot Flag "
99 "(found 0x%04x, expected 0x%04x)\n",
100 hdr->boot_flag, KERNEL_MAGIC);
wdenk591dda52002-11-18 00:14:45 +0000101 return 0;
Graeme Russ1bab1042010-04-24 00:05:49 +1000102 } else {
103 printf("Valid Boot Flag\n");
Gabe Black540c2622011-12-05 12:09:26 +0000104 return 1;
wdenk591dda52002-11-18 00:14:45 +0000105 }
Gabe Black540c2622011-12-05 12:09:26 +0000106}
wdenk57b2d802003-06-27 21:31:46 +0000107
Gabe Black540c2622011-12-05 12:09:26 +0000108static int get_boot_protocol(struct setup_header *hdr)
109{
110 if (hdr->header == KERNEL_V2_MAGIC) {
Graeme Russ1bab1042010-04-24 00:05:49 +1000111 printf("Magic signature found\n");
Gabe Black540c2622011-12-05 12:09:26 +0000112 return hdr->version;
wdenk591dda52002-11-18 00:14:45 +0000113 } else {
114 /* Very old kernel */
Graeme Russ1bab1042010-04-24 00:05:49 +1000115 printf("Magic signature not found\n");
Gabe Black540c2622011-12-05 12:09:26 +0000116 return 0x0100;
wdenk591dda52002-11-18 00:14:45 +0000117 }
Gabe Black540c2622011-12-05 12:09:26 +0000118}
119
120struct boot_params *load_zimage(char *image, unsigned long kernel_size,
121 void **load_address)
122{
123 struct boot_params *setup_base;
124 int setup_size;
125 int bootproto;
126 int big_image;
127
128 struct boot_params *params = (struct boot_params *)image;
129 struct setup_header *hdr = &params->hdr;
130
131 /* base address for real-mode segment */
132 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
133
134 if (!kernel_magic_ok(hdr))
135 return 0;
wdenk57b2d802003-06-27 21:31:46 +0000136
wdenk591dda52002-11-18 00:14:45 +0000137 /* determine size of setup */
Graeme Russ1bab1042010-04-24 00:05:49 +1000138 if (0 == hdr->setup_sects) {
139 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk591dda52002-11-18 00:14:45 +0000140 setup_size = 5 * 512;
141 } else {
Graeme Russ1bab1042010-04-24 00:05:49 +1000142 setup_size = (hdr->setup_sects + 1) * 512;
wdenk591dda52002-11-18 00:14:45 +0000143 }
wdenk57b2d802003-06-27 21:31:46 +0000144
Graeme Russ1bab1042010-04-24 00:05:49 +1000145 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
146
Graeme Russ883c6032011-11-08 02:33:15 +0000147 if (setup_size > SETUP_MAX_SIZE)
wdenk591dda52002-11-18 00:14:45 +0000148 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk57b2d802003-06-27 21:31:46 +0000149
Gabe Black540c2622011-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
wdenk591dda52002-11-18 00:14:45 +0000167 /* Determine image type */
Graeme Russ883c6032011-11-08 02:33:15 +0000168 big_image = (bootproto >= 0x0200) &&
169 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk57b2d802003-06-27 21:31:46 +0000170
Graeme Russ1bab1042010-04-24 00:05:49 +1000171 /* Determine load address */
Gabe Black1cf51212011-12-05 12:09:23 +0000172 if (big_image)
Gabe Blackc67a9482011-12-05 12:09:24 +0000173 *load_address = (void *)BZIMAGE_LOAD_ADDR;
Gabe Black1cf51212011-12-05 12:09:23 +0000174 else
Gabe Blackc67a9482011-12-05 12:09:24 +0000175 *load_address = (void *)ZIMAGE_LOAD_ADDR;
wdenk57b2d802003-06-27 21:31:46 +0000176
Gabe Blackc67a9482011-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;
wdenk57b2d802003-06-27 21:31:46 +0000180
Gabe Black540c2622011-12-05 12:09:26 +0000181 if (bootproto >= 0x0204)
182 kernel_size = hdr->syssize * 16;
183 else
184 kernel_size -= setup_size;
wdenk57b2d802003-06-27 21:31:46 +0000185
wdenk57b2d802003-06-27 21:31:46 +0000186 if (bootproto == 0x0100) {
Graeme Russ883c6032011-11-08 02:33:15 +0000187 /*
188 * A very old kernel MUST have its real-mode code
189 * loaded at 0x90000
190 */
wdenk591dda52002-11-18 00:14:45 +0000191 if ((u32)setup_base != 0x90000) {
192 /* Copy the real-mode kernel */
Graeme Russ883c6032011-11-08 02:33:15 +0000193 memmove((void *)0x90000, setup_base, setup_size);
194
wdenk591dda52002-11-18 00:14:45 +0000195 /* Copy the command line */
Graeme Russ883c6032011-11-08 02:33:15 +0000196 memmove((void *)0x99000,
Gabe Black1cf51212011-12-05 12:09:23 +0000197 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ883c6032011-11-08 02:33:15 +0000198 COMMAND_LINE_SIZE);
wdenk57b2d802003-06-27 21:31:46 +0000199
Graeme Russ883c6032011-11-08 02:33:15 +0000200 /* Relocated */
Gabe Black1cf51212011-12-05 12:09:23 +0000201 setup_base = (struct boot_params *)0x90000;
wdenk591dda52002-11-18 00:14:45 +0000202 }
wdenk57b2d802003-06-27 21:31:46 +0000203
wdenk591dda52002-11-18 00:14:45 +0000204 /* It is recommended to clear memory up to the 32K mark */
Gabe Black1cf51212011-12-05 12:09:23 +0000205 memset((u8 *)0x90000 + setup_size, 0,
206 SETUP_MAX_SIZE - setup_size);
wdenk591dda52002-11-18 00:14:45 +0000207 }
wdenk57b2d802003-06-27 21:31:46 +0000208
Gabe Black540c2622011-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 }
221
222 printf("Loading %s at address %p (%ld bytes)\n",
223 big_image ? "bzImage" : "zImage", *load_address, kernel_size);
224
225 memmove(*load_address, image + setup_size, kernel_size);
226
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 Black540c2622011-12-05 12:09:26 +0000236 setup_base->e820_entries = install_e820_map(
237 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Graeme Russ1bab1042010-04-24 00:05:49 +1000238
Gabe Black540c2622011-12-05 12:09:26 +0000239 if (bootproto == 0x0100) {
240 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
241 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
242 }
wdenk591dda52002-11-18 00:14:45 +0000243 if (bootproto >= 0x0200) {
Graeme Russ1bab1042010-04-24 00:05:49 +1000244 hdr->type_of_loader = 8;
245
wdenk591dda52002-11-18 00:14:45 +0000246 if (initrd_addr) {
Gabe Black1cf51212011-12-05 12:09:23 +0000247 printf("Initial RAM disk at linear address "
248 "0x%08lx, size %ld bytes\n",
wdenk591dda52002-11-18 00:14:45 +0000249 initrd_addr, initrd_size);
wdenk57b2d802003-06-27 21:31:46 +0000250
Graeme Russ1bab1042010-04-24 00:05:49 +1000251 hdr->ramdisk_image = initrd_addr;
252 hdr->ramdisk_size = initrd_size;
wdenk591dda52002-11-18 00:14:45 +0000253 }
254 }
wdenk57b2d802003-06-27 21:31:46 +0000255
wdenk591dda52002-11-18 00:14:45 +0000256 if (bootproto >= 0x0201) {
Graeme Russ1bab1042010-04-24 00:05:49 +1000257 hdr->heap_end_ptr = HEAP_END_OFFSET;
258 hdr->loadflags |= HEAP_FLAG;
wdenk591dda52002-11-18 00:14:45 +0000259 }
wdenk57b2d802003-06-27 21:31:46 +0000260
wdenk591dda52002-11-18 00:14:45 +0000261 if (bootproto >= 0x0202) {
Gabe Black540c2622011-12-05 12:09:26 +0000262 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
wdenk591dda52002-11-18 00:14:45 +0000263 } else if (bootproto >= 0x0200) {
Gabe Black1cf51212011-12-05 12:09:23 +0000264 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
Gabe Black540c2622011-12-05 12:09:26 +0000265 setup_base->screen_info.cl_offset =
266 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ1bab1042010-04-24 00:05:49 +1000267
268 hdr->setup_move_size = 0x9100;
wdenk591dda52002-11-18 00:14:45 +0000269 }
wdenk591dda52002-11-18 00:14:45 +0000270
wdenk591dda52002-11-18 00:14:45 +0000271 /* build command line at COMMAND_LINE_OFFSET */
Gabe Black540c2622011-12-05 12:09:26 +0000272 build_command_line(cmd_line, auto_boot);
273 return 0;
wdenk591dda52002-11-18 00:14:45 +0000274}
275
Stefan Reinauer2e5225e2012-10-23 18:04:37 +0000276/*
277 * Implement a weak default function for boards that optionally
278 * need to clean up the system before jumping to the kernel.
279 */
280__weak void board_final_cleanup(void)
281{
282}
283
Gabe Blackc67a9482011-12-05 12:09:24 +0000284void boot_zimage(void *setup_base, void *load_address)
wdenk591dda52002-11-18 00:14:45 +0000285{
Stefan Reinauer2e5225e2012-10-23 18:04:37 +0000286 board_final_cleanup();
287
Gabe Blackc67a9482011-12-05 12:09:24 +0000288 printf("\nStarting kernel ...\n\n");
289
Vadim Bendebury8cd22c82012-10-23 18:04:34 +0000290#ifdef CONFIG_SYS_COREBOOT
291 timestamp_add_now(TS_U_BOOT_START_KERNEL);
292#endif
Gabe Blackc67a9482011-12-05 12:09:24 +0000293 /*
294 * Set %ebx, %ebp, and %edi to 0, %esi to point to the boot_params
295 * structure, and then jump to the kernel. We assume that %cs is
296 * 0x10, 4GB flat, and read/execute, and the data segments are 0x18,
297 * 4GB flat, and read/write. U-boot is setting them up that way for
298 * itself in arch/i386/cpu/cpu.c.
299 */
300 __asm__ __volatile__ (
Simon Glass923bbf02012-10-23 18:04:40 +0000301 "movl $0, %%ebp\n"
302 "cli\n"
303 "jmp *%[kernel_entry]\n"
Gabe Blackc67a9482011-12-05 12:09:24 +0000304 :: [kernel_entry]"a"(load_address),
305 [boot_params] "S"(setup_base),
306 "b"(0), "D"(0)
307 : "%ebp"
308 );
wdenk591dda52002-11-18 00:14:45 +0000309}
Graeme Russ1bab1042010-04-24 00:05:49 +1000310
Graeme Russ81d90dd2011-12-23 10:20:55 +1100311void setup_pcat_compatibility(void)
312 __attribute__((weak, alias("__setup_pcat_compatibility")));
313
314void __setup_pcat_compatibility(void)
315{
316}
317
Graeme Russ883c6032011-11-08 02:33:15 +0000318int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ1bab1042010-04-24 00:05:49 +1000319{
Gabe Black540c2622011-12-05 12:09:26 +0000320 struct boot_params *base_ptr;
Graeme Russ3134be22010-10-07 20:03:19 +1100321 void *bzImage_addr = NULL;
Gabe Blackc67a9482011-12-05 12:09:24 +0000322 void *load_address;
Graeme Russ3134be22010-10-07 20:03:19 +1100323 char *s;
Graeme Russ1bab1042010-04-24 00:05:49 +1000324 ulong bzImage_size = 0;
Gabe Black69b49ee2011-12-05 12:09:27 +0000325 ulong initrd_addr = 0;
326 ulong initrd_size = 0;
Graeme Russ1bab1042010-04-24 00:05:49 +1000327
328 disable_interrupts();
329
330 /* Setup board for maximum PC/AT Compatibility */
331 setup_pcat_compatibility();
332
Gabe Black1cf51212011-12-05 12:09:23 +0000333 if (argc >= 2) {
Graeme Russ3134be22010-10-07 20:03:19 +1100334 /* argv[1] holds the address of the bzImage */
335 s = argv[1];
Gabe Black1cf51212011-12-05 12:09:23 +0000336 } else {
Graeme Russ3134be22010-10-07 20:03:19 +1100337 s = getenv("fileaddr");
Gabe Black1cf51212011-12-05 12:09:23 +0000338 }
Graeme Russ1bab1042010-04-24 00:05:49 +1000339
Graeme Russ3134be22010-10-07 20:03:19 +1100340 if (s)
341 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
342
Gabe Black69b49ee2011-12-05 12:09:27 +0000343 if (argc >= 3) {
Graeme Russ3134be22010-10-07 20:03:19 +1100344 /* argv[2] holds the size of the bzImage */
Graeme Russ1bab1042010-04-24 00:05:49 +1000345 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black69b49ee2011-12-05 12:09:27 +0000346 }
347
348 if (argc >= 4)
349 initrd_addr = simple_strtoul(argv[3], NULL, 16);
350 if (argc >= 5)
351 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ1bab1042010-04-24 00:05:49 +1000352
Gabe Black1cf51212011-12-05 12:09:23 +0000353 /* Lets look for */
Gabe Black540c2622011-12-05 12:09:26 +0000354 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ1bab1042010-04-24 00:05:49 +1000355
Graeme Russ883c6032011-11-08 02:33:15 +0000356 if (!base_ptr) {
357 printf("## Kernel loading failed ...\n");
Gabe Black540c2622011-12-05 12:09:26 +0000358 return -1;
Graeme Russ1bab1042010-04-24 00:05:49 +1000359 }
Gabe Black540c2622011-12-05 12:09:26 +0000360 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black69b49ee2011-12-05 12:09:27 +0000361 0, initrd_addr, initrd_size)) {
Gabe Black540c2622011-12-05 12:09:26 +0000362 printf("Setting up boot parameters failed ...\n");
363 return -1;
364 }
365
366 printf("## Transferring control to Linux "
367 "(at address %08x) ...\n",
368 (u32)base_ptr);
369
370 /* we assume that the kernel is in place */
371 boot_zimage(base_ptr, load_address);
372 /* does not return */
Graeme Russ1bab1042010-04-24 00:05:49 +1000373
374 return -1;
375}
376
377U_BOOT_CMD(
Gabe Black69b49ee2011-12-05 12:09:27 +0000378 zboot, 5, 0, do_zboot,
Graeme Russ1bab1042010-04-24 00:05:49 +1000379 "Boot bzImage",
Gabe Black69b49ee2011-12-05 12:09:27 +0000380 "[addr] [size] [initrd addr] [initrd size]\n"
381 " addr - The optional starting address of the bzimage.\n"
382 " If not set it defaults to the environment\n"
383 " variable \"fileaddr\".\n"
384 " size - The optional size of the bzimage. Defaults to\n"
385 " zero.\n"
386 " initrd addr - The address of the initrd image to use, if any.\n"
387 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ1bab1042010-04-24 00:05:49 +1000388);