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 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | * 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 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 25 | /* |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 26 | * Linux x86 zImage and bzImage loading |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 27 | * |
| 28 | * based on the procdure described in |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 29 | * 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 Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 38 | #include <asm/bootparam.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * Memory lay-out: |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 42 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 43 | * relative to setup_base (which is 0x90000 currently) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 44 | * |
| 45 | * 0x0000-0x7FFF Real mode kernel |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 46 | * 0x8000-0x8FFF Stack and heap |
| 47 | * 0x9000-0x90FF Kernel command line |
| 48 | */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 49 | #define DEFAULT_SETUP_BASE 0x90000 |
| 50 | #define COMMAND_LINE_OFFSET 0x9000 |
| 51 | #define HEAP_END_OFFSET 0x8e00 |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 52 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 53 | #define COMMAND_LINE_SIZE 2048 |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 54 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 55 | unsigned generic_install_e820_map(unsigned max_entries, |
| 56 | struct e820entry *entries) |
| 57 | { |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | unsigned install_e820_map(unsigned max_entries, |
| 62 | struct e820entry *entries) |
| 63 | __attribute__((weak, alias("generic_install_e820_map"))); |
| 64 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 65 | static void build_command_line(char *command_line, int auto_boot) |
| 66 | { |
| 67 | char *env_command_line; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 68 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 69 | command_line[0] = '\0'; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 70 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 71 | env_command_line = getenv("bootargs"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 72 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 73 | /* set console= argument if we use a serial console */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 74 | if (!strstr(env_command_line, "console=")) { |
| 75 | if (!strcmp(getenv("stdout"), "serial")) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 76 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 77 | /* We seem to use serial console */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 78 | sprintf(command_line, "console=ttyS0,%s ", |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 79 | getenv("baudrate")); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 80 | } |
| 81 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 82 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 83 | if (auto_boot) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 84 | strcat(command_line, "auto "); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 85 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 86 | if (env_command_line) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 87 | strcat(command_line, env_command_line); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 88 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 89 | printf("Kernel command line: \"%s\"\n", command_line); |
| 90 | } |
| 91 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 92 | static 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 | |
| 105 | static 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 | |
| 117 | struct boot_params *load_zimage(char *image, unsigned long kernel_size, |
| 118 | void **load_address) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 119 | { |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 120 | struct boot_params *setup_base; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 121 | int setup_size; |
| 122 | int bootproto; |
| 123 | int big_image; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 124 | |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 125 | struct boot_params *params = (struct boot_params *)image; |
| 126 | struct setup_header *hdr = ¶ms->hdr; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 127 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 128 | /* base address for real-mode segment */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 129 | setup_base = (struct boot_params *)DEFAULT_SETUP_BASE; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 130 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 131 | if (!kernel_magic_ok(hdr)) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 132 | return 0; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 133 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 134 | /* determine size of setup */ |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 135 | if (0 == hdr->setup_sects) { |
| 136 | printf("Setup Sectors = 0 (defaulting to 4)\n"); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 137 | setup_size = 5 * 512; |
| 138 | } else { |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 139 | setup_size = (hdr->setup_sects + 1) * 512; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 140 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 141 | |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 142 | printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size); |
| 143 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 144 | if (setup_size > SETUP_MAX_SIZE) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 145 | printf("Error: Setup is too large (%d bytes)\n", setup_size); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 146 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 147 | /* 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 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 164 | /* Determine image type */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 165 | big_image = (bootproto >= 0x0200) && |
| 166 | (hdr->loadflags & BIG_KERNEL_FLAG); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 167 | |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 168 | /* Determine load address */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 169 | if (big_image) |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 170 | *load_address = (void *)BZIMAGE_LOAD_ADDR; |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 171 | else |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 172 | *load_address = (void *)ZIMAGE_LOAD_ADDR; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 173 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 174 | #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 Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 178 | #else |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 179 | /* load setup */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 180 | printf("Moving Real-Mode Code to 0x%8.8lx (%d bytes)\n", |
| 181 | (ulong)setup_base, setup_size); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 182 | memmove(setup_base, image, setup_size); |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 183 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 184 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 185 | if (bootproto >= 0x0204) |
| 186 | kernel_size = hdr->syssize * 16; |
| 187 | else |
| 188 | kernel_size -= setup_size; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 189 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 190 | if (bootproto == 0x0100) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 191 | /* |
| 192 | * A very old kernel MUST have its real-mode code |
| 193 | * loaded at 0x90000 |
| 194 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 195 | if ((u32)setup_base != 0x90000) { |
| 196 | /* Copy the real-mode kernel */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 197 | memmove((void *)0x90000, setup_base, setup_size); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 198 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 199 | /* Copy the command line */ |
| 200 | memmove((void *)0x99000, |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 201 | (u8 *)setup_base + COMMAND_LINE_OFFSET, |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 202 | COMMAND_LINE_SIZE); |
| 203 | |
| 204 | /* Relocated */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 205 | setup_base = (struct boot_params *)0x90000; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 206 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 207 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 208 | /* It is recommended to clear memory up to the 32K mark */ |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 209 | memset((u8 *)0x90000 + setup_size, 0, |
| 210 | SETUP_MAX_SIZE - setup_size); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 211 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 212 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 213 | 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 Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 225 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 226 | 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 | |
| 234 | int 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 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 249 | if (bootproto >= 0x0200) { |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 250 | hdr->type_of_loader = 8; |
| 251 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 252 | if (initrd_addr) { |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 253 | printf("Initial RAM disk at linear address " |
| 254 | "0x%08lx, size %ld bytes\n", |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 255 | initrd_addr, initrd_size); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 256 | |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 257 | hdr->ramdisk_image = initrd_addr; |
| 258 | hdr->ramdisk_size = initrd_size; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 259 | } |
| 260 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 261 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 262 | if (bootproto >= 0x0201) { |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 263 | hdr->heap_end_ptr = HEAP_END_OFFSET; |
| 264 | hdr->loadflags |= HEAP_FLAG; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 265 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 266 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 267 | if (bootproto >= 0x0202) { |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 268 | hdr->cmd_line_ptr = (uintptr_t)cmd_line; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 269 | } else if (bootproto >= 0x0200) { |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 270 | setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC; |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 271 | setup_base->screen_info.cl_offset = |
| 272 | (uintptr_t)cmd_line - (uintptr_t)setup_base; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 273 | |
| 274 | hdr->setup_move_size = 0x9100; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 275 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 276 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 277 | /* build command line at COMMAND_LINE_OFFSET */ |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 278 | build_command_line(cmd_line, auto_boot); |
| 279 | return 0; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 282 | void boot_zimage(void *setup_base, void *load_address) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 283 | { |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 284 | 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 |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 304 | struct pt_regs regs; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 305 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 306 | memset(®s, 0, sizeof(struct pt_regs)); |
| 307 | regs.xds = (u32)setup_base >> 4; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 308 | regs.xes = regs.xds; |
| 309 | regs.xss = regs.xds; |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 310 | regs.esp = 0x9000; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 311 | regs.eflags = 0; |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 312 | enter_realmode(((u32)setup_base + SETUP_START_OFFSET) >> 4, 0, |
| 313 | ®s, ®s); |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 314 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 315 | } |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 316 | |
Graeme Russ | 8e18e6e | 2011-12-23 10:20:55 +1100 | [diff] [blame^] | 317 | void setup_pcat_compatibility(void) |
| 318 | __attribute__((weak, alias("__setup_pcat_compatibility"))); |
| 319 | |
| 320 | void __setup_pcat_compatibility(void) |
| 321 | { |
| 322 | } |
| 323 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 324 | 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] | 325 | { |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 326 | struct boot_params *base_ptr; |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 327 | void *bzImage_addr = NULL; |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 328 | void *load_address; |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 329 | char *s; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 330 | ulong bzImage_size = 0; |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 331 | ulong initrd_addr = 0; |
| 332 | ulong initrd_size = 0; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 333 | |
| 334 | disable_interrupts(); |
| 335 | |
| 336 | /* Setup board for maximum PC/AT Compatibility */ |
| 337 | setup_pcat_compatibility(); |
| 338 | |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 339 | if (argc >= 2) { |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 340 | /* argv[1] holds the address of the bzImage */ |
| 341 | s = argv[1]; |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 342 | } else { |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 343 | s = getenv("fileaddr"); |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 344 | } |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 345 | |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 346 | if (s) |
| 347 | bzImage_addr = (void *)simple_strtoul(s, NULL, 16); |
| 348 | |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 349 | if (argc >= 3) { |
Graeme Russ | abe98f4 | 2010-10-07 20:03:19 +1100 | [diff] [blame] | 350 | /* argv[2] holds the size of the bzImage */ |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 351 | bzImage_size = simple_strtoul(argv[2], NULL, 16); |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 352 | } |
| 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 Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 358 | |
Gabe Black | d3a2bc3 | 2011-12-05 12:09:23 +0000 | [diff] [blame] | 359 | /* Lets look for */ |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 360 | base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address); |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 361 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 362 | if (!base_ptr) { |
| 363 | printf("## Kernel loading failed ...\n"); |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 364 | return -1; |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 365 | } |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 366 | if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET, |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 367 | 0, initrd_addr, initrd_size)) { |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame] | 368 | 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 Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 379 | |
| 380 | return -1; |
| 381 | } |
| 382 | |
| 383 | U_BOOT_CMD( |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 384 | zboot, 5, 0, do_zboot, |
Graeme Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 385 | "Boot bzImage", |
Gabe Black | 6f9d998 | 2011-12-05 12:09:27 +0000 | [diff] [blame] | 386 | "[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 Russ | 95ffaba | 2010-04-24 00:05:49 +1000 | [diff] [blame] | 394 | ); |