add SDHC support in mmc driver
[u-boot-openmoko/mini2440.git] / common / image.c
blobf04826a5c86d8f5ca0a7c0db8a571a3530b148db
1 /*
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
8 * project.
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,
23 * MA 02111-1307 USA
27 #ifndef USE_HOSTCC
28 #include <common.h>
29 #include <watchdog.h>
31 #ifdef CONFIG_SHOW_BOOT_PROGRESS
32 #include <status_led.h>
33 #endif
35 #ifdef CONFIG_HAS_DATAFLASH
36 #include <dataflash.h>
37 #endif
39 #ifdef CONFIG_LOGBUFFER
40 #include <logbuff.h>
41 #endif
43 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
44 #include <rtc.h>
45 #endif
47 #include <image.h>
49 #if defined(CONFIG_FIT) || defined (CONFIG_OF_LIBFDT)
50 #include <fdt.h>
51 #include <libfdt.h>
52 #include <fdt_support.h>
53 #endif
55 #if defined(CONFIG_FIT)
56 #include <md5.h>
57 #include <sha1.h>
59 static int fit_check_ramdisk (const void *fit, int os_noffset,
60 uint8_t arch, int verify);
61 #endif
63 #ifdef CONFIG_CMD_BDI
64 extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
65 #endif
67 DECLARE_GLOBAL_DATA_PTR;
69 static image_header_t* image_get_ramdisk (ulong rd_addr, uint8_t arch,
70 int verify);
71 #else
72 #include "mkimage.h"
73 #include <md5.h>
74 #include <time.h>
75 #include <image.h>
76 #endif /* !USE_HOSTCC*/
78 typedef struct table_entry {
79 int id; /* as defined in image.h */
80 char *sname; /* short (input) name */
81 char *lname; /* long (output) name */
82 } table_entry_t;
84 static table_entry_t uimage_arch[] = {
85 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
86 { IH_ARCH_ALPHA, "alpha", "Alpha", },
87 { IH_ARCH_ARM, "arm", "ARM", },
88 { IH_ARCH_I386, "x86", "Intel x86", },
89 { IH_ARCH_IA64, "ia64", "IA64", },
90 { IH_ARCH_M68K, "m68k", "M68K", },
91 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
92 { IH_ARCH_MIPS, "mips", "MIPS", },
93 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
94 { IH_ARCH_NIOS, "nios", "NIOS", },
95 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
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", },
103 { -1, "", "", },
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", },
110 #endif
111 { IH_OS_LINUX, "linux", "Linux", },
112 #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
113 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
114 #endif
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", },
121 #endif
122 #ifdef USE_HOSTCC
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", },
134 #endif
135 { -1, "", "", },
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", },
148 { -1, "", "", },
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", },
155 { -1, "", "", },
158 unsigned long crc32 (unsigned long, const unsigned char *, unsigned int);
159 static void genimg_print_size (uint32_t size);
160 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
161 static void genimg_print_time (time_t timestamp);
162 #endif
164 /*****************************************************************************/
165 /* Legacy format routines */
166 /*****************************************************************************/
167 int image_check_hcrc (image_header_t *hdr)
169 ulong hcrc;
170 ulong len = image_get_header_size ();
171 image_header_t header;
173 /* Copy header so we can blank CRC field for re-calculation */
174 memmove (&header, (char *)hdr, image_get_header_size ());
175 image_set_hcrc (&header, 0);
177 hcrc = crc32 (0, (unsigned char *)&header, len);
179 return (hcrc == image_get_hcrc (hdr));
182 int image_check_dcrc (image_header_t *hdr)
184 ulong data = image_get_data (hdr);
185 ulong len = image_get_data_size (hdr);
186 ulong dcrc = crc32 (0, (unsigned char *)data, len);
188 return (dcrc == image_get_dcrc (hdr));
191 #ifndef USE_HOSTCC
192 int image_check_dcrc_wd (image_header_t *hdr, ulong chunksz)
194 ulong dcrc = 0;
195 ulong len = image_get_data_size (hdr);
196 ulong data = image_get_data (hdr);
198 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
199 ulong cdata = data;
200 ulong edata = cdata + len;
202 while (cdata < edata) {
203 ulong chunk = edata - cdata;
205 if (chunk > chunksz)
206 chunk = chunksz;
207 dcrc = crc32 (dcrc, (unsigned char *)cdata, chunk);
208 cdata += chunk;
210 WATCHDOG_RESET ();
212 #else
213 dcrc = crc32 (0, (unsigned char *)data, len);
214 #endif
216 return (dcrc == image_get_dcrc (hdr));
218 #endif /* !USE_HOSTCC */
221 * image_multi_count - get component (sub-image) count
222 * @hdr: pointer to the header of the multi component image
224 * image_multi_count() returns number of components in a multi
225 * component image.
227 * Note: no checking of the image type is done, caller must pass
228 * a valid multi component image.
230 * returns:
231 * number of components
233 ulong image_multi_count (image_header_t *hdr)
235 ulong i, count = 0;
236 uint32_t *size;
238 /* get start of the image payload, which in case of multi
239 * component images that points to a table of component sizes */
240 size = (uint32_t *)image_get_data (hdr);
242 /* count non empty slots */
243 for (i = 0; size[i]; ++i)
244 count++;
246 return count;
250 * image_multi_getimg - get component data address and size
251 * @hdr: pointer to the header of the multi component image
252 * @idx: index of the requested component
253 * @data: pointer to a ulong variable, will hold component data address
254 * @len: pointer to a ulong variable, will hold component size
256 * image_multi_getimg() returns size and data address for the requested
257 * component in a multi component image.
259 * Note: no checking of the image type is done, caller must pass
260 * a valid multi component image.
262 * returns:
263 * data address and size of the component, if idx is valid
264 * 0 in data and len, if idx is out of range
266 void image_multi_getimg (image_header_t *hdr, ulong idx,
267 ulong *data, ulong *len)
269 int i;
270 uint32_t *size;
271 ulong offset, tail, count, img_data;
273 /* get number of component */
274 count = image_multi_count (hdr);
276 /* get start of the image payload, which in case of multi
277 * component images that points to a table of component sizes */
278 size = (uint32_t *)image_get_data (hdr);
280 /* get address of the proper component data start, which means
281 * skipping sizes table (add 1 for last, null entry) */
282 img_data = image_get_data (hdr) + (count + 1) * sizeof (uint32_t);
284 if (idx < count) {
285 *len = uimage_to_cpu (size[idx]);
286 offset = 0;
287 tail = 0;
289 /* go over all indices preceding requested component idx */
290 for (i = 0; i < idx; i++) {
291 /* add up i-th component size */
292 offset += uimage_to_cpu (size[i]);
294 /* add up alignment for i-th component */
295 tail += (4 - uimage_to_cpu (size[i]) % 4);
298 /* calculate idx-th component data address */
299 *data = img_data + offset + tail;
300 } else {
301 *len = 0;
302 *data = 0;
306 static void image_print_type (image_header_t *hdr)
308 const char *os, *arch, *type, *comp;
310 os = genimg_get_os_name (image_get_os (hdr));
311 arch = genimg_get_arch_name (image_get_arch (hdr));
312 type = genimg_get_type_name (image_get_type (hdr));
313 comp = genimg_get_comp_name (image_get_comp (hdr));
315 printf ("%s %s %s (%s)\n", arch, os, type, comp);
319 * __image_print_contents - prints out the contents of the legacy format image
320 * @hdr: pointer to the legacy format image header
321 * @p: pointer to prefix string
323 * __image_print_contents() formats a multi line legacy image contents description.
324 * The routine prints out all header fields followed by the size/offset data
325 * for MULTI/SCRIPT images.
327 * returns:
328 * no returned results
330 static void __image_print_contents (image_header_t *hdr, const char *p)
332 printf ("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name (hdr));
333 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
334 printf ("%sCreated: ", p);
335 genimg_print_time ((time_t)image_get_time (hdr));
336 #endif
337 printf ("%sImage Type: ", p);
338 image_print_type (hdr);
339 printf ("%sData Size: ", p);
340 genimg_print_size (image_get_data_size (hdr));
341 printf ("%sLoad Address: %08x\n", p, image_get_load (hdr));
342 printf ("%sEntry Point: %08x\n", p, image_get_ep (hdr));
344 if (image_check_type (hdr, IH_TYPE_MULTI) ||
345 image_check_type (hdr, IH_TYPE_SCRIPT)) {
346 int i;
347 ulong data, len;
348 ulong count = image_multi_count (hdr);
350 printf ("%sContents:\n", p);
351 for (i = 0; i < count; i++) {
352 image_multi_getimg (hdr, i, &data, &len);
354 printf ("%s Image %d: ", p, i);
355 genimg_print_size (len);
357 if (image_check_type (hdr, IH_TYPE_SCRIPT) && i > 0) {
359 * the user may need to know offsets
360 * if planning to do something with
361 * multiple files
363 printf ("%s Offset = 0x%08lx\n", p, data);
369 inline void image_print_contents (image_header_t *hdr)
371 __image_print_contents (hdr, " ");
374 inline void image_print_contents_noindent (image_header_t *hdr)
376 __image_print_contents (hdr, "");
379 #ifndef USE_HOSTCC
381 * image_get_ramdisk - get and verify ramdisk image
382 * @rd_addr: ramdisk image start address
383 * @arch: expected ramdisk architecture
384 * @verify: checksum verification flag
386 * image_get_ramdisk() returns a pointer to the verified ramdisk image
387 * header. Routine receives image start address and expected architecture
388 * flag. Verification done covers data and header integrity and os/type/arch
389 * fields checking.
391 * If dataflash support is enabled routine checks for dataflash addresses
392 * and handles required dataflash reads.
394 * returns:
395 * pointer to a ramdisk image header, if image was found and valid
396 * otherwise, return NULL
398 static image_header_t* image_get_ramdisk (ulong rd_addr, uint8_t arch,
399 int verify)
401 image_header_t *rd_hdr = (image_header_t *)rd_addr;
403 if (!image_check_magic (rd_hdr)) {
404 puts ("Bad Magic Number\n");
405 show_boot_progress (-10);
406 return NULL;
409 if (!image_check_hcrc (rd_hdr)) {
410 puts ("Bad Header Checksum\n");
411 show_boot_progress (-11);
412 return NULL;
415 show_boot_progress (10);
416 image_print_contents (rd_hdr);
418 if (verify) {
419 puts(" Verifying Checksum ... ");
420 if (!image_check_dcrc_wd (rd_hdr, CHUNKSZ)) {
421 puts ("Bad Data CRC\n");
422 show_boot_progress (-12);
423 return NULL;
425 puts("OK\n");
428 show_boot_progress (11);
430 if (!image_check_os (rd_hdr, IH_OS_LINUX) ||
431 !image_check_arch (rd_hdr, arch) ||
432 !image_check_type (rd_hdr, IH_TYPE_RAMDISK)) {
433 printf ("No Linux %s Ramdisk Image\n",
434 genimg_get_arch_name(arch));
435 show_boot_progress (-13);
436 return NULL;
439 return rd_hdr;
441 #endif /* !USE_HOSTCC */
443 /*****************************************************************************/
444 /* Shared dual-format routines */
445 /*****************************************************************************/
446 #ifndef USE_HOSTCC
447 int getenv_verify (void)
449 char *s = getenv ("verify");
450 return (s && (*s == 'n')) ? 0 : 1;
453 int getenv_autostart (void)
455 char *s = getenv ("autostart");
456 return (s && (*s == 'n')) ? 0 : 1;
459 ulong getenv_bootm_low(void)
461 char *s = getenv ("bootm_low");
462 if (s) {
463 ulong tmp = simple_strtoul (s, NULL, 16);
464 return tmp;
467 #if defined(CFG_SDRAM_BASE)
468 return CFG_SDRAM_BASE;
469 #elif defined(CONFIG_ARM)
470 return gd->bd->bi_dram[0].start;
471 #else
472 return 0;
473 #endif
476 ulong getenv_bootm_size(void)
478 char *s = getenv ("bootm_size");
479 if (s) {
480 ulong tmp = simple_strtoul (s, NULL, 16);
481 return tmp;
484 #if defined(CONFIG_ARM)
485 return gd->bd->bi_dram[0].size;
486 #else
487 return gd->bd->bi_memsize;
488 #endif
491 void memmove_wd (void *to, void *from, size_t len, ulong chunksz)
493 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
494 while (len > 0) {
495 size_t tail = (len > chunksz) ? chunksz : len;
496 WATCHDOG_RESET ();
497 memmove (to, from, tail);
498 to += tail;
499 from += tail;
500 len -= tail;
502 #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
503 memmove (to, from, len);
504 #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
506 #endif /* !USE_HOSTCC */
508 static void genimg_print_size (uint32_t size)
510 #ifndef USE_HOSTCC
511 printf ("%d Bytes = ", size);
512 print_size (size, "\n");
513 #else
514 printf ("%d Bytes = %.2f kB = %.2f MB\n",
515 size, (double)size / 1.024e3,
516 (double)size / 1.048576e6);
517 #endif
520 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
521 static void genimg_print_time (time_t timestamp)
523 #ifndef USE_HOSTCC
524 struct rtc_time tm;
526 to_tm (timestamp, &tm);
527 printf ("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
528 tm.tm_year, tm.tm_mon, tm.tm_mday,
529 tm.tm_hour, tm.tm_min, tm.tm_sec);
530 #else
531 printf ("%s", ctime(&timestamp));
532 #endif
534 #endif /* CONFIG_TIMESTAMP || CONFIG_CMD_DATE || USE_HOSTCC */
537 * get_table_entry_name - translate entry id to long name
538 * @table: pointer to a translation table for entries of a specific type
539 * @msg: message to be returned when translation fails
540 * @id: entry id to be translated
542 * get_table_entry_name() will go over translation table trying to find
543 * entry that matches given id. If matching entry is found, its long
544 * name is returned to the caller.
546 * returns:
547 * long entry name if translation succeeds
548 * msg otherwise
550 static char *get_table_entry_name (table_entry_t *table, char *msg, int id)
552 for (; table->id >= 0; ++table) {
553 if (table->id == id)
554 return (table->lname);
556 return (msg);
559 const char *genimg_get_os_name (uint8_t os)
561 return (get_table_entry_name (uimage_os, "Unknown OS", os));
564 const char *genimg_get_arch_name (uint8_t arch)
566 return (get_table_entry_name (uimage_arch, "Unknown Architecture", arch));
569 const char *genimg_get_type_name (uint8_t type)
571 return (get_table_entry_name (uimage_type, "Unknown Image", type));
574 const char *genimg_get_comp_name (uint8_t comp)
576 return (get_table_entry_name (uimage_comp, "Unknown Compression", comp));
580 * get_table_entry_id - translate short entry name to id
581 * @table: pointer to a translation table for entries of a specific type
582 * @table_name: to be used in case of error
583 * @name: entry short name to be translated
585 * get_table_entry_id() will go over translation table trying to find
586 * entry that matches given short name. If matching entry is found,
587 * its id returned to the caller.
589 * returns:
590 * entry id if translation succeeds
591 * -1 otherwise
593 static int get_table_entry_id (table_entry_t *table,
594 const char *table_name, const char *name)
596 table_entry_t *t;
597 #ifdef USE_HOSTCC
598 int first = 1;
600 for (t = table; t->id >= 0; ++t) {
601 if (t->sname && strcasecmp(t->sname, name) == 0)
602 return (t->id);
605 fprintf (stderr, "\nInvalid %s Type - valid names are", table_name);
606 for (t = table; t->id >= 0; ++t) {
607 if (t->sname == NULL)
608 continue;
609 fprintf (stderr, "%c %s", (first) ? ':' : ',', t->sname);
610 first = 0;
612 fprintf (stderr, "\n");
613 #else
614 for (t = table; t->id >= 0; ++t) {
615 if (t->sname && strcmp(t->sname, name) == 0)
616 return (t->id);
618 debug ("Invalid %s Type: %s\n", table_name, name);
619 #endif /* USE_HOSTCC */
620 return (-1);
623 int genimg_get_os_id (const char *name)
625 return (get_table_entry_id (uimage_os, "OS", name));
628 int genimg_get_arch_id (const char *name)
630 return (get_table_entry_id (uimage_arch, "CPU", name));
633 int genimg_get_type_id (const char *name)
635 return (get_table_entry_id (uimage_type, "Image", name));
638 int genimg_get_comp_id (const char *name)
640 return (get_table_entry_id (uimage_comp, "Compression", name));
643 #ifndef USE_HOSTCC
645 * genimg_get_format - get image format type
646 * @img_addr: image start address
648 * genimg_get_format() checks whether provided address points to a valid
649 * legacy or FIT image.
651 * New uImage format and FDT blob are based on a libfdt. FDT blob
652 * may be passed directly or embedded in a FIT image. In both situations
653 * genimg_get_format() must be able to dectect libfdt header.
655 * returns:
656 * image format type or IMAGE_FORMAT_INVALID if no image is present
658 int genimg_get_format (void *img_addr)
660 ulong format = IMAGE_FORMAT_INVALID;
661 image_header_t *hdr;
662 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
663 char *fit_hdr;
664 #endif
666 hdr = (image_header_t *)img_addr;
667 if (image_check_magic(hdr))
668 format = IMAGE_FORMAT_LEGACY;
669 #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
670 else {
671 fit_hdr = (char *)img_addr;
672 if (fdt_check_header (fit_hdr) == 0)
673 format = IMAGE_FORMAT_FIT;
675 #endif
677 return format;
681 * genimg_get_image - get image from special storage (if necessary)
682 * @img_addr: image start address
684 * genimg_get_image() checks if provided image start adddress is located
685 * in a dataflash storage. If so, image is moved to a system RAM memory.
687 * returns:
688 * image start address after possible relocation from special storage
690 ulong genimg_get_image (ulong img_addr)
692 ulong ram_addr = img_addr;
694 #ifdef CONFIG_HAS_DATAFLASH
695 ulong h_size, d_size;
697 if (addr_dataflash (img_addr)){
698 /* ger RAM address */
699 ram_addr = CFG_LOAD_ADDR;
701 /* get header size */
702 h_size = image_get_header_size ();
703 #if defined(CONFIG_FIT)
704 if (sizeof(struct fdt_header) > h_size)
705 h_size = sizeof(struct fdt_header);
706 #endif
708 /* read in header */
709 debug (" Reading image header from dataflash address "
710 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
712 read_dataflash (img_addr, h_size, (char *)ram_addr);
714 /* get data size */
715 switch (genimg_get_format ((void *)ram_addr)) {
716 case IMAGE_FORMAT_LEGACY:
717 d_size = image_get_data_size ((image_header_t *)ram_addr);
718 debug (" Legacy format image found at 0x%08lx, size 0x%08lx\n",
719 ram_addr, d_size);
720 break;
721 #if defined(CONFIG_FIT)
722 case IMAGE_FORMAT_FIT:
723 d_size = fit_get_size ((const void *)ram_addr) - h_size;
724 debug (" FIT/FDT format image found at 0x%08lx, size 0x%08lx\n",
725 ram_addr, d_size);
726 break;
727 #endif
728 default:
729 printf (" No valid image found at 0x%08lx\n", img_addr);
730 return ram_addr;
733 /* read in image data */
734 debug (" Reading image remaining data from dataflash address "
735 "%08lx to RAM address %08lx\n", img_addr + h_size,
736 ram_addr + h_size);
738 read_dataflash (img_addr + h_size, d_size,
739 (char *)(ram_addr + h_size));
742 #endif /* CONFIG_HAS_DATAFLASH */
744 return ram_addr;
748 * fit_has_config - check if there is a valid FIT configuration
749 * @images: pointer to the bootm command headers structure
751 * fit_has_config() checks if there is a FIT configuration in use
752 * (if FTI support is present).
754 * returns:
755 * 0, no FIT support or no configuration found
756 * 1, configuration found
758 int genimg_has_config (bootm_headers_t *images)
760 #if defined(CONFIG_FIT)
761 if (images->fit_uname_cfg)
762 return 1;
763 #endif
764 return 0;
768 * boot_get_ramdisk - main ramdisk handling routine
769 * @argc: command argument count
770 * @argv: command argument list
771 * @images: pointer to the bootm images structure
772 * @arch: expected ramdisk architecture
773 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
774 * @rd_end: pointer to a ulong variable, will hold ramdisk end
776 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
777 * Curently supported are the following ramdisk sources:
778 * - multicomponent kernel/ramdisk image,
779 * - commandline provided address of decicated ramdisk image.
781 * returns:
782 * 0, if ramdisk image was found and valid, or skiped
783 * rd_start and rd_end are set to ramdisk start/end addresses if
784 * ramdisk image is found and valid
786 * 1, if ramdisk image is found but corrupted
787 * rd_start and rd_end are set to 0 if no ramdisk exists
789 int boot_get_ramdisk (int argc, char *argv[], bootm_headers_t *images,
790 uint8_t arch, ulong *rd_start, ulong *rd_end)
792 ulong rd_addr, rd_load;
793 ulong rd_data, rd_len;
794 image_header_t *rd_hdr;
795 #if defined(CONFIG_FIT)
796 void *fit_hdr;
797 const char *fit_uname_config = NULL;
798 const char *fit_uname_ramdisk = NULL;
799 ulong default_addr;
800 int rd_noffset;
801 int cfg_noffset;
802 const void *data;
803 size_t size;
804 #endif
806 *rd_start = 0;
807 *rd_end = 0;
810 * Look for a '-' which indicates to ignore the
811 * ramdisk argument
813 if ((argc >= 3) && (strcmp(argv[2], "-") == 0)) {
814 debug ("## Skipping init Ramdisk\n");
815 rd_len = rd_data = 0;
816 } else if (argc >= 3 || genimg_has_config (images)) {
817 #if defined(CONFIG_FIT)
818 if (argc >= 3) {
820 * If the init ramdisk comes from the FIT image and
821 * the FIT image address is omitted in the command
822 * line argument, try to use os FIT image address or
823 * default load address.
825 if (images->fit_uname_os)
826 default_addr = (ulong)images->fit_hdr_os;
827 else
828 default_addr = load_addr;
830 if (fit_parse_conf (argv[2], default_addr,
831 &rd_addr, &fit_uname_config)) {
832 debug ("* ramdisk: config '%s' from image at 0x%08lx\n",
833 fit_uname_config, rd_addr);
834 } else if (fit_parse_subimage (argv[2], default_addr,
835 &rd_addr, &fit_uname_ramdisk)) {
836 debug ("* ramdisk: subimage '%s' from image at 0x%08lx\n",
837 fit_uname_ramdisk, rd_addr);
838 } else
839 #endif
841 rd_addr = simple_strtoul(argv[2], NULL, 16);
842 debug ("* ramdisk: cmdline image address = 0x%08lx\n",
843 rd_addr);
845 #if defined(CONFIG_FIT)
846 } else {
847 /* use FIT configuration provided in first bootm
848 * command argument
850 rd_addr = (ulong)images->fit_hdr_os;
851 fit_uname_config = images->fit_uname_cfg;
852 debug ("* ramdisk: using config '%s' from image at 0x%08lx\n",
853 fit_uname_config, rd_addr);
856 * Check whether configuration has ramdisk defined,
857 * if not, don't try to use it, quit silently.
859 fit_hdr = (void *)rd_addr;
860 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
861 if (cfg_noffset < 0) {
862 debug ("* ramdisk: no such config\n");
863 return 0;
866 rd_noffset = fit_conf_get_ramdisk_node (fit_hdr, cfg_noffset);
867 if (rd_noffset < 0) {
868 debug ("* ramdisk: no ramdisk in config\n");
869 return 0;
872 #endif
874 /* copy from dataflash if needed */
875 rd_addr = genimg_get_image (rd_addr);
878 * Check if there is an initrd image at the
879 * address provided in the second bootm argument
880 * check image type, for FIT images get FIT node.
882 switch (genimg_get_format ((void *)rd_addr)) {
883 case IMAGE_FORMAT_LEGACY:
884 printf ("## Loading init Ramdisk from Legacy "
885 "Image at %08lx ...\n", rd_addr);
887 show_boot_progress (9);
888 rd_hdr = image_get_ramdisk (rd_addr, arch,
889 images->verify);
891 if (rd_hdr == NULL)
892 return 1;
894 rd_data = image_get_data (rd_hdr);
895 rd_len = image_get_data_size (rd_hdr);
896 rd_load = image_get_load (rd_hdr);
897 break;
898 #if defined(CONFIG_FIT)
899 case IMAGE_FORMAT_FIT:
900 fit_hdr = (void *)rd_addr;
901 printf ("## Loading init Ramdisk from FIT "
902 "Image at %08lx ...\n", rd_addr);
904 show_boot_progress (120);
905 if (!fit_check_format (fit_hdr)) {
906 puts ("Bad FIT ramdisk image format!\n");
907 show_boot_progress (-120);
908 return 0;
910 show_boot_progress (121);
912 if (!fit_uname_ramdisk) {
914 * no ramdisk image node unit name, try to get config
915 * node first. If config unit node name is NULL
916 * fit_conf_get_node() will try to find default config node
918 show_boot_progress (122);
919 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
920 if (cfg_noffset < 0) {
921 puts ("Could not find configuration node\n");
922 show_boot_progress (-122);
923 return 0;
925 fit_uname_config = fdt_get_name (fit_hdr, cfg_noffset, NULL);
926 printf (" Using '%s' configuration\n", fit_uname_config);
928 rd_noffset = fit_conf_get_ramdisk_node (fit_hdr, cfg_noffset);
929 fit_uname_ramdisk = fit_get_name (fit_hdr, rd_noffset, NULL);
930 } else {
931 /* get ramdisk component image node offset */
932 show_boot_progress (123);
933 rd_noffset = fit_image_get_node (fit_hdr, fit_uname_ramdisk);
935 if (rd_noffset < 0) {
936 puts ("Could not find subimage node\n");
937 show_boot_progress (-124);
938 return 0;
941 printf (" Trying '%s' ramdisk subimage\n", fit_uname_ramdisk);
943 show_boot_progress (125);
944 if (!fit_check_ramdisk (fit_hdr, rd_noffset, arch, images->verify))
945 return 0;
947 /* get ramdisk image data address and length */
948 if (fit_image_get_data (fit_hdr, rd_noffset, &data, &size)) {
949 puts ("Could not find ramdisk subimage data!\n");
950 show_boot_progress (-127);
951 return 0;
953 show_boot_progress (128);
955 rd_data = (ulong)data;
956 rd_len = size;
958 if (fit_image_get_load (fit_hdr, rd_noffset, &rd_load)) {
959 puts ("Can't get ramdisk subimage load address!\n");
960 show_boot_progress (-129);
961 return 0;
963 show_boot_progress (129);
965 images->fit_hdr_rd = fit_hdr;
966 images->fit_uname_rd = fit_uname_ramdisk;
967 images->fit_noffset_rd = rd_noffset;
968 break;
969 #endif
970 default:
971 puts ("Wrong Ramdisk Image Format\n");
972 rd_data = rd_len = rd_load = 0;
975 #if defined(CONFIG_B2) || defined(CONFIG_EVB4510) || defined(CONFIG_ARMADILLO)
977 * We need to copy the ramdisk to SRAM to let Linux boot
979 if (rd_data) {
980 memmove ((void *)rd_load, (uchar *)rd_data, rd_len);
981 rd_data = rd_load;
983 #endif /* CONFIG_B2 || CONFIG_EVB4510 || CONFIG_ARMADILLO */
985 } else if (images->legacy_hdr_valid &&
986 image_check_type (images->legacy_hdr_os, IH_TYPE_MULTI)) {
988 * Now check if we have a legacy mult-component image,
989 * get second entry data start address and len.
991 show_boot_progress (13);
992 printf ("## Loading init Ramdisk from multi component "
993 "Legacy Image at %08lx ...\n",
994 (ulong)images->legacy_hdr_os);
996 image_multi_getimg (images->legacy_hdr_os, 1, &rd_data, &rd_len);
997 } else {
999 * no initrd image
1001 show_boot_progress (14);
1002 rd_len = rd_data = 0;
1005 if (!rd_data) {
1006 debug ("## No init Ramdisk\n");
1007 } else {
1008 *rd_start = rd_data;
1009 *rd_end = rd_data + rd_len;
1011 debug (" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
1012 *rd_start, *rd_end);
1014 return 0;
1017 #if defined(CONFIG_PPC) || defined(CONFIG_M68K)
1019 * boot_ramdisk_high - relocate init ramdisk
1020 * @lmb: pointer to lmb handle, will be used for memory mgmt
1021 * @rd_data: ramdisk data start address
1022 * @rd_len: ramdisk data length
1023 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1024 * start address (after possible relocation)
1025 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1026 * end address (after possible relocation)
1028 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement
1029 * variable and if requested ramdisk data is moved to a specified location.
1031 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1032 * start/end addresses if ramdisk image start and len were provided,
1033 * otherwise set initrd_start and initrd_end set to zeros.
1035 * returns:
1036 * 0 - success
1037 * -1 - failure
1039 int boot_ramdisk_high (struct lmb *lmb, ulong rd_data, ulong rd_len,
1040 ulong *initrd_start, ulong *initrd_end)
1042 char *s;
1043 ulong initrd_high;
1044 int initrd_copy_to_ram = 1;
1046 if ((s = getenv ("initrd_high")) != NULL) {
1047 /* a value of "no" or a similar string will act like 0,
1048 * turning the "load high" feature off. This is intentional.
1050 initrd_high = simple_strtoul (s, NULL, 16);
1051 if (initrd_high == ~0)
1052 initrd_copy_to_ram = 0;
1053 } else {
1054 /* not set, no restrictions to load high */
1055 initrd_high = ~0;
1058 debug ("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
1059 initrd_high, initrd_copy_to_ram);
1061 if (rd_data) {
1062 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
1063 debug (" in-place initrd\n");
1064 *initrd_start = rd_data;
1065 *initrd_end = rd_data + rd_len;
1066 lmb_reserve(lmb, rd_data, rd_len);
1067 } else {
1068 if (initrd_high)
1069 *initrd_start = lmb_alloc_base (lmb, rd_len, 0x1000, initrd_high);
1070 else
1071 *initrd_start = lmb_alloc (lmb, rd_len, 0x1000);
1073 if (*initrd_start == 0) {
1074 puts ("ramdisk - allocation error\n");
1075 goto error;
1077 show_boot_progress (12);
1079 *initrd_end = *initrd_start + rd_len;
1080 printf (" Loading Ramdisk to %08lx, end %08lx ... ",
1081 *initrd_start, *initrd_end);
1083 memmove_wd ((void *)*initrd_start,
1084 (void *)rd_data, rd_len, CHUNKSZ);
1086 puts ("OK\n");
1088 } else {
1089 *initrd_start = 0;
1090 *initrd_end = 0;
1092 debug (" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
1093 *initrd_start, *initrd_end);
1095 return 0;
1097 error:
1098 return -1;
1102 * boot_get_cmdline - allocate and initialize kernel cmdline
1103 * @lmb: pointer to lmb handle, will be used for memory mgmt
1104 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1105 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1106 * @bootmap_base: ulong variable, holds offset in physical memory to
1107 * base of bootmap
1109 * boot_get_cmdline() allocates space for kernel command line below
1110 * BOOTMAPSZ + bootmap_base address. If "bootargs" U-boot environemnt
1111 * variable is present its contents is copied to allocated kernel
1112 * command line.
1114 * returns:
1115 * 0 - success
1116 * -1 - failure
1118 int boot_get_cmdline (struct lmb *lmb, ulong *cmd_start, ulong *cmd_end,
1119 ulong bootmap_base)
1121 char *cmdline;
1122 char *s;
1124 cmdline = (char *)lmb_alloc_base(lmb, CFG_BARGSIZE, 0xf,
1125 CFG_BOOTMAPSZ + bootmap_base);
1127 if (cmdline == NULL)
1128 return -1;
1130 if ((s = getenv("bootargs")) == NULL)
1131 s = "";
1133 strcpy(cmdline, s);
1135 *cmd_start = (ulong) & cmdline[0];
1136 *cmd_end = *cmd_start + strlen(cmdline);
1138 debug ("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
1140 return 0;
1144 * boot_get_kbd - allocate and initialize kernel copy of board info
1145 * @lmb: pointer to lmb handle, will be used for memory mgmt
1146 * @kbd: double pointer to board info data
1147 * @bootmap_base: ulong variable, holds offset in physical memory to
1148 * base of bootmap
1150 * boot_get_kbd() allocates space for kernel copy of board info data below
1151 * BOOTMAPSZ + bootmap_base address and kernel board info is initialized with
1152 * the current u-boot board info data.
1154 * returns:
1155 * 0 - success
1156 * -1 - failure
1158 int boot_get_kbd (struct lmb *lmb, bd_t **kbd, ulong bootmap_base)
1160 *kbd = (bd_t *)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
1161 CFG_BOOTMAPSZ + bootmap_base);
1162 if (*kbd == NULL)
1163 return -1;
1165 **kbd = *(gd->bd);
1167 debug ("## kernel board info at 0x%08lx\n", (ulong)*kbd);
1169 #if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1170 do_bdinfo(NULL, 0, 0, NULL);
1171 #endif
1173 return 0;
1175 #endif /* CONFIG_PPC || CONFIG_M68K */
1176 #endif /* !USE_HOSTCC */
1178 #if defined(CONFIG_FIT)
1179 /*****************************************************************************/
1180 /* New uImage format routines */
1181 /*****************************************************************************/
1182 #ifndef USE_HOSTCC
1183 static int fit_parse_spec (const char *spec, char sepc, ulong addr_curr,
1184 ulong *addr, const char **name)
1186 const char *sep;
1188 *addr = addr_curr;
1189 *name = NULL;
1191 sep = strchr (spec, sepc);
1192 if (sep) {
1193 if (sep - spec > 0)
1194 *addr = simple_strtoul (spec, NULL, 16);
1196 *name = sep + 1;
1197 return 1;
1200 return 0;
1204 * fit_parse_conf - parse FIT configuration spec
1205 * @spec: input string, containing configuration 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
1208 * configuration
1209 * @conf_name double pointer to a char, will hold pointer to a configuration
1210 * unit name
1212 * fit_parse_conf() expects configuration spec in the for of [<addr>]#<conf>,
1213 * where <addr> is a FIT image address that contains configuration
1214 * with a <conf> unit name.
1216 * Address part is optional, and if omitted default add_curr will
1217 * be used instead.
1219 * returns:
1220 * 1 if spec is a valid configuration string,
1221 * addr and conf_name are set accordingly
1222 * 0 otherwise
1224 inline int fit_parse_conf (const char *spec, ulong addr_curr,
1225 ulong *addr, const char **conf_name)
1227 return fit_parse_spec (spec, '#', addr_curr, addr, conf_name);
1231 * fit_parse_subimage - parse FIT subimage spec
1232 * @spec: input string, containing subimage spec
1233 * @add_curr: current image address (to be used as a possible default)
1234 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1235 * subimage
1236 * @image_name: double pointer to a char, will hold pointer to a subimage name
1238 * fit_parse_subimage() expects subimage spec in the for of
1239 * [<addr>]:<subimage>, where <addr> is a FIT image address that contains
1240 * subimage with a <subimg> unit name.
1242 * Address part is optional, and if omitted default add_curr will
1243 * be used instead.
1245 * returns:
1246 * 1 if spec is a valid subimage string,
1247 * addr and image_name are set accordingly
1248 * 0 otherwise
1250 inline int fit_parse_subimage (const char *spec, ulong addr_curr,
1251 ulong *addr, const char **image_name)
1253 return fit_parse_spec (spec, ':', addr_curr, addr, image_name);
1255 #endif /* !USE_HOSTCC */
1257 static void fit_get_debug (const void *fit, int noffset,
1258 char *prop_name, int err)
1260 debug ("Can't get '%s' property from FIT 0x%08lx, "
1261 "node: offset %d, name %s (%s)\n",
1262 prop_name, (ulong)fit, noffset,
1263 fit_get_name (fit, noffset, NULL),
1264 fdt_strerror (err));
1268 * __fit_print_contents - prints out the contents of the FIT format image
1269 * @fit: pointer to the FIT format image header
1270 * @p: pointer to prefix string
1272 * __fit_print_contents() formats a multi line FIT image contents description.
1273 * The routine prints out FIT image properties (root node level) follwed by
1274 * the details of each component image.
1276 * returns:
1277 * no returned results
1279 static void __fit_print_contents (const void *fit, const char *p)
1281 char *desc;
1282 char *uname;
1283 int images_noffset;
1284 int confs_noffset;
1285 int noffset;
1286 int ndepth;
1287 int count = 0;
1288 int ret;
1289 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1290 time_t timestamp;
1291 #endif
1293 /* Root node properties */
1294 ret = fit_get_desc (fit, 0, &desc);
1295 printf ("%sFIT description: ", p);
1296 if (ret)
1297 printf ("unavailable\n");
1298 else
1299 printf ("%s\n", desc);
1301 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1302 ret = fit_get_timestamp (fit, 0, &timestamp);
1303 printf ("%sCreated: ", p);
1304 if (ret)
1305 printf ("unavailable\n");
1306 else
1307 genimg_print_time (timestamp);
1308 #endif
1310 /* Find images parent node offset */
1311 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
1312 if (images_noffset < 0) {
1313 printf ("Can't find images parent node '%s' (%s)\n",
1314 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
1315 return;
1318 /* Process its subnodes, print out component images details */
1319 for (ndepth = 0, count = 0, noffset = fdt_next_node (fit, images_noffset, &ndepth);
1320 (noffset >= 0) && (ndepth > 0);
1321 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1322 if (ndepth == 1) {
1324 * Direct child node of the images parent node,
1325 * i.e. component image node.
1327 printf ("%s Image %u (%s)\n", p, count++,
1328 fit_get_name(fit, noffset, NULL));
1330 fit_image_print (fit, noffset, p);
1334 /* Find configurations parent node offset */
1335 confs_noffset = fdt_path_offset (fit, FIT_CONFS_PATH);
1336 if (confs_noffset < 0) {
1337 debug ("Can't get configurations parent node '%s' (%s)\n",
1338 FIT_CONFS_PATH, fdt_strerror (confs_noffset));
1339 return;
1342 /* get default configuration unit name from default property */
1343 uname = (char *)fdt_getprop (fit, noffset, FIT_DEFAULT_PROP, NULL);
1344 if (uname)
1345 printf ("%s Default Configuration: '%s'\n", p, uname);
1347 /* Process its subnodes, print out configurations details */
1348 for (ndepth = 0, count = 0, noffset = fdt_next_node (fit, confs_noffset, &ndepth);
1349 (noffset >= 0) && (ndepth > 0);
1350 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1351 if (ndepth == 1) {
1353 * Direct child node of the configurations parent node,
1354 * i.e. configuration node.
1356 printf ("%s Configuration %u (%s)\n", p, count++,
1357 fit_get_name(fit, noffset, NULL));
1359 fit_conf_print (fit, noffset, p);
1364 inline void fit_print_contents (const void *fit)
1366 __fit_print_contents (fit, " ");
1369 inline void fit_print_contents_noindent (const void *fit)
1371 __fit_print_contents (fit, "");
1375 * fit_image_print - prints out the FIT component image details
1376 * @fit: pointer to the FIT format image header
1377 * @image_noffset: offset of the component image node
1378 * @p: pointer to prefix string
1380 * fit_image_print() lists all mandatory properies for the processed component
1381 * image. If present, hash nodes are printed out as well.
1383 * returns:
1384 * no returned results
1386 void fit_image_print (const void *fit, int image_noffset, const char *p)
1388 char *desc;
1389 uint8_t type, arch, os, comp;
1390 size_t size;
1391 ulong load, entry;
1392 const void *data;
1393 int noffset;
1394 int ndepth;
1395 int ret;
1397 /* Mandatory properties */
1398 ret = fit_get_desc (fit, image_noffset, &desc);
1399 printf ("%s Description: ", p);
1400 if (ret)
1401 printf ("unavailable\n");
1402 else
1403 printf ("%s\n", desc);
1405 fit_image_get_type (fit, image_noffset, &type);
1406 printf ("%s Type: %s\n", p, genimg_get_type_name (type));
1408 fit_image_get_comp (fit, image_noffset, &comp);
1409 printf ("%s Compression: %s\n", p, genimg_get_comp_name (comp));
1411 ret = fit_image_get_data (fit, image_noffset, &data, &size);
1413 #ifndef USE_HOSTCC
1414 printf ("%s Data Start: ", p);
1415 if (ret)
1416 printf ("unavailable\n");
1417 else
1418 printf ("0x%08lx\n", (ulong)data);
1419 #endif
1421 printf ("%s Data Size: ", p);
1422 if (ret)
1423 printf ("unavailable\n");
1424 else
1425 genimg_print_size (size);
1427 /* Remaining, type dependent properties */
1428 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
1429 (type == IH_TYPE_RAMDISK) || (type == IH_TYPE_FIRMWARE) ||
1430 (type == IH_TYPE_FLATDT)) {
1431 fit_image_get_arch (fit, image_noffset, &arch);
1432 printf ("%s Architecture: %s\n", p, genimg_get_arch_name (arch));
1435 if (type == IH_TYPE_KERNEL) {
1436 fit_image_get_os (fit, image_noffset, &os);
1437 printf ("%s OS: %s\n", p, genimg_get_os_name (os));
1440 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE)) {
1441 ret = fit_image_get_load (fit, image_noffset, &load);
1442 printf ("%s Load Address: ", p);
1443 if (ret)
1444 printf ("unavailable\n");
1445 else
1446 printf ("0x%08lx\n", load);
1448 fit_image_get_entry (fit, image_noffset, &entry);
1449 printf ("%s Entry Point: ", p);
1450 if (ret)
1451 printf ("unavailable\n");
1452 else
1453 printf ("0x%08lx\n", entry);
1456 /* Process all hash subnodes of the component image node */
1457 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
1458 (noffset >= 0) && (ndepth > 0);
1459 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1460 if (ndepth == 1) {
1461 /* Direct child node of the component image node */
1462 fit_image_print_hash (fit, noffset, p);
1468 * fit_image_print_hash - prints out the hash node details
1469 * @fit: pointer to the FIT format image header
1470 * @noffset: offset of the hash node
1471 * @p: pointer to prefix string
1473 * fit_image_print_hash() lists properies for the processed hash node
1475 * returns:
1476 * no returned results
1478 void fit_image_print_hash (const void *fit, int noffset, const char *p)
1480 char *algo;
1481 uint8_t *value;
1482 int value_len;
1483 int i, ret;
1486 * Check subnode name, must be equal to "hash".
1487 * Multiple hash nodes require unique unit node
1488 * names, e.g. hash@1, hash@2, etc.
1490 if (strncmp (fit_get_name(fit, noffset, NULL),
1491 FIT_HASH_NODENAME,
1492 strlen(FIT_HASH_NODENAME)) != 0)
1493 return;
1495 debug ("%s Hash node: '%s'\n", p,
1496 fit_get_name (fit, noffset, NULL));
1498 printf ("%s Hash algo: ", p);
1499 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
1500 printf ("invalid/unsupported\n");
1501 return;
1503 printf ("%s\n", algo);
1505 ret = fit_image_hash_get_value (fit, noffset, &value,
1506 &value_len);
1507 printf ("%s Hash value: ", p);
1508 if (ret) {
1509 printf ("unavailable\n");
1510 } else {
1511 for (i = 0; i < value_len; i++)
1512 printf ("%02x", value[i]);
1513 printf ("\n");
1516 debug ("%s Hash len: %d\n", p, value_len);
1520 * fit_get_desc - get node description property
1521 * @fit: pointer to the FIT format image header
1522 * @noffset: node offset
1523 * @desc: double pointer to the char, will hold pointer to the descrption
1525 * fit_get_desc() reads description property from a given node, if
1526 * description is found pointer to it is returened in third call argument.
1528 * returns:
1529 * 0, on success
1530 * -1, on failure
1532 int fit_get_desc (const void *fit, int noffset, char **desc)
1534 int len;
1536 *desc = (char *)fdt_getprop (fit, noffset, FIT_DESC_PROP, &len);
1537 if (*desc == NULL) {
1538 fit_get_debug (fit, noffset, FIT_DESC_PROP, len);
1539 return -1;
1542 return 0;
1546 * fit_get_timestamp - get node timestamp property
1547 * @fit: pointer to the FIT format image header
1548 * @noffset: node offset
1549 * @timestamp: pointer to the time_t, will hold read timestamp
1551 * fit_get_timestamp() reads timestamp poperty from given node, if timestamp
1552 * is found and has a correct size its value is retured in third call
1553 * argument.
1555 * returns:
1556 * 0, on success
1557 * -1, on property read failure
1558 * -2, on wrong timestamp size
1560 int fit_get_timestamp (const void *fit, int noffset, time_t *timestamp)
1562 int len;
1563 const void *data;
1565 data = fdt_getprop (fit, noffset, FIT_TIMESTAMP_PROP, &len);
1566 if (data == NULL) {
1567 fit_get_debug (fit, noffset, FIT_TIMESTAMP_PROP, len);
1568 return -1;
1570 if (len != sizeof (uint32_t)) {
1571 debug ("FIT timestamp with incorrect size of (%u)\n", len);
1572 return -2;
1575 *timestamp = uimage_to_cpu (*((uint32_t *)data));
1576 return 0;
1580 * fit_image_get_node - get node offset for component image of a given unit name
1581 * @fit: pointer to the FIT format image header
1582 * @image_uname: component image node unit name
1584 * fit_image_get_node() finds a component image (withing the '/images'
1585 * node) of a provided unit name. If image is found its node offset is
1586 * returned to the caller.
1588 * returns:
1589 * image node offset when found (>=0)
1590 * negative number on failure (FDT_ERR_* code)
1592 int fit_image_get_node (const void *fit, const char *image_uname)
1594 int noffset, images_noffset;
1596 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
1597 if (images_noffset < 0) {
1598 debug ("Can't find images parent node '%s' (%s)\n",
1599 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
1600 return images_noffset;
1603 noffset = fdt_subnode_offset (fit, images_noffset, image_uname);
1604 if (noffset < 0) {
1605 debug ("Can't get node offset for image unit name: '%s' (%s)\n",
1606 image_uname, fdt_strerror (noffset));
1609 return noffset;
1613 * fit_image_get_os - get os id for a given component image node
1614 * @fit: pointer to the FIT format image header
1615 * @noffset: component image node offset
1616 * @os: pointer to the uint8_t, will hold os numeric id
1618 * fit_image_get_os() finds os property in a given component image node.
1619 * If the property is found, its (string) value is translated to the numeric
1620 * id which is returned to the caller.
1622 * returns:
1623 * 0, on success
1624 * -1, on failure
1626 int fit_image_get_os (const void *fit, int noffset, uint8_t *os)
1628 int len;
1629 const void *data;
1631 /* Get OS name from property data */
1632 data = fdt_getprop (fit, noffset, FIT_OS_PROP, &len);
1633 if (data == NULL) {
1634 fit_get_debug (fit, noffset, FIT_OS_PROP, len);
1635 *os = -1;
1636 return -1;
1639 /* Translate OS name to id */
1640 *os = genimg_get_os_id (data);
1641 return 0;
1645 * fit_image_get_arch - get arch id for a given component image node
1646 * @fit: pointer to the FIT format image header
1647 * @noffset: component image node offset
1648 * @arch: pointer to the uint8_t, will hold arch numeric id
1650 * fit_image_get_arch() finds arch property in a given component image node.
1651 * If the property is found, its (string) value is translated to the numeric
1652 * id which is returned to the caller.
1654 * returns:
1655 * 0, on success
1656 * -1, on failure
1658 int fit_image_get_arch (const void *fit, int noffset, uint8_t *arch)
1660 int len;
1661 const void *data;
1663 /* Get architecture name from property data */
1664 data = fdt_getprop (fit, noffset, FIT_ARCH_PROP, &len);
1665 if (data == NULL) {
1666 fit_get_debug (fit, noffset, FIT_ARCH_PROP, len);
1667 *arch = -1;
1668 return -1;
1671 /* Translate architecture name to id */
1672 *arch = genimg_get_arch_id (data);
1673 return 0;
1677 * fit_image_get_type - get type id for a given component image node
1678 * @fit: pointer to the FIT format image header
1679 * @noffset: component image node offset
1680 * @type: pointer to the uint8_t, will hold type numeric id
1682 * fit_image_get_type() finds type property in a given component image node.
1683 * If the property is found, its (string) value is translated to the numeric
1684 * id which is returned to the caller.
1686 * returns:
1687 * 0, on success
1688 * -1, on failure
1690 int fit_image_get_type (const void *fit, int noffset, uint8_t *type)
1692 int len;
1693 const void *data;
1695 /* Get image type name from property data */
1696 data = fdt_getprop (fit, noffset, FIT_TYPE_PROP, &len);
1697 if (data == NULL) {
1698 fit_get_debug (fit, noffset, FIT_TYPE_PROP, len);
1699 *type = -1;
1700 return -1;
1703 /* Translate image type name to id */
1704 *type = genimg_get_type_id (data);
1705 return 0;
1709 * fit_image_get_comp - get comp id for a given component image node
1710 * @fit: pointer to the FIT format image header
1711 * @noffset: component image node offset
1712 * @comp: pointer to the uint8_t, will hold comp numeric id
1714 * fit_image_get_comp() finds comp property in a given component image node.
1715 * If the property is found, its (string) value is translated to the numeric
1716 * id which is returned to the caller.
1718 * returns:
1719 * 0, on success
1720 * -1, on failure
1722 int fit_image_get_comp (const void *fit, int noffset, uint8_t *comp)
1724 int len;
1725 const void *data;
1727 /* Get compression name from property data */
1728 data = fdt_getprop (fit, noffset, FIT_COMP_PROP, &len);
1729 if (data == NULL) {
1730 fit_get_debug (fit, noffset, FIT_COMP_PROP, len);
1731 *comp = -1;
1732 return -1;
1735 /* Translate compression name to id */
1736 *comp = genimg_get_comp_id (data);
1737 return 0;
1741 * fit_image_get_load - get load address property for a given component image node
1742 * @fit: pointer to the FIT format image header
1743 * @noffset: component image node offset
1744 * @load: pointer to the uint32_t, will hold load address
1746 * fit_image_get_load() finds load address property in a given component image node.
1747 * If the property is found, its value is returned to the caller.
1749 * returns:
1750 * 0, on success
1751 * -1, on failure
1753 int fit_image_get_load (const void *fit, int noffset, ulong *load)
1755 int len;
1756 const uint32_t *data;
1758 data = fdt_getprop (fit, noffset, FIT_LOAD_PROP, &len);
1759 if (data == NULL) {
1760 fit_get_debug (fit, noffset, FIT_LOAD_PROP, len);
1761 return -1;
1764 *load = uimage_to_cpu (*data);
1765 return 0;
1769 * fit_image_get_entry - get entry point address property for a given component image node
1770 * @fit: pointer to the FIT format image header
1771 * @noffset: component image node offset
1772 * @entry: pointer to the uint32_t, will hold entry point address
1774 * fit_image_get_entry() finds entry point address property in a given component image node.
1775 * If the property is found, its value is returned to the caller.
1777 * returns:
1778 * 0, on success
1779 * -1, on failure
1781 int fit_image_get_entry (const void *fit, int noffset, ulong *entry)
1783 int len;
1784 const uint32_t *data;
1786 data = fdt_getprop (fit, noffset, FIT_ENTRY_PROP, &len);
1787 if (data == NULL) {
1788 fit_get_debug (fit, noffset, FIT_ENTRY_PROP, len);
1789 return -1;
1792 *entry = uimage_to_cpu (*data);
1793 return 0;
1797 * fit_image_get_data - get data property and its size for a given component image node
1798 * @fit: pointer to the FIT format image header
1799 * @noffset: component image node offset
1800 * @data: double pointer to void, will hold data property's data address
1801 * @size: pointer to size_t, will hold data property's data size
1803 * fit_image_get_data() finds data property in a given component image node.
1804 * If the property is found its data start address and size are returned to
1805 * the caller.
1807 * returns:
1808 * 0, on success
1809 * -1, on failure
1811 int fit_image_get_data (const void *fit, int noffset,
1812 const void **data, size_t *size)
1814 int len;
1816 *data = fdt_getprop (fit, noffset, FIT_DATA_PROP, &len);
1817 if (*data == NULL) {
1818 fit_get_debug (fit, noffset, FIT_DATA_PROP, len);
1819 *size = 0;
1820 return -1;
1823 *size = len;
1824 return 0;
1828 * fit_image_hash_get_algo - get hash algorithm name
1829 * @fit: pointer to the FIT format image header
1830 * @noffset: hash node offset
1831 * @algo: double pointer to char, will hold pointer to the algorithm name
1833 * fit_image_hash_get_algo() finds hash algorithm property in a given hash node.
1834 * If the property is found its data start address is returned to the caller.
1836 * returns:
1837 * 0, on success
1838 * -1, on failure
1840 int fit_image_hash_get_algo (const void *fit, int noffset, char **algo)
1842 int len;
1844 *algo = (char *)fdt_getprop (fit, noffset, FIT_ALGO_PROP, &len);
1845 if (*algo == NULL) {
1846 fit_get_debug (fit, noffset, FIT_ALGO_PROP, len);
1847 return -1;
1850 return 0;
1854 * fit_image_hash_get_value - get hash value and length
1855 * @fit: pointer to the FIT format image header
1856 * @noffset: hash node offset
1857 * @value: double pointer to uint8_t, will hold address of a hash value data
1858 * @value_len: pointer to an int, will hold hash data length
1860 * fit_image_hash_get_value() finds hash value property in a given hash node.
1861 * If the property is found its data start address and size are returned to
1862 * the caller.
1864 * returns:
1865 * 0, on success
1866 * -1, on failure
1868 int fit_image_hash_get_value (const void *fit, int noffset, uint8_t **value,
1869 int *value_len)
1871 int len;
1873 *value = (uint8_t *)fdt_getprop (fit, noffset, FIT_VALUE_PROP, &len);
1874 if (*value == NULL) {
1875 fit_get_debug (fit, noffset, FIT_VALUE_PROP, len);
1876 *value_len = 0;
1877 return -1;
1880 *value_len = len;
1881 return 0;
1885 * fit_set_timestamp - set node timestamp property
1886 * @fit: pointer to the FIT format image header
1887 * @noffset: node offset
1888 * @timestamp: timestamp value to be set
1890 * fit_set_timestamp() attempts to set timestamp property in the requested
1891 * node and returns operation status to the caller.
1893 * returns:
1894 * 0, on success
1895 * -1, on property read failure
1897 int fit_set_timestamp (void *fit, int noffset, time_t timestamp)
1899 uint32_t t;
1900 int ret;
1902 t = cpu_to_uimage (timestamp);
1903 ret = fdt_setprop (fit, noffset, FIT_TIMESTAMP_PROP, &t,
1904 sizeof (uint32_t));
1905 if (ret) {
1906 printf ("Can't set '%s' property for '%s' node (%s)\n",
1907 FIT_TIMESTAMP_PROP, fit_get_name (fit, noffset, NULL),
1908 fdt_strerror (ret));
1909 return -1;
1912 return 0;
1916 * calculate_hash - calculate and return hash for provided input data
1917 * @data: pointer to the input data
1918 * @data_len: data length
1919 * @algo: requested hash algorithm
1920 * @value: pointer to the char, will hold hash value data (caller must
1921 * allocate enough free space)
1922 * value_len: length of the calculated hash
1924 * calculate_hash() computes input data hash according to the requested algorithm.
1925 * Resulting hash value is placed in caller provided 'value' buffer, length
1926 * of the calculated hash is returned via value_len pointer argument.
1928 * returns:
1929 * 0, on success
1930 * -1, when algo is unsupported
1932 static int calculate_hash (const void *data, int data_len, const char *algo,
1933 uint8_t *value, int *value_len)
1935 if (strcmp (algo, "crc32") == 0 ) {
1936 *((uint32_t *)value) = crc32 (0, data, data_len);
1937 *((uint32_t *)value) = cpu_to_uimage (*((uint32_t *)value));
1938 *value_len = 4;
1939 } else if (strcmp (algo, "sha1") == 0 ) {
1940 sha1_csum ((unsigned char *) data, data_len,
1941 (unsigned char *) value);
1942 *value_len = 20;
1943 } else if (strcmp (algo, "md5") == 0 ) {
1944 md5 ((unsigned char *)data, data_len, value);
1945 *value_len = 16;
1946 } else {
1947 debug ("Unsupported hash alogrithm\n");
1948 return -1;
1950 return 0;
1953 #ifdef USE_HOSTCC
1955 * fit_set_hashes - process FIT component image nodes and calculate hashes
1956 * @fit: pointer to the FIT format image header
1958 * fit_set_hashes() adds hash values for all component images in the FIT blob.
1959 * Hashes are calculated for all component images which have hash subnodes
1960 * with algorithm property set to one of the supported hash algorithms.
1962 * returns
1963 * 0, on success
1964 * libfdt error code, on failure
1966 int fit_set_hashes (void *fit)
1968 int images_noffset;
1969 int noffset;
1970 int ndepth;
1971 int ret;
1973 /* Find images parent node offset */
1974 images_noffset = fdt_path_offset (fit, FIT_IMAGES_PATH);
1975 if (images_noffset < 0) {
1976 printf ("Can't find images parent node '%s' (%s)\n",
1977 FIT_IMAGES_PATH, fdt_strerror (images_noffset));
1978 return images_noffset;
1981 /* Process its subnodes, print out component images details */
1982 for (ndepth = 0, noffset = fdt_next_node (fit, images_noffset, &ndepth);
1983 (noffset >= 0) && (ndepth > 0);
1984 noffset = fdt_next_node (fit, noffset, &ndepth)) {
1985 if (ndepth == 1) {
1987 * Direct child node of the images parent node,
1988 * i.e. component image node.
1990 ret = fit_image_set_hashes (fit, noffset);
1991 if (ret)
1992 return ret;
1996 return 0;
2000 * fit_image_set_hashes - calculate/set hashes for given component image node
2001 * @fit: pointer to the FIT format image header
2002 * @image_noffset: requested component image node
2004 * fit_image_set_hashes() adds hash values for an component image node. All
2005 * existing hash subnodes are checked, if algorithm property is set to one of
2006 * the supported hash algorithms, hash value is computed and corresponding
2007 * hash node property is set, for example:
2009 * Input component image node structure:
2011 * o image@1 (at image_noffset)
2012 * | - data = [binary data]
2013 * o hash@1
2014 * |- algo = "sha1"
2016 * Output component image node structure:
2018 * o image@1 (at image_noffset)
2019 * | - data = [binary data]
2020 * o hash@1
2021 * |- algo = "sha1"
2022 * |- value = sha1(data)
2024 * returns:
2025 * 0 on sucess
2026 * <0 on failure
2028 int fit_image_set_hashes (void *fit, int image_noffset)
2030 const void *data;
2031 size_t size;
2032 char *algo;
2033 uint8_t value[FIT_MAX_HASH_LEN];
2034 int value_len;
2035 int noffset;
2036 int ndepth;
2038 /* Get image data and data length */
2039 if (fit_image_get_data (fit, image_noffset, &data, &size)) {
2040 printf ("Can't get image data/size\n");
2041 return -1;
2044 /* Process all hash subnodes of the component image node */
2045 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
2046 (noffset >= 0) && (ndepth > 0);
2047 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2048 if (ndepth == 1) {
2049 /* Direct child node of the component image node */
2052 * Check subnode name, must be equal to "hash".
2053 * Multiple hash nodes require unique unit node
2054 * names, e.g. hash@1, hash@2, etc.
2056 if (strncmp (fit_get_name(fit, noffset, NULL),
2057 FIT_HASH_NODENAME,
2058 strlen(FIT_HASH_NODENAME)) != 0) {
2059 /* Not a hash subnode, skip it */
2060 continue;
2063 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
2064 printf ("Can't get hash algo property for "
2065 "'%s' hash node in '%s' image node\n",
2066 fit_get_name (fit, noffset, NULL),
2067 fit_get_name (fit, image_noffset, NULL));
2068 return -1;
2071 if (calculate_hash (data, size, algo, value, &value_len)) {
2072 printf ("Unsupported hash algorithm (%s) for "
2073 "'%s' hash node in '%s' image node\n",
2074 algo, fit_get_name (fit, noffset, NULL),
2075 fit_get_name (fit, image_noffset, NULL));
2076 return -1;
2079 if (fit_image_hash_set_value (fit, noffset, value,
2080 value_len)) {
2081 printf ("Can't set hash value for "
2082 "'%s' hash node in '%s' image node\n",
2083 fit_get_name (fit, noffset, NULL),
2084 fit_get_name (fit, image_noffset, NULL));
2085 return -1;
2090 return 0;
2094 * fit_image_hash_set_value - set hash value in requested has node
2095 * @fit: pointer to the FIT format image header
2096 * @noffset: hash node offset
2097 * @value: hash value to be set
2098 * @value_len: hash value length
2100 * fit_image_hash_set_value() attempts to set hash value in a node at offset
2101 * given and returns operation status to the caller.
2103 * returns
2104 * 0, on success
2105 * -1, on failure
2107 int fit_image_hash_set_value (void *fit, int noffset, uint8_t *value,
2108 int value_len)
2110 int ret;
2112 ret = fdt_setprop (fit, noffset, FIT_VALUE_PROP, value, value_len);
2113 if (ret) {
2114 printf ("Can't set hash '%s' property for '%s' node (%s)\n",
2115 FIT_VALUE_PROP, fit_get_name (fit, noffset, NULL),
2116 fdt_strerror (ret));
2117 return -1;
2120 return 0;
2122 #endif /* USE_HOSTCC */
2125 * fit_image_check_hashes - verify data intergity
2126 * @fit: pointer to the FIT format image header
2127 * @image_noffset: component image node offset
2129 * fit_image_check_hashes() goes over component image hash nodes,
2130 * re-calculates each data hash and compares with the value stored in hash
2131 * node.
2133 * returns:
2134 * 1, if all hashes are valid
2135 * 0, otherwise (or on error)
2137 int fit_image_check_hashes (const void *fit, int image_noffset)
2139 const void *data;
2140 size_t size;
2141 char *algo;
2142 uint8_t *fit_value;
2143 int fit_value_len;
2144 uint8_t value[FIT_MAX_HASH_LEN];
2145 int value_len;
2146 int noffset;
2147 int ndepth;
2148 char *err_msg = "";
2150 /* Get image data and data length */
2151 if (fit_image_get_data (fit, image_noffset, &data, &size)) {
2152 printf ("Can't get image data/size\n");
2153 return 0;
2156 /* Process all hash subnodes of the component image node */
2157 for (ndepth = 0, noffset = fdt_next_node (fit, image_noffset, &ndepth);
2158 (noffset >= 0) && (ndepth > 0);
2159 noffset = fdt_next_node (fit, noffset, &ndepth)) {
2160 if (ndepth == 1) {
2161 /* Direct child node of the component image node */
2164 * Check subnode name, must be equal to "hash".
2165 * Multiple hash nodes require unique unit node
2166 * names, e.g. hash@1, hash@2, etc.
2168 if (strncmp (fit_get_name(fit, noffset, NULL),
2169 FIT_HASH_NODENAME,
2170 strlen(FIT_HASH_NODENAME)) != 0)
2171 continue;
2173 if (fit_image_hash_get_algo (fit, noffset, &algo)) {
2174 err_msg = "Can't get hash algo property";
2175 goto error;
2177 printf ("%s", algo);
2179 if (fit_image_hash_get_value (fit, noffset, &fit_value,
2180 &fit_value_len)) {
2181 err_msg = "Can't get hash value property";
2182 goto error;
2185 if (calculate_hash (data, size, algo, value, &value_len)) {
2186 err_msg = "Unsupported hash algorithm";
2187 goto error;
2190 if (value_len != fit_value_len) {
2191 err_msg = "Bad hash value len";
2192 goto error;
2193 } else if (memcmp (value, fit_value, value_len) != 0) {
2194 err_msg = "Bad hash value";
2195 goto error;
2197 printf ("+ ");
2201 return 1;
2203 error:
2204 printf ("%s for '%s' hash node in '%s' image node\n",
2205 err_msg, fit_get_name (fit, noffset, NULL),
2206 fit_get_name (fit, image_noffset, NULL));
2207 return 0;
2211 * fit_image_check_os - check whether image node is of a given os type
2212 * @fit: pointer to the FIT format image header
2213 * @noffset: component image node offset
2214 * @os: requested image os
2216 * fit_image_check_os() reads image os property and compares its numeric
2217 * id with the requested os. Comparison result is returned to the caller.
2219 * returns:
2220 * 1 if image is of given os type
2221 * 0 otherwise (or on error)
2223 int fit_image_check_os (const void *fit, int noffset, uint8_t os)
2225 uint8_t image_os;
2227 if (fit_image_get_os (fit, noffset, &image_os))
2228 return 0;
2229 return (os == image_os);
2233 * fit_image_check_arch - check whether image node is of a given arch
2234 * @fit: pointer to the FIT format image header
2235 * @noffset: component image node offset
2236 * @arch: requested imagearch
2238 * fit_image_check_arch() reads image arch property and compares its numeric
2239 * id with the requested arch. Comparison result is returned to the caller.
2241 * returns:
2242 * 1 if image is of given arch
2243 * 0 otherwise (or on error)
2245 int fit_image_check_arch (const void *fit, int noffset, uint8_t arch)
2247 uint8_t image_arch;
2249 if (fit_image_get_arch (fit, noffset, &image_arch))
2250 return 0;
2251 return (arch == image_arch);
2255 * fit_image_check_type - check whether image node is of a given type
2256 * @fit: pointer to the FIT format image header
2257 * @noffset: component image node offset
2258 * @type: requested image type
2260 * fit_image_check_type() reads image type property and compares its numeric
2261 * id with the requested type. Comparison result is returned to the caller.
2263 * returns:
2264 * 1 if image is of given type
2265 * 0 otherwise (or on error)
2267 int fit_image_check_type (const void *fit, int noffset, uint8_t type)
2269 uint8_t image_type;
2271 if (fit_image_get_type (fit, noffset, &image_type))
2272 return 0;
2273 return (type == image_type);
2277 * fit_image_check_comp - check whether image node uses given compression
2278 * @fit: pointer to the FIT format image header
2279 * @noffset: component image node offset
2280 * @comp: requested image compression type
2282 * fit_image_check_comp() reads image compression property and compares its
2283 * numeric id with the requested compression type. Comparison result is
2284 * returned to the caller.
2286 * returns:
2287 * 1 if image uses requested compression
2288 * 0 otherwise (or on error)
2290 int fit_image_check_comp (const void *fit, int noffset, uint8_t comp)
2292 uint8_t image_comp;
2294 if (fit_image_get_comp (fit, noffset, &image_comp))
2295 return 0;
2296 return (comp == image_comp);
2300 * fit_check_format - sanity check FIT image format
2301 * @fit: pointer to the FIT format image header
2303 * fit_check_format() runs a basic sanity FIT image verification.
2304 * Routine checks for mandatory properties, nodes, etc.
2306 * returns:
2307 * 1, on success
2308 * 0, on failure
2310 int fit_check_format (const void *fit)
2312 /* mandatory / node 'description' property */
2313 if (fdt_getprop (fit, 0, FIT_DESC_PROP, NULL) == NULL) {
2314 debug ("Wrong FIT format: no description\n");
2315 return 0;
2318 #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
2319 /* mandatory / node 'timestamp' property */
2320 if (fdt_getprop (fit, 0, FIT_TIMESTAMP_PROP, NULL) == NULL) {
2321 debug ("Wrong FIT format: no description\n");
2322 return 0;
2324 #endif
2326 /* mandatory subimages parent '/images' node */
2327 if (fdt_path_offset (fit, FIT_IMAGES_PATH) < 0) {
2328 debug ("Wrong FIT format: no images parent node\n");
2329 return 0;
2332 return 1;
2336 * fit_conf_get_node - get node offset for configuration of a given unit name
2337 * @fit: pointer to the FIT format image header
2338 * @conf_uname: configuration node unit name
2340 * fit_conf_get_node() finds a configuration (withing the '/configurations'
2341 * parant node) of a provided unit name. If configuration is found its node offset
2342 * is returned to the caller.
2344 * When NULL is provided in second argument fit_conf_get_node() will search
2345 * for a default configuration node instead. Default configuration node unit name
2346 * is retrived from FIT_DEFAULT_PROP property of the '/configurations' node.
2348 * returns:
2349 * configuration node offset when found (>=0)
2350 * negative number on failure (FDT_ERR_* code)
2352 int fit_conf_get_node (const void *fit, const char *conf_uname)
2354 int noffset, confs_noffset;
2355 int len;
2357 confs_noffset = fdt_path_offset (fit, FIT_CONFS_PATH);
2358 if (confs_noffset < 0) {
2359 debug ("Can't find configurations parent node '%s' (%s)\n",
2360 FIT_CONFS_PATH, fdt_strerror (confs_noffset));
2361 return confs_noffset;
2364 if (conf_uname == NULL) {
2365 /* get configuration unit name from the default property */
2366 debug ("No configuration specified, trying default...\n");
2367 conf_uname = (char *)fdt_getprop (fit, confs_noffset, FIT_DEFAULT_PROP, &len);
2368 if (conf_uname == NULL) {
2369 fit_get_debug (fit, confs_noffset, FIT_DEFAULT_PROP, len);
2370 return len;
2372 debug ("Found default configuration: '%s'\n", conf_uname);
2375 noffset = fdt_subnode_offset (fit, confs_noffset, conf_uname);
2376 if (noffset < 0) {
2377 debug ("Can't get node offset for configuration unit name: '%s' (%s)\n",
2378 conf_uname, fdt_strerror (noffset));
2381 return noffset;
2384 static int __fit_conf_get_prop_node (const void *fit, int noffset,
2385 const char *prop_name)
2387 char *uname;
2388 int len;
2390 /* get kernel image unit name from configuration kernel property */
2391 uname = (char *)fdt_getprop (fit, noffset, prop_name, &len);
2392 if (uname == NULL)
2393 return len;
2395 return fit_image_get_node (fit, uname);
2399 * fit_conf_get_kernel_node - get kernel image node offset that corresponds to
2400 * a given configuration
2401 * @fit: pointer to the FIT format image header
2402 * @noffset: configuration node offset
2404 * fit_conf_get_kernel_node() retrives kernel image node unit name from
2405 * configuration FIT_KERNEL_PROP property and translates it to the node
2406 * offset.
2408 * returns:
2409 * image node offset when found (>=0)
2410 * negative number on failure (FDT_ERR_* code)
2412 int fit_conf_get_kernel_node (const void *fit, int noffset)
2414 return __fit_conf_get_prop_node (fit, noffset, FIT_KERNEL_PROP);
2418 * fit_conf_get_ramdisk_node - get ramdisk image node offset that corresponds to
2419 * a given configuration
2420 * @fit: pointer to the FIT format image header
2421 * @noffset: configuration node offset
2423 * fit_conf_get_ramdisk_node() retrives ramdisk image node unit name from
2424 * configuration FIT_KERNEL_PROP property and translates it to the node
2425 * offset.
2427 * returns:
2428 * image node offset when found (>=0)
2429 * negative number on failure (FDT_ERR_* code)
2431 int fit_conf_get_ramdisk_node (const void *fit, int noffset)
2433 return __fit_conf_get_prop_node (fit, noffset, FIT_RAMDISK_PROP);
2437 * fit_conf_get_fdt_node - get fdt image node offset that corresponds to
2438 * a given configuration
2439 * @fit: pointer to the FIT format image header
2440 * @noffset: configuration node offset
2442 * fit_conf_get_fdt_node() retrives fdt image node unit name from
2443 * configuration FIT_KERNEL_PROP property and translates it to the node
2444 * offset.
2446 * returns:
2447 * image node offset when found (>=0)
2448 * negative number on failure (FDT_ERR_* code)
2450 int fit_conf_get_fdt_node (const void *fit, int noffset)
2452 return __fit_conf_get_prop_node (fit, noffset, FIT_FDT_PROP);
2456 * fit_conf_print - prints out the FIT configuration details
2457 * @fit: pointer to the FIT format image header
2458 * @noffset: offset of the configuration node
2459 * @p: pointer to prefix string
2461 * fit_conf_print() lists all mandatory properies for the processed
2462 * configuration node.
2464 * returns:
2465 * no returned results
2467 void fit_conf_print (const void *fit, int noffset, const char *p)
2469 char *desc;
2470 char *uname;
2471 int ret;
2473 /* Mandatory properties */
2474 ret = fit_get_desc (fit, noffset, &desc);
2475 printf ("%s Description: ", p);
2476 if (ret)
2477 printf ("unavailable\n");
2478 else
2479 printf ("%s\n", desc);
2481 uname = (char *)fdt_getprop (fit, noffset, FIT_KERNEL_PROP, NULL);
2482 printf ("%s Kernel: ", p);
2483 if (uname == NULL)
2484 printf ("unavailable\n");
2485 else
2486 printf ("%s\n", uname);
2488 /* Optional properties */
2489 uname = (char *)fdt_getprop (fit, noffset, FIT_RAMDISK_PROP, NULL);
2490 if (uname)
2491 printf ("%s Init Ramdisk: %s\n", p, uname);
2493 uname = (char *)fdt_getprop (fit, noffset, FIT_FDT_PROP, NULL);
2494 if (uname)
2495 printf ("%s FDT: %s\n", p, uname);
2499 * fit_check_ramdisk - verify FIT format ramdisk subimage
2500 * @fit_hdr: pointer to the FIT ramdisk header
2501 * @rd_noffset: ramdisk subimage node offset within FIT image
2502 * @arch: requested ramdisk image architecture type
2503 * @verify: data CRC verification flag
2505 * fit_check_ramdisk() verifies integrity of the ramdisk subimage and from
2506 * specified FIT image.
2508 * returns:
2509 * 1, on success
2510 * 0, on failure
2512 #ifndef USE_HOSTCC
2513 static int fit_check_ramdisk (const void *fit, int rd_noffset, uint8_t arch, int verify)
2515 fit_image_print (fit, rd_noffset, " ");
2517 if (verify) {
2518 puts (" Verifying Hash Integrity ... ");
2519 if (!fit_image_check_hashes (fit, rd_noffset)) {
2520 puts ("Bad Data Hash\n");
2521 show_boot_progress (-125);
2522 return 0;
2524 puts ("OK\n");
2527 show_boot_progress (126);
2528 if (!fit_image_check_os (fit, rd_noffset, IH_OS_LINUX) ||
2529 !fit_image_check_arch (fit, rd_noffset, arch) ||
2530 !fit_image_check_type (fit, rd_noffset, IH_TYPE_RAMDISK)) {
2531 printf ("No Linux %s Ramdisk Image\n",
2532 genimg_get_arch_name(arch));
2533 show_boot_progress (-126);
2534 return 0;
2537 show_boot_progress (127);
2538 return 1;
2540 #endif /* USE_HOSTCC */
2541 #endif /* CONFIG_FIT */