blob: 0d19c8ae2366caee800920d36dce8d79f984b6c2 [file] [log] [blame]
Simon Schwarz6a597b92012-03-15 04:01:45 +00001/* Copyright (C) 2011
2 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
3 * - Added prep subcommand support
4 * - Reorganized source - modeled after powerpc version
5 *
wdenkc6097192002-11-03 00:24:07 +00006 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
10 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
11 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +000013 */
14
15#include <common.h>
16#include <command.h>
wdenkc6097192002-11-03 00:24:07 +000017#include <image.h>
Jeroen Hofstee506f0e52014-10-08 22:57:54 +020018#include <vxworks.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020019#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000020#include <asm/byteorder.h>
John Rigbyab51f1e2010-10-13 13:57:36 -060021#include <libfdt.h>
22#include <fdt_support.h>
Simon Schwarz6a597b92012-03-15 04:01:45 +000023#include <asm/bootm.h>
Marc Zyngier855ca662014-07-12 14:24:03 +010024#include <asm/secure.h>
Pali Rohár5ebe4f12012-10-19 02:00:04 +000025#include <linux/compiler.h>
wdenkc6097192002-11-03 00:24:07 +000026
Andre Przywara8de142c2013-09-19 18:06:45 +020027#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT)
Andre Przywarafe7d9252013-09-19 18:06:43 +020028#include <asm/armv7.h>
29#endif
30
Wolfgang Denk6405a152006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
32
wdenkc6097192002-11-03 00:24:07 +000033static struct tag *params;
John Rigbyab51f1e2010-10-13 13:57:36 -060034
Simon Schwarz6a597b92012-03-15 04:01:45 +000035static ulong get_sp(void)
36{
37 ulong ret;
38
39 asm("mov %0, sp" : "=r"(ret) : );
40 return ret;
41}
42
John Rigbyab51f1e2010-10-13 13:57:36 -060043void arch_lmb_reserve(struct lmb *lmb)
44{
45 ulong sp;
46
47 /*
48 * Booting a (Linux) kernel image
49 *
50 * Allocate space for command line and board info - the
51 * address should be as high as possible within the reach of
52 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
53 * memory, which means far enough below the current stack
54 * pointer.
55 */
56 sp = get_sp();
57 debug("## Current stack ends at 0x%08lx ", sp);
58
Rob Herring13137f32012-06-28 03:54:11 +000059 /* adjust sp by 4K to be safe */
60 sp -= 4096;
John Rigbyab51f1e2010-10-13 13:57:36 -060061 lmb_reserve(lmb, sp,
62 gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size - sp);
63}
64
Simon Glass3c26c582013-06-19 21:15:10 -070065/**
66 * announce_and_cleanup() - Print message and prepare for kernel boot
67 *
68 * @fake: non-zero to do everything except actually boot
69 */
70static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060071{
Simon Glass3c26c582013-06-19 21:15:10 -070072 printf("\nStarting kernel ...%s\n\n", fake ?
73 "(fake run for tracing)" : "");
Simon Schwarz6a597b92012-03-15 04:01:45 +000074 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000075#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090076 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +000077#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000078#ifdef CONFIG_BOOTSTAGE_REPORT
79 bootstage_report();
80#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +020081
Simon Schwarz6a597b92012-03-15 04:01:45 +000082#ifdef CONFIG_USB_DEVICE
83 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -060084#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000085 cleanup_before_linux();
86}
wdenkc6097192002-11-03 00:24:07 +000087
wdenk86765902003-12-06 23:55:10 +000088static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +000089{
Simon Schwarz6a597b92012-03-15 04:01:45 +000090 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +000091
wdenk86765902003-12-06 23:55:10 +000092 params->hdr.tag = ATAG_CORE;
93 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +000094
wdenk86765902003-12-06 23:55:10 +000095 params->u.core.flags = 0;
96 params->u.core.pagesize = 0;
97 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +000098
wdenk86765902003-12-06 23:55:10 +000099 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000100}
wdenkc6097192002-11-03 00:24:07 +0000101
Simon Schwarz6a597b92012-03-15 04:01:45 +0000102static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000103{
wdenk86765902003-12-06 23:55:10 +0000104 int i;
wdenkc6097192002-11-03 00:24:07 +0000105
wdenk86765902003-12-06 23:55:10 +0000106 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
107 params->hdr.tag = ATAG_MEM;
108 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000109
wdenk86765902003-12-06 23:55:10 +0000110 params->u.mem.start = bd->bi_dram[i].start;
111 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000112
wdenk86765902003-12-06 23:55:10 +0000113 params = tag_next (params);
114 }
wdenkc6097192002-11-03 00:24:07 +0000115}
wdenkc6097192002-11-03 00:24:07 +0000116
Simon Schwarz6a597b92012-03-15 04:01:45 +0000117static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000118{
wdenk86765902003-12-06 23:55:10 +0000119 char *p;
wdenkc6097192002-11-03 00:24:07 +0000120
wdenkf16b5162004-03-23 21:43:07 +0000121 if (!commandline)
122 return;
123
wdenk86765902003-12-06 23:55:10 +0000124 /* eat leading white space */
125 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000126
wdenk86765902003-12-06 23:55:10 +0000127 /* skip non-existent command lines so the kernel will still
128 * use its default command line.
129 */
130 if (*p == '\0')
131 return;
wdenkc6097192002-11-03 00:24:07 +0000132
wdenk86765902003-12-06 23:55:10 +0000133 params->hdr.tag = ATAG_CMDLINE;
134 params->hdr.size =
135 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000136
wdenk86765902003-12-06 23:55:10 +0000137 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000138
wdenk86765902003-12-06 23:55:10 +0000139 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000140}
wdenkc6097192002-11-03 00:24:07 +0000141
Simon Schwarz6a597b92012-03-15 04:01:45 +0000142static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000143{
wdenk86765902003-12-06 23:55:10 +0000144 /* an ATAG_INITRD node tells the kernel where the compressed
145 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
146 */
wdenk19c8fb72004-04-18 22:26:17 +0000147 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000148 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000149
wdenk86765902003-12-06 23:55:10 +0000150 params->u.initrd.start = initrd_start;
151 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000152
wdenk86765902003-12-06 23:55:10 +0000153 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000154}
wdenkc6097192002-11-03 00:24:07 +0000155
Simon Glass50ad2212013-05-08 08:06:02 +0000156static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000157{
158 struct tag *params = *tmp;
159 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000160
161 get_board_serial(&serialnr);
162 params->hdr.tag = ATAG_SERIAL;
163 params->hdr.size = tag_size (tag_serialnr);
164 params->u.serialnr.low = serialnr.low;
165 params->u.serialnr.high= serialnr.high;
166 params = tag_next (params);
167 *tmp = params;
168}
wdenka21ad7b2005-05-19 22:39:42 +0000169
Simon Glass50ad2212013-05-08 08:06:02 +0000170static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000171{
172 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000173
174 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000175 params->hdr.tag = ATAG_REVISION;
176 params->hdr.size = tag_size (tag_revision);
177 params->u.revision.rev = rev;
178 params = tag_next (params);
179}
wdenkcb99da52005-01-12 00:15:14 +0000180
Simon Schwarz6a597b92012-03-15 04:01:45 +0000181static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000182{
wdenk86765902003-12-06 23:55:10 +0000183 params->hdr.tag = ATAG_NONE;
184 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000185}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000186
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000187__weak void setup_board_tags(struct tag **in_params) {}
188
Marc Zyngier855ca662014-07-12 14:24:03 +0100189#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200190static void do_nonsec_virt_switch(void)
191{
David Feng85fd5f12013-12-14 11:47:35 +0800192 smp_kick_all_cpus();
York Sunb7ebd102014-03-31 14:40:32 -0700193 flush_dcache_all(); /* flush cache before swtiching to EL2 */
David Feng85fd5f12013-12-14 11:47:35 +0800194 armv8_switch_to_el2();
195#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
196 armv8_switch_to_el1();
197#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200198}
Marc Zyngier855ca662014-07-12 14:24:03 +0100199#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200200
Simon Schwarz6a597b92012-03-15 04:01:45 +0000201/* Subcommand: PREP */
202static void boot_prep_linux(bootm_headers_t *images)
203{
Simon Schwarz6a597b92012-03-15 04:01:45 +0000204 char *commandline = getenv("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000205
Simon Glass50ad2212013-05-08 08:06:02 +0000206 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000207#ifdef CONFIG_OF_LIBFDT
Simon Schwarz6a597b92012-03-15 04:01:45 +0000208 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000209 if (image_setup_linux(images)) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000210 printf("FDT creation failed! hanging...");
211 hang();
212 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000213#endif
Simon Glass50ad2212013-05-08 08:06:02 +0000214 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000215 debug("using: ATAGS\n");
216 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000217 if (BOOTM_ENABLE_SERIAL_TAG)
218 setup_serial_tag(&params);
219 if (BOOTM_ENABLE_CMDLINE_TAG)
220 setup_commandline_tag(gd->bd, commandline);
221 if (BOOTM_ENABLE_REVISION_TAG)
222 setup_revision_tag(&params);
223 if (BOOTM_ENABLE_MEMORY_TAGS)
224 setup_memory_tags(gd->bd);
225 if (BOOTM_ENABLE_INITRD_TAG) {
226 if (images->rd_start && images->rd_end) {
227 setup_initrd_tag(gd->bd, images->rd_start,
228 images->rd_end);
229 }
230 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000231 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000232 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000233 } else {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000234 printf("FDT and ATAGS support not compiled in - hanging\n");
235 hang();
Simon Schwarz6a597b92012-03-15 04:01:45 +0000236 }
237}
238
239/* Subcommand: GO */
Simon Glass3c26c582013-06-19 21:15:10 -0700240static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000241{
David Feng85fd5f12013-12-14 11:47:35 +0800242#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400243 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
244 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800245 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
246
Tom Rini67d604e2014-08-14 06:42:35 -0400247 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
248 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800249
250 debug("## Transferring control to Linux (at address %lx)...\n",
251 (ulong) kernel_entry);
252 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
253
254 announce_and_cleanup(fake);
255
Marc Zyngier915a09e2014-07-12 14:23:58 +0100256 if (!fake) {
257 do_nonsec_virt_switch();
Tom Rini67d604e2014-08-14 06:42:35 -0400258 kernel_entry(images->ft_addr, NULL, NULL, NULL);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100259 }
David Feng85fd5f12013-12-14 11:47:35 +0800260#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000261 unsigned long machid = gd->bd->bi_arch_number;
262 char *s;
263 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000264 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700265 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000266
267 kernel_entry = (void (*)(int, int, uint))images->ep;
268
269 s = getenv("machid");
270 if (s) {
271 strict_strtoul(s, 16, &machid);
272 printf("Using machid 0x%lx from environment\n", machid);
273 }
274
275 debug("## Transferring control to Linux (at address %08lx)" \
276 "...\n", (ulong) kernel_entry);
277 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700278 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000279
Simon Glass50ad2212013-05-08 08:06:02 +0000280 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000281 r2 = (unsigned long)images->ft_addr;
282 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000283 r2 = gd->bd->bi_boot_params;
284
Marc Zyngier915a09e2014-07-12 14:23:58 +0100285 if (!fake) {
Marc Zyngier855ca662014-07-12 14:24:03 +0100286#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT)
287 armv7_init_nonsec();
288 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
289 0, machid, r2);
290#else
Simon Glass3c26c582013-06-19 21:15:10 -0700291 kernel_entry(0, machid, r2);
Marc Zyngier855ca662014-07-12 14:24:03 +0100292#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100293 }
David Feng85fd5f12013-12-14 11:47:35 +0800294#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000295}
296
297/* Main Entry point for arm bootm implementation
298 *
299 * Modeled after the powerpc implementation
300 * DIFFERENCE: Instead of calling prep and go at the end
301 * they are called if subcommand is equal 0.
302 */
303int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
304{
305 /* No need for those on ARM */
306 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
307 return -1;
308
309 if (flag & BOOTM_STATE_OS_PREP) {
310 boot_prep_linux(images);
311 return 0;
312 }
313
Simon Glass3c26c582013-06-19 21:15:10 -0700314 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
315 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000316 return 0;
317 }
318
319 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700320 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000321 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600322}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000323
324#ifdef CONFIG_CMD_BOOTZ
325
326struct zimage_header {
327 uint32_t code[9];
328 uint32_t zi_magic;
329 uint32_t zi_start;
330 uint32_t zi_end;
331};
332
333#define LINUX_ARM_ZIMAGE_MAGIC 0x016f2818
334
Simon Glass5f1afdd2013-07-04 13:26:10 -0700335int bootz_setup(ulong image, ulong *start, ulong *end)
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000336{
Simon Glass5f1afdd2013-07-04 13:26:10 -0700337 struct zimage_header *zi;
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000338
Simon Glass5f1afdd2013-07-04 13:26:10 -0700339 zi = (struct zimage_header *)map_sysmem(image, 0);
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000340 if (zi->zi_magic != LINUX_ARM_ZIMAGE_MAGIC) {
341 puts("Bad Linux ARM zImage magic!\n");
342 return 1;
343 }
344
Simon Glass5f1afdd2013-07-04 13:26:10 -0700345 *start = zi->zi_start;
346 *end = zi->zi_end;
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000347
Simon Glass5f1afdd2013-07-04 13:26:10 -0700348 printf("Kernel image @ %#08lx [ %#08lx - %#08lx ]\n", image, *start,
349 *end);
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000350
351 return 0;
352}
Simon Glass5f1afdd2013-07-04 13:26:10 -0700353
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000354#endif /* CONFIG_CMD_BOOTZ */
Miao Yan1bd54562013-11-28 17:51:38 +0800355
356#if defined(CONFIG_BOOTM_VXWORKS)
357void boot_prep_vxworks(bootm_headers_t *images)
358{
359#if defined(CONFIG_OF_LIBFDT)
360 int off;
361
362 if (images->ft_addr) {
363 off = fdt_path_offset(images->ft_addr, "/memory");
364 if (off < 0) {
Ma Haijun62358242014-07-12 14:24:06 +0100365 if (arch_fixup_fdt(images->ft_addr))
Miao Yan1bd54562013-11-28 17:51:38 +0800366 puts("## WARNING: fixup memory failed!\n");
367 }
368 }
369#endif
370 cleanup_before_linux();
371}
372void boot_jump_vxworks(bootm_headers_t *images)
373{
374 /* ARM VxWorks requires device tree physical address to be passed */
375 ((void (*)(void *))images->ep)(images->ft_addr);
376}
377#endif