blob: 46af391f29f2a82baebd91acf6e55d638dc7524b [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>
Vadim Bendebury3cdc18a2012-10-23 18:04:34 +000039#ifdef CONFIG_SYS_COREBOOT
40#include <asm/arch/timestamp.h>
41#endif
Stefan Reinauer61e0ea92012-10-23 18:04:37 +000042#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000043
44/*
45 * Memory lay-out:
wdenk8bde7f72003-06-27 21:31:46 +000046 *
wdenk2262cfe2002-11-18 00:14:45 +000047 * relative to setup_base (which is 0x90000 currently)
wdenk8bde7f72003-06-27 21:31:46 +000048 *
49 * 0x0000-0x7FFF Real mode kernel
wdenk2262cfe2002-11-18 00:14:45 +000050 * 0x8000-0x8FFF Stack and heap
51 * 0x9000-0x90FF Kernel command line
52 */
Graeme Russ83088af2011-11-08 02:33:15 +000053#define DEFAULT_SETUP_BASE 0x90000
54#define COMMAND_LINE_OFFSET 0x9000
55#define HEAP_END_OFFSET 0x8e00
wdenk2262cfe2002-11-18 00:14:45 +000056
Graeme Russ83088af2011-11-08 02:33:15 +000057#define COMMAND_LINE_SIZE 2048
wdenk2262cfe2002-11-18 00:14:45 +000058
Gabe Black233dbc12011-12-05 12:09:24 +000059unsigned generic_install_e820_map(unsigned max_entries,
60 struct e820entry *entries)
61{
62 return 0;
63}
64
65unsigned install_e820_map(unsigned max_entries,
66 struct e820entry *entries)
67 __attribute__((weak, alias("generic_install_e820_map")));
68
wdenk2262cfe2002-11-18 00:14:45 +000069static void build_command_line(char *command_line, int auto_boot)
70{
71 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000072
wdenk2262cfe2002-11-18 00:14:45 +000073 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000074
wdenk2262cfe2002-11-18 00:14:45 +000075 env_command_line = getenv("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000076
wdenk2262cfe2002-11-18 00:14:45 +000077 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000078 if (!strstr(env_command_line, "console=")) {
79 if (!strcmp(getenv("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000080
wdenk2262cfe2002-11-18 00:14:45 +000081 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000082 sprintf(command_line, "console=ttyS0,%s ",
Graeme Russ83088af2011-11-08 02:33:15 +000083 getenv("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000084 }
85 }
wdenk8bde7f72003-06-27 21:31:46 +000086
Graeme Russ83088af2011-11-08 02:33:15 +000087 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000088 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000089
Graeme Russ83088af2011-11-08 02:33:15 +000090 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000091 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000092
wdenk2262cfe2002-11-18 00:14:45 +000093 printf("Kernel command line: \"%s\"\n", command_line);
94}
95
Gabe Black69370d12011-12-05 12:09:26 +000096static int kernel_magic_ok(struct setup_header *hdr)
97{
98 if (KERNEL_MAGIC != hdr->boot_flag) {
99 printf("Error: Invalid Boot Flag "
100 "(found 0x%04x, expected 0x%04x)\n",
101 hdr->boot_flag, KERNEL_MAGIC);
102 return 0;
103 } else {
104 printf("Valid Boot Flag\n");
105 return 1;
106 }
107}
108
109static int get_boot_protocol(struct setup_header *hdr)
110{
111 if (hdr->header == KERNEL_V2_MAGIC) {
112 printf("Magic signature found\n");
113 return hdr->version;
114 } else {
115 /* Very old kernel */
116 printf("Magic signature not found\n");
117 return 0x0100;
118 }
119}
120
121struct boot_params *load_zimage(char *image, unsigned long kernel_size,
122 void **load_address)
wdenk2262cfe2002-11-18 00:14:45 +0000123{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000124 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000125 int setup_size;
126 int bootproto;
127 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000128
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000129 struct boot_params *params = (struct boot_params *)image;
130 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000131
Graeme Russ83088af2011-11-08 02:33:15 +0000132 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000133 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000134
Gabe Black69370d12011-12-05 12:09:26 +0000135 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000136 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000137
wdenk2262cfe2002-11-18 00:14:45 +0000138 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000139 if (0 == hdr->setup_sects) {
140 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000141 setup_size = 5 * 512;
142 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000143 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000144 }
wdenk8bde7f72003-06-27 21:31:46 +0000145
Graeme Russ95ffaba2010-04-24 00:05:49 +1000146 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
147
Graeme Russ83088af2011-11-08 02:33:15 +0000148 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000149 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000150
Gabe Black69370d12011-12-05 12:09:26 +0000151 /* determine boot protocol version */
152 bootproto = get_boot_protocol(hdr);
153
154 printf("Using boot protocol version %x.%02x\n",
155 (bootproto & 0xff00) >> 8, bootproto & 0xff);
156
157 if (bootproto >= 0x0200) {
158 if (hdr->setup_sects >= 15) {
159 printf("Linux kernel version %s\n",
160 (char *)params +
161 hdr->kernel_version + 0x200);
162 } else {
163 printf("Setup Sectors < 15 - "
164 "Cannot print kernel version.\n");
165 }
166 }
167
wdenk2262cfe2002-11-18 00:14:45 +0000168 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000169 big_image = (bootproto >= 0x0200) &&
170 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000171
Graeme Russ95ffaba2010-04-24 00:05:49 +1000172 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000173 if (big_image)
Gabe Black233dbc12011-12-05 12:09:24 +0000174 *load_address = (void *)BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000175 else
Gabe Black233dbc12011-12-05 12:09:24 +0000176 *load_address = (void *)ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000177
Gabe Black5b5ece92012-11-29 16:23:41 +0000178#if (defined CONFIG_ZBOOT_32 || defined CONFIG_X86_NO_REAL_MODE)
Gabe Black233dbc12011-12-05 12:09:24 +0000179 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
180 memset(setup_base, 0, sizeof(*setup_base));
181 setup_base->hdr = params->hdr;
Gabe Black233dbc12011-12-05 12:09:24 +0000182#else
wdenk2262cfe2002-11-18 00:14:45 +0000183 /* load setup */
Graeme Russ83088af2011-11-08 02:33:15 +0000184 printf("Moving Real-Mode Code to 0x%8.8lx (%d bytes)\n",
185 (ulong)setup_base, setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000186 memmove(setup_base, image, setup_size);
Gabe Black233dbc12011-12-05 12:09:24 +0000187#endif
wdenk8bde7f72003-06-27 21:31:46 +0000188
Gabe Black69370d12011-12-05 12:09:26 +0000189 if (bootproto >= 0x0204)
190 kernel_size = hdr->syssize * 16;
191 else
192 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000193
wdenk8bde7f72003-06-27 21:31:46 +0000194 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000195 /*
196 * A very old kernel MUST have its real-mode code
197 * loaded at 0x90000
198 */
wdenk2262cfe2002-11-18 00:14:45 +0000199 if ((u32)setup_base != 0x90000) {
200 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000201 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000202
Graeme Russ83088af2011-11-08 02:33:15 +0000203 /* Copy the command line */
204 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000205 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000206 COMMAND_LINE_SIZE);
207
208 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000209 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000210 }
wdenk8bde7f72003-06-27 21:31:46 +0000211
wdenk2262cfe2002-11-18 00:14:45 +0000212 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000213 memset((u8 *)0x90000 + setup_size, 0,
214 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000215 }
wdenk8bde7f72003-06-27 21:31:46 +0000216
Gabe Black69370d12011-12-05 12:09:26 +0000217 if (big_image) {
218 if (kernel_size > BZIMAGE_MAX_SIZE) {
219 printf("Error: bzImage kernel too big! "
220 "(size: %ld, max: %d)\n",
221 kernel_size, BZIMAGE_MAX_SIZE);
222 return 0;
223 }
224 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
225 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
226 kernel_size, ZIMAGE_MAX_SIZE);
227 return 0;
228 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000229
Gabe Black69370d12011-12-05 12:09:26 +0000230 printf("Loading %s at address %p (%ld bytes)\n",
231 big_image ? "bzImage" : "zImage", *load_address, kernel_size);
232
233 memmove(*load_address, image + setup_size, kernel_size);
234
235 return setup_base;
236}
237
238int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
239 unsigned long initrd_addr, unsigned long initrd_size)
240{
241 struct setup_header *hdr = &setup_base->hdr;
242 int bootproto = get_boot_protocol(hdr);
243
Gabe Black5b5ece92012-11-29 16:23:41 +0000244#if (defined CONFIG_ZBOOT_32 || defined CONFIG_X86_NO_REAL_MODE)
Gabe Black69370d12011-12-05 12:09:26 +0000245 setup_base->e820_entries = install_e820_map(
246 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
247#endif
248
249 if (bootproto == 0x0100) {
250 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
251 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
252 }
wdenk2262cfe2002-11-18 00:14:45 +0000253 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000254 hdr->type_of_loader = 8;
255
wdenk2262cfe2002-11-18 00:14:45 +0000256 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000257 printf("Initial RAM disk at linear address "
258 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000259 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000260
Graeme Russ95ffaba2010-04-24 00:05:49 +1000261 hdr->ramdisk_image = initrd_addr;
262 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000263 }
264 }
wdenk8bde7f72003-06-27 21:31:46 +0000265
wdenk2262cfe2002-11-18 00:14:45 +0000266 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000267 hdr->heap_end_ptr = HEAP_END_OFFSET;
268 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000269 }
wdenk8bde7f72003-06-27 21:31:46 +0000270
wdenk2262cfe2002-11-18 00:14:45 +0000271 if (bootproto >= 0x0202) {
Gabe Black69370d12011-12-05 12:09:26 +0000272 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
wdenk2262cfe2002-11-18 00:14:45 +0000273 } else if (bootproto >= 0x0200) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000274 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
Gabe Black69370d12011-12-05 12:09:26 +0000275 setup_base->screen_info.cl_offset =
276 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000277
278 hdr->setup_move_size = 0x9100;
wdenk2262cfe2002-11-18 00:14:45 +0000279 }
wdenk2262cfe2002-11-18 00:14:45 +0000280
wdenk2262cfe2002-11-18 00:14:45 +0000281 /* build command line at COMMAND_LINE_OFFSET */
Gabe Black69370d12011-12-05 12:09:26 +0000282 build_command_line(cmd_line, auto_boot);
283 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000284}
285
Stefan Reinauer61e0ea92012-10-23 18:04:37 +0000286/*
287 * Implement a weak default function for boards that optionally
288 * need to clean up the system before jumping to the kernel.
289 */
290__weak void board_final_cleanup(void)
291{
292}
293
Gabe Black233dbc12011-12-05 12:09:24 +0000294void boot_zimage(void *setup_base, void *load_address)
wdenk2262cfe2002-11-18 00:14:45 +0000295{
Stefan Reinauer61e0ea92012-10-23 18:04:37 +0000296 board_final_cleanup();
297
Gabe Black233dbc12011-12-05 12:09:24 +0000298 printf("\nStarting kernel ...\n\n");
299
Vadim Bendebury3cdc18a2012-10-23 18:04:34 +0000300#ifdef CONFIG_SYS_COREBOOT
301 timestamp_add_now(TS_U_BOOT_START_KERNEL);
302#endif
Gabe Black233dbc12011-12-05 12:09:24 +0000303#if defined CONFIG_ZBOOT_32
304 /*
305 * Set %ebx, %ebp, and %edi to 0, %esi to point to the boot_params
306 * structure, and then jump to the kernel. We assume that %cs is
307 * 0x10, 4GB flat, and read/execute, and the data segments are 0x18,
308 * 4GB flat, and read/write. U-boot is setting them up that way for
309 * itself in arch/i386/cpu/cpu.c.
310 */
311 __asm__ __volatile__ (
Simon Glass14843112012-10-23 18:04:40 +0000312 "movl $0, %%ebp\n"
313 "cli\n"
314 "jmp *%[kernel_entry]\n"
Gabe Black233dbc12011-12-05 12:09:24 +0000315 :: [kernel_entry]"a"(load_address),
316 [boot_params] "S"(setup_base),
317 "b"(0), "D"(0)
318 : "%ebp"
319 );
320#else
wdenk2262cfe2002-11-18 00:14:45 +0000321 struct pt_regs regs;
wdenk8bde7f72003-06-27 21:31:46 +0000322
wdenk2262cfe2002-11-18 00:14:45 +0000323 memset(&regs, 0, sizeof(struct pt_regs));
324 regs.xds = (u32)setup_base >> 4;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000325 regs.xes = regs.xds;
326 regs.xss = regs.xds;
wdenk7a8e9bed2003-05-31 18:35:21 +0000327 regs.esp = 0x9000;
wdenk2262cfe2002-11-18 00:14:45 +0000328 regs.eflags = 0;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000329 enter_realmode(((u32)setup_base + SETUP_START_OFFSET) >> 4, 0,
330 &regs, &regs);
Gabe Black233dbc12011-12-05 12:09:24 +0000331#endif
wdenk2262cfe2002-11-18 00:14:45 +0000332}
Graeme Russ95ffaba2010-04-24 00:05:49 +1000333
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100334void setup_pcat_compatibility(void)
335 __attribute__((weak, alias("__setup_pcat_compatibility")));
336
337void __setup_pcat_compatibility(void)
338{
339}
340
Graeme Russ83088af2011-11-08 02:33:15 +0000341int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000342{
Gabe Black69370d12011-12-05 12:09:26 +0000343 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100344 void *bzImage_addr = NULL;
Gabe Black233dbc12011-12-05 12:09:24 +0000345 void *load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100346 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000347 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000348 ulong initrd_addr = 0;
349 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000350
351 disable_interrupts();
352
353 /* Setup board for maximum PC/AT Compatibility */
354 setup_pcat_compatibility();
355
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000356 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100357 /* argv[1] holds the address of the bzImage */
358 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000359 } else {
Graeme Russabe98f42010-10-07 20:03:19 +1100360 s = getenv("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000361 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000362
Graeme Russabe98f42010-10-07 20:03:19 +1100363 if (s)
364 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
365
Gabe Black6f9d9982011-12-05 12:09:27 +0000366 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100367 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000368 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000369 }
370
371 if (argc >= 4)
372 initrd_addr = simple_strtoul(argv[3], NULL, 16);
373 if (argc >= 5)
374 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000375
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000376 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000377 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000378
Graeme Russ83088af2011-11-08 02:33:15 +0000379 if (!base_ptr) {
380 printf("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000381 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000382 }
Gabe Black69370d12011-12-05 12:09:26 +0000383 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000384 0, initrd_addr, initrd_size)) {
Gabe Black69370d12011-12-05 12:09:26 +0000385 printf("Setting up boot parameters failed ...\n");
386 return -1;
387 }
388
389 printf("## Transferring control to Linux "
390 "(at address %08x) ...\n",
391 (u32)base_ptr);
392
393 /* we assume that the kernel is in place */
394 boot_zimage(base_ptr, load_address);
395 /* does not return */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000396
397 return -1;
398}
399
400U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000401 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000402 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000403 "[addr] [size] [initrd addr] [initrd size]\n"
404 " addr - The optional starting address of the bzimage.\n"
405 " If not set it defaults to the environment\n"
406 " variable \"fileaddr\".\n"
407 " size - The optional size of the bzimage. Defaults to\n"
408 " zero.\n"
409 " initrd addr - The address of the initrd image to use, if any.\n"
410 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000411);