blob: 1b33c771391f49ffe82864ff1582bdfd07e5e97d [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00007 */
8
wdenk8bde7f72003-06-27 21:31:46 +00009/*
Graeme Russdbf71152011-04-13 19:43:26 +100010 * Linux x86 zImage and bzImage loading
wdenk8bde7f72003-06-27 21:31:46 +000011 *
12 * based on the procdure described in
wdenk2262cfe2002-11-18 00:14:45 +000013 * 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>
wdenk2262cfe2002-11-18 00:14:45 +000020#include <asm/byteorder.h>
Simon Glass0d0ba592014-10-19 21:11:20 -060021#include <asm/bootm.h>
Graeme Russ95ffaba2010-04-24 00:05:49 +100022#include <asm/bootparam.h>
Vadim Bendebury3cdc18a2012-10-23 18:04:34 +000023#ifdef CONFIG_SYS_COREBOOT
24#include <asm/arch/timestamp.h>
25#endif
Stefan Reinauer61e0ea92012-10-23 18:04:37 +000026#include <linux/compiler.h>
wdenk2262cfe2002-11-18 00:14:45 +000027
Bin Meng54c60012015-04-21 12:21:36 +080028DECLARE_GLOBAL_DATA_PTR;
29
wdenk2262cfe2002-11-18 00:14:45 +000030/*
31 * Memory lay-out:
wdenk8bde7f72003-06-27 21:31:46 +000032 *
wdenk2262cfe2002-11-18 00:14:45 +000033 * relative to setup_base (which is 0x90000 currently)
wdenk8bde7f72003-06-27 21:31:46 +000034 *
35 * 0x0000-0x7FFF Real mode kernel
wdenk2262cfe2002-11-18 00:14:45 +000036 * 0x8000-0x8FFF Stack and heap
37 * 0x9000-0x90FF Kernel command line
38 */
Graeme Russ83088af2011-11-08 02:33:15 +000039#define DEFAULT_SETUP_BASE 0x90000
40#define COMMAND_LINE_OFFSET 0x9000
41#define HEAP_END_OFFSET 0x8e00
wdenk2262cfe2002-11-18 00:14:45 +000042
Graeme Russ83088af2011-11-08 02:33:15 +000043#define COMMAND_LINE_SIZE 2048
wdenk2262cfe2002-11-18 00:14:45 +000044
45static void build_command_line(char *command_line, int auto_boot)
46{
47 char *env_command_line;
wdenk8bde7f72003-06-27 21:31:46 +000048
wdenk2262cfe2002-11-18 00:14:45 +000049 command_line[0] = '\0';
wdenk8bde7f72003-06-27 21:31:46 +000050
wdenk2262cfe2002-11-18 00:14:45 +000051 env_command_line = getenv("bootargs");
wdenk8bde7f72003-06-27 21:31:46 +000052
wdenk2262cfe2002-11-18 00:14:45 +000053 /* set console= argument if we use a serial console */
Graeme Russ83088af2011-11-08 02:33:15 +000054 if (!strstr(env_command_line, "console=")) {
55 if (!strcmp(getenv("stdout"), "serial")) {
wdenk8bde7f72003-06-27 21:31:46 +000056
wdenk2262cfe2002-11-18 00:14:45 +000057 /* We seem to use serial console */
wdenk8bde7f72003-06-27 21:31:46 +000058 sprintf(command_line, "console=ttyS0,%s ",
Graeme Russ83088af2011-11-08 02:33:15 +000059 getenv("baudrate"));
wdenk2262cfe2002-11-18 00:14:45 +000060 }
61 }
wdenk8bde7f72003-06-27 21:31:46 +000062
Graeme Russ83088af2011-11-08 02:33:15 +000063 if (auto_boot)
wdenk2262cfe2002-11-18 00:14:45 +000064 strcat(command_line, "auto ");
wdenk8bde7f72003-06-27 21:31:46 +000065
Graeme Russ83088af2011-11-08 02:33:15 +000066 if (env_command_line)
wdenk2262cfe2002-11-18 00:14:45 +000067 strcat(command_line, env_command_line);
wdenk8bde7f72003-06-27 21:31:46 +000068
wdenk2262cfe2002-11-18 00:14:45 +000069 printf("Kernel command line: \"%s\"\n", command_line);
70}
71
Gabe Black69370d12011-12-05 12:09:26 +000072static 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
85static 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
97struct boot_params *load_zimage(char *image, unsigned long kernel_size,
Simon Glass76539382014-10-10 08:21:56 -060098 ulong *load_addressp)
wdenk2262cfe2002-11-18 00:14:45 +000099{
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000100 struct boot_params *setup_base;
wdenk2262cfe2002-11-18 00:14:45 +0000101 int setup_size;
102 int bootproto;
103 int big_image;
wdenk8bde7f72003-06-27 21:31:46 +0000104
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000105 struct boot_params *params = (struct boot_params *)image;
106 struct setup_header *hdr = &params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000107
Graeme Russ83088af2011-11-08 02:33:15 +0000108 /* base address for real-mode segment */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000109 setup_base = (struct boot_params *)DEFAULT_SETUP_BASE;
wdenk8bde7f72003-06-27 21:31:46 +0000110
Gabe Black69370d12011-12-05 12:09:26 +0000111 if (!kernel_magic_ok(hdr))
wdenk2262cfe2002-11-18 00:14:45 +0000112 return 0;
wdenk8bde7f72003-06-27 21:31:46 +0000113
wdenk2262cfe2002-11-18 00:14:45 +0000114 /* determine size of setup */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000115 if (0 == hdr->setup_sects) {
116 printf("Setup Sectors = 0 (defaulting to 4)\n");
wdenk2262cfe2002-11-18 00:14:45 +0000117 setup_size = 5 * 512;
118 } else {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000119 setup_size = (hdr->setup_sects + 1) * 512;
wdenk2262cfe2002-11-18 00:14:45 +0000120 }
wdenk8bde7f72003-06-27 21:31:46 +0000121
Graeme Russ95ffaba2010-04-24 00:05:49 +1000122 printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
123
Graeme Russ83088af2011-11-08 02:33:15 +0000124 if (setup_size > SETUP_MAX_SIZE)
wdenk2262cfe2002-11-18 00:14:45 +0000125 printf("Error: Setup is too large (%d bytes)\n", setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000126
Gabe Black69370d12011-12-05 12:09:26 +0000127 /* determine boot protocol version */
128 bootproto = get_boot_protocol(hdr);
129
130 printf("Using boot protocol version %x.%02x\n",
131 (bootproto & 0xff00) >> 8, bootproto & 0xff);
132
133 if (bootproto >= 0x0200) {
134 if (hdr->setup_sects >= 15) {
135 printf("Linux kernel version %s\n",
136 (char *)params +
137 hdr->kernel_version + 0x200);
138 } else {
139 printf("Setup Sectors < 15 - "
140 "Cannot print kernel version.\n");
141 }
142 }
143
wdenk2262cfe2002-11-18 00:14:45 +0000144 /* Determine image type */
Graeme Russ83088af2011-11-08 02:33:15 +0000145 big_image = (bootproto >= 0x0200) &&
146 (hdr->loadflags & BIG_KERNEL_FLAG);
wdenk8bde7f72003-06-27 21:31:46 +0000147
Graeme Russ95ffaba2010-04-24 00:05:49 +1000148 /* Determine load address */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000149 if (big_image)
Simon Glass76539382014-10-10 08:21:56 -0600150 *load_addressp = BZIMAGE_LOAD_ADDR;
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000151 else
Simon Glass76539382014-10-10 08:21:56 -0600152 *load_addressp = ZIMAGE_LOAD_ADDR;
wdenk8bde7f72003-06-27 21:31:46 +0000153
Gabe Black233dbc12011-12-05 12:09:24 +0000154 printf("Building boot_params at 0x%8.8lx\n", (ulong)setup_base);
155 memset(setup_base, 0, sizeof(*setup_base));
156 setup_base->hdr = params->hdr;
wdenk8bde7f72003-06-27 21:31:46 +0000157
Gabe Black69370d12011-12-05 12:09:26 +0000158 if (bootproto >= 0x0204)
159 kernel_size = hdr->syssize * 16;
160 else
161 kernel_size -= setup_size;
wdenk8bde7f72003-06-27 21:31:46 +0000162
wdenk8bde7f72003-06-27 21:31:46 +0000163 if (bootproto == 0x0100) {
Graeme Russ83088af2011-11-08 02:33:15 +0000164 /*
165 * A very old kernel MUST have its real-mode code
166 * loaded at 0x90000
167 */
wdenk2262cfe2002-11-18 00:14:45 +0000168 if ((u32)setup_base != 0x90000) {
169 /* Copy the real-mode kernel */
Graeme Russ83088af2011-11-08 02:33:15 +0000170 memmove((void *)0x90000, setup_base, setup_size);
wdenk8bde7f72003-06-27 21:31:46 +0000171
Graeme Russ83088af2011-11-08 02:33:15 +0000172 /* Copy the command line */
173 memmove((void *)0x99000,
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000174 (u8 *)setup_base + COMMAND_LINE_OFFSET,
Graeme Russ83088af2011-11-08 02:33:15 +0000175 COMMAND_LINE_SIZE);
176
177 /* Relocated */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000178 setup_base = (struct boot_params *)0x90000;
wdenk2262cfe2002-11-18 00:14:45 +0000179 }
wdenk8bde7f72003-06-27 21:31:46 +0000180
wdenk2262cfe2002-11-18 00:14:45 +0000181 /* It is recommended to clear memory up to the 32K mark */
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000182 memset((u8 *)0x90000 + setup_size, 0,
183 SETUP_MAX_SIZE - setup_size);
wdenk2262cfe2002-11-18 00:14:45 +0000184 }
wdenk8bde7f72003-06-27 21:31:46 +0000185
Gabe Black69370d12011-12-05 12:09:26 +0000186 if (big_image) {
187 if (kernel_size > BZIMAGE_MAX_SIZE) {
188 printf("Error: bzImage kernel too big! "
189 "(size: %ld, max: %d)\n",
190 kernel_size, BZIMAGE_MAX_SIZE);
191 return 0;
192 }
193 } else if ((kernel_size) > ZIMAGE_MAX_SIZE) {
194 printf("Error: zImage kernel too big! (size: %ld, max: %d)\n",
195 kernel_size, ZIMAGE_MAX_SIZE);
196 return 0;
197 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000198
Simon Glass76539382014-10-10 08:21:56 -0600199 printf("Loading %s at address %lx (%ld bytes)\n",
200 big_image ? "bzImage" : "zImage", *load_addressp, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000201
Simon Glass76539382014-10-10 08:21:56 -0600202 memmove((void *)*load_addressp, image + setup_size, kernel_size);
Gabe Black69370d12011-12-05 12:09:26 +0000203
204 return setup_base;
205}
206
207int setup_zimage(struct boot_params *setup_base, char *cmd_line, int auto_boot,
208 unsigned long initrd_addr, unsigned long initrd_size)
209{
210 struct setup_header *hdr = &setup_base->hdr;
211 int bootproto = get_boot_protocol(hdr);
212
Gabe Black69370d12011-12-05 12:09:26 +0000213 setup_base->e820_entries = install_e820_map(
214 ARRAY_SIZE(setup_base->e820_map), setup_base->e820_map);
Gabe Black69370d12011-12-05 12:09:26 +0000215
216 if (bootproto == 0x0100) {
217 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
218 setup_base->screen_info.cl_offset = COMMAND_LINE_OFFSET;
219 }
wdenk2262cfe2002-11-18 00:14:45 +0000220 if (bootproto >= 0x0200) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000221 hdr->type_of_loader = 8;
222
wdenk2262cfe2002-11-18 00:14:45 +0000223 if (initrd_addr) {
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000224 printf("Initial RAM disk at linear address "
225 "0x%08lx, size %ld bytes\n",
wdenk2262cfe2002-11-18 00:14:45 +0000226 initrd_addr, initrd_size);
wdenk8bde7f72003-06-27 21:31:46 +0000227
Graeme Russ95ffaba2010-04-24 00:05:49 +1000228 hdr->ramdisk_image = initrd_addr;
229 hdr->ramdisk_size = initrd_size;
wdenk2262cfe2002-11-18 00:14:45 +0000230 }
231 }
wdenk8bde7f72003-06-27 21:31:46 +0000232
wdenk2262cfe2002-11-18 00:14:45 +0000233 if (bootproto >= 0x0201) {
Graeme Russ95ffaba2010-04-24 00:05:49 +1000234 hdr->heap_end_ptr = HEAP_END_OFFSET;
235 hdr->loadflags |= HEAP_FLAG;
wdenk2262cfe2002-11-18 00:14:45 +0000236 }
wdenk8bde7f72003-06-27 21:31:46 +0000237
Simon Glass97d1e0c2014-10-19 21:11:21 -0600238 if (cmd_line) {
239 if (bootproto >= 0x0202) {
240 hdr->cmd_line_ptr = (uintptr_t)cmd_line;
241 } else if (bootproto >= 0x0200) {
242 setup_base->screen_info.cl_magic = COMMAND_LINE_MAGIC;
243 setup_base->screen_info.cl_offset =
244 (uintptr_t)cmd_line - (uintptr_t)setup_base;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000245
Simon Glass97d1e0c2014-10-19 21:11:21 -0600246 hdr->setup_move_size = 0x9100;
247 }
248
249 /* build command line at COMMAND_LINE_OFFSET */
250 build_command_line(cmd_line, auto_boot);
wdenk2262cfe2002-11-18 00:14:45 +0000251 }
wdenk2262cfe2002-11-18 00:14:45 +0000252
Bin Menga4520022015-07-06 16:31:36 +0800253 setup_video(&setup_base->screen_info);
254
Gabe Black69370d12011-12-05 12:09:26 +0000255 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000256}
257
Graeme Russ8e18e6e2011-12-23 10:20:55 +1100258void setup_pcat_compatibility(void)
259 __attribute__((weak, alias("__setup_pcat_compatibility")));
260
261void __setup_pcat_compatibility(void)
262{
263}
264
Graeme Russ83088af2011-11-08 02:33:15 +0000265int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
Graeme Russ95ffaba2010-04-24 00:05:49 +1000266{
Gabe Black69370d12011-12-05 12:09:26 +0000267 struct boot_params *base_ptr;
Graeme Russabe98f42010-10-07 20:03:19 +1100268 void *bzImage_addr = NULL;
Simon Glass76539382014-10-10 08:21:56 -0600269 ulong load_address;
Graeme Russabe98f42010-10-07 20:03:19 +1100270 char *s;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000271 ulong bzImage_size = 0;
Gabe Black6f9d9982011-12-05 12:09:27 +0000272 ulong initrd_addr = 0;
273 ulong initrd_size = 0;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000274
275 disable_interrupts();
276
277 /* Setup board for maximum PC/AT Compatibility */
278 setup_pcat_compatibility();
279
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000280 if (argc >= 2) {
Graeme Russabe98f42010-10-07 20:03:19 +1100281 /* argv[1] holds the address of the bzImage */
282 s = argv[1];
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000283 } else {
Graeme Russabe98f42010-10-07 20:03:19 +1100284 s = getenv("fileaddr");
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000285 }
Graeme Russ95ffaba2010-04-24 00:05:49 +1000286
Graeme Russabe98f42010-10-07 20:03:19 +1100287 if (s)
288 bzImage_addr = (void *)simple_strtoul(s, NULL, 16);
289
Gabe Black6f9d9982011-12-05 12:09:27 +0000290 if (argc >= 3) {
Graeme Russabe98f42010-10-07 20:03:19 +1100291 /* argv[2] holds the size of the bzImage */
Graeme Russ95ffaba2010-04-24 00:05:49 +1000292 bzImage_size = simple_strtoul(argv[2], NULL, 16);
Gabe Black6f9d9982011-12-05 12:09:27 +0000293 }
294
295 if (argc >= 4)
296 initrd_addr = simple_strtoul(argv[3], NULL, 16);
297 if (argc >= 5)
298 initrd_size = simple_strtoul(argv[4], NULL, 16);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000299
Gabe Blackd3a2bc32011-12-05 12:09:23 +0000300 /* Lets look for */
Gabe Black69370d12011-12-05 12:09:26 +0000301 base_ptr = load_zimage(bzImage_addr, bzImage_size, &load_address);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000302
Graeme Russ83088af2011-11-08 02:33:15 +0000303 if (!base_ptr) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600304 puts("## Kernel loading failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000305 return -1;
Graeme Russ95ffaba2010-04-24 00:05:49 +1000306 }
Gabe Black69370d12011-12-05 12:09:26 +0000307 if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET,
Gabe Black6f9d9982011-12-05 12:09:27 +0000308 0, initrd_addr, initrd_size)) {
Simon Glass2c363cb2014-10-10 08:21:59 -0600309 puts("Setting up boot parameters failed ...\n");
Gabe Black69370d12011-12-05 12:09:26 +0000310 return -1;
311 }
312
Gabe Black69370d12011-12-05 12:09:26 +0000313 /* we assume that the kernel is in place */
Simon Glass76539382014-10-10 08:21:56 -0600314 return boot_linux_kernel((ulong)base_ptr, load_address, false);
Graeme Russ95ffaba2010-04-24 00:05:49 +1000315}
316
317U_BOOT_CMD(
Gabe Black6f9d9982011-12-05 12:09:27 +0000318 zboot, 5, 0, do_zboot,
Graeme Russ95ffaba2010-04-24 00:05:49 +1000319 "Boot bzImage",
Gabe Black6f9d9982011-12-05 12:09:27 +0000320 "[addr] [size] [initrd addr] [initrd size]\n"
321 " addr - The optional starting address of the bzimage.\n"
322 " If not set it defaults to the environment\n"
323 " variable \"fileaddr\".\n"
324 " size - The optional size of the bzimage. Defaults to\n"
325 " zero.\n"
326 " initrd addr - The address of the initrd image to use, if any.\n"
327 " initrd size - The size of the initrd image to use, if any.\n"
Graeme Russ95ffaba2010-04-24 00:05:49 +1000328);