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