2 * (C) Copyright 2008 Semihalf
4 * (C) Copyright 2000-2006
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 *argv[]);
66 DECLARE_GLOBAL_DATA_PTR;
68 static image_header_t* image_get_ramdisk (ulong rd_addr, uint8_t arch,
72 #include <u-boot/md5.h>
75 #endif /* !USE_HOSTCC*/
77 typedef struct table_entry {
78 int id; /* as defined in image.h */
79 char *sname; /* short (input) name */
80 char *lname; /* long (output) name */
83 static table_entry_t uimage_arch[] = {
84 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
85 { IH_ARCH_ALPHA, "alpha", "Alpha", },
86 { IH_ARCH_ARM, "arm", "ARM", },
87 { IH_ARCH_I386, "x86", "Intel x86", },
88 { IH_ARCH_IA64, "ia64", "IA64", },
89 { IH_ARCH_M68K, "m68k", "M68K", },
90 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
91 { IH_ARCH_MIPS, "mips", "MIPS", },
92 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
93 { IH_ARCH_NIOS, "nios", "NIOS", },
94 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
95 { IH_ARCH_PPC, "powerpc", "PowerPC", },
96 { IH_ARCH_PPC, "ppc", "PowerPC", },
97 { IH_ARCH_S390, "s390", "IBM S390", },
98 { IH_ARCH_SH, "sh", "SuperH", },
99 { IH_ARCH_SPARC, "sparc", "SPARC", },
100 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
101 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
102 { IH_ARCH_AVR32, "avr32", "AVR32", },
106 static table_entry_t uimage_os[] = {
107 { IH_OS_INVALID, NULL, "Invalid OS", },
108 #if defined(CONFIG_ARTOS) || defined(USE_HOSTCC)
109 { IH_OS_ARTOS, "artos", "ARTOS", },
111 { IH_OS_LINUX, "linux", "Linux", },
112 #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
113 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
115 { IH_OS_NETBSD, "netbsd", "NetBSD", },
116 { IH_OS_RTEMS, "rtems", "RTEMS", },
117 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
118 #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
119 { IH_OS_QNX, "qnx", "QNX", },
120 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
123 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
124 { IH_OS_DELL, "dell", "Dell", },
125 { IH_OS_ESIX, "esix", "Esix", },
126 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
127 { IH_OS_IRIX, "irix", "Irix", },
128 { IH_OS_NCR, "ncr", "NCR", },
129 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
130 { IH_OS_PSOS, "psos", "pSOS", },
131 { IH_OS_SCO, "sco", "SCO", },
132 { IH_OS_SOLARIS, "solaris", "Solaris", },
133 { IH_OS_SVR4, "svr4", "SVR4", },
138 static table_entry_t uimage_type[] = {
139 { IH_TYPE_INVALID, NULL, "Invalid Image", },
140 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
141 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
142 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
143 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
144 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
145 { IH_TYPE_SCRIPT, "script", "Script", },
146 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
147 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
151 static table_entry_t uimage_comp[] = {
152 { IH_COMP_NONE, "none", "uncompressed", },
153 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
154 { IH_COMP_GZIP, "gzip", "gzip compressed", },
158 uint32_t crc32 (uint32_t, const unsigned char *, uint);
159 uint32_t crc32_wd (uint32_t, const unsigned char *, uint, uint);
160 static void genimg_print_size (uint32_t size);
161 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
162 static void genimg_print_time (time_t timestamp);
165 /*****************************************************************************/
166 /* Legacy format routines */
167 /*****************************************************************************/
168 int image_check_hcrc (image_header_t *hdr)
171 ulong len = image_get_header_size ();
172 image_header_t header;
174 /* Copy header so we can blank CRC field for re-calculation */
175 memmove (&header, (char *)hdr, image_get_header_size ());
176 image_set_hcrc (&header, 0);
178 hcrc = crc32 (0, (unsigned char *)&header, len);
180 return (hcrc == image_get_hcrc (hdr));
183 int image_check_dcrc (image_header_t *hdr)
185 ulong data = image_get_data (hdr);
186 ulong len = image_get_data_size (hdr);
187 ulong dcrc = crc32_wd (0, (unsigned char *)data, len, CHUNKSZ_CRC32);
189 return (dcrc == image_get_dcrc (hdr));
194 * image_multi_count - get component (sub-image) count
195 * @hdr: pointer to the header of the multi component image
197 * image_multi_count() returns number of components in a multi
200 * Note: no checking of the image type is done, caller must pass
201 * a valid multi component image.
204 * number of components
206 ulong image_multi_count (image_header_t *hdr)
211 /* get start of the image payload, which in case of multi
212 * component images that points to a table of component sizes */
213 size = (uint32_t *)image_get_data (hdr);
215 /* count non empty slots */
216 for (i = 0; size[i]; ++i)
223 * image_multi_getimg - get component data address and size
224 * @hdr: pointer to the header of the multi component image
225 * @idx: index of the requested component
226 * @data: pointer to a ulong variable, will hold component data address
227 * @len: pointer to a ulong variable, will hold component size
229 * image_multi_getimg() returns size and data address for the requested
230 * component in a multi component image.
232 * Note: no checking of the image type is done, caller must pass
233 * a valid multi component image.
236 * data address and size of the component, if idx is valid
237 * 0 in data and len, if idx is out of range
239 void image_multi_getimg (image_header_t *hdr, ulong idx,
240 ulong *data, ulong *len)
244 ulong offset, count, img_data;
246 /* get number of component */
247 count = image_multi_count (hdr);
249 /* get start of the image payload, which in case of multi
250 * component images that points to a table of component sizes */
251 size = (uint32_t *)image_get_data (hdr);
253 /* get address of the proper component data start, which means
254 * skipping sizes table (add 1 for last, null entry) */
255 img_data = image_get_data (hdr) + (count + 1) * sizeof (uint32_t);
258 *len = uimage_to_cpu (size[idx]);
261 /* go over all indices preceding requested component idx */
262 for (i = 0; i < idx; i++) {
263 /* add up i-th component size, rounding up to 4 bytes */
264 offset += (uimage_to_cpu (size[i]) + 3) & ~3 ;
267 /* calculate idx-th component data address */
268 *data = img_data + offset;
275 static void image_print_type (image_header_t *hdr)
277 const char *os, *arch, *type, *comp;
279 os = genimg_get_os_name (image_get_os (hdr));
280 arch = genimg_get_arch_name (image_get_arch (hdr));
281 type = genimg_get_type_name (image_get_type (hdr));
282 comp = genimg_get_comp_name (image_get_comp (hdr));
284 printf ("%s %s %s (%s)\n", arch, os, type, comp);
288 * image_print_contents - prints out the contents of the legacy format image
289 * @hdr: pointer to the legacy format image header
290 * @p: pointer to prefix string
292 * image_print_contents() formats a multi line legacy image contents description.
293 * The routine prints out all header fields followed by the size/offset data
294 * for MULTI/SCRIPT images.
297 * no returned results
299 void image_print_contents (image_header_t *hdr)
309 printf ("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name (hdr));
310 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
311 printf ("%sCreated: ", p);
312 genimg_print_time ((time_t)image_get_time (hdr));
314 printf ("%sImage Type: ", p);
315 image_print_type (hdr);
316 printf ("%sData Size: ", p);
317 genimg_print_size (image_get_data_size (hdr));
318 printf ("%sLoad Address: %08x\n", p, image_get_load (hdr));
319 printf ("%sEntry Point: %08x\n", p, image_get_ep (hdr));
321 if (image_check_type (hdr, IH_TYPE_MULTI) ||
322 image_check_type (hdr, IH_TYPE_SCRIPT)) {
325 ulong count = image_multi_count (hdr);
327 printf ("%sContents:\n", p);
328 for (i = 0; i < count; i++) {
329 image_multi_getimg (hdr, i, &data, &len);
331 printf ("%s Image %d: ", p, i);
332 genimg_print_size (len);
334 if (image_check_type (hdr, IH_TYPE_SCRIPT) && i > 0) {
336 * the user may need to know offsets
337 * if planning to do something with
340 printf ("%s Offset = 0x%08lx\n", p, data);
349 * image_get_ramdisk - get and verify ramdisk image
350 * @rd_addr: ramdisk image start address
351 * @arch: expected ramdisk architecture
352 * @verify: checksum verification flag
354 * image_get_ramdisk() returns a pointer to the verified ramdisk image
355 * header. Routine receives image start address and expected architecture
356 * flag. Verification done covers data and header integrity and os/type/arch
359 * If dataflash support is enabled routine checks for dataflash addresses
360 * and handles required dataflash reads.
363 * pointer to a ramdisk image header, if image was found and valid
364 * otherwise, return NULL
366 static image_header_t* image_get_ramdisk (ulong rd_addr, uint8_t arch,
369 image_header_t *rd_hdr = (image_header_t *)rd_addr;
371 if (!image_check_magic (rd_hdr)) {
372 puts ("Bad Magic Number\n");
373 show_boot_progress (-10);
377 if (!image_check_hcrc (rd_hdr)) {
378 puts ("Bad Header Checksum\n");
379 show_boot_progress (-11);
383 show_boot_progress (10);
384 image_print_contents (rd_hdr);
387 puts(" Verifying Checksum ... ");
388 if (!image_check_dcrc (rd_hdr)) {
389 puts ("Bad Data CRC\n");
390 show_boot_progress (-12);
396 show_boot_progress (11);
398 if (!image_check_os (rd_hdr, IH_OS_LINUX) ||
399 !image_check_arch (rd_hdr, arch) ||
400 !image_check_type (rd_hdr, IH_TYPE_RAMDISK)) {
401 printf ("No Linux %s Ramdisk Image\n",
402 genimg_get_arch_name(arch));
403 show_boot_progress (-13);
409 #endif /* !USE_HOSTCC */
411 /*****************************************************************************/
412 /* Shared dual-format routines */
413 /*****************************************************************************/
415 int getenv_yesno (char *var)
417 char *s = getenv (var);
418 return (s && (*s == 'n')) ? 0 : 1;
421 ulong getenv_bootm_low(void)
423 char *s = getenv ("bootm_low");
425 ulong tmp = simple_strtoul (s, NULL, 16);
429 #if defined(CFG_SDRAM_BASE)
430 return CFG_SDRAM_BASE;
431 #elif defined(CONFIG_ARM)
432 return gd->bd->bi_dram[0].start;
438 phys_size_t getenv_bootm_size(void)
440 char *s = getenv ("bootm_size");
443 #ifdef CFG_64BIT_STRTOUL
444 tmp = (phys_size_t)simple_strtoull (s, NULL, 16);
446 tmp = (phys_size_t)simple_strtoul (s, NULL, 16);
451 #if defined(CONFIG_ARM)
452 return gd->bd->bi_dram[0].size;
454 return gd->bd->bi_memsize;
458 void memmove_wd (void *to, void *from, size_t len, ulong chunksz)
460 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
462 size_t tail = (len > chunksz) ? chunksz : len;
464 memmove (to, from, tail);
469 #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
470 memmove (to, from, len);
471 #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
473 #endif /* !USE_HOSTCC */
475 static void genimg_print_size (uint32_t size)
478 printf ("%d Bytes = ", size);
479 print_size (size, "\n");
481 printf ("%d Bytes = %.2f kB = %.2f MB\n",
482 size, (double)size / 1.024e3,
483 (double)size / 1.048576e6);
487 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
488 static void genimg_print_time (time_t timestamp)
493 to_tm (timestamp, &tm);
494 printf ("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
495 tm.tm_year, tm.tm_mon, tm.tm_mday,
496 tm.tm_hour, tm.tm_min, tm.tm_sec);
498 printf ("%s", ctime(×tamp));
501 #endif /* CONFIG_TIMESTAMP || CONFIG_CMD_DATE || USE_HOSTCC */
504 * get_table_entry_name - translate entry id to long name
505 * @table: pointer to a translation table for entries of a specific type
506 * @msg: message to be returned when translation fails
507 * @id: entry id to be translated
509 * get_table_entry_name() will go over translation table trying to find
510 * entry that matches given id. If matching entry is found, its long
511 * name is returned to the caller.
514 * long entry name if translation succeeds
517 static char *get_table_entry_name (table_entry_t *table, char *msg, int id)
519 for (; table->id >= 0; ++table) {
521 return (table->lname);
526 const char *genimg_get_os_name (uint8_t os)
528 return (get_table_entry_name (uimage_os, "Unknown OS", os));
531 const char *genimg_get_arch_name (uint8_t arch)
533 return (get_table_entry_name (uimage_arch, "Unknown Architecture", arch));
536 const char *genimg_get_type_name (uint8_t type)
538 return (get_table_entry_name (uimage_type, "Unknown Image", type));
541 const char *genimg_get_comp_name (uint8_t comp)
543 return (get_table_entry_name (uimage_comp, "Unknown Compression", comp));
547 * get_table_entry_id - translate short entry name to id
548 * @table: pointer to a translation table for entries of a specific type
549 * @table_name: to be used in case of error
550 * @name: entry short name to be translated
552 * get_table_entry_id() will go over translation table trying to find
553 * entry that matches given short name. If matching entry is found,
554 * its id returned to the caller.
557 * entry id if translation succeeds
560 static int get_table_entry_id (table_entry_t *table,
561 const char *table_name, const char *name)
567 for (t = table; t->id >= 0; ++t) {
568 if (t->sname && strcasecmp(t->sname, name) == 0)
572 fprintf (stderr, "\nInvalid %s Type - valid names are", table_name);
573 for (t = table; t->id >= 0; ++t) {
574 if (t->sname == NULL)
576 fprintf (stderr, "%c %s", (first) ? ':' : ',', t->sname);
579 fprintf (stderr, "\n");
581 for (t = table; t->id >= 0; ++t) {
582 if (t->sname && strcmp(t->sname, name) == 0)
585 debug ("Invalid %s Type: %s\n", table_name, name);
586 #endif /* USE_HOSTCC */
590 int genimg_get_os_id (const char *name)
592 return (get_table_entry_id (uimage_os, "OS", name));
595 int genimg_get_arch_id (const char *name)
597 return (get_table_entry_id (uimage_arch, "CPU", name));
600 int genimg_get_type_id (const char *name)
602 return (get_table_entry_id (uimage_type, "Image", name));
605 int genimg_get_comp_id (const char *name)
607 return (get_table_entry_id (uimage_comp, "Compression", name));
612 * genimg_get_format - get image format type
613 * @img_addr: image start address
615 * genimg_get_format() checks whether provided address points to a valid
616 * legacy or FIT image.
618 * New uImage format and FDT blob are based on a libfdt. FDT blob
619 * may be passed directly or embedded in a FIT image. In both situations
620 * genimg_get_format() must be able to dectect libfdt header.
623 * image format type or IMAGE_FORMAT_INVALID if no image is present
625 int genimg_get_format (void *img_addr)
627 ulong format = IMAGE_FORMAT_INVALID;
629 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
633 hdr = (image_header_t *)img_addr;
634 if (image_check_magic(hdr))
635 format = IMAGE_FORMAT_LEGACY;
636 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
638 fit_hdr = (char *)img_addr;
639 if (fdt_check_header (fit_hdr) == 0)
640 format = IMAGE_FORMAT_FIT;
648 * genimg_get_image - get image from special storage (if necessary)
649 * @img_addr: image start address
651 * genimg_get_image() checks if provided image start adddress is located
652 * in a dataflash storage. If so, image is moved to a system RAM memory.
655 * image start address after possible relocation from special storage
657 ulong genimg_get_image (ulong img_addr)
659 ulong ram_addr = img_addr;
661 #ifdef CONFIG_HAS_DATAFLASH
662 ulong h_size, d_size;
664 if (addr_dataflash (img_addr)){
665 /* ger RAM address */
666 ram_addr = CFG_LOAD_ADDR;
668 /* get header size */
669 h_size = image_get_header_size ();
670 #if defined(CONFIG_FIT)
671 if (sizeof(struct fdt_header) > h_size)
672 h_size = sizeof(struct fdt_header);
676 debug (" Reading image header from dataflash address "
677 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
679 read_dataflash (img_addr, h_size, (char *)ram_addr);
682 switch (genimg_get_format ((void *)ram_addr)) {
683 case IMAGE_FORMAT_LEGACY:
684 d_size = image_get_data_size ((image_header_t *)ram_addr);
685 debug (" Legacy format image found at 0x%08lx, size 0x%08lx\n",
688 #if defined(CONFIG_FIT)
689 case IMAGE_FORMAT_FIT:
690 d_size = fit_get_size ((const void *)ram_addr) - h_size;
691 debug (" FIT/FDT format image found at 0x%08lx, size 0x%08lx\n",
696 printf (" No valid image found at 0x%08lx\n", img_addr);
700 /* read in image data */
701 debug (" Reading image remaining data from dataflash address "
702 "%08lx to RAM address %08lx\n", img_addr + h_size,
705 read_dataflash (img_addr + h_size, d_size,
706 (char *)(ram_addr + h_size));
709 #endif /* CONFIG_HAS_DATAFLASH */
715 * fit_has_config - check if there is a valid FIT configuration
716 * @images: pointer to the bootm command headers structure
718 * fit_has_config() checks if there is a FIT configuration in use
719 * (if FTI support is present).
722 * 0, no FIT support or no configuration found
723 * 1, configuration found
725 int genimg_has_config (bootm_headers_t *images)
727 #if defined(CONFIG_FIT)
728 if (images->fit_uname_cfg)
735 * boot_get_ramdisk - main ramdisk handling routine
736 * @argc: command argument count
737 * @argv: command argument list
738 * @images: pointer to the bootm images structure
739 * @arch: expected ramdisk architecture
740 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
741 * @rd_end: pointer to a ulong variable, will hold ramdisk end
743 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
744 * Curently supported are the following ramdisk sources:
745 * - multicomponent kernel/ramdisk image,
746 * - commandline provided address of decicated ramdisk image.
749 * 0, if ramdisk image was found and valid, or skiped
750 * rd_start and rd_end are set to ramdisk start/end addresses if
751 * ramdisk image is found and valid
753 * 1, if ramdisk image is found but corrupted
754 * rd_start and rd_end are set to 0 if no ramdisk exists
756 int boot_get_ramdisk (int argc, char *argv[], bootm_headers_t *images,
757 uint8_t arch, ulong *rd_start, ulong *rd_end)
759 ulong rd_addr, rd_load;
760 ulong rd_data, rd_len;
761 image_header_t *rd_hdr;
762 #if defined(CONFIG_FIT)
764 const char *fit_uname_config = NULL;
765 const char *fit_uname_ramdisk = NULL;
777 * Look for a '-' which indicates to ignore the
780 if ((argc >= 3) && (strcmp(argv[2], "-") == 0)) {
781 debug ("## Skipping init Ramdisk\n");
782 rd_len = rd_data = 0;
783 } else if (argc >= 3 || genimg_has_config (images)) {
784 #if defined(CONFIG_FIT)
787 * If the init ramdisk comes from the FIT image and
788 * the FIT image address is omitted in the command
789 * line argument, try to use os FIT image address or
790 * default load address.
792 if (images->fit_uname_os)
793 default_addr = (ulong)images->fit_hdr_os;
795 default_addr = load_addr;
797 if (fit_parse_conf (argv[2], default_addr,
798 &rd_addr, &fit_uname_config)) {
799 debug ("* ramdisk: config '%s' from image at 0x%08lx\n",
800 fit_uname_config, rd_addr);
801 } else if (fit_parse_subimage (argv[2], default_addr,
802 &rd_addr, &fit_uname_ramdisk)) {
803 debug ("* ramdisk: subimage '%s' from image at 0x%08lx\n",
804 fit_uname_ramdisk, rd_addr);
808 rd_addr = simple_strtoul(argv[2], NULL, 16);
809 debug ("* ramdisk: cmdline image address = 0x%08lx\n",
812 #if defined(CONFIG_FIT)
814 /* use FIT configuration provided in first bootm
817 rd_addr = (ulong)images->fit_hdr_os;
818 fit_uname_config = images->fit_uname_cfg;
819 debug ("* ramdisk: using config '%s' from image at 0x%08lx\n",
820 fit_uname_config, rd_addr);
823 * Check whether configuration has ramdisk defined,
824 * if not, don't try to use it, quit silently.
826 fit_hdr = (void *)rd_addr;
827 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
828 if (cfg_noffset < 0) {
829 debug ("* ramdisk: no such config\n");
833 rd_noffset = fit_conf_get_ramdisk_node (fit_hdr, cfg_noffset);
834 if (rd_noffset < 0) {
835 debug ("* ramdisk: no ramdisk in config\n");
841 /* copy from dataflash if needed */
842 rd_addr = genimg_get_image (rd_addr);
845 * Check if there is an initrd image at the
846 * address provided in the second bootm argument
847 * check image type, for FIT images get FIT node.
849 switch (genimg_get_format ((void *)rd_addr)) {
850 case IMAGE_FORMAT_LEGACY:
851 printf ("## Loading init Ramdisk from Legacy "
852 "Image at %08lx ...\n", rd_addr);
854 show_boot_progress (9);
855 rd_hdr = image_get_ramdisk (rd_addr, arch,
861 rd_data = image_get_data (rd_hdr);
862 rd_len = image_get_data_size (rd_hdr);
863 rd_load = image_get_load (rd_hdr);
865 #if defined(CONFIG_FIT)
866 case IMAGE_FORMAT_FIT:
867 fit_hdr = (void *)rd_addr;
868 printf ("## Loading init Ramdisk from FIT "
869 "Image at %08lx ...\n", rd_addr);
871 show_boot_progress (120);
872 if (!fit_check_format (fit_hdr)) {
873 puts ("Bad FIT ramdisk image format!\n");
874 show_boot_progress (-120);
877 show_boot_progress (121);
879 if (!fit_uname_ramdisk) {
881 * no ramdisk image node unit name, try to get config
882 * node first. If config unit node name is NULL
883 * fit_conf_get_node() will try to find default config node
885 show_boot_progress (122);
886 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
887 if (cfg_noffset < 0) {
888 puts ("Could not find configuration node\n");
889 show_boot_progress (-122);
892 fit_uname_config = fdt_get_name (fit_hdr, cfg_noffset, NULL);
893 printf (" Using '%s' configuration\n", fit_uname_config);
895 rd_noffset = fit_conf_get_ramdisk_node (fit_hdr, cfg_noffset);
896 fit_uname_ramdisk = fit_get_name (fit_hdr, rd_noffset, NULL);
898 /* get ramdisk component image node offset */
899 show_boot_progress (123);
900 rd_noffset = fit_image_get_node (fit_hdr, fit_uname_ramdisk);
902 if (rd_noffset < 0) {
903 puts ("Could not find subimage node\n");
904 show_boot_progress (-124);
908 printf (" Trying '%s' ramdisk subimage\n", fit_uname_ramdisk);
910 show_boot_progress (125);
911 if (!fit_check_ramdisk (fit_hdr, rd_noffset, arch, images->verify))
914 /* get ramdisk image data address and length */
915 if (fit_image_get_data (fit_hdr, rd_noffset, &data, &size)) {
916 puts ("Could not find ramdisk subimage data!\n");
917 show_boot_progress (-127);
920 show_boot_progress (128);
922 rd_data = (ulong)data;
925 if (fit_image_get_load (fit_hdr, rd_noffset, &rd_load)) {
926 puts ("Can't get ramdisk subimage load address!\n");
927 show_boot_progress (-129);
930 show_boot_progress (129);
932 images->fit_hdr_rd = fit_hdr;
933 images->fit_uname_rd = fit_uname_ramdisk;
934 images->fit_noffset_rd = rd_noffset;
938 puts ("Wrong Ramdisk Image Format\n");
939 rd_data = rd_len = rd_load = 0;
942 #if defined(CONFIG_B2) || defined(CONFIG_EVB4510) || defined(CONFIG_ARMADILLO)
944 * We need to copy the ramdisk to SRAM to let Linux boot
947 memmove ((void *)rd_load, (uchar *)rd_data, rd_len);
950 #endif /* CONFIG_B2 || CONFIG_EVB4510 || CONFIG_ARMADILLO */
952 } else if (images->legacy_hdr_valid &&
953 image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
955 * Now check if we have a legacy mult-component image,
956 * get second entry data start address and len.
958 show_boot_progress (13);
959 printf ("## Loading init Ramdisk from multi component "
960 "Legacy Image at %08lx ...\n",
961 (ulong)images->legacy_hdr_os);
963 image_multi_getimg (images->legacy_hdr_os, 1, &rd_data, &rd_len);
968 show_boot_progress (14);
969 rd_len = rd_data = 0;
973 debug ("## No init Ramdisk\n");
976 *rd_end = rd_data + rd_len;
978 debug (" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
984 #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
986 * boot_ramdisk_high - relocate init ramdisk
987 * @lmb: pointer to lmb handle, will be used for memory mgmt
988 * @rd_data: ramdisk data start address
989 * @rd_len: ramdisk data length
990 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
991 * start address (after possible relocation)
992 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
993 * end address (after possible relocation)
995 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement
996 * variable and if requested ramdisk data is moved to a specified location.
998 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
999 * start/end addresses if ramdisk image start and len were provided,
1000 * otherwise set initrd_start and initrd_end set to zeros.
1006 int boot_ramdisk_high (struct lmb *lmb, ulong rd_data, ulong rd_len,
1007 ulong *initrd_start, ulong *initrd_end)
1011 int initrd_copy_to_ram = 1;
1013 if ((s = getenv ("initrd_high")) != NULL) {
1014 /* a value of "no" or a similar string will act like 0,
1015 * turning the "load high" feature off. This is intentional.
1017 initrd_high = simple_strtoul (s, NULL, 16);
1018 if (initrd_high == ~0)
1019 initrd_copy_to_ram = 0;
1021 /* not set, no restrictions to load high */
1026 #ifdef CONFIG_LOGBUFFER
1027 /* Prevent initrd from overwriting logbuffer */
1028 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1031 debug ("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
1032 initrd_high, initrd_copy_to_ram);
1035 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
1036 debug (" in-place initrd\n");
1037 *initrd_start = rd_data;
1038 *initrd_end = rd_data + rd_len;
1039 lmb_reserve(lmb, rd_data, rd_len);
1042 *initrd_start = (ulong)lmb_alloc_base (lmb, rd_len, 0x1000, initrd_high);
1044 *initrd_start = (ulong)lmb_alloc (lmb, rd_len, 0x1000);
1046 if (*initrd_start == 0) {
1047 puts ("ramdisk - allocation error\n");
1050 show_boot_progress (12);
1052 *initrd_end = *initrd_start + rd_len;
1053 printf (" Loading Ramdisk to %08lx, end %08lx ... ",
1054 *initrd_start, *initrd_end);
1056 memmove_wd ((void *)*initrd_start,
1057 (void *)rd_data, rd_len, CHUNKSZ);
1065 debug (" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
1066 *initrd_start, *initrd_end);
1075 * boot_get_cmdline - allocate and initialize kernel cmdline
1076 * @lmb: pointer to lmb handle, will be used for memory mgmt
1077 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1078 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1079 * @bootmap_base: ulong variable, holds offset in physical memory to
1082 * boot_get_cmdline() allocates space for kernel command line below
1083 * BOOTMAPSZ + bootmap_base address. If "bootargs" U-boot environemnt
1084 * variable is present its contents is copied to allocated kernel
1091 int boot_get_cmdline (struct lmb *lmb, ulong *cmd_start, ulong *cmd_end,
1097 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CFG_BARGSIZE, 0xf,
1098 CFG_BOOTMAPSZ + bootmap_base);
1100 if (cmdline == NULL)
1103 if ((s = getenv("bootargs")) == NULL)
1108 *cmd_start = (ulong) & cmdline[0];
1109 *cmd_end = *cmd_start + strlen(cmdline);
1111 debug ("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
1117 * boot_get_kbd - allocate and initialize kernel copy of board info
1118 * @lmb: pointer to lmb handle, will be used for memory mgmt
1119 * @kbd: double pointer to board info data
1120 * @bootmap_base: ulong variable, holds offset in physical memory to
1123 * boot_get_kbd() allocates space for kernel copy of board info data below
1124 * BOOTMAPSZ + bootmap_base address and kernel board info is initialized with
1125 * the current u-boot board info data.
1131 int boot_get_kbd (struct lmb *lmb, bd_t **kbd, ulong bootmap_base)
1133 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
1134 CFG_BOOTMAPSZ + bootmap_base);
1140 debug ("## kernel board info at 0x%08lx\n", (ulong)*kbd);
1142 #if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1143 do_bdinfo(NULL, 0, 0, NULL);
1148 #endif /* CONFIG_PPC || CONFIG_M68K */
1149 #endif /* !USE_HOSTCC */
1151 #if defined(CONFIG_FIT)
1152 /*****************************************************************************/
1153 /* New uImage format routines */
1154 /*****************************************************************************/
1156 static int fit_parse_spec (const char *spec, char sepc, ulong addr_curr,
1157 ulong *addr, const char **name)
1164 sep = strchr (spec, sepc);
1167 *addr = simple_strtoul (spec, NULL, 16);
1177 * fit_parse_conf - parse FIT configuration spec
1178 * @spec: input string, containing configuration spec
1179 * @add_curr: current image address (to be used as a possible default)
1180 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1182 * @conf_name double pointer to a char, will hold pointer to a configuration
1185 * fit_parse_conf() expects configuration spec in the for of [<addr>]#<conf>,
1186 * where <addr> is a FIT image address that contains configuration
1187 * with a <conf> unit name.
1189 * Address part is optional, and if omitted default add_curr will
1193 * 1 if spec is a valid configuration string,
1194 * addr and conf_name are set accordingly
1197 inline int fit_parse_conf (const char *spec, ulong addr_curr,
1198 ulong *addr, const char **conf_name)
1200 return fit_parse_spec (spec, '#', addr_curr, addr, conf_name);
1204 * fit_parse_subimage - parse FIT subimage spec
1205 * @spec: input string, containing subimage spec
1206 * @add_curr: current image address (to be used as a possible default)
1207 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1209 * @image_name: double pointer to a char, will hold pointer to a subimage name
1211 * fit_parse_subimage() expects subimage spec in the for of
1212 * [<addr>]:<subimage>, where <addr> is a FIT image address that contains
1213 * subimage with a <subimg> unit name.
1215 * Address part is optional, and if omitted default add_curr will
1219 * 1 if spec is a valid subimage string,
1220 * addr and image_name are set accordingly
1223 inline int fit_parse_subimage (const char *spec, ulong addr_curr,
1224 ulong *addr, const char **image_name)
1226 return fit_parse_spec (spec, ':', addr_curr, addr, image_name);
1228 #endif /* !USE_HOSTCC */
1230 static void fit_get_debug (const void *fit, int noffset,
1231 char *prop_name, int err)
1233 debug ("Can't get '%s' property from FIT 0x%08lx, "
1234 "node: offset %d, name %s (%s)\n",
1235 prop_name, (ulong)fit, noffset,
1236 fit_get_name (fit, noffset, NULL),
1237 fdt_strerror (err));
1241 * fit_print_contents - prints out the contents of the FIT format image
1242 * @fit: pointer to the FIT format image header
1243 * @p: pointer to prefix string
1245 * fit_print_contents() formats a multi line FIT image contents description.
1246 * The routine prints out FIT image properties (root node level) follwed by
1247 * the details of each component image.
1250 * no returned results
1252 void fit_print_contents (const void *fit)
1263 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1273 /* Root node properties */
1274 ret = fit_get_desc (fit, 0, &desc);
1275 printf ("%sFIT description: ", p);
1277 printf ("unavailable\n");
1279 printf ("%s\n", desc);
1281 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1282 ret = fit_get_timestamp (fit, 0, ×tamp);
1283 printf ("%sCreated: ", p);
1285 printf ("unavailable\n");
1287 genimg_print_time (timestamp);
1290 /* Find images parent node offset */
1291 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
1292 if (images_noffset < 0) {
1293 printf ("Can't find images parent node '%s' (%s)\n",
1294 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
1298 /* Process its subnodes, print out component images details */
1299 for (ndepth = 0, count = 0, noffset = fdt_next_node (fit, images_noffset, &ndepth);
1300 (noffset >= 0) && (ndepth > 0);
1301 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1304 * Direct child node of the images parent node,
1305 * i.e. component image node.
1307 printf ("%s Image %u (%s)\n", p, count++,
1308 fit_get_name(fit, noffset, NULL));
1310 fit_image_print (fit, noffset, p);
1314 /* Find configurations parent node offset */
1315 confs_noffset = fdt_path_offset (fit, FIT_CONFS_PATH);
1316 if (confs_noffset < 0) {
1317 debug ("Can't get configurations parent node '%s' (%s)\n",
1318 FIT_CONFS_PATH, fdt_strerror (confs_noffset));
1322 /* get default configuration unit name from default property */
1323 uname = (char *)fdt_getprop (fit, noffset, FIT_DEFAULT_PROP, NULL);
1325 printf ("%s Default Configuration: '%s'\n", p, uname);
1327 /* Process its subnodes, print out configurations details */
1328 for (ndepth = 0, count = 0, noffset = fdt_next_node (fit, confs_noffset, &ndepth);
1329 (noffset >= 0) && (ndepth > 0);
1330 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1333 * Direct child node of the configurations parent node,
1334 * i.e. configuration node.
1336 printf ("%s Configuration %u (%s)\n", p, count++,
1337 fit_get_name(fit, noffset, NULL));
1339 fit_conf_print (fit, noffset, p);
1345 * fit_image_print - prints out the FIT component image details
1346 * @fit: pointer to the FIT format image header
1347 * @image_noffset: offset of the component image node
1348 * @p: pointer to prefix string
1350 * fit_image_print() lists all mandatory properies for the processed component
1351 * image. If present, hash nodes are printed out as well.
1354 * no returned results
1356 void fit_image_print (const void *fit, int image_noffset, const char *p)
1359 uint8_t type, arch, os, comp;
1367 /* Mandatory properties */
1368 ret = fit_get_desc (fit, image_noffset, &desc);
1369 printf ("%s Description: ", p);
1371 printf ("unavailable\n");
1373 printf ("%s\n", desc);
1375 fit_image_get_type (fit, image_noffset, &type);
1376 printf ("%s Type: %s\n", p, genimg_get_type_name (type));
1378 fit_image_get_comp (fit, image_noffset, &comp);
1379 printf ("%s Compression: %s\n", p, genimg_get_comp_name (comp));
1381 ret = fit_image_get_data (fit, image_noffset, &data, &size);
1384 printf ("%s Data Start: ", p);
1386 printf ("unavailable\n");
1388 printf ("0x%08lx\n", (ulong)data);
1391 printf ("%s Data Size: ", p);
1393 printf ("unavailable\n");
1395 genimg_print_size (size);
1397 /* Remaining, type dependent properties */
1398 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
1399 (type == IH_TYPE_RAMDISK) || (type == IH_TYPE_FIRMWARE) ||
1400 (type == IH_TYPE_FLATDT)) {
1401 fit_image_get_arch (fit, image_noffset, &arch);
1402 printf ("%s Architecture: %s\n", p, genimg_get_arch_name (arch));
1405 if (type == IH_TYPE_KERNEL) {
1406 fit_image_get_os (fit, image_noffset, &os);
1407 printf ("%s OS: %s\n", p, genimg_get_os_name (os));
1410 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE)) {
1411 ret = fit_image_get_load (fit, image_noffset, &load);
1412 printf ("%s Load Address: ", p);
1414 printf ("unavailable\n");
1416 printf ("0x%08lx\n", load);
1418 fit_image_get_entry (fit, image_noffset, &entry);
1419 printf ("%s Entry Point: ", p);
1421 printf ("unavailable\n");
1423 printf ("0x%08lx\n", entry);
1426 /* Process all hash subnodes of the component image node */
1427 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
1428 (noffset >= 0) && (ndepth > 0);
1429 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1431 /* Direct child node of the component image node */
1432 fit_image_print_hash (fit, noffset, p);
1438 * fit_image_print_hash - prints out the hash node details
1439 * @fit: pointer to the FIT format image header
1440 * @noffset: offset of the hash node
1441 * @p: pointer to prefix string
1443 * fit_image_print_hash() lists properies for the processed hash node
1446 * no returned results
1448 void fit_image_print_hash (const void *fit, int noffset, const char *p)
1456 * Check subnode name, must be equal to "hash".
1457 * Multiple hash nodes require unique unit node
1458 * names, e.g. hash@1, hash@2, etc.
1460 if (strncmp (fit_get_name(fit, noffset, NULL),
1462 strlen(FIT_HASH_NODENAME)) != 0)
1465 debug ("%s Hash node: '%s'\n", p,
1466 fit_get_name (fit, noffset, NULL));
1468 printf ("%s Hash algo: ", p);
1469 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
1470 printf ("invalid/unsupported\n");
1473 printf ("%s\n", algo);
1475 ret = fit_image_hash_get_value (fit, noffset, &value,
1477 printf ("%s Hash value: ", p);
1479 printf ("unavailable\n");
1481 for (i = 0; i < value_len; i++)
1482 printf ("%02x", value[i]);
1486 debug ("%s Hash len: %d\n", p, value_len);
1490 * fit_get_desc - get node description property
1491 * @fit: pointer to the FIT format image header
1492 * @noffset: node offset
1493 * @desc: double pointer to the char, will hold pointer to the descrption
1495 * fit_get_desc() reads description property from a given node, if
1496 * description is found pointer to it is returened in third call argument.
1502 int fit_get_desc (const void *fit, int noffset, char **desc)
1506 *desc = (char *)fdt_getprop (fit, noffset, FIT_DESC_PROP, &len);
1507 if (*desc == NULL) {
1508 fit_get_debug (fit, noffset, FIT_DESC_PROP, len);
1516 * fit_get_timestamp - get node timestamp property
1517 * @fit: pointer to the FIT format image header
1518 * @noffset: node offset
1519 * @timestamp: pointer to the time_t, will hold read timestamp
1521 * fit_get_timestamp() reads timestamp poperty from given node, if timestamp
1522 * is found and has a correct size its value is retured in third call
1527 * -1, on property read failure
1528 * -2, on wrong timestamp size
1530 int fit_get_timestamp (const void *fit, int noffset, time_t *timestamp)
1535 data = fdt_getprop (fit, noffset, FIT_TIMESTAMP_PROP, &len);
1537 fit_get_debug (fit, noffset, FIT_TIMESTAMP_PROP, len);
1540 if (len != sizeof (uint32_t)) {
1541 debug ("FIT timestamp with incorrect size of (%u)\n", len);
1545 *timestamp = uimage_to_cpu (*((uint32_t *)data));
1550 * fit_image_get_node - get node offset for component image of a given unit name
1551 * @fit: pointer to the FIT format image header
1552 * @image_uname: component image node unit name
1554 * fit_image_get_node() finds a component image (withing the '/images'
1555 * node) of a provided unit name. If image is found its node offset is
1556 * returned to the caller.
1559 * image node offset when found (>=0)
1560 * negative number on failure (FDT_ERR_* code)
1562 int fit_image_get_node (const void *fit, const char *image_uname)
1564 int noffset, images_noffset;
1566 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
1567 if (images_noffset < 0) {
1568 debug ("Can't find images parent node '%s' (%s)\n",
1569 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
1570 return images_noffset;
1573 noffset = fdt_subnode_offset (fit, images_noffset, image_uname);
1575 debug ("Can't get node offset for image unit name: '%s' (%s)\n",
1576 image_uname, fdt_strerror (noffset));
1583 * fit_image_get_os - get os id for a given component image node
1584 * @fit: pointer to the FIT format image header
1585 * @noffset: component image node offset
1586 * @os: pointer to the uint8_t, will hold os numeric id
1588 * fit_image_get_os() finds os property in a given component image node.
1589 * If the property is found, its (string) value is translated to the numeric
1590 * id which is returned to the caller.
1596 int fit_image_get_os (const void *fit, int noffset, uint8_t *os)
1601 /* Get OS name from property data */
1602 data = fdt_getprop (fit, noffset, FIT_OS_PROP, &len);
1604 fit_get_debug (fit, noffset, FIT_OS_PROP, len);
1609 /* Translate OS name to id */
1610 *os = genimg_get_os_id (data);
1615 * fit_image_get_arch - get arch id for a given component image node
1616 * @fit: pointer to the FIT format image header
1617 * @noffset: component image node offset
1618 * @arch: pointer to the uint8_t, will hold arch numeric id
1620 * fit_image_get_arch() finds arch property in a given component image node.
1621 * If the property is found, its (string) value is translated to the numeric
1622 * id which is returned to the caller.
1628 int fit_image_get_arch (const void *fit, int noffset, uint8_t *arch)
1633 /* Get architecture name from property data */
1634 data = fdt_getprop (fit, noffset, FIT_ARCH_PROP, &len);
1636 fit_get_debug (fit, noffset, FIT_ARCH_PROP, len);
1641 /* Translate architecture name to id */
1642 *arch = genimg_get_arch_id (data);
1647 * fit_image_get_type - get type id for a given component image node
1648 * @fit: pointer to the FIT format image header
1649 * @noffset: component image node offset
1650 * @type: pointer to the uint8_t, will hold type numeric id
1652 * fit_image_get_type() finds type property in a given component image node.
1653 * If the property is found, its (string) value is translated to the numeric
1654 * id which is returned to the caller.
1660 int fit_image_get_type (const void *fit, int noffset, uint8_t *type)
1665 /* Get image type name from property data */
1666 data = fdt_getprop (fit, noffset, FIT_TYPE_PROP, &len);
1668 fit_get_debug (fit, noffset, FIT_TYPE_PROP, len);
1673 /* Translate image type name to id */
1674 *type = genimg_get_type_id (data);
1679 * fit_image_get_comp - get comp id for a given component image node
1680 * @fit: pointer to the FIT format image header
1681 * @noffset: component image node offset
1682 * @comp: pointer to the uint8_t, will hold comp numeric id
1684 * fit_image_get_comp() finds comp property in a given component image node.
1685 * If the property is found, its (string) value is translated to the numeric
1686 * id which is returned to the caller.
1692 int fit_image_get_comp (const void *fit, int noffset, uint8_t *comp)
1697 /* Get compression name from property data */
1698 data = fdt_getprop (fit, noffset, FIT_COMP_PROP, &len);
1700 fit_get_debug (fit, noffset, FIT_COMP_PROP, len);
1705 /* Translate compression name to id */
1706 *comp = genimg_get_comp_id (data);
1711 * fit_image_get_load - get load address property for a given component image node
1712 * @fit: pointer to the FIT format image header
1713 * @noffset: component image node offset
1714 * @load: pointer to the uint32_t, will hold load address
1716 * fit_image_get_load() finds load address property in a given component image node.
1717 * If the property is found, its value is returned to the caller.
1723 int fit_image_get_load (const void *fit, int noffset, ulong *load)
1726 const uint32_t *data;
1728 data = fdt_getprop (fit, noffset, FIT_LOAD_PROP, &len);
1730 fit_get_debug (fit, noffset, FIT_LOAD_PROP, len);
1734 *load = uimage_to_cpu (*data);
1739 * fit_image_get_entry - get entry point address property for a given component image node
1740 * @fit: pointer to the FIT format image header
1741 * @noffset: component image node offset
1742 * @entry: pointer to the uint32_t, will hold entry point address
1744 * fit_image_get_entry() finds entry point address property in a given component image node.
1745 * If the property is found, its value is returned to the caller.
1751 int fit_image_get_entry (const void *fit, int noffset, ulong *entry)
1754 const uint32_t *data;
1756 data = fdt_getprop (fit, noffset, FIT_ENTRY_PROP, &len);
1758 fit_get_debug (fit, noffset, FIT_ENTRY_PROP, len);
1762 *entry = uimage_to_cpu (*data);
1767 * fit_image_get_data - get data property and its size for a given component image node
1768 * @fit: pointer to the FIT format image header
1769 * @noffset: component image node offset
1770 * @data: double pointer to void, will hold data property's data address
1771 * @size: pointer to size_t, will hold data property's data size
1773 * fit_image_get_data() finds data property in a given component image node.
1774 * If the property is found its data start address and size are returned to
1781 int fit_image_get_data (const void *fit, int noffset,
1782 const void **data, size_t *size)
1786 *data = fdt_getprop (fit, noffset, FIT_DATA_PROP, &len);
1787 if (*data == NULL) {
1788 fit_get_debug (fit, noffset, FIT_DATA_PROP, len);
1798 * fit_image_hash_get_algo - get hash algorithm name
1799 * @fit: pointer to the FIT format image header
1800 * @noffset: hash node offset
1801 * @algo: double pointer to char, will hold pointer to the algorithm name
1803 * fit_image_hash_get_algo() finds hash algorithm property in a given hash node.
1804 * If the property is found its data start address is returned to the caller.
1810 int fit_image_hash_get_algo (const void *fit, int noffset, char **algo)
1814 *algo = (char *)fdt_getprop (fit, noffset, FIT_ALGO_PROP, &len);
1815 if (*algo == NULL) {
1816 fit_get_debug (fit, noffset, FIT_ALGO_PROP, len);
1824 * fit_image_hash_get_value - get hash value and length
1825 * @fit: pointer to the FIT format image header
1826 * @noffset: hash node offset
1827 * @value: double pointer to uint8_t, will hold address of a hash value data
1828 * @value_len: pointer to an int, will hold hash data length
1830 * fit_image_hash_get_value() finds hash value property in a given hash node.
1831 * If the property is found its data start address and size are returned to
1838 int fit_image_hash_get_value (const void *fit, int noffset, uint8_t **value,
1843 *value = (uint8_t *)fdt_getprop (fit, noffset, FIT_VALUE_PROP, &len);
1844 if (*value == NULL) {
1845 fit_get_debug (fit, noffset, FIT_VALUE_PROP, len);
1855 * fit_set_timestamp - set node timestamp property
1856 * @fit: pointer to the FIT format image header
1857 * @noffset: node offset
1858 * @timestamp: timestamp value to be set
1860 * fit_set_timestamp() attempts to set timestamp property in the requested
1861 * node and returns operation status to the caller.
1865 * -1, on property read failure
1867 int fit_set_timestamp (void *fit, int noffset, time_t timestamp)
1872 t = cpu_to_uimage (timestamp);
1873 ret = fdt_setprop (fit, noffset, FIT_TIMESTAMP_PROP, &t,
1876 printf ("Can't set '%s' property for '%s' node (%s)\n",
1877 FIT_TIMESTAMP_PROP, fit_get_name (fit, noffset, NULL),
1878 fdt_strerror (ret));
1886 * calculate_hash - calculate and return hash for provided input data
1887 * @data: pointer to the input data
1888 * @data_len: data length
1889 * @algo: requested hash algorithm
1890 * @value: pointer to the char, will hold hash value data (caller must
1891 * allocate enough free space)
1892 * value_len: length of the calculated hash
1894 * calculate_hash() computes input data hash according to the requested algorithm.
1895 * Resulting hash value is placed in caller provided 'value' buffer, length
1896 * of the calculated hash is returned via value_len pointer argument.
1900 * -1, when algo is unsupported
1902 static int calculate_hash (const void *data, int data_len, const char *algo,
1903 uint8_t *value, int *value_len)
1905 if (strcmp (algo, "crc32") == 0 ) {
1906 *((uint32_t *)value) = crc32_wd (0, data, data_len,
1908 *((uint32_t *)value) = cpu_to_uimage (*((uint32_t *)value));
1910 } else if (strcmp (algo, "sha1") == 0 ) {
1911 sha1_csum_wd ((unsigned char *) data, data_len,
1912 (unsigned char *) value, CHUNKSZ_SHA1);
1914 } else if (strcmp (algo, "md5") == 0 ) {
1915 md5_wd ((unsigned char *)data, data_len, value, CHUNKSZ_MD5);
1918 debug ("Unsupported hash alogrithm\n");
1926 * fit_set_hashes - process FIT component image nodes and calculate hashes
1927 * @fit: pointer to the FIT format image header
1929 * fit_set_hashes() adds hash values for all component images in the FIT blob.
1930 * Hashes are calculated for all component images which have hash subnodes
1931 * with algorithm property set to one of the supported hash algorithms.
1935 * libfdt error code, on failure
1937 int fit_set_hashes (void *fit)
1944 /* Find images parent node offset */
1945 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
1946 if (images_noffset < 0) {
1947 printf ("Can't find images parent node '%s' (%s)\n",
1948 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
1949 return images_noffset;
1952 /* Process its subnodes, print out component images details */
1953 for (ndepth = 0, noffset = fdt_next_node (fit, images_noffset, &ndepth);
1954 (noffset >= 0) && (ndepth > 0);
1955 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1958 * Direct child node of the images parent node,
1959 * i.e. component image node.
1961 ret = fit_image_set_hashes (fit, noffset);
1971 * fit_image_set_hashes - calculate/set hashes for given component image node
1972 * @fit: pointer to the FIT format image header
1973 * @image_noffset: requested component image node
1975 * fit_image_set_hashes() adds hash values for an component image node. All
1976 * existing hash subnodes are checked, if algorithm property is set to one of
1977 * the supported hash algorithms, hash value is computed and corresponding
1978 * hash node property is set, for example:
1980 * Input component image node structure:
1982 * o image@1 (at image_noffset)
1983 * | - data = [binary data]
1987 * Output component image node structure:
1989 * o image@1 (at image_noffset)
1990 * | - data = [binary data]
1993 * |- value = sha1(data)
1999 int fit_image_set_hashes (void *fit, int image_noffset)
2004 uint8_t value[FIT_MAX_HASH_LEN];
2009 /* Get image data and data length */
2010 if (fit_image_get_data (fit, image_noffset, &data, &size)) {
2011 printf ("Can't get image data/size\n");
2015 /* Process all hash subnodes of the component image node */
2016 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
2017 (noffset >= 0) && (ndepth > 0);
2018 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2020 /* Direct child node of the component image node */
2023 * Check subnode name, must be equal to "hash".
2024 * Multiple hash nodes require unique unit node
2025 * names, e.g. hash@1, hash@2, etc.
2027 if (strncmp (fit_get_name(fit, noffset, NULL),
2029 strlen(FIT_HASH_NODENAME)) != 0) {
2030 /* Not a hash subnode, skip it */
2034 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
2035 printf ("Can't get hash algo property for "
2036 "'%s' hash node in '%s' image node\n",
2037 fit_get_name (fit, noffset, NULL),
2038 fit_get_name (fit, image_noffset, NULL));
2042 if (calculate_hash (data, size, algo, value, &value_len)) {
2043 printf ("Unsupported hash algorithm (%s) for "
2044 "'%s' hash node in '%s' image node\n",
2045 algo, fit_get_name (fit, noffset, NULL),
2046 fit_get_name (fit, image_noffset, NULL));
2050 if (fit_image_hash_set_value (fit, noffset, value,
2052 printf ("Can't set hash value for "
2053 "'%s' hash node in '%s' image node\n",
2054 fit_get_name (fit, noffset, NULL),
2055 fit_get_name (fit, image_noffset, NULL));
2065 * fit_image_hash_set_value - set hash value in requested has node
2066 * @fit: pointer to the FIT format image header
2067 * @noffset: hash node offset
2068 * @value: hash value to be set
2069 * @value_len: hash value length
2071 * fit_image_hash_set_value() attempts to set hash value in a node at offset
2072 * given and returns operation status to the caller.
2078 int fit_image_hash_set_value (void *fit, int noffset, uint8_t *value,
2083 ret = fdt_setprop (fit, noffset, FIT_VALUE_PROP, value, value_len);
2085 printf ("Can't set hash '%s' property for '%s' node (%s)\n",
2086 FIT_VALUE_PROP, fit_get_name (fit, noffset, NULL),
2087 fdt_strerror (ret));
2093 #endif /* USE_HOSTCC */
2096 * fit_image_check_hashes - verify data intergity
2097 * @fit: pointer to the FIT format image header
2098 * @image_noffset: component image node offset
2100 * fit_image_check_hashes() goes over component image hash nodes,
2101 * re-calculates each data hash and compares with the value stored in hash
2105 * 1, if all hashes are valid
2106 * 0, otherwise (or on error)
2108 int fit_image_check_hashes (const void *fit, int image_noffset)
2115 uint8_t value[FIT_MAX_HASH_LEN];
2121 /* Get image data and data length */
2122 if (fit_image_get_data (fit, image_noffset, &data, &size)) {
2123 printf ("Can't get image data/size\n");
2127 /* Process all hash subnodes of the component image node */
2128 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
2129 (noffset >= 0) && (ndepth > 0);
2130 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2132 /* Direct child node of the component image node */
2135 * Check subnode name, must be equal to "hash".
2136 * Multiple hash nodes require unique unit node
2137 * names, e.g. hash@1, hash@2, etc.
2139 if (strncmp (fit_get_name(fit, noffset, NULL),
2141 strlen(FIT_HASH_NODENAME)) != 0)
2144 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
2145 err_msg = "Can't get hash algo property";
2148 printf ("%s", algo);
2150 if (fit_image_hash_get_value (fit, noffset, &fit_value,
2152 err_msg = "Can't get hash value property";
2156 if (calculate_hash (data, size, algo, value, &value_len)) {
2157 err_msg = "Unsupported hash algorithm";
2161 if (value_len != fit_value_len) {
2162 err_msg = "Bad hash value len";
2164 } else if (memcmp (value, fit_value, value_len) != 0) {
2165 err_msg = "Bad hash value";
2175 printf ("%s for '%s' hash node in '%s' image node\n",
2176 err_msg, fit_get_name (fit, noffset, NULL),
2177 fit_get_name (fit, image_noffset, NULL));
2182 * fit_image_check_os - check whether image node is of a given os type
2183 * @fit: pointer to the FIT format image header
2184 * @noffset: component image node offset
2185 * @os: requested image os
2187 * fit_image_check_os() reads image os property and compares its numeric
2188 * id with the requested os. Comparison result is returned to the caller.
2191 * 1 if image is of given os type
2192 * 0 otherwise (or on error)
2194 int fit_image_check_os (const void *fit, int noffset, uint8_t os)
2198 if (fit_image_get_os (fit, noffset, &image_os))
2200 return (os == image_os);
2204 * fit_image_check_arch - check whether image node is of a given arch
2205 * @fit: pointer to the FIT format image header
2206 * @noffset: component image node offset
2207 * @arch: requested imagearch
2209 * fit_image_check_arch() reads image arch property and compares its numeric
2210 * id with the requested arch. Comparison result is returned to the caller.
2213 * 1 if image is of given arch
2214 * 0 otherwise (or on error)
2216 int fit_image_check_arch (const void *fit, int noffset, uint8_t arch)
2220 if (fit_image_get_arch (fit, noffset, &image_arch))
2222 return (arch == image_arch);
2226 * fit_image_check_type - check whether image node is of a given type
2227 * @fit: pointer to the FIT format image header
2228 * @noffset: component image node offset
2229 * @type: requested image type
2231 * fit_image_check_type() reads image type property and compares its numeric
2232 * id with the requested type. Comparison result is returned to the caller.
2235 * 1 if image is of given type
2236 * 0 otherwise (or on error)
2238 int fit_image_check_type (const void *fit, int noffset, uint8_t type)
2242 if (fit_image_get_type (fit, noffset, &image_type))
2244 return (type == image_type);
2248 * fit_image_check_comp - check whether image node uses given compression
2249 * @fit: pointer to the FIT format image header
2250 * @noffset: component image node offset
2251 * @comp: requested image compression type
2253 * fit_image_check_comp() reads image compression property and compares its
2254 * numeric id with the requested compression type. Comparison result is
2255 * returned to the caller.
2258 * 1 if image uses requested compression
2259 * 0 otherwise (or on error)
2261 int fit_image_check_comp (const void *fit, int noffset, uint8_t comp)
2265 if (fit_image_get_comp (fit, noffset, &image_comp))
2267 return (comp == image_comp);
2271 * fit_check_format - sanity check FIT image format
2272 * @fit: pointer to the FIT format image header
2274 * fit_check_format() runs a basic sanity FIT image verification.
2275 * Routine checks for mandatory properties, nodes, etc.
2281 int fit_check_format (const void *fit)
2283 /* mandatory / node 'description' property */
2284 if (fdt_getprop (fit, 0, FIT_DESC_PROP, NULL) == NULL) {
2285 debug ("Wrong FIT format: no description\n");
2289 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
2290 /* mandatory / node 'timestamp' property */
2291 if (fdt_getprop (fit, 0, FIT_TIMESTAMP_PROP, NULL) == NULL) {
2292 debug ("Wrong FIT format: no description\n");
2297 /* mandatory subimages parent '/images' node */
2298 if (fdt_path_offset (fit, FIT_IMAGES_PATH) < 0) {
2299 debug ("Wrong FIT format: no images parent node\n");
2307 * fit_conf_get_node - get node offset for configuration of a given unit name
2308 * @fit: pointer to the FIT format image header
2309 * @conf_uname: configuration node unit name
2311 * fit_conf_get_node() finds a configuration (withing the '/configurations'
2312 * parant node) of a provided unit name. If configuration is found its node offset
2313 * is returned to the caller.
2315 * When NULL is provided in second argument fit_conf_get_node() will search
2316 * for a default configuration node instead. Default configuration node unit name
2317 * is retrived from FIT_DEFAULT_PROP property of the '/configurations' node.
2320 * configuration node offset when found (>=0)
2321 * negative number on failure (FDT_ERR_* code)
2323 int fit_conf_get_node (const void *fit, const char *conf_uname)
2325 int noffset, confs_noffset;
2328 confs_noffset = fdt_path_offset (fit, FIT_CONFS_PATH);
2329 if (confs_noffset < 0) {
2330 debug ("Can't find configurations parent node '%s' (%s)\n",
2331 FIT_CONFS_PATH, fdt_strerror (confs_noffset));
2332 return confs_noffset;
2335 if (conf_uname == NULL) {
2336 /* get configuration unit name from the default property */
2337 debug ("No configuration specified, trying default...\n");
2338 conf_uname = (char *)fdt_getprop (fit, confs_noffset, FIT_DEFAULT_PROP, &len);
2339 if (conf_uname == NULL) {
2340 fit_get_debug (fit, confs_noffset, FIT_DEFAULT_PROP, len);
2343 debug ("Found default configuration: '%s'\n", conf_uname);
2346 noffset = fdt_subnode_offset (fit, confs_noffset, conf_uname);
2348 debug ("Can't get node offset for configuration unit name: '%s' (%s)\n",
2349 conf_uname, fdt_strerror (noffset));
2355 static int __fit_conf_get_prop_node (const void *fit, int noffset,
2356 const char *prop_name)
2361 /* get kernel image unit name from configuration kernel property */
2362 uname = (char *)fdt_getprop (fit, noffset, prop_name, &len);
2366 return fit_image_get_node (fit, uname);
2370 * fit_conf_get_kernel_node - get kernel image node offset that corresponds to
2371 * a given configuration
2372 * @fit: pointer to the FIT format image header
2373 * @noffset: configuration node offset
2375 * fit_conf_get_kernel_node() retrives kernel image node unit name from
2376 * configuration FIT_KERNEL_PROP property and translates it to the node
2380 * image node offset when found (>=0)
2381 * negative number on failure (FDT_ERR_* code)
2383 int fit_conf_get_kernel_node (const void *fit, int noffset)
2385 return __fit_conf_get_prop_node (fit, noffset, FIT_KERNEL_PROP);
2389 * fit_conf_get_ramdisk_node - get ramdisk image node offset that corresponds to
2390 * a given configuration
2391 * @fit: pointer to the FIT format image header
2392 * @noffset: configuration node offset
2394 * fit_conf_get_ramdisk_node() retrives ramdisk image node unit name from
2395 * configuration FIT_KERNEL_PROP property and translates it to the node
2399 * image node offset when found (>=0)
2400 * negative number on failure (FDT_ERR_* code)
2402 int fit_conf_get_ramdisk_node (const void *fit, int noffset)
2404 return __fit_conf_get_prop_node (fit, noffset, FIT_RAMDISK_PROP);
2408 * fit_conf_get_fdt_node - get fdt image node offset that corresponds to
2409 * a given configuration
2410 * @fit: pointer to the FIT format image header
2411 * @noffset: configuration node offset
2413 * fit_conf_get_fdt_node() retrives fdt image node unit name from
2414 * configuration FIT_KERNEL_PROP property and translates it to the node
2418 * image node offset when found (>=0)
2419 * negative number on failure (FDT_ERR_* code)
2421 int fit_conf_get_fdt_node (const void *fit, int noffset)
2423 return __fit_conf_get_prop_node (fit, noffset, FIT_FDT_PROP);
2427 * fit_conf_print - prints out the FIT configuration details
2428 * @fit: pointer to the FIT format image header
2429 * @noffset: offset of the configuration node
2430 * @p: pointer to prefix string
2432 * fit_conf_print() lists all mandatory properies for the processed
2433 * configuration node.
2436 * no returned results
2438 void fit_conf_print (const void *fit, int noffset, const char *p)
2444 /* Mandatory properties */
2445 ret = fit_get_desc (fit, noffset, &desc);
2446 printf ("%s Description: ", p);
2448 printf ("unavailable\n");
2450 printf ("%s\n", desc);
2452 uname = (char *)fdt_getprop (fit, noffset, FIT_KERNEL_PROP, NULL);
2453 printf ("%s Kernel: ", p);
2455 printf ("unavailable\n");
2457 printf ("%s\n", uname);
2459 /* Optional properties */
2460 uname = (char *)fdt_getprop (fit, noffset, FIT_RAMDISK_PROP, NULL);
2462 printf ("%s Init Ramdisk: %s\n", p, uname);
2464 uname = (char *)fdt_getprop (fit, noffset, FIT_FDT_PROP, NULL);
2466 printf ("%s FDT: %s\n", p, uname);
2470 * fit_check_ramdisk - verify FIT format ramdisk subimage
2471 * @fit_hdr: pointer to the FIT ramdisk header
2472 * @rd_noffset: ramdisk subimage node offset within FIT image
2473 * @arch: requested ramdisk image architecture type
2474 * @verify: data CRC verification flag
2476 * fit_check_ramdisk() verifies integrity of the ramdisk subimage and from
2477 * specified FIT image.
2484 static int fit_check_ramdisk (const void *fit, int rd_noffset, uint8_t arch, int verify)
2486 fit_image_print (fit, rd_noffset, " ");
2489 puts (" Verifying Hash Integrity ... ");
2490 if (!fit_image_check_hashes (fit, rd_noffset)) {
2491 puts ("Bad Data Hash\n");
2492 show_boot_progress (-125);
2498 show_boot_progress (126);
2499 if (!fit_image_check_os (fit, rd_noffset, IH_OS_LINUX) ||
2500 !fit_image_check_arch (fit, rd_noffset, arch) ||
2501 !fit_image_check_type (fit, rd_noffset, IH_TYPE_RAMDISK)) {
2502 printf ("No Linux %s Ramdisk Image\n",
2503 genimg_get_arch_name(arch));
2504 show_boot_progress (-126);
2508 show_boot_progress (127);
2511 #endif /* USE_HOSTCC */
2512 #endif /* CONFIG_FIT */