2 * (C) Copyright 2008 Semihalf
4 * (C) Copyright 2000-2009
5 * DENX Software Engineering
6 * Wolfgang Denk, wd@denx.de
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 static void copy_file(int, const char *, int);
29 static void usage(void);
31 /* image_type_params link list to maintain registered image type supports */
32 struct image_type_params *mkimage_tparams = NULL;
34 /* parameters initialized by core will be used by the image type code */
35 struct mkimage_params params = {
38 .type = IH_TYPE_KERNEL,
40 .dtc = MKIMAGE_DEFAULT_DTC_OPTIONS,
48 * It is used to register respective image generation/list support to the
51 * the input struct image_type_params is checked and appended to the link
52 * list, if the input structure is already registered, error
54 void mkimage_register (struct image_type_params *tparams)
56 struct image_type_params **tp;
59 fprintf (stderr, "%s: %s: Null input\n",
60 params.cmdname, __FUNCTION__);
64 /* scan the linked list, check for registry and point the last one */
65 for (tp = &mkimage_tparams; *tp != NULL; tp = &(*tp)->next) {
66 if (!strcmp((*tp)->name, tparams->name)) {
67 fprintf (stderr, "%s: %s already registered\n",
68 params.cmdname, tparams->name);
73 /* add input struct entry at the end of link list */
75 /* mark input entry as last entry in the link list */
78 debug ("Registered %s\n", tparams->name);
84 * It scans all registers image type supports
85 * checks the input type_id for each supported image type
88 * returns respective image_type_params pointer if success
89 * if input type_id is not supported by any of image_type_support
92 struct image_type_params *mkimage_get_type(int type)
94 struct image_type_params *curr;
96 for (curr = mkimage_tparams; curr != NULL; curr = curr->next) {
97 if (curr->check_image_type) {
98 if (!curr->check_image_type (type))
106 * mkimage_verify_print_header -
108 * It scans mkimage_tparams link list,
109 * verifies image_header for each supported image type
110 * if verification is successful, prints respective header
112 * returns negative if input image format does not match with any of
113 * supported image types
115 int mkimage_verify_print_header (void *ptr, struct stat *sbuf)
118 struct image_type_params *curr;
120 for (curr = mkimage_tparams; curr != NULL; curr = curr->next ) {
121 if (curr->verify_header) {
122 retval = curr->verify_header (
123 (unsigned char *)ptr, sbuf->st_size,
128 * Print the image information
129 * if verify is successful
131 if (curr->print_header)
132 curr->print_header (ptr);
135 "%s: print_header undefined for %s\n",
136 params.cmdname, curr->name);
146 main (int argc, char **argv)
152 struct image_type_params *tparams = NULL;
154 /* Init Freescale PBL Boot image generation/list support */
155 init_pbl_image_type();
156 /* Init Kirkwood Boot image generation/list support */
157 init_kwb_image_type ();
158 /* Init Freescale imx Boot image generation/list support */
159 init_imx_image_type ();
160 /* Init FIT image generation/list support */
161 init_fit_image_type ();
162 /* Init TI OMAP Boot image generation/list support */
163 init_omap_image_type();
164 /* Init Default image generation/list support */
165 init_default_image_type ();
166 /* Init Davinci UBL support */
167 init_ubl_image_type();
168 /* Init Davinci AIS support */
169 init_ais_image_type();
171 params.cmdname = *argv;
172 params.addr = params.ep = 0;
174 while (--argc > 0 && **++argv == '-') {
183 genimg_get_arch_id (*++argv)) < 0)
189 genimg_get_comp_id (*++argv)) < 0)
195 params.dtc = *++argv;
201 genimg_get_os_id (*++argv)) < 0)
207 genimg_get_type_id (*++argv)) < 0)
214 params.addr = strtoul (*++argv, &ptr, 16);
217 "%s: invalid load address %s\n",
218 params.cmdname, *argv);
225 params.datafile = *++argv;
231 params.ep = strtoul (*++argv, &ptr, 16);
234 "%s: invalid entry point %s\n",
235 params.cmdname, *argv);
244 * The flattened image tree (FIT) format
245 * requires a flattened device tree image type
247 params.type = IH_TYPE_FLATDT;
248 params.datafile = *++argv;
254 params.imagename = *++argv;
260 * This entry is for the second configuration
261 * file, if only one is not enough.
263 params.imagename2 = *++argv;
272 printf("mkimage version %s\n", PLAIN_VERSION);
287 /* set tparams as per input type_id */
288 tparams = mkimage_get_type(params.type);
289 if (tparams == NULL) {
290 fprintf (stderr, "%s: unsupported type %s\n",
291 params.cmdname, genimg_get_type_name(params.type));
296 * check the passed arguments parameters meets the requirements
297 * as per image type to be generated/listed
299 if (tparams->check_params)
300 if (tparams->check_params (¶ms))
304 params.ep = params.addr;
305 /* If XIP, entry point must be after the U-Boot header */
307 params.ep += tparams->header_size;
310 params.imagefile = *argv;
313 if (tparams->fflag_handle)
315 * in some cases, some additional processing needs
316 * to be done if fflag is defined
318 * For ex. fit_handle_file for Fit file support
320 retval = tparams->fflag_handle(¶ms);
322 if (retval != EXIT_SUCCESS)
326 if (params.lflag || params.fflag) {
327 ifd = open (params.imagefile, O_RDONLY|O_BINARY);
329 ifd = open (params.imagefile,
330 O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
334 fprintf (stderr, "%s: Can't open %s: %s\n",
335 params.cmdname, params.imagefile,
340 if (params.lflag || params.fflag) {
342 * list header information of existing image
344 if (fstat(ifd, &sbuf) < 0) {
345 fprintf (stderr, "%s: Can't stat %s: %s\n",
346 params.cmdname, params.imagefile,
351 if ((unsigned)sbuf.st_size < tparams->header_size) {
353 "%s: Bad size: \"%s\" is not valid image\n",
354 params.cmdname, params.imagefile);
358 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
359 if (ptr == MAP_FAILED) {
360 fprintf (stderr, "%s: Can't read %s: %s\n",
361 params.cmdname, params.imagefile,
367 * scan through mkimage registry for all supported image types
368 * and verify the input image file header for match
369 * Print the image information for matched image type
370 * Returns the error code if not matched
372 retval = mkimage_verify_print_header (ptr, &sbuf);
374 (void) munmap((void *)ptr, sbuf.st_size);
381 * In case there an header with a variable
382 * length will be added, the corresponding
383 * function is called. This is responsible to
384 * allocate memory for the header itself.
386 if (tparams->vrec_header)
387 tparams->vrec_header(¶ms, tparams);
389 memset(tparams->hdr, 0, tparams->header_size);
391 if (write(ifd, tparams->hdr, tparams->header_size)
392 != tparams->header_size) {
393 fprintf (stderr, "%s: Write error on %s: %s\n",
394 params.cmdname, params.imagefile, strerror(errno));
398 if (!params.skipcpy) {
399 if (params.type == IH_TYPE_MULTI ||
400 params.type == IH_TYPE_SCRIPT) {
401 char *file = params.datafile;
408 if ((sep = strchr(file, ':')) != NULL) {
412 if (stat (file, &sbuf) < 0) {
413 fprintf (stderr, "%s: Can't stat %s: %s\n",
414 params.cmdname, file, strerror(errno));
417 size = cpu_to_uimage (sbuf.st_size);
422 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
423 fprintf (stderr, "%s: Write error on %s: %s\n",
424 params.cmdname, params.imagefile,
441 file = params.datafile;
444 char *sep = strchr(file, ':');
447 copy_file (ifd, file, 1);
451 copy_file (ifd, file, 0);
455 } else if (params.type == IH_TYPE_PBLIMAGE) {
456 /* PBL has special Image format, implements its' own */
457 pbl_load_uboot(ifd, ¶ms);
459 copy_file (ifd, params.datafile, 0);
463 /* We're a bit of paranoid */
464 #if defined(_POSIX_SYNCHRONIZED_IO) && \
465 !defined(__sun__) && \
466 !defined(__FreeBSD__) && \
468 (void) fdatasync (ifd);
473 if (fstat(ifd, &sbuf) < 0) {
474 fprintf (stderr, "%s: Can't stat %s: %s\n",
475 params.cmdname, params.imagefile, strerror(errno));
479 ptr = mmap(0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, ifd, 0);
480 if (ptr == MAP_FAILED) {
481 fprintf (stderr, "%s: Can't map %s: %s\n",
482 params.cmdname, params.imagefile, strerror(errno));
486 /* Setup the image header as per input image type*/
487 if (tparams->set_header)
488 tparams->set_header (ptr, &sbuf, ifd, ¶ms);
490 fprintf (stderr, "%s: Can't set header for %s: %s\n",
491 params.cmdname, tparams->name, strerror(errno));
495 /* Print the image information by processing image header */
496 if (tparams->print_header)
497 tparams->print_header (ptr);
499 fprintf (stderr, "%s: Can't print header for %s: %s\n",
500 params.cmdname, tparams->name, strerror(errno));
504 (void) munmap((void *)ptr, sbuf.st_size);
506 /* We're a bit of paranoid */
507 #if defined(_POSIX_SYNCHRONIZED_IO) && \
508 !defined(__sun__) && \
509 !defined(__FreeBSD__) && \
511 (void) fdatasync (ifd);
517 fprintf (stderr, "%s: Write error on %s: %s\n",
518 params.cmdname, params.imagefile, strerror(errno));
526 copy_file (int ifd, const char *datafile, int pad)
535 struct image_type_params *tparams = mkimage_get_type (params.type);
538 fprintf (stderr, "Adding Image %s\n", datafile);
541 if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
542 fprintf (stderr, "%s: Can't open %s: %s\n",
543 params.cmdname, datafile, strerror(errno));
547 if (fstat(dfd, &sbuf) < 0) {
548 fprintf (stderr, "%s: Can't stat %s: %s\n",
549 params.cmdname, datafile, strerror(errno));
553 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
554 if (ptr == MAP_FAILED) {
555 fprintf (stderr, "%s: Can't read %s: %s\n",
556 params.cmdname, datafile, strerror(errno));
561 unsigned char *p = NULL;
563 * XIP: do not append the image_header_t at the
564 * beginning of the file, but consume the space
568 if ((unsigned)sbuf.st_size < tparams->header_size) {
570 "%s: Bad size: \"%s\" is too small for XIP\n",
571 params.cmdname, datafile);
575 for (p = ptr; p < ptr + tparams->header_size; p++) {
578 "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
579 params.cmdname, datafile);
584 offset = tparams->header_size;
587 size = sbuf.st_size - offset;
588 if (write(ifd, ptr + offset, size) != size) {
589 fprintf (stderr, "%s: Write error on %s: %s\n",
590 params.cmdname, params.imagefile, strerror(errno));
594 if (pad && ((tail = size % 4) != 0)) {
596 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
597 fprintf (stderr, "%s: Write error on %s: %s\n",
598 params.cmdname, params.imagefile,
604 (void) munmap((void *)ptr, sbuf.st_size);
611 fprintf (stderr, "Usage: %s -l image\n"
612 " -l ==> list image header information\n",
614 fprintf (stderr, " %s [-x] -A arch -O os -T type -C comp "
615 "-a addr -e ep -n name -d data_file[:data_file...] image\n"
616 " -A ==> set architecture to 'arch'\n"
617 " -O ==> set operating system to 'os'\n"
618 " -T ==> set image type to 'type'\n"
619 " -C ==> set compression type 'comp'\n"
620 " -a ==> set load address to 'addr' (hex)\n"
621 " -e ==> set entry point to 'ep' (hex)\n"
622 " -n ==> set image name to 'name'\n"
623 " -d ==> use image data from 'datafile'\n"
624 " -x ==> set XIP (execute in place)\n",
626 fprintf (stderr, " %s [-D dtc_options] -f fit-image.its fit-image\n",
628 fprintf (stderr, " %s -V ==> print version information and exit\n",