2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
10 #include <fdt_support.h>
15 DECLARE_GLOBAL_DATA_PTR;
17 static int do_bootm_standalone(int flag, int argc, char * const argv[],
18 bootm_headers_t *images)
21 int (*appl)(int, char *const[]);
23 /* Don't start if "autostart" is set to "no" */
24 s = getenv("autostart");
25 if ((s != NULL) && !strcmp(s, "no")) {
26 setenv_hex("filesize", images->os.image_len);
29 appl = (int (*)(int, char * const []))images->ep;
34 /*******************************************************************/
35 /* OS booting routines */
36 /*******************************************************************/
38 #if defined(CONFIG_BOOTM_NETBSD) || defined(CONFIG_BOOTM_PLAN9)
39 static void copy_args(char *dest, int argc, char * const argv[], char delim)
43 for (i = 0; i < argc; i++) {
46 strcpy(dest, argv[i]);
47 dest += strlen(argv[i]);
52 #ifdef CONFIG_BOOTM_NETBSD
53 static int do_bootm_netbsd(int flag, int argc, char * const argv[],
54 bootm_headers_t *images)
56 void (*loader)(bd_t *, image_header_t *, char *, char *);
57 image_header_t *os_hdr, *hdr;
58 ulong kernel_data, kernel_len;
62 if (flag != BOOTM_STATE_OS_GO)
65 #if defined(CONFIG_FIT)
66 if (!images->legacy_hdr_valid) {
67 fit_unsupported_reset("NetBSD");
71 hdr = images->legacy_hdr_os;
74 * Booting a (NetBSD) kernel image
76 * This process is pretty similar to a standalone application:
77 * The (first part of an multi-) image must be a stage-2 loader,
78 * which in turn is responsible for loading & invoking the actual
79 * kernel. The only differences are the parameters being passed:
80 * besides the board info strucure, the loader expects a command
81 * line, the name of the console device, and (optionally) the
82 * address of the original image header.
85 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
86 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
92 #if defined(CONFIG_8xx_CONS_SMC1)
94 #elif defined(CONFIG_8xx_CONS_SMC2)
96 #elif defined(CONFIG_8xx_CONS_SCC2)
98 #elif defined(CONFIG_8xx_CONS_SCC3)
106 for (i = 0, len = 0; i < argc; i += 1)
107 len += strlen(argv[i]) + 1;
108 cmdline = malloc(len);
109 copy_args(cmdline, argc, argv, ' ');
111 cmdline = getenv("bootargs");
116 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
118 printf("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
121 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
124 * NetBSD Stage-2 Loader Parameters:
125 * arg[0]: pointer to board info data
126 * arg[1]: image load address
127 * arg[2]: char pointer to the console device to use
128 * arg[3]: char pointer to the boot arguments
130 (*loader)(gd->bd, os_hdr, consdev, cmdline);
134 #endif /* CONFIG_BOOTM_NETBSD*/
136 #ifdef CONFIG_LYNXKDI
137 static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
138 bootm_headers_t *images)
140 image_header_t *hdr = &images->legacy_hdr_os_copy;
142 if (flag != BOOTM_STATE_OS_GO)
145 #if defined(CONFIG_FIT)
146 if (!images->legacy_hdr_valid) {
147 fit_unsupported_reset("Lynx");
152 lynxkdi_boot((image_header_t *)hdr);
156 #endif /* CONFIG_LYNXKDI */
158 #ifdef CONFIG_BOOTM_RTEMS
159 static int do_bootm_rtems(int flag, int argc, char * const argv[],
160 bootm_headers_t *images)
162 void (*entry_point)(bd_t *);
164 if (flag != BOOTM_STATE_OS_GO)
167 #if defined(CONFIG_FIT)
168 if (!images->legacy_hdr_valid) {
169 fit_unsupported_reset("RTEMS");
174 entry_point = (void (*)(bd_t *))images->ep;
176 printf("## Transferring control to RTEMS (at address %08lx) ...\n",
179 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
183 * r3: ptr to board info data
185 (*entry_point)(gd->bd);
189 #endif /* CONFIG_BOOTM_RTEMS */
191 #if defined(CONFIG_BOOTM_OSE)
192 static int do_bootm_ose(int flag, int argc, char * const argv[],
193 bootm_headers_t *images)
195 void (*entry_point)(void);
197 if (flag != BOOTM_STATE_OS_GO)
200 #if defined(CONFIG_FIT)
201 if (!images->legacy_hdr_valid) {
202 fit_unsupported_reset("OSE");
207 entry_point = (void (*)(void))images->ep;
209 printf("## Transferring control to OSE (at address %08lx) ...\n",
212 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
222 #endif /* CONFIG_BOOTM_OSE */
224 #if defined(CONFIG_BOOTM_PLAN9)
225 static int do_bootm_plan9(int flag, int argc, char * const argv[],
226 bootm_headers_t *images)
228 void (*entry_point)(void);
231 if (flag != BOOTM_STATE_OS_GO)
234 #if defined(CONFIG_FIT)
235 if (!images->legacy_hdr_valid) {
236 fit_unsupported_reset("Plan 9");
241 /* See README.plan9 */
242 s = getenv("confaddr");
244 char *confaddr = (char *)simple_strtoul(s, NULL, 16);
247 copy_args(confaddr, argc, argv, '\n');
249 s = getenv("bootargs");
255 entry_point = (void (*)(void))images->ep;
257 printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
260 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
270 #endif /* CONFIG_BOOTM_PLAN9 */
272 #if defined(CONFIG_BOOTM_VXWORKS) && \
273 (defined(CONFIG_PPC) || defined(CONFIG_ARM))
275 void do_bootvx_fdt(bootm_headers_t *images)
277 #if defined(CONFIG_OF_LIBFDT)
280 ulong of_size = images->ft_len;
281 char **of_flat_tree = &images->ft_addr;
282 struct lmb *lmb = &images->lmb;
285 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
287 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
291 fdt_fixup_ethernet(*of_flat_tree);
293 ret = fdt_add_subnode(*of_flat_tree, 0, "chosen");
294 if ((ret >= 0 || ret == -FDT_ERR_EXISTS)) {
295 bootline = getenv("bootargs");
297 ret = fdt_find_and_setprop(*of_flat_tree,
298 "/chosen", "bootargs",
300 strlen(bootline) + 1, 1);
302 printf("## ERROR: %s : %s\n", __func__,
308 printf("## ERROR: %s : %s\n", __func__,
315 boot_prep_vxworks(images);
317 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
319 #if defined(CONFIG_OF_LIBFDT)
320 printf("## Starting vxWorks at 0x%08lx, device tree at 0x%08lx ...\n",
321 (ulong)images->ep, (ulong)*of_flat_tree);
323 printf("## Starting vxWorks at 0x%08lx\n", (ulong)images->ep);
326 boot_jump_vxworks(images);
328 puts("## vxWorks terminated\n");
331 static int do_bootm_vxworks(int flag, int argc, char * const argv[],
332 bootm_headers_t *images)
334 if (flag != BOOTM_STATE_OS_GO)
337 #if defined(CONFIG_FIT)
338 if (!images->legacy_hdr_valid) {
339 fit_unsupported_reset("VxWorks");
344 do_bootvx_fdt(images);
350 #if defined(CONFIG_CMD_ELF)
351 static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
352 bootm_headers_t *images)
357 if (flag != BOOTM_STATE_OS_GO)
360 #if defined(CONFIG_FIT)
361 if (!images->legacy_hdr_valid) {
362 fit_unsupported_reset("QNX");
367 sprintf(str, "%lx", images->ep); /* write entry-point into string */
368 local_args[0] = argv[0];
369 local_args[1] = str; /* and provide it via the arguments */
370 do_bootelf(NULL, 0, 2, local_args);
376 #ifdef CONFIG_INTEGRITY
377 static int do_bootm_integrity(int flag, int argc, char * const argv[],
378 bootm_headers_t *images)
380 void (*entry_point)(void);
382 if (flag != BOOTM_STATE_OS_GO)
385 #if defined(CONFIG_FIT)
386 if (!images->legacy_hdr_valid) {
387 fit_unsupported_reset("INTEGRITY");
392 entry_point = (void (*)(void))images->ep;
394 printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
397 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
400 * INTEGRITY Parameters:
409 #ifdef CONFIG_BOOTM_OPENRTOS
410 static int do_bootm_openrtos(int flag, int argc, char * const argv[],
411 bootm_headers_t *images)
413 void (*entry_point)(void);
415 if (flag != BOOTM_STATE_OS_GO)
418 entry_point = (void (*)(void))images->ep;
420 printf("## Transferring control to OpenRTOS (at address %08lx) ...\n",
423 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
426 * OpenRTOS Parameters:
435 static boot_os_fn *boot_os[] = {
436 [IH_OS_U_BOOT] = do_bootm_standalone,
437 #ifdef CONFIG_BOOTM_LINUX
438 [IH_OS_LINUX] = do_bootm_linux,
440 #ifdef CONFIG_BOOTM_NETBSD
441 [IH_OS_NETBSD] = do_bootm_netbsd,
443 #ifdef CONFIG_LYNXKDI
444 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
446 #ifdef CONFIG_BOOTM_RTEMS
447 [IH_OS_RTEMS] = do_bootm_rtems,
449 #if defined(CONFIG_BOOTM_OSE)
450 [IH_OS_OSE] = do_bootm_ose,
452 #if defined(CONFIG_BOOTM_PLAN9)
453 [IH_OS_PLAN9] = do_bootm_plan9,
455 #if defined(CONFIG_BOOTM_VXWORKS) && \
456 (defined(CONFIG_PPC) || defined(CONFIG_ARM))
457 [IH_OS_VXWORKS] = do_bootm_vxworks,
459 #if defined(CONFIG_CMD_ELF)
460 [IH_OS_QNX] = do_bootm_qnxelf,
462 #ifdef CONFIG_INTEGRITY
463 [IH_OS_INTEGRITY] = do_bootm_integrity,
465 #ifdef CONFIG_BOOTM_OPENRTOS
466 [IH_OS_OPENRTOS] = do_bootm_openrtos,
470 /* Allow for arch specific config before we boot */
471 __weak void arch_preboot_os(void)
473 /* please define platform specific arch_preboot_os() */
476 int boot_selected_os(int argc, char * const argv[], int state,
477 bootm_headers_t *images, boot_os_fn *boot_fn)
480 boot_fn(state, argc, argv, images);
482 /* Stand-alone may return when 'autostart' is 'no' */
483 if (images->os.type == IH_TYPE_STANDALONE ||
484 IS_ENABLED(CONFIG_SANDBOX) ||
485 state == BOOTM_STATE_OS_FAKE_GO) /* We expect to return */
487 bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
488 debug("\n## Control returned to monitor - resetting...\n");
490 return BOOTM_ERR_RESET;
493 boot_os_fn *bootm_os_get_boot_func(int os)
495 #ifdef CONFIG_NEEDS_MANUAL_RELOC
496 static bool relocated;
501 /* relocate boot function table */
502 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
503 if (boot_os[i] != NULL)
504 boot_os[i] += gd->reloc_off;