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 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", },
99 static table_entry_t uimage_os[] = {
100 { IH_OS_INVALID, NULL, "Invalid OS", },
101 { IH_OS_LINUX, "linux", "Linux", },
102 #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
103 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
105 { IH_OS_NETBSD, "netbsd", "NetBSD", },
106 { IH_OS_OSE, "ose", "Enea OSE", },
107 { IH_OS_RTEMS, "rtems", "RTEMS", },
108 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
109 #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
110 { IH_OS_QNX, "qnx", "QNX", },
111 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
113 #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
114 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
117 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
118 { IH_OS_DELL, "dell", "Dell", },
119 { IH_OS_ESIX, "esix", "Esix", },
120 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
121 { IH_OS_IRIX, "irix", "Irix", },
122 { IH_OS_NCR, "ncr", "NCR", },
123 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
124 { IH_OS_PSOS, "psos", "pSOS", },
125 { IH_OS_SCO, "sco", "SCO", },
126 { IH_OS_SOLARIS, "solaris", "Solaris", },
127 { IH_OS_SVR4, "svr4", "SVR4", },
132 static table_entry_t uimage_type[] = {
133 { IH_TYPE_INVALID, NULL, "Invalid Image", },
134 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
135 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
136 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
137 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
138 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
139 { IH_TYPE_SCRIPT, "script", "Script", },
140 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
141 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
142 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
143 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
147 static table_entry_t uimage_comp[] = {
148 { IH_COMP_NONE, "none", "uncompressed", },
149 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
150 { IH_COMP_GZIP, "gzip", "gzip compressed", },
151 { IH_COMP_LZMA, "lzma", "lzma compressed", },
152 { IH_COMP_LZO, "lzo", "lzo compressed", },
156 uint32_t crc32 (uint32_t, const unsigned char *, uint);
157 uint32_t crc32_wd (uint32_t, const unsigned char *, uint, uint);
158 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
159 static void genimg_print_time (time_t timestamp);
162 /*****************************************************************************/
163 /* Legacy format routines */
164 /*****************************************************************************/
165 int image_check_hcrc (const image_header_t *hdr)
168 ulong len = image_get_header_size ();
169 image_header_t header;
171 /* Copy header so we can blank CRC field for re-calculation */
172 memmove (&header, (char *)hdr, image_get_header_size ());
173 image_set_hcrc (&header, 0);
175 hcrc = crc32 (0, (unsigned char *)&header, len);
177 return (hcrc == image_get_hcrc (hdr));
180 int image_check_dcrc (const image_header_t *hdr)
182 ulong data = image_get_data (hdr);
183 ulong len = image_get_data_size (hdr);
184 ulong dcrc = crc32_wd (0, (unsigned char *)data, len, CHUNKSZ_CRC32);
186 return (dcrc == image_get_dcrc (hdr));
190 * image_multi_count - get component (sub-image) count
191 * @hdr: pointer to the header of the multi component image
193 * image_multi_count() returns number of components in a multi
196 * Note: no checking of the image type is done, caller must pass
197 * a valid multi component image.
200 * number of components
202 ulong image_multi_count (const image_header_t *hdr)
207 /* get start of the image payload, which in case of multi
208 * component images that points to a table of component sizes */
209 size = (uint32_t *)image_get_data (hdr);
211 /* count non empty slots */
212 for (i = 0; size[i]; ++i)
219 * image_multi_getimg - get component data address and size
220 * @hdr: pointer to the header of the multi component image
221 * @idx: index of the requested component
222 * @data: pointer to a ulong variable, will hold component data address
223 * @len: pointer to a ulong variable, will hold component size
225 * image_multi_getimg() returns size and data address for the requested
226 * component in a multi component image.
228 * Note: no checking of the image type is done, caller must pass
229 * a valid multi component image.
232 * data address and size of the component, if idx is valid
233 * 0 in data and len, if idx is out of range
235 void image_multi_getimg (const image_header_t *hdr, ulong idx,
236 ulong *data, ulong *len)
240 ulong offset, count, img_data;
242 /* get number of component */
243 count = image_multi_count (hdr);
245 /* get start of the image payload, which in case of multi
246 * component images that points to a table of component sizes */
247 size = (uint32_t *)image_get_data (hdr);
249 /* get address of the proper component data start, which means
250 * skipping sizes table (add 1 for last, null entry) */
251 img_data = image_get_data (hdr) + (count + 1) * sizeof (uint32_t);
254 *len = uimage_to_cpu (size[idx]);
257 /* go over all indices preceding requested component idx */
258 for (i = 0; i < idx; i++) {
259 /* add up i-th component size, rounding up to 4 bytes */
260 offset += (uimage_to_cpu (size[i]) + 3) & ~3 ;
263 /* calculate idx-th component data address */
264 *data = img_data + offset;
271 static void image_print_type (const image_header_t *hdr)
273 const char *os, *arch, *type, *comp;
275 os = genimg_get_os_name (image_get_os (hdr));
276 arch = genimg_get_arch_name (image_get_arch (hdr));
277 type = genimg_get_type_name (image_get_type (hdr));
278 comp = genimg_get_comp_name (image_get_comp (hdr));
280 printf ("%s %s %s (%s)\n", arch, os, type, comp);
284 * image_print_contents - prints out the contents of the legacy format image
285 * @ptr: pointer to the legacy format image header
286 * @p: pointer to prefix string
288 * image_print_contents() formats a multi line legacy image contents description.
289 * The routine prints out all header fields followed by the size/offset data
290 * for MULTI/SCRIPT images.
293 * no returned results
295 void image_print_contents (const void *ptr)
297 const image_header_t *hdr = (const image_header_t *)ptr;
306 printf ("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name (hdr));
307 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
308 printf ("%sCreated: ", p);
309 genimg_print_time ((time_t)image_get_time (hdr));
311 printf ("%sImage Type: ", p);
312 image_print_type (hdr);
313 printf ("%sData Size: ", p);
314 genimg_print_size (image_get_data_size (hdr));
315 printf ("%sLoad Address: %08x\n", p, image_get_load (hdr));
316 printf ("%sEntry Point: %08x\n", p, image_get_ep (hdr));
318 if (image_check_type (hdr, IH_TYPE_MULTI) ||
319 image_check_type (hdr, IH_TYPE_SCRIPT)) {
322 ulong count = image_multi_count (hdr);
324 printf ("%sContents:\n", p);
325 for (i = 0; i < count; i++) {
326 image_multi_getimg (hdr, i, &data, &len);
328 printf ("%s Image %d: ", p, i);
329 genimg_print_size (len);
331 if (image_check_type (hdr, IH_TYPE_SCRIPT) && i > 0) {
333 * the user may need to know offsets
334 * if planning to do something with
337 printf ("%s Offset = 0x%08lx\n", p, data);
346 * image_get_ramdisk - get and verify ramdisk image
347 * @rd_addr: ramdisk image start address
348 * @arch: expected ramdisk architecture
349 * @verify: checksum verification flag
351 * image_get_ramdisk() returns a pointer to the verified ramdisk image
352 * header. Routine receives image start address and expected architecture
353 * flag. Verification done covers data and header integrity and os/type/arch
356 * If dataflash support is enabled routine checks for dataflash addresses
357 * and handles required dataflash reads.
360 * pointer to a ramdisk image header, if image was found and valid
361 * otherwise, return NULL
363 static const image_header_t *image_get_ramdisk (ulong rd_addr, uint8_t arch,
366 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
368 if (!image_check_magic (rd_hdr)) {
369 puts ("Bad Magic Number\n");
370 show_boot_progress (-10);
374 if (!image_check_hcrc (rd_hdr)) {
375 puts ("Bad Header Checksum\n");
376 show_boot_progress (-11);
380 show_boot_progress (10);
381 image_print_contents (rd_hdr);
384 puts(" Verifying Checksum ... ");
385 if (!image_check_dcrc (rd_hdr)) {
386 puts ("Bad Data CRC\n");
387 show_boot_progress (-12);
393 show_boot_progress (11);
395 if (!image_check_os (rd_hdr, IH_OS_LINUX) ||
396 !image_check_arch (rd_hdr, arch) ||
397 !image_check_type (rd_hdr, IH_TYPE_RAMDISK)) {
398 printf ("No Linux %s Ramdisk Image\n",
399 genimg_get_arch_name(arch));
400 show_boot_progress (-13);
406 #endif /* !USE_HOSTCC */
408 /*****************************************************************************/
409 /* Shared dual-format routines */
410 /*****************************************************************************/
412 int getenv_yesno (char *var)
414 char *s = getenv (var);
415 return (s && (*s == 'n')) ? 0 : 1;
418 ulong getenv_bootm_low(void)
420 char *s = getenv ("bootm_low");
422 ulong tmp = simple_strtoul (s, NULL, 16);
426 #if defined(CONFIG_SYS_SDRAM_BASE)
427 return CONFIG_SYS_SDRAM_BASE;
428 #elif defined(CONFIG_ARM)
429 return gd->bd->bi_dram[0].start;
435 phys_size_t getenv_bootm_size(void)
438 char *s = getenv ("bootm_size");
440 tmp = (phys_size_t)simple_strtoull (s, NULL, 16);
443 s = getenv("bootm_low");
445 tmp = (phys_size_t)simple_strtoull (s, NULL, 16);
450 #if defined(CONFIG_ARM)
451 return gd->bd->bi_dram[0].size - tmp;
453 return gd->bd->bi_memsize - tmp;
457 void memmove_wd (void *to, void *from, size_t len, ulong chunksz)
462 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
464 size_t tail = (len > chunksz) ? chunksz : len;
466 memmove (to, from, tail);
471 #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
472 memmove (to, from, len);
473 #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
475 #endif /* !USE_HOSTCC */
477 void genimg_print_size (uint32_t size)
480 printf ("%d Bytes = ", size);
481 print_size (size, "\n");
483 printf ("%d Bytes = %.2f kB = %.2f MB\n",
484 size, (double)size / 1.024e3,
485 (double)size / 1.048576e6);
489 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
490 static void genimg_print_time (time_t timestamp)
495 to_tm (timestamp, &tm);
496 printf ("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
497 tm.tm_year, tm.tm_mon, tm.tm_mday,
498 tm.tm_hour, tm.tm_min, tm.tm_sec);
500 printf ("%s", ctime(×tamp));
503 #endif /* CONFIG_TIMESTAMP || CONFIG_CMD_DATE || USE_HOSTCC */
506 * get_table_entry_name - translate entry id to long name
507 * @table: pointer to a translation table for entries of a specific type
508 * @msg: message to be returned when translation fails
509 * @id: entry id to be translated
511 * get_table_entry_name() will go over translation table trying to find
512 * entry that matches given id. If matching entry is found, its long
513 * name is returned to the caller.
516 * long entry name if translation succeeds
519 char *get_table_entry_name (table_entry_t *table, char *msg, int id)
521 for (; table->id >= 0; ++table) {
523 #if defined(USE_HOSTCC) || defined(CONFIG_RELOC_FIXUP_WORKS)
526 return table->lname + gd->reloc_off;
532 const char *genimg_get_os_name (uint8_t os)
534 return (get_table_entry_name (uimage_os, "Unknown OS", os));
537 const char *genimg_get_arch_name (uint8_t arch)
539 return (get_table_entry_name (uimage_arch, "Unknown Architecture", arch));
542 const char *genimg_get_type_name (uint8_t type)
544 return (get_table_entry_name (uimage_type, "Unknown Image", type));
547 const char *genimg_get_comp_name (uint8_t comp)
549 return (get_table_entry_name (uimage_comp, "Unknown Compression", comp));
553 * get_table_entry_id - translate short entry name to id
554 * @table: pointer to a translation table for entries of a specific type
555 * @table_name: to be used in case of error
556 * @name: entry short name to be translated
558 * get_table_entry_id() will go over translation table trying to find
559 * entry that matches given short name. If matching entry is found,
560 * its id returned to the caller.
563 * entry id if translation succeeds
566 int get_table_entry_id (table_entry_t *table,
567 const char *table_name, const char *name)
573 for (t = table; t->id >= 0; ++t) {
574 if (t->sname && strcasecmp(t->sname, name) == 0)
578 fprintf (stderr, "\nInvalid %s Type - valid names are", table_name);
579 for (t = table; t->id >= 0; ++t) {
580 if (t->sname == NULL)
582 fprintf (stderr, "%c %s", (first) ? ':' : ',', t->sname);
585 fprintf (stderr, "\n");
587 for (t = table; t->id >= 0; ++t) {
588 #ifdef CONFIG_RELOC_FIXUP_WORKS
589 if (t->sname && strcmp(t->sname, name) == 0)
591 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
595 debug ("Invalid %s Type: %s\n", table_name, name);
596 #endif /* USE_HOSTCC */
600 int genimg_get_os_id (const char *name)
602 return (get_table_entry_id (uimage_os, "OS", name));
605 int genimg_get_arch_id (const char *name)
607 return (get_table_entry_id (uimage_arch, "CPU", name));
610 int genimg_get_type_id (const char *name)
612 return (get_table_entry_id (uimage_type, "Image", name));
615 int genimg_get_comp_id (const char *name)
617 return (get_table_entry_id (uimage_comp, "Compression", name));
622 * genimg_get_format - get image format type
623 * @img_addr: image start address
625 * genimg_get_format() checks whether provided address points to a valid
626 * legacy or FIT image.
628 * New uImage format and FDT blob are based on a libfdt. FDT blob
629 * may be passed directly or embedded in a FIT image. In both situations
630 * genimg_get_format() must be able to dectect libfdt header.
633 * image format type or IMAGE_FORMAT_INVALID if no image is present
635 int genimg_get_format (void *img_addr)
637 ulong format = IMAGE_FORMAT_INVALID;
638 const image_header_t *hdr;
639 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
643 hdr = (const image_header_t *)img_addr;
644 if (image_check_magic(hdr))
645 format = IMAGE_FORMAT_LEGACY;
646 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
648 fit_hdr = (char *)img_addr;
649 if (fdt_check_header (fit_hdr) == 0)
650 format = IMAGE_FORMAT_FIT;
658 * genimg_get_image - get image from special storage (if necessary)
659 * @img_addr: image start address
661 * genimg_get_image() checks if provided image start adddress is located
662 * in a dataflash storage. If so, image is moved to a system RAM memory.
665 * image start address after possible relocation from special storage
667 ulong genimg_get_image (ulong img_addr)
669 ulong ram_addr = img_addr;
671 #ifdef CONFIG_HAS_DATAFLASH
672 ulong h_size, d_size;
674 if (addr_dataflash (img_addr)){
675 /* ger RAM address */
676 ram_addr = CONFIG_SYS_LOAD_ADDR;
678 /* get header size */
679 h_size = image_get_header_size ();
680 #if defined(CONFIG_FIT)
681 if (sizeof(struct fdt_header) > h_size)
682 h_size = sizeof(struct fdt_header);
686 debug (" Reading image header from dataflash address "
687 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
689 read_dataflash (img_addr, h_size, (char *)ram_addr);
692 switch (genimg_get_format ((void *)ram_addr)) {
693 case IMAGE_FORMAT_LEGACY:
694 d_size = image_get_data_size ((const image_header_t *)ram_addr);
695 debug (" Legacy format image found at 0x%08lx, size 0x%08lx\n",
698 #if defined(CONFIG_FIT)
699 case IMAGE_FORMAT_FIT:
700 d_size = fit_get_size ((const void *)ram_addr) - h_size;
701 debug (" FIT/FDT format image found at 0x%08lx, size 0x%08lx\n",
706 printf (" No valid image found at 0x%08lx\n", img_addr);
710 /* read in image data */
711 debug (" Reading image remaining data from dataflash address "
712 "%08lx to RAM address %08lx\n", img_addr + h_size,
715 read_dataflash (img_addr + h_size, d_size,
716 (char *)(ram_addr + h_size));
719 #endif /* CONFIG_HAS_DATAFLASH */
725 * fit_has_config - check if there is a valid FIT configuration
726 * @images: pointer to the bootm command headers structure
728 * fit_has_config() checks if there is a FIT configuration in use
729 * (if FTI support is present).
732 * 0, no FIT support or no configuration found
733 * 1, configuration found
735 int genimg_has_config (bootm_headers_t *images)
737 #if defined(CONFIG_FIT)
738 if (images->fit_uname_cfg)
745 * boot_get_ramdisk - main ramdisk handling routine
746 * @argc: command argument count
747 * @argv: command argument list
748 * @images: pointer to the bootm images structure
749 * @arch: expected ramdisk architecture
750 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
751 * @rd_end: pointer to a ulong variable, will hold ramdisk end
753 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
754 * Curently supported are the following ramdisk sources:
755 * - multicomponent kernel/ramdisk image,
756 * - commandline provided address of decicated ramdisk image.
759 * 0, if ramdisk image was found and valid, or skiped
760 * rd_start and rd_end are set to ramdisk start/end addresses if
761 * ramdisk image is found and valid
763 * 1, if ramdisk image is found but corrupted, or invalid
764 * rd_start and rd_end are set to 0 if no ramdisk exists
766 int boot_get_ramdisk (int argc, char * const argv[], bootm_headers_t *images,
767 uint8_t arch, ulong *rd_start, ulong *rd_end)
769 ulong rd_addr, rd_load;
770 ulong rd_data, rd_len;
771 const image_header_t *rd_hdr;
772 #if defined(CONFIG_FIT)
774 const char *fit_uname_config = NULL;
775 const char *fit_uname_ramdisk = NULL;
787 * Look for a '-' which indicates to ignore the
790 if ((argc >= 3) && (strcmp(argv[2], "-") == 0)) {
791 debug ("## Skipping init Ramdisk\n");
792 rd_len = rd_data = 0;
793 } else if (argc >= 3 || genimg_has_config (images)) {
794 #if defined(CONFIG_FIT)
797 * If the init ramdisk comes from the FIT image and
798 * the FIT image address is omitted in the command
799 * line argument, try to use os FIT image address or
800 * default load address.
802 if (images->fit_uname_os)
803 default_addr = (ulong)images->fit_hdr_os;
805 default_addr = load_addr;
807 if (fit_parse_conf (argv[2], default_addr,
808 &rd_addr, &fit_uname_config)) {
809 debug ("* ramdisk: config '%s' from image at 0x%08lx\n",
810 fit_uname_config, rd_addr);
811 } else if (fit_parse_subimage (argv[2], default_addr,
812 &rd_addr, &fit_uname_ramdisk)) {
813 debug ("* ramdisk: subimage '%s' from image at 0x%08lx\n",
814 fit_uname_ramdisk, rd_addr);
818 rd_addr = simple_strtoul(argv[2], NULL, 16);
819 debug ("* ramdisk: cmdline image address = 0x%08lx\n",
822 #if defined(CONFIG_FIT)
824 /* use FIT configuration provided in first bootm
827 rd_addr = (ulong)images->fit_hdr_os;
828 fit_uname_config = images->fit_uname_cfg;
829 debug ("* ramdisk: using config '%s' from image at 0x%08lx\n",
830 fit_uname_config, rd_addr);
833 * Check whether configuration has ramdisk defined,
834 * if not, don't try to use it, quit silently.
836 fit_hdr = (void *)rd_addr;
837 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
838 if (cfg_noffset < 0) {
839 debug ("* ramdisk: no such config\n");
843 rd_noffset = fit_conf_get_ramdisk_node (fit_hdr, cfg_noffset);
844 if (rd_noffset < 0) {
845 debug ("* ramdisk: no ramdisk in config\n");
851 /* copy from dataflash if needed */
852 rd_addr = genimg_get_image (rd_addr);
855 * Check if there is an initrd image at the
856 * address provided in the second bootm argument
857 * check image type, for FIT images get FIT node.
859 switch (genimg_get_format ((void *)rd_addr)) {
860 case IMAGE_FORMAT_LEGACY:
861 printf ("## Loading init Ramdisk from Legacy "
862 "Image at %08lx ...\n", rd_addr);
864 show_boot_progress (9);
865 rd_hdr = image_get_ramdisk (rd_addr, arch,
871 rd_data = image_get_data (rd_hdr);
872 rd_len = image_get_data_size (rd_hdr);
873 rd_load = image_get_load (rd_hdr);
875 #if defined(CONFIG_FIT)
876 case IMAGE_FORMAT_FIT:
877 fit_hdr = (void *)rd_addr;
878 printf ("## Loading init Ramdisk from FIT "
879 "Image at %08lx ...\n", rd_addr);
881 show_boot_progress (120);
882 if (!fit_check_format (fit_hdr)) {
883 puts ("Bad FIT ramdisk image format!\n");
884 show_boot_progress (-120);
887 show_boot_progress (121);
889 if (!fit_uname_ramdisk) {
891 * no ramdisk image node unit name, try to get config
892 * node first. If config unit node name is NULL
893 * fit_conf_get_node() will try to find default config node
895 show_boot_progress (122);
896 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
897 if (cfg_noffset < 0) {
898 puts ("Could not find configuration node\n");
899 show_boot_progress (-122);
902 fit_uname_config = fdt_get_name (fit_hdr, cfg_noffset, NULL);
903 printf (" Using '%s' configuration\n", fit_uname_config);
905 rd_noffset = fit_conf_get_ramdisk_node (fit_hdr, cfg_noffset);
906 fit_uname_ramdisk = fit_get_name (fit_hdr, rd_noffset, NULL);
908 /* get ramdisk component image node offset */
909 show_boot_progress (123);
910 rd_noffset = fit_image_get_node (fit_hdr, fit_uname_ramdisk);
912 if (rd_noffset < 0) {
913 puts ("Could not find subimage node\n");
914 show_boot_progress (-124);
918 printf (" Trying '%s' ramdisk subimage\n", fit_uname_ramdisk);
920 show_boot_progress (125);
921 if (!fit_check_ramdisk (fit_hdr, rd_noffset, arch, images->verify))
924 /* get ramdisk image data address and length */
925 if (fit_image_get_data (fit_hdr, rd_noffset, &data, &size)) {
926 puts ("Could not find ramdisk subimage data!\n");
927 show_boot_progress (-127);
930 show_boot_progress (128);
932 rd_data = (ulong)data;
935 if (fit_image_get_load (fit_hdr, rd_noffset, &rd_load)) {
936 puts ("Can't get ramdisk subimage load address!\n");
937 show_boot_progress (-129);
940 show_boot_progress (129);
942 images->fit_hdr_rd = fit_hdr;
943 images->fit_uname_rd = fit_uname_ramdisk;
944 images->fit_noffset_rd = rd_noffset;
948 puts ("Wrong Ramdisk Image Format\n");
949 rd_data = rd_len = rd_load = 0;
953 #if defined(CONFIG_B2) || defined(CONFIG_EVB4510) || defined(CONFIG_ARMADILLO)
955 * We need to copy the ramdisk to SRAM to let Linux boot
958 memmove ((void *)rd_load, (uchar *)rd_data, rd_len);
961 #endif /* CONFIG_B2 || CONFIG_EVB4510 || CONFIG_ARMADILLO */
963 } else if (images->legacy_hdr_valid &&
964 image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
966 * Now check if we have a legacy mult-component image,
967 * get second entry data start address and len.
969 show_boot_progress (13);
970 printf ("## Loading init Ramdisk from multi component "
971 "Legacy Image at %08lx ...\n",
972 (ulong)images->legacy_hdr_os);
974 image_multi_getimg (images->legacy_hdr_os, 1, &rd_data, &rd_len);
979 show_boot_progress (14);
980 rd_len = rd_data = 0;
984 debug ("## No init Ramdisk\n");
987 *rd_end = rd_data + rd_len;
989 debug (" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
995 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
997 * boot_ramdisk_high - relocate init ramdisk
998 * @lmb: pointer to lmb handle, will be used for memory mgmt
999 * @rd_data: ramdisk data start address
1000 * @rd_len: ramdisk data length
1001 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1002 * start address (after possible relocation)
1003 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1004 * end address (after possible relocation)
1006 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement
1007 * variable and if requested ramdisk data is moved to a specified location.
1009 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1010 * start/end addresses if ramdisk image start and len were provided,
1011 * otherwise set initrd_start and initrd_end set to zeros.
1017 int boot_ramdisk_high (struct lmb *lmb, ulong rd_data, ulong rd_len,
1018 ulong *initrd_start, ulong *initrd_end)
1022 int initrd_copy_to_ram = 1;
1024 if ((s = getenv ("initrd_high")) != NULL) {
1025 /* a value of "no" or a similar string will act like 0,
1026 * turning the "load high" feature off. This is intentional.
1028 initrd_high = simple_strtoul (s, NULL, 16);
1029 if (initrd_high == ~0)
1030 initrd_copy_to_ram = 0;
1032 /* not set, no restrictions to load high */
1037 #ifdef CONFIG_LOGBUFFER
1038 /* Prevent initrd from overwriting logbuffer */
1039 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1042 debug ("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
1043 initrd_high, initrd_copy_to_ram);
1046 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
1047 debug (" in-place initrd\n");
1048 *initrd_start = rd_data;
1049 *initrd_end = rd_data + rd_len;
1050 lmb_reserve(lmb, rd_data, rd_len);
1053 *initrd_start = (ulong)lmb_alloc_base (lmb, rd_len, 0x1000, initrd_high);
1055 *initrd_start = (ulong)lmb_alloc (lmb, rd_len, 0x1000);
1057 if (*initrd_start == 0) {
1058 puts ("ramdisk - allocation error\n");
1061 show_boot_progress (12);
1063 *initrd_end = *initrd_start + rd_len;
1064 printf (" Loading Ramdisk to %08lx, end %08lx ... ",
1065 *initrd_start, *initrd_end);
1067 memmove_wd ((void *)*initrd_start,
1068 (void *)rd_data, rd_len, CHUNKSZ);
1076 debug (" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
1077 *initrd_start, *initrd_end);
1084 #endif /* defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) */
1086 #ifdef CONFIG_OF_LIBFDT
1087 static void fdt_error (const char *msg)
1091 puts (" - must RESET the board to recover.\n");
1094 static const image_header_t *image_get_fdt (ulong fdt_addr)
1096 const image_header_t *fdt_hdr = (const image_header_t *)fdt_addr;
1098 image_print_contents (fdt_hdr);
1100 puts (" Verifying Checksum ... ");
1101 if (!image_check_hcrc (fdt_hdr)) {
1102 fdt_error ("fdt header checksum invalid");
1106 if (!image_check_dcrc (fdt_hdr)) {
1107 fdt_error ("fdt checksum invalid");
1112 if (!image_check_type (fdt_hdr, IH_TYPE_FLATDT)) {
1113 fdt_error ("uImage is not a fdt");
1116 if (image_get_comp (fdt_hdr) != IH_COMP_NONE) {
1117 fdt_error ("uImage is compressed");
1120 if (fdt_check_header ((char *)image_get_data (fdt_hdr)) != 0) {
1121 fdt_error ("uImage data is not a fdt");
1128 * fit_check_fdt - verify FIT format FDT subimage
1129 * @fit_hdr: pointer to the FIT header
1130 * fdt_noffset: FDT subimage node offset within FIT image
1131 * @verify: data CRC verification flag
1133 * fit_check_fdt() verifies integrity of the FDT subimage and from
1134 * specified FIT image.
1140 #if defined(CONFIG_FIT)
1141 static int fit_check_fdt (const void *fit, int fdt_noffset, int verify)
1143 fit_image_print (fit, fdt_noffset, " ");
1146 puts (" Verifying Hash Integrity ... ");
1147 if (!fit_image_check_hashes (fit, fdt_noffset)) {
1148 fdt_error ("Bad Data Hash");
1154 if (!fit_image_check_type (fit, fdt_noffset, IH_TYPE_FLATDT)) {
1155 fdt_error ("Not a FDT image");
1159 if (!fit_image_check_comp (fit, fdt_noffset, IH_COMP_NONE)) {
1160 fdt_error ("FDT image is compressed");
1166 #endif /* CONFIG_FIT */
1168 #ifndef CONFIG_SYS_FDT_PAD
1169 #define CONFIG_SYS_FDT_PAD 0x3000
1173 * boot_relocate_fdt - relocate flat device tree
1174 * @lmb: pointer to lmb handle, will be used for memory mgmt
1175 * @bootmap_base: base address of the bootmap region
1176 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1177 * @of_size: pointer to a ulong variable, will hold fdt length
1179 * boot_relocate_fdt() determines if the of_flat_tree address is within
1180 * the bootmap and if not relocates it into that region
1182 * of_flat_tree and of_size are set to final (after relocation) values
1188 #if defined(CONFIG_SYS_BOOTMAPSZ)
1189 int boot_relocate_fdt (struct lmb *lmb, ulong bootmap_base,
1190 char **of_flat_tree, ulong *of_size)
1192 char *fdt_blob = *of_flat_tree;
1200 if (fdt_check_header (fdt_blob) != 0) {
1201 fdt_error ("image is not a fdt");
1205 #ifndef CONFIG_SYS_NO_FLASH
1206 /* move the blob if it is in flash (set relocate) */
1207 if (addr2info ((ulong)fdt_blob) != NULL)
1212 * The blob needs to be inside the boot mapping.
1214 if (fdt_blob < (char *)bootmap_base)
1217 if ((fdt_blob + *of_size + CONFIG_SYS_FDT_PAD) >=
1218 ((char *)CONFIG_SYS_BOOTMAPSZ + bootmap_base))
1221 /* move flattend device tree if needed */
1226 /* position on a 4K boundary before the alloc_current */
1227 /* Pad the FDT by a specified amount */
1228 of_len = *of_size + CONFIG_SYS_FDT_PAD;
1229 of_start = (unsigned long)lmb_alloc_base(lmb, of_len, 0x1000,
1230 (CONFIG_SYS_BOOTMAPSZ + bootmap_base));
1232 if (of_start == 0) {
1233 puts("device tree - allocation error\n");
1237 debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
1238 (ulong)fdt_blob, (ulong)fdt_blob + *of_size - 1,
1241 printf (" Loading Device Tree to %08lx, end %08lx ... ",
1242 of_start, of_start + of_len - 1);
1244 err = fdt_open_into (fdt_blob, (void *)of_start, of_len);
1246 fdt_error ("fdt move failed");
1251 *of_flat_tree = (char *)of_start;
1254 *of_flat_tree = fdt_blob;
1255 of_len = *of_size + CONFIG_SYS_FDT_PAD;
1256 lmb_reserve(lmb, (ulong)fdt_blob, of_len);
1257 fdt_set_totalsize(*of_flat_tree, of_len);
1262 set_working_fdt_addr(*of_flat_tree);
1268 #endif /* CONFIG_SYS_BOOTMAPSZ */
1271 * boot_get_fdt - main fdt handling routine
1272 * @argc: command argument count
1273 * @argv: command argument list
1274 * @images: pointer to the bootm images structure
1275 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1276 * @of_size: pointer to a ulong variable, will hold fdt length
1278 * boot_get_fdt() is responsible for finding a valid flat device tree image.
1279 * Curently supported are the following ramdisk sources:
1280 * - multicomponent kernel/ramdisk image,
1281 * - commandline provided address of decicated ramdisk image.
1284 * 0, if fdt image was found and valid, or skipped
1285 * of_flat_tree and of_size are set to fdt start address and length if
1286 * fdt image is found and valid
1288 * 1, if fdt image is found but corrupted
1289 * of_flat_tree and of_size are set to 0 if no fdt exists
1291 int boot_get_fdt (int flag, int argc, char * const argv[], bootm_headers_t *images,
1292 char **of_flat_tree, ulong *of_size)
1294 const image_header_t *fdt_hdr;
1296 char *fdt_blob = NULL;
1297 ulong image_start, image_end;
1298 ulong load_start, load_end;
1299 #if defined(CONFIG_FIT)
1301 const char *fit_uname_config = NULL;
1302 const char *fit_uname_fdt = NULL;
1310 *of_flat_tree = NULL;
1313 if (argc > 3 || genimg_has_config (images)) {
1314 #if defined(CONFIG_FIT)
1317 * If the FDT blob comes from the FIT image and the
1318 * FIT image address is omitted in the command line
1319 * argument, try to use ramdisk or os FIT image
1320 * address or default load address.
1322 if (images->fit_uname_rd)
1323 default_addr = (ulong)images->fit_hdr_rd;
1324 else if (images->fit_uname_os)
1325 default_addr = (ulong)images->fit_hdr_os;
1327 default_addr = load_addr;
1329 if (fit_parse_conf (argv[3], default_addr,
1330 &fdt_addr, &fit_uname_config)) {
1331 debug ("* fdt: config '%s' from image at 0x%08lx\n",
1332 fit_uname_config, fdt_addr);
1333 } else if (fit_parse_subimage (argv[3], default_addr,
1334 &fdt_addr, &fit_uname_fdt)) {
1335 debug ("* fdt: subimage '%s' from image at 0x%08lx\n",
1336 fit_uname_fdt, fdt_addr);
1340 fdt_addr = simple_strtoul(argv[3], NULL, 16);
1341 debug ("* fdt: cmdline image address = 0x%08lx\n",
1344 #if defined(CONFIG_FIT)
1346 /* use FIT configuration provided in first bootm
1349 fdt_addr = (ulong)images->fit_hdr_os;
1350 fit_uname_config = images->fit_uname_cfg;
1351 debug ("* fdt: using config '%s' from image at 0x%08lx\n",
1352 fit_uname_config, fdt_addr);
1355 * Check whether configuration has FDT blob defined,
1356 * if not quit silently.
1358 fit_hdr = (void *)fdt_addr;
1359 cfg_noffset = fit_conf_get_node (fit_hdr,
1361 if (cfg_noffset < 0) {
1362 debug ("* fdt: no such config\n");
1366 fdt_noffset = fit_conf_get_fdt_node (fit_hdr,
1368 if (fdt_noffset < 0) {
1369 debug ("* fdt: no fdt in config\n");
1375 debug ("## Checking for 'FDT'/'FDT Image' at %08lx\n",
1378 /* copy from dataflash if needed */
1379 fdt_addr = genimg_get_image (fdt_addr);
1382 * Check if there is an FDT image at the
1383 * address provided in the second bootm argument
1384 * check image type, for FIT images get a FIT node.
1386 switch (genimg_get_format ((void *)fdt_addr)) {
1387 case IMAGE_FORMAT_LEGACY:
1388 /* verify fdt_addr points to a valid image header */
1389 printf ("## Flattened Device Tree from Legacy Image at %08lx\n",
1391 fdt_hdr = image_get_fdt (fdt_addr);
1396 * move image data to the load address,
1397 * make sure we don't overwrite initial image
1399 image_start = (ulong)fdt_hdr;
1400 image_end = image_get_image_end (fdt_hdr);
1402 load_start = image_get_load (fdt_hdr);
1403 load_end = load_start + image_get_data_size (fdt_hdr);
1405 if ((load_start < image_end) && (load_end > image_start)) {
1406 fdt_error ("fdt overwritten");
1410 debug (" Loading FDT from 0x%08lx to 0x%08lx\n",
1411 image_get_data (fdt_hdr), load_start);
1413 memmove ((void *)load_start,
1414 (void *)image_get_data (fdt_hdr),
1415 image_get_data_size (fdt_hdr));
1417 fdt_blob = (char *)load_start;
1419 case IMAGE_FORMAT_FIT:
1421 * This case will catch both: new uImage format
1422 * (libfdt based) and raw FDT blob (also libfdt
1425 #if defined(CONFIG_FIT)
1426 /* check FDT blob vs FIT blob */
1427 if (fit_check_format ((const void *)fdt_addr)) {
1431 fit_hdr = (void *)fdt_addr;
1432 printf ("## Flattened Device Tree from FIT Image at %08lx\n",
1435 if (!fit_uname_fdt) {
1437 * no FDT blob image node unit name,
1438 * try to get config node first. If
1439 * config unit node name is NULL
1440 * fit_conf_get_node() will try to
1441 * find default config node
1443 cfg_noffset = fit_conf_get_node (fit_hdr,
1446 if (cfg_noffset < 0) {
1447 fdt_error ("Could not find configuration node\n");
1451 fit_uname_config = fdt_get_name (fit_hdr,
1453 printf (" Using '%s' configuration\n",
1456 fdt_noffset = fit_conf_get_fdt_node (fit_hdr,
1458 fit_uname_fdt = fit_get_name (fit_hdr,
1461 /* get FDT component image node offset */
1462 fdt_noffset = fit_image_get_node (fit_hdr,
1465 if (fdt_noffset < 0) {
1466 fdt_error ("Could not find subimage node\n");
1470 printf (" Trying '%s' FDT blob subimage\n",
1473 if (!fit_check_fdt (fit_hdr, fdt_noffset,
1477 /* get ramdisk image data address and length */
1478 if (fit_image_get_data (fit_hdr, fdt_noffset,
1480 fdt_error ("Could not find FDT subimage data");
1484 /* verift that image data is a proper FDT blob */
1485 if (fdt_check_header ((char *)data) != 0) {
1486 fdt_error ("Subimage data is not a FTD");
1491 * move image data to the load address,
1492 * make sure we don't overwrite initial image
1494 image_start = (ulong)fit_hdr;
1495 image_end = fit_get_end (fit_hdr);
1497 if (fit_image_get_load (fit_hdr, fdt_noffset,
1498 &load_start) == 0) {
1499 load_end = load_start + size;
1501 if ((load_start < image_end) &&
1502 (load_end > image_start)) {
1503 fdt_error ("FDT overwritten");
1507 printf (" Loading FDT from 0x%08lx to 0x%08lx\n",
1508 (ulong)data, load_start);
1510 memmove ((void *)load_start,
1511 (void *)data, size);
1513 fdt_blob = (char *)load_start;
1515 fdt_blob = (char *)data;
1518 images->fit_hdr_fdt = fit_hdr;
1519 images->fit_uname_fdt = fit_uname_fdt;
1520 images->fit_noffset_fdt = fdt_noffset;
1528 fdt_blob = (char *)fdt_addr;
1529 debug ("* fdt: raw FDT blob\n");
1530 printf ("## Flattened Device Tree blob at %08lx\n", (long)fdt_blob);
1534 puts ("ERROR: Did not find a cmdline Flattened Device Tree\n");
1538 printf (" Booting using the fdt blob at 0x%x\n", (int)fdt_blob);
1540 } else if (images->legacy_hdr_valid &&
1541 image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1543 ulong fdt_data, fdt_len;
1546 * Now check if we have a legacy multi-component image,
1547 * get second entry data start address and len.
1549 printf ("## Flattened Device Tree from multi "
1550 "component Image at %08lX\n",
1551 (ulong)images->legacy_hdr_os);
1553 image_multi_getimg (images->legacy_hdr_os, 2, &fdt_data, &fdt_len);
1556 fdt_blob = (char *)fdt_data;
1557 printf (" Booting using the fdt at 0x%x\n", (int)fdt_blob);
1559 if (fdt_check_header (fdt_blob) != 0) {
1560 fdt_error ("image is not a fdt");
1564 if (fdt_totalsize(fdt_blob) != fdt_len) {
1565 fdt_error ("fdt size != image size");
1569 debug ("## No Flattened Device Tree\n");
1573 debug ("## No Flattened Device Tree\n");
1577 *of_flat_tree = fdt_blob;
1578 *of_size = fdt_totalsize(fdt_blob);
1579 debug (" of_flat_tree at 0x%08lx size 0x%08lx\n",
1580 (ulong)*of_flat_tree, *of_size);
1589 #endif /* CONFIG_OF_LIBFDT */
1591 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
1593 * boot_get_cmdline - allocate and initialize kernel cmdline
1594 * @lmb: pointer to lmb handle, will be used for memory mgmt
1595 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1596 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1597 * @bootmap_base: ulong variable, holds offset in physical memory to
1600 * boot_get_cmdline() allocates space for kernel command line below
1601 * BOOTMAPSZ + bootmap_base address. If "bootargs" U-boot environemnt
1602 * variable is present its contents is copied to allocated kernel
1609 int boot_get_cmdline (struct lmb *lmb, ulong *cmd_start, ulong *cmd_end,
1615 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
1616 CONFIG_SYS_BOOTMAPSZ + bootmap_base);
1618 if (cmdline == NULL)
1621 if ((s = getenv("bootargs")) == NULL)
1626 *cmd_start = (ulong) & cmdline[0];
1627 *cmd_end = *cmd_start + strlen(cmdline);
1629 debug ("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
1635 * boot_get_kbd - allocate and initialize kernel copy of board info
1636 * @lmb: pointer to lmb handle, will be used for memory mgmt
1637 * @kbd: double pointer to board info data
1638 * @bootmap_base: ulong variable, holds offset in physical memory to
1641 * boot_get_kbd() allocates space for kernel copy of board info data below
1642 * BOOTMAPSZ + bootmap_base address and kernel board info is initialized with
1643 * the current u-boot board info data.
1649 int boot_get_kbd (struct lmb *lmb, bd_t **kbd, ulong bootmap_base)
1651 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
1652 CONFIG_SYS_BOOTMAPSZ + bootmap_base);
1658 debug ("## kernel board info at 0x%08lx\n", (ulong)*kbd);
1660 #if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1661 do_bdinfo(NULL, 0, 0, NULL);
1666 #endif /* CONFIG_PPC || CONFIG_M68K */
1667 #endif /* !USE_HOSTCC */
1669 #if defined(CONFIG_FIT)
1670 /*****************************************************************************/
1671 /* New uImage format routines */
1672 /*****************************************************************************/
1674 static int fit_parse_spec (const char *spec, char sepc, ulong addr_curr,
1675 ulong *addr, const char **name)
1682 sep = strchr (spec, sepc);
1685 *addr = simple_strtoul (spec, NULL, 16);
1695 * fit_parse_conf - parse FIT configuration spec
1696 * @spec: input string, containing configuration spec
1697 * @add_curr: current image address (to be used as a possible default)
1698 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1700 * @conf_name double pointer to a char, will hold pointer to a configuration
1703 * fit_parse_conf() expects configuration spec in the for of [<addr>]#<conf>,
1704 * where <addr> is a FIT image address that contains configuration
1705 * with a <conf> unit name.
1707 * Address part is optional, and if omitted default add_curr will
1711 * 1 if spec is a valid configuration string,
1712 * addr and conf_name are set accordingly
1715 inline int fit_parse_conf (const char *spec, ulong addr_curr,
1716 ulong *addr, const char **conf_name)
1718 return fit_parse_spec (spec, '#', addr_curr, addr, conf_name);
1722 * fit_parse_subimage - parse FIT subimage spec
1723 * @spec: input string, containing subimage spec
1724 * @add_curr: current image address (to be used as a possible default)
1725 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1727 * @image_name: double pointer to a char, will hold pointer to a subimage name
1729 * fit_parse_subimage() expects subimage spec in the for of
1730 * [<addr>]:<subimage>, where <addr> is a FIT image address that contains
1731 * subimage with a <subimg> unit name.
1733 * Address part is optional, and if omitted default add_curr will
1737 * 1 if spec is a valid subimage string,
1738 * addr and image_name are set accordingly
1741 inline int fit_parse_subimage (const char *spec, ulong addr_curr,
1742 ulong *addr, const char **image_name)
1744 return fit_parse_spec (spec, ':', addr_curr, addr, image_name);
1746 #endif /* !USE_HOSTCC */
1748 static void fit_get_debug (const void *fit, int noffset,
1749 char *prop_name, int err)
1751 debug ("Can't get '%s' property from FIT 0x%08lx, "
1752 "node: offset %d, name %s (%s)\n",
1753 prop_name, (ulong)fit, noffset,
1754 fit_get_name (fit, noffset, NULL),
1755 fdt_strerror (err));
1759 * fit_print_contents - prints out the contents of the FIT format image
1760 * @fit: pointer to the FIT format image header
1761 * @p: pointer to prefix string
1763 * fit_print_contents() formats a multi line FIT image contents description.
1764 * The routine prints out FIT image properties (root node level) follwed by
1765 * the details of each component image.
1768 * no returned results
1770 void fit_print_contents (const void *fit)
1781 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1791 /* Root node properties */
1792 ret = fit_get_desc (fit, 0, &desc);
1793 printf ("%sFIT description: ", p);
1795 printf ("unavailable\n");
1797 printf ("%s\n", desc);
1799 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1800 ret = fit_get_timestamp (fit, 0, ×tamp);
1801 printf ("%sCreated: ", p);
1803 printf ("unavailable\n");
1805 genimg_print_time (timestamp);
1808 /* Find images parent node offset */
1809 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
1810 if (images_noffset < 0) {
1811 printf ("Can't find images parent node '%s' (%s)\n",
1812 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
1816 /* Process its subnodes, print out component images details */
1817 for (ndepth = 0, count = 0, noffset = fdt_next_node (fit, images_noffset, &ndepth);
1818 (noffset >= 0) && (ndepth > 0);
1819 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1822 * Direct child node of the images parent node,
1823 * i.e. component image node.
1825 printf ("%s Image %u (%s)\n", p, count++,
1826 fit_get_name(fit, noffset, NULL));
1828 fit_image_print (fit, noffset, p);
1832 /* Find configurations parent node offset */
1833 confs_noffset = fdt_path_offset (fit, FIT_CONFS_PATH);
1834 if (confs_noffset < 0) {
1835 debug ("Can't get configurations parent node '%s' (%s)\n",
1836 FIT_CONFS_PATH, fdt_strerror (confs_noffset));
1840 /* get default configuration unit name from default property */
1841 uname = (char *)fdt_getprop (fit, noffset, FIT_DEFAULT_PROP, NULL);
1843 printf ("%s Default Configuration: '%s'\n", p, uname);
1845 /* Process its subnodes, print out configurations details */
1846 for (ndepth = 0, count = 0, noffset = fdt_next_node (fit, confs_noffset, &ndepth);
1847 (noffset >= 0) && (ndepth > 0);
1848 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1851 * Direct child node of the configurations parent node,
1852 * i.e. configuration node.
1854 printf ("%s Configuration %u (%s)\n", p, count++,
1855 fit_get_name(fit, noffset, NULL));
1857 fit_conf_print (fit, noffset, p);
1863 * fit_image_print - prints out the FIT component image details
1864 * @fit: pointer to the FIT format image header
1865 * @image_noffset: offset of the component image node
1866 * @p: pointer to prefix string
1868 * fit_image_print() lists all mandatory properies for the processed component
1869 * image. If present, hash nodes are printed out as well. Load
1870 * address for images of type firmware is also printed out. Since the load
1871 * address is not mandatory for firmware images, it will be output as
1872 * "unavailable" when not present.
1875 * no returned results
1877 void fit_image_print (const void *fit, int image_noffset, const char *p)
1880 uint8_t type, arch, os, comp;
1888 /* Mandatory properties */
1889 ret = fit_get_desc (fit, image_noffset, &desc);
1890 printf ("%s Description: ", p);
1892 printf ("unavailable\n");
1894 printf ("%s\n", desc);
1896 fit_image_get_type (fit, image_noffset, &type);
1897 printf ("%s Type: %s\n", p, genimg_get_type_name (type));
1899 fit_image_get_comp (fit, image_noffset, &comp);
1900 printf ("%s Compression: %s\n", p, genimg_get_comp_name (comp));
1902 ret = fit_image_get_data (fit, image_noffset, &data, &size);
1905 printf ("%s Data Start: ", p);
1907 printf ("unavailable\n");
1909 printf ("0x%08lx\n", (ulong)data);
1912 printf ("%s Data Size: ", p);
1914 printf ("unavailable\n");
1916 genimg_print_size (size);
1918 /* Remaining, type dependent properties */
1919 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
1920 (type == IH_TYPE_RAMDISK) || (type == IH_TYPE_FIRMWARE) ||
1921 (type == IH_TYPE_FLATDT)) {
1922 fit_image_get_arch (fit, image_noffset, &arch);
1923 printf ("%s Architecture: %s\n", p, genimg_get_arch_name (arch));
1926 if (type == IH_TYPE_KERNEL) {
1927 fit_image_get_os (fit, image_noffset, &os);
1928 printf ("%s OS: %s\n", p, genimg_get_os_name (os));
1931 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
1932 (type == IH_TYPE_FIRMWARE)) {
1933 ret = fit_image_get_load (fit, image_noffset, &load);
1934 printf ("%s Load Address: ", p);
1936 printf ("unavailable\n");
1938 printf ("0x%08lx\n", load);
1941 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE)) {
1942 fit_image_get_entry (fit, image_noffset, &entry);
1943 printf ("%s Entry Point: ", p);
1945 printf ("unavailable\n");
1947 printf ("0x%08lx\n", entry);
1950 /* Process all hash subnodes of the component image node */
1951 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
1952 (noffset >= 0) && (ndepth > 0);
1953 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1955 /* Direct child node of the component image node */
1956 fit_image_print_hash (fit, noffset, p);
1962 * fit_image_print_hash - prints out the hash node details
1963 * @fit: pointer to the FIT format image header
1964 * @noffset: offset of the hash node
1965 * @p: pointer to prefix string
1967 * fit_image_print_hash() lists properies for the processed hash node
1970 * no returned results
1972 void fit_image_print_hash (const void *fit, int noffset, const char *p)
1980 * Check subnode name, must be equal to "hash".
1981 * Multiple hash nodes require unique unit node
1982 * names, e.g. hash@1, hash@2, etc.
1984 if (strncmp (fit_get_name(fit, noffset, NULL),
1986 strlen(FIT_HASH_NODENAME)) != 0)
1989 debug ("%s Hash node: '%s'\n", p,
1990 fit_get_name (fit, noffset, NULL));
1992 printf ("%s Hash algo: ", p);
1993 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
1994 printf ("invalid/unsupported\n");
1997 printf ("%s\n", algo);
1999 ret = fit_image_hash_get_value (fit, noffset, &value,
2001 printf ("%s Hash value: ", p);
2003 printf ("unavailable\n");
2005 for (i = 0; i < value_len; i++)
2006 printf ("%02x", value[i]);
2010 debug ("%s Hash len: %d\n", p, value_len);
2014 * fit_get_desc - get node description property
2015 * @fit: pointer to the FIT format image header
2016 * @noffset: node offset
2017 * @desc: double pointer to the char, will hold pointer to the descrption
2019 * fit_get_desc() reads description property from a given node, if
2020 * description is found pointer to it is returened in third call argument.
2026 int fit_get_desc (const void *fit, int noffset, char **desc)
2030 *desc = (char *)fdt_getprop (fit, noffset, FIT_DESC_PROP, &len);
2031 if (*desc == NULL) {
2032 fit_get_debug (fit, noffset, FIT_DESC_PROP, len);
2040 * fit_get_timestamp - get node timestamp property
2041 * @fit: pointer to the FIT format image header
2042 * @noffset: node offset
2043 * @timestamp: pointer to the time_t, will hold read timestamp
2045 * fit_get_timestamp() reads timestamp poperty from given node, if timestamp
2046 * is found and has a correct size its value is retured in third call
2051 * -1, on property read failure
2052 * -2, on wrong timestamp size
2054 int fit_get_timestamp (const void *fit, int noffset, time_t *timestamp)
2059 data = fdt_getprop (fit, noffset, FIT_TIMESTAMP_PROP, &len);
2061 fit_get_debug (fit, noffset, FIT_TIMESTAMP_PROP, len);
2064 if (len != sizeof (uint32_t)) {
2065 debug ("FIT timestamp with incorrect size of (%u)\n", len);
2069 *timestamp = uimage_to_cpu (*((uint32_t *)data));
2074 * fit_image_get_node - get node offset for component image of a given unit name
2075 * @fit: pointer to the FIT format image header
2076 * @image_uname: component image node unit name
2078 * fit_image_get_node() finds a component image (withing the '/images'
2079 * node) of a provided unit name. If image is found its node offset is
2080 * returned to the caller.
2083 * image node offset when found (>=0)
2084 * negative number on failure (FDT_ERR_* code)
2086 int fit_image_get_node (const void *fit, const char *image_uname)
2088 int noffset, images_noffset;
2090 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
2091 if (images_noffset < 0) {
2092 debug ("Can't find images parent node '%s' (%s)\n",
2093 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
2094 return images_noffset;
2097 noffset = fdt_subnode_offset (fit, images_noffset, image_uname);
2099 debug ("Can't get node offset for image unit name: '%s' (%s)\n",
2100 image_uname, fdt_strerror (noffset));
2107 * fit_image_get_os - get os id for a given component image node
2108 * @fit: pointer to the FIT format image header
2109 * @noffset: component image node offset
2110 * @os: pointer to the uint8_t, will hold os numeric id
2112 * fit_image_get_os() finds os property in a given component image node.
2113 * If the property is found, its (string) value is translated to the numeric
2114 * id which is returned to the caller.
2120 int fit_image_get_os (const void *fit, int noffset, uint8_t *os)
2125 /* Get OS name from property data */
2126 data = fdt_getprop (fit, noffset, FIT_OS_PROP, &len);
2128 fit_get_debug (fit, noffset, FIT_OS_PROP, len);
2133 /* Translate OS name to id */
2134 *os = genimg_get_os_id (data);
2139 * fit_image_get_arch - get arch id for a given component image node
2140 * @fit: pointer to the FIT format image header
2141 * @noffset: component image node offset
2142 * @arch: pointer to the uint8_t, will hold arch numeric id
2144 * fit_image_get_arch() finds arch property in a given component image node.
2145 * If the property is found, its (string) value is translated to the numeric
2146 * id which is returned to the caller.
2152 int fit_image_get_arch (const void *fit, int noffset, uint8_t *arch)
2157 /* Get architecture name from property data */
2158 data = fdt_getprop (fit, noffset, FIT_ARCH_PROP, &len);
2160 fit_get_debug (fit, noffset, FIT_ARCH_PROP, len);
2165 /* Translate architecture name to id */
2166 *arch = genimg_get_arch_id (data);
2171 * fit_image_get_type - get type id for a given component image node
2172 * @fit: pointer to the FIT format image header
2173 * @noffset: component image node offset
2174 * @type: pointer to the uint8_t, will hold type numeric id
2176 * fit_image_get_type() finds type property in a given component image node.
2177 * If the property is found, its (string) value is translated to the numeric
2178 * id which is returned to the caller.
2184 int fit_image_get_type (const void *fit, int noffset, uint8_t *type)
2189 /* Get image type name from property data */
2190 data = fdt_getprop (fit, noffset, FIT_TYPE_PROP, &len);
2192 fit_get_debug (fit, noffset, FIT_TYPE_PROP, len);
2197 /* Translate image type name to id */
2198 *type = genimg_get_type_id (data);
2203 * fit_image_get_comp - get comp id for a given component image node
2204 * @fit: pointer to the FIT format image header
2205 * @noffset: component image node offset
2206 * @comp: pointer to the uint8_t, will hold comp numeric id
2208 * fit_image_get_comp() finds comp property in a given component image node.
2209 * If the property is found, its (string) value is translated to the numeric
2210 * id which is returned to the caller.
2216 int fit_image_get_comp (const void *fit, int noffset, uint8_t *comp)
2221 /* Get compression name from property data */
2222 data = fdt_getprop (fit, noffset, FIT_COMP_PROP, &len);
2224 fit_get_debug (fit, noffset, FIT_COMP_PROP, len);
2229 /* Translate compression name to id */
2230 *comp = genimg_get_comp_id (data);
2235 * fit_image_get_load - get load address property for a given component image node
2236 * @fit: pointer to the FIT format image header
2237 * @noffset: component image node offset
2238 * @load: pointer to the uint32_t, will hold load address
2240 * fit_image_get_load() finds load address property in a given component image node.
2241 * If the property is found, its value is returned to the caller.
2247 int fit_image_get_load (const void *fit, int noffset, ulong *load)
2250 const uint32_t *data;
2252 data = fdt_getprop (fit, noffset, FIT_LOAD_PROP, &len);
2254 fit_get_debug (fit, noffset, FIT_LOAD_PROP, len);
2258 *load = uimage_to_cpu (*data);
2263 * fit_image_get_entry - get entry point address property for a given component image node
2264 * @fit: pointer to the FIT format image header
2265 * @noffset: component image node offset
2266 * @entry: pointer to the uint32_t, will hold entry point address
2268 * fit_image_get_entry() finds entry point address property in a given component image node.
2269 * If the property is found, its value is returned to the caller.
2275 int fit_image_get_entry (const void *fit, int noffset, ulong *entry)
2278 const uint32_t *data;
2280 data = fdt_getprop (fit, noffset, FIT_ENTRY_PROP, &len);
2282 fit_get_debug (fit, noffset, FIT_ENTRY_PROP, len);
2286 *entry = uimage_to_cpu (*data);
2291 * fit_image_get_data - get data property and its size for a given component image node
2292 * @fit: pointer to the FIT format image header
2293 * @noffset: component image node offset
2294 * @data: double pointer to void, will hold data property's data address
2295 * @size: pointer to size_t, will hold data property's data size
2297 * fit_image_get_data() finds data property in a given component image node.
2298 * If the property is found its data start address and size are returned to
2305 int fit_image_get_data (const void *fit, int noffset,
2306 const void **data, size_t *size)
2310 *data = fdt_getprop (fit, noffset, FIT_DATA_PROP, &len);
2311 if (*data == NULL) {
2312 fit_get_debug (fit, noffset, FIT_DATA_PROP, len);
2322 * fit_image_hash_get_algo - get hash algorithm name
2323 * @fit: pointer to the FIT format image header
2324 * @noffset: hash node offset
2325 * @algo: double pointer to char, will hold pointer to the algorithm name
2327 * fit_image_hash_get_algo() finds hash algorithm property in a given hash node.
2328 * If the property is found its data start address is returned to the caller.
2334 int fit_image_hash_get_algo (const void *fit, int noffset, char **algo)
2338 *algo = (char *)fdt_getprop (fit, noffset, FIT_ALGO_PROP, &len);
2339 if (*algo == NULL) {
2340 fit_get_debug (fit, noffset, FIT_ALGO_PROP, len);
2348 * fit_image_hash_get_value - get hash value and length
2349 * @fit: pointer to the FIT format image header
2350 * @noffset: hash node offset
2351 * @value: double pointer to uint8_t, will hold address of a hash value data
2352 * @value_len: pointer to an int, will hold hash data length
2354 * fit_image_hash_get_value() finds hash value property in a given hash node.
2355 * If the property is found its data start address and size are returned to
2362 int fit_image_hash_get_value (const void *fit, int noffset, uint8_t **value,
2367 *value = (uint8_t *)fdt_getprop (fit, noffset, FIT_VALUE_PROP, &len);
2368 if (*value == NULL) {
2369 fit_get_debug (fit, noffset, FIT_VALUE_PROP, len);
2379 * fit_set_timestamp - set node timestamp property
2380 * @fit: pointer to the FIT format image header
2381 * @noffset: node offset
2382 * @timestamp: timestamp value to be set
2384 * fit_set_timestamp() attempts to set timestamp property in the requested
2385 * node and returns operation status to the caller.
2389 * -1, on property read failure
2391 int fit_set_timestamp (void *fit, int noffset, time_t timestamp)
2396 t = cpu_to_uimage (timestamp);
2397 ret = fdt_setprop (fit, noffset, FIT_TIMESTAMP_PROP, &t,
2400 printf ("Can't set '%s' property for '%s' node (%s)\n",
2401 FIT_TIMESTAMP_PROP, fit_get_name (fit, noffset, NULL),
2402 fdt_strerror (ret));
2410 * calculate_hash - calculate and return hash for provided input data
2411 * @data: pointer to the input data
2412 * @data_len: data length
2413 * @algo: requested hash algorithm
2414 * @value: pointer to the char, will hold hash value data (caller must
2415 * allocate enough free space)
2416 * value_len: length of the calculated hash
2418 * calculate_hash() computes input data hash according to the requested algorithm.
2419 * Resulting hash value is placed in caller provided 'value' buffer, length
2420 * of the calculated hash is returned via value_len pointer argument.
2424 * -1, when algo is unsupported
2426 static int calculate_hash (const void *data, int data_len, const char *algo,
2427 uint8_t *value, int *value_len)
2429 if (strcmp (algo, "crc32") == 0 ) {
2430 *((uint32_t *)value) = crc32_wd (0, data, data_len,
2432 *((uint32_t *)value) = cpu_to_uimage (*((uint32_t *)value));
2434 } else if (strcmp (algo, "sha1") == 0 ) {
2435 sha1_csum_wd ((unsigned char *) data, data_len,
2436 (unsigned char *) value, CHUNKSZ_SHA1);
2438 } else if (strcmp (algo, "md5") == 0 ) {
2439 md5_wd ((unsigned char *)data, data_len, value, CHUNKSZ_MD5);
2442 debug ("Unsupported hash alogrithm\n");
2450 * fit_set_hashes - process FIT component image nodes and calculate hashes
2451 * @fit: pointer to the FIT format image header
2453 * fit_set_hashes() adds hash values for all component images in the FIT blob.
2454 * Hashes are calculated for all component images which have hash subnodes
2455 * with algorithm property set to one of the supported hash algorithms.
2459 * libfdt error code, on failure
2461 int fit_set_hashes (void *fit)
2468 /* Find images parent node offset */
2469 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
2470 if (images_noffset < 0) {
2471 printf ("Can't find images parent node '%s' (%s)\n",
2472 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
2473 return images_noffset;
2476 /* Process its subnodes, print out component images details */
2477 for (ndepth = 0, noffset = fdt_next_node (fit, images_noffset, &ndepth);
2478 (noffset >= 0) && (ndepth > 0);
2479 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2482 * Direct child node of the images parent node,
2483 * i.e. component image node.
2485 ret = fit_image_set_hashes (fit, noffset);
2495 * fit_image_set_hashes - calculate/set hashes for given component image node
2496 * @fit: pointer to the FIT format image header
2497 * @image_noffset: requested component image node
2499 * fit_image_set_hashes() adds hash values for an component image node. All
2500 * existing hash subnodes are checked, if algorithm property is set to one of
2501 * the supported hash algorithms, hash value is computed and corresponding
2502 * hash node property is set, for example:
2504 * Input component image node structure:
2506 * o image@1 (at image_noffset)
2507 * | - data = [binary data]
2511 * Output component image node structure:
2513 * o image@1 (at image_noffset)
2514 * | - data = [binary data]
2517 * |- value = sha1(data)
2523 int fit_image_set_hashes (void *fit, int image_noffset)
2528 uint8_t value[FIT_MAX_HASH_LEN];
2533 /* Get image data and data length */
2534 if (fit_image_get_data (fit, image_noffset, &data, &size)) {
2535 printf ("Can't get image data/size\n");
2539 /* Process all hash subnodes of the component image node */
2540 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
2541 (noffset >= 0) && (ndepth > 0);
2542 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2544 /* Direct child node of the component image node */
2547 * Check subnode name, must be equal to "hash".
2548 * Multiple hash nodes require unique unit node
2549 * names, e.g. hash@1, hash@2, etc.
2551 if (strncmp (fit_get_name(fit, noffset, NULL),
2553 strlen(FIT_HASH_NODENAME)) != 0) {
2554 /* Not a hash subnode, skip it */
2558 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
2559 printf ("Can't get hash algo property for "
2560 "'%s' hash node in '%s' image node\n",
2561 fit_get_name (fit, noffset, NULL),
2562 fit_get_name (fit, image_noffset, NULL));
2566 if (calculate_hash (data, size, algo, value, &value_len)) {
2567 printf ("Unsupported hash algorithm (%s) for "
2568 "'%s' hash node in '%s' image node\n",
2569 algo, fit_get_name (fit, noffset, NULL),
2570 fit_get_name (fit, image_noffset, NULL));
2574 if (fit_image_hash_set_value (fit, noffset, value,
2576 printf ("Can't set hash value for "
2577 "'%s' hash node in '%s' image node\n",
2578 fit_get_name (fit, noffset, NULL),
2579 fit_get_name (fit, image_noffset, NULL));
2589 * fit_image_hash_set_value - set hash value in requested has node
2590 * @fit: pointer to the FIT format image header
2591 * @noffset: hash node offset
2592 * @value: hash value to be set
2593 * @value_len: hash value length
2595 * fit_image_hash_set_value() attempts to set hash value in a node at offset
2596 * given and returns operation status to the caller.
2602 int fit_image_hash_set_value (void *fit, int noffset, uint8_t *value,
2607 ret = fdt_setprop (fit, noffset, FIT_VALUE_PROP, value, value_len);
2609 printf ("Can't set hash '%s' property for '%s' node (%s)\n",
2610 FIT_VALUE_PROP, fit_get_name (fit, noffset, NULL),
2611 fdt_strerror (ret));
2617 #endif /* USE_HOSTCC */
2620 * fit_image_check_hashes - verify data intergity
2621 * @fit: pointer to the FIT format image header
2622 * @image_noffset: component image node offset
2624 * fit_image_check_hashes() goes over component image hash nodes,
2625 * re-calculates each data hash and compares with the value stored in hash
2629 * 1, if all hashes are valid
2630 * 0, otherwise (or on error)
2632 int fit_image_check_hashes (const void *fit, int image_noffset)
2639 uint8_t value[FIT_MAX_HASH_LEN];
2645 /* Get image data and data length */
2646 if (fit_image_get_data (fit, image_noffset, &data, &size)) {
2647 printf ("Can't get image data/size\n");
2651 /* Process all hash subnodes of the component image node */
2652 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
2653 (noffset >= 0) && (ndepth > 0);
2654 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2656 /* Direct child node of the component image node */
2659 * Check subnode name, must be equal to "hash".
2660 * Multiple hash nodes require unique unit node
2661 * names, e.g. hash@1, hash@2, etc.
2663 if (strncmp (fit_get_name(fit, noffset, NULL),
2665 strlen(FIT_HASH_NODENAME)) != 0)
2668 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
2669 err_msg = " error!\nCan't get hash algo "
2673 printf ("%s", algo);
2675 if (fit_image_hash_get_value (fit, noffset, &fit_value,
2677 err_msg = " error!\nCan't get hash value "
2682 if (calculate_hash (data, size, algo, value, &value_len)) {
2683 err_msg = " error!\nUnsupported hash algorithm";
2687 if (value_len != fit_value_len) {
2688 err_msg = " error !\nBad hash value len";
2690 } else if (memcmp (value, fit_value, value_len) != 0) {
2691 err_msg = " error!\nBad hash value";
2701 printf ("%s for '%s' hash node in '%s' image node\n",
2702 err_msg, fit_get_name (fit, noffset, NULL),
2703 fit_get_name (fit, image_noffset, NULL));
2708 * fit_all_image_check_hashes - verify data intergity for all images
2709 * @fit: pointer to the FIT format image header
2711 * fit_all_image_check_hashes() goes over all images in the FIT and
2712 * for every images checks if all it's hashes are valid.
2715 * 1, if all hashes of all images are valid
2716 * 0, otherwise (or on error)
2718 int fit_all_image_check_hashes (const void *fit)
2725 /* Find images parent node offset */
2726 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
2727 if (images_noffset < 0) {
2728 printf ("Can't find images parent node '%s' (%s)\n",
2729 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
2733 /* Process all image subnodes, check hashes for each */
2734 printf ("## Checking hash(es) for FIT Image at %08lx ...\n",
2736 for (ndepth = 0, count = 0,
2737 noffset = fdt_next_node (fit, images_noffset, &ndepth);
2738 (noffset >= 0) && (ndepth > 0);
2739 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2742 * Direct child node of the images parent node,
2743 * i.e. component image node.
2745 printf (" Hash(es) for Image %u (%s): ", count++,
2746 fit_get_name (fit, noffset, NULL));
2748 if (!fit_image_check_hashes (fit, noffset))
2757 * fit_image_check_os - check whether image node is of a given os type
2758 * @fit: pointer to the FIT format image header
2759 * @noffset: component image node offset
2760 * @os: requested image os
2762 * fit_image_check_os() reads image os property and compares its numeric
2763 * id with the requested os. Comparison result is returned to the caller.
2766 * 1 if image is of given os type
2767 * 0 otherwise (or on error)
2769 int fit_image_check_os (const void *fit, int noffset, uint8_t os)
2773 if (fit_image_get_os (fit, noffset, &image_os))
2775 return (os == image_os);
2779 * fit_image_check_arch - check whether image node is of a given arch
2780 * @fit: pointer to the FIT format image header
2781 * @noffset: component image node offset
2782 * @arch: requested imagearch
2784 * fit_image_check_arch() reads image arch property and compares its numeric
2785 * id with the requested arch. Comparison result is returned to the caller.
2788 * 1 if image is of given arch
2789 * 0 otherwise (or on error)
2791 int fit_image_check_arch (const void *fit, int noffset, uint8_t arch)
2795 if (fit_image_get_arch (fit, noffset, &image_arch))
2797 return (arch == image_arch);
2801 * fit_image_check_type - check whether image node is of a given type
2802 * @fit: pointer to the FIT format image header
2803 * @noffset: component image node offset
2804 * @type: requested image type
2806 * fit_image_check_type() reads image type property and compares its numeric
2807 * id with the requested type. Comparison result is returned to the caller.
2810 * 1 if image is of given type
2811 * 0 otherwise (or on error)
2813 int fit_image_check_type (const void *fit, int noffset, uint8_t type)
2817 if (fit_image_get_type (fit, noffset, &image_type))
2819 return (type == image_type);
2823 * fit_image_check_comp - check whether image node uses given compression
2824 * @fit: pointer to the FIT format image header
2825 * @noffset: component image node offset
2826 * @comp: requested image compression type
2828 * fit_image_check_comp() reads image compression property and compares its
2829 * numeric id with the requested compression type. Comparison result is
2830 * returned to the caller.
2833 * 1 if image uses requested compression
2834 * 0 otherwise (or on error)
2836 int fit_image_check_comp (const void *fit, int noffset, uint8_t comp)
2840 if (fit_image_get_comp (fit, noffset, &image_comp))
2842 return (comp == image_comp);
2846 * fit_check_format - sanity check FIT image format
2847 * @fit: pointer to the FIT format image header
2849 * fit_check_format() runs a basic sanity FIT image verification.
2850 * Routine checks for mandatory properties, nodes, etc.
2856 int fit_check_format (const void *fit)
2858 /* mandatory / node 'description' property */
2859 if (fdt_getprop (fit, 0, FIT_DESC_PROP, NULL) == NULL) {
2860 debug ("Wrong FIT format: no description\n");
2864 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
2865 /* mandatory / node 'timestamp' property */
2866 if (fdt_getprop (fit, 0, FIT_TIMESTAMP_PROP, NULL) == NULL) {
2867 debug ("Wrong FIT format: no timestamp\n");
2872 /* mandatory subimages parent '/images' node */
2873 if (fdt_path_offset (fit, FIT_IMAGES_PATH) < 0) {
2874 debug ("Wrong FIT format: no images parent node\n");
2882 * fit_conf_get_node - get node offset for configuration of a given unit name
2883 * @fit: pointer to the FIT format image header
2884 * @conf_uname: configuration node unit name
2886 * fit_conf_get_node() finds a configuration (withing the '/configurations'
2887 * parant node) of a provided unit name. If configuration is found its node offset
2888 * is returned to the caller.
2890 * When NULL is provided in second argument fit_conf_get_node() will search
2891 * for a default configuration node instead. Default configuration node unit name
2892 * is retrived from FIT_DEFAULT_PROP property of the '/configurations' node.
2895 * configuration node offset when found (>=0)
2896 * negative number on failure (FDT_ERR_* code)
2898 int fit_conf_get_node (const void *fit, const char *conf_uname)
2900 int noffset, confs_noffset;
2903 confs_noffset = fdt_path_offset (fit, FIT_CONFS_PATH);
2904 if (confs_noffset < 0) {
2905 debug ("Can't find configurations parent node '%s' (%s)\n",
2906 FIT_CONFS_PATH, fdt_strerror (confs_noffset));
2907 return confs_noffset;
2910 if (conf_uname == NULL) {
2911 /* get configuration unit name from the default property */
2912 debug ("No configuration specified, trying default...\n");
2913 conf_uname = (char *)fdt_getprop (fit, confs_noffset, FIT_DEFAULT_PROP, &len);
2914 if (conf_uname == NULL) {
2915 fit_get_debug (fit, confs_noffset, FIT_DEFAULT_PROP, len);
2918 debug ("Found default configuration: '%s'\n", conf_uname);
2921 noffset = fdt_subnode_offset (fit, confs_noffset, conf_uname);
2923 debug ("Can't get node offset for configuration unit name: '%s' (%s)\n",
2924 conf_uname, fdt_strerror (noffset));
2930 static int __fit_conf_get_prop_node (const void *fit, int noffset,
2931 const char *prop_name)
2936 /* get kernel image unit name from configuration kernel property */
2937 uname = (char *)fdt_getprop (fit, noffset, prop_name, &len);
2941 return fit_image_get_node (fit, uname);
2945 * fit_conf_get_kernel_node - get kernel image node offset that corresponds to
2946 * a given configuration
2947 * @fit: pointer to the FIT format image header
2948 * @noffset: configuration node offset
2950 * fit_conf_get_kernel_node() retrives kernel image node unit name from
2951 * configuration FIT_KERNEL_PROP property and translates it to the node
2955 * image node offset when found (>=0)
2956 * negative number on failure (FDT_ERR_* code)
2958 int fit_conf_get_kernel_node (const void *fit, int noffset)
2960 return __fit_conf_get_prop_node (fit, noffset, FIT_KERNEL_PROP);
2964 * fit_conf_get_ramdisk_node - get ramdisk image node offset that corresponds to
2965 * a given configuration
2966 * @fit: pointer to the FIT format image header
2967 * @noffset: configuration node offset
2969 * fit_conf_get_ramdisk_node() retrives ramdisk image node unit name from
2970 * configuration FIT_KERNEL_PROP property and translates it to the node
2974 * image node offset when found (>=0)
2975 * negative number on failure (FDT_ERR_* code)
2977 int fit_conf_get_ramdisk_node (const void *fit, int noffset)
2979 return __fit_conf_get_prop_node (fit, noffset, FIT_RAMDISK_PROP);
2983 * fit_conf_get_fdt_node - get fdt image node offset that corresponds to
2984 * a given configuration
2985 * @fit: pointer to the FIT format image header
2986 * @noffset: configuration node offset
2988 * fit_conf_get_fdt_node() retrives fdt image node unit name from
2989 * configuration FIT_KERNEL_PROP property and translates it to the node
2993 * image node offset when found (>=0)
2994 * negative number on failure (FDT_ERR_* code)
2996 int fit_conf_get_fdt_node (const void *fit, int noffset)
2998 return __fit_conf_get_prop_node (fit, noffset, FIT_FDT_PROP);
3002 * fit_conf_print - prints out the FIT configuration details
3003 * @fit: pointer to the FIT format image header
3004 * @noffset: offset of the configuration node
3005 * @p: pointer to prefix string
3007 * fit_conf_print() lists all mandatory properies for the processed
3008 * configuration node.
3011 * no returned results
3013 void fit_conf_print (const void *fit, int noffset, const char *p)
3019 /* Mandatory properties */
3020 ret = fit_get_desc (fit, noffset, &desc);
3021 printf ("%s Description: ", p);
3023 printf ("unavailable\n");
3025 printf ("%s\n", desc);
3027 uname = (char *)fdt_getprop (fit, noffset, FIT_KERNEL_PROP, NULL);
3028 printf ("%s Kernel: ", p);
3030 printf ("unavailable\n");
3032 printf ("%s\n", uname);
3034 /* Optional properties */
3035 uname = (char *)fdt_getprop (fit, noffset, FIT_RAMDISK_PROP, NULL);
3037 printf ("%s Init Ramdisk: %s\n", p, uname);
3039 uname = (char *)fdt_getprop (fit, noffset, FIT_FDT_PROP, NULL);
3041 printf ("%s FDT: %s\n", p, uname);
3045 * fit_check_ramdisk - verify FIT format ramdisk subimage
3046 * @fit_hdr: pointer to the FIT ramdisk header
3047 * @rd_noffset: ramdisk subimage node offset within FIT image
3048 * @arch: requested ramdisk image architecture type
3049 * @verify: data CRC verification flag
3051 * fit_check_ramdisk() verifies integrity of the ramdisk subimage and from
3052 * specified FIT image.
3059 static int fit_check_ramdisk (const void *fit, int rd_noffset, uint8_t arch, int verify)
3061 fit_image_print (fit, rd_noffset, " ");
3064 puts (" Verifying Hash Integrity ... ");
3065 if (!fit_image_check_hashes (fit, rd_noffset)) {
3066 puts ("Bad Data Hash\n");
3067 show_boot_progress (-125);
3073 show_boot_progress (126);
3074 if (!fit_image_check_os (fit, rd_noffset, IH_OS_LINUX) ||
3075 !fit_image_check_arch (fit, rd_noffset, arch) ||
3076 !fit_image_check_type (fit, rd_noffset, IH_TYPE_RAMDISK)) {
3077 printf ("No Linux %s Ramdisk Image\n",
3078 genimg_get_arch_name(arch));
3079 show_boot_progress (-126);
3083 show_boot_progress (127);
3086 #endif /* USE_HOSTCC */
3087 #endif /* CONFIG_FIT */