blob: a135bcfc7b55664382bb5f105b7944dbbf55d091 [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 Glass370382c2019-11-14 12:57:35 -070016#include <cpu_func.h>
Simon Glass11c89f32017-05-17 17:18:03 -060017#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070018#include <hang.h>
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010019#include <dm/root.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060020#include <env.h>
wdenkc6097192002-11-03 00:24:07 +000021#include <image.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020022#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000023#include <asm/byteorder.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090024#include <linux/libfdt.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050025#include <mapmem.h>
John Rigbyab51f1e2010-10-13 13:57:36 -060026#include <fdt_support.h>
Simon Schwarz6a597b92012-03-15 04:01:45 +000027#include <asm/bootm.h>
Marc Zyngier855ca662014-07-12 14:24:03 +010028#include <asm/secure.h>
Pali Rohár5ebe4f12012-10-19 02:00:04 +000029#include <linux/compiler.h>
Eric Nelsonb7c236b2014-09-30 15:40:01 -070030#include <bootm.h>
31#include <vxworks.h>
wdenkc6097192002-11-03 00:24:07 +000032
Jan Kiszkaac31b5a2015-04-21 07:18:24 +020033#ifdef CONFIG_ARMV7_NONSEC
Andre Przywarafe7d9252013-09-19 18:06:43 +020034#include <asm/armv7.h>
35#endif
Simon Glass30db7742017-05-17 08:22:59 -060036#include <asm/setup.h>
Andre Przywarafe7d9252013-09-19 18:06:43 +020037
Wolfgang Denk6405a152006-03-31 18:32:53 +020038DECLARE_GLOBAL_DATA_PTR;
39
wdenkc6097192002-11-03 00:24:07 +000040static struct tag *params;
John Rigbyab51f1e2010-10-13 13:57:36 -060041
Simon Schwarz6a597b92012-03-15 04:01:45 +000042static ulong get_sp(void)
43{
44 ulong ret;
45
46 asm("mov %0, sp" : "=r"(ret) : );
47 return ret;
48}
49
John Rigbyab51f1e2010-10-13 13:57:36 -060050void arch_lmb_reserve(struct lmb *lmb)
51{
Stephen Warren1a0b8052018-01-05 13:04:54 -070052 ulong sp, bank_end;
53 int bank;
John Rigbyab51f1e2010-10-13 13:57:36 -060054
55 /*
56 * Booting a (Linux) kernel image
57 *
58 * Allocate space for command line and board info - the
59 * address should be as high as possible within the reach of
60 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
61 * memory, which means far enough below the current stack
62 * pointer.
63 */
64 sp = get_sp();
65 debug("## Current stack ends at 0x%08lx ", sp);
66
Rob Herring13137f32012-06-28 03:54:11 +000067 /* adjust sp by 4K to be safe */
68 sp -= 4096;
Stephen Warren1a0b8052018-01-05 13:04:54 -070069 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010070 if (!gd->bd->bi_dram[bank].size ||
71 sp < gd->bd->bi_dram[bank].start)
Stephen Warren1a0b8052018-01-05 13:04:54 -070072 continue;
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010073 /* Watch out for RAM at end of address space! */
Stephen Warren1a0b8052018-01-05 13:04:54 -070074 bank_end = gd->bd->bi_dram[bank].start +
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010075 gd->bd->bi_dram[bank].size - 1;
76 if (sp > bank_end)
Stephen Warren1a0b8052018-01-05 13:04:54 -070077 continue;
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010078 lmb_reserve(lmb, sp, bank_end - sp + 1);
Stephen Warren1a0b8052018-01-05 13:04:54 -070079 break;
80 }
John Rigbyab51f1e2010-10-13 13:57:36 -060081}
82
Alexander Graf2ebeb442016-11-17 01:02:57 +010083__weak void board_quiesce_devices(void)
84{
85}
86
Simon Glass3c26c582013-06-19 21:15:10 -070087/**
88 * announce_and_cleanup() - Print message and prepare for kernel boot
89 *
90 * @fake: non-zero to do everything except actually boot
91 */
92static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060093{
Simon Schwarz6a597b92012-03-15 04:01:45 +000094 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000095#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090096 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +000097#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000098#ifdef CONFIG_BOOTSTAGE_REPORT
99 bootstage_report();
100#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +0200101
Simon Schwarz6a597b92012-03-15 04:01:45 +0000102#ifdef CONFIG_USB_DEVICE
103 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -0600104#endif
Alexander Graf2ebeb442016-11-17 01:02:57 +0100105
106 board_quiesce_devices();
107
Keerthy79a7cb12019-02-20 18:17:22 +0530108 printf("\nStarting kernel ...%s\n\n", fake ?
109 "(fake run for tracing)" : "");
Stefan Roese8ab5a1b2017-03-20 12:51:50 +0100110 /*
111 * Call remove function of all devices with a removal flag set.
112 * This may be useful for last-stage operations, like cancelling
113 * of DMA operation or releasing device internal buffers.
114 */
115 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
116
Simon Schwarz6a597b92012-03-15 04:01:45 +0000117 cleanup_before_linux();
118}
wdenkc6097192002-11-03 00:24:07 +0000119
wdenk86765902003-12-06 23:55:10 +0000120static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000121{
Simon Schwarz6a597b92012-03-15 04:01:45 +0000122 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +0000123
wdenk86765902003-12-06 23:55:10 +0000124 params->hdr.tag = ATAG_CORE;
125 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +0000126
wdenk86765902003-12-06 23:55:10 +0000127 params->u.core.flags = 0;
128 params->u.core.pagesize = 0;
129 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +0000130
wdenk86765902003-12-06 23:55:10 +0000131 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000132}
wdenkc6097192002-11-03 00:24:07 +0000133
Simon Schwarz6a597b92012-03-15 04:01:45 +0000134static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000135{
wdenk86765902003-12-06 23:55:10 +0000136 int i;
wdenkc6097192002-11-03 00:24:07 +0000137
wdenk86765902003-12-06 23:55:10 +0000138 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
139 params->hdr.tag = ATAG_MEM;
140 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000141
wdenk86765902003-12-06 23:55:10 +0000142 params->u.mem.start = bd->bi_dram[i].start;
143 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000144
wdenk86765902003-12-06 23:55:10 +0000145 params = tag_next (params);
146 }
wdenkc6097192002-11-03 00:24:07 +0000147}
wdenkc6097192002-11-03 00:24:07 +0000148
Simon Schwarz6a597b92012-03-15 04:01:45 +0000149static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000150{
wdenk86765902003-12-06 23:55:10 +0000151 char *p;
wdenkc6097192002-11-03 00:24:07 +0000152
wdenkf16b5162004-03-23 21:43:07 +0000153 if (!commandline)
154 return;
155
wdenk86765902003-12-06 23:55:10 +0000156 /* eat leading white space */
157 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000158
wdenk86765902003-12-06 23:55:10 +0000159 /* skip non-existent command lines so the kernel will still
160 * use its default command line.
161 */
162 if (*p == '\0')
163 return;
wdenkc6097192002-11-03 00:24:07 +0000164
wdenk86765902003-12-06 23:55:10 +0000165 params->hdr.tag = ATAG_CMDLINE;
166 params->hdr.size =
167 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000168
wdenk86765902003-12-06 23:55:10 +0000169 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000170
wdenk86765902003-12-06 23:55:10 +0000171 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000172}
wdenkc6097192002-11-03 00:24:07 +0000173
Simon Schwarz6a597b92012-03-15 04:01:45 +0000174static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000175{
wdenk86765902003-12-06 23:55:10 +0000176 /* an ATAG_INITRD node tells the kernel where the compressed
177 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
178 */
wdenk19c8fb72004-04-18 22:26:17 +0000179 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000180 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000181
wdenk86765902003-12-06 23:55:10 +0000182 params->u.initrd.start = initrd_start;
183 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000184
wdenk86765902003-12-06 23:55:10 +0000185 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000186}
wdenkc6097192002-11-03 00:24:07 +0000187
Simon Glass50ad2212013-05-08 08:06:02 +0000188static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000189{
190 struct tag *params = *tmp;
191 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000192
193 get_board_serial(&serialnr);
194 params->hdr.tag = ATAG_SERIAL;
195 params->hdr.size = tag_size (tag_serialnr);
196 params->u.serialnr.low = serialnr.low;
197 params->u.serialnr.high= serialnr.high;
198 params = tag_next (params);
199 *tmp = params;
200}
wdenka21ad7b2005-05-19 22:39:42 +0000201
Simon Glass50ad2212013-05-08 08:06:02 +0000202static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000203{
204 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000205
206 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000207 params->hdr.tag = ATAG_REVISION;
208 params->hdr.size = tag_size (tag_revision);
209 params->u.revision.rev = rev;
210 params = tag_next (params);
211}
wdenkcb99da52005-01-12 00:15:14 +0000212
Simon Schwarz6a597b92012-03-15 04:01:45 +0000213static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000214{
wdenk86765902003-12-06 23:55:10 +0000215 params->hdr.tag = ATAG_NONE;
216 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000217}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000218
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000219__weak void setup_board_tags(struct tag **in_params) {}
220
Marc Zyngier855ca662014-07-12 14:24:03 +0100221#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200222static void do_nonsec_virt_switch(void)
223{
David Feng85fd5f12013-12-14 11:47:35 +0800224 smp_kick_all_cpus();
York Sun1ce575f2015-01-06 13:18:42 -0800225 dcache_disable(); /* flush cache before swtiching to EL2 */
Andre Przywarafe7d9252013-09-19 18:06:43 +0200226}
Marc Zyngier855ca662014-07-12 14:24:03 +0100227#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200228
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530229__weak void board_prep_linux(bootm_headers_t *images) { }
230
Simon Schwarz6a597b92012-03-15 04:01:45 +0000231/* Subcommand: PREP */
232static void boot_prep_linux(bootm_headers_t *images)
233{
Simon Glass64b723f2017-08-03 12:22:12 -0600234 char *commandline = env_get("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000235
Simon Glass50ad2212013-05-08 08:06:02 +0000236 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000237#ifdef CONFIG_OF_LIBFDT
Simon Schwarz6a597b92012-03-15 04:01:45 +0000238 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000239 if (image_setup_linux(images)) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000240 printf("FDT creation failed! hanging...");
241 hang();
242 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000243#endif
Simon Glass50ad2212013-05-08 08:06:02 +0000244 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000245 debug("using: ATAGS\n");
246 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000247 if (BOOTM_ENABLE_SERIAL_TAG)
248 setup_serial_tag(&params);
249 if (BOOTM_ENABLE_CMDLINE_TAG)
250 setup_commandline_tag(gd->bd, commandline);
251 if (BOOTM_ENABLE_REVISION_TAG)
252 setup_revision_tag(&params);
253 if (BOOTM_ENABLE_MEMORY_TAGS)
254 setup_memory_tags(gd->bd);
255 if (BOOTM_ENABLE_INITRD_TAG) {
Jeffy Chen113094e2016-01-14 10:19:36 +0800256 /*
257 * In boot_ramdisk_high(), it may relocate ramdisk to
258 * a specified location. And set images->initrd_start &
259 * images->initrd_end to relocated ramdisk's start/end
260 * addresses. So use them instead of images->rd_start &
261 * images->rd_end when possible.
262 */
263 if (images->initrd_start && images->initrd_end) {
264 setup_initrd_tag(gd->bd, images->initrd_start,
265 images->initrd_end);
266 } else if (images->rd_start && images->rd_end) {
Simon Glass50ad2212013-05-08 08:06:02 +0000267 setup_initrd_tag(gd->bd, images->rd_start,
268 images->rd_end);
269 }
270 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000271 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000272 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000273 } else {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000274 printf("FDT and ATAGS support not compiled in - hanging\n");
275 hang();
Simon Schwarz6a597b92012-03-15 04:01:45 +0000276 }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530277
278 board_prep_linux(images);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000279}
280
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100281__weak bool armv7_boot_nonsec_default(void)
Hans de Goede63fb5482014-11-14 09:34:31 +0100282{
Hans de Goede63fb5482014-11-14 09:34:31 +0100283#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100284 return false;
Hans de Goede63fb5482014-11-14 09:34:31 +0100285#else
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100286 return true;
Hans de Goede63fb5482014-11-14 09:34:31 +0100287#endif
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100288}
289
290#ifdef CONFIG_ARMV7_NONSEC
291bool armv7_boot_nonsec(void)
292{
Simon Glass64b723f2017-08-03 12:22:12 -0600293 char *s = env_get("bootm_boot_mode");
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100294 bool nonsec = armv7_boot_nonsec_default();
Hans de Goede63fb5482014-11-14 09:34:31 +0100295
296 if (s && !strcmp(s, "sec"))
297 nonsec = false;
298
299 if (s && !strcmp(s, "nonsec"))
300 nonsec = true;
301
302 return nonsec;
303}
304#endif
305
Alison Wang73818d52016-11-10 10:49:03 +0800306#ifdef CONFIG_ARM64
Alison Wang876c7e12016-11-10 10:49:04 +0800307__weak void update_os_arch_secondary_cores(uint8_t os_arch)
308{
309}
310
Alison Wang73818d52016-11-10 10:49:03 +0800311#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
312static void switch_to_el1(void)
313{
314 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
315 (images.os.arch == IH_ARCH_ARM))
316 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800317 (u64)images.ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800318 (u64)images.ep,
319 ES_TO_AARCH32);
320 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800321 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800322 images.ep,
323 ES_TO_AARCH64);
324}
325#endif
326#endif
327
Simon Schwarz6a597b92012-03-15 04:01:45 +0000328/* Subcommand: GO */
Simon Glass3c26c582013-06-19 21:15:10 -0700329static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000330{
David Feng85fd5f12013-12-14 11:47:35 +0800331#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400332 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
333 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800334 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
335
Tom Rini67d604e2014-08-14 06:42:35 -0400336 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
337 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800338
339 debug("## Transferring control to Linux (at address %lx)...\n",
340 (ulong) kernel_entry);
341 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
342
343 announce_and_cleanup(fake);
344
Marc Zyngier915a09e2014-07-12 14:23:58 +0100345 if (!fake) {
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800346#ifdef CONFIG_ARMV8_PSCI
347 armv8_setup_psci();
348#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100349 do_nonsec_virt_switch();
Alison Wang73818d52016-11-10 10:49:03 +0800350
Alison Wang876c7e12016-11-10 10:49:04 +0800351 update_os_arch_secondary_cores(images->os.arch);
352
Alison Wang73818d52016-11-10 10:49:03 +0800353#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wangeb2088d2017-01-17 09:39:17 +0800354 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800355 (u64)switch_to_el1, ES_TO_AARCH64);
356#else
357 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
358 (images->os.arch == IH_ARCH_ARM))
359 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800360 (u64)images->ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800361 (u64)images->ep,
362 ES_TO_AARCH32);
363 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800364 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800365 images->ep,
366 ES_TO_AARCH64);
367#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100368 }
David Feng85fd5f12013-12-14 11:47:35 +0800369#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000370 unsigned long machid = gd->bd->bi_arch_number;
371 char *s;
372 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000373 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700374 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000375
376 kernel_entry = (void (*)(int, int, uint))images->ep;
Patrice Chotardffb3c0b2017-04-25 11:07:46 +0200377#ifdef CONFIG_CPU_V7M
378 ulong addr = (ulong)kernel_entry | 1;
379 kernel_entry = (void *)addr;
380#endif
Simon Glass64b723f2017-08-03 12:22:12 -0600381 s = env_get("machid");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000382 if (s) {
Peng Fanc4485e72015-11-24 16:54:20 +0800383 if (strict_strtoul(s, 16, &machid) < 0) {
384 debug("strict_strtoul failed!\n");
385 return;
386 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000387 printf("Using machid 0x%lx from environment\n", machid);
388 }
389
390 debug("## Transferring control to Linux (at address %08lx)" \
391 "...\n", (ulong) kernel_entry);
392 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700393 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000394
Simon Glass50ad2212013-05-08 08:06:02 +0000395 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000396 r2 = (unsigned long)images->ft_addr;
397 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000398 r2 = gd->bd->bi_boot_params;
399
Marc Zyngier915a09e2014-07-12 14:23:58 +0100400 if (!fake) {
Jan Kiszkaac31b5a2015-04-21 07:18:24 +0200401#ifdef CONFIG_ARMV7_NONSEC
Ian Campbell68bc8f52014-12-21 09:45:11 +0000402 if (armv7_boot_nonsec()) {
Hans de Goede63fb5482014-11-14 09:34:31 +0100403 armv7_init_nonsec();
404 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
405 0, machid, r2);
406 } else
Marc Zyngier855ca662014-07-12 14:24:03 +0100407#endif
Hans de Goede63fb5482014-11-14 09:34:31 +0100408 kernel_entry(0, machid, r2);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100409 }
David Feng85fd5f12013-12-14 11:47:35 +0800410#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000411}
412
413/* Main Entry point for arm bootm implementation
414 *
415 * Modeled after the powerpc implementation
416 * DIFFERENCE: Instead of calling prep and go at the end
417 * they are called if subcommand is equal 0.
418 */
Eric Nelsonb7c236b2014-09-30 15:40:01 -0700419int do_bootm_linux(int flag, int argc, char * const argv[],
420 bootm_headers_t *images)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000421{
422 /* No need for those on ARM */
423 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
424 return -1;
425
426 if (flag & BOOTM_STATE_OS_PREP) {
427 boot_prep_linux(images);
428 return 0;
429 }
430
Simon Glass3c26c582013-06-19 21:15:10 -0700431 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
432 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000433 return 0;
434 }
435
436 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700437 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000438 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600439}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000440
Miao Yan1bd54562013-11-28 17:51:38 +0800441#if defined(CONFIG_BOOTM_VXWORKS)
442void boot_prep_vxworks(bootm_headers_t *images)
443{
444#if defined(CONFIG_OF_LIBFDT)
445 int off;
446
447 if (images->ft_addr) {
448 off = fdt_path_offset(images->ft_addr, "/memory");
Hannes Schmelzer64fabcc2018-05-04 10:49:11 +0200449 if (off > 0) {
Ma Haijun62358242014-07-12 14:24:06 +0100450 if (arch_fixup_fdt(images->ft_addr))
Miao Yan1bd54562013-11-28 17:51:38 +0800451 puts("## WARNING: fixup memory failed!\n");
452 }
453 }
454#endif
455 cleanup_before_linux();
456}
457void boot_jump_vxworks(bootm_headers_t *images)
458{
Vasyl Vavrychuk70b551c2018-04-10 12:36:36 +0300459#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
460 armv8_setup_psci();
461 smp_kick_all_cpus();
462#endif
463
Miao Yan1bd54562013-11-28 17:51:38 +0800464 /* ARM VxWorks requires device tree physical address to be passed */
465 ((void (*)(void *))images->ep)(images->ft_addr);
466}
467#endif