blob: 974cbfe8400eafb180e99039b4f1a61d52c898b8 [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
Simon Glass0726d9d2023-12-15 20:14:13 -070014#include <bootm.h>
Simon Glass1ea97892020-05-10 11:40:00 -060015#include <bootstage.h>
wdenkc6097192002-11-03 00:24:07 +000016#include <command.h>
Simon Glass370382c2019-11-14 12:57:35 -070017#include <cpu_func.h>
Simon Glass11c89f32017-05-17 17:18:03 -060018#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060019#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060020#include <asm/global_data.h>
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010021#include <dm/root.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060022#include <env.h>
wdenkc6097192002-11-03 00:24:07 +000023#include <image.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020024#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000025#include <asm/byteorder.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090026#include <linux/libfdt.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050027#include <mapmem.h>
John Rigbyab51f1e2010-10-13 13:57:36 -060028#include <fdt_support.h>
Simon Schwarz6a597b92012-03-15 04:01:45 +000029#include <asm/bootm.h>
Marc Zyngier855ca662014-07-12 14:24:03 +010030#include <asm/secure.h>
Pali Rohár5ebe4f12012-10-19 02:00:04 +000031#include <linux/compiler.h>
Eric Nelsonb7c236b2014-09-30 15:40:01 -070032#include <bootm.h>
33#include <vxworks.h>
Simon Glass274e0b02020-05-10 11:39:56 -060034#include <asm/cache.h>
wdenkc6097192002-11-03 00:24:07 +000035
Jan Kiszkaac31b5a2015-04-21 07:18:24 +020036#ifdef CONFIG_ARMV7_NONSEC
Andre Przywarafe7d9252013-09-19 18:06:43 +020037#include <asm/armv7.h>
38#endif
Simon Glass30db7742017-05-17 08:22:59 -060039#include <asm/setup.h>
Andre Przywarafe7d9252013-09-19 18:06:43 +020040
Wolfgang Denk6405a152006-03-31 18:32:53 +020041DECLARE_GLOBAL_DATA_PTR;
42
wdenkc6097192002-11-03 00:24:07 +000043static struct tag *params;
John Rigbyab51f1e2010-10-13 13:57:36 -060044
Alexander Graf2ebeb442016-11-17 01:02:57 +010045__weak void board_quiesce_devices(void)
46{
47}
48
Simon Glass3c26c582013-06-19 21:15:10 -070049/**
50 * announce_and_cleanup() - Print message and prepare for kernel boot
51 *
52 * @fake: non-zero to do everything except actually boot
53 */
54static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060055{
Simon Schwarz6a597b92012-03-15 04:01:45 +000056 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000057#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090058 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +000059#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000060#ifdef CONFIG_BOOTSTAGE_REPORT
61 bootstage_report();
62#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +020063
Simon Schwarz6a597b92012-03-15 04:01:45 +000064#ifdef CONFIG_USB_DEVICE
65 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -060066#endif
Alexander Graf2ebeb442016-11-17 01:02:57 +010067
68 board_quiesce_devices();
69
Keerthy79a7cb12019-02-20 18:17:22 +053070 printf("\nStarting kernel ...%s\n\n", fake ?
71 "(fake run for tracing)" : "");
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010072 /*
73 * Call remove function of all devices with a removal flag set.
74 * This may be useful for last-stage operations, like cancelling
75 * of DMA operation or releasing device internal buffers.
Janne Grunau64609732024-11-23 22:44:05 +010076 * dm_remove_devices_active() ensures that vital devices are removed in
77 * a second round.
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010078 */
Janne Grunau64609732024-11-23 22:44:05 +010079 dm_remove_devices_active();
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010080
Simon Schwarz6a597b92012-03-15 04:01:45 +000081 cleanup_before_linux();
82}
wdenkc6097192002-11-03 00:24:07 +000083
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090084static void setup_start_tag (struct bd_info *bd)
wdenkc6097192002-11-03 00:24:07 +000085{
Simon Schwarz6a597b92012-03-15 04:01:45 +000086 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +000087
wdenk86765902003-12-06 23:55:10 +000088 params->hdr.tag = ATAG_CORE;
89 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +000090
wdenk86765902003-12-06 23:55:10 +000091 params->u.core.flags = 0;
92 params->u.core.pagesize = 0;
93 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +000094
wdenk86765902003-12-06 23:55:10 +000095 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +000096}
wdenkc6097192002-11-03 00:24:07 +000097
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090098static void setup_memory_tags(struct bd_info *bd)
wdenkc6097192002-11-03 00:24:07 +000099{
wdenk86765902003-12-06 23:55:10 +0000100 int i;
wdenkc6097192002-11-03 00:24:07 +0000101
wdenk86765902003-12-06 23:55:10 +0000102 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
103 params->hdr.tag = ATAG_MEM;
104 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000105
wdenk86765902003-12-06 23:55:10 +0000106 params->u.mem.start = bd->bi_dram[i].start;
107 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000108
wdenk86765902003-12-06 23:55:10 +0000109 params = tag_next (params);
110 }
wdenkc6097192002-11-03 00:24:07 +0000111}
wdenkc6097192002-11-03 00:24:07 +0000112
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900113static void setup_commandline_tag(struct bd_info *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000114{
wdenk86765902003-12-06 23:55:10 +0000115 char *p;
wdenkc6097192002-11-03 00:24:07 +0000116
wdenkf16b5162004-03-23 21:43:07 +0000117 if (!commandline)
118 return;
119
wdenk86765902003-12-06 23:55:10 +0000120 /* eat leading white space */
121 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000122
wdenk86765902003-12-06 23:55:10 +0000123 /* skip non-existent command lines so the kernel will still
124 * use its default command line.
125 */
126 if (*p == '\0')
127 return;
wdenkc6097192002-11-03 00:24:07 +0000128
wdenk86765902003-12-06 23:55:10 +0000129 params->hdr.tag = ATAG_CMDLINE;
130 params->hdr.size =
131 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000132
wdenk86765902003-12-06 23:55:10 +0000133 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000134
wdenk86765902003-12-06 23:55:10 +0000135 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000136}
wdenkc6097192002-11-03 00:24:07 +0000137
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900138static void setup_initrd_tag(struct bd_info *bd, ulong initrd_start,
139 ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000140{
wdenk86765902003-12-06 23:55:10 +0000141 /* an ATAG_INITRD node tells the kernel where the compressed
142 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
143 */
wdenk19c8fb72004-04-18 22:26:17 +0000144 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000145 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000146
wdenk86765902003-12-06 23:55:10 +0000147 params->u.initrd.start = initrd_start;
148 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000149
wdenk86765902003-12-06 23:55:10 +0000150 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000151}
wdenkc6097192002-11-03 00:24:07 +0000152
Simon Glass50ad2212013-05-08 08:06:02 +0000153static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000154{
155 struct tag *params = *tmp;
156 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000157
158 get_board_serial(&serialnr);
159 params->hdr.tag = ATAG_SERIAL;
160 params->hdr.size = tag_size (tag_serialnr);
161 params->u.serialnr.low = serialnr.low;
162 params->u.serialnr.high= serialnr.high;
163 params = tag_next (params);
164 *tmp = params;
165}
wdenka21ad7b2005-05-19 22:39:42 +0000166
Simon Glass50ad2212013-05-08 08:06:02 +0000167static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000168{
169 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000170
171 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000172 params->hdr.tag = ATAG_REVISION;
173 params->hdr.size = tag_size (tag_revision);
174 params->u.revision.rev = rev;
175 params = tag_next (params);
176}
wdenkcb99da52005-01-12 00:15:14 +0000177
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900178static void setup_end_tag(struct bd_info *bd)
wdenkc6097192002-11-03 00:24:07 +0000179{
wdenk86765902003-12-06 23:55:10 +0000180 params->hdr.tag = ATAG_NONE;
181 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000182}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000183
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000184__weak void setup_board_tags(struct tag **in_params) {}
185
Marc Zyngier855ca662014-07-12 14:24:03 +0100186#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200187static void do_nonsec_virt_switch(void)
188{
David Feng85fd5f12013-12-14 11:47:35 +0800189 smp_kick_all_cpus();
York Sun1ce575f2015-01-06 13:18:42 -0800190 dcache_disable(); /* flush cache before swtiching to EL2 */
Andre Przywarafe7d9252013-09-19 18:06:43 +0200191}
Marc Zyngier855ca662014-07-12 14:24:03 +0100192#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200193
Simon Glassdf00afa2022-09-06 20:26:50 -0600194__weak void board_prep_linux(struct bootm_headers *images) { }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530195
Simon Schwarz6a597b92012-03-15 04:01:45 +0000196/* Subcommand: PREP */
Simon Glassdf00afa2022-09-06 20:26:50 -0600197static void boot_prep_linux(struct bootm_headers *images)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000198{
Simon Glass64b723f2017-08-03 12:22:12 -0600199 char *commandline = env_get("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000200
Simon Glassae7ed572023-02-05 15:40:13 -0700201 if (CONFIG_IS_ENABLED(OF_LIBFDT) && IS_ENABLED(CONFIG_LMB) && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000202 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000203 if (image_setup_linux(images)) {
Heinrich Schuchardte3550d52021-02-17 12:55:54 +0100204 panic("FDT creation failed!");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000205 }
Simon Glass50ad2212013-05-08 08:06:02 +0000206 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000207 debug("using: ATAGS\n");
208 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000209 if (BOOTM_ENABLE_SERIAL_TAG)
210 setup_serial_tag(&params);
211 if (BOOTM_ENABLE_CMDLINE_TAG)
212 setup_commandline_tag(gd->bd, commandline);
213 if (BOOTM_ENABLE_REVISION_TAG)
214 setup_revision_tag(&params);
215 if (BOOTM_ENABLE_MEMORY_TAGS)
216 setup_memory_tags(gd->bd);
217 if (BOOTM_ENABLE_INITRD_TAG) {
Jeffy Chen113094e2016-01-14 10:19:36 +0800218 /*
219 * In boot_ramdisk_high(), it may relocate ramdisk to
220 * a specified location. And set images->initrd_start &
221 * images->initrd_end to relocated ramdisk's start/end
222 * addresses. So use them instead of images->rd_start &
223 * images->rd_end when possible.
224 */
225 if (images->initrd_start && images->initrd_end) {
226 setup_initrd_tag(gd->bd, images->initrd_start,
227 images->initrd_end);
228 } else if (images->rd_start && images->rd_end) {
Simon Glass50ad2212013-05-08 08:06:02 +0000229 setup_initrd_tag(gd->bd, images->rd_start,
230 images->rd_end);
231 }
232 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000233 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000234 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000235 } else {
Heinrich Schuchardte3550d52021-02-17 12:55:54 +0100236 panic("FDT and ATAGS support not compiled in\n");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000237 }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530238
239 board_prep_linux(images);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000240}
241
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100242__weak bool armv7_boot_nonsec_default(void)
Hans de Goede63fb5482014-11-14 09:34:31 +0100243{
Hans de Goede63fb5482014-11-14 09:34:31 +0100244#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100245 return false;
Hans de Goede63fb5482014-11-14 09:34:31 +0100246#else
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100247 return true;
Hans de Goede63fb5482014-11-14 09:34:31 +0100248#endif
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100249}
250
251#ifdef CONFIG_ARMV7_NONSEC
252bool armv7_boot_nonsec(void)
253{
Simon Glass64b723f2017-08-03 12:22:12 -0600254 char *s = env_get("bootm_boot_mode");
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100255 bool nonsec = armv7_boot_nonsec_default();
Hans de Goede63fb5482014-11-14 09:34:31 +0100256
257 if (s && !strcmp(s, "sec"))
258 nonsec = false;
259
260 if (s && !strcmp(s, "nonsec"))
261 nonsec = true;
262
263 return nonsec;
264}
265#endif
266
Alison Wang73818d52016-11-10 10:49:03 +0800267#ifdef CONFIG_ARM64
Alison Wang876c7e12016-11-10 10:49:04 +0800268__weak void update_os_arch_secondary_cores(uint8_t os_arch)
269{
270}
271
Tom Rini3a6d4532021-09-03 10:40:28 -0400272#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wang73818d52016-11-10 10:49:03 +0800273static void switch_to_el1(void)
274{
275 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
276 (images.os.arch == IH_ARCH_ARM))
277 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800278 (u64)images.ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800279 (u64)images.ep,
280 ES_TO_AARCH32);
281 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800282 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800283 images.ep,
284 ES_TO_AARCH64);
285}
286#endif
Tom Rini3a6d4532021-09-03 10:40:28 -0400287#endif
Alison Wang73818d52016-11-10 10:49:03 +0800288
Simon Schwarz6a597b92012-03-15 04:01:45 +0000289/* Subcommand: GO */
Simon Glassdf00afa2022-09-06 20:26:50 -0600290static void boot_jump_linux(struct bootm_headers *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000291{
David Feng85fd5f12013-12-14 11:47:35 +0800292#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400293 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
294 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800295 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
296
Tom Rini67d604e2014-08-14 06:42:35 -0400297 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
298 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800299
300 debug("## Transferring control to Linux (at address %lx)...\n",
301 (ulong) kernel_entry);
302 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
303
304 announce_and_cleanup(fake);
305
Marc Zyngier915a09e2014-07-12 14:23:58 +0100306 if (!fake) {
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800307#ifdef CONFIG_ARMV8_PSCI
308 armv8_setup_psci();
309#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100310 do_nonsec_virt_switch();
Alison Wang73818d52016-11-10 10:49:03 +0800311
Alison Wang876c7e12016-11-10 10:49:04 +0800312 update_os_arch_secondary_cores(images->os.arch);
313
Peter Hoyesa6732662021-08-19 16:53:13 +0100314#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Tom Rini3a6d4532021-09-03 10:40:28 -0400315 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
316 (u64)switch_to_el1, ES_TO_AARCH64);
317#else
318 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
319 (images->os.arch == IH_ARCH_ARM))
320 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
321 (u64)images->ft_addr, 0,
322 (u64)images->ep,
323 ES_TO_AARCH32);
324 else
Peter Hoyesa6732662021-08-19 16:53:13 +0100325 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Tom Rini3a6d4532021-09-03 10:40:28 -0400326 images->ep,
327 ES_TO_AARCH64);
328#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100329 }
David Feng85fd5f12013-12-14 11:47:35 +0800330#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000331 unsigned long machid = gd->bd->bi_arch_number;
332 char *s;
333 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000334 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700335 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000336
337 kernel_entry = (void (*)(int, int, uint))images->ep;
Patrice Chotardffb3c0b2017-04-25 11:07:46 +0200338#ifdef CONFIG_CPU_V7M
339 ulong addr = (ulong)kernel_entry | 1;
340 kernel_entry = (void *)addr;
341#endif
Simon Glass64b723f2017-08-03 12:22:12 -0600342 s = env_get("machid");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000343 if (s) {
Peng Fanc4485e72015-11-24 16:54:20 +0800344 if (strict_strtoul(s, 16, &machid) < 0) {
345 debug("strict_strtoul failed!\n");
346 return;
347 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000348 printf("Using machid 0x%lx from environment\n", machid);
349 }
350
351 debug("## Transferring control to Linux (at address %08lx)" \
352 "...\n", (ulong) kernel_entry);
353 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700354 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000355
Simon Glass85c057e2021-09-25 19:43:21 -0600356 if (CONFIG_IS_ENABLED(OF_LIBFDT) && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000357 r2 = (unsigned long)images->ft_addr;
358 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000359 r2 = gd->bd->bi_boot_params;
360
Marc Zyngier915a09e2014-07-12 14:23:58 +0100361 if (!fake) {
Jan Kiszkaac31b5a2015-04-21 07:18:24 +0200362#ifdef CONFIG_ARMV7_NONSEC
Ian Campbell68bc8f52014-12-21 09:45:11 +0000363 if (armv7_boot_nonsec()) {
Hans de Goede63fb5482014-11-14 09:34:31 +0100364 armv7_init_nonsec();
365 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
366 0, machid, r2);
367 } else
Marc Zyngier855ca662014-07-12 14:24:03 +0100368#endif
Hans de Goede63fb5482014-11-14 09:34:31 +0100369 kernel_entry(0, machid, r2);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100370 }
David Feng85fd5f12013-12-14 11:47:35 +0800371#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000372}
373
374/* Main Entry point for arm bootm implementation
375 *
376 * Modeled after the powerpc implementation
377 * DIFFERENCE: Instead of calling prep and go at the end
378 * they are called if subcommand is equal 0.
379 */
Simon Glass0726d9d2023-12-15 20:14:13 -0700380int do_bootm_linux(int flag, struct bootm_info *bmi)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000381{
Simon Glass0726d9d2023-12-15 20:14:13 -0700382 struct bootm_headers *images = bmi->images;
383
Simon Schwarz6a597b92012-03-15 04:01:45 +0000384 /* No need for those on ARM */
385 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
386 return -1;
387
388 if (flag & BOOTM_STATE_OS_PREP) {
389 boot_prep_linux(images);
390 return 0;
391 }
392
Simon Glass3c26c582013-06-19 21:15:10 -0700393 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
394 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000395 return 0;
396 }
397
398 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700399 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000400 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600401}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000402
Miao Yan1bd54562013-11-28 17:51:38 +0800403#if defined(CONFIG_BOOTM_VXWORKS)
Simon Glassdf00afa2022-09-06 20:26:50 -0600404void boot_prep_vxworks(struct bootm_headers *images)
Miao Yan1bd54562013-11-28 17:51:38 +0800405{
406#if defined(CONFIG_OF_LIBFDT)
407 int off;
408
409 if (images->ft_addr) {
410 off = fdt_path_offset(images->ft_addr, "/memory");
Hannes Schmelzer64fabcc2018-05-04 10:49:11 +0200411 if (off > 0) {
Ma Haijun62358242014-07-12 14:24:06 +0100412 if (arch_fixup_fdt(images->ft_addr))
Miao Yan1bd54562013-11-28 17:51:38 +0800413 puts("## WARNING: fixup memory failed!\n");
414 }
415 }
416#endif
417 cleanup_before_linux();
418}
Simon Glassdf00afa2022-09-06 20:26:50 -0600419
420void boot_jump_vxworks(struct bootm_headers *images)
Miao Yan1bd54562013-11-28 17:51:38 +0800421{
Vasyl Vavrychuk70b551c2018-04-10 12:36:36 +0300422#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
423 armv8_setup_psci();
424 smp_kick_all_cpus();
425#endif
426
Miao Yan1bd54562013-11-28 17:51:38 +0800427 /* ARM VxWorks requires device tree physical address to be passed */
428 ((void (*)(void *))images->ep)(images->ft_addr);
429}
430#endif