]> git.ipfire.org Git - thirdparty/u-boot.git/blob - boot/image-board.c
bootm: Reduce arguments to boot_get_loadables()
[thirdparty/u-boot.git] / boot / image-board.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Image code used by boards (and not host tools)
4 *
5 * (C) Copyright 2008 Semihalf
6 *
7 * (C) Copyright 2000-2006
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 */
10
11 #include <common.h>
12 #include <bootstage.h>
13 #include <cpu_func.h>
14 #include <display_options.h>
15 #include <env.h>
16 #include <fpga.h>
17 #include <image.h>
18 #include <init.h>
19 #include <log.h>
20 #include <mapmem.h>
21 #include <rtc.h>
22 #include <watchdog.h>
23 #include <asm/cache.h>
24 #include <asm/global_data.h>
25
26 DECLARE_GLOBAL_DATA_PTR;
27
28 /**
29 * image_get_ramdisk - get and verify ramdisk image
30 * @rd_addr: ramdisk image start address
31 * @arch: expected ramdisk architecture
32 * @verify: checksum verification flag
33 *
34 * image_get_ramdisk() returns a pointer to the verified ramdisk image
35 * header. Routine receives image start address and expected architecture
36 * flag. Verification done covers data and header integrity and os/type/arch
37 * fields checking.
38 *
39 * returns:
40 * pointer to a ramdisk image header, if image was found and valid
41 * otherwise, return NULL
42 */
43 static const struct legacy_img_hdr *image_get_ramdisk(ulong rd_addr, u8 arch,
44 int verify)
45 {
46 const struct legacy_img_hdr *rd_hdr = (const struct legacy_img_hdr *)rd_addr;
47
48 if (!image_check_magic(rd_hdr)) {
49 puts("Bad Magic Number\n");
50 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
51 return NULL;
52 }
53
54 if (!image_check_hcrc(rd_hdr)) {
55 puts("Bad Header Checksum\n");
56 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
57 return NULL;
58 }
59
60 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
61 image_print_contents(rd_hdr);
62
63 if (verify) {
64 puts(" Verifying Checksum ... ");
65 if (!image_check_dcrc(rd_hdr)) {
66 puts("Bad Data CRC\n");
67 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
68 return NULL;
69 }
70 puts("OK\n");
71 }
72
73 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
74
75 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
76 !image_check_arch(rd_hdr, arch) ||
77 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
78 printf("No Linux %s Ramdisk Image\n",
79 genimg_get_arch_name(arch));
80 bootstage_error(BOOTSTAGE_ID_RAMDISK);
81 return NULL;
82 }
83
84 return rd_hdr;
85 }
86
87 /*****************************************************************************/
88 /* Shared dual-format routines */
89 /*****************************************************************************/
90 ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
91 ulong image_save_addr; /* Default Save Address */
92 ulong image_save_size; /* Default Save Size (in bytes) */
93
94 static int on_loadaddr(const char *name, const char *value, enum env_op op,
95 int flags)
96 {
97 switch (op) {
98 case env_op_create:
99 case env_op_overwrite:
100 image_load_addr = hextoul(value, NULL);
101 break;
102 default:
103 break;
104 }
105
106 return 0;
107 }
108 U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
109
110 ulong env_get_bootm_low(void)
111 {
112 char *s = env_get("bootm_low");
113
114 if (s) {
115 ulong tmp = hextoul(s, NULL);
116 return tmp;
117 }
118
119 #if defined(CFG_SYS_SDRAM_BASE)
120 return CFG_SYS_SDRAM_BASE;
121 #elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_RISCV)
122 return gd->bd->bi_dram[0].start;
123 #else
124 return 0;
125 #endif
126 }
127
128 phys_size_t env_get_bootm_size(void)
129 {
130 phys_size_t tmp, size;
131 phys_addr_t start;
132 char *s = env_get("bootm_size");
133
134 if (s) {
135 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
136 return tmp;
137 }
138
139 start = gd->ram_base;
140 size = gd->ram_size;
141
142 if (start + size > gd->ram_top)
143 size = gd->ram_top - start;
144
145 s = env_get("bootm_low");
146 if (s)
147 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
148 else
149 tmp = start;
150
151 return size - (tmp - start);
152 }
153
154 phys_size_t env_get_bootm_mapsize(void)
155 {
156 phys_size_t tmp;
157 char *s = env_get("bootm_mapsize");
158
159 if (s) {
160 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
161 return tmp;
162 }
163
164 #if defined(CFG_SYS_BOOTMAPSZ)
165 return CFG_SYS_BOOTMAPSZ;
166 #else
167 return env_get_bootm_size();
168 #endif
169 }
170
171 void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
172 {
173 if (to == from)
174 return;
175
176 if (IS_ENABLED(CONFIG_HW_WATCHDOG) || IS_ENABLED(CONFIG_WATCHDOG)) {
177 if (to > from) {
178 from += len;
179 to += len;
180 }
181 while (len > 0) {
182 size_t tail = (len > chunksz) ? chunksz : len;
183
184 schedule();
185 if (to > from) {
186 to -= tail;
187 from -= tail;
188 }
189 memmove(to, from, tail);
190 if (to < from) {
191 to += tail;
192 from += tail;
193 }
194 len -= tail;
195 }
196 } else {
197 memmove(to, from, len);
198 }
199 }
200
201 ulong genimg_get_kernel_addr_fit(const char *const img_addr,
202 const char **fit_uname_config,
203 const char **fit_uname_kernel)
204 {
205 ulong kernel_addr;
206
207 /* find out kernel image address */
208 if (!img_addr) {
209 kernel_addr = image_load_addr;
210 debug("* kernel: default image load address = 0x%08lx\n",
211 image_load_addr);
212 } else if (CONFIG_IS_ENABLED(FIT) &&
213 fit_parse_conf(img_addr, image_load_addr, &kernel_addr,
214 fit_uname_config)) {
215 debug("* kernel: config '%s' from image at 0x%08lx\n",
216 *fit_uname_config, kernel_addr);
217 } else if (CONFIG_IS_ENABLED(FIT) &&
218 fit_parse_subimage(img_addr, image_load_addr, &kernel_addr,
219 fit_uname_kernel)) {
220 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
221 *fit_uname_kernel, kernel_addr);
222 } else {
223 kernel_addr = hextoul(img_addr, NULL);
224 debug("* kernel: cmdline image address = 0x%08lx\n",
225 kernel_addr);
226 }
227
228 return kernel_addr;
229 }
230
231 /**
232 * genimg_get_kernel_addr() is the simple version of
233 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
234 */
235 ulong genimg_get_kernel_addr(char * const img_addr)
236 {
237 const char *fit_uname_config = NULL;
238 const char *fit_uname_kernel = NULL;
239
240 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
241 &fit_uname_kernel);
242 }
243
244 /**
245 * genimg_get_format - get image format type
246 * @img_addr: image start address
247 *
248 * genimg_get_format() checks whether provided address points to a valid
249 * legacy or FIT image.
250 *
251 * New uImage format and FDT blob are based on a libfdt. FDT blob
252 * may be passed directly or embedded in a FIT image. In both situations
253 * genimg_get_format() must be able to dectect libfdt header.
254 *
255 * returns:
256 * image format type or IMAGE_FORMAT_INVALID if no image is present
257 */
258 int genimg_get_format(const void *img_addr)
259 {
260 if (CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)) {
261 const struct legacy_img_hdr *hdr;
262
263 hdr = (const struct legacy_img_hdr *)img_addr;
264 if (image_check_magic(hdr))
265 return IMAGE_FORMAT_LEGACY;
266 }
267 if (CONFIG_IS_ENABLED(FIT) || CONFIG_IS_ENABLED(OF_LIBFDT)) {
268 if (!fdt_check_header(img_addr))
269 return IMAGE_FORMAT_FIT;
270 }
271 if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE) &&
272 is_android_boot_image_header(img_addr))
273 return IMAGE_FORMAT_ANDROID;
274
275 return IMAGE_FORMAT_INVALID;
276 }
277
278 /**
279 * fit_has_config - check if there is a valid FIT configuration
280 * @images: pointer to the bootm command headers structure
281 *
282 * fit_has_config() checks if there is a FIT configuration in use
283 * (if FTI support is present).
284 *
285 * returns:
286 * 0, no FIT support or no configuration found
287 * 1, configuration found
288 */
289 int genimg_has_config(struct bootm_headers *images)
290 {
291 if (CONFIG_IS_ENABLED(FIT) && images->fit_uname_cfg)
292 return 1;
293
294 return 0;
295 }
296
297 /**
298 * select_ramdisk() - Select and locate the ramdisk to use
299 *
300 * @images: pointer to the bootm images structure
301 * @select: name of ramdisk to select, or hex address, NULL for any
302 * @arch: expected ramdisk architecture
303 * @rd_datap: pointer to a ulong variable, will hold ramdisk pointer
304 * @rd_lenp: pointer to a ulong variable, will hold ramdisk length
305 * Return: 0 if OK, -ENOPKG if no ramdisk (but an error should not be reported),
306 * other -ve value on other error
307 */
308 static int select_ramdisk(struct bootm_headers *images, const char *select, u8 arch,
309 ulong *rd_datap, ulong *rd_lenp)
310 {
311 const char *fit_uname_config;
312 const char *fit_uname_ramdisk;
313 bool done_select = !select;
314 bool done = false;
315 int rd_noffset;
316 ulong rd_addr = 0;
317 char *buf;
318
319 if (CONFIG_IS_ENABLED(FIT)) {
320 fit_uname_config = images->fit_uname_cfg;
321 fit_uname_ramdisk = NULL;
322
323 if (select) {
324 ulong default_addr;
325 /*
326 * If the init ramdisk comes from the FIT image and
327 * the FIT image address is omitted in the command
328 * line argument, try to use os FIT image address or
329 * default load address.
330 */
331 if (images->fit_uname_os)
332 default_addr = (ulong)images->fit_hdr_os;
333 else
334 default_addr = image_load_addr;
335
336 if (fit_parse_conf(select, default_addr, &rd_addr,
337 &fit_uname_config)) {
338 debug("* ramdisk: config '%s' from image at 0x%08lx\n",
339 fit_uname_config, rd_addr);
340 done_select = true;
341 } else if (fit_parse_subimage(select, default_addr,
342 &rd_addr,
343 &fit_uname_ramdisk)) {
344 debug("* ramdisk: subimage '%s' from image at 0x%08lx\n",
345 fit_uname_ramdisk, rd_addr);
346 done_select = true;
347 }
348 }
349 }
350 if (!done_select) {
351 rd_addr = hextoul(select, NULL);
352 debug("* ramdisk: cmdline image address = 0x%08lx\n", rd_addr);
353 }
354 if (CONFIG_IS_ENABLED(FIT) && !select) {
355 /* use FIT configuration provided in first bootm
356 * command argument. If the property is not defined,
357 * quit silently (with -ENOPKG)
358 */
359 rd_addr = map_to_sysmem(images->fit_hdr_os);
360 rd_noffset = fit_get_node_from_config(images, FIT_RAMDISK_PROP,
361 rd_addr);
362 if (rd_noffset == -ENOENT)
363 return -ENOPKG;
364 else if (rd_noffset < 0)
365 return rd_noffset;
366 }
367
368 /*
369 * Check if there is an initrd image at the
370 * address provided in the second bootm argument
371 * check image type, for FIT images get FIT node.
372 */
373 buf = map_sysmem(rd_addr, 0);
374 switch (genimg_get_format(buf)) {
375 case IMAGE_FORMAT_LEGACY:
376 if (CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)) {
377 const struct legacy_img_hdr *rd_hdr;
378
379 printf("## Loading init Ramdisk from Legacy Image at %08lx ...\n",
380 rd_addr);
381
382 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
383 rd_hdr = image_get_ramdisk(rd_addr, arch,
384 images->verify);
385
386 if (!rd_hdr)
387 return -ENOENT;
388
389 *rd_datap = image_get_data(rd_hdr);
390 *rd_lenp = image_get_data_size(rd_hdr);
391 done = true;
392 }
393 break;
394 case IMAGE_FORMAT_FIT:
395 if (CONFIG_IS_ENABLED(FIT)) {
396 rd_noffset = fit_image_load(images, rd_addr,
397 &fit_uname_ramdisk,
398 &fit_uname_config,
399 arch, IH_TYPE_RAMDISK,
400 BOOTSTAGE_ID_FIT_RD_START,
401 FIT_LOAD_OPTIONAL_NON_ZERO,
402 rd_datap, rd_lenp);
403 if (rd_noffset < 0)
404 return rd_noffset;
405
406 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
407 images->fit_uname_rd = fit_uname_ramdisk;
408 images->fit_noffset_rd = rd_noffset;
409 done = true;
410 }
411 break;
412 case IMAGE_FORMAT_ANDROID:
413 if (IS_ENABLED(CONFIG_ANDROID_BOOT_IMAGE)) {
414 int ret;
415 if (IS_ENABLED(CONFIG_CMD_ABOOTIMG)) {
416 void *boot_img = map_sysmem(get_abootimg_addr(), 0);
417 void *vendor_boot_img = map_sysmem(get_avendor_bootimg_addr(), 0);
418
419 ret = android_image_get_ramdisk(boot_img, vendor_boot_img,
420 rd_datap, rd_lenp);
421 unmap_sysmem(vendor_boot_img);
422 unmap_sysmem(boot_img);
423 } else {
424 void *ptr = map_sysmem(images->os.start, 0);
425
426 ret = android_image_get_ramdisk(ptr, NULL, rd_datap, rd_lenp);
427 unmap_sysmem(ptr);
428 }
429
430 if (ret)
431 return ret;
432 done = true;
433 }
434 break;
435 }
436
437 if (!done) {
438 if (IS_ENABLED(CONFIG_SUPPORT_RAW_INITRD)) {
439 char *end = NULL;
440
441 if (select)
442 end = strchr(select, ':');
443 if (end) {
444 *rd_lenp = hextoul(++end, NULL);
445 *rd_datap = rd_addr;
446 done = true;
447 }
448 }
449
450 if (!done) {
451 puts("Wrong Ramdisk Image Format\n");
452 return -EINVAL;
453 }
454 }
455
456 return 0;
457 }
458
459 int boot_get_ramdisk(char const *select, struct bootm_headers *images,
460 uint arch, ulong *rd_start, ulong *rd_end)
461 {
462 ulong rd_data, rd_len;
463
464 *rd_start = 0;
465 *rd_end = 0;
466
467 /*
468 * Look for a '-' which indicates to ignore the
469 * ramdisk argument
470 */
471 if (select && strcmp(select, "-") == 0) {
472 debug("## Skipping init Ramdisk\n");
473 rd_len = 0;
474 rd_data = 0;
475 } else if (select || genimg_has_config(images)) {
476 int ret;
477
478 ret = select_ramdisk(images, select, arch, &rd_data, &rd_len);
479 if (ret == -ENOPKG)
480 return 0;
481 else if (ret)
482 return ret;
483 } else if (images->legacy_hdr_valid &&
484 image_check_type(&images->legacy_hdr_os_copy,
485 IH_TYPE_MULTI)) {
486 /*
487 * Now check if we have a legacy mult-component image,
488 * get second entry data start address and len.
489 */
490 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
491 printf("## Loading init Ramdisk from multi component Legacy Image at %08lx ...\n",
492 (ulong)images->legacy_hdr_os);
493
494 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
495 } else {
496 /*
497 * no initrd image
498 */
499 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
500 rd_len = 0;
501 rd_data = 0;
502 }
503
504 if (!rd_data) {
505 debug("## No init Ramdisk\n");
506 } else {
507 *rd_start = rd_data;
508 *rd_end = rd_data + rd_len;
509 }
510 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
511 *rd_start, *rd_end);
512
513 return 0;
514 }
515
516 /**
517 * boot_ramdisk_high - relocate init ramdisk
518 * @lmb: pointer to lmb handle, will be used for memory mgmt
519 * @rd_data: ramdisk data start address
520 * @rd_len: ramdisk data length
521 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
522 * start address (after possible relocation)
523 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
524 * end address (after possible relocation)
525 *
526 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
527 * variable and if requested ramdisk data is moved to a specified location.
528 *
529 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
530 * start/end addresses if ramdisk image start and len were provided,
531 * otherwise set initrd_start and initrd_end set to zeros.
532 *
533 * returns:
534 * 0 - success
535 * -1 - failure
536 */
537 int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
538 ulong *initrd_start, ulong *initrd_end)
539 {
540 char *s;
541 ulong initrd_high;
542 int initrd_copy_to_ram = 1;
543
544 s = env_get("initrd_high");
545 if (s) {
546 /* a value of "no" or a similar string will act like 0,
547 * turning the "load high" feature off. This is intentional.
548 */
549 initrd_high = hextoul(s, NULL);
550 if (initrd_high == ~0)
551 initrd_copy_to_ram = 0;
552 } else {
553 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
554 }
555
556 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
557 initrd_high, initrd_copy_to_ram);
558
559 if (rd_data) {
560 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
561 debug(" in-place initrd\n");
562 *initrd_start = rd_data;
563 *initrd_end = rd_data + rd_len;
564 lmb_reserve(lmb, rd_data, rd_len);
565 } else {
566 if (initrd_high)
567 *initrd_start = (ulong)lmb_alloc_base(lmb,
568 rd_len, 0x1000, initrd_high);
569 else
570 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
571 0x1000);
572
573 if (*initrd_start == 0) {
574 puts("ramdisk - allocation error\n");
575 goto error;
576 }
577 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
578
579 *initrd_end = *initrd_start + rd_len;
580 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
581 *initrd_start, *initrd_end);
582
583 memmove_wd((void *)*initrd_start,
584 (void *)rd_data, rd_len, CHUNKSZ);
585
586 /*
587 * Ensure the image is flushed to memory to handle
588 * AMP boot scenarios in which we might not be
589 * HW cache coherent
590 */
591 if (IS_ENABLED(CONFIG_MP)) {
592 flush_cache((unsigned long)*initrd_start,
593 ALIGN(rd_len, ARCH_DMA_MINALIGN));
594 }
595 puts("OK\n");
596 }
597 } else {
598 *initrd_start = 0;
599 *initrd_end = 0;
600 }
601 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
602 *initrd_start, *initrd_end);
603
604 return 0;
605
606 error:
607 return -1;
608 }
609
610 int boot_get_setup(struct bootm_headers *images, u8 arch,
611 ulong *setup_start, ulong *setup_len)
612 {
613 if (!CONFIG_IS_ENABLED(FIT))
614 return -ENOENT;
615
616 return boot_get_setup_fit(images, arch, setup_start, setup_len);
617 }
618
619 int boot_get_fpga(struct bootm_headers *images)
620 {
621 ulong tmp_img_addr, img_data, img_len;
622 void *buf;
623 int conf_noffset;
624 int fit_img_result;
625 const char *uname, *name;
626 int err;
627 int devnum = 0; /* TODO support multi fpga platforms */
628
629 if (!IS_ENABLED(CONFIG_FPGA))
630 return -ENOSYS;
631
632 /* Check to see if the images struct has a FIT configuration */
633 if (!genimg_has_config(images)) {
634 debug("## FIT configuration was not specified\n");
635 return 0;
636 }
637
638 /*
639 * Obtain the os FIT header from the images struct
640 */
641 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
642 buf = map_sysmem(tmp_img_addr, 0);
643 /*
644 * Check image type. For FIT images get FIT node
645 * and attempt to locate a generic binary.
646 */
647 switch (genimg_get_format(buf)) {
648 case IMAGE_FORMAT_FIT:
649 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
650
651 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
652 NULL);
653 if (!uname) {
654 debug("## FPGA image is not specified\n");
655 return 0;
656 }
657 fit_img_result = fit_image_load(images,
658 tmp_img_addr,
659 (const char **)&uname,
660 &images->fit_uname_cfg,
661 IH_ARCH_DEFAULT,
662 IH_TYPE_FPGA,
663 BOOTSTAGE_ID_FPGA_INIT,
664 FIT_LOAD_OPTIONAL_NON_ZERO,
665 &img_data, &img_len);
666
667 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
668 uname, img_data, img_len);
669
670 if (fit_img_result < 0) {
671 /* Something went wrong! */
672 return fit_img_result;
673 }
674
675 if (!fpga_is_partial_data(devnum, img_len)) {
676 name = "full";
677 err = fpga_loadbitstream(devnum, (char *)img_data,
678 img_len, BIT_FULL);
679 if (err)
680 err = fpga_load(devnum, (const void *)img_data,
681 img_len, BIT_FULL, 0);
682 } else {
683 name = "partial";
684 err = fpga_loadbitstream(devnum, (char *)img_data,
685 img_len, BIT_PARTIAL);
686 if (err)
687 err = fpga_load(devnum, (const void *)img_data,
688 img_len, BIT_PARTIAL, 0);
689 }
690
691 if (err)
692 return err;
693
694 printf(" Programming %s bitstream... OK\n", name);
695 break;
696 default:
697 printf("The given image format is not supported (corrupt?)\n");
698 return 1;
699 }
700
701 return 0;
702 }
703
704 static void fit_loadable_process(u8 img_type,
705 ulong img_data,
706 ulong img_len)
707 {
708 int i;
709 const unsigned int count =
710 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
711 struct fit_loadable_tbl *fit_loadable_handler =
712 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
713 /* For each loadable handler */
714 for (i = 0; i < count; i++, fit_loadable_handler++)
715 /* matching this type */
716 if (fit_loadable_handler->type == img_type)
717 /* call that handler with this image data */
718 fit_loadable_handler->handler(img_data, img_len);
719 }
720
721 int boot_get_loadable(struct bootm_headers *images)
722 {
723 /*
724 * These variables are used to hold the current image location
725 * in system memory.
726 */
727 ulong tmp_img_addr;
728 /*
729 * These two variables are requirements for fit_image_load, but
730 * their values are not used
731 */
732 ulong img_data, img_len;
733 void *buf;
734 int loadables_index;
735 int conf_noffset;
736 int fit_img_result;
737 const char *uname;
738 u8 img_type;
739
740 /* Check to see if the images struct has a FIT configuration */
741 if (!genimg_has_config(images)) {
742 debug("## FIT configuration was not specified\n");
743 return 0;
744 }
745
746 /*
747 * Obtain the os FIT header from the images struct
748 */
749 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
750 buf = map_sysmem(tmp_img_addr, 0);
751 /*
752 * Check image type. For FIT images get FIT node
753 * and attempt to locate a generic binary.
754 */
755 switch (genimg_get_format(buf)) {
756 case IMAGE_FORMAT_FIT:
757 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
758
759 for (loadables_index = 0;
760 uname = fdt_stringlist_get(buf, conf_noffset,
761 FIT_LOADABLE_PROP,
762 loadables_index, NULL), uname;
763 loadables_index++) {
764 fit_img_result = fit_image_load(images, tmp_img_addr,
765 &uname,
766 &images->fit_uname_cfg,
767 IH_ARCH_DEFAULT,
768 IH_TYPE_LOADABLE,
769 BOOTSTAGE_ID_FIT_LOADABLE_START,
770 FIT_LOAD_OPTIONAL_NON_ZERO,
771 &img_data, &img_len);
772 if (fit_img_result < 0) {
773 /* Something went wrong! */
774 return fit_img_result;
775 }
776
777 fit_img_result = fit_image_get_node(buf, uname);
778 if (fit_img_result < 0) {
779 /* Something went wrong! */
780 return fit_img_result;
781 }
782 fit_img_result = fit_image_get_type(buf,
783 fit_img_result,
784 &img_type);
785 if (fit_img_result < 0) {
786 /* Something went wrong! */
787 return fit_img_result;
788 }
789
790 fit_loadable_process(img_type, img_data, img_len);
791 }
792 break;
793 default:
794 printf("The given image format is not supported (corrupt?)\n");
795 return 1;
796 }
797
798 return 0;
799 }
800
801 /**
802 * boot_get_cmdline - allocate and initialize kernel cmdline
803 * @lmb: pointer to lmb handle, will be used for memory mgmt
804 * @cmd_start: pointer to a ulong variable, will hold cmdline start
805 * @cmd_end: pointer to a ulong variable, will hold cmdline end
806 *
807 * This allocates space for kernel command line below
808 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
809 * variable is present its contents is copied to allocated kernel
810 * command line.
811 *
812 * returns:
813 * 0 - success
814 * -1 - failure
815 */
816 int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
817 {
818 int barg;
819 char *cmdline;
820 char *s;
821
822 /*
823 * Help the compiler detect that this function is only called when
824 * CONFIG_SYS_BOOT_GET_CMDLINE is enabled
825 */
826 if (!IS_ENABLED(CONFIG_SYS_BOOT_GET_CMDLINE))
827 return 0;
828
829 barg = IF_ENABLED_INT(CONFIG_SYS_BOOT_GET_CMDLINE, CONFIG_SYS_BARGSIZE);
830 cmdline = (char *)(ulong)lmb_alloc_base(lmb, barg, 0xf,
831 env_get_bootm_mapsize() + env_get_bootm_low());
832 if (!cmdline)
833 return -1;
834
835 s = env_get("bootargs");
836 if (!s)
837 s = "";
838
839 strcpy(cmdline, s);
840
841 *cmd_start = (ulong)cmdline;
842 *cmd_end = *cmd_start + strlen(cmdline);
843
844 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
845
846 return 0;
847 }
848
849 /**
850 * boot_get_kbd - allocate and initialize kernel copy of board info
851 * @lmb: pointer to lmb handle, will be used for memory mgmt
852 * @kbd: double pointer to board info data
853 *
854 * boot_get_kbd() allocates space for kernel copy of board info data below
855 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
856 * with the current u-boot board info data.
857 *
858 * returns:
859 * 0 - success
860 * -1 - failure
861 */
862 int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd)
863 {
864 *kbd = (struct bd_info *)(ulong)lmb_alloc_base(lmb,
865 sizeof(struct bd_info),
866 0xf,
867 env_get_bootm_mapsize() +
868 env_get_bootm_low());
869 if (!*kbd)
870 return -1;
871
872 **kbd = *gd->bd;
873
874 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
875
876 if (_DEBUG && IS_ENABLED(CONFIG_CMD_BDI))
877 do_bdinfo(NULL, 0, 0, NULL);
878
879 return 0;
880 }
881
882 int image_setup_linux(struct bootm_headers *images)
883 {
884 ulong of_size = images->ft_len;
885 char **of_flat_tree = &images->ft_addr;
886 struct lmb *lmb = images_lmb(images);
887 int ret;
888
889 /* This function cannot be called without lmb support */
890 if (!IS_ENABLED(CONFIG_LMB))
891 return -EFAULT;
892 if (CONFIG_IS_ENABLED(OF_LIBFDT))
893 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
894
895 if (IS_ENABLED(CONFIG_SYS_BOOT_GET_CMDLINE)) {
896 ret = boot_get_cmdline(lmb, &images->cmdline_start,
897 &images->cmdline_end);
898 if (ret) {
899 puts("ERROR with allocation of cmdline\n");
900 return ret;
901 }
902 }
903
904 if (CONFIG_IS_ENABLED(OF_LIBFDT)) {
905 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
906 if (ret)
907 return ret;
908 }
909
910 if (CONFIG_IS_ENABLED(OF_LIBFDT) && of_size) {
911 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
912 if (ret)
913 return ret;
914 }
915
916 return 0;
917 }
918
919 void genimg_print_size(uint32_t size)
920 {
921 printf("%d Bytes = ", size);
922 print_size(size, "\n");
923 }
924
925 void genimg_print_time(time_t timestamp)
926 {
927 struct rtc_time tm;
928
929 rtc_to_tm(timestamp, &tm);
930 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
931 tm.tm_year, tm.tm_mon, tm.tm_mday,
932 tm.tm_hour, tm.tm_min, tm.tm_sec);
933 }
934
935 /**
936 * get_default_image() - Return default property from /images
937 *
938 * Return: Pointer to value of default property (or NULL)
939 */
940 static const char *get_default_image(const void *fit)
941 {
942 int images_noffset;
943
944 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
945 if (images_noffset < 0)
946 return NULL;
947
948 return fdt_getprop(fit, images_noffset, FIT_DEFAULT_PROP, NULL);
949 }
950
951 int image_locate_script(void *buf, int size, const char *fit_uname,
952 const char *confname, char **datap, uint *lenp)
953 {
954 const struct legacy_img_hdr *hdr;
955 const void *fit_data;
956 const void *fit_hdr;
957 size_t fit_len;
958 int noffset;
959 int verify;
960 ulong len;
961 u32 *data;
962
963 verify = env_get_yesno("verify");
964
965 switch (genimg_get_format(buf)) {
966 case IMAGE_FORMAT_LEGACY:
967 if (!IS_ENABLED(CONFIG_LEGACY_IMAGE_FORMAT)) {
968 goto exit_image_format;
969 } else {
970 hdr = buf;
971
972 if (!image_check_magic(hdr)) {
973 puts("Bad magic number\n");
974 return 1;
975 }
976
977 if (!image_check_hcrc(hdr)) {
978 puts("Bad header crc\n");
979 return 1;
980 }
981
982 if (verify) {
983 if (!image_check_dcrc(hdr)) {
984 puts("Bad data crc\n");
985 return 1;
986 }
987 }
988
989 if (!image_check_type(hdr, IH_TYPE_SCRIPT)) {
990 puts("Bad image type\n");
991 return 1;
992 }
993
994 /* get length of script */
995 data = (u32 *)image_get_data(hdr);
996
997 len = uimage_to_cpu(*data);
998 if (!len) {
999 puts("Empty Script\n");
1000 return 1;
1001 }
1002
1003 /*
1004 * scripts are just multi-image files with one
1005 * component, so seek past the zero-terminated sequence
1006 * of image lengths to get to the actual image data
1007 */
1008 while (*data++);
1009 }
1010 break;
1011 case IMAGE_FORMAT_FIT:
1012 if (!IS_ENABLED(CONFIG_FIT)) {
1013 goto exit_image_format;
1014 } else {
1015 fit_hdr = buf;
1016 if (fit_check_format(fit_hdr, IMAGE_SIZE_INVAL)) {
1017 puts("Bad FIT image format\n");
1018 return 1;
1019 }
1020
1021 if (!fit_uname) {
1022 /* If confname is empty, use the default */
1023 if (confname && *confname)
1024 noffset = fit_conf_get_node(fit_hdr, confname);
1025 else
1026 noffset = fit_conf_get_node(fit_hdr, NULL);
1027 if (noffset < 0) {
1028 if (!confname)
1029 goto fallback;
1030 printf("Could not find config %s\n", confname);
1031 return 1;
1032 }
1033
1034 if (verify && fit_config_verify(fit_hdr, noffset))
1035 return 1;
1036
1037 noffset = fit_conf_get_prop_node(fit_hdr,
1038 noffset,
1039 FIT_SCRIPT_PROP,
1040 IH_PHASE_NONE);
1041 if (noffset < 0) {
1042 if (!confname)
1043 goto fallback;
1044 printf("Could not find script in %s\n", confname);
1045 return 1;
1046 }
1047 } else {
1048 fallback:
1049 if (!fit_uname || !*fit_uname)
1050 fit_uname = get_default_image(fit_hdr);
1051 if (!fit_uname) {
1052 puts("No FIT subimage unit name\n");
1053 return 1;
1054 }
1055
1056 /* get script component image node offset */
1057 noffset = fit_image_get_node(fit_hdr, fit_uname);
1058 if (noffset < 0) {
1059 printf("Can't find '%s' FIT subimage\n",
1060 fit_uname);
1061 return 1;
1062 }
1063 }
1064
1065 if (!fit_image_check_type(fit_hdr, noffset,
1066 IH_TYPE_SCRIPT)) {
1067 puts("Not a image image\n");
1068 return 1;
1069 }
1070
1071 /* verify integrity */
1072 if (verify && !fit_image_verify(fit_hdr, noffset)) {
1073 puts("Bad Data Hash\n");
1074 return 1;
1075 }
1076
1077 /* get script subimage data address and length */
1078 if (fit_image_get_data_and_size(fit_hdr, noffset,
1079 &fit_data, &fit_len)) {
1080 puts("Could not find script subimage data\n");
1081 return 1;
1082 }
1083
1084 data = (u32 *)fit_data;
1085 len = (ulong)fit_len;
1086 }
1087 break;
1088 default:
1089 goto exit_image_format;
1090 }
1091
1092 *datap = (char *)data;
1093 *lenp = len;
1094
1095 return 0;
1096
1097 exit_image_format:
1098 puts("Wrong image format for \"source\" command\n");
1099 return -EPERM;
1100 }