blob: 22142864c22c052efd5626f26fc3ab04dfb1b630 [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 *
wdenk2262cfe2002-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
wdenk8bde7f72003-06-27 21:31:46 +000025/*
Graeme Russdbf71152011-04-13 19:43:26 +100026 * Linux x86 zImage and bzImage loading
wdenk8bde7f72003-06-27 21:31:46 +000027 *
28 * based on the procdure described in
wdenk2262cfe2002-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>
36#include <asm/realmode.h>
37#include <asm/byteorder.h>
Graeme Russ95ffaba2010-04-24 00:05:49 +100038#include <asm/bootparam.h>
wdenk2262cfe2002-11-18 00:14:45 +000039
40/*
41 * Memory lay-out:
wdenk8bde7f72003-06-27 21:31:46 +000042 *
wdenk2262cfe2002-11-18 00:14:45 +000043 * relative to setup_base (which is 0x90000 currently)
wdenk8bde7f72003-06-27 21:31:46 +000044 *
45 * 0x0000-0x7FFF Real mode kernel
wdenk2262cfe2002-11-18 00:14:45 +000046 * 0x8000-0x8FFF Stack and heap
47 * 0x9000-0x90FF Kernel command line
48 */
Graeme Russ83088af2011-11-08 02:33:15 +000049#define DEFAULT_SETUP_BASE 0x90000
50#define COMMAND_LINE_OFFSET 0x9000
51#define HEAP_END_OFFSET 0x8e00
wdenk2262cfe2002-11-18 00:14:45 +000052
Graeme Russ83088af2011-11-08 02:33:15 +000053#define COMMAND_LINE_SIZE 2048
wdenk2262cfe2002-11-18 00:14:45 +000054
Gabe Black233dbc12011-12-05 12:09:24 +000055unsigned generic_install_e820_map(unsigned max_entries,
56 struct e820entry *entries)
57{
58 return 0;
59}
60
61unsigned install_e820_map(unsigned max_entries,
62 struct e820entry *entries)
63 __attribute__((weak, alias("generic_install_e820_map")));
64
wdenk2262cfe2002-11-18 00:14:45 +000065static void build_command_line(char *command_line, int auto_boot)
66{
67 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000068
wdenk2262cfe2002-11-18 00:14:45 +000069 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000070
wdenk2262cfe2002-11-18 00:14:45 +000071 env_command_line = getenv("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000072
wdenk2262cfe2002-11-18 00:14:45 +000073 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000074 if (!strstr(env_command_line, "console=")) {
75 if (!strcmp(getenv("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000076
wdenk2262cfe2002-11-18 00:14:45 +000077 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000078 sprintf(command_line, "console=ttyS0,%s ",
Graeme Russ83088af2011-11-08 02:33:15 +000079 getenv("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000080 }
81 }
wdenk8bde7f72003-06-27 21:31:46 +000082
Graeme Russ83088af2011-11-08 02:33:15 +000083 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000084 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000085
Graeme Russ83088af2011-11-08 02:33:15 +000086 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000087 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000088
wdenk2262cfe2002-11-18 00:14:45 +000089 printf("Kernel command line: \"%s\"\n", command_line);
90}
91
Gabe Black69370d12011-12-05 12:09:26 +000092static int kernel_magic_ok(struct setup_header *hdr)
93{
94 if (KERNEL_MAGIC != hdr->boot_flag) {
95 printf("Error: Invalid Boot Flag "
96 "(found 0x%04x, expected 0x%04x)\n",
97 hdr->boot_flag, KERNEL_MAGIC);
98 return 0;
99 } else {
100 printf("Valid Boot Flag\n");
101 return 1;
102 }
103}
104
105static int get_boot_protocol(struct setup_header *hdr)
106{
107 if (hdr->header == KERNEL_V2_MAGIC) {
108 printf("Magic signature found\n");
109 return hdr->version;
110 } else {
111 /* Very old kernel */
112 printf("Magic signature not found\n");
113 return 0x0100;
114 }
115}
116
117struct boot_params *load_zimage(char *image, unsigned long kernel_size,
118 void **load_address)
wdenk2262cfe2002-11-18 00:14:45 +0000119{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000120 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000121 int setup_size;
122 int bootproto;
123 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000124
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000125 struct boot_params *params = (struct boot_params *)image;
126 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000127
Graeme Russ83088af2011-11-08 02:33:15 +0000128 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000129 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000130
Gabe Black69370d12011-12-05 12:09:26 +0000131 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000132 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000133
wdenk2262cfe2002-11-18 00:14:45 +0000134 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000135 if (0 == hdr->setup_sects) {
136 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000137 setup_size = 5 * 512;
138 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000139 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000140 }
wdenk8bde7f72003-06-27 21:31:46 +0000141
Graeme Russ95ffaba2010-04-24 00:05:49 +1000142 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
143
Graeme Russ83088af2011-11-08 02:33:15 +0000144 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000145 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000146
Gabe Black69370d12011-12-05 12:09:26 +0000147 /* determine boot protocol version */
148 bootproto = get_boot_protocol(hdr);
149
150 printf("Using boot protocol version %x.%02x\n",
151 (bootproto & 0xff00) >> 8, bootproto & 0xff);
152
153 if (bootproto >= 0x0200) {
154 if (hdr->setup_sects >= 15) {
155 printf("Linux kernel version %s\n",
156 (char *)params +
157 hdr->kernel_version + 0x200);
158 } else {
159 printf("Setup Sectors < 15 - "
160 "Cannot print kernel version.\n");
161 }
162 }
163
wdenk2262cfe2002-11-18 00:14:45 +0000164 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000165 big_image = (bootproto >= 0x0200) &&
166 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000167
Graeme Russ95ffaba2010-04-24 00:05:49 +1000168 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000169 if (big_image)
Gabe Black233dbc12011-12-05 12:09:24 +0000170 *load_address = (void *)BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000171 else
Gabe Black233dbc12011-12-05 12:09:24 +0000172 *load_address = (void *)ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000173
Gabe Black233dbc12011-12-05 12:09:24 +0000174#if defined CONFIG_ZBOOT_32
175 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
176 memset(setup_base, 0, sizeof(*setup_base));
177 setup_base->hdr = params->hdr;
Gabe Black233dbc12011-12-05 12:09:24 +0000178#else
wdenk2262cfe2002-11-18 00:14:45 +0000179 /* load setup */
Graeme Russ83088af2011-11-08 02:33:15 +0000180 printf("Moving Real-Mode Code to 0x%8.8lx (%d bytes)\n",
181 (ulong)setup_base, setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000182 memmove(setup_base, image, setup_size);
Gabe Black233dbc12011-12-05 12:09:24 +0000183#endif
wdenk8bde7f72003-06-27 21:31:46 +0000184
Gabe Black69370d12011-12-05 12:09:26 +0000185 if (bootproto >= 0x0204)
186 kernel_size = hdr->syssize * 16;
187 else
188 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000189
wdenk8bde7f72003-06-27 21:31:46 +0000190 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000191 /*
192 * A very old kernel MUST have its real-mode code
193 * loaded at 0x90000
194 */
wdenk2262cfe2002-11-18 00:14:45 +0000195 if ((u32)setup_base != 0x90000) {
196 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000197 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000198
Graeme Russ83088af2011-11-08 02:33:15 +0000199 /* Copy the command line */
200 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000201 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000202 COMMAND_LINE_SIZE);
203
204 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000205 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000206 }
wdenk8bde7f72003-06-27 21:31:46 +0000207
wdenk2262cfe2002-11-18 00:14:45 +0000208 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000209 memset((u8 *)0x90000 + setup_size, 0,
210 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000211 }
wdenk8bde7f72003-06-27 21:31:46 +0000212
Gabe Black69370d12011-12-05 12:09:26 +0000213 if (big_image) {
214 if (kernel_size > BZIMAGE_MAX_SIZE) {
215 printf("Error: bzImage kernel too big! "
216 "(size: %ld, max: %d)\n",
217 kernel_size, BZIMAGE_MAX_SIZE);
218 return 0;
219 }
220 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
221 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
222 kernel_size, ZIMAGE_MAX_SIZE);
223 return 0;
224 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000225
Gabe Black69370d12011-12-05 12:09:26 +0000226 printf("Loading %s at address %p (%ld bytes)\n",
227 big_image ? "bzImage" : "zImage", *load_address, kernel_size);
228
229 memmove(*load_address, image + setup_size, kernel_size);
230
231 return setup_base;
232}
233
234int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
235 unsigned long initrd_addr, unsigned long initrd_size)
236{
237 struct setup_header *hdr = &setup_base->hdr;
238 int bootproto = get_boot_protocol(hdr);
239
240#if defined CONFIG_ZBOOT_32
241 setup_base->e820_entries = install_e820_map(
242 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
243#endif
244
245 if (bootproto == 0x0100) {
246 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
247 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
248 }
wdenk2262cfe2002-11-18 00:14:45 +0000249 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000250 hdr->type_of_loader = 8;
251
wdenk2262cfe2002-11-18 00:14:45 +0000252 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000253 printf("Initial RAM disk at linear address "
254 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000255 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000256
Graeme Russ95ffaba2010-04-24 00:05:49 +1000257 hdr->ramdisk_image = initrd_addr;
258 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000259 }
260 }
wdenk8bde7f72003-06-27 21:31:46 +0000261
wdenk2262cfe2002-11-18 00:14:45 +0000262 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000263 hdr->heap_end_ptr = HEAP_END_OFFSET;
264 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000265 }
wdenk8bde7f72003-06-27 21:31:46 +0000266
wdenk2262cfe2002-11-18 00:14:45 +0000267 if (bootproto >= 0x0202) {
Gabe Black69370d12011-12-05 12:09:26 +0000268 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
wdenk2262cfe2002-11-18 00:14:45 +0000269 } else if (bootproto >= 0x0200) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000270 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
Gabe Black69370d12011-12-05 12:09:26 +0000271 setup_base->screen_info.cl_offset =
272 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000273
274 hdr->setup_move_size = 0x9100;
wdenk2262cfe2002-11-18 00:14:45 +0000275 }
wdenk2262cfe2002-11-18 00:14:45 +0000276
wdenk2262cfe2002-11-18 00:14:45 +0000277 /* build command line at COMMAND_LINE_OFFSET */
Gabe Black69370d12011-12-05 12:09:26 +0000278 build_command_line(cmd_line, auto_boot);
279 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000280}
281
Gabe Black233dbc12011-12-05 12:09:24 +0000282void boot_zimage(void *setup_base, void *load_address)
wdenk2262cfe2002-11-18 00:14:45 +0000283{
Gabe Black233dbc12011-12-05 12:09:24 +0000284 printf("\nStarting kernel ...\n\n");
285
286#if defined CONFIG_ZBOOT_32
287 /*
288 * Set %ebx, %ebp, and %edi to 0, %esi to point to the boot_params
289 * structure, and then jump to the kernel. We assume that %cs is
290 * 0x10, 4GB flat, and read/execute, and the data segments are 0x18,
291 * 4GB flat, and read/write. U-boot is setting them up that way for
292 * itself in arch/i386/cpu/cpu.c.
293 */
294 __asm__ __volatile__ (
295 "movl $0, %%ebp \n"
296 "cli \n"
297 "jmp %[kernel_entry] \n"
298 :: [kernel_entry]"a"(load_address),
299 [boot_params] "S"(setup_base),
300 "b"(0), "D"(0)
301 : "%ebp"
302 );
303#else
wdenk2262cfe2002-11-18 00:14:45 +0000304 struct pt_regs regs;
wdenk8bde7f72003-06-27 21:31:46 +0000305
wdenk2262cfe2002-11-18 00:14:45 +0000306 memset(&regs, 0, sizeof(struct pt_regs));
307 regs.xds = (u32)setup_base >> 4;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000308 regs.xes = regs.xds;
309 regs.xss = regs.xds;
wdenk7a8e9bed2003-05-31 18:35:21 +0000310 regs.esp = 0x9000;
wdenk2262cfe2002-11-18 00:14:45 +0000311 regs.eflags = 0;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000312 enter_realmode(((u32)setup_base + SETUP_START_OFFSET) >> 4, 0,
313 &regs, &regs);
Gabe Black233dbc12011-12-05 12:09:24 +0000314#endif
wdenk2262cfe2002-11-18 00:14:45 +0000315}
Graeme Russ95ffaba2010-04-24 00:05:49 +1000316
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100317void setup_pcat_compatibility(void)
318 __attribute__((weak, alias("__setup_pcat_compatibility")));
319
320void __setup_pcat_compatibility(void)
321{
322}
323
Graeme Russ83088af2011-11-08 02:33:15 +0000324int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000325{
Gabe Black69370d12011-12-05 12:09:26 +0000326 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100327 void *bzImage_addr = NULL;
Gabe Black233dbc12011-12-05 12:09:24 +0000328 void *load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100329 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000330 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000331 ulong initrd_addr = 0;
332 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000333
334 disable_interrupts();
335
336 /* Setup board for maximum PC/AT Compatibility */
337 setup_pcat_compatibility();
338
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000339 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100340 /* argv[1] holds the address of the bzImage */
341 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000342 } else {
Graeme Russabe98f42010-10-07 20:03:19 +1100343 s = getenv("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000344 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000345
Graeme Russabe98f42010-10-07 20:03:19 +1100346 if (s)
347 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
348
Gabe Black6f9d9982011-12-05 12:09:27 +0000349 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100350 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000351 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000352 }
353
354 if (argc >= 4)
355 initrd_addr = simple_strtoul(argv[3], NULL, 16);
356 if (argc >= 5)
357 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000358
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000359 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000360 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000361
Graeme Russ83088af2011-11-08 02:33:15 +0000362 if (!base_ptr) {
363 printf("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000364 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000365 }
Gabe Black69370d12011-12-05 12:09:26 +0000366 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000367 0, initrd_addr, initrd_size)) {
Gabe Black69370d12011-12-05 12:09:26 +0000368 printf("Setting up boot parameters failed ...\n");
369 return -1;
370 }
371
372 printf("## Transferring control to Linux "
373 "(at address %08x) ...\n",
374 (u32)base_ptr);
375
376 /* we assume that the kernel is in place */
377 boot_zimage(base_ptr, load_address);
378 /* does not return */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000379
380 return -1;
381}
382
383U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000384 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000385 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000386 "[addr] [size] [initrd addr] [initrd size]\n"
387 " addr - The optional starting address of the bzimage.\n"
388 " If not set it defaults to the environment\n"
389 " variable \"fileaddr\".\n"
390 " size - The optional size of the bzimage. Defaults to\n"
391 " zero.\n"
392 " initrd addr - The address of the initrd image to use, if any.\n"
393 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000394);