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>
22 #include <linux/libfdt.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)
54 * Booting a (Linux) kernel image
56 * Allocate space for command line and board info - the
57 * address should be as high as possible within the reach of
58 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
59 * memory, which means far enough below the current stack
63 debug("## Current stack ends at 0x%08lx ", sp);
65 /* adjust sp by 4K to be safe */
67 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
68 if (sp < gd->bd->bi_dram[bank].start)
70 bank_end = gd->bd->bi_dram[bank].start +
71 gd->bd->bi_dram[bank].size;
74 lmb_reserve(lmb, sp, bank_end - sp);
79 __weak void board_quiesce_devices(void)
84 * announce_and_cleanup() - Print message and prepare for kernel boot
86 * @fake: non-zero to do everything except actually boot
88 static void announce_and_cleanup(int fake)
90 printf("\nStarting kernel ...%s\n\n", fake ?
91 "(fake run for tracing)" : "");
92 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
93 #ifdef CONFIG_BOOTSTAGE_FDT
94 bootstage_fdt_add_report();
96 #ifdef CONFIG_BOOTSTAGE_REPORT
100 #ifdef CONFIG_USB_DEVICE
104 board_quiesce_devices();
107 * Call remove function of all devices with a removal flag set.
108 * This may be useful for last-stage operations, like cancelling
109 * of DMA operation or releasing device internal buffers.
111 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
113 cleanup_before_linux();
116 static void setup_start_tag (bd_t *bd)
118 params = (struct tag *)bd->bi_boot_params;
120 params->hdr.tag = ATAG_CORE;
121 params->hdr.size = tag_size (tag_core);
123 params->u.core.flags = 0;
124 params->u.core.pagesize = 0;
125 params->u.core.rootdev = 0;
127 params = tag_next (params);
130 static void setup_memory_tags(bd_t *bd)
134 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
135 params->hdr.tag = ATAG_MEM;
136 params->hdr.size = tag_size (tag_mem32);
138 params->u.mem.start = bd->bi_dram[i].start;
139 params->u.mem.size = bd->bi_dram[i].size;
141 params = tag_next (params);
145 static void setup_commandline_tag(bd_t *bd, char *commandline)
152 /* eat leading white space */
153 for (p = commandline; *p == ' '; p++);
155 /* skip non-existent command lines so the kernel will still
156 * use its default command line.
161 params->hdr.tag = ATAG_CMDLINE;
163 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
165 strcpy (params->u.cmdline.cmdline, p);
167 params = tag_next (params);
170 static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
172 /* an ATAG_INITRD node tells the kernel where the compressed
173 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
175 params->hdr.tag = ATAG_INITRD2;
176 params->hdr.size = tag_size (tag_initrd);
178 params->u.initrd.start = initrd_start;
179 params->u.initrd.size = initrd_end - initrd_start;
181 params = tag_next (params);
184 static void setup_serial_tag(struct tag **tmp)
186 struct tag *params = *tmp;
187 struct tag_serialnr serialnr;
189 get_board_serial(&serialnr);
190 params->hdr.tag = ATAG_SERIAL;
191 params->hdr.size = tag_size (tag_serialnr);
192 params->u.serialnr.low = serialnr.low;
193 params->u.serialnr.high= serialnr.high;
194 params = tag_next (params);
198 static void setup_revision_tag(struct tag **in_params)
202 rev = get_board_rev();
203 params->hdr.tag = ATAG_REVISION;
204 params->hdr.size = tag_size (tag_revision);
205 params->u.revision.rev = rev;
206 params = tag_next (params);
209 static void setup_end_tag(bd_t *bd)
211 params->hdr.tag = ATAG_NONE;
212 params->hdr.size = 0;
215 __weak void setup_board_tags(struct tag **in_params) {}
218 static void do_nonsec_virt_switch(void)
221 dcache_disable(); /* flush cache before swtiching to EL2 */
225 /* Subcommand: PREP */
226 static void boot_prep_linux(bootm_headers_t *images)
228 char *commandline = env_get("bootargs");
230 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
231 #ifdef CONFIG_OF_LIBFDT
232 debug("using: FDT\n");
233 if (image_setup_linux(images)) {
234 printf("FDT creation failed! hanging...");
238 } else if (BOOTM_ENABLE_TAGS) {
239 debug("using: ATAGS\n");
240 setup_start_tag(gd->bd);
241 if (BOOTM_ENABLE_SERIAL_TAG)
242 setup_serial_tag(¶ms);
243 if (BOOTM_ENABLE_CMDLINE_TAG)
244 setup_commandline_tag(gd->bd, commandline);
245 if (BOOTM_ENABLE_REVISION_TAG)
246 setup_revision_tag(¶ms);
247 if (BOOTM_ENABLE_MEMORY_TAGS)
248 setup_memory_tags(gd->bd);
249 if (BOOTM_ENABLE_INITRD_TAG) {
251 * In boot_ramdisk_high(), it may relocate ramdisk to
252 * a specified location. And set images->initrd_start &
253 * images->initrd_end to relocated ramdisk's start/end
254 * addresses. So use them instead of images->rd_start &
255 * images->rd_end when possible.
257 if (images->initrd_start && images->initrd_end) {
258 setup_initrd_tag(gd->bd, images->initrd_start,
260 } else if (images->rd_start && images->rd_end) {
261 setup_initrd_tag(gd->bd, images->rd_start,
265 setup_board_tags(¶ms);
266 setup_end_tag(gd->bd);
268 printf("FDT and ATAGS support not compiled in - hanging\n");
273 __weak bool armv7_boot_nonsec_default(void)
275 #ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
282 #ifdef CONFIG_ARMV7_NONSEC
283 bool armv7_boot_nonsec(void)
285 char *s = env_get("bootm_boot_mode");
286 bool nonsec = armv7_boot_nonsec_default();
288 if (s && !strcmp(s, "sec"))
291 if (s && !strcmp(s, "nonsec"))
299 __weak void update_os_arch_secondary_cores(uint8_t os_arch)
303 #ifdef CONFIG_ARMV8_SWITCH_TO_EL1
304 static void switch_to_el1(void)
306 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
307 (images.os.arch == IH_ARCH_ARM))
308 armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
309 (u64)images.ft_addr, 0,
313 armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
321 static void boot_jump_linux(bootm_headers_t *images, int flag)
324 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
326 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
328 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
329 void *res2))images->ep;
331 debug("## Transferring control to Linux (at address %lx)...\n",
332 (ulong) kernel_entry);
333 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
335 announce_and_cleanup(fake);
338 #ifdef CONFIG_ARMV8_PSCI
341 do_nonsec_virt_switch();
343 update_os_arch_secondary_cores(images->os.arch);
345 #ifdef CONFIG_ARMV8_SWITCH_TO_EL1
346 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
347 (u64)switch_to_el1, ES_TO_AARCH64);
349 if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
350 (images->os.arch == IH_ARCH_ARM))
351 armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
352 (u64)images->ft_addr, 0,
356 armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
362 unsigned long machid = gd->bd->bi_arch_number;
364 void (*kernel_entry)(int zero, int arch, uint params);
366 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
368 kernel_entry = (void (*)(int, int, uint))images->ep;
369 #ifdef CONFIG_CPU_V7M
370 ulong addr = (ulong)kernel_entry | 1;
371 kernel_entry = (void *)addr;
373 s = env_get("machid");
375 if (strict_strtoul(s, 16, &machid) < 0) {
376 debug("strict_strtoul failed!\n");
379 printf("Using machid 0x%lx from environment\n", machid);
382 debug("## Transferring control to Linux (at address %08lx)" \
383 "...\n", (ulong) kernel_entry);
384 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
385 announce_and_cleanup(fake);
387 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
388 r2 = (unsigned long)images->ft_addr;
390 r2 = gd->bd->bi_boot_params;
393 #ifdef CONFIG_ARMV7_NONSEC
394 if (armv7_boot_nonsec()) {
396 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
400 kernel_entry(0, machid, r2);
405 /* Main Entry point for arm bootm implementation
407 * Modeled after the powerpc implementation
408 * DIFFERENCE: Instead of calling prep and go at the end
409 * they are called if subcommand is equal 0.
411 int do_bootm_linux(int flag, int argc, char * const argv[],
412 bootm_headers_t *images)
414 /* No need for those on ARM */
415 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
418 if (flag & BOOTM_STATE_OS_PREP) {
419 boot_prep_linux(images);
423 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
424 boot_jump_linux(images, flag);
428 boot_prep_linux(images);
429 boot_jump_linux(images, flag);
433 #if defined(CONFIG_BOOTM_VXWORKS)
434 void boot_prep_vxworks(bootm_headers_t *images)
436 #if defined(CONFIG_OF_LIBFDT)
439 if (images->ft_addr) {
440 off = fdt_path_offset(images->ft_addr, "/memory");
442 if (arch_fixup_fdt(images->ft_addr))
443 puts("## WARNING: fixup memory failed!\n");
447 cleanup_before_linux();
449 void boot_jump_vxworks(bootm_headers_t *images)
451 /* ARM VxWorks requires device tree physical address to be passed */
452 ((void (*)(void *))images->ep)(images->ft_addr);