2 * (C) Copyright 2008 Semihalf
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 #ifdef CONFIG_SHOW_BOOT_PROGRESS
31 #include <status_led.h>
34 #ifdef CONFIG_HAS_DATAFLASH
35 #include <dataflash.h>
38 #ifdef CONFIG_LOGBUFFER
42 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
48 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
51 #include <fdt_support.h>
54 #if defined(CONFIG_FIT)
55 #include <u-boot/md5.h>
58 static int fit_check_ramdisk(const void *fit, int os_noffset,
59 uint8_t arch, int verify);
63 extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
66 DECLARE_GLOBAL_DATA_PTR;
68 static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
72 #include <u-boot/md5.h>
75 #endif /* !USE_HOSTCC*/
77 static const table_entry_t uimage_arch[] = {
78 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
79 { IH_ARCH_ALPHA, "alpha", "Alpha", },
80 { IH_ARCH_ARM, "arm", "ARM", },
81 { IH_ARCH_I386, "x86", "Intel x86", },
82 { IH_ARCH_IA64, "ia64", "IA64", },
83 { IH_ARCH_M68K, "m68k", "M68K", },
84 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
85 { IH_ARCH_MIPS, "mips", "MIPS", },
86 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
87 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
88 { IH_ARCH_PPC, "powerpc", "PowerPC", },
89 { IH_ARCH_PPC, "ppc", "PowerPC", },
90 { IH_ARCH_S390, "s390", "IBM S390", },
91 { IH_ARCH_SH, "sh", "SuperH", },
92 { IH_ARCH_SPARC, "sparc", "SPARC", },
93 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
94 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
95 { IH_ARCH_AVR32, "avr32", "AVR32", },
96 { IH_ARCH_NDS32, "nds32", "NDS32", },
97 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
101 static const table_entry_t uimage_os[] = {
102 { IH_OS_INVALID, NULL, "Invalid OS", },
103 { IH_OS_LINUX, "linux", "Linux", },
104 #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
105 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
107 { IH_OS_NETBSD, "netbsd", "NetBSD", },
108 { IH_OS_OSE, "ose", "Enea OSE", },
109 { IH_OS_RTEMS, "rtems", "RTEMS", },
110 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
111 #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
112 { IH_OS_QNX, "qnx", "QNX", },
113 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
115 #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
116 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
119 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
120 { IH_OS_DELL, "dell", "Dell", },
121 { IH_OS_ESIX, "esix", "Esix", },
122 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
123 { IH_OS_IRIX, "irix", "Irix", },
124 { IH_OS_NCR, "ncr", "NCR", },
125 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
126 { IH_OS_PSOS, "psos", "pSOS", },
127 { IH_OS_SCO, "sco", "SCO", },
128 { IH_OS_SOLARIS, "solaris", "Solaris", },
129 { IH_OS_SVR4, "svr4", "SVR4", },
134 static const table_entry_t uimage_type[] = {
135 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
136 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
137 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
138 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
139 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
140 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
141 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
142 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
143 { IH_TYPE_INVALID, NULL, "Invalid Image", },
144 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
145 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
146 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
147 { IH_TYPE_SCRIPT, "script", "Script", },
148 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
149 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
153 static const table_entry_t uimage_comp[] = {
154 { IH_COMP_NONE, "none", "uncompressed", },
155 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
156 { IH_COMP_GZIP, "gzip", "gzip compressed", },
157 { IH_COMP_LZMA, "lzma", "lzma compressed", },
158 { IH_COMP_LZO, "lzo", "lzo compressed", },
162 uint32_t crc32(uint32_t, const unsigned char *, uint);
163 uint32_t crc32_wd(uint32_t, const unsigned char *, uint, uint);
164 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
165 static void genimg_print_time(time_t timestamp);
168 /*****************************************************************************/
169 /* Legacy format routines */
170 /*****************************************************************************/
171 int image_check_hcrc(const image_header_t *hdr)
174 ulong len = image_get_header_size();
175 image_header_t header;
177 /* Copy header so we can blank CRC field for re-calculation */
178 memmove(&header, (char *)hdr, image_get_header_size());
179 image_set_hcrc(&header, 0);
181 hcrc = crc32(0, (unsigned char *)&header, len);
183 return (hcrc == image_get_hcrc(hdr));
186 int image_check_dcrc(const image_header_t *hdr)
188 ulong data = image_get_data(hdr);
189 ulong len = image_get_data_size(hdr);
190 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
192 return (dcrc == image_get_dcrc(hdr));
196 * image_multi_count - get component (sub-image) count
197 * @hdr: pointer to the header of the multi component image
199 * image_multi_count() returns number of components in a multi
202 * Note: no checking of the image type is done, caller must pass
203 * a valid multi component image.
206 * number of components
208 ulong image_multi_count(const image_header_t *hdr)
213 /* get start of the image payload, which in case of multi
214 * component images that points to a table of component sizes */
215 size = (uint32_t *)image_get_data(hdr);
217 /* count non empty slots */
218 for (i = 0; size[i]; ++i)
225 * image_multi_getimg - get component data address and size
226 * @hdr: pointer to the header of the multi component image
227 * @idx: index of the requested component
228 * @data: pointer to a ulong variable, will hold component data address
229 * @len: pointer to a ulong variable, will hold component size
231 * image_multi_getimg() returns size and data address for the requested
232 * component in a multi component image.
234 * Note: no checking of the image type is done, caller must pass
235 * a valid multi component image.
238 * data address and size of the component, if idx is valid
239 * 0 in data and len, if idx is out of range
241 void image_multi_getimg(const image_header_t *hdr, ulong idx,
242 ulong *data, ulong *len)
246 ulong offset, count, img_data;
248 /* get number of component */
249 count = image_multi_count(hdr);
251 /* get start of the image payload, which in case of multi
252 * component images that points to a table of component sizes */
253 size = (uint32_t *)image_get_data(hdr);
255 /* get address of the proper component data start, which means
256 * skipping sizes table (add 1 for last, null entry) */
257 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
260 *len = uimage_to_cpu(size[idx]);
263 /* go over all indices preceding requested component idx */
264 for (i = 0; i < idx; i++) {
265 /* add up i-th component size, rounding up to 4 bytes */
266 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
269 /* calculate idx-th component data address */
270 *data = img_data + offset;
277 static void image_print_type(const image_header_t *hdr)
279 const char *os, *arch, *type, *comp;
281 os = genimg_get_os_name(image_get_os(hdr));
282 arch = genimg_get_arch_name(image_get_arch(hdr));
283 type = genimg_get_type_name(image_get_type(hdr));
284 comp = genimg_get_comp_name(image_get_comp(hdr));
286 printf("%s %s %s (%s)\n", arch, os, type, comp);
290 * image_print_contents - prints out the contents of the legacy format image
291 * @ptr: pointer to the legacy format image header
292 * @p: pointer to prefix string
294 * image_print_contents() formats a multi line legacy image contents description.
295 * The routine prints out all header fields followed by the size/offset data
296 * for MULTI/SCRIPT images.
299 * no returned results
301 void image_print_contents(const void *ptr)
303 const image_header_t *hdr = (const image_header_t *)ptr;
312 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
313 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
314 printf("%sCreated: ", p);
315 genimg_print_time((time_t)image_get_time(hdr));
317 printf("%sImage Type: ", p);
318 image_print_type(hdr);
319 printf("%sData Size: ", p);
320 genimg_print_size(image_get_data_size(hdr));
321 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
322 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
324 if (image_check_type(hdr, IH_TYPE_MULTI) ||
325 image_check_type(hdr, IH_TYPE_SCRIPT)) {
328 ulong count = image_multi_count(hdr);
330 printf("%sContents:\n", p);
331 for (i = 0; i < count; i++) {
332 image_multi_getimg(hdr, i, &data, &len);
334 printf("%s Image %d: ", p, i);
335 genimg_print_size(len);
337 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
339 * the user may need to know offsets
340 * if planning to do something with
343 printf("%s Offset = 0x%08lx\n", p, data);
352 * image_get_ramdisk - get and verify ramdisk image
353 * @rd_addr: ramdisk image start address
354 * @arch: expected ramdisk architecture
355 * @verify: checksum verification flag
357 * image_get_ramdisk() returns a pointer to the verified ramdisk image
358 * header. Routine receives image start address and expected architecture
359 * flag. Verification done covers data and header integrity and os/type/arch
362 * If dataflash support is enabled routine checks for dataflash addresses
363 * and handles required dataflash reads.
366 * pointer to a ramdisk image header, if image was found and valid
367 * otherwise, return NULL
369 static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
372 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
374 if (!image_check_magic(rd_hdr)) {
375 puts("Bad Magic Number\n");
376 show_boot_progress(-10);
380 if (!image_check_hcrc(rd_hdr)) {
381 puts("Bad Header Checksum\n");
382 show_boot_progress(-11);
386 show_boot_progress(10);
387 image_print_contents(rd_hdr);
390 puts(" Verifying Checksum ... ");
391 if (!image_check_dcrc(rd_hdr)) {
392 puts("Bad Data CRC\n");
393 show_boot_progress(-12);
399 show_boot_progress(11);
401 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
402 !image_check_arch(rd_hdr, arch) ||
403 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
404 printf("No Linux %s Ramdisk Image\n",
405 genimg_get_arch_name(arch));
406 show_boot_progress(-13);
412 #endif /* !USE_HOSTCC */
414 /*****************************************************************************/
415 /* Shared dual-format routines */
416 /*****************************************************************************/
418 int getenv_yesno(char *var)
420 char *s = getenv(var);
421 return (s && (*s == 'n')) ? 0 : 1;
424 ulong getenv_bootm_low(void)
426 char *s = getenv("bootm_low");
428 ulong tmp = simple_strtoul(s, NULL, 16);
432 #if defined(CONFIG_SYS_SDRAM_BASE)
433 return CONFIG_SYS_SDRAM_BASE;
434 #elif defined(CONFIG_ARM)
435 return gd->bd->bi_dram[0].start;
441 phys_size_t getenv_bootm_size(void)
444 char *s = getenv("bootm_size");
446 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
449 s = getenv("bootm_low");
451 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
456 #if defined(CONFIG_ARM)
457 return gd->bd->bi_dram[0].size - tmp;
459 return gd->bd->bi_memsize - tmp;
463 phys_size_t getenv_bootm_mapsize(void)
466 char *s = getenv("bootm_mapsize");
468 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
472 #if defined(CONFIG_SYS_BOOTMAPSZ)
473 return CONFIG_SYS_BOOTMAPSZ;
475 return getenv_bootm_size();
479 void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
484 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
486 size_t tail = (len > chunksz) ? chunksz : len;
488 memmove(to, from, tail);
493 #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
494 memmove(to, from, len);
495 #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
497 #endif /* !USE_HOSTCC */
499 void genimg_print_size(uint32_t size)
502 printf("%d Bytes = ", size);
503 print_size(size, "\n");
505 printf("%d Bytes = %.2f kB = %.2f MB\n",
506 size, (double)size / 1.024e3,
507 (double)size / 1.048576e6);
511 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
512 static void genimg_print_time(time_t timestamp)
517 to_tm(timestamp, &tm);
518 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
519 tm.tm_year, tm.tm_mon, tm.tm_mday,
520 tm.tm_hour, tm.tm_min, tm.tm_sec);
522 printf("%s", ctime(×tamp));
525 #endif /* CONFIG_TIMESTAMP || CONFIG_CMD_DATE || USE_HOSTCC */
528 * get_table_entry_name - translate entry id to long name
529 * @table: pointer to a translation table for entries of a specific type
530 * @msg: message to be returned when translation fails
531 * @id: entry id to be translated
533 * get_table_entry_name() will go over translation table trying to find
534 * entry that matches given id. If matching entry is found, its long
535 * name is returned to the caller.
538 * long entry name if translation succeeds
541 char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
543 for (; table->id >= 0; ++table) {
545 #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
548 return table->lname + gd->reloc_off;
554 const char *genimg_get_os_name(uint8_t os)
556 return (get_table_entry_name(uimage_os, "Unknown OS", os));
559 const char *genimg_get_arch_name(uint8_t arch)
561 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
565 const char *genimg_get_type_name(uint8_t type)
567 return (get_table_entry_name(uimage_type, "Unknown Image", type));
570 const char *genimg_get_comp_name(uint8_t comp)
572 return (get_table_entry_name(uimage_comp, "Unknown Compression",
577 * get_table_entry_id - translate short entry name to id
578 * @table: pointer to a translation table for entries of a specific type
579 * @table_name: to be used in case of error
580 * @name: entry short name to be translated
582 * get_table_entry_id() will go over translation table trying to find
583 * entry that matches given short name. If matching entry is found,
584 * its id returned to the caller.
587 * entry id if translation succeeds
590 int get_table_entry_id(const table_entry_t *table,
591 const char *table_name, const char *name)
593 const table_entry_t *t;
597 for (t = table; t->id >= 0; ++t) {
598 if (t->sname && strcasecmp(t->sname, name) == 0)
602 fprintf(stderr, "\nInvalid %s Type - valid names are", table_name);
603 for (t = table; t->id >= 0; ++t) {
604 if (t->sname == NULL)
606 fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname);
609 fprintf(stderr, "\n");
611 for (t = table; t->id >= 0; ++t) {
612 #ifdef CONFIG_NEEDS_MANUAL_RELOC
613 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
615 if (t->sname && strcmp(t->sname, name) == 0)
619 debug("Invalid %s Type: %s\n", table_name, name);
620 #endif /* USE_HOSTCC */
624 int genimg_get_os_id(const char *name)
626 return (get_table_entry_id(uimage_os, "OS", name));
629 int genimg_get_arch_id(const char *name)
631 return (get_table_entry_id(uimage_arch, "CPU", name));
634 int genimg_get_type_id(const char *name)
636 return (get_table_entry_id(uimage_type, "Image", name));
639 int genimg_get_comp_id(const char *name)
641 return (get_table_entry_id(uimage_comp, "Compression", name));
646 * genimg_get_format - get image format type
647 * @img_addr: image start address
649 * genimg_get_format() checks whether provided address points to a valid
650 * legacy or FIT image.
652 * New uImage format and FDT blob are based on a libfdt. FDT blob
653 * may be passed directly or embedded in a FIT image. In both situations
654 * genimg_get_format() must be able to dectect libfdt header.
657 * image format type or IMAGE_FORMAT_INVALID if no image is present
659 int genimg_get_format(void *img_addr)
661 ulong format = IMAGE_FORMAT_INVALID;
662 const image_header_t *hdr;
663 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
667 hdr = (const image_header_t *)img_addr;
668 if (image_check_magic(hdr))
669 format = IMAGE_FORMAT_LEGACY;
670 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
672 fit_hdr = (char *)img_addr;
673 if (fdt_check_header(fit_hdr) == 0)
674 format = IMAGE_FORMAT_FIT;
682 * genimg_get_image - get image from special storage (if necessary)
683 * @img_addr: image start address
685 * genimg_get_image() checks if provided image start adddress is located
686 * in a dataflash storage. If so, image is moved to a system RAM memory.
689 * image start address after possible relocation from special storage
691 ulong genimg_get_image(ulong img_addr)
693 ulong ram_addr = img_addr;
695 #ifdef CONFIG_HAS_DATAFLASH
696 ulong h_size, d_size;
698 if (addr_dataflash(img_addr)) {
699 /* ger RAM address */
700 ram_addr = CONFIG_SYS_LOAD_ADDR;
702 /* get header size */
703 h_size = image_get_header_size();
704 #if defined(CONFIG_FIT)
705 if (sizeof(struct fdt_header) > h_size)
706 h_size = sizeof(struct fdt_header);
710 debug(" Reading image header from dataflash address "
711 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
713 read_dataflash(img_addr, h_size, (char *)ram_addr);
716 switch (genimg_get_format((void *)ram_addr)) {
717 case IMAGE_FORMAT_LEGACY:
718 d_size = image_get_data_size(
719 (const image_header_t *)ram_addr);
720 debug(" Legacy format image found at 0x%08lx, "
724 #if defined(CONFIG_FIT)
725 case IMAGE_FORMAT_FIT:
726 d_size = fit_get_size((const void *)ram_addr) - h_size;
727 debug(" FIT/FDT format image found at 0x%08lx, "
733 printf(" No valid image found at 0x%08lx\n",
738 /* read in image data */
739 debug(" Reading image remaining data from dataflash address "
740 "%08lx to RAM address %08lx\n", img_addr + h_size,
743 read_dataflash(img_addr + h_size, d_size,
744 (char *)(ram_addr + h_size));
747 #endif /* CONFIG_HAS_DATAFLASH */
753 * fit_has_config - check if there is a valid FIT configuration
754 * @images: pointer to the bootm command headers structure
756 * fit_has_config() checks if there is a FIT configuration in use
757 * (if FTI support is present).
760 * 0, no FIT support or no configuration found
761 * 1, configuration found
763 int genimg_has_config(bootm_headers_t *images)
765 #if defined(CONFIG_FIT)
766 if (images->fit_uname_cfg)
773 * boot_get_ramdisk - main ramdisk handling routine
774 * @argc: command argument count
775 * @argv: command argument list
776 * @images: pointer to the bootm images structure
777 * @arch: expected ramdisk architecture
778 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
779 * @rd_end: pointer to a ulong variable, will hold ramdisk end
781 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
782 * Curently supported are the following ramdisk sources:
783 * - multicomponent kernel/ramdisk image,
784 * - commandline provided address of decicated ramdisk image.
787 * 0, if ramdisk image was found and valid, or skiped
788 * rd_start and rd_end are set to ramdisk start/end addresses if
789 * ramdisk image is found and valid
791 * 1, if ramdisk image is found but corrupted, or invalid
792 * rd_start and rd_end are set to 0 if no ramdisk exists
794 int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
795 uint8_t arch, ulong *rd_start, ulong *rd_end)
797 ulong rd_addr, rd_load;
798 ulong rd_data, rd_len;
799 const image_header_t *rd_hdr;
800 #if defined(CONFIG_FIT)
802 const char *fit_uname_config = NULL;
803 const char *fit_uname_ramdisk = NULL;
815 * Look for a '-' which indicates to ignore the
818 if ((argc >= 3) && (strcmp(argv[2], "-") == 0)) {
819 debug("## Skipping init Ramdisk\n");
820 rd_len = rd_data = 0;
821 } else if (argc >= 3 || genimg_has_config(images)) {
822 #if defined(CONFIG_FIT)
825 * If the init ramdisk comes from the FIT image and
826 * the FIT image address is omitted in the command
827 * line argument, try to use os FIT image address or
828 * default load address.
830 if (images->fit_uname_os)
831 default_addr = (ulong)images->fit_hdr_os;
833 default_addr = load_addr;
835 if (fit_parse_conf(argv[2], default_addr,
836 &rd_addr, &fit_uname_config)) {
837 debug("* ramdisk: config '%s' from image at "
839 fit_uname_config, rd_addr);
840 } else if (fit_parse_subimage(argv[2], default_addr,
841 &rd_addr, &fit_uname_ramdisk)) {
842 debug("* ramdisk: subimage '%s' from image at "
844 fit_uname_ramdisk, rd_addr);
848 rd_addr = simple_strtoul(argv[2], NULL, 16);
849 debug("* ramdisk: cmdline image address = "
853 #if defined(CONFIG_FIT)
855 /* use FIT configuration provided in first bootm
858 rd_addr = (ulong)images->fit_hdr_os;
859 fit_uname_config = images->fit_uname_cfg;
860 debug("* ramdisk: using config '%s' from image "
862 fit_uname_config, rd_addr);
865 * Check whether configuration has ramdisk defined,
866 * if not, don't try to use it, quit silently.
868 fit_hdr = (void *)rd_addr;
869 cfg_noffset = fit_conf_get_node(fit_hdr,
871 if (cfg_noffset < 0) {
872 debug("* ramdisk: no such config\n");
876 rd_noffset = fit_conf_get_ramdisk_node(fit_hdr,
878 if (rd_noffset < 0) {
879 debug("* ramdisk: no ramdisk in config\n");
885 /* copy from dataflash if needed */
886 rd_addr = genimg_get_image(rd_addr);
889 * Check if there is an initrd image at the
890 * address provided in the second bootm argument
891 * check image type, for FIT images get FIT node.
893 switch (genimg_get_format((void *)rd_addr)) {
894 case IMAGE_FORMAT_LEGACY:
895 printf("## Loading init Ramdisk from Legacy "
896 "Image at %08lx ...\n", rd_addr);
898 show_boot_progress(9);
899 rd_hdr = image_get_ramdisk(rd_addr, arch,
905 rd_data = image_get_data(rd_hdr);
906 rd_len = image_get_data_size(rd_hdr);
907 rd_load = image_get_load(rd_hdr);
909 #if defined(CONFIG_FIT)
910 case IMAGE_FORMAT_FIT:
911 fit_hdr = (void *)rd_addr;
912 printf("## Loading init Ramdisk from FIT "
913 "Image at %08lx ...\n", rd_addr);
915 show_boot_progress(120);
916 if (!fit_check_format(fit_hdr)) {
917 puts("Bad FIT ramdisk image format!\n");
918 show_boot_progress(-120);
921 show_boot_progress(121);
923 if (!fit_uname_ramdisk) {
925 * no ramdisk image node unit name, try to get config
926 * node first. If config unit node name is NULL
927 * fit_conf_get_node() will try to find default config node
929 show_boot_progress(122);
930 cfg_noffset = fit_conf_get_node(fit_hdr,
932 if (cfg_noffset < 0) {
933 puts("Could not find configuration "
935 show_boot_progress(-122);
938 fit_uname_config = fdt_get_name(fit_hdr,
940 printf(" Using '%s' configuration\n",
943 rd_noffset = fit_conf_get_ramdisk_node(fit_hdr,
945 fit_uname_ramdisk = fit_get_name(fit_hdr,
948 /* get ramdisk component image node offset */
949 show_boot_progress(123);
950 rd_noffset = fit_image_get_node(fit_hdr,
953 if (rd_noffset < 0) {
954 puts("Could not find subimage node\n");
955 show_boot_progress(-124);
959 printf(" Trying '%s' ramdisk subimage\n",
962 show_boot_progress(125);
963 if (!fit_check_ramdisk(fit_hdr, rd_noffset, arch,
967 /* get ramdisk image data address and length */
968 if (fit_image_get_data(fit_hdr, rd_noffset, &data,
970 puts("Could not find ramdisk subimage data!\n");
971 show_boot_progress(-127);
974 show_boot_progress(128);
976 rd_data = (ulong)data;
979 if (fit_image_get_load(fit_hdr, rd_noffset, &rd_load)) {
980 puts("Can't get ramdisk subimage load "
982 show_boot_progress(-129);
985 show_boot_progress(129);
987 images->fit_hdr_rd = fit_hdr;
988 images->fit_uname_rd = fit_uname_ramdisk;
989 images->fit_noffset_rd = rd_noffset;
993 puts("Wrong Ramdisk Image Format\n");
994 rd_data = rd_len = rd_load = 0;
997 } else if (images->legacy_hdr_valid &&
998 image_check_type(&images->legacy_hdr_os_copy,
1002 * Now check if we have a legacy mult-component image,
1003 * get second entry data start address and len.
1005 show_boot_progress(13);
1006 printf("## Loading init Ramdisk from multi component "
1007 "Legacy Image at %08lx ...\n",
1008 (ulong)images->legacy_hdr_os);
1010 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
1015 show_boot_progress(14);
1016 rd_len = rd_data = 0;
1020 debug("## No init Ramdisk\n");
1022 *rd_start = rd_data;
1023 *rd_end = rd_data + rd_len;
1025 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
1026 *rd_start, *rd_end);
1031 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
1033 * boot_ramdisk_high - relocate init ramdisk
1034 * @lmb: pointer to lmb handle, will be used for memory mgmt
1035 * @rd_data: ramdisk data start address
1036 * @rd_len: ramdisk data length
1037 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1038 * start address (after possible relocation)
1039 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1040 * end address (after possible relocation)
1042 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement
1043 * variable and if requested ramdisk data is moved to a specified location.
1045 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1046 * start/end addresses if ramdisk image start and len were provided,
1047 * otherwise set initrd_start and initrd_end set to zeros.
1053 int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
1054 ulong *initrd_start, ulong *initrd_end)
1058 int initrd_copy_to_ram = 1;
1060 if ((s = getenv("initrd_high")) != NULL) {
1061 /* a value of "no" or a similar string will act like 0,
1062 * turning the "load high" feature off. This is intentional.
1064 initrd_high = simple_strtoul(s, NULL, 16);
1065 if (initrd_high == ~0)
1066 initrd_copy_to_ram = 0;
1068 /* not set, no restrictions to load high */
1073 #ifdef CONFIG_LOGBUFFER
1074 /* Prevent initrd from overwriting logbuffer */
1075 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1078 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
1079 initrd_high, initrd_copy_to_ram);
1082 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
1083 debug(" in-place initrd\n");
1084 *initrd_start = rd_data;
1085 *initrd_end = rd_data + rd_len;
1086 lmb_reserve(lmb, rd_data, rd_len);
1089 *initrd_start = (ulong)lmb_alloc_base(lmb,
1090 rd_len, 0x1000, initrd_high);
1092 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1095 if (*initrd_start == 0) {
1096 puts("ramdisk - allocation error\n");
1099 show_boot_progress(12);
1101 *initrd_end = *initrd_start + rd_len;
1102 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
1103 *initrd_start, *initrd_end);
1105 memmove_wd((void *)*initrd_start,
1106 (void *)rd_data, rd_len, CHUNKSZ);
1110 * Ensure the image is flushed to memory to handle
1111 * AMP boot scenarios in which we might not be
1114 flush_cache((unsigned long)*initrd_start, rd_len);
1122 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
1123 *initrd_start, *initrd_end);
1130 #endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
1132 #ifdef CONFIG_OF_LIBFDT
1133 static void fdt_error(const char *msg)
1137 puts(" - must RESET the board to recover.\n");
1140 static const image_header_t *image_get_fdt(ulong fdt_addr)
1142 const image_header_t *fdt_hdr = (const image_header_t *)fdt_addr;
1144 image_print_contents(fdt_hdr);
1146 puts(" Verifying Checksum ... ");
1147 if (!image_check_hcrc(fdt_hdr)) {
1148 fdt_error("fdt header checksum invalid");
1152 if (!image_check_dcrc(fdt_hdr)) {
1153 fdt_error("fdt checksum invalid");
1158 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) {
1159 fdt_error("uImage is not a fdt");
1162 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) {
1163 fdt_error("uImage is compressed");
1166 if (fdt_check_header((char *)image_get_data(fdt_hdr)) != 0) {
1167 fdt_error("uImage data is not a fdt");
1174 * fit_check_fdt - verify FIT format FDT subimage
1175 * @fit_hdr: pointer to the FIT header
1176 * fdt_noffset: FDT subimage node offset within FIT image
1177 * @verify: data CRC verification flag
1179 * fit_check_fdt() verifies integrity of the FDT subimage and from
1180 * specified FIT image.
1186 #if defined(CONFIG_FIT)
1187 static int fit_check_fdt(const void *fit, int fdt_noffset, int verify)
1189 fit_image_print(fit, fdt_noffset, " ");
1192 puts(" Verifying Hash Integrity ... ");
1193 if (!fit_image_check_hashes(fit, fdt_noffset)) {
1194 fdt_error("Bad Data Hash");
1200 if (!fit_image_check_type(fit, fdt_noffset, IH_TYPE_FLATDT)) {
1201 fdt_error("Not a FDT image");
1205 if (!fit_image_check_comp(fit, fdt_noffset, IH_COMP_NONE)) {
1206 fdt_error("FDT image is compressed");
1212 #endif /* CONFIG_FIT */
1214 #ifndef CONFIG_SYS_FDT_PAD
1215 #define CONFIG_SYS_FDT_PAD 0x3000
1218 #if defined(CONFIG_OF_LIBFDT)
1220 * boot_fdt_add_mem_rsv_regions - Mark the memreserve sections as unusable
1221 * @lmb: pointer to lmb handle, will be used for memory mgmt
1222 * @fdt_blob: pointer to fdt blob base address
1224 * Adds the memreserve regions in the dtb to the lmb block. Adding the
1225 * memreserve regions prevents u-boot from using them to store the initrd
1228 void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob)
1230 uint64_t addr, size;
1233 if (fdt_check_header(fdt_blob) != 0)
1236 total = fdt_num_mem_rsv(fdt_blob);
1237 for (i = 0; i < total; i++) {
1238 if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0)
1240 printf(" reserving fdt memory region: addr=%llx size=%llx\n",
1241 (unsigned long long)addr, (unsigned long long)size);
1242 lmb_reserve(lmb, addr, size);
1247 * boot_relocate_fdt - relocate flat device tree
1248 * @lmb: pointer to lmb handle, will be used for memory mgmt
1249 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1250 * @of_size: pointer to a ulong variable, will hold fdt length
1252 * boot_relocate_fdt() allocates a region of memory within the bootmap and
1253 * relocates the of_flat_tree into that region, even if the fdt is already in
1254 * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD
1257 * of_flat_tree and of_size are set to final (after relocation) values
1263 int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size)
1265 void *fdt_blob = *of_flat_tree;
1270 int disable_relocation = 0;
1276 if (fdt_check_header(fdt_blob) != 0) {
1277 fdt_error("image is not a fdt");
1281 /* position on a 4K boundary before the alloc_current */
1282 /* Pad the FDT by a specified amount */
1283 of_len = *of_size + CONFIG_SYS_FDT_PAD;
1285 /* If fdt_high is set use it to select the relocation address */
1286 fdt_high = getenv("fdt_high");
1288 void *desired_addr = (void *)simple_strtoul(fdt_high, NULL, 16);
1290 if (((ulong) desired_addr) == ~0UL) {
1291 /* All ones means use fdt in place */
1292 of_start = fdt_blob;
1293 lmb_reserve(lmb, (ulong)of_start, of_len);
1294 disable_relocation = 1;
1295 } else if (desired_addr) {
1297 (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000,
1298 (ulong)desired_addr);
1299 if (of_start == 0) {
1300 puts("Failed using fdt_high value for Device Tree");
1305 (void *)(ulong) lmb_alloc(lmb, of_len, 0x1000);
1309 (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000,
1310 getenv_bootm_mapsize()
1311 + getenv_bootm_low());
1314 if (of_start == 0) {
1315 puts("device tree - allocation error\n");
1319 if (disable_relocation) {
1320 /* We assume there is space after the existing fdt to use for padding */
1321 fdt_set_totalsize(of_start, of_len);
1322 printf(" Using Device Tree in place at %p, end %p\n",
1323 of_start, of_start + of_len - 1);
1325 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
1326 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
1328 printf(" Loading Device Tree to %p, end %p ... ",
1329 of_start, of_start + of_len - 1);
1331 err = fdt_open_into(fdt_blob, of_start, of_len);
1333 fdt_error("fdt move failed");
1339 *of_flat_tree = of_start;
1342 set_working_fdt_addr(*of_flat_tree);
1348 #endif /* CONFIG_OF_LIBFDT */
1351 * boot_get_fdt - main fdt handling routine
1352 * @argc: command argument count
1353 * @argv: command argument list
1354 * @images: pointer to the bootm images structure
1355 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1356 * @of_size: pointer to a ulong variable, will hold fdt length
1358 * boot_get_fdt() is responsible for finding a valid flat device tree image.
1359 * Curently supported are the following ramdisk sources:
1360 * - multicomponent kernel/ramdisk image,
1361 * - commandline provided address of decicated ramdisk image.
1364 * 0, if fdt image was found and valid, or skipped
1365 * of_flat_tree and of_size are set to fdt start address and length if
1366 * fdt image is found and valid
1368 * 1, if fdt image is found but corrupted
1369 * of_flat_tree and of_size are set to 0 if no fdt exists
1371 int boot_get_fdt(int flag, int argc, char * const argv[],
1372 bootm_headers_t *images, char **of_flat_tree, ulong *of_size)
1374 const image_header_t *fdt_hdr;
1376 char *fdt_blob = NULL;
1377 ulong image_start, image_data, image_end;
1378 ulong load_start, load_end;
1379 #if defined(CONFIG_FIT)
1381 const char *fit_uname_config = NULL;
1382 const char *fit_uname_fdt = NULL;
1390 *of_flat_tree = NULL;
1393 if (argc > 3 || genimg_has_config(images)) {
1394 #if defined(CONFIG_FIT)
1397 * If the FDT blob comes from the FIT image and the
1398 * FIT image address is omitted in the command line
1399 * argument, try to use ramdisk or os FIT image
1400 * address or default load address.
1402 if (images->fit_uname_rd)
1403 default_addr = (ulong)images->fit_hdr_rd;
1404 else if (images->fit_uname_os)
1405 default_addr = (ulong)images->fit_hdr_os;
1407 default_addr = load_addr;
1409 if (fit_parse_conf(argv[3], default_addr,
1410 &fdt_addr, &fit_uname_config)) {
1411 debug("* fdt: config '%s' from image at "
1413 fit_uname_config, fdt_addr);
1414 } else if (fit_parse_subimage(argv[3], default_addr,
1415 &fdt_addr, &fit_uname_fdt)) {
1416 debug("* fdt: subimage '%s' from image at "
1418 fit_uname_fdt, fdt_addr);
1422 fdt_addr = simple_strtoul(argv[3], NULL, 16);
1423 debug("* fdt: cmdline image address = "
1427 #if defined(CONFIG_FIT)
1429 /* use FIT configuration provided in first bootm
1432 fdt_addr = (ulong)images->fit_hdr_os;
1433 fit_uname_config = images->fit_uname_cfg;
1434 debug("* fdt: using config '%s' from image "
1436 fit_uname_config, fdt_addr);
1439 * Check whether configuration has FDT blob defined,
1440 * if not quit silently.
1442 fit_hdr = (void *)fdt_addr;
1443 cfg_noffset = fit_conf_get_node(fit_hdr,
1445 if (cfg_noffset < 0) {
1446 debug("* fdt: no such config\n");
1450 fdt_noffset = fit_conf_get_fdt_node(fit_hdr,
1452 if (fdt_noffset < 0) {
1453 debug("* fdt: no fdt in config\n");
1459 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
1462 /* copy from dataflash if needed */
1463 fdt_addr = genimg_get_image(fdt_addr);
1466 * Check if there is an FDT image at the
1467 * address provided in the second bootm argument
1468 * check image type, for FIT images get a FIT node.
1470 switch (genimg_get_format((void *)fdt_addr)) {
1471 case IMAGE_FORMAT_LEGACY:
1472 /* verify fdt_addr points to a valid image header */
1473 printf("## Flattened Device Tree from Legacy Image "
1476 fdt_hdr = image_get_fdt(fdt_addr);
1481 * move image data to the load address,
1482 * make sure we don't overwrite initial image
1484 image_start = (ulong)fdt_hdr;
1485 image_data = (ulong)image_get_data(fdt_hdr);
1486 image_end = image_get_image_end(fdt_hdr);
1488 load_start = image_get_load(fdt_hdr);
1489 load_end = load_start + image_get_data_size(fdt_hdr);
1491 if (load_start == image_start ||
1492 load_start == image_data) {
1493 fdt_blob = (char *)image_data;
1497 if ((load_start < image_end) && (load_end > image_start)) {
1498 fdt_error("fdt overwritten");
1502 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
1503 image_data, load_start);
1505 memmove((void *)load_start,
1507 image_get_data_size(fdt_hdr));
1509 fdt_blob = (char *)load_start;
1511 case IMAGE_FORMAT_FIT:
1513 * This case will catch both: new uImage format
1514 * (libfdt based) and raw FDT blob (also libfdt
1517 #if defined(CONFIG_FIT)
1518 /* check FDT blob vs FIT blob */
1519 if (fit_check_format((const void *)fdt_addr)) {
1523 fit_hdr = (void *)fdt_addr;
1524 printf("## Flattened Device Tree from FIT "
1528 if (!fit_uname_fdt) {
1530 * no FDT blob image node unit name,
1531 * try to get config node first. If
1532 * config unit node name is NULL
1533 * fit_conf_get_node() will try to
1534 * find default config node
1536 cfg_noffset = fit_conf_get_node(fit_hdr,
1539 if (cfg_noffset < 0) {
1540 fdt_error("Could not find "
1546 fit_uname_config = fdt_get_name(fit_hdr,
1548 printf(" Using '%s' configuration\n",
1551 fdt_noffset = fit_conf_get_fdt_node(
1554 fit_uname_fdt = fit_get_name(fit_hdr,
1557 /* get FDT component image node offset */
1558 fdt_noffset = fit_image_get_node(
1562 if (fdt_noffset < 0) {
1563 fdt_error("Could not find subimage "
1568 printf(" Trying '%s' FDT blob subimage\n",
1571 if (!fit_check_fdt(fit_hdr, fdt_noffset,
1575 /* get ramdisk image data address and length */
1576 if (fit_image_get_data(fit_hdr, fdt_noffset,
1578 fdt_error("Could not find FDT "
1583 /* verift that image data is a proper FDT blob */
1584 if (fdt_check_header((char *)data) != 0) {
1585 fdt_error("Subimage data is not a FTD");
1590 * move image data to the load address,
1591 * make sure we don't overwrite initial image
1593 image_start = (ulong)fit_hdr;
1594 image_end = fit_get_end(fit_hdr);
1596 if (fit_image_get_load(fit_hdr, fdt_noffset,
1597 &load_start) == 0) {
1598 load_end = load_start + size;
1600 if ((load_start < image_end) &&
1601 (load_end > image_start)) {
1602 fdt_error("FDT overwritten");
1606 printf(" Loading FDT from 0x%08lx "
1611 memmove((void *)load_start,
1612 (void *)data, size);
1614 fdt_blob = (char *)load_start;
1616 fdt_blob = (char *)data;
1619 images->fit_hdr_fdt = fit_hdr;
1620 images->fit_uname_fdt = fit_uname_fdt;
1621 images->fit_noffset_fdt = fdt_noffset;
1629 fdt_blob = (char *)fdt_addr;
1630 debug("* fdt: raw FDT blob\n");
1631 printf("## Flattened Device Tree blob at "
1632 "%08lx\n", (long)fdt_blob);
1636 puts("ERROR: Did not find a cmdline Flattened Device "
1641 printf(" Booting using the fdt blob at 0x%p\n", fdt_blob);
1643 } else if (images->legacy_hdr_valid &&
1644 image_check_type(&images->legacy_hdr_os_copy,
1647 ulong fdt_data, fdt_len;
1650 * Now check if we have a legacy multi-component image,
1651 * get second entry data start address and len.
1653 printf("## Flattened Device Tree from multi "
1654 "component Image at %08lX\n",
1655 (ulong)images->legacy_hdr_os);
1657 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
1661 fdt_blob = (char *)fdt_data;
1662 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
1664 if (fdt_check_header(fdt_blob) != 0) {
1665 fdt_error("image is not a fdt");
1669 if (fdt_totalsize(fdt_blob) != fdt_len) {
1670 fdt_error("fdt size != image size");
1674 debug("## No Flattened Device Tree\n");
1678 debug("## No Flattened Device Tree\n");
1682 *of_flat_tree = fdt_blob;
1683 *of_size = fdt_totalsize(fdt_blob);
1684 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
1685 (ulong)*of_flat_tree, *of_size);
1694 #endif /* CONFIG_OF_LIBFDT */
1696 #ifdef CONFIG_SYS_BOOT_GET_CMDLINE
1698 * boot_get_cmdline - allocate and initialize kernel cmdline
1699 * @lmb: pointer to lmb handle, will be used for memory mgmt
1700 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1701 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1703 * boot_get_cmdline() allocates space for kernel command line below
1704 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
1705 * variable is present its contents is copied to allocated kernel
1712 int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
1717 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
1718 getenv_bootm_mapsize() + getenv_bootm_low());
1720 if (cmdline == NULL)
1723 if ((s = getenv("bootargs")) == NULL)
1728 *cmd_start = (ulong) & cmdline[0];
1729 *cmd_end = *cmd_start + strlen(cmdline);
1731 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
1735 #endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
1737 #ifdef CONFIG_SYS_BOOT_GET_KBD
1739 * boot_get_kbd - allocate and initialize kernel copy of board info
1740 * @lmb: pointer to lmb handle, will be used for memory mgmt
1741 * @kbd: double pointer to board info data
1743 * boot_get_kbd() allocates space for kernel copy of board info data below
1744 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1745 * with the current u-boot board info data.
1751 int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
1753 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
1754 getenv_bootm_mapsize() + getenv_bootm_low());
1760 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
1762 #if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1763 do_bdinfo(NULL, 0, 0, NULL);
1768 #endif /* CONFIG_SYS_BOOT_GET_KBD */
1769 #endif /* !USE_HOSTCC */
1771 #if defined(CONFIG_FIT)
1772 /*****************************************************************************/
1773 /* New uImage format routines */
1774 /*****************************************************************************/
1776 static int fit_parse_spec(const char *spec, char sepc, ulong addr_curr,
1777 ulong *addr, const char **name)
1784 sep = strchr(spec, sepc);
1787 *addr = simple_strtoul(spec, NULL, 16);
1797 * fit_parse_conf - parse FIT configuration spec
1798 * @spec: input string, containing configuration spec
1799 * @add_curr: current image address (to be used as a possible default)
1800 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1802 * @conf_name double pointer to a char, will hold pointer to a configuration
1805 * fit_parse_conf() expects configuration spec in the for of [<addr>]#<conf>,
1806 * where <addr> is a FIT image address that contains configuration
1807 * with a <conf> unit name.
1809 * Address part is optional, and if omitted default add_curr will
1813 * 1 if spec is a valid configuration string,
1814 * addr and conf_name are set accordingly
1817 inline int fit_parse_conf(const char *spec, ulong addr_curr,
1818 ulong *addr, const char **conf_name)
1820 return fit_parse_spec(spec, '#', addr_curr, addr, conf_name);
1824 * fit_parse_subimage - parse FIT subimage spec
1825 * @spec: input string, containing subimage spec
1826 * @add_curr: current image address (to be used as a possible default)
1827 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1829 * @image_name: double pointer to a char, will hold pointer to a subimage name
1831 * fit_parse_subimage() expects subimage spec in the for of
1832 * [<addr>]:<subimage>, where <addr> is a FIT image address that contains
1833 * subimage with a <subimg> unit name.
1835 * Address part is optional, and if omitted default add_curr will
1839 * 1 if spec is a valid subimage string,
1840 * addr and image_name are set accordingly
1843 inline int fit_parse_subimage(const char *spec, ulong addr_curr,
1844 ulong *addr, const char **image_name)
1846 return fit_parse_spec(spec, ':', addr_curr, addr, image_name);
1848 #endif /* !USE_HOSTCC */
1850 static void fit_get_debug(const void *fit, int noffset,
1851 char *prop_name, int err)
1853 debug("Can't get '%s' property from FIT 0x%08lx, "
1854 "node: offset %d, name %s (%s)\n",
1855 prop_name, (ulong)fit, noffset,
1856 fit_get_name(fit, noffset, NULL),
1861 * fit_print_contents - prints out the contents of the FIT format image
1862 * @fit: pointer to the FIT format image header
1863 * @p: pointer to prefix string
1865 * fit_print_contents() formats a multi line FIT image contents description.
1866 * The routine prints out FIT image properties (root node level) follwed by
1867 * the details of each component image.
1870 * no returned results
1872 void fit_print_contents(const void *fit)
1883 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1893 /* Root node properties */
1894 ret = fit_get_desc(fit, 0, &desc);
1895 printf("%sFIT description: ", p);
1897 printf("unavailable\n");
1899 printf("%s\n", desc);
1901 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1902 ret = fit_get_timestamp(fit, 0, ×tamp);
1903 printf("%sCreated: ", p);
1905 printf("unavailable\n");
1907 genimg_print_time(timestamp);
1910 /* Find images parent node offset */
1911 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
1912 if (images_noffset < 0) {
1913 printf("Can't find images parent node '%s' (%s)\n",
1914 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
1918 /* Process its subnodes, print out component images details */
1919 for (ndepth = 0, count = 0,
1920 noffset = fdt_next_node(fit, images_noffset, &ndepth);
1921 (noffset >= 0) && (ndepth > 0);
1922 noffset = fdt_next_node(fit, noffset, &ndepth)) {
1925 * Direct child node of the images parent node,
1926 * i.e. component image node.
1928 printf("%s Image %u (%s)\n", p, count++,
1929 fit_get_name(fit, noffset, NULL));
1931 fit_image_print(fit, noffset, p);
1935 /* Find configurations parent node offset */
1936 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
1937 if (confs_noffset < 0) {
1938 debug("Can't get configurations parent node '%s' (%s)\n",
1939 FIT_CONFS_PATH, fdt_strerror(confs_noffset));
1943 /* get default configuration unit name from default property */
1944 uname = (char *)fdt_getprop(fit, noffset, FIT_DEFAULT_PROP, NULL);
1946 printf("%s Default Configuration: '%s'\n", p, uname);
1948 /* Process its subnodes, print out configurations details */
1949 for (ndepth = 0, count = 0,
1950 noffset = fdt_next_node(fit, confs_noffset, &ndepth);
1951 (noffset >= 0) && (ndepth > 0);
1952 noffset = fdt_next_node(fit, noffset, &ndepth)) {
1955 * Direct child node of the configurations parent node,
1956 * i.e. configuration node.
1958 printf("%s Configuration %u (%s)\n", p, count++,
1959 fit_get_name(fit, noffset, NULL));
1961 fit_conf_print(fit, noffset, p);
1967 * fit_image_print - prints out the FIT component image details
1968 * @fit: pointer to the FIT format image header
1969 * @image_noffset: offset of the component image node
1970 * @p: pointer to prefix string
1972 * fit_image_print() lists all mandatory properies for the processed component
1973 * image. If present, hash nodes are printed out as well. Load
1974 * address for images of type firmware is also printed out. Since the load
1975 * address is not mandatory for firmware images, it will be output as
1976 * "unavailable" when not present.
1979 * no returned results
1981 void fit_image_print(const void *fit, int image_noffset, const char *p)
1984 uint8_t type, arch, os, comp;
1992 /* Mandatory properties */
1993 ret = fit_get_desc(fit, image_noffset, &desc);
1994 printf("%s Description: ", p);
1996 printf("unavailable\n");
1998 printf("%s\n", desc);
2000 fit_image_get_type(fit, image_noffset, &type);
2001 printf("%s Type: %s\n", p, genimg_get_type_name(type));
2003 fit_image_get_comp(fit, image_noffset, &comp);
2004 printf("%s Compression: %s\n", p, genimg_get_comp_name(comp));
2006 ret = fit_image_get_data(fit, image_noffset, &data, &size);
2009 printf("%s Data Start: ", p);
2011 printf("unavailable\n");
2013 printf("0x%08lx\n", (ulong)data);
2016 printf("%s Data Size: ", p);
2018 printf("unavailable\n");
2020 genimg_print_size(size);
2022 /* Remaining, type dependent properties */
2023 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
2024 (type == IH_TYPE_RAMDISK) || (type == IH_TYPE_FIRMWARE) ||
2025 (type == IH_TYPE_FLATDT)) {
2026 fit_image_get_arch(fit, image_noffset, &arch);
2027 printf("%s Architecture: %s\n", p, genimg_get_arch_name(arch));
2030 if (type == IH_TYPE_KERNEL) {
2031 fit_image_get_os(fit, image_noffset, &os);
2032 printf("%s OS: %s\n", p, genimg_get_os_name(os));
2035 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
2036 (type == IH_TYPE_FIRMWARE)) {
2037 ret = fit_image_get_load(fit, image_noffset, &load);
2038 printf("%s Load Address: ", p);
2040 printf("unavailable\n");
2042 printf("0x%08lx\n", load);
2045 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE)) {
2046 fit_image_get_entry(fit, image_noffset, &entry);
2047 printf("%s Entry Point: ", p);
2049 printf("unavailable\n");
2051 printf("0x%08lx\n", entry);
2054 /* Process all hash subnodes of the component image node */
2055 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth);
2056 (noffset >= 0) && (ndepth > 0);
2057 noffset = fdt_next_node(fit, noffset, &ndepth)) {
2059 /* Direct child node of the component image node */
2060 fit_image_print_hash(fit, noffset, p);
2066 * fit_image_print_hash - prints out the hash node details
2067 * @fit: pointer to the FIT format image header
2068 * @noffset: offset of the hash node
2069 * @p: pointer to prefix string
2071 * fit_image_print_hash() lists properies for the processed hash node
2074 * no returned results
2076 void fit_image_print_hash(const void *fit, int noffset, const char *p)
2084 * Check subnode name, must be equal to "hash".
2085 * Multiple hash nodes require unique unit node
2086 * names, e.g. hash@1, hash@2, etc.
2088 if (strncmp(fit_get_name(fit, noffset, NULL),
2090 strlen(FIT_HASH_NODENAME)) != 0)
2093 debug("%s Hash node: '%s'\n", p,
2094 fit_get_name(fit, noffset, NULL));
2096 printf("%s Hash algo: ", p);
2097 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
2098 printf("invalid/unsupported\n");
2101 printf("%s\n", algo);
2103 ret = fit_image_hash_get_value(fit, noffset, &value,
2105 printf("%s Hash value: ", p);
2107 printf("unavailable\n");
2109 for (i = 0; i < value_len; i++)
2110 printf("%02x", value[i]);
2114 debug("%s Hash len: %d\n", p, value_len);
2118 * fit_get_desc - get node description property
2119 * @fit: pointer to the FIT format image header
2120 * @noffset: node offset
2121 * @desc: double pointer to the char, will hold pointer to the descrption
2123 * fit_get_desc() reads description property from a given node, if
2124 * description is found pointer to it is returened in third call argument.
2130 int fit_get_desc(const void *fit, int noffset, char **desc)
2134 *desc = (char *)fdt_getprop(fit, noffset, FIT_DESC_PROP, &len);
2135 if (*desc == NULL) {
2136 fit_get_debug(fit, noffset, FIT_DESC_PROP, len);
2144 * fit_get_timestamp - get node timestamp property
2145 * @fit: pointer to the FIT format image header
2146 * @noffset: node offset
2147 * @timestamp: pointer to the time_t, will hold read timestamp
2149 * fit_get_timestamp() reads timestamp poperty from given node, if timestamp
2150 * is found and has a correct size its value is retured in third call
2155 * -1, on property read failure
2156 * -2, on wrong timestamp size
2158 int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp)
2163 data = fdt_getprop(fit, noffset, FIT_TIMESTAMP_PROP, &len);
2165 fit_get_debug(fit, noffset, FIT_TIMESTAMP_PROP, len);
2168 if (len != sizeof(uint32_t)) {
2169 debug("FIT timestamp with incorrect size of (%u)\n", len);
2173 *timestamp = uimage_to_cpu(*((uint32_t *)data));
2178 * fit_image_get_node - get node offset for component image of a given unit name
2179 * @fit: pointer to the FIT format image header
2180 * @image_uname: component image node unit name
2182 * fit_image_get_node() finds a component image (withing the '/images'
2183 * node) of a provided unit name. If image is found its node offset is
2184 * returned to the caller.
2187 * image node offset when found (>=0)
2188 * negative number on failure (FDT_ERR_* code)
2190 int fit_image_get_node(const void *fit, const char *image_uname)
2192 int noffset, images_noffset;
2194 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
2195 if (images_noffset < 0) {
2196 debug("Can't find images parent node '%s' (%s)\n",
2197 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
2198 return images_noffset;
2201 noffset = fdt_subnode_offset(fit, images_noffset, image_uname);
2203 debug("Can't get node offset for image unit name: '%s' (%s)\n",
2204 image_uname, fdt_strerror(noffset));
2211 * fit_image_get_os - get os id for a given component image node
2212 * @fit: pointer to the FIT format image header
2213 * @noffset: component image node offset
2214 * @os: pointer to the uint8_t, will hold os numeric id
2216 * fit_image_get_os() finds os property in a given component image node.
2217 * If the property is found, its (string) value is translated to the numeric
2218 * id which is returned to the caller.
2224 int fit_image_get_os(const void *fit, int noffset, uint8_t *os)
2229 /* Get OS name from property data */
2230 data = fdt_getprop(fit, noffset, FIT_OS_PROP, &len);
2232 fit_get_debug(fit, noffset, FIT_OS_PROP, len);
2237 /* Translate OS name to id */
2238 *os = genimg_get_os_id(data);
2243 * fit_image_get_arch - get arch id for a given component image node
2244 * @fit: pointer to the FIT format image header
2245 * @noffset: component image node offset
2246 * @arch: pointer to the uint8_t, will hold arch numeric id
2248 * fit_image_get_arch() finds arch property in a given component image node.
2249 * If the property is found, its (string) value is translated to the numeric
2250 * id which is returned to the caller.
2256 int fit_image_get_arch(const void *fit, int noffset, uint8_t *arch)
2261 /* Get architecture name from property data */
2262 data = fdt_getprop(fit, noffset, FIT_ARCH_PROP, &len);
2264 fit_get_debug(fit, noffset, FIT_ARCH_PROP, len);
2269 /* Translate architecture name to id */
2270 *arch = genimg_get_arch_id(data);
2275 * fit_image_get_type - get type id for a given component image node
2276 * @fit: pointer to the FIT format image header
2277 * @noffset: component image node offset
2278 * @type: pointer to the uint8_t, will hold type numeric id
2280 * fit_image_get_type() finds type property in a given component image node.
2281 * If the property is found, its (string) value is translated to the numeric
2282 * id which is returned to the caller.
2288 int fit_image_get_type(const void *fit, int noffset, uint8_t *type)
2293 /* Get image type name from property data */
2294 data = fdt_getprop(fit, noffset, FIT_TYPE_PROP, &len);
2296 fit_get_debug(fit, noffset, FIT_TYPE_PROP, len);
2301 /* Translate image type name to id */
2302 *type = genimg_get_type_id(data);
2307 * fit_image_get_comp - get comp id for a given component image node
2308 * @fit: pointer to the FIT format image header
2309 * @noffset: component image node offset
2310 * @comp: pointer to the uint8_t, will hold comp numeric id
2312 * fit_image_get_comp() finds comp property in a given component image node.
2313 * If the property is found, its (string) value is translated to the numeric
2314 * id which is returned to the caller.
2320 int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp)
2325 /* Get compression name from property data */
2326 data = fdt_getprop(fit, noffset, FIT_COMP_PROP, &len);
2328 fit_get_debug(fit, noffset, FIT_COMP_PROP, len);
2333 /* Translate compression name to id */
2334 *comp = genimg_get_comp_id(data);
2339 * fit_image_get_load - get load address property for a given component image node
2340 * @fit: pointer to the FIT format image header
2341 * @noffset: component image node offset
2342 * @load: pointer to the uint32_t, will hold load address
2344 * fit_image_get_load() finds load address property in a given component image node.
2345 * If the property is found, its value is returned to the caller.
2351 int fit_image_get_load(const void *fit, int noffset, ulong *load)
2354 const uint32_t *data;
2356 data = fdt_getprop(fit, noffset, FIT_LOAD_PROP, &len);
2358 fit_get_debug(fit, noffset, FIT_LOAD_PROP, len);
2362 *load = uimage_to_cpu(*data);
2367 * fit_image_get_entry - get entry point address property for a given component image node
2368 * @fit: pointer to the FIT format image header
2369 * @noffset: component image node offset
2370 * @entry: pointer to the uint32_t, will hold entry point address
2372 * fit_image_get_entry() finds entry point address property in a given component image node.
2373 * If the property is found, its value is returned to the caller.
2379 int fit_image_get_entry(const void *fit, int noffset, ulong *entry)
2382 const uint32_t *data;
2384 data = fdt_getprop(fit, noffset, FIT_ENTRY_PROP, &len);
2386 fit_get_debug(fit, noffset, FIT_ENTRY_PROP, len);
2390 *entry = uimage_to_cpu(*data);
2395 * fit_image_get_data - get data property and its size for a given component image node
2396 * @fit: pointer to the FIT format image header
2397 * @noffset: component image node offset
2398 * @data: double pointer to void, will hold data property's data address
2399 * @size: pointer to size_t, will hold data property's data size
2401 * fit_image_get_data() finds data property in a given component image node.
2402 * If the property is found its data start address and size are returned to
2409 int fit_image_get_data(const void *fit, int noffset,
2410 const void **data, size_t *size)
2414 *data = fdt_getprop(fit, noffset, FIT_DATA_PROP, &len);
2415 if (*data == NULL) {
2416 fit_get_debug(fit, noffset, FIT_DATA_PROP, len);
2426 * fit_image_hash_get_algo - get hash algorithm name
2427 * @fit: pointer to the FIT format image header
2428 * @noffset: hash node offset
2429 * @algo: double pointer to char, will hold pointer to the algorithm name
2431 * fit_image_hash_get_algo() finds hash algorithm property in a given hash node.
2432 * If the property is found its data start address is returned to the caller.
2438 int fit_image_hash_get_algo(const void *fit, int noffset, char **algo)
2442 *algo = (char *)fdt_getprop(fit, noffset, FIT_ALGO_PROP, &len);
2443 if (*algo == NULL) {
2444 fit_get_debug(fit, noffset, FIT_ALGO_PROP, len);
2452 * fit_image_hash_get_value - get hash value and length
2453 * @fit: pointer to the FIT format image header
2454 * @noffset: hash node offset
2455 * @value: double pointer to uint8_t, will hold address of a hash value data
2456 * @value_len: pointer to an int, will hold hash data length
2458 * fit_image_hash_get_value() finds hash value property in a given hash node.
2459 * If the property is found its data start address and size are returned to
2466 int fit_image_hash_get_value(const void *fit, int noffset, uint8_t **value,
2471 *value = (uint8_t *)fdt_getprop(fit, noffset, FIT_VALUE_PROP, &len);
2472 if (*value == NULL) {
2473 fit_get_debug(fit, noffset, FIT_VALUE_PROP, len);
2483 * fit_set_timestamp - set node timestamp property
2484 * @fit: pointer to the FIT format image header
2485 * @noffset: node offset
2486 * @timestamp: timestamp value to be set
2488 * fit_set_timestamp() attempts to set timestamp property in the requested
2489 * node and returns operation status to the caller.
2493 * -1, on property read failure
2495 int fit_set_timestamp(void *fit, int noffset, time_t timestamp)
2500 t = cpu_to_uimage(timestamp);
2501 ret = fdt_setprop(fit, noffset, FIT_TIMESTAMP_PROP, &t,
2504 printf("Can't set '%s' property for '%s' node (%s)\n",
2505 FIT_TIMESTAMP_PROP, fit_get_name(fit, noffset, NULL),
2514 * calculate_hash - calculate and return hash for provided input data
2515 * @data: pointer to the input data
2516 * @data_len: data length
2517 * @algo: requested hash algorithm
2518 * @value: pointer to the char, will hold hash value data (caller must
2519 * allocate enough free space)
2520 * value_len: length of the calculated hash
2522 * calculate_hash() computes input data hash according to the requested algorithm.
2523 * Resulting hash value is placed in caller provided 'value' buffer, length
2524 * of the calculated hash is returned via value_len pointer argument.
2528 * -1, when algo is unsupported
2530 static int calculate_hash(const void *data, int data_len, const char *algo,
2531 uint8_t *value, int *value_len)
2533 if (strcmp(algo, "crc32") == 0) {
2534 *((uint32_t *)value) = crc32_wd(0, data, data_len,
2536 *((uint32_t *)value) = cpu_to_uimage(*((uint32_t *)value));
2538 } else if (strcmp(algo, "sha1") == 0) {
2539 sha1_csum_wd((unsigned char *) data, data_len,
2540 (unsigned char *) value, CHUNKSZ_SHA1);
2542 } else if (strcmp(algo, "md5") == 0) {
2543 md5_wd((unsigned char *)data, data_len, value, CHUNKSZ_MD5);
2546 debug("Unsupported hash alogrithm\n");
2554 * fit_set_hashes - process FIT component image nodes and calculate hashes
2555 * @fit: pointer to the FIT format image header
2557 * fit_set_hashes() adds hash values for all component images in the FIT blob.
2558 * Hashes are calculated for all component images which have hash subnodes
2559 * with algorithm property set to one of the supported hash algorithms.
2563 * libfdt error code, on failure
2565 int fit_set_hashes(void *fit)
2572 /* Find images parent node offset */
2573 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
2574 if (images_noffset < 0) {
2575 printf("Can't find images parent node '%s' (%s)\n",
2576 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
2577 return images_noffset;
2580 /* Process its subnodes, print out component images details */
2581 for (ndepth = 0, noffset = fdt_next_node(fit, images_noffset, &ndepth);
2582 (noffset >= 0) && (ndepth > 0);
2583 noffset = fdt_next_node(fit, noffset, &ndepth)) {
2586 * Direct child node of the images parent node,
2587 * i.e. component image node.
2589 ret = fit_image_set_hashes(fit, noffset);
2599 * fit_image_set_hashes - calculate/set hashes for given component image node
2600 * @fit: pointer to the FIT format image header
2601 * @image_noffset: requested component image node
2603 * fit_image_set_hashes() adds hash values for an component image node. All
2604 * existing hash subnodes are checked, if algorithm property is set to one of
2605 * the supported hash algorithms, hash value is computed and corresponding
2606 * hash node property is set, for example:
2608 * Input component image node structure:
2610 * o image@1 (at image_noffset)
2611 * | - data = [binary data]
2615 * Output component image node structure:
2617 * o image@1 (at image_noffset)
2618 * | - data = [binary data]
2621 * |- value = sha1(data)
2627 int fit_image_set_hashes(void *fit, int image_noffset)
2632 uint8_t value[FIT_MAX_HASH_LEN];
2637 /* Get image data and data length */
2638 if (fit_image_get_data(fit, image_noffset, &data, &size)) {
2639 printf("Can't get image data/size\n");
2643 /* Process all hash subnodes of the component image node */
2644 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth);
2645 (noffset >= 0) && (ndepth > 0);
2646 noffset = fdt_next_node(fit, noffset, &ndepth)) {
2648 /* Direct child node of the component image node */
2651 * Check subnode name, must be equal to "hash".
2652 * Multiple hash nodes require unique unit node
2653 * names, e.g. hash@1, hash@2, etc.
2655 if (strncmp(fit_get_name(fit, noffset, NULL),
2657 strlen(FIT_HASH_NODENAME)) != 0) {
2658 /* Not a hash subnode, skip it */
2662 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
2663 printf("Can't get hash algo property for "
2664 "'%s' hash node in '%s' image node\n",
2665 fit_get_name(fit, noffset, NULL),
2666 fit_get_name(fit, image_noffset, NULL));
2670 if (calculate_hash(data, size, algo, value,
2672 printf("Unsupported hash algorithm (%s) for "
2673 "'%s' hash node in '%s' image node\n",
2674 algo, fit_get_name(fit, noffset, NULL),
2675 fit_get_name(fit, image_noffset,
2680 if (fit_image_hash_set_value(fit, noffset, value,
2682 printf("Can't set hash value for "
2683 "'%s' hash node in '%s' image node\n",
2684 fit_get_name(fit, noffset, NULL),
2685 fit_get_name(fit, image_noffset, NULL));
2695 * fit_image_hash_set_value - set hash value in requested has node
2696 * @fit: pointer to the FIT format image header
2697 * @noffset: hash node offset
2698 * @value: hash value to be set
2699 * @value_len: hash value length
2701 * fit_image_hash_set_value() attempts to set hash value in a node at offset
2702 * given and returns operation status to the caller.
2708 int fit_image_hash_set_value(void *fit, int noffset, uint8_t *value,
2713 ret = fdt_setprop(fit, noffset, FIT_VALUE_PROP, value, value_len);
2715 printf("Can't set hash '%s' property for '%s' node(%s)\n",
2716 FIT_VALUE_PROP, fit_get_name(fit, noffset, NULL),
2723 #endif /* USE_HOSTCC */
2726 * fit_image_check_hashes - verify data intergity
2727 * @fit: pointer to the FIT format image header
2728 * @image_noffset: component image node offset
2730 * fit_image_check_hashes() goes over component image hash nodes,
2731 * re-calculates each data hash and compares with the value stored in hash
2735 * 1, if all hashes are valid
2736 * 0, otherwise (or on error)
2738 int fit_image_check_hashes(const void *fit, int image_noffset)
2745 uint8_t value[FIT_MAX_HASH_LEN];
2751 /* Get image data and data length */
2752 if (fit_image_get_data(fit, image_noffset, &data, &size)) {
2753 printf("Can't get image data/size\n");
2757 /* Process all hash subnodes of the component image node */
2758 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth);
2759 (noffset >= 0) && (ndepth > 0);
2760 noffset = fdt_next_node(fit, noffset, &ndepth)) {
2762 /* Direct child node of the component image node */
2765 * Check subnode name, must be equal to "hash".
2766 * Multiple hash nodes require unique unit node
2767 * names, e.g. hash@1, hash@2, etc.
2769 if (strncmp(fit_get_name(fit, noffset, NULL),
2771 strlen(FIT_HASH_NODENAME)) != 0)
2774 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
2775 err_msg = " error!\nCan't get hash algo "
2781 if (fit_image_hash_get_value(fit, noffset, &fit_value,
2783 err_msg = " error!\nCan't get hash value "
2788 if (calculate_hash(data, size, algo, value,
2790 err_msg = " error!\n"
2791 "Unsupported hash algorithm";
2795 if (value_len != fit_value_len) {
2796 err_msg = " error !\nBad hash value len";
2798 } else if (memcmp(value, fit_value, value_len) != 0) {
2799 err_msg = " error!\nBad hash value";
2809 printf("%s for '%s' hash node in '%s' image node\n",
2810 err_msg, fit_get_name(fit, noffset, NULL),
2811 fit_get_name(fit, image_noffset, NULL));
2816 * fit_all_image_check_hashes - verify data intergity for all images
2817 * @fit: pointer to the FIT format image header
2819 * fit_all_image_check_hashes() goes over all images in the FIT and
2820 * for every images checks if all it's hashes are valid.
2823 * 1, if all hashes of all images are valid
2824 * 0, otherwise (or on error)
2826 int fit_all_image_check_hashes(const void *fit)
2833 /* Find images parent node offset */
2834 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
2835 if (images_noffset < 0) {
2836 printf("Can't find images parent node '%s' (%s)\n",
2837 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
2841 /* Process all image subnodes, check hashes for each */
2842 printf("## Checking hash(es) for FIT Image at %08lx ...\n",
2844 for (ndepth = 0, count = 0,
2845 noffset = fdt_next_node(fit, images_noffset, &ndepth);
2846 (noffset >= 0) && (ndepth > 0);
2847 noffset = fdt_next_node(fit, noffset, &ndepth)) {
2850 * Direct child node of the images parent node,
2851 * i.e. component image node.
2853 printf(" Hash(es) for Image %u (%s): ", count++,
2854 fit_get_name(fit, noffset, NULL));
2856 if (!fit_image_check_hashes(fit, noffset))
2865 * fit_image_check_os - check whether image node is of a given os type
2866 * @fit: pointer to the FIT format image header
2867 * @noffset: component image node offset
2868 * @os: requested image os
2870 * fit_image_check_os() reads image os property and compares its numeric
2871 * id with the requested os. Comparison result is returned to the caller.
2874 * 1 if image is of given os type
2875 * 0 otherwise (or on error)
2877 int fit_image_check_os(const void *fit, int noffset, uint8_t os)
2881 if (fit_image_get_os(fit, noffset, &image_os))
2883 return (os == image_os);
2887 * fit_image_check_arch - check whether image node is of a given arch
2888 * @fit: pointer to the FIT format image header
2889 * @noffset: component image node offset
2890 * @arch: requested imagearch
2892 * fit_image_check_arch() reads image arch property and compares its numeric
2893 * id with the requested arch. Comparison result is returned to the caller.
2896 * 1 if image is of given arch
2897 * 0 otherwise (or on error)
2899 int fit_image_check_arch(const void *fit, int noffset, uint8_t arch)
2903 if (fit_image_get_arch(fit, noffset, &image_arch))
2905 return (arch == image_arch);
2909 * fit_image_check_type - check whether image node is of a given type
2910 * @fit: pointer to the FIT format image header
2911 * @noffset: component image node offset
2912 * @type: requested image type
2914 * fit_image_check_type() reads image type property and compares its numeric
2915 * id with the requested type. Comparison result is returned to the caller.
2918 * 1 if image is of given type
2919 * 0 otherwise (or on error)
2921 int fit_image_check_type(const void *fit, int noffset, uint8_t type)
2925 if (fit_image_get_type(fit, noffset, &image_type))
2927 return (type == image_type);
2931 * fit_image_check_comp - check whether image node uses given compression
2932 * @fit: pointer to the FIT format image header
2933 * @noffset: component image node offset
2934 * @comp: requested image compression type
2936 * fit_image_check_comp() reads image compression property and compares its
2937 * numeric id with the requested compression type. Comparison result is
2938 * returned to the caller.
2941 * 1 if image uses requested compression
2942 * 0 otherwise (or on error)
2944 int fit_image_check_comp(const void *fit, int noffset, uint8_t comp)
2948 if (fit_image_get_comp(fit, noffset, &image_comp))
2950 return (comp == image_comp);
2954 * fit_check_format - sanity check FIT image format
2955 * @fit: pointer to the FIT format image header
2957 * fit_check_format() runs a basic sanity FIT image verification.
2958 * Routine checks for mandatory properties, nodes, etc.
2964 int fit_check_format(const void *fit)
2966 /* mandatory / node 'description' property */
2967 if (fdt_getprop(fit, 0, FIT_DESC_PROP, NULL) == NULL) {
2968 debug("Wrong FIT format: no description\n");
2972 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
2973 /* mandatory / node 'timestamp' property */
2974 if (fdt_getprop(fit, 0, FIT_TIMESTAMP_PROP, NULL) == NULL) {
2975 debug("Wrong FIT format: no timestamp\n");
2980 /* mandatory subimages parent '/images' node */
2981 if (fdt_path_offset(fit, FIT_IMAGES_PATH) < 0) {
2982 debug("Wrong FIT format: no images parent node\n");
2990 * fit_conf_get_node - get node offset for configuration of a given unit name
2991 * @fit: pointer to the FIT format image header
2992 * @conf_uname: configuration node unit name
2994 * fit_conf_get_node() finds a configuration (withing the '/configurations'
2995 * parant node) of a provided unit name. If configuration is found its node offset
2996 * is returned to the caller.
2998 * When NULL is provided in second argument fit_conf_get_node() will search
2999 * for a default configuration node instead. Default configuration node unit name
3000 * is retrived from FIT_DEFAULT_PROP property of the '/configurations' node.
3003 * configuration node offset when found (>=0)
3004 * negative number on failure (FDT_ERR_* code)
3006 int fit_conf_get_node(const void *fit, const char *conf_uname)
3008 int noffset, confs_noffset;
3011 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
3012 if (confs_noffset < 0) {
3013 debug("Can't find configurations parent node '%s' (%s)\n",
3014 FIT_CONFS_PATH, fdt_strerror(confs_noffset));
3015 return confs_noffset;
3018 if (conf_uname == NULL) {
3019 /* get configuration unit name from the default property */
3020 debug("No configuration specified, trying default...\n");
3021 conf_uname = (char *)fdt_getprop(fit, confs_noffset,
3022 FIT_DEFAULT_PROP, &len);
3023 if (conf_uname == NULL) {
3024 fit_get_debug(fit, confs_noffset, FIT_DEFAULT_PROP,
3028 debug("Found default configuration: '%s'\n", conf_uname);
3031 noffset = fdt_subnode_offset(fit, confs_noffset, conf_uname);
3033 debug("Can't get node offset for configuration unit name: "
3035 conf_uname, fdt_strerror(noffset));
3041 static int __fit_conf_get_prop_node(const void *fit, int noffset,
3042 const char *prop_name)
3047 /* get kernel image unit name from configuration kernel property */
3048 uname = (char *)fdt_getprop(fit, noffset, prop_name, &len);
3052 return fit_image_get_node(fit, uname);
3056 * fit_conf_get_kernel_node - get kernel image node offset that corresponds to
3057 * a given configuration
3058 * @fit: pointer to the FIT format image header
3059 * @noffset: configuration node offset
3061 * fit_conf_get_kernel_node() retrives kernel image node unit name from
3062 * configuration FIT_KERNEL_PROP property and translates it to the node
3066 * image node offset when found (>=0)
3067 * negative number on failure (FDT_ERR_* code)
3069 int fit_conf_get_kernel_node(const void *fit, int noffset)
3071 return __fit_conf_get_prop_node(fit, noffset, FIT_KERNEL_PROP);
3075 * fit_conf_get_ramdisk_node - get ramdisk image node offset that corresponds to
3076 * a given configuration
3077 * @fit: pointer to the FIT format image header
3078 * @noffset: configuration node offset
3080 * fit_conf_get_ramdisk_node() retrives ramdisk image node unit name from
3081 * configuration FIT_KERNEL_PROP property and translates it to the node
3085 * image node offset when found (>=0)
3086 * negative number on failure (FDT_ERR_* code)
3088 int fit_conf_get_ramdisk_node(const void *fit, int noffset)
3090 return __fit_conf_get_prop_node(fit, noffset, FIT_RAMDISK_PROP);
3094 * fit_conf_get_fdt_node - get fdt image node offset that corresponds to
3095 * a given configuration
3096 * @fit: pointer to the FIT format image header
3097 * @noffset: configuration node offset
3099 * fit_conf_get_fdt_node() retrives fdt image node unit name from
3100 * configuration FIT_KERNEL_PROP property and translates it to the node
3104 * image node offset when found (>=0)
3105 * negative number on failure (FDT_ERR_* code)
3107 int fit_conf_get_fdt_node(const void *fit, int noffset)
3109 return __fit_conf_get_prop_node(fit, noffset, FIT_FDT_PROP);
3113 * fit_conf_print - prints out the FIT configuration details
3114 * @fit: pointer to the FIT format image header
3115 * @noffset: offset of the configuration node
3116 * @p: pointer to prefix string
3118 * fit_conf_print() lists all mandatory properies for the processed
3119 * configuration node.
3122 * no returned results
3124 void fit_conf_print(const void *fit, int noffset, const char *p)
3130 /* Mandatory properties */
3131 ret = fit_get_desc(fit, noffset, &desc);
3132 printf("%s Description: ", p);
3134 printf("unavailable\n");
3136 printf("%s\n", desc);
3138 uname = (char *)fdt_getprop(fit, noffset, FIT_KERNEL_PROP, NULL);
3139 printf("%s Kernel: ", p);
3141 printf("unavailable\n");
3143 printf("%s\n", uname);
3145 /* Optional properties */
3146 uname = (char *)fdt_getprop(fit, noffset, FIT_RAMDISK_PROP, NULL);
3148 printf("%s Init Ramdisk: %s\n", p, uname);
3150 uname = (char *)fdt_getprop(fit, noffset, FIT_FDT_PROP, NULL);
3152 printf("%s FDT: %s\n", p, uname);
3156 * fit_check_ramdisk - verify FIT format ramdisk subimage
3157 * @fit_hdr: pointer to the FIT ramdisk header
3158 * @rd_noffset: ramdisk subimage node offset within FIT image
3159 * @arch: requested ramdisk image architecture type
3160 * @verify: data CRC verification flag
3162 * fit_check_ramdisk() verifies integrity of the ramdisk subimage and from
3163 * specified FIT image.
3170 static int fit_check_ramdisk(const void *fit, int rd_noffset, uint8_t arch,
3173 fit_image_print(fit, rd_noffset, " ");
3176 puts(" Verifying Hash Integrity ... ");
3177 if (!fit_image_check_hashes(fit, rd_noffset)) {
3178 puts("Bad Data Hash\n");
3179 show_boot_progress(-125);
3185 show_boot_progress(126);
3186 if (!fit_image_check_os(fit, rd_noffset, IH_OS_LINUX) ||
3187 !fit_image_check_arch(fit, rd_noffset, arch) ||
3188 !fit_image_check_type(fit, rd_noffset, IH_TYPE_RAMDISK)) {
3189 printf("No Linux %s Ramdisk Image\n",
3190 genimg_get_arch_name(arch));
3191 show_boot_progress(-126);
3195 show_boot_progress(127);
3198 #endif /* USE_HOSTCC */
3199 #endif /* CONFIG_FIT */