blob: 488358a33163df342cd00b6543ea17bf8bd72104 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Schwarz6a597b92012-03-15 04:01:45 +00002/* Copyright (C) 2011
3 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
4 * - Added prep subcommand support
5 * - Reorganized source - modeled after powerpc version
6 *
wdenkc6097192002-11-03 00:24:07 +00007 * (C) Copyright 2002
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
10 *
11 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
wdenkc6097192002-11-03 00:24:07 +000012 */
13
14#include <common.h>
15#include <command.h>
Simon Glass11c89f32017-05-17 17:18:03 -060016#include <dm.h>
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010017#include <dm/root.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060018#include <env.h>
wdenkc6097192002-11-03 00:24:07 +000019#include <image.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020020#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000021#include <asm/byteorder.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090022#include <linux/libfdt.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050023#include <mapmem.h>
John Rigbyab51f1e2010-10-13 13:57:36 -060024#include <fdt_support.h>
Simon Schwarz6a597b92012-03-15 04:01:45 +000025#include <asm/bootm.h>
Marc Zyngier855ca662014-07-12 14:24:03 +010026#include <asm/secure.h>
Pali Rohár5ebe4f12012-10-19 02:00:04 +000027#include <linux/compiler.h>
Eric Nelsonb7c236b2014-09-30 15:40:01 -070028#include <bootm.h>
29#include <vxworks.h>
wdenkc6097192002-11-03 00:24:07 +000030
Jan Kiszkaac31b5a2015-04-21 07:18:24 +020031#ifdef CONFIG_ARMV7_NONSEC
Andre Przywarafe7d9252013-09-19 18:06:43 +020032#include <asm/armv7.h>
33#endif
Simon Glass30db7742017-05-17 08:22:59 -060034#include <asm/setup.h>
Andre Przywarafe7d9252013-09-19 18:06:43 +020035
Wolfgang Denk6405a152006-03-31 18:32:53 +020036DECLARE_GLOBAL_DATA_PTR;
37
wdenkc6097192002-11-03 00:24:07 +000038static struct tag *params;
John Rigbyab51f1e2010-10-13 13:57:36 -060039
Simon Schwarz6a597b92012-03-15 04:01:45 +000040static ulong get_sp(void)
41{
42 ulong ret;
43
44 asm("mov %0, sp" : "=r"(ret) : );
45 return ret;
46}
47
John Rigbyab51f1e2010-10-13 13:57:36 -060048void arch_lmb_reserve(struct lmb *lmb)
49{
Stephen Warren1a0b8052018-01-05 13:04:54 -070050 ulong sp, bank_end;
51 int bank;
John Rigbyab51f1e2010-10-13 13:57:36 -060052
53 /*
54 * Booting a (Linux) kernel image
55 *
56 * Allocate space for command line and board info - the
57 * address should be as high as possible within the reach of
58 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
59 * memory, which means far enough below the current stack
60 * pointer.
61 */
62 sp = get_sp();
63 debug("## Current stack ends at 0x%08lx ", sp);
64
Rob Herring13137f32012-06-28 03:54:11 +000065 /* adjust sp by 4K to be safe */
66 sp -= 4096;
Stephen Warren1a0b8052018-01-05 13:04:54 -070067 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010068 if (!gd->bd->bi_dram[bank].size ||
69 sp < gd->bd->bi_dram[bank].start)
Stephen Warren1a0b8052018-01-05 13:04:54 -070070 continue;
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010071 /* Watch out for RAM at end of address space! */
Stephen Warren1a0b8052018-01-05 13:04:54 -070072 bank_end = gd->bd->bi_dram[bank].start +
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010073 gd->bd->bi_dram[bank].size - 1;
74 if (sp > bank_end)
Stephen Warren1a0b8052018-01-05 13:04:54 -070075 continue;
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010076 lmb_reserve(lmb, sp, bank_end - sp + 1);
Stephen Warren1a0b8052018-01-05 13:04:54 -070077 break;
78 }
John Rigbyab51f1e2010-10-13 13:57:36 -060079}
80
Alexander Graf2ebeb442016-11-17 01:02:57 +010081__weak void board_quiesce_devices(void)
82{
83}
84
Simon Glass3c26c582013-06-19 21:15:10 -070085/**
86 * announce_and_cleanup() - Print message and prepare for kernel boot
87 *
88 * @fake: non-zero to do everything except actually boot
89 */
90static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060091{
Simon Schwarz6a597b92012-03-15 04:01:45 +000092 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000093#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090094 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +000095#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000096#ifdef CONFIG_BOOTSTAGE_REPORT
97 bootstage_report();
98#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +020099
Simon Schwarz6a597b92012-03-15 04:01:45 +0000100#ifdef CONFIG_USB_DEVICE
101 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -0600102#endif
Alexander Graf2ebeb442016-11-17 01:02:57 +0100103
104 board_quiesce_devices();
105
Keerthy79a7cb12019-02-20 18:17:22 +0530106 printf("\nStarting kernel ...%s\n\n", fake ?
107 "(fake run for tracing)" : "");
Stefan Roese8ab5a1b2017-03-20 12:51:50 +0100108 /*
109 * Call remove function of all devices with a removal flag set.
110 * This may be useful for last-stage operations, like cancelling
111 * of DMA operation or releasing device internal buffers.
112 */
113 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
114
Simon Schwarz6a597b92012-03-15 04:01:45 +0000115 cleanup_before_linux();
116}
wdenkc6097192002-11-03 00:24:07 +0000117
wdenk86765902003-12-06 23:55:10 +0000118static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000119{
Simon Schwarz6a597b92012-03-15 04:01:45 +0000120 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +0000121
wdenk86765902003-12-06 23:55:10 +0000122 params->hdr.tag = ATAG_CORE;
123 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +0000124
wdenk86765902003-12-06 23:55:10 +0000125 params->u.core.flags = 0;
126 params->u.core.pagesize = 0;
127 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +0000128
wdenk86765902003-12-06 23:55:10 +0000129 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000130}
wdenkc6097192002-11-03 00:24:07 +0000131
Simon Schwarz6a597b92012-03-15 04:01:45 +0000132static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000133{
wdenk86765902003-12-06 23:55:10 +0000134 int i;
wdenkc6097192002-11-03 00:24:07 +0000135
wdenk86765902003-12-06 23:55:10 +0000136 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
137 params->hdr.tag = ATAG_MEM;
138 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000139
wdenk86765902003-12-06 23:55:10 +0000140 params->u.mem.start = bd->bi_dram[i].start;
141 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000142
wdenk86765902003-12-06 23:55:10 +0000143 params = tag_next (params);
144 }
wdenkc6097192002-11-03 00:24:07 +0000145}
wdenkc6097192002-11-03 00:24:07 +0000146
Simon Schwarz6a597b92012-03-15 04:01:45 +0000147static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000148{
wdenk86765902003-12-06 23:55:10 +0000149 char *p;
wdenkc6097192002-11-03 00:24:07 +0000150
wdenkf16b5162004-03-23 21:43:07 +0000151 if (!commandline)
152 return;
153
wdenk86765902003-12-06 23:55:10 +0000154 /* eat leading white space */
155 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000156
wdenk86765902003-12-06 23:55:10 +0000157 /* skip non-existent command lines so the kernel will still
158 * use its default command line.
159 */
160 if (*p == '\0')
161 return;
wdenkc6097192002-11-03 00:24:07 +0000162
wdenk86765902003-12-06 23:55:10 +0000163 params->hdr.tag = ATAG_CMDLINE;
164 params->hdr.size =
165 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000166
wdenk86765902003-12-06 23:55:10 +0000167 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000168
wdenk86765902003-12-06 23:55:10 +0000169 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000170}
wdenkc6097192002-11-03 00:24:07 +0000171
Simon Schwarz6a597b92012-03-15 04:01:45 +0000172static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000173{
wdenk86765902003-12-06 23:55:10 +0000174 /* an ATAG_INITRD node tells the kernel where the compressed
175 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
176 */
wdenk19c8fb72004-04-18 22:26:17 +0000177 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000178 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000179
wdenk86765902003-12-06 23:55:10 +0000180 params->u.initrd.start = initrd_start;
181 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000182
wdenk86765902003-12-06 23:55:10 +0000183 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000184}
wdenkc6097192002-11-03 00:24:07 +0000185
Simon Glass50ad2212013-05-08 08:06:02 +0000186static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000187{
188 struct tag *params = *tmp;
189 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000190
191 get_board_serial(&serialnr);
192 params->hdr.tag = ATAG_SERIAL;
193 params->hdr.size = tag_size (tag_serialnr);
194 params->u.serialnr.low = serialnr.low;
195 params->u.serialnr.high= serialnr.high;
196 params = tag_next (params);
197 *tmp = params;
198}
wdenka21ad7b2005-05-19 22:39:42 +0000199
Simon Glass50ad2212013-05-08 08:06:02 +0000200static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000201{
202 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000203
204 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000205 params->hdr.tag = ATAG_REVISION;
206 params->hdr.size = tag_size (tag_revision);
207 params->u.revision.rev = rev;
208 params = tag_next (params);
209}
wdenkcb99da52005-01-12 00:15:14 +0000210
Simon Schwarz6a597b92012-03-15 04:01:45 +0000211static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000212{
wdenk86765902003-12-06 23:55:10 +0000213 params->hdr.tag = ATAG_NONE;
214 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000215}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000216
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000217__weak void setup_board_tags(struct tag **in_params) {}
218
Marc Zyngier855ca662014-07-12 14:24:03 +0100219#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200220static void do_nonsec_virt_switch(void)
221{
David Feng85fd5f12013-12-14 11:47:35 +0800222 smp_kick_all_cpus();
York Sun1ce575f2015-01-06 13:18:42 -0800223 dcache_disable(); /* flush cache before swtiching to EL2 */
Andre Przywarafe7d9252013-09-19 18:06:43 +0200224}
Marc Zyngier855ca662014-07-12 14:24:03 +0100225#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200226
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530227__weak void board_prep_linux(bootm_headers_t *images) { }
228
Simon Schwarz6a597b92012-03-15 04:01:45 +0000229/* Subcommand: PREP */
230static void boot_prep_linux(bootm_headers_t *images)
231{
Simon Glass64b723f2017-08-03 12:22:12 -0600232 char *commandline = env_get("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000233
Simon Glass50ad2212013-05-08 08:06:02 +0000234 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000235#ifdef CONFIG_OF_LIBFDT
Simon Schwarz6a597b92012-03-15 04:01:45 +0000236 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000237 if (image_setup_linux(images)) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000238 printf("FDT creation failed! hanging...");
239 hang();
240 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000241#endif
Simon Glass50ad2212013-05-08 08:06:02 +0000242 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000243 debug("using: ATAGS\n");
244 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000245 if (BOOTM_ENABLE_SERIAL_TAG)
246 setup_serial_tag(&params);
247 if (BOOTM_ENABLE_CMDLINE_TAG)
248 setup_commandline_tag(gd->bd, commandline);
249 if (BOOTM_ENABLE_REVISION_TAG)
250 setup_revision_tag(&params);
251 if (BOOTM_ENABLE_MEMORY_TAGS)
252 setup_memory_tags(gd->bd);
253 if (BOOTM_ENABLE_INITRD_TAG) {
Jeffy Chen113094e2016-01-14 10:19:36 +0800254 /*
255 * In boot_ramdisk_high(), it may relocate ramdisk to
256 * a specified location. And set images->initrd_start &
257 * images->initrd_end to relocated ramdisk's start/end
258 * addresses. So use them instead of images->rd_start &
259 * images->rd_end when possible.
260 */
261 if (images->initrd_start && images->initrd_end) {
262 setup_initrd_tag(gd->bd, images->initrd_start,
263 images->initrd_end);
264 } else if (images->rd_start && images->rd_end) {
Simon Glass50ad2212013-05-08 08:06:02 +0000265 setup_initrd_tag(gd->bd, images->rd_start,
266 images->rd_end);
267 }
268 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000269 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000270 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000271 } else {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000272 printf("FDT and ATAGS support not compiled in - hanging\n");
273 hang();
Simon Schwarz6a597b92012-03-15 04:01:45 +0000274 }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530275
276 board_prep_linux(images);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000277}
278
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100279__weak bool armv7_boot_nonsec_default(void)
Hans de Goede63fb5482014-11-14 09:34:31 +0100280{
Hans de Goede63fb5482014-11-14 09:34:31 +0100281#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100282 return false;
Hans de Goede63fb5482014-11-14 09:34:31 +0100283#else
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100284 return true;
Hans de Goede63fb5482014-11-14 09:34:31 +0100285#endif
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100286}
287
288#ifdef CONFIG_ARMV7_NONSEC
289bool armv7_boot_nonsec(void)
290{
Simon Glass64b723f2017-08-03 12:22:12 -0600291 char *s = env_get("bootm_boot_mode");
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100292 bool nonsec = armv7_boot_nonsec_default();
Hans de Goede63fb5482014-11-14 09:34:31 +0100293
294 if (s && !strcmp(s, "sec"))
295 nonsec = false;
296
297 if (s && !strcmp(s, "nonsec"))
298 nonsec = true;
299
300 return nonsec;
301}
302#endif
303
Alison Wang73818d52016-11-10 10:49:03 +0800304#ifdef CONFIG_ARM64
Alison Wang876c7e12016-11-10 10:49:04 +0800305__weak void update_os_arch_secondary_cores(uint8_t os_arch)
306{
307}
308
Alison Wang73818d52016-11-10 10:49:03 +0800309#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
310static void switch_to_el1(void)
311{
312 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
313 (images.os.arch == IH_ARCH_ARM))
314 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800315 (u64)images.ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800316 (u64)images.ep,
317 ES_TO_AARCH32);
318 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800319 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800320 images.ep,
321 ES_TO_AARCH64);
322}
323#endif
324#endif
325
Simon Schwarz6a597b92012-03-15 04:01:45 +0000326/* Subcommand: GO */
Simon Glass3c26c582013-06-19 21:15:10 -0700327static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000328{
David Feng85fd5f12013-12-14 11:47:35 +0800329#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400330 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
331 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800332 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
333
Tom Rini67d604e2014-08-14 06:42:35 -0400334 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
335 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800336
337 debug("## Transferring control to Linux (at address %lx)...\n",
338 (ulong) kernel_entry);
339 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
340
341 announce_and_cleanup(fake);
342
Marc Zyngier915a09e2014-07-12 14:23:58 +0100343 if (!fake) {
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800344#ifdef CONFIG_ARMV8_PSCI
345 armv8_setup_psci();
346#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100347 do_nonsec_virt_switch();
Alison Wang73818d52016-11-10 10:49:03 +0800348
Alison Wang876c7e12016-11-10 10:49:04 +0800349 update_os_arch_secondary_cores(images->os.arch);
350
Alison Wang73818d52016-11-10 10:49:03 +0800351#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wangeb2088d2017-01-17 09:39:17 +0800352 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800353 (u64)switch_to_el1, ES_TO_AARCH64);
354#else
355 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
356 (images->os.arch == IH_ARCH_ARM))
357 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800358 (u64)images->ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800359 (u64)images->ep,
360 ES_TO_AARCH32);
361 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800362 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800363 images->ep,
364 ES_TO_AARCH64);
365#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100366 }
David Feng85fd5f12013-12-14 11:47:35 +0800367#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000368 unsigned long machid = gd->bd->bi_arch_number;
369 char *s;
370 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000371 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700372 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000373
374 kernel_entry = (void (*)(int, int, uint))images->ep;
Patrice Chotardffb3c0b2017-04-25 11:07:46 +0200375#ifdef CONFIG_CPU_V7M
376 ulong addr = (ulong)kernel_entry | 1;
377 kernel_entry = (void *)addr;
378#endif
Simon Glass64b723f2017-08-03 12:22:12 -0600379 s = env_get("machid");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000380 if (s) {
Peng Fanc4485e72015-11-24 16:54:20 +0800381 if (strict_strtoul(s, 16, &machid) < 0) {
382 debug("strict_strtoul failed!\n");
383 return;
384 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000385 printf("Using machid 0x%lx from environment\n", machid);
386 }
387
388 debug("## Transferring control to Linux (at address %08lx)" \
389 "...\n", (ulong) kernel_entry);
390 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700391 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000392
Simon Glass50ad2212013-05-08 08:06:02 +0000393 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000394 r2 = (unsigned long)images->ft_addr;
395 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000396 r2 = gd->bd->bi_boot_params;
397
Marc Zyngier915a09e2014-07-12 14:23:58 +0100398 if (!fake) {
Jan Kiszkaac31b5a2015-04-21 07:18:24 +0200399#ifdef CONFIG_ARMV7_NONSEC
Ian Campbell68bc8f52014-12-21 09:45:11 +0000400 if (armv7_boot_nonsec()) {
Hans de Goede63fb5482014-11-14 09:34:31 +0100401 armv7_init_nonsec();
402 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
403 0, machid, r2);
404 } else
Marc Zyngier855ca662014-07-12 14:24:03 +0100405#endif
Hans de Goede63fb5482014-11-14 09:34:31 +0100406 kernel_entry(0, machid, r2);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100407 }
David Feng85fd5f12013-12-14 11:47:35 +0800408#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000409}
410
411/* Main Entry point for arm bootm implementation
412 *
413 * Modeled after the powerpc implementation
414 * DIFFERENCE: Instead of calling prep and go at the end
415 * they are called if subcommand is equal 0.
416 */
Eric Nelsonb7c236b2014-09-30 15:40:01 -0700417int do_bootm_linux(int flag, int argc, char * const argv[],
418 bootm_headers_t *images)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000419{
420 /* No need for those on ARM */
421 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
422 return -1;
423
424 if (flag & BOOTM_STATE_OS_PREP) {
425 boot_prep_linux(images);
426 return 0;
427 }
428
Simon Glass3c26c582013-06-19 21:15:10 -0700429 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
430 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000431 return 0;
432 }
433
434 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700435 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000436 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600437}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000438
Miao Yan1bd54562013-11-28 17:51:38 +0800439#if defined(CONFIG_BOOTM_VXWORKS)
440void boot_prep_vxworks(bootm_headers_t *images)
441{
442#if defined(CONFIG_OF_LIBFDT)
443 int off;
444
445 if (images->ft_addr) {
446 off = fdt_path_offset(images->ft_addr, "/memory");
Hannes Schmelzer64fabcc2018-05-04 10:49:11 +0200447 if (off > 0) {
Ma Haijun62358242014-07-12 14:24:06 +0100448 if (arch_fixup_fdt(images->ft_addr))
Miao Yan1bd54562013-11-28 17:51:38 +0800449 puts("## WARNING: fixup memory failed!\n");
450 }
451 }
452#endif
453 cleanup_before_linux();
454}
455void boot_jump_vxworks(bootm_headers_t *images)
456{
Vasyl Vavrychuk70b551c2018-04-10 12:36:36 +0300457#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
458 armv8_setup_psci();
459 smp_kick_all_cpus();
460#endif
461
Miao Yan1bd54562013-11-28 17:51:38 +0800462 /* ARM VxWorks requires device tree physical address to be passed */
463 ((void (*)(void *))images->ep)(images->ft_addr);
464}
465#endif