blob: f4b5ca6de004dec95d8b2924984bac040e33da6a [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;
Patrice Chotard49bd67e2020-02-13 19:29:50 +010078 if (bank_end > gd->ram_top)
79 bank_end = gd->ram_top - 1;
80
Simon Goldschmidtfeaab8e2019-01-14 22:38:23 +010081 lmb_reserve(lmb, sp, bank_end - sp + 1);
Stephen Warren1a0b8052018-01-05 13:04:54 -070082 break;
83 }
John Rigbyab51f1e2010-10-13 13:57:36 -060084}
85
Alexander Graf2ebeb442016-11-17 01:02:57 +010086__weak void board_quiesce_devices(void)
87{
88}
89
Simon Glass3c26c582013-06-19 21:15:10 -070090/**
91 * announce_and_cleanup() - Print message and prepare for kernel boot
92 *
93 * @fake: non-zero to do everything except actually boot
94 */
95static void announce_and_cleanup(int fake)
John Rigbyab51f1e2010-10-13 13:57:36 -060096{
Simon Schwarz6a597b92012-03-15 04:01:45 +000097 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Simon Glass0fa36a42012-09-28 08:56:37 +000098#ifdef CONFIG_BOOTSTAGE_FDT
Mela Custodio5625c8b2014-02-20 00:16:56 +090099 bootstage_fdt_add_report();
Simon Glass0fa36a42012-09-28 08:56:37 +0000100#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000101#ifdef CONFIG_BOOTSTAGE_REPORT
102 bootstage_report();
103#endif
Wolfgang Denk20ec3672008-09-08 23:26:22 +0200104
Simon Schwarz6a597b92012-03-15 04:01:45 +0000105#ifdef CONFIG_USB_DEVICE
106 udc_disconnect();
John Rigbyab51f1e2010-10-13 13:57:36 -0600107#endif
Alexander Graf2ebeb442016-11-17 01:02:57 +0100108
109 board_quiesce_devices();
110
Keerthy79a7cb12019-02-20 18:17:22 +0530111 printf("\nStarting kernel ...%s\n\n", fake ?
112 "(fake run for tracing)" : "");
Stefan Roese8ab5a1b2017-03-20 12:51:50 +0100113 /*
114 * Call remove function of all devices with a removal flag set.
115 * This may be useful for last-stage operations, like cancelling
116 * of DMA operation or releasing device internal buffers.
117 */
118 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
119
Simon Schwarz6a597b92012-03-15 04:01:45 +0000120 cleanup_before_linux();
121}
wdenkc6097192002-11-03 00:24:07 +0000122
wdenk86765902003-12-06 23:55:10 +0000123static void setup_start_tag (bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000124{
Simon Schwarz6a597b92012-03-15 04:01:45 +0000125 params = (struct tag *)bd->bi_boot_params;
wdenkc6097192002-11-03 00:24:07 +0000126
wdenk86765902003-12-06 23:55:10 +0000127 params->hdr.tag = ATAG_CORE;
128 params->hdr.size = tag_size (tag_core);
wdenkc6097192002-11-03 00:24:07 +0000129
wdenk86765902003-12-06 23:55:10 +0000130 params->u.core.flags = 0;
131 params->u.core.pagesize = 0;
132 params->u.core.rootdev = 0;
wdenkc6097192002-11-03 00:24:07 +0000133
wdenk86765902003-12-06 23:55:10 +0000134 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000135}
wdenkc6097192002-11-03 00:24:07 +0000136
Simon Schwarz6a597b92012-03-15 04:01:45 +0000137static void setup_memory_tags(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000138{
wdenk86765902003-12-06 23:55:10 +0000139 int i;
wdenkc6097192002-11-03 00:24:07 +0000140
wdenk86765902003-12-06 23:55:10 +0000141 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
142 params->hdr.tag = ATAG_MEM;
143 params->hdr.size = tag_size (tag_mem32);
wdenkc6097192002-11-03 00:24:07 +0000144
wdenk86765902003-12-06 23:55:10 +0000145 params->u.mem.start = bd->bi_dram[i].start;
146 params->u.mem.size = bd->bi_dram[i].size;
wdenkc6097192002-11-03 00:24:07 +0000147
wdenk86765902003-12-06 23:55:10 +0000148 params = tag_next (params);
149 }
wdenkc6097192002-11-03 00:24:07 +0000150}
wdenkc6097192002-11-03 00:24:07 +0000151
Simon Schwarz6a597b92012-03-15 04:01:45 +0000152static void setup_commandline_tag(bd_t *bd, char *commandline)
wdenkc6097192002-11-03 00:24:07 +0000153{
wdenk86765902003-12-06 23:55:10 +0000154 char *p;
wdenkc6097192002-11-03 00:24:07 +0000155
wdenkf16b5162004-03-23 21:43:07 +0000156 if (!commandline)
157 return;
158
wdenk86765902003-12-06 23:55:10 +0000159 /* eat leading white space */
160 for (p = commandline; *p == ' '; p++);
wdenkc6097192002-11-03 00:24:07 +0000161
wdenk86765902003-12-06 23:55:10 +0000162 /* skip non-existent command lines so the kernel will still
163 * use its default command line.
164 */
165 if (*p == '\0')
166 return;
wdenkc6097192002-11-03 00:24:07 +0000167
wdenk86765902003-12-06 23:55:10 +0000168 params->hdr.tag = ATAG_CMDLINE;
169 params->hdr.size =
170 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
wdenkc6097192002-11-03 00:24:07 +0000171
wdenk86765902003-12-06 23:55:10 +0000172 strcpy (params->u.cmdline.cmdline, p);
wdenkc6097192002-11-03 00:24:07 +0000173
wdenk86765902003-12-06 23:55:10 +0000174 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000175}
wdenkc6097192002-11-03 00:24:07 +0000176
Simon Schwarz6a597b92012-03-15 04:01:45 +0000177static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
wdenkc6097192002-11-03 00:24:07 +0000178{
wdenk86765902003-12-06 23:55:10 +0000179 /* an ATAG_INITRD node tells the kernel where the compressed
180 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
181 */
wdenk19c8fb72004-04-18 22:26:17 +0000182 params->hdr.tag = ATAG_INITRD2;
wdenk86765902003-12-06 23:55:10 +0000183 params->hdr.size = tag_size (tag_initrd);
wdenkc6097192002-11-03 00:24:07 +0000184
wdenk86765902003-12-06 23:55:10 +0000185 params->u.initrd.start = initrd_start;
186 params->u.initrd.size = initrd_end - initrd_start;
wdenkc6097192002-11-03 00:24:07 +0000187
wdenk86765902003-12-06 23:55:10 +0000188 params = tag_next (params);
wdenkc6097192002-11-03 00:24:07 +0000189}
wdenkc6097192002-11-03 00:24:07 +0000190
Simon Glass50ad2212013-05-08 08:06:02 +0000191static void setup_serial_tag(struct tag **tmp)
wdenka21ad7b2005-05-19 22:39:42 +0000192{
193 struct tag *params = *tmp;
194 struct tag_serialnr serialnr;
wdenka21ad7b2005-05-19 22:39:42 +0000195
196 get_board_serial(&serialnr);
197 params->hdr.tag = ATAG_SERIAL;
198 params->hdr.size = tag_size (tag_serialnr);
199 params->u.serialnr.low = serialnr.low;
200 params->u.serialnr.high= serialnr.high;
201 params = tag_next (params);
202 *tmp = params;
203}
wdenka21ad7b2005-05-19 22:39:42 +0000204
Simon Glass50ad2212013-05-08 08:06:02 +0000205static void setup_revision_tag(struct tag **in_params)
wdenkcb99da52005-01-12 00:15:14 +0000206{
207 u32 rev = 0;
wdenkcb99da52005-01-12 00:15:14 +0000208
209 rev = get_board_rev();
wdenkcb99da52005-01-12 00:15:14 +0000210 params->hdr.tag = ATAG_REVISION;
211 params->hdr.size = tag_size (tag_revision);
212 params->u.revision.rev = rev;
213 params = tag_next (params);
214}
wdenkcb99da52005-01-12 00:15:14 +0000215
Simon Schwarz6a597b92012-03-15 04:01:45 +0000216static void setup_end_tag(bd_t *bd)
wdenkc6097192002-11-03 00:24:07 +0000217{
wdenk86765902003-12-06 23:55:10 +0000218 params->hdr.tag = ATAG_NONE;
219 params->hdr.size = 0;
wdenkc6097192002-11-03 00:24:07 +0000220}
Simon Schwarz6a597b92012-03-15 04:01:45 +0000221
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000222__weak void setup_board_tags(struct tag **in_params) {}
223
Marc Zyngier855ca662014-07-12 14:24:03 +0100224#ifdef CONFIG_ARM64
Andre Przywarafe7d9252013-09-19 18:06:43 +0200225static void do_nonsec_virt_switch(void)
226{
David Feng85fd5f12013-12-14 11:47:35 +0800227 smp_kick_all_cpus();
York Sun1ce575f2015-01-06 13:18:42 -0800228 dcache_disable(); /* flush cache before swtiching to EL2 */
Andre Przywarafe7d9252013-09-19 18:06:43 +0200229}
Marc Zyngier855ca662014-07-12 14:24:03 +0100230#endif
Andre Przywarafe7d9252013-09-19 18:06:43 +0200231
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530232__weak void board_prep_linux(bootm_headers_t *images) { }
233
Simon Schwarz6a597b92012-03-15 04:01:45 +0000234/* Subcommand: PREP */
235static void boot_prep_linux(bootm_headers_t *images)
236{
Simon Glass64b723f2017-08-03 12:22:12 -0600237 char *commandline = env_get("bootargs");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000238
Simon Glass50ad2212013-05-08 08:06:02 +0000239 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000240#ifdef CONFIG_OF_LIBFDT
Simon Schwarz6a597b92012-03-15 04:01:45 +0000241 debug("using: FDT\n");
Simon Glass653909f2013-05-08 08:06:03 +0000242 if (image_setup_linux(images)) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000243 printf("FDT creation failed! hanging...");
244 hang();
245 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000246#endif
Simon Glass50ad2212013-05-08 08:06:02 +0000247 } else if (BOOTM_ENABLE_TAGS) {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000248 debug("using: ATAGS\n");
249 setup_start_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000250 if (BOOTM_ENABLE_SERIAL_TAG)
251 setup_serial_tag(&params);
252 if (BOOTM_ENABLE_CMDLINE_TAG)
253 setup_commandline_tag(gd->bd, commandline);
254 if (BOOTM_ENABLE_REVISION_TAG)
255 setup_revision_tag(&params);
256 if (BOOTM_ENABLE_MEMORY_TAGS)
257 setup_memory_tags(gd->bd);
258 if (BOOTM_ENABLE_INITRD_TAG) {
Jeffy Chen113094e2016-01-14 10:19:36 +0800259 /*
260 * In boot_ramdisk_high(), it may relocate ramdisk to
261 * a specified location. And set images->initrd_start &
262 * images->initrd_end to relocated ramdisk's start/end
263 * addresses. So use them instead of images->rd_start &
264 * images->rd_end when possible.
265 */
266 if (images->initrd_start && images->initrd_end) {
267 setup_initrd_tag(gd->bd, images->initrd_start,
268 images->initrd_end);
269 } else if (images->rd_start && images->rd_end) {
Simon Glass50ad2212013-05-08 08:06:02 +0000270 setup_initrd_tag(gd->bd, images->rd_start,
271 images->rd_end);
272 }
273 }
Pali Rohár5ebe4f12012-10-19 02:00:04 +0000274 setup_board_tags(&params);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000275 setup_end_tag(gd->bd);
Simon Glass50ad2212013-05-08 08:06:02 +0000276 } else {
Simon Schwarz6a597b92012-03-15 04:01:45 +0000277 printf("FDT and ATAGS support not compiled in - hanging\n");
278 hang();
Simon Schwarz6a597b92012-03-15 04:01:45 +0000279 }
Lokesh Vutlab1f1b232019-10-07 13:52:15 +0530280
281 board_prep_linux(images);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000282}
283
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100284__weak bool armv7_boot_nonsec_default(void)
Hans de Goede63fb5482014-11-14 09:34:31 +0100285{
Hans de Goede63fb5482014-11-14 09:34:31 +0100286#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100287 return false;
Hans de Goede63fb5482014-11-14 09:34:31 +0100288#else
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100289 return true;
Hans de Goede63fb5482014-11-14 09:34:31 +0100290#endif
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100291}
292
293#ifdef CONFIG_ARMV7_NONSEC
294bool armv7_boot_nonsec(void)
295{
Simon Glass64b723f2017-08-03 12:22:12 -0600296 char *s = env_get("bootm_boot_mode");
Jon Medhurst \(Tixy\)413ca3d2016-06-23 13:37:32 +0100297 bool nonsec = armv7_boot_nonsec_default();
Hans de Goede63fb5482014-11-14 09:34:31 +0100298
299 if (s && !strcmp(s, "sec"))
300 nonsec = false;
301
302 if (s && !strcmp(s, "nonsec"))
303 nonsec = true;
304
305 return nonsec;
306}
307#endif
308
Alison Wang73818d52016-11-10 10:49:03 +0800309#ifdef CONFIG_ARM64
Alison Wang876c7e12016-11-10 10:49:04 +0800310__weak void update_os_arch_secondary_cores(uint8_t os_arch)
311{
312}
313
Alison Wang73818d52016-11-10 10:49:03 +0800314#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
315static void switch_to_el1(void)
316{
317 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
318 (images.os.arch == IH_ARCH_ARM))
319 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800320 (u64)images.ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800321 (u64)images.ep,
322 ES_TO_AARCH32);
323 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800324 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800325 images.ep,
326 ES_TO_AARCH64);
327}
328#endif
329#endif
330
Simon Schwarz6a597b92012-03-15 04:01:45 +0000331/* Subcommand: GO */
Simon Glass3c26c582013-06-19 21:15:10 -0700332static void boot_jump_linux(bootm_headers_t *images, int flag)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000333{
David Feng85fd5f12013-12-14 11:47:35 +0800334#ifdef CONFIG_ARM64
Tom Rini67d604e2014-08-14 06:42:35 -0400335 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
336 void *res2);
David Feng85fd5f12013-12-14 11:47:35 +0800337 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
338
Tom Rini67d604e2014-08-14 06:42:35 -0400339 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
340 void *res2))images->ep;
David Feng85fd5f12013-12-14 11:47:35 +0800341
342 debug("## Transferring control to Linux (at address %lx)...\n",
343 (ulong) kernel_entry);
344 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
345
346 announce_and_cleanup(fake);
347
Marc Zyngier915a09e2014-07-12 14:23:58 +0100348 if (!fake) {
macro.wave.z@gmail.com05725ed2016-12-08 11:58:25 +0800349#ifdef CONFIG_ARMV8_PSCI
350 armv8_setup_psci();
351#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100352 do_nonsec_virt_switch();
Alison Wang73818d52016-11-10 10:49:03 +0800353
Alison Wang876c7e12016-11-10 10:49:04 +0800354 update_os_arch_secondary_cores(images->os.arch);
355
Alison Wang73818d52016-11-10 10:49:03 +0800356#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wangeb2088d2017-01-17 09:39:17 +0800357 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800358 (u64)switch_to_el1, ES_TO_AARCH64);
359#else
360 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
361 (images->os.arch == IH_ARCH_ARM))
362 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
Alison Wangeb2088d2017-01-17 09:39:17 +0800363 (u64)images->ft_addr, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800364 (u64)images->ep,
365 ES_TO_AARCH32);
366 else
Alison Wangeb2088d2017-01-17 09:39:17 +0800367 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
Alison Wang73818d52016-11-10 10:49:03 +0800368 images->ep,
369 ES_TO_AARCH64);
370#endif
Marc Zyngier915a09e2014-07-12 14:23:58 +0100371 }
David Feng85fd5f12013-12-14 11:47:35 +0800372#else
Simon Schwarz6a597b92012-03-15 04:01:45 +0000373 unsigned long machid = gd->bd->bi_arch_number;
374 char *s;
375 void (*kernel_entry)(int zero, int arch, uint params);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000376 unsigned long r2;
Simon Glass3c26c582013-06-19 21:15:10 -0700377 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000378
379 kernel_entry = (void (*)(int, int, uint))images->ep;
Patrice Chotardffb3c0b2017-04-25 11:07:46 +0200380#ifdef CONFIG_CPU_V7M
381 ulong addr = (ulong)kernel_entry | 1;
382 kernel_entry = (void *)addr;
383#endif
Simon Glass64b723f2017-08-03 12:22:12 -0600384 s = env_get("machid");
Simon Schwarz6a597b92012-03-15 04:01:45 +0000385 if (s) {
Peng Fanc4485e72015-11-24 16:54:20 +0800386 if (strict_strtoul(s, 16, &machid) < 0) {
387 debug("strict_strtoul failed!\n");
388 return;
389 }
Simon Schwarz6a597b92012-03-15 04:01:45 +0000390 printf("Using machid 0x%lx from environment\n", machid);
391 }
392
393 debug("## Transferring control to Linux (at address %08lx)" \
394 "...\n", (ulong) kernel_entry);
395 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Simon Glass3c26c582013-06-19 21:15:10 -0700396 announce_and_cleanup(fake);
Stephen Warrenc570fba2012-04-19 11:34:00 +0000397
Simon Glass50ad2212013-05-08 08:06:02 +0000398 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
Stephen Warrenc570fba2012-04-19 11:34:00 +0000399 r2 = (unsigned long)images->ft_addr;
400 else
Stephen Warrenc570fba2012-04-19 11:34:00 +0000401 r2 = gd->bd->bi_boot_params;
402
Marc Zyngier915a09e2014-07-12 14:23:58 +0100403 if (!fake) {
Jan Kiszkaac31b5a2015-04-21 07:18:24 +0200404#ifdef CONFIG_ARMV7_NONSEC
Ian Campbell68bc8f52014-12-21 09:45:11 +0000405 if (armv7_boot_nonsec()) {
Hans de Goede63fb5482014-11-14 09:34:31 +0100406 armv7_init_nonsec();
407 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
408 0, machid, r2);
409 } else
Marc Zyngier855ca662014-07-12 14:24:03 +0100410#endif
Hans de Goede63fb5482014-11-14 09:34:31 +0100411 kernel_entry(0, machid, r2);
Marc Zyngier915a09e2014-07-12 14:23:58 +0100412 }
David Feng85fd5f12013-12-14 11:47:35 +0800413#endif
Simon Schwarz6a597b92012-03-15 04:01:45 +0000414}
415
416/* Main Entry point for arm bootm implementation
417 *
418 * Modeled after the powerpc implementation
419 * DIFFERENCE: Instead of calling prep and go at the end
420 * they are called if subcommand is equal 0.
421 */
Eric Nelsonb7c236b2014-09-30 15:40:01 -0700422int do_bootm_linux(int flag, int argc, char * const argv[],
423 bootm_headers_t *images)
Simon Schwarz6a597b92012-03-15 04:01:45 +0000424{
425 /* No need for those on ARM */
426 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
427 return -1;
428
429 if (flag & BOOTM_STATE_OS_PREP) {
430 boot_prep_linux(images);
431 return 0;
432 }
433
Simon Glass3c26c582013-06-19 21:15:10 -0700434 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
435 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000436 return 0;
437 }
438
439 boot_prep_linux(images);
Simon Glass3c26c582013-06-19 21:15:10 -0700440 boot_jump_linux(images, flag);
Simon Schwarz6a597b92012-03-15 04:01:45 +0000441 return 0;
John Rigbyab51f1e2010-10-13 13:57:36 -0600442}
Marek Vasutcf41a9b2012-03-14 21:52:45 +0000443
Miao Yan1bd54562013-11-28 17:51:38 +0800444#if defined(CONFIG_BOOTM_VXWORKS)
445void boot_prep_vxworks(bootm_headers_t *images)
446{
447#if defined(CONFIG_OF_LIBFDT)
448 int off;
449
450 if (images->ft_addr) {
451 off = fdt_path_offset(images->ft_addr, "/memory");
Hannes Schmelzer64fabcc2018-05-04 10:49:11 +0200452 if (off > 0) {
Ma Haijun62358242014-07-12 14:24:06 +0100453 if (arch_fixup_fdt(images->ft_addr))
Miao Yan1bd54562013-11-28 17:51:38 +0800454 puts("## WARNING: fixup memory failed!\n");
455 }
456 }
457#endif
458 cleanup_before_linux();
459}
460void boot_jump_vxworks(bootm_headers_t *images)
461{
Vasyl Vavrychuk70b551c2018-04-10 12:36:36 +0300462#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
463 armv8_setup_psci();
464 smp_kick_all_cpus();
465#endif
466
Miao Yan1bd54562013-11-28 17:51:38 +0800467 /* ARM VxWorks requires device tree physical address to be passed */
468 ((void (*)(void *))images->ep)(images->ft_addr);
469}
470#endif