]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/lib/bootm.c
common: bootm: check return value of strict_strtoul
[people/ms/u-boot.git] / arch / arm / lib / bootm.c
1 /* Copyright (C) 2011
2 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
3 * - Added prep subcommand support
4 * - Reorganized source - modeled after powerpc version
5 *
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
9 *
10 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
11 *
12 * SPDX-License-Identifier: GPL-2.0+
13 */
14
15 #include <common.h>
16 #include <command.h>
17 #include <image.h>
18 #include <u-boot/zlib.h>
19 #include <asm/byteorder.h>
20 #include <libfdt.h>
21 #include <mapmem.h>
22 #include <fdt_support.h>
23 #include <asm/bootm.h>
24 #include <asm/secure.h>
25 #include <linux/compiler.h>
26 #include <bootm.h>
27 #include <vxworks.h>
28
29 #ifdef CONFIG_ARMV7_NONSEC
30 #include <asm/armv7.h>
31 #endif
32
33 DECLARE_GLOBAL_DATA_PTR;
34
35 static struct tag *params;
36
37 static ulong get_sp(void)
38 {
39 ulong ret;
40
41 asm("mov %0, sp" : "=r"(ret) : );
42 return ret;
43 }
44
45 void arch_lmb_reserve(struct lmb *lmb)
46 {
47 ulong sp;
48
49 /*
50 * Booting a (Linux) kernel image
51 *
52 * Allocate space for command line and board info - the
53 * address should be as high as possible within the reach of
54 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
55 * memory, which means far enough below the current stack
56 * pointer.
57 */
58 sp = get_sp();
59 debug("## Current stack ends at 0x%08lx ", sp);
60
61 /* adjust sp by 4K to be safe */
62 sp -= 4096;
63 lmb_reserve(lmb, sp,
64 gd->bd->bi_dram[0].start + gd->bd->bi_dram[0].size - sp);
65 }
66
67 /**
68 * announce_and_cleanup() - Print message and prepare for kernel boot
69 *
70 * @fake: non-zero to do everything except actually boot
71 */
72 static void announce_and_cleanup(int fake)
73 {
74 printf("\nStarting kernel ...%s\n\n", fake ?
75 "(fake run for tracing)" : "");
76 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
77 #ifdef CONFIG_BOOTSTAGE_FDT
78 bootstage_fdt_add_report();
79 #endif
80 #ifdef CONFIG_BOOTSTAGE_REPORT
81 bootstage_report();
82 #endif
83
84 #ifdef CONFIG_USB_DEVICE
85 udc_disconnect();
86 #endif
87 cleanup_before_linux();
88 }
89
90 static void setup_start_tag (bd_t *bd)
91 {
92 params = (struct tag *)bd->bi_boot_params;
93
94 params->hdr.tag = ATAG_CORE;
95 params->hdr.size = tag_size (tag_core);
96
97 params->u.core.flags = 0;
98 params->u.core.pagesize = 0;
99 params->u.core.rootdev = 0;
100
101 params = tag_next (params);
102 }
103
104 static void setup_memory_tags(bd_t *bd)
105 {
106 int i;
107
108 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
109 params->hdr.tag = ATAG_MEM;
110 params->hdr.size = tag_size (tag_mem32);
111
112 params->u.mem.start = bd->bi_dram[i].start;
113 params->u.mem.size = bd->bi_dram[i].size;
114
115 params = tag_next (params);
116 }
117 }
118
119 static void setup_commandline_tag(bd_t *bd, char *commandline)
120 {
121 char *p;
122
123 if (!commandline)
124 return;
125
126 /* eat leading white space */
127 for (p = commandline; *p == ' '; p++);
128
129 /* skip non-existent command lines so the kernel will still
130 * use its default command line.
131 */
132 if (*p == '\0')
133 return;
134
135 params->hdr.tag = ATAG_CMDLINE;
136 params->hdr.size =
137 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
138
139 strcpy (params->u.cmdline.cmdline, p);
140
141 params = tag_next (params);
142 }
143
144 static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
145 {
146 /* an ATAG_INITRD node tells the kernel where the compressed
147 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
148 */
149 params->hdr.tag = ATAG_INITRD2;
150 params->hdr.size = tag_size (tag_initrd);
151
152 params->u.initrd.start = initrd_start;
153 params->u.initrd.size = initrd_end - initrd_start;
154
155 params = tag_next (params);
156 }
157
158 static void setup_serial_tag(struct tag **tmp)
159 {
160 struct tag *params = *tmp;
161 struct tag_serialnr serialnr;
162
163 get_board_serial(&serialnr);
164 params->hdr.tag = ATAG_SERIAL;
165 params->hdr.size = tag_size (tag_serialnr);
166 params->u.serialnr.low = serialnr.low;
167 params->u.serialnr.high= serialnr.high;
168 params = tag_next (params);
169 *tmp = params;
170 }
171
172 static void setup_revision_tag(struct tag **in_params)
173 {
174 u32 rev = 0;
175
176 rev = get_board_rev();
177 params->hdr.tag = ATAG_REVISION;
178 params->hdr.size = tag_size (tag_revision);
179 params->u.revision.rev = rev;
180 params = tag_next (params);
181 }
182
183 static void setup_end_tag(bd_t *bd)
184 {
185 params->hdr.tag = ATAG_NONE;
186 params->hdr.size = 0;
187 }
188
189 __weak void setup_board_tags(struct tag **in_params) {}
190
191 #ifdef CONFIG_ARM64
192 static void do_nonsec_virt_switch(void)
193 {
194 smp_kick_all_cpus();
195 dcache_disable(); /* flush cache before swtiching to EL2 */
196 armv8_switch_to_el2();
197 #ifdef CONFIG_ARMV8_SWITCH_TO_EL1
198 armv8_switch_to_el1();
199 #endif
200 }
201 #endif
202
203 /* Subcommand: PREP */
204 static void boot_prep_linux(bootm_headers_t *images)
205 {
206 char *commandline = getenv("bootargs");
207
208 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
209 #ifdef CONFIG_OF_LIBFDT
210 debug("using: FDT\n");
211 if (image_setup_linux(images)) {
212 printf("FDT creation failed! hanging...");
213 hang();
214 }
215 #endif
216 } else if (BOOTM_ENABLE_TAGS) {
217 debug("using: ATAGS\n");
218 setup_start_tag(gd->bd);
219 if (BOOTM_ENABLE_SERIAL_TAG)
220 setup_serial_tag(&params);
221 if (BOOTM_ENABLE_CMDLINE_TAG)
222 setup_commandline_tag(gd->bd, commandline);
223 if (BOOTM_ENABLE_REVISION_TAG)
224 setup_revision_tag(&params);
225 if (BOOTM_ENABLE_MEMORY_TAGS)
226 setup_memory_tags(gd->bd);
227 if (BOOTM_ENABLE_INITRD_TAG) {
228 if (images->rd_start && images->rd_end) {
229 setup_initrd_tag(gd->bd, images->rd_start,
230 images->rd_end);
231 }
232 }
233 setup_board_tags(&params);
234 setup_end_tag(gd->bd);
235 } else {
236 printf("FDT and ATAGS support not compiled in - hanging\n");
237 hang();
238 }
239 }
240
241 #ifdef CONFIG_ARMV7_NONSEC
242 bool armv7_boot_nonsec(void)
243 {
244 char *s = getenv("bootm_boot_mode");
245 #ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
246 bool nonsec = false;
247 #else
248 bool nonsec = true;
249 #endif
250
251 if (s && !strcmp(s, "sec"))
252 nonsec = false;
253
254 if (s && !strcmp(s, "nonsec"))
255 nonsec = true;
256
257 return nonsec;
258 }
259 #endif
260
261 /* Subcommand: GO */
262 static void boot_jump_linux(bootm_headers_t *images, int flag)
263 {
264 #ifdef CONFIG_ARM64
265 void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
266 void *res2);
267 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
268
269 kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
270 void *res2))images->ep;
271
272 debug("## Transferring control to Linux (at address %lx)...\n",
273 (ulong) kernel_entry);
274 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
275
276 announce_and_cleanup(fake);
277
278 if (!fake) {
279 do_nonsec_virt_switch();
280 kernel_entry(images->ft_addr, NULL, NULL, NULL);
281 }
282 #else
283 unsigned long machid = gd->bd->bi_arch_number;
284 char *s;
285 void (*kernel_entry)(int zero, int arch, uint params);
286 unsigned long r2;
287 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
288
289 kernel_entry = (void (*)(int, int, uint))images->ep;
290
291 s = getenv("machid");
292 if (s) {
293 if (strict_strtoul(s, 16, &machid) < 0) {
294 debug("strict_strtoul failed!\n");
295 return;
296 }
297 printf("Using machid 0x%lx from environment\n", machid);
298 }
299
300 debug("## Transferring control to Linux (at address %08lx)" \
301 "...\n", (ulong) kernel_entry);
302 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
303 announce_and_cleanup(fake);
304
305 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
306 r2 = (unsigned long)images->ft_addr;
307 else
308 r2 = gd->bd->bi_boot_params;
309
310 if (!fake) {
311 #ifdef CONFIG_ARMV7_NONSEC
312 if (armv7_boot_nonsec()) {
313 armv7_init_nonsec();
314 secure_ram_addr(_do_nonsec_entry)(kernel_entry,
315 0, machid, r2);
316 } else
317 #endif
318 kernel_entry(0, machid, r2);
319 }
320 #endif
321 }
322
323 /* Main Entry point for arm bootm implementation
324 *
325 * Modeled after the powerpc implementation
326 * DIFFERENCE: Instead of calling prep and go at the end
327 * they are called if subcommand is equal 0.
328 */
329 int do_bootm_linux(int flag, int argc, char * const argv[],
330 bootm_headers_t *images)
331 {
332 /* No need for those on ARM */
333 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
334 return -1;
335
336 if (flag & BOOTM_STATE_OS_PREP) {
337 boot_prep_linux(images);
338 return 0;
339 }
340
341 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
342 boot_jump_linux(images, flag);
343 return 0;
344 }
345
346 boot_prep_linux(images);
347 boot_jump_linux(images, flag);
348 return 0;
349 }
350
351 #ifdef CONFIG_CMD_BOOTZ
352
353 struct zimage_header {
354 uint32_t code[9];
355 uint32_t zi_magic;
356 uint32_t zi_start;
357 uint32_t zi_end;
358 };
359
360 #define LINUX_ARM_ZIMAGE_MAGIC 0x016f2818
361
362 int bootz_setup(ulong image, ulong *start, ulong *end)
363 {
364 struct zimage_header *zi;
365
366 zi = (struct zimage_header *)map_sysmem(image, 0);
367 if (zi->zi_magic != LINUX_ARM_ZIMAGE_MAGIC) {
368 puts("Bad Linux ARM zImage magic!\n");
369 return 1;
370 }
371
372 *start = zi->zi_start;
373 *end = zi->zi_end;
374
375 printf("Kernel image @ %#08lx [ %#08lx - %#08lx ]\n", image, *start,
376 *end);
377
378 return 0;
379 }
380
381 #endif /* CONFIG_CMD_BOOTZ */
382
383 #if defined(CONFIG_BOOTM_VXWORKS)
384 void boot_prep_vxworks(bootm_headers_t *images)
385 {
386 #if defined(CONFIG_OF_LIBFDT)
387 int off;
388
389 if (images->ft_addr) {
390 off = fdt_path_offset(images->ft_addr, "/memory");
391 if (off < 0) {
392 if (arch_fixup_fdt(images->ft_addr))
393 puts("## WARNING: fixup memory failed!\n");
394 }
395 }
396 #endif
397 cleanup_before_linux();
398 }
399 void boot_jump_vxworks(bootm_headers_t *images)
400 {
401 /* ARM VxWorks requires device tree physical address to be passed */
402 ((void (*)(void *))images->ep)(images->ft_addr);
403 }
404 #endif