blob: f30a483ed8b47b62a4e987a9f05f31005bf08aaa [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>
Simon Glass0726d9d2023-12-15 20:14:13 -070015#include <bootm.h>
Simon Glass1ea97892020-05-10 11:40:00 -060016#include <bootstage.h>
wdenkc6097192002-11-03 00:24:07 +000017#include <command.h>
Simon Glass370382c2019-11-14 12:57:35 -070018#include <cpu_func.h>
Simon Glass11c89f32017-05-17 17:18:03 -060019#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060020#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010022#include <dm/root.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060023#include <env.h>
wdenkc6097192002-11-03 00:24:07 +000024#include <image.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020025#include <u-boot/zlib.h>
wdenkc6097192002-11-03 00:24:07 +000026#include <asm/byteorder.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090027#include <linux/libfdt.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050028#include <mapmem.h>
John Rigbyab51f1e2010-10-13 13:57:36 -060029#include <fdt_support.h>
Simon Schwarz6a597b92012-03-15 04:01:45 +000030#include <asm/bootm.h>
Marc Zyngier855ca662014-07-12 14:24:03 +010031#include <asm/secure.h>
Pali Rohár5ebe4f12012-10-19 02:00:04 +000032#include <linux/compiler.h>
Eric Nelsonb7c236b2014-09-30 15:40:01 -070033#include <bootm.h>
34#include <vxworks.h>
Simon Glass274e0b02020-05-10 11:39:56 -060035#include <asm/cache.h>
wdenkc6097192002-11-03 00:24:07 +000036
Jan Kiszkaac31b5a2015-04-21 07:18:24 +020037#ifdef CONFIG_ARMV7_NONSEC
Andre Przywarafe7d9252013-09-19 18:06:43 +020038#include <asm/armv7.h>
39#endif
Simon Glass30db7742017-05-17 08:22:59 -060040#include <asm/setup.h>
Andre Przywarafe7d9252013-09-19 18:06:43 +020041
Wolfgang Denk6405a152006-03-31 18:32:53 +020042DECLARE_GLOBAL_DATA_PTR;
43
wdenkc6097192002-11-03 00:24:07 +000044static struct tag *params;
John Rigbyab51f1e2010-10-13 13:57:36 -060045
Alexander Graf2ebeb442016-11-17 01:02:57 +010046__weak void board_quiesce_devices(void)
47{
48}
49
Simon Glass3c26c582013-06-19 21:15:10 -070050/**
51 * announce_and_cleanup() - Print message and prepare for kernel boot
52 *
53 * @fake: non-zero to do everything except actually boot
54 */
55static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060056{
Simon Schwarz6a597b92012-03-15 04:01:45 +000057 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000058#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090059 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +000060#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +000061#ifdef CONFIG_BOOTSTAGE_REPORT
62 bootstage_report();
63#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +020064
Simon Schwarz6a597b92012-03-15 04:01:45 +000065#ifdef CONFIG_USB_DEVICE
66 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -060067#endif
Alexander Graf2ebeb442016-11-17 01:02:57 +010068
69 board_quiesce_devices();
70
Keerthy79a7cb12019-02-20 18:17:22 +053071 printf("\nStarting kernel ...%s\n\n", fake ?
72 "(fake run for tracing)" : "");
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010073 /*
74 * Call remove function of all devices with a removal flag set.
75 * This may be useful for last-stage operations, like cancelling
76 * of DMA operation or releasing device internal buffers.
77 */
Simon Glass8ae87442021-01-24 14:32:47 -070078 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL | DM_REMOVE_NON_VITAL);
79
80 /* Remove all active vital devices next */
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010081 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
82
Simon Schwarz6a597b92012-03-15 04:01:45 +000083 cleanup_before_linux();
84}
wdenkc6097192002-11-03 00:24:07 +000085
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090086static void setup_start_tag (struct bd_info *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
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900100static void setup_memory_tags(struct bd_info *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
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900115static void setup_commandline_tag(struct bd_info *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
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900140static void setup_initrd_tag(struct bd_info *bd, ulong initrd_start,
141 ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000142{
wdenk86765902003-12-06 23:55:10 +0000143 /* an ATAG_INITRD node tells the kernel where the compressed
144 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
145 */
wdenk19c8fb72004-04-18 22:26:17 +0000146 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000147 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000148
wdenk86765902003-12-06 23:55:10 +0000149 params->u.initrd.start = initrd_start;
150 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000151
wdenk86765902003-12-06 23:55:10 +0000152 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000153}
wdenkc6097192002-11-03 00:24:07 +0000154
Simon Glass50ad2212013-05-08 08:06:02 +0000155static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000156{
157 struct tag *params = *tmp;
158 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000159
160 get_board_serial(&serialnr);
161 params->hdr.tag = ATAG_SERIAL;
162 params->hdr.size = tag_size (tag_serialnr);
163 params->u.serialnr.low = serialnr.low;
164 params->u.serialnr.high= serialnr.high;
165 params = tag_next (params);
166 *tmp = params;
167}
wdenka21ad7b2005-05-19 22:39:42 +0000168
Simon Glass50ad2212013-05-08 08:06:02 +0000169static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000170{
171 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000172
173 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000174 params->hdr.tag = ATAG_REVISION;
175 params->hdr.size = tag_size (tag_revision);
176 params->u.revision.rev = rev;
177 params = tag_next (params);
178}
wdenkcb99da52005-01-12 00:15:14 +0000179
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900180static void setup_end_tag(struct bd_info *bd)
wdenkc6097192002-11-03 00:24:07 +0000181{
wdenk86765902003-12-06 23:55:10 +0000182 params->hdr.tag = ATAG_NONE;
183 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000184}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000185
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000186__weak void setup_board_tags(struct tag **in_params) {}
187
Marc Zyngier855ca662014-07-12 14:24:03 +0100188#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200189static void do_nonsec_virt_switch(void)
190{
David Feng85fd5f12013-12-14 11:47:35 +0800191 smp_kick_all_cpus();
York Sun1ce575f2015-01-06 13:18:42 -0800192 dcache_disable(); /* flush cache before swtiching to EL2 */
Andre Przywarafe7d9252013-09-19 18:06:43 +0200193}
Marc Zyngier855ca662014-07-12 14:24:03 +0100194#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200195
Simon Glassdf00afa2022-09-06 20:26:50 -0600196__weak void board_prep_linux(struct bootm_headers *images) { }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530197
Simon Schwarz6a597b92012-03-15 04:01:45 +0000198/* Subcommand: PREP */
Simon Glassdf00afa2022-09-06 20:26:50 -0600199static void boot_prep_linux(struct bootm_headers *images)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000200{
Simon Glass64b723f2017-08-03 12:22:12 -0600201 char *commandline = env_get("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000202
Simon Glassae7ed572023-02-05 15:40:13 -0700203 if (CONFIG_IS_ENABLED(OF_LIBFDT) && IS_ENABLED(CONFIG_LMB) && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000204 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000205 if (image_setup_linux(images)) {
Heinrich Schuchardte3550d52021-02-17 12:55:54 +0100206 panic("FDT creation failed!");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000207 }
Simon Glass50ad2212013-05-08 08:06:02 +0000208 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000209 debug("using: ATAGS\n");
210 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000211 if (BOOTM_ENABLE_SERIAL_TAG)
212 setup_serial_tag(&params);
213 if (BOOTM_ENABLE_CMDLINE_TAG)
214 setup_commandline_tag(gd->bd, commandline);
215 if (BOOTM_ENABLE_REVISION_TAG)
216 setup_revision_tag(&params);
217 if (BOOTM_ENABLE_MEMORY_TAGS)
218 setup_memory_tags(gd->bd);
219 if (BOOTM_ENABLE_INITRD_TAG) {
Jeffy Chen113094e2016-01-14 10:19:36 +0800220 /*
221 * In boot_ramdisk_high(), it may relocate ramdisk to
222 * a specified location. And set images->initrd_start &
223 * images->initrd_end to relocated ramdisk's start/end
224 * addresses. So use them instead of images->rd_start &
225 * images->rd_end when possible.
226 */
227 if (images->initrd_start && images->initrd_end) {
228 setup_initrd_tag(gd->bd, images->initrd_start,
229 images->initrd_end);
230 } else if (images->rd_start && images->rd_end) {
Simon Glass50ad2212013-05-08 08:06:02 +0000231 setup_initrd_tag(gd->bd, images->rd_start,
232 images->rd_end);
233 }
234 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000235 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000236 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000237 } else {
Heinrich Schuchardte3550d52021-02-17 12:55:54 +0100238 panic("FDT and ATAGS support not compiled in\n");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000239 }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530240
241 board_prep_linux(images);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000242}
243
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100244__weak bool armv7_boot_nonsec_default(void)
Hans de Goede63fb5482014-11-14 09:34:31 +0100245{
Hans de Goede63fb5482014-11-14 09:34:31 +0100246#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100247 return false;
Hans de Goede63fb5482014-11-14 09:34:31 +0100248#else
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100249 return true;
Hans de Goede63fb5482014-11-14 09:34:31 +0100250#endif
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100251}
252
253#ifdef CONFIG_ARMV7_NONSEC
254bool armv7_boot_nonsec(void)
255{
Simon Glass64b723f2017-08-03 12:22:12 -0600256 char *s = env_get("bootm_boot_mode");
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100257 bool nonsec = armv7_boot_nonsec_default();
Hans de Goede63fb5482014-11-14 09:34:31 +0100258
259 if (s && !strcmp(s, "sec"))
260 nonsec = false;
261
262 if (s && !strcmp(s, "nonsec"))
263 nonsec = true;
264
265 return nonsec;
266}
267#endif
268
Alison Wang73818d52016-11-10 10:49:03 +0800269#ifdef CONFIG_ARM64
Alison Wang876c7e12016-11-10 10:49:04 +0800270__weak void update_os_arch_secondary_cores(uint8_t os_arch)
271{
272}
273
Tom Rini3a6d4532021-09-03 10:40:28 -0400274#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wang73818d52016-11-10 10:49:03 +0800275static void switch_to_el1(void)
276{
277 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
278 (images.os.arch == IH_ARCH_ARM))
279 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800280 (u64)images.ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800281 (u64)images.ep,
282 ES_TO_AARCH32);
283 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800284 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800285 images.ep,
286 ES_TO_AARCH64);
287}
288#endif
Tom Rini3a6d4532021-09-03 10:40:28 -0400289#endif
Alison Wang73818d52016-11-10 10:49:03 +0800290
Simon Schwarz6a597b92012-03-15 04:01:45 +0000291/* Subcommand: GO */
Simon Glassdf00afa2022-09-06 20:26:50 -0600292static void boot_jump_linux(struct bootm_headers *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000293{
David Feng85fd5f12013-12-14 11:47:35 +0800294#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400295 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
296 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800297 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
298
Tom Rini67d604e2014-08-14 06:42:35 -0400299 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
300 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800301
302 debug("## Transferring control to Linux (at address %lx)...\n",
303 (ulong) kernel_entry);
304 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
305
306 announce_and_cleanup(fake);
307
Marc Zyngier915a09e2014-07-12 14:23:58 +0100308 if (!fake) {
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800309#ifdef CONFIG_ARMV8_PSCI
310 armv8_setup_psci();
311#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100312 do_nonsec_virt_switch();
Alison Wang73818d52016-11-10 10:49:03 +0800313
Alison Wang876c7e12016-11-10 10:49:04 +0800314 update_os_arch_secondary_cores(images->os.arch);
315
Peter Hoyesa6732662021-08-19 16:53:13 +0100316#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Tom Rini3a6d4532021-09-03 10:40:28 -0400317 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
318 (u64)switch_to_el1, ES_TO_AARCH64);
319#else
320 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
321 (images->os.arch == IH_ARCH_ARM))
322 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
323 (u64)images->ft_addr, 0,
324 (u64)images->ep,
325 ES_TO_AARCH32);
326 else
Peter Hoyesa6732662021-08-19 16:53:13 +0100327 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Tom Rini3a6d4532021-09-03 10:40:28 -0400328 images->ep,
329 ES_TO_AARCH64);
330#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100331 }
David Feng85fd5f12013-12-14 11:47:35 +0800332#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000333 unsigned long machid = gd->bd->bi_arch_number;
334 char *s;
335 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000336 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700337 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000338
339 kernel_entry = (void (*)(int, int, uint))images->ep;
Patrice Chotardffb3c0b2017-04-25 11:07:46 +0200340#ifdef CONFIG_CPU_V7M
341 ulong addr = (ulong)kernel_entry | 1;
342 kernel_entry = (void *)addr;
343#endif
Simon Glass64b723f2017-08-03 12:22:12 -0600344 s = env_get("machid");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000345 if (s) {
Peng Fanc4485e72015-11-24 16:54:20 +0800346 if (strict_strtoul(s, 16, &machid) < 0) {
347 debug("strict_strtoul failed!\n");
348 return;
349 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000350 printf("Using machid 0x%lx from environment\n", machid);
351 }
352
353 debug("## Transferring control to Linux (at address %08lx)" \
354 "...\n", (ulong) kernel_entry);
355 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700356 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000357
Simon Glass85c057e2021-09-25 19:43:21 -0600358 if (CONFIG_IS_ENABLED(OF_LIBFDT) && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000359 r2 = (unsigned long)images->ft_addr;
360 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000361 r2 = gd->bd->bi_boot_params;
362
Marc Zyngier915a09e2014-07-12 14:23:58 +0100363 if (!fake) {
Jan Kiszkaac31b5a2015-04-21 07:18:24 +0200364#ifdef CONFIG_ARMV7_NONSEC
Ian Campbell68bc8f52014-12-21 09:45:11 +0000365 if (armv7_boot_nonsec()) {
Hans de Goede63fb5482014-11-14 09:34:31 +0100366 armv7_init_nonsec();
367 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
368 0, machid, r2);
369 } else
Marc Zyngier855ca662014-07-12 14:24:03 +0100370#endif
Hans de Goede63fb5482014-11-14 09:34:31 +0100371 kernel_entry(0, machid, r2);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100372 }
David Feng85fd5f12013-12-14 11:47:35 +0800373#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000374}
375
376/* Main Entry point for arm bootm implementation
377 *
378 * Modeled after the powerpc implementation
379 * DIFFERENCE: Instead of calling prep and go at the end
380 * they are called if subcommand is equal 0.
381 */
Simon Glass0726d9d2023-12-15 20:14:13 -0700382int do_bootm_linux(int flag, struct bootm_info *bmi)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000383{
Simon Glass0726d9d2023-12-15 20:14:13 -0700384 struct bootm_headers *images = bmi->images;
385
Simon Schwarz6a597b92012-03-15 04:01:45 +0000386 /* No need for those on ARM */
387 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
388 return -1;
389
390 if (flag & BOOTM_STATE_OS_PREP) {
391 boot_prep_linux(images);
392 return 0;
393 }
394
Simon Glass3c26c582013-06-19 21:15:10 -0700395 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
396 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000397 return 0;
398 }
399
400 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700401 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000402 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600403}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000404
Miao Yan1bd54562013-11-28 17:51:38 +0800405#if defined(CONFIG_BOOTM_VXWORKS)
Simon Glassdf00afa2022-09-06 20:26:50 -0600406void boot_prep_vxworks(struct bootm_headers *images)
Miao Yan1bd54562013-11-28 17:51:38 +0800407{
408#if defined(CONFIG_OF_LIBFDT)
409 int off;
410
411 if (images->ft_addr) {
412 off = fdt_path_offset(images->ft_addr, "/memory");
Hannes Schmelzer64fabcc2018-05-04 10:49:11 +0200413 if (off > 0) {
Ma Haijun62358242014-07-12 14:24:06 +0100414 if (arch_fixup_fdt(images->ft_addr))
Miao Yan1bd54562013-11-28 17:51:38 +0800415 puts("## WARNING: fixup memory failed!\n");
416 }
417 }
418#endif
419 cleanup_before_linux();
420}
Simon Glassdf00afa2022-09-06 20:26:50 -0600421
422void boot_jump_vxworks(struct bootm_headers *images)
Miao Yan1bd54562013-11-28 17:51:38 +0800423{
Vasyl Vavrychuk70b551c2018-04-10 12:36:36 +0300424#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
425 armv8_setup_psci();
426 smp_kick_all_cpus();
427#endif
428
Miao Yan1bd54562013-11-28 17:51:38 +0800429 /* ARM VxWorks requires device tree physical address to be passed */
430 ((void (*)(void *))images->ep)(images->ft_addr);
431}
432#endif