wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 2 | * Copyright (c) 2011 The Chromium OS Authors. |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 3 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 4 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 9 | /* |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 10 | * Linux x86 zImage and bzImage loading |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 11 | * |
| 12 | * based on the procdure described in |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 13 | * 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> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 20 | #include <asm/byteorder.h> |
Simon Glass | 0d0ba59 | 2014-10-19 21:11:20 -0600 | [diff] [blame] | 21 | #include <asm/bootm.h> |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 22 | #include <asm/bootparam.h> |
Vadim Bendebury | 3cdc18a | 2012-10-23 18:04:34 +0000 | [diff] [blame] | 23 | #ifdef CONFIG_SYS_COREBOOT |
| 24 | #include <asm/arch/timestamp.h> |
| 25 | #endif |
Stefan Reinauer | 61e0ea9 | 2012-10-23 18:04:37 +0000 | [diff] [blame] | 26 | #include <linux/compiler.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Memory lay-out: |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 30 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 31 | * relative to setup_base (which is 0x90000 currently) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 32 | * |
| 33 | * 0x0000-0x7FFF Real mode kernel |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 34 | * 0x8000-0x8FFF Stack and heap |
| 35 | * 0x9000-0x90FF Kernel command line |
| 36 | */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 37 | #define DEFAULT_SETUP_BASE 0x90000 |
| 38 | #define COMMAND_LINE_OFFSET 0x9000 |
| 39 | #define HEAP_END_OFFSET 0x8e00 |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 40 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 41 | #define COMMAND_LINE_SIZE 2048 |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 42 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 43 | unsigned generic_install_e820_map(unsigned max_entries, |
| 44 | struct e820entry *entries) |
| 45 | { |
| 46 | return 0; |
| 47 | } |
| 48 | |
| 49 | unsigned install_e820_map(unsigned max_entries, |
| 50 | struct e820entry *entries) |
| 51 | __attribute__((weak, alias("generic_install_e820_map"))); |
| 52 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 53 | static void build_command_line(char *command_line, int auto_boot) |
| 54 | { |
| 55 | char *env_command_line; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 56 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 57 | command_line[0] = '\0'; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 58 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 59 | env_command_line = getenv("bootargs"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 60 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 61 | /* set console= argument if we use a serial console */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 62 | if (!strstr(env_command_line, "console=")) { |
| 63 | if (!strcmp(getenv("stdout"), "serial")) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 64 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 65 | /* We seem to use serial console */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 66 | sprintf(command_line, "console=ttyS0,%s ", |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 67 | getenv("baudrate")); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 68 | } |
| 69 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 70 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 71 | if (auto_boot) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 72 | strcat(command_line, "auto "); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 73 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 74 | if (env_command_line) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 75 | strcat(command_line, env_command_line); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 76 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 77 | printf("Kernel command line: \"%s\"\n", command_line); |
| 78 | } |
| 79 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 80 | static int kernel_magic_ok(struct setup_header *hdr) |
| 81 | { |
| 82 | if (KERNEL_MAGIC != hdr->boot_flag) { |
| 83 | printf("Error: Invalid Boot Flag " |
| 84 | "(found 0x%04x, expected 0x%04x)\n", |
| 85 | hdr->boot_flag, KERNEL_MAGIC); |
| 86 | return 0; |
| 87 | } else { |
| 88 | printf("Valid Boot Flag\n"); |
| 89 | return 1; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | static int get_boot_protocol(struct setup_header *hdr) |
| 94 | { |
| 95 | if (hdr->header == KERNEL_V2_MAGIC) { |
| 96 | printf("Magic signature found\n"); |
| 97 | return hdr->version; |
| 98 | } else { |
| 99 | /* Very old kernel */ |
| 100 | printf("Magic signature not found\n"); |
| 101 | return 0x0100; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | struct boot_params *load_zimage(char *image, unsigned long kernel_size, |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 106 | ulong *load_addressp) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 107 | { |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 108 | struct boot_params *setup_base; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 109 | int setup_size; |
| 110 | int bootproto; |
| 111 | int big_image; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 112 | |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 113 | struct boot_params *params = (struct boot_params *)image; |
| 114 | struct setup_header *hdr = ¶ms->hdr; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 115 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 116 | /* base address for real-mode segment */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 117 | setup_base = (struct boot_params *)DEFAULT_SETUP_BASE; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 118 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 119 | if (!kernel_magic_ok(hdr)) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 120 | return 0; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 121 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 122 | /* determine size of setup */ |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 123 | if (0 == hdr->setup_sects) { |
| 124 | printf("Setup Sectors = 0 (defaulting to 4)\n"); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 125 | setup_size = 5 * 512; |
| 126 | } else { |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 127 | setup_size = (hdr->setup_sects + 1) * 512; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 128 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 129 | |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 130 | printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size); |
| 131 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 132 | if (setup_size > SETUP_MAX_SIZE) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 133 | printf("Error: Setup is too large (%d bytes)\n", setup_size); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 134 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 135 | /* determine boot protocol version */ |
| 136 | bootproto = get_boot_protocol(hdr); |
| 137 | |
| 138 | printf("Using boot protocol version %x.%02x\n", |
| 139 | (bootproto & 0xff00) >> 8, bootproto & 0xff); |
| 140 | |
| 141 | if (bootproto >= 0x0200) { |
| 142 | if (hdr->setup_sects >= 15) { |
| 143 | printf("Linux kernel version %s\n", |
| 144 | (char *)params + |
| 145 | hdr->kernel_version + 0x200); |
| 146 | } else { |
| 147 | printf("Setup Sectors < 15 - " |
| 148 | "Cannot print kernel version.\n"); |
| 149 | } |
| 150 | } |
| 151 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 152 | /* Determine image type */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 153 | big_image = (bootproto >= 0x0200) && |
| 154 | (hdr->loadflags & BIG_KERNEL_FLAG); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 155 | |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 156 | /* Determine load address */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 157 | if (big_image) |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 158 | *load_addressp = BZIMAGE_LOAD_ADDR; |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 159 | else |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 160 | *load_addressp = ZIMAGE_LOAD_ADDR; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 161 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 162 | printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base); |
| 163 | memset(setup_base, 0, sizeof(*setup_base)); |
| 164 | setup_base->hdr = params->hdr; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 165 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 166 | if (bootproto >= 0x0204) |
| 167 | kernel_size = hdr->syssize * 16; |
| 168 | else |
| 169 | kernel_size -= setup_size; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 170 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 171 | if (bootproto == 0x0100) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 172 | /* |
| 173 | * A very old kernel MUST have its real-mode code |
| 174 | * loaded at 0x90000 |
| 175 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 176 | if ((u32)setup_base != 0x90000) { |
| 177 | /* Copy the real-mode kernel */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 178 | memmove((void *)0x90000, setup_base, setup_size); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 179 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 180 | /* Copy the command line */ |
| 181 | memmove((void *)0x99000, |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 182 | (u8 *)setup_base + COMMAND_LINE_OFFSET, |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 183 | COMMAND_LINE_SIZE); |
| 184 | |
| 185 | /* Relocated */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 186 | setup_base = (struct boot_params *)0x90000; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 187 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 188 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 189 | /* It is recommended to clear memory up to the 32K mark */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 190 | memset((u8 *)0x90000 + setup_size, 0, |
| 191 | SETUP_MAX_SIZE - setup_size); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 192 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 193 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 194 | if (big_image) { |
| 195 | if (kernel_size > BZIMAGE_MAX_SIZE) { |
| 196 | printf("Error: bzImage kernel too big! " |
| 197 | "(size: %ld, max: %d)\n", |
| 198 | kernel_size, BZIMAGE_MAX_SIZE); |
| 199 | return 0; |
| 200 | } |
| 201 | } else if ((kernel_size) > ZIMAGE_MAX_SIZE) { |
| 202 | printf("Error: zImage kernel too big! (size: %ld, max: %d)\n", |
| 203 | kernel_size, ZIMAGE_MAX_SIZE); |
| 204 | return 0; |
| 205 | } |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 206 | |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 207 | printf("Loading %s at address %lx (%ld bytes)\n", |
| 208 | big_image ? "bzImage" : "zImage", *load_addressp, kernel_size); |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 209 | |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 210 | memmove((void *)*load_addressp, image + setup_size, kernel_size); |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 211 | |
| 212 | return setup_base; |
| 213 | } |
| 214 | |
| 215 | int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot, |
| 216 | unsigned long initrd_addr, unsigned long initrd_size) |
| 217 | { |
| 218 | struct setup_header *hdr = &setup_base->hdr; |
| 219 | int bootproto = get_boot_protocol(hdr); |
| 220 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 221 | setup_base->e820_entries = install_e820_map( |
| 222 | ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map); |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 223 | |
| 224 | if (bootproto == 0x0100) { |
| 225 | setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC; |
| 226 | setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET; |
| 227 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 228 | if (bootproto >= 0x0200) { |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 229 | hdr->type_of_loader = 8; |
| 230 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 231 | if (initrd_addr) { |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 232 | printf("Initial RAM disk at linear address " |
| 233 | "0x%08lx, size %ld bytes\n", |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 234 | initrd_addr, initrd_size); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 235 | |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 236 | hdr->ramdisk_image = initrd_addr; |
| 237 | hdr->ramdisk_size = initrd_size; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 238 | } |
| 239 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 240 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 241 | if (bootproto >= 0x0201) { |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 242 | hdr->heap_end_ptr = HEAP_END_OFFSET; |
| 243 | hdr->loadflags |= HEAP_FLAG; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 244 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 245 | |
Simon Glass | 97d1e0c | 2014-10-19 21:11:21 -0600 | [diff] [blame] | 246 | if (cmd_line) { |
| 247 | if (bootproto >= 0x0202) { |
| 248 | hdr->cmd_line_ptr = (uintptr_t)cmd_line; |
| 249 | } else if (bootproto >= 0x0200) { |
| 250 | setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC; |
| 251 | setup_base->screen_info.cl_offset = |
| 252 | (uintptr_t)cmd_line - (uintptr_t)setup_base; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 253 | |
Simon Glass | 97d1e0c | 2014-10-19 21:11:21 -0600 | [diff] [blame] | 254 | hdr->setup_move_size = 0x9100; |
| 255 | } |
| 256 | |
| 257 | /* build command line at COMMAND_LINE_OFFSET */ |
| 258 | build_command_line(cmd_line, auto_boot); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 259 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 260 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 261 | return 0; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Graeme Russ | 8e18e6e | 2011-12-23 10:20:55 +1100 | [diff] [blame] | 264 | void setup_pcat_compatibility(void) |
| 265 | __attribute__((weak, alias("__setup_pcat_compatibility"))); |
| 266 | |
| 267 | void __setup_pcat_compatibility(void) |
| 268 | { |
| 269 | } |
| 270 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 271 | int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 272 | { |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 273 | struct boot_params *base_ptr; |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 274 | void *bzImage_addr = NULL; |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 275 | ulong load_address; |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 276 | char *s; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 277 | ulong bzImage_size = 0; |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 278 | ulong initrd_addr = 0; |
| 279 | ulong initrd_size = 0; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 280 | |
| 281 | disable_interrupts(); |
| 282 | |
| 283 | /* Setup board for maximum PC/AT Compatibility */ |
| 284 | setup_pcat_compatibility(); |
| 285 | |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 286 | if (argc >= 2) { |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 287 | /* argv[1] holds the address of the bzImage */ |
| 288 | s = argv[1]; |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 289 | } else { |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 290 | s = getenv("fileaddr"); |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 291 | } |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 292 | |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 293 | if (s) |
| 294 | bzImage_addr = (void *)simple_strtoul(s, NULL, 16); |
| 295 | |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 296 | if (argc >= 3) { |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 297 | /* argv[2] holds the size of the bzImage */ |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 298 | bzImage_size = simple_strtoul(argv[2], NULL, 16); |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | if (argc >= 4) |
| 302 | initrd_addr = simple_strtoul(argv[3], NULL, 16); |
| 303 | if (argc >= 5) |
| 304 | initrd_size = simple_strtoul(argv[4], NULL, 16); |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 305 | |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 306 | /* Lets look for */ |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 307 | base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address); |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 308 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 309 | if (!base_ptr) { |
Simon Glass | 2c363cb | 2014-10-10 08:21:59 -0600 | [diff] [blame] | 310 | puts("## Kernel loading failed ...\n"); |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 311 | return -1; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 312 | } |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 313 | if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET, |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 314 | 0, initrd_addr, initrd_size)) { |
Simon Glass | 2c363cb | 2014-10-10 08:21:59 -0600 | [diff] [blame] | 315 | puts("Setting up boot parameters failed ...\n"); |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 316 | return -1; |
| 317 | } |
| 318 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 319 | /* we assume that the kernel is in place */ |
Simon Glass | 7653938 | 2014-10-10 08:21:56 -0600 | [diff] [blame] | 320 | return boot_linux_kernel((ulong)base_ptr, load_address, false); |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | U_BOOT_CMD( |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 324 | zboot, 5, 0, do_zboot, |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 325 | "Boot bzImage", |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 326 | "[addr] [size] [initrd addr] [initrd size]\n" |
| 327 | " addr - The optional starting address of the bzimage.\n" |
| 328 | " If not set it defaults to the environment\n" |
| 329 | " variable \"fileaddr\".\n" |
| 330 | " size - The optional size of the bzimage. Defaults to\n" |
| 331 | " zero.\n" |
| 332 | " initrd addr - The address of the initrd image to use, if any.\n" |
| 333 | " initrd size - The size of the initrd image to use, if any.\n" |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 334 | ); |