blob: 304210effdcd510d6efc16646efc5cf0a7a71f9e [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>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020018#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000019#include <asm/byteorder.h>
John Rigbyab51f1e2010-10-13 13:57:36 -060020#include <libfdt.h>
21#include <fdt_support.h>
Simon Schwarz6a597b92012-03-15 04:01:45 +000022#include <asm/bootm.h>
Pali Rohár5ebe4f12012-10-19 02:00:04 +000023#include <linux/compiler.h>
wdenkc6097192002-11-03 00:24:07 +000024
Andre Przywara8de142c2013-09-19 18:06:45 +020025#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT)
Andre Przywarafe7d9252013-09-19 18:06:43 +020026#include <asm/armv7.h>
27#endif
28
Wolfgang Denk6405a152006-03-31 18:32:53 +020029DECLARE_GLOBAL_DATA_PTR;
30
wdenkc6097192002-11-03 00:24:07 +000031static struct tag *params;
John Rigbyab51f1e2010-10-13 13:57:36 -060032
Simon Schwarz6a597b92012-03-15 04:01:45 +000033static ulong get_sp(void)
34{
35 ulong ret;
36
37 asm("mov %0, sp" : "=r"(ret) : );
38 return ret;
39}
40
John Rigbyab51f1e2010-10-13 13:57:36 -060041void arch_lmb_reserve(struct lmb *lmb)
42{
43 ulong sp;
44
45 /*
46 * Booting a (Linux) kernel image
47 *
48 * Allocate space for command line and board info - the
49 * address should be as high as possible within the reach of
50 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
51 * memory, which means far enough below the current stack
52 * pointer.
53 */
54 sp = get_sp();
55 debug("## Current stack ends at 0x%08lx ", sp);
56
Rob Herring13137f32012-06-28 03:54:11 +000057 /* adjust sp by 4K to be safe */
58 sp -= 4096;
John Rigbyab51f1e2010-10-13 13:57:36 -060059 lmb_reserve(lmb, sp,
60 gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size - sp);
61}
62
Simon Glass3c26c582013-06-19 21:15:10 -070063/**
64 * announce_and_cleanup() - Print message and prepare for kernel boot
65 *
66 * @fake: non-zero to do everything except actually boot
67 */
68static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060069{
Simon Glass3c26c582013-06-19 21:15:10 -070070 printf("\nStarting kernel ...%s\n\n", fake ?
71 "(fake run for tracing)" : "");
Simon Schwarz6a597b92012-03-15 04:01:45 +000072 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000073#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090074 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +000075#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000076#ifdef CONFIG_BOOTSTAGE_REPORT
77 bootstage_report();
78#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +020079
Simon Schwarz6a597b92012-03-15 04:01:45 +000080#ifdef CONFIG_USB_DEVICE
81 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -060082#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000083 cleanup_before_linux();
84}
wdenkc6097192002-11-03 00:24:07 +000085
wdenk86765902003-12-06 23:55:10 +000086static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +000087{
Simon Schwarz6a597b92012-03-15 04:01:45 +000088 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +000089
wdenk86765902003-12-06 23:55:10 +000090 params->hdr.tag = ATAG_CORE;
91 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +000092
wdenk86765902003-12-06 23:55:10 +000093 params->u.core.flags = 0;
94 params->u.core.pagesize = 0;
95 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +000096
wdenk86765902003-12-06 23:55:10 +000097 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +000098}
wdenkc6097192002-11-03 00:24:07 +000099
Simon Schwarz6a597b92012-03-15 04:01:45 +0000100static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000101{
wdenk86765902003-12-06 23:55:10 +0000102 int i;
wdenkc6097192002-11-03 00:24:07 +0000103
wdenk86765902003-12-06 23:55:10 +0000104 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
105 params->hdr.tag = ATAG_MEM;
106 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000107
wdenk86765902003-12-06 23:55:10 +0000108 params->u.mem.start = bd->bi_dram[i].start;
109 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000110
wdenk86765902003-12-06 23:55:10 +0000111 params = tag_next (params);
112 }
wdenkc6097192002-11-03 00:24:07 +0000113}
wdenkc6097192002-11-03 00:24:07 +0000114
Simon Schwarz6a597b92012-03-15 04:01:45 +0000115static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000116{
wdenk86765902003-12-06 23:55:10 +0000117 char *p;
wdenkc6097192002-11-03 00:24:07 +0000118
wdenkf16b5162004-03-23 21:43:07 +0000119 if (!commandline)
120 return;
121
wdenk86765902003-12-06 23:55:10 +0000122 /* eat leading white space */
123 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000124
wdenk86765902003-12-06 23:55:10 +0000125 /* skip non-existent command lines so the kernel will still
126 * use its default command line.
127 */
128 if (*p == '\0')
129 return;
wdenkc6097192002-11-03 00:24:07 +0000130
wdenk86765902003-12-06 23:55:10 +0000131 params->hdr.tag = ATAG_CMDLINE;
132 params->hdr.size =
133 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000134
wdenk86765902003-12-06 23:55:10 +0000135 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000136
wdenk86765902003-12-06 23:55:10 +0000137 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000138}
wdenkc6097192002-11-03 00:24:07 +0000139
Simon Schwarz6a597b92012-03-15 04:01:45 +0000140static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000141{
wdenk86765902003-12-06 23:55:10 +0000142 /* an ATAG_INITRD node tells the kernel where the compressed
143 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
144 */
wdenk19c8fb72004-04-18 22:26:17 +0000145 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000146 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000147
wdenk86765902003-12-06 23:55:10 +0000148 params->u.initrd.start = initrd_start;
149 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000150
wdenk86765902003-12-06 23:55:10 +0000151 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000152}
wdenkc6097192002-11-03 00:24:07 +0000153
Simon Glass50ad2212013-05-08 08:06:02 +0000154static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000155{
156 struct tag *params = *tmp;
157 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000158
159 get_board_serial(&serialnr);
160 params->hdr.tag = ATAG_SERIAL;
161 params->hdr.size = tag_size (tag_serialnr);
162 params->u.serialnr.low = serialnr.low;
163 params->u.serialnr.high= serialnr.high;
164 params = tag_next (params);
165 *tmp = params;
166}
wdenka21ad7b2005-05-19 22:39:42 +0000167
Simon Glass50ad2212013-05-08 08:06:02 +0000168static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000169{
170 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000171
172 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000173 params->hdr.tag = ATAG_REVISION;
174 params->hdr.size = tag_size (tag_revision);
175 params->u.revision.rev = rev;
176 params = tag_next (params);
177}
wdenkcb99da52005-01-12 00:15:14 +0000178
Simon Schwarz6a597b92012-03-15 04:01:45 +0000179static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000180{
wdenk86765902003-12-06 23:55:10 +0000181 params->hdr.tag = ATAG_NONE;
182 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000183}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000184
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000185__weak void setup_board_tags(struct tag **in_params) {}
186
Andre Przywarafe7d9252013-09-19 18:06:43 +0200187static void do_nonsec_virt_switch(void)
188{
189#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT)
190 if (armv7_switch_nonsec() == 0)
Andre Przywara8de142c2013-09-19 18:06:45 +0200191#ifdef CONFIG_ARMV7_VIRT
192 if (armv7_switch_hyp() == 0)
193 debug("entered HYP mode\n");
194#else
Andre Przywarafe7d9252013-09-19 18:06:43 +0200195 debug("entered non-secure state\n");
196#endif
Andre Przywara8de142c2013-09-19 18:06:45 +0200197#endif
David Feng85fd5f12013-12-14 11:47:35 +0800198
199#ifdef CONFIG_ARM64
200 smp_kick_all_cpus();
York Sunb7ebd102014-03-31 14:40:32 -0700201 flush_dcache_all(); /* flush cache before swtiching to EL2 */
David Feng85fd5f12013-12-14 11:47:35 +0800202 armv8_switch_to_el2();
203#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
204 armv8_switch_to_el1();
205#endif
206#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200207}
208
Simon Schwarz6a597b92012-03-15 04:01:45 +0000209/* Subcommand: PREP */
210static void boot_prep_linux(bootm_headers_t *images)
211{
Simon Schwarz6a597b92012-03-15 04:01:45 +0000212 char *commandline = getenv("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000213
Simon Glass50ad2212013-05-08 08:06:02 +0000214 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000215#ifdef CONFIG_OF_LIBFDT
Simon Schwarz6a597b92012-03-15 04:01:45 +0000216 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000217 if (image_setup_linux(images)) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000218 printf("FDT creation failed! hanging...");
219 hang();
220 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000221#endif
Simon Glass50ad2212013-05-08 08:06:02 +0000222 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000223 debug("using: ATAGS\n");
224 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000225 if (BOOTM_ENABLE_SERIAL_TAG)
226 setup_serial_tag(&params);
227 if (BOOTM_ENABLE_CMDLINE_TAG)
228 setup_commandline_tag(gd->bd, commandline);
229 if (BOOTM_ENABLE_REVISION_TAG)
230 setup_revision_tag(&params);
231 if (BOOTM_ENABLE_MEMORY_TAGS)
232 setup_memory_tags(gd->bd);
233 if (BOOTM_ENABLE_INITRD_TAG) {
234 if (images->rd_start && images->rd_end) {
235 setup_initrd_tag(gd->bd, images->rd_start,
236 images->rd_end);
237 }
238 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000239 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000240 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000241 } else {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000242 printf("FDT and ATAGS support not compiled in - hanging\n");
243 hang();
Simon Schwarz6a597b92012-03-15 04:01:45 +0000244 }
245}
246
247/* Subcommand: GO */
Simon Glass3c26c582013-06-19 21:15:10 -0700248static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000249{
David Feng85fd5f12013-12-14 11:47:35 +0800250#ifdef CONFIG_ARM64
251 void (*kernel_entry)(void *fdt_addr);
252 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
253
254 kernel_entry = (void (*)(void *fdt_addr))images->ep;
255
256 debug("## Transferring control to Linux (at address %lx)...\n",
257 (ulong) kernel_entry);
258 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
259
260 announce_and_cleanup(fake);
261
Marc Zyngier915a09e2014-07-12 14:23:58 +0100262 if (!fake) {
263 do_nonsec_virt_switch();
David Feng85fd5f12013-12-14 11:47:35 +0800264 kernel_entry(images->ft_addr);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100265 }
David Feng85fd5f12013-12-14 11:47:35 +0800266#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000267 unsigned long machid = gd->bd->bi_arch_number;
268 char *s;
269 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000270 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700271 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000272
273 kernel_entry = (void (*)(int, int, uint))images->ep;
274
275 s = getenv("machid");
276 if (s) {
277 strict_strtoul(s, 16, &machid);
278 printf("Using machid 0x%lx from environment\n", machid);
279 }
280
281 debug("## Transferring control to Linux (at address %08lx)" \
282 "...\n", (ulong) kernel_entry);
283 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700284 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000285
Simon Glass50ad2212013-05-08 08:06:02 +0000286 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000287 r2 = (unsigned long)images->ft_addr;
288 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000289 r2 = gd->bd->bi_boot_params;
290
Marc Zyngier915a09e2014-07-12 14:23:58 +0100291 if (!fake) {
292 do_nonsec_virt_switch();
Simon Glass3c26c582013-06-19 21:15:10 -0700293 kernel_entry(0, machid, r2);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100294 }
David Feng85fd5f12013-12-14 11:47:35 +0800295#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000296}
297
298/* Main Entry point for arm bootm implementation
299 *
300 * Modeled after the powerpc implementation
301 * DIFFERENCE: Instead of calling prep and go at the end
302 * they are called if subcommand is equal 0.
303 */
304int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
305{
306 /* No need for those on ARM */
307 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
308 return -1;
309
310 if (flag & BOOTM_STATE_OS_PREP) {
311 boot_prep_linux(images);
312 return 0;
313 }
314
Simon Glass3c26c582013-06-19 21:15:10 -0700315 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
316 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000317 return 0;
318 }
319
320 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700321 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000322 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600323}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000324
325#ifdef CONFIG_CMD_BOOTZ
326
327struct zimage_header {
328 uint32_t code[9];
329 uint32_t zi_magic;
330 uint32_t zi_start;
331 uint32_t zi_end;
332};
333
334#define LINUX_ARM_ZIMAGE_MAGIC 0x016f2818
335
Simon Glass5f1afdd2013-07-04 13:26:10 -0700336int bootz_setup(ulong image, ulong *start, ulong *end)
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000337{
Simon Glass5f1afdd2013-07-04 13:26:10 -0700338 struct zimage_header *zi;
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000339
Simon Glass5f1afdd2013-07-04 13:26:10 -0700340 zi = (struct zimage_header *)map_sysmem(image, 0);
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000341 if (zi->zi_magic != LINUX_ARM_ZIMAGE_MAGIC) {
342 puts("Bad Linux ARM zImage magic!\n");
343 return 1;
344 }
345
Simon Glass5f1afdd2013-07-04 13:26:10 -0700346 *start = zi->zi_start;
347 *end = zi->zi_end;
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000348
Simon Glass5f1afdd2013-07-04 13:26:10 -0700349 printf("Kernel image @ %#08lx [ %#08lx - %#08lx ]\n", image, *start,
350 *end);
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000351
352 return 0;
353}
Simon Glass5f1afdd2013-07-04 13:26:10 -0700354
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000355#endif /* CONFIG_CMD_BOOTZ */
Miao Yan1bd54562013-11-28 17:51:38 +0800356
357#if defined(CONFIG_BOOTM_VXWORKS)
358void boot_prep_vxworks(bootm_headers_t *images)
359{
360#if defined(CONFIG_OF_LIBFDT)
361 int off;
362
363 if (images->ft_addr) {
364 off = fdt_path_offset(images->ft_addr, "/memory");
365 if (off < 0) {
366 if (arch_fixup_memory_node(images->ft_addr))
367 puts("## WARNING: fixup memory failed!\n");
368 }
369 }
370#endif
371 cleanup_before_linux();
372}
373void boot_jump_vxworks(bootm_headers_t *images)
374{
375 /* ARM VxWorks requires device tree physical address to be passed */
376 ((void (*)(void *))images->ep)(images->ft_addr);
377}
378#endif