2 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
3 * - Added prep subcommand support
4 * - Reorganized source - modeled after powerpc version
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
10 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
12 * SPDX-License-Identifier: GPL-2.0+
20 #include <u-boot/zlib.h>
21 #include <asm/byteorder.h>
24 #include <fdt_support.h>
25 #include <asm/bootm.h>
26 #include <asm/secure.h>
27 #include <linux/compiler.h>
31 #ifdef CONFIG_ARMV7_NONSEC
32 #include <asm/armv7.h>
34 #include <asm/setup.h>
36 DECLARE_GLOBAL_DATA_PTR;
38 static struct tag *params;
40 static ulong get_sp(void)
44 asm("mov %0, sp" : "=r"(ret) : );
48 void arch_lmb_reserve(struct lmb *lmb)
53 * Booting a (Linux) kernel image
55 * Allocate space for command line and board info - the
56 * address should be as high as possible within the reach of
57 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
58 * memory, which means far enough below the current stack
62 debug("## Current stack ends at 0x%08lx ", sp);
64 /* adjust sp by 4K to be safe */
67 gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size - sp);
70 __weak void board_quiesce_devices(void)
75 * announce_and_cleanup() - Print message and prepare for kernel boot
77 * @fake: non-zero to do everything except actually boot
79 static void announce_and_cleanup(int fake)
81 printf("\nStarting kernel ...%s\n\n", fake ?
82 "(fake run for tracing)" : "");
83 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
84 #ifdef CONFIG_BOOTSTAGE_FDT
85 bootstage_fdt_add_report();
87 #ifdef CONFIG_BOOTSTAGE_REPORT
91 #ifdef CONFIG_USB_DEVICE
95 board_quiesce_devices();
98 * Call remove function of all devices with a removal flag set.
99 * This may be useful for last-stage operations, like cancelling
100 * of DMA operation or releasing device internal buffers.
102 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
104 cleanup_before_linux();
107 static void setup_start_tag (bd_t *bd)
109 params = (struct tag *)bd->bi_boot_params;
111 params->hdr.tag = ATAG_CORE;
112 params->hdr.size = tag_size (tag_core);
114 params->u.core.flags = 0;
115 params->u.core.pagesize = 0;
116 params->u.core.rootdev = 0;
118 params = tag_next (params);
121 static void setup_memory_tags(bd_t *bd)
125 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
126 params->hdr.tag = ATAG_MEM;
127 params->hdr.size = tag_size (tag_mem32);
129 params->u.mem.start = bd->bi_dram[i].start;
130 params->u.mem.size = bd->bi_dram[i].size;
132 params = tag_next (params);
136 static void setup_commandline_tag(bd_t *bd, char *commandline)
143 /* eat leading white space */
144 for (p = commandline; *p == ' '; p++);
146 /* skip non-existent command lines so the kernel will still
147 * use its default command line.
152 params->hdr.tag = ATAG_CMDLINE;
154 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
156 strcpy (params->u.cmdline.cmdline, p);
158 params = tag_next (params);
161 static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
163 /* an ATAG_INITRD node tells the kernel where the compressed
164 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
166 params->hdr.tag = ATAG_INITRD2;
167 params->hdr.size = tag_size (tag_initrd);
169 params->u.initrd.start = initrd_start;
170 params->u.initrd.size = initrd_end - initrd_start;
172 params = tag_next (params);
175 static void setup_serial_tag(struct tag **tmp)
177 struct tag *params = *tmp;
178 struct tag_serialnr serialnr;
180 get_board_serial(&serialnr);
181 params->hdr.tag = ATAG_SERIAL;
182 params->hdr.size = tag_size (tag_serialnr);
183 params->u.serialnr.low = serialnr.low;
184 params->u.serialnr.high= serialnr.high;
185 params = tag_next (params);
189 static void setup_revision_tag(struct tag **in_params)
193 rev = get_board_rev();
194 params->hdr.tag = ATAG_REVISION;
195 params->hdr.size = tag_size (tag_revision);
196 params->u.revision.rev = rev;
197 params = tag_next (params);
200 static void setup_end_tag(bd_t *bd)
202 params->hdr.tag = ATAG_NONE;
203 params->hdr.size = 0;
206 __weak void setup_board_tags(struct tag **in_params) {}
209 static void do_nonsec_virt_switch(void)
212 dcache_disable(); /* flush cache before swtiching to EL2 */
216 /* Subcommand: PREP */
217 static void boot_prep_linux(bootm_headers_t *images)
219 char *commandline = env_get("bootargs");
221 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
222 #ifdef CONFIG_OF_LIBFDT
223 debug("using: FDT\n");
224 if (image_setup_linux(images)) {
225 printf("FDT creation failed! hanging...");
229 } else if (BOOTM_ENABLE_TAGS) {
230 debug("using: ATAGS\n");
231 setup_start_tag(gd->bd);
232 if (BOOTM_ENABLE_SERIAL_TAG)
233 setup_serial_tag(¶ms);
234 if (BOOTM_ENABLE_CMDLINE_TAG)
235 setup_commandline_tag(gd->bd, commandline);
236 if (BOOTM_ENABLE_REVISION_TAG)
237 setup_revision_tag(¶ms);
238 if (BOOTM_ENABLE_MEMORY_TAGS)
239 setup_memory_tags(gd->bd);
240 if (BOOTM_ENABLE_INITRD_TAG) {
242 * In boot_ramdisk_high(), it may relocate ramdisk to
243 * a specified location. And set images->initrd_start &
244 * images->initrd_end to relocated ramdisk's start/end
245 * addresses. So use them instead of images->rd_start &
246 * images->rd_end when possible.
248 if (images->initrd_start && images->initrd_end) {
249 setup_initrd_tag(gd->bd, images->initrd_start,
251 } else if (images->rd_start && images->rd_end) {
252 setup_initrd_tag(gd->bd, images->rd_start,
256 setup_board_tags(¶ms);
257 setup_end_tag(gd->bd);
259 printf("FDT and ATAGS support not compiled in - hanging\n");
264 __weak bool armv7_boot_nonsec_default(void)
266 #ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
273 #ifdef CONFIG_ARMV7_NONSEC
274 bool armv7_boot_nonsec(void)
276 char *s = env_get("bootm_boot_mode");
277 bool nonsec = armv7_boot_nonsec_default();
279 if (s && !strcmp(s, "sec"))
282 if (s && !strcmp(s, "nonsec"))
290 __weak void update_os_arch_secondary_cores(uint8_t os_arch)
294 #ifdef CONFIG_ARMV8_SWITCH_TO_EL1
295 static void switch_to_el1(void)
297 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
298 (images.os.arch == IH_ARCH_ARM))
299 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
300 (u64)images.ft_addr, 0,
304 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
312 static void boot_jump_linux(bootm_headers_t *images, int flag)
315 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
317 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
319 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
320 void *res2))images->ep;
322 debug("## Transferring control to Linux (at address %lx)...\n",
323 (ulong) kernel_entry);
324 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
326 announce_and_cleanup(fake);
329 #ifdef CONFIG_ARMV8_PSCI
332 do_nonsec_virt_switch();
334 update_os_arch_secondary_cores(images->os.arch);
336 #ifdef CONFIG_ARMV8_SWITCH_TO_EL1
337 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
338 (u64)switch_to_el1, ES_TO_AARCH64);
340 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
341 (images->os.arch == IH_ARCH_ARM))
342 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
343 (u64)images->ft_addr, 0,
347 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
353 unsigned long machid = gd->bd->bi_arch_number;
355 void (*kernel_entry)(int zero, int arch, uint params);
357 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
359 kernel_entry = (void (*)(int, int, uint))images->ep;
360 #ifdef CONFIG_CPU_V7M
361 ulong addr = (ulong)kernel_entry | 1;
362 kernel_entry = (void *)addr;
364 s = env_get("machid");
366 if (strict_strtoul(s, 16, &machid) < 0) {
367 debug("strict_strtoul failed!\n");
370 printf("Using machid 0x%lx from environment\n", machid);
373 debug("## Transferring control to Linux (at address %08lx)" \
374 "...\n", (ulong) kernel_entry);
375 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
376 announce_and_cleanup(fake);
378 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
379 r2 = (unsigned long)images->ft_addr;
381 r2 = gd->bd->bi_boot_params;
384 #ifdef CONFIG_ARMV7_NONSEC
385 if (armv7_boot_nonsec()) {
387 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
391 kernel_entry(0, machid, r2);
396 /* Main Entry point for arm bootm implementation
398 * Modeled after the powerpc implementation
399 * DIFFERENCE: Instead of calling prep and go at the end
400 * they are called if subcommand is equal 0.
402 int do_bootm_linux(int flag, int argc, char * const argv[],
403 bootm_headers_t *images)
405 /* No need for those on ARM */
406 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
409 if (flag & BOOTM_STATE_OS_PREP) {
410 boot_prep_linux(images);
414 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
415 boot_jump_linux(images, flag);
419 boot_prep_linux(images);
420 boot_jump_linux(images, flag);
424 #if defined(CONFIG_BOOTM_VXWORKS)
425 void boot_prep_vxworks(bootm_headers_t *images)
427 #if defined(CONFIG_OF_LIBFDT)
430 if (images->ft_addr) {
431 off = fdt_path_offset(images->ft_addr, "/memory");
433 if (arch_fixup_fdt(images->ft_addr))
434 puts("## WARNING: fixup memory failed!\n");
438 cleanup_before_linux();
440 void boot_jump_vxworks(bootm_headers_t *images)
442 /* ARM VxWorks requires device tree physical address to be passed */
443 ((void (*)(void *))images->ep)(images->ft_addr);