]> Git Repo - u-boot.git/blob - boot/bootm_os.c
Merge tag 'v2024.07-rc5' into next
[u-boot.git] / boot / bootm_os.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000-2009
4  * Wolfgang Denk, DENX Software Engineering, [email protected].
5  */
6
7 #include <bootm.h>
8 #include <bootstage.h>
9 #include <cpu_func.h>
10 #include <efi_loader.h>
11 #include <env.h>
12 #include <fdt_support.h>
13 #include <image.h>
14 #include <lmb.h>
15 #include <log.h>
16 #include <asm/global_data.h>
17 #include <linux/libfdt.h>
18 #include <malloc.h>
19 #include <mapmem.h>
20 #include <vxworks.h>
21 #include <tee/optee.h>
22
23 DECLARE_GLOBAL_DATA_PTR;
24
25 static int do_bootm_standalone(int flag, struct bootm_info *bmi)
26 {
27         struct bootm_headers *images = bmi->images;
28         int (*appl)(int, char *const[]);
29
30         if (!env_get_autostart()) {
31                 env_set_hex("filesize", images->os.image_len);
32                 return 0;
33         }
34         appl = (int (*)(int, char * const []))images->ep;
35         appl(bmi->argc, bmi->argv);
36         return 0;
37 }
38
39 /*******************************************************************/
40 /* OS booting routines */
41 /*******************************************************************/
42
43 #if defined(CONFIG_BOOTM_NETBSD) || defined(CONFIG_BOOTM_PLAN9)
44 static void copy_args(char *dest, int argc, char *const argv[], char delim)
45 {
46         int i;
47
48         for (i = 0; i < argc; i++) {
49                 if (i > 0)
50                         *dest++ = delim;
51                 strcpy(dest, argv[i]);
52                 dest += strlen(argv[i]);
53         }
54 }
55 #endif
56
57 static void __maybe_unused fit_unsupported_reset(const char *msg)
58 {
59         if (CONFIG_IS_ENABLED(FIT_VERBOSE)) {
60                 printf("! FIT images not supported for '%s' - must reset board to recover!\n",
61                        msg);
62         }
63 }
64
65 #ifdef CONFIG_BOOTM_NETBSD
66 static int do_bootm_netbsd(int flag, struct bootm_info *bmi)
67 {
68         struct bootm_headers *images = bmi->images;
69         void (*loader)(struct bd_info *bd, struct legacy_img_hdr *hdr,
70                        char *console, char *cmdline);
71         struct legacy_img_hdr *os_hdr, *hdr;
72         ulong kernel_data, kernel_len;
73         char *cmdline;
74
75         if (flag != BOOTM_STATE_OS_GO)
76                 return 0;
77
78 #if defined(CONFIG_FIT)
79         if (!images->legacy_hdr_valid) {
80                 fit_unsupported_reset("NetBSD");
81                 return 1;
82         }
83 #endif
84         hdr = images->legacy_hdr_os;
85
86         /*
87          * Booting a (NetBSD) kernel image
88          *
89          * This process is pretty similar to a standalone application:
90          * The (first part of an multi-) image must be a stage-2 loader,
91          * which in turn is responsible for loading & invoking the actual
92          * kernel.  The only differences are the parameters being passed:
93          * besides the board info strucure, the loader expects a command
94          * line, the name of the console device, and (optionally) the
95          * address of the original image header.
96          */
97         os_hdr = NULL;
98         if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
99                 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
100                 if (kernel_len)
101                         os_hdr = hdr;
102         }
103
104         if (bmi->argc > 0) {
105                 ulong len;
106                 int   i;
107
108                 for (i = 0, len = 0; i < bmi->argc; i += 1)
109                         len += strlen(bmi->argv[i]) + 1;
110                 cmdline = malloc(len);
111                 copy_args(cmdline, bmi->argc, bmi->argv, ' ');
112         } else {
113                 cmdline = env_get("bootargs");
114                 if (cmdline == NULL)
115                         cmdline = "";
116         }
117
118         loader = (void (*)(struct bd_info *, struct legacy_img_hdr *, char *, char *))images->ep;
119
120         printf("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
121                (ulong)loader);
122
123         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
124
125         /*
126          * NetBSD Stage-2 Loader Parameters:
127          *   arg[0]: pointer to board info data
128          *   arg[1]: image load address
129          *   arg[2]: char pointer to the console device to use
130          *   arg[3]: char pointer to the boot arguments
131          */
132         (*loader)(gd->bd, os_hdr, "", cmdline);
133
134         return 1;
135 }
136 #endif /* CONFIG_BOOTM_NETBSD*/
137
138 #ifdef CONFIG_BOOTM_RTEMS
139 static int do_bootm_rtems(int flag, struct bootm_info *bmi)
140 {
141         struct bootm_headers *images = bmi->images;
142         void (*entry_point)(struct bd_info *);
143
144         if (flag != BOOTM_STATE_OS_GO)
145                 return 0;
146
147 #if defined(CONFIG_FIT)
148         if (!images->legacy_hdr_valid) {
149                 fit_unsupported_reset("RTEMS");
150                 return 1;
151         }
152 #endif
153
154         entry_point = (void (*)(struct bd_info *))images->ep;
155
156         printf("## Transferring control to RTEMS (at address %08lx) ...\n",
157                (ulong)entry_point);
158
159         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
160
161         /*
162          * RTEMS Parameters:
163          *   r3: ptr to board info data
164          */
165         (*entry_point)(gd->bd);
166
167         return 1;
168 }
169 #endif /* CONFIG_BOOTM_RTEMS */
170
171 #if defined(CONFIG_BOOTM_OSE)
172 static int do_bootm_ose(int flag, struct bootm_info *bmi)
173 {
174         struct bootm_headers *images = bmi->images;
175         void (*entry_point)(void);
176
177         if (flag != BOOTM_STATE_OS_GO)
178                 return 0;
179
180 #if defined(CONFIG_FIT)
181         if (!images->legacy_hdr_valid) {
182                 fit_unsupported_reset("OSE");
183                 return 1;
184         }
185 #endif
186
187         entry_point = (void (*)(void))images->ep;
188
189         printf("## Transferring control to OSE (at address %08lx) ...\n",
190                (ulong)entry_point);
191
192         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
193
194         /*
195          * OSE Parameters:
196          *   None
197          */
198         (*entry_point)();
199
200         return 1;
201 }
202 #endif /* CONFIG_BOOTM_OSE */
203
204 #if defined(CONFIG_BOOTM_PLAN9)
205 static int do_bootm_plan9(int flag, struct bootm_info *bmi)
206 {
207         struct bootm_headers *images = bmi->images;
208         void (*entry_point)(void);
209         char *s;
210
211         if (flag != BOOTM_STATE_OS_GO)
212                 return 0;
213
214 #if defined(CONFIG_FIT)
215         if (!images->legacy_hdr_valid) {
216                 fit_unsupported_reset("Plan 9");
217                 return 1;
218         }
219 #endif
220
221         /* See README.plan9 */
222         s = env_get("confaddr");
223         if (s != NULL) {
224                 char *confaddr = (char *)hextoul(s, NULL);
225
226                 if (bmi->argc) {
227                         copy_args(confaddr, bmi->argc, bmi->argv, '\n');
228                 } else {
229                         s = env_get("bootargs");
230                         if (s != NULL)
231                                 strcpy(confaddr, s);
232                 }
233         }
234
235         entry_point = (void (*)(void))images->ep;
236
237         printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
238                (ulong)entry_point);
239
240         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
241
242         /*
243          * Plan 9 Parameters:
244          *   None
245          */
246         (*entry_point)();
247
248         return 1;
249 }
250 #endif /* CONFIG_BOOTM_PLAN9 */
251
252 #if defined(CONFIG_BOOTM_VXWORKS) && \
253         (defined(CONFIG_PPC) || defined(CONFIG_ARM))
254
255 static void do_bootvx_fdt(struct bootm_headers *images)
256 {
257 #if defined(CONFIG_OF_LIBFDT)
258         int ret;
259         char *bootline;
260         ulong of_size = images->ft_len;
261         char **of_flat_tree = &images->ft_addr;
262         struct lmb *lmb = &images->lmb;
263
264         if (*of_flat_tree) {
265                 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
266
267                 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
268                 if (ret)
269                         return;
270
271                 /* Update ethernet nodes */
272                 fdt_fixup_ethernet(*of_flat_tree);
273
274                 ret = fdt_add_subnode(*of_flat_tree, 0, "chosen");
275                 if ((ret >= 0 || ret == -FDT_ERR_EXISTS)) {
276                         bootline = env_get("bootargs");
277                         if (bootline) {
278                                 ret = fdt_find_and_setprop(*of_flat_tree,
279                                                 "/chosen", "bootargs",
280                                                 bootline,
281                                                 strlen(bootline) + 1, 1);
282                                 if (ret < 0) {
283                                         printf("## ERROR: %s : %s\n", __func__,
284                                                fdt_strerror(ret));
285                                         return;
286                                 }
287                         }
288                 } else {
289                         printf("## ERROR: %s : %s\n", __func__,
290                                fdt_strerror(ret));
291                         return;
292                 }
293         }
294 #endif
295
296         boot_prep_vxworks(images);
297
298         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
299
300 #if defined(CONFIG_OF_LIBFDT)
301         printf("## Starting vxWorks at 0x%08lx, device tree at 0x%08lx ...\n",
302                (ulong)images->ep, (ulong)*of_flat_tree);
303 #else
304         printf("## Starting vxWorks at 0x%08lx\n", (ulong)images->ep);
305 #endif
306         flush();
307
308         boot_jump_vxworks(images);
309
310         puts("## vxWorks terminated\n");
311 }
312
313 static int do_bootm_vxworks_legacy(int flag, struct bootm_info *bmi)
314 {
315         struct bootm_headers *images = bmi->images;
316
317         if (flag != BOOTM_STATE_OS_GO)
318                 return 0;
319
320         do_bootvx_fdt(images);
321
322         return 1;
323 }
324
325 int do_bootm_vxworks(int flag, struct bootm_info *bmi)
326 {
327         char *bootargs;
328         int pos;
329         unsigned long vxflags;
330         bool std_dtb = false;
331
332         /* get bootargs env */
333         bootargs = env_get("bootargs");
334
335         if (bootargs != NULL) {
336                 for (pos = 0; pos < strlen(bootargs); pos++) {
337                         /* find f=0xnumber flag */
338                         if ((bootargs[pos] == '=') && (pos >= 1) &&
339                             (bootargs[pos - 1] == 'f')) {
340                                 vxflags = hextoul(&bootargs[pos + 1], NULL);
341                                 if (vxflags & VXWORKS_SYSFLG_STD_DTB)
342                                         std_dtb = true;
343                         }
344                 }
345         }
346
347         if (std_dtb) {
348                 if (flag & BOOTM_STATE_OS_PREP)
349                         printf("   Using standard DTB\n");
350                 return do_bootm_linux(flag, bmi);
351         } else {
352                 if (flag & BOOTM_STATE_OS_PREP)
353                         printf("   !!! WARNING !!! Using legacy DTB\n");
354                 return do_bootm_vxworks_legacy(flag, bmi);
355         }
356 }
357 #endif
358
359 #if defined(CONFIG_CMD_ELF)
360 static int do_bootm_qnxelf(int flag, struct bootm_info *bmi)
361 {
362         struct bootm_headers *images = bmi->images;
363         char *local_args[2];
364         char str[16];
365         int dcache;
366
367         if (flag != BOOTM_STATE_OS_GO)
368                 return 0;
369
370 #if defined(CONFIG_FIT)
371         if (!images->legacy_hdr_valid) {
372                 fit_unsupported_reset("QNX");
373                 return 1;
374         }
375 #endif
376
377         sprintf(str, "%lx", images->ep); /* write entry-point into string */
378         local_args[0] = bmi->argv[0];
379         local_args[1] = str;    /* and provide it via the arguments */
380
381         /*
382          * QNX images require the data cache is disabled.
383          */
384         dcache = dcache_status();
385         if (dcache)
386                 dcache_disable();
387
388         do_bootelf(NULL, 0, 2, local_args);
389
390         if (dcache)
391                 dcache_enable();
392
393         return 1;
394 }
395 #endif
396
397 #ifdef CONFIG_INTEGRITY
398 static int do_bootm_integrity(int flag, struct bootm_info *bmi)
399 {
400         struct bootm_headers *images = bmi->images;
401         void (*entry_point)(void);
402
403         if (flag != BOOTM_STATE_OS_GO)
404                 return 0;
405
406 #if defined(CONFIG_FIT)
407         if (!images->legacy_hdr_valid) {
408                 fit_unsupported_reset("INTEGRITY");
409                 return 1;
410         }
411 #endif
412
413         entry_point = (void (*)(void))images->ep;
414
415         printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
416                (ulong)entry_point);
417
418         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
419
420         /*
421          * INTEGRITY Parameters:
422          *   None
423          */
424         (*entry_point)();
425
426         return 1;
427 }
428 #endif
429
430 #ifdef CONFIG_BOOTM_OPENRTOS
431 static int do_bootm_openrtos(int flag, struct bootm_info *bmi)
432 {
433         struct bootm_headers *images = bmi->images;
434         void (*entry_point)(void);
435
436         if (flag != BOOTM_STATE_OS_GO)
437                 return 0;
438
439         entry_point = (void (*)(void))images->ep;
440
441         printf("## Transferring control to OpenRTOS (at address %08lx) ...\n",
442                 (ulong)entry_point);
443
444         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
445
446         /*
447          * OpenRTOS Parameters:
448          *   None
449          */
450         (*entry_point)();
451
452         return 1;
453 }
454 #endif
455
456 #ifdef CONFIG_BOOTM_OPTEE
457 static int do_bootm_tee(int flag, struct bootm_info *bmi)
458 {
459         struct bootm_headers *images = bmi->images;
460         int ret;
461
462         /* Validate OPTEE header */
463         ret = optee_verify_bootm_image(images->os.image_start,
464                                        images->os.load,
465                                        images->os.image_len);
466         if (ret)
467                 return ret;
468
469         /* From here we can run the regular linux boot path */
470         return do_bootm_linux(flag, bmi);
471 }
472 #endif
473
474 #ifdef CONFIG_BOOTM_EFI
475 static int do_bootm_efi(int flag, struct bootm_info *bmi)
476 {
477         struct bootm_headers *images = bmi->images;
478         int ret;
479         void *image_buf;
480
481         if (flag != BOOTM_STATE_OS_GO)
482                 return 0;
483
484         /* We expect to return */
485         images->os.type = IH_TYPE_STANDALONE;
486
487         image_buf = map_sysmem(images->ep, images->os.image_len);
488
489         /* Run EFI image */
490         printf("## Transferring control to EFI (at address %08lx) ...\n",
491                images->ep);
492         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
493
494         ret = efi_binary_run(image_buf, images->os.image_len,
495                              images->ft_len
496                              ? images->ft_addr : EFI_FDT_USE_INTERNAL);
497
498         return ret;
499 }
500 #endif
501
502 static boot_os_fn *boot_os[] = {
503         [IH_OS_U_BOOT] = do_bootm_standalone,
504 #ifdef CONFIG_BOOTM_LINUX
505         [IH_OS_LINUX] = do_bootm_linux,
506 #endif
507 #ifdef CONFIG_BOOTM_NETBSD
508         [IH_OS_NETBSD] = do_bootm_netbsd,
509 #endif
510 #ifdef CONFIG_BOOTM_RTEMS
511         [IH_OS_RTEMS] = do_bootm_rtems,
512 #endif
513 #if defined(CONFIG_BOOTM_OSE)
514         [IH_OS_OSE] = do_bootm_ose,
515 #endif
516 #if defined(CONFIG_BOOTM_PLAN9)
517         [IH_OS_PLAN9] = do_bootm_plan9,
518 #endif
519 #if defined(CONFIG_BOOTM_VXWORKS) && \
520         (defined(CONFIG_PPC) || defined(CONFIG_ARM) || defined(CONFIG_RISCV))
521         [IH_OS_VXWORKS] = do_bootm_vxworks,
522 #endif
523 #if defined(CONFIG_CMD_ELF)
524         [IH_OS_QNX] = do_bootm_qnxelf,
525 #endif
526 #ifdef CONFIG_INTEGRITY
527         [IH_OS_INTEGRITY] = do_bootm_integrity,
528 #endif
529 #ifdef CONFIG_BOOTM_OPENRTOS
530         [IH_OS_OPENRTOS] = do_bootm_openrtos,
531 #endif
532 #ifdef CONFIG_BOOTM_OPTEE
533         [IH_OS_TEE] = do_bootm_tee,
534 #endif
535 #ifdef CONFIG_BOOTM_EFI
536         [IH_OS_EFI] = do_bootm_efi,
537 #endif
538 };
539
540 /* Allow for arch specific config before we boot */
541 __weak void arch_preboot_os(void)
542 {
543         /* please define platform specific arch_preboot_os() */
544 }
545
546 /* Allow for board specific config before we boot */
547 __weak void board_preboot_os(void)
548 {
549         /* please define board specific board_preboot_os() */
550 }
551
552 int boot_selected_os(int state, struct bootm_info *bmi, boot_os_fn *boot_fn)
553 {
554         arch_preboot_os();
555         board_preboot_os();
556
557         boot_fn(state, bmi);
558
559         /* Stand-alone may return when 'autostart' is 'no' */
560         if (bmi->images->os.type == IH_TYPE_STANDALONE ||
561             IS_ENABLED(CONFIG_SANDBOX) ||
562             state == BOOTM_STATE_OS_FAKE_GO) /* We expect to return */
563                 return 0;
564         bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
565         debug("\n## Control returned to monitor - resetting...\n");
566
567         return BOOTM_ERR_RESET;
568 }
569
570 boot_os_fn *bootm_os_get_boot_func(int os)
571 {
572         return boot_os[os];
573 }
This page took 0.058774 seconds and 4 git commands to generate.