blob: b5597ecd7497642ca46676ed51ff1add79682ecb [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
wdenk8bde7f72003-06-27 21:31:46 +000092void *load_zimage(char *image, unsigned long kernel_size,
wdenk2262cfe2002-11-18 00:14:45 +000093 unsigned long initrd_addr, unsigned long initrd_size,
Gabe Black233dbc12011-12-05 12:09:24 +000094 int auto_boot, void **load_address)
wdenk2262cfe2002-11-18 00:14:45 +000095{
Gabe Blackd3a2bc32011-12-05 12:09:23 +000096 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +000097 int setup_size;
98 int bootproto;
99 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000100
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000101 struct boot_params *params = (struct boot_params *)image;
102 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000103
Graeme Russ83088af2011-11-08 02:33:15 +0000104 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000105 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000106
Graeme Russ95ffaba2010-04-24 00:05:49 +1000107 if (KERNEL_MAGIC != hdr->boot_flag) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000108 printf("Error: Invalid Boot Flag "
109 "(found 0x%04x, expected 0x%04x)\n",
110 hdr->boot_flag, KERNEL_MAGIC);
wdenk2262cfe2002-11-18 00:14:45 +0000111 return 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000112 } else {
113 printf("Valid Boot Flag\n");
wdenk2262cfe2002-11-18 00:14:45 +0000114 }
wdenk8bde7f72003-06-27 21:31:46 +0000115
wdenk2262cfe2002-11-18 00:14:45 +0000116 /* determine boot protocol version */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000117 if (KERNEL_V2_MAGIC == hdr->header) {
118 printf("Magic signature found\n");
119
120 bootproto = hdr->version;
wdenk2262cfe2002-11-18 00:14:45 +0000121 } else {
122 /* Very old kernel */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000123 printf("Magic signature not found\n");
wdenk2262cfe2002-11-18 00:14:45 +0000124 bootproto = 0x0100;
125 }
wdenk8bde7f72003-06-27 21:31:46 +0000126
wdenk2262cfe2002-11-18 00:14:45 +0000127 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000128 if (0 == hdr->setup_sects) {
129 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000130 setup_size = 5 * 512;
131 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000132 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000133 }
wdenk8bde7f72003-06-27 21:31:46 +0000134
Graeme Russ95ffaba2010-04-24 00:05:49 +1000135 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
136
Graeme Russ83088af2011-11-08 02:33:15 +0000137 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000138 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000139
wdenk2262cfe2002-11-18 00:14:45 +0000140 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000141 big_image = (bootproto >= 0x0200) &&
142 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000143
Graeme Russ95ffaba2010-04-24 00:05:49 +1000144 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000145 if (big_image)
Gabe Black233dbc12011-12-05 12:09:24 +0000146 *load_address = (void *)BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000147 else
Gabe Black233dbc12011-12-05 12:09:24 +0000148 *load_address = (void *)ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000149
Gabe Black233dbc12011-12-05 12:09:24 +0000150#if defined CONFIG_ZBOOT_32
151 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
152 memset(setup_base, 0, sizeof(*setup_base));
153 setup_base->hdr = params->hdr;
154
155 setup_base->e820_entries = install_e820_map(
156 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
157#else
wdenk2262cfe2002-11-18 00:14:45 +0000158 /* load setup */
Graeme Russ83088af2011-11-08 02:33:15 +0000159 printf("Moving Real-Mode Code to 0x%8.8lx (%d bytes)\n",
160 (ulong)setup_base, setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000161 memmove(setup_base, image, setup_size);
Gabe Black233dbc12011-12-05 12:09:24 +0000162#endif
wdenk8bde7f72003-06-27 21:31:46 +0000163
164 printf("Using boot protocol version %x.%02x\n",
wdenk2262cfe2002-11-18 00:14:45 +0000165 (bootproto & 0xff00) >> 8, bootproto & 0xff);
wdenk8bde7f72003-06-27 21:31:46 +0000166
wdenk8bde7f72003-06-27 21:31:46 +0000167 if (bootproto == 0x0100) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000168 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
169 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
wdenk8bde7f72003-06-27 21:31:46 +0000170
Graeme Russ83088af2011-11-08 02:33:15 +0000171 /*
172 * A very old kernel MUST have its real-mode code
173 * loaded at 0x90000
174 */
wdenk2262cfe2002-11-18 00:14:45 +0000175 if ((u32)setup_base != 0x90000) {
176 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000177 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000178
Graeme Russ83088af2011-11-08 02:33:15 +0000179 /* Copy the command line */
180 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000181 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000182 COMMAND_LINE_SIZE);
183
184 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000185 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000186 }
wdenk8bde7f72003-06-27 21:31:46 +0000187
wdenk2262cfe2002-11-18 00:14:45 +0000188 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000189 memset((u8 *)0x90000 + setup_size, 0,
190 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000191 }
wdenk8bde7f72003-06-27 21:31:46 +0000192
Graeme Russ95ffaba2010-04-24 00:05:49 +1000193 /* We are now setting up the real-mode version of the header */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000194 hdr = &setup_base->hdr;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000195
wdenk2262cfe2002-11-18 00:14:45 +0000196 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000197 hdr->type_of_loader = 8;
198
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000199 if (hdr->setup_sects >= 15) {
Graeme Russ83088af2011-11-08 02:33:15 +0000200 printf("Linux kernel version %s\n",
Gabe Black233dbc12011-12-05 12:09:24 +0000201 (char *)params +
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000202 hdr->kernel_version + 0x200);
203 } else {
204 printf("Setup Sectors < 15 - "
205 "Cannot print kernel version.\n");
206 }
wdenk8bde7f72003-06-27 21:31:46 +0000207
wdenk2262cfe2002-11-18 00:14:45 +0000208 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000209 printf("Initial RAM disk at linear address "
210 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000211 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000212
Graeme Russ95ffaba2010-04-24 00:05:49 +1000213 hdr->ramdisk_image = initrd_addr;
214 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000215 }
216 }
wdenk8bde7f72003-06-27 21:31:46 +0000217
wdenk2262cfe2002-11-18 00:14:45 +0000218 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000219 hdr->heap_end_ptr = HEAP_END_OFFSET;
220 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000221 }
wdenk8bde7f72003-06-27 21:31:46 +0000222
wdenk2262cfe2002-11-18 00:14:45 +0000223 if (bootproto >= 0x0202) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000224 hdr->cmd_line_ptr =
225 (uintptr_t)setup_base + COMMAND_LINE_OFFSET;
wdenk2262cfe2002-11-18 00:14:45 +0000226 } else if (bootproto >= 0x0200) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000227 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
228 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000229
230 hdr->setup_move_size = 0x9100;
wdenk2262cfe2002-11-18 00:14:45 +0000231 }
wdenk2262cfe2002-11-18 00:14:45 +0000232
Graeme Russ95ffaba2010-04-24 00:05:49 +1000233 if (bootproto >= 0x0204)
234 kernel_size = hdr->syssize * 16;
235 else
236 kernel_size -= setup_size;
237
wdenk8bde7f72003-06-27 21:31:46 +0000238
wdenk2262cfe2002-11-18 00:14:45 +0000239 if (big_image) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000240 if ((kernel_size) > BZIMAGE_MAX_SIZE) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000241 printf("Error: bzImage kernel too big! "
242 "(size: %ld, max: %d)\n",
243 kernel_size, BZIMAGE_MAX_SIZE);
wdenk2262cfe2002-11-18 00:14:45 +0000244 return 0;
245 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000246 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
wdenk2262cfe2002-11-18 00:14:45 +0000247 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
Graeme Russ95ffaba2010-04-24 00:05:49 +1000248 kernel_size, ZIMAGE_MAX_SIZE);
wdenk2262cfe2002-11-18 00:14:45 +0000249 return 0;
250 }
wdenk8bde7f72003-06-27 21:31:46 +0000251
wdenk2262cfe2002-11-18 00:14:45 +0000252 /* build command line at COMMAND_LINE_OFFSET */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000253 build_command_line((char *)setup_base + COMMAND_LINE_OFFSET, auto_boot);
wdenk8bde7f72003-06-27 21:31:46 +0000254
Graeme Russ83088af2011-11-08 02:33:15 +0000255 printf("Loading %czImage at address 0x%08x (%ld bytes)\n",
Gabe Black233dbc12011-12-05 12:09:24 +0000256 big_image ? 'b' : ' ', (u32)*load_address, kernel_size);
wdenk2262cfe2002-11-18 00:14:45 +0000257
Gabe Black233dbc12011-12-05 12:09:24 +0000258 memmove(*load_address, image + setup_size, kernel_size);
wdenk8bde7f72003-06-27 21:31:46 +0000259
wdenk2262cfe2002-11-18 00:14:45 +0000260 /* ready for booting */
261 return setup_base;
262}
263
Gabe Black233dbc12011-12-05 12:09:24 +0000264void boot_zimage(void *setup_base, void *load_address)
wdenk2262cfe2002-11-18 00:14:45 +0000265{
Gabe Black233dbc12011-12-05 12:09:24 +0000266 printf("\nStarting kernel ...\n\n");
267
268#if defined CONFIG_ZBOOT_32
269 /*
270 * Set %ebx, %ebp, and %edi to 0, %esi to point to the boot_params
271 * structure, and then jump to the kernel. We assume that %cs is
272 * 0x10, 4GB flat, and read/execute, and the data segments are 0x18,
273 * 4GB flat, and read/write. U-boot is setting them up that way for
274 * itself in arch/i386/cpu/cpu.c.
275 */
276 __asm__ __volatile__ (
277 "movl $0, %%ebp \n"
278 "cli \n"
279 "jmp %[kernel_entry] \n"
280 :: [kernel_entry]"a"(load_address),
281 [boot_params] "S"(setup_base),
282 "b"(0), "D"(0)
283 : "%ebp"
284 );
285#else
wdenk2262cfe2002-11-18 00:14:45 +0000286 struct pt_regs regs;
wdenk8bde7f72003-06-27 21:31:46 +0000287
wdenk2262cfe2002-11-18 00:14:45 +0000288 memset(&regs, 0, sizeof(struct pt_regs));
289 regs.xds = (u32)setup_base >> 4;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000290 regs.xes = regs.xds;
291 regs.xss = regs.xds;
wdenk7a8e9bed2003-05-31 18:35:21 +0000292 regs.esp = 0x9000;
wdenk2262cfe2002-11-18 00:14:45 +0000293 regs.eflags = 0;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000294 enter_realmode(((u32)setup_base + SETUP_START_OFFSET) >> 4, 0,
295 &regs, &regs);
Gabe Black233dbc12011-12-05 12:09:24 +0000296#endif
wdenk2262cfe2002-11-18 00:14:45 +0000297}
Graeme Russ95ffaba2010-04-24 00:05:49 +1000298
Graeme Russ83088af2011-11-08 02:33:15 +0000299int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000300{
301 void *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100302 void *bzImage_addr = NULL;
Gabe Black233dbc12011-12-05 12:09:24 +0000303 void *load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100304 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000305 ulong bzImage_size = 0;
306
307 disable_interrupts();
308
309 /* Setup board for maximum PC/AT Compatibility */
310 setup_pcat_compatibility();
311
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000312 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100313 /* argv[1] holds the address of the bzImage */
314 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000315 } else {
Graeme Russabe98f42010-10-07 20:03:19 +1100316 s = getenv("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000317 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000318
Graeme Russabe98f42010-10-07 20:03:19 +1100319 if (s)
320 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
321
322 if (argc >= 3)
323 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000324 bzImage_size = simple_strtoul(argv[2], NULL, 16);
325
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000326 /* Lets look for */
Gabe Black233dbc12011-12-05 12:09:24 +0000327 base_ptr = load_zimage(bzImage_addr, bzImage_size, 0, 0, 0,
328 &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000329
Graeme Russ83088af2011-11-08 02:33:15 +0000330 if (!base_ptr) {
331 printf("## Kernel loading failed ...\n");
Graeme Russ95ffaba2010-04-24 00:05:49 +1000332 } else {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000333 printf("## Transferring control to Linux "
334 "(at address %08x) ...\n",
335 (u32)base_ptr);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000336
337 /* we assume that the kernel is in place */
Gabe Black233dbc12011-12-05 12:09:24 +0000338 boot_zimage(base_ptr, load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000339 /* does not return */
340 }
341
342 return -1;
343}
344
345U_BOOT_CMD(
Graeme Russabe98f42010-10-07 20:03:19 +1100346 zboot, 2, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000347 "Boot bzImage",
348 ""
349);