blob: a59a5e6c0ea0ea3e65e139495495adffdaebb2c6 [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 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.
76 */
Simon Glass8ae87442021-01-24 14:32:47 -070077 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL | DM_REMOVE_NON_VITAL);
78
79 /* Remove all active vital devices next */
Stefan Roese8ab5a1b2017-03-20 12:51:50 +010080 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
81
Simon Schwarz6a597b92012-03-15 04:01:45 +000082 cleanup_before_linux();
83}
wdenkc6097192002-11-03 00:24:07 +000084
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090085static void setup_start_tag (struct bd_info *bd)
wdenkc6097192002-11-03 00:24:07 +000086{
Simon Schwarz6a597b92012-03-15 04:01:45 +000087 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +000088
wdenk86765902003-12-06 23:55:10 +000089 params->hdr.tag = ATAG_CORE;
90 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +000091
wdenk86765902003-12-06 23:55:10 +000092 params->u.core.flags = 0;
93 params->u.core.pagesize = 0;
94 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +000095
wdenk86765902003-12-06 23:55:10 +000096 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +000097}
wdenkc6097192002-11-03 00:24:07 +000098
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090099static void setup_memory_tags(struct bd_info *bd)
wdenkc6097192002-11-03 00:24:07 +0000100{
wdenk86765902003-12-06 23:55:10 +0000101 int i;
wdenkc6097192002-11-03 00:24:07 +0000102
wdenk86765902003-12-06 23:55:10 +0000103 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
104 params->hdr.tag = ATAG_MEM;
105 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000106
wdenk86765902003-12-06 23:55:10 +0000107 params->u.mem.start = bd->bi_dram[i].start;
108 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000109
wdenk86765902003-12-06 23:55:10 +0000110 params = tag_next (params);
111 }
wdenkc6097192002-11-03 00:24:07 +0000112}
wdenkc6097192002-11-03 00:24:07 +0000113
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900114static void setup_commandline_tag(struct bd_info *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000115{
wdenk86765902003-12-06 23:55:10 +0000116 char *p;
wdenkc6097192002-11-03 00:24:07 +0000117
wdenkf16b5162004-03-23 21:43:07 +0000118 if (!commandline)
119 return;
120
wdenk86765902003-12-06 23:55:10 +0000121 /* eat leading white space */
122 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000123
wdenk86765902003-12-06 23:55:10 +0000124 /* skip non-existent command lines so the kernel will still
125 * use its default command line.
126 */
127 if (*p == '\0')
128 return;
wdenkc6097192002-11-03 00:24:07 +0000129
wdenk86765902003-12-06 23:55:10 +0000130 params->hdr.tag = ATAG_CMDLINE;
131 params->hdr.size =
132 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000133
wdenk86765902003-12-06 23:55:10 +0000134 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000135
wdenk86765902003-12-06 23:55:10 +0000136 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000137}
wdenkc6097192002-11-03 00:24:07 +0000138
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900139static void setup_initrd_tag(struct bd_info *bd, ulong initrd_start,
140 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
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900179static void setup_end_tag(struct bd_info *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
Marc Zyngier855ca662014-07-12 14:24:03 +0100187#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200188static void do_nonsec_virt_switch(void)
189{
David Feng85fd5f12013-12-14 11:47:35 +0800190 smp_kick_all_cpus();
York Sun1ce575f2015-01-06 13:18:42 -0800191 dcache_disable(); /* flush cache before swtiching to EL2 */
Andre Przywarafe7d9252013-09-19 18:06:43 +0200192}
Marc Zyngier855ca662014-07-12 14:24:03 +0100193#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200194
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530195__weak void board_prep_linux(bootm_headers_t *images) { }
196
Simon Schwarz6a597b92012-03-15 04:01:45 +0000197/* Subcommand: PREP */
198static void boot_prep_linux(bootm_headers_t *images)
199{
Simon Glass64b723f2017-08-03 12:22:12 -0600200 char *commandline = env_get("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000201
Simon Glass85c057e2021-09-25 19:43:21 -0600202 if (CONFIG_IS_ENABLED(OF_LIBFDT) && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000203#ifdef CONFIG_OF_LIBFDT
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 Schwarz6a597b92012-03-15 04:01:45 +0000208#endif
Simon Glass50ad2212013-05-08 08:06:02 +0000209 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000210 debug("using: ATAGS\n");
211 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000212 if (BOOTM_ENABLE_SERIAL_TAG)
213 setup_serial_tag(&params);
214 if (BOOTM_ENABLE_CMDLINE_TAG)
215 setup_commandline_tag(gd->bd, commandline);
216 if (BOOTM_ENABLE_REVISION_TAG)
217 setup_revision_tag(&params);
218 if (BOOTM_ENABLE_MEMORY_TAGS)
219 setup_memory_tags(gd->bd);
220 if (BOOTM_ENABLE_INITRD_TAG) {
Jeffy Chen113094e2016-01-14 10:19:36 +0800221 /*
222 * In boot_ramdisk_high(), it may relocate ramdisk to
223 * a specified location. And set images->initrd_start &
224 * images->initrd_end to relocated ramdisk's start/end
225 * addresses. So use them instead of images->rd_start &
226 * images->rd_end when possible.
227 */
228 if (images->initrd_start && images->initrd_end) {
229 setup_initrd_tag(gd->bd, images->initrd_start,
230 images->initrd_end);
231 } else if (images->rd_start && images->rd_end) {
Simon Glass50ad2212013-05-08 08:06:02 +0000232 setup_initrd_tag(gd->bd, images->rd_start,
233 images->rd_end);
234 }
235 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000236 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000237 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000238 } else {
Heinrich Schuchardte3550d52021-02-17 12:55:54 +0100239 panic("FDT and ATAGS support not compiled in\n");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000240 }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530241
242 board_prep_linux(images);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000243}
244
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100245__weak bool armv7_boot_nonsec_default(void)
Hans de Goede63fb5482014-11-14 09:34:31 +0100246{
Hans de Goede63fb5482014-11-14 09:34:31 +0100247#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100248 return false;
Hans de Goede63fb5482014-11-14 09:34:31 +0100249#else
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100250 return true;
Hans de Goede63fb5482014-11-14 09:34:31 +0100251#endif
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100252}
253
254#ifdef CONFIG_ARMV7_NONSEC
255bool armv7_boot_nonsec(void)
256{
Simon Glass64b723f2017-08-03 12:22:12 -0600257 char *s = env_get("bootm_boot_mode");
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100258 bool nonsec = armv7_boot_nonsec_default();
Hans de Goede63fb5482014-11-14 09:34:31 +0100259
260 if (s && !strcmp(s, "sec"))
261 nonsec = false;
262
263 if (s && !strcmp(s, "nonsec"))
264 nonsec = true;
265
266 return nonsec;
267}
268#endif
269
Alison Wang73818d52016-11-10 10:49:03 +0800270#ifdef CONFIG_ARM64
Alison Wang876c7e12016-11-10 10:49:04 +0800271__weak void update_os_arch_secondary_cores(uint8_t os_arch)
272{
273}
274
Tom Rini3a6d4532021-09-03 10:40:28 -0400275#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wang73818d52016-11-10 10:49:03 +0800276static void switch_to_el1(void)
277{
278 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
279 (images.os.arch == IH_ARCH_ARM))
280 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800281 (u64)images.ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800282 (u64)images.ep,
283 ES_TO_AARCH32);
284 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800285 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800286 images.ep,
287 ES_TO_AARCH64);
288}
289#endif
Tom Rini3a6d4532021-09-03 10:40:28 -0400290#endif
Alison Wang73818d52016-11-10 10:49:03 +0800291
Simon Schwarz6a597b92012-03-15 04:01:45 +0000292/* Subcommand: GO */
Simon Glass3c26c582013-06-19 21:15:10 -0700293static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000294{
David Feng85fd5f12013-12-14 11:47:35 +0800295#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400296 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
297 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800298 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
299
Tom Rini67d604e2014-08-14 06:42:35 -0400300 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
301 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800302
303 debug("## Transferring control to Linux (at address %lx)...\n",
304 (ulong) kernel_entry);
305 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
306
307 announce_and_cleanup(fake);
308
Marc Zyngier915a09e2014-07-12 14:23:58 +0100309 if (!fake) {
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800310#ifdef CONFIG_ARMV8_PSCI
311 armv8_setup_psci();
312#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100313 do_nonsec_virt_switch();
Alison Wang73818d52016-11-10 10:49:03 +0800314
Alison Wang876c7e12016-11-10 10:49:04 +0800315 update_os_arch_secondary_cores(images->os.arch);
316
Peter Hoyesa6732662021-08-19 16:53:13 +0100317#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Tom Rini3a6d4532021-09-03 10:40:28 -0400318 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
319 (u64)switch_to_el1, ES_TO_AARCH64);
320#else
321 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
322 (images->os.arch == IH_ARCH_ARM))
323 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
324 (u64)images->ft_addr, 0,
325 (u64)images->ep,
326 ES_TO_AARCH32);
327 else
Peter Hoyesa6732662021-08-19 16:53:13 +0100328 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Tom Rini3a6d4532021-09-03 10:40:28 -0400329 images->ep,
330 ES_TO_AARCH64);
331#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100332 }
David Feng85fd5f12013-12-14 11:47:35 +0800333#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000334 unsigned long machid = gd->bd->bi_arch_number;
335 char *s;
336 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000337 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700338 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000339
340 kernel_entry = (void (*)(int, int, uint))images->ep;
Patrice Chotardffb3c0b2017-04-25 11:07:46 +0200341#ifdef CONFIG_CPU_V7M
342 ulong addr = (ulong)kernel_entry | 1;
343 kernel_entry = (void *)addr;
344#endif
Simon Glass64b723f2017-08-03 12:22:12 -0600345 s = env_get("machid");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000346 if (s) {
Peng Fanc4485e72015-11-24 16:54:20 +0800347 if (strict_strtoul(s, 16, &machid) < 0) {
348 debug("strict_strtoul failed!\n");
349 return;
350 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000351 printf("Using machid 0x%lx from environment\n", machid);
352 }
353
354 debug("## Transferring control to Linux (at address %08lx)" \
355 "...\n", (ulong) kernel_entry);
356 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700357 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000358
Simon Glass85c057e2021-09-25 19:43:21 -0600359 if (CONFIG_IS_ENABLED(OF_LIBFDT) && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000360 r2 = (unsigned long)images->ft_addr;
361 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000362 r2 = gd->bd->bi_boot_params;
363
Marc Zyngier915a09e2014-07-12 14:23:58 +0100364 if (!fake) {
Jan Kiszkaac31b5a2015-04-21 07:18:24 +0200365#ifdef CONFIG_ARMV7_NONSEC
Ian Campbell68bc8f52014-12-21 09:45:11 +0000366 if (armv7_boot_nonsec()) {
Hans de Goede63fb5482014-11-14 09:34:31 +0100367 armv7_init_nonsec();
368 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
369 0, machid, r2);
370 } else
Marc Zyngier855ca662014-07-12 14:24:03 +0100371#endif
Hans de Goede63fb5482014-11-14 09:34:31 +0100372 kernel_entry(0, machid, r2);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100373 }
David Feng85fd5f12013-12-14 11:47:35 +0800374#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000375}
376
377/* Main Entry point for arm bootm implementation
378 *
379 * Modeled after the powerpc implementation
380 * DIFFERENCE: Instead of calling prep and go at the end
381 * they are called if subcommand is equal 0.
382 */
Simon Glassed38aef2020-05-10 11:40:03 -0600383int do_bootm_linux(int flag, int argc, char *const argv[],
Eric Nelsonb7c236b2014-09-30 15:40:01 -0700384 bootm_headers_t *images)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000385{
386 /* 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)
406void boot_prep_vxworks(bootm_headers_t *images)
407{
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}
421void boot_jump_vxworks(bootm_headers_t *images)
422{
Vasyl Vavrychuk70b551c2018-04-10 12:36:36 +0300423#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
424 armv8_setup_psci();
425 smp_kick_all_cpus();
426#endif
427
Miao Yan1bd54562013-11-28 17:51:38 +0800428 /* ARM VxWorks requires device tree physical address to be passed */
429 ((void (*)(void *))images->ep)(images->ft_addr);
430}
431#endif