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,
47 * It is used to register respective image generation/list support to the
50 * the input struct image_type_params is checked and appended to the link
51 * list, if the input structure is already registered, error
53 void mkimage_register (struct image_type_params *tparams)
55 struct image_type_params **tp;
58 fprintf (stderr, "%s: %s: Null input\n",
59 params.cmdname, __FUNCTION__);
63 /* scan the linked list, check for registry and point the last one */
64 for (tp = &mkimage_tparams; *tp != NULL; tp = &(*tp)->next) {
65 if (!strcmp((*tp)->name, tparams->name)) {
66 fprintf (stderr, "%s: %s already registered\n",
67 params.cmdname, tparams->name);
72 /* add input struct entry at the end of link list */
74 /* mark input entry as last entry in the link list */
77 debug ("Registered %s\n", tparams->name);
83 * It scans all registers image type supports
84 * checks the input type_id for each supported image type
87 * returns respective image_type_params pointer if success
88 * if input type_id is not supported by any of image_type_support
91 struct image_type_params *mkimage_get_type(int type)
93 struct image_type_params *curr;
95 for (curr = mkimage_tparams; curr != NULL; curr = curr->next) {
96 if (curr->check_image_type) {
97 if (!curr->check_image_type (type))
105 * mkimage_verify_print_header -
107 * It scans mkimage_tparams link list,
108 * verifies image_header for each supported image type
109 * if verification is successful, prints respective header
111 * returns negative if input image format does not match with any of
112 * supported image types
114 int mkimage_verify_print_header (void *ptr, struct stat *sbuf)
117 struct image_type_params *curr;
119 for (curr = mkimage_tparams; curr != NULL; curr = curr->next ) {
120 if (curr->verify_header) {
121 retval = curr->verify_header (
122 (unsigned char *)ptr, sbuf->st_size,
127 * Print the image information
128 * if verify is successful
130 if (curr->print_header)
131 curr->print_header (ptr);
134 "%s: print_header undefined for %s\n",
135 params.cmdname, curr->name);
145 main (int argc, char **argv)
151 struct image_type_params *tparams = NULL;
153 /* Init Kirkwood Boot image generation/list support */
154 init_kwb_image_type ();
155 /* Init Freescale imx Boot image generation/list support */
156 init_imx_image_type ();
157 /* Init FIT image generation/list support */
158 init_fit_image_type ();
159 /* Init Default image generation/list support */
160 init_default_image_type ();
162 params.cmdname = *argv;
163 params.addr = params.ep = 0;
165 while (--argc > 0 && **++argv == '-') {
174 genimg_get_arch_id (*++argv)) < 0)
180 genimg_get_comp_id (*++argv)) < 0)
186 params.dtc = *++argv;
192 genimg_get_os_id (*++argv)) < 0)
198 genimg_get_type_id (*++argv)) < 0)
205 params.addr = strtoul (*++argv, &ptr, 16);
208 "%s: invalid load address %s\n",
209 params.cmdname, *argv);
216 params.datafile = *++argv;
222 params.ep = strtoul (*++argv, &ptr, 16);
225 "%s: invalid entry point %s\n",
226 params.cmdname, *argv);
235 * The flattened image tree (FIT) format
236 * requires a flattened device tree image type
238 params.type = IH_TYPE_FLATDT;
239 params.datafile = *++argv;
245 params.imagename = *++argv;
251 printf("mkimage version %s\n", PLAIN_VERSION);
266 /* set tparams as per input type_id */
267 tparams = mkimage_get_type(params.type);
268 if (tparams == NULL) {
269 fprintf (stderr, "%s: unsupported type %s\n",
270 params.cmdname, genimg_get_type_name(params.type));
275 * check the passed arguments parameters meets the requirements
276 * as per image type to be generated/listed
278 if (tparams->check_params)
279 if (tparams->check_params (¶ms))
283 params.ep = params.addr;
284 /* If XIP, entry point must be after the U-Boot header */
286 params.ep += tparams->header_size;
289 params.imagefile = *argv;
292 if (tparams->fflag_handle)
294 * in some cases, some additional processing needs
295 * to be done if fflag is defined
297 * For ex. fit_handle_file for Fit file support
299 retval = tparams->fflag_handle(¶ms);
301 if (retval != EXIT_SUCCESS)
305 if (params.lflag || params.fflag) {
306 ifd = open (params.imagefile, O_RDONLY|O_BINARY);
308 ifd = open (params.imagefile,
309 O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
313 fprintf (stderr, "%s: Can't open %s: %s\n",
314 params.cmdname, params.imagefile,
319 if (params.lflag || params.fflag) {
321 * list header information of existing image
323 if (fstat(ifd, &sbuf) < 0) {
324 fprintf (stderr, "%s: Can't stat %s: %s\n",
325 params.cmdname, params.imagefile,
330 if ((unsigned)sbuf.st_size < tparams->header_size) {
332 "%s: Bad size: \"%s\" is not valid image\n",
333 params.cmdname, params.imagefile);
337 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
338 if (ptr == MAP_FAILED) {
339 fprintf (stderr, "%s: Can't read %s: %s\n",
340 params.cmdname, params.imagefile,
346 * scan through mkimage registry for all supported image types
347 * and verify the input image file header for match
348 * Print the image information for matched image type
349 * Returns the error code if not matched
351 retval = mkimage_verify_print_header (ptr, &sbuf);
353 (void) munmap((void *)ptr, sbuf.st_size);
362 * write dummy header, to be fixed later
364 memset (tparams->hdr, 0, tparams->header_size);
366 if (write(ifd, tparams->hdr, tparams->header_size)
367 != tparams->header_size) {
368 fprintf (stderr, "%s: Write error on %s: %s\n",
369 params.cmdname, params.imagefile, strerror(errno));
373 if (params.type == IH_TYPE_MULTI || params.type == IH_TYPE_SCRIPT) {
374 char *file = params.datafile;
381 if ((sep = strchr(file, ':')) != NULL) {
385 if (stat (file, &sbuf) < 0) {
386 fprintf (stderr, "%s: Can't stat %s: %s\n",
387 params.cmdname, file, strerror(errno));
390 size = cpu_to_uimage (sbuf.st_size);
395 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
396 fprintf (stderr, "%s: Write error on %s: %s\n",
397 params.cmdname, params.imagefile,
414 file = params.datafile;
417 char *sep = strchr(file, ':');
420 copy_file (ifd, file, 1);
424 copy_file (ifd, file, 0);
429 copy_file (ifd, params.datafile, 0);
432 /* We're a bit of paranoid */
433 #if defined(_POSIX_SYNCHRONIZED_IO) && \
434 !defined(__sun__) && \
435 !defined(__FreeBSD__) && \
437 (void) fdatasync (ifd);
442 if (fstat(ifd, &sbuf) < 0) {
443 fprintf (stderr, "%s: Can't stat %s: %s\n",
444 params.cmdname, params.imagefile, strerror(errno));
448 ptr = mmap(0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, ifd, 0);
449 if (ptr == MAP_FAILED) {
450 fprintf (stderr, "%s: Can't map %s: %s\n",
451 params.cmdname, params.imagefile, strerror(errno));
455 /* Setup the image header as per input image type*/
456 if (tparams->set_header)
457 tparams->set_header (ptr, &sbuf, ifd, ¶ms);
459 fprintf (stderr, "%s: Can't set header for %s: %s\n",
460 params.cmdname, tparams->name, strerror(errno));
464 /* Print the image information by processing image header */
465 if (tparams->print_header)
466 tparams->print_header (ptr);
468 fprintf (stderr, "%s: Can't print header for %s: %s\n",
469 params.cmdname, tparams->name, strerror(errno));
473 (void) munmap((void *)ptr, sbuf.st_size);
475 /* We're a bit of paranoid */
476 #if defined(_POSIX_SYNCHRONIZED_IO) && \
477 !defined(__sun__) && \
478 !defined(__FreeBSD__) && \
480 (void) fdatasync (ifd);
486 fprintf (stderr, "%s: Write error on %s: %s\n",
487 params.cmdname, params.imagefile, strerror(errno));
495 copy_file (int ifd, const char *datafile, int pad)
504 struct image_type_params *tparams = mkimage_get_type (params.type);
507 fprintf (stderr, "Adding Image %s\n", datafile);
510 if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
511 fprintf (stderr, "%s: Can't open %s: %s\n",
512 params.cmdname, datafile, strerror(errno));
516 if (fstat(dfd, &sbuf) < 0) {
517 fprintf (stderr, "%s: Can't stat %s: %s\n",
518 params.cmdname, datafile, strerror(errno));
522 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
523 if (ptr == MAP_FAILED) {
524 fprintf (stderr, "%s: Can't read %s: %s\n",
525 params.cmdname, datafile, strerror(errno));
530 unsigned char *p = NULL;
532 * XIP: do not append the image_header_t at the
533 * beginning of the file, but consume the space
537 if ((unsigned)sbuf.st_size < tparams->header_size) {
539 "%s: Bad size: \"%s\" is too small for XIP\n",
540 params.cmdname, datafile);
544 for (p = ptr; p < ptr + tparams->header_size; p++) {
547 "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
548 params.cmdname, datafile);
553 offset = tparams->header_size;
556 size = sbuf.st_size - offset;
557 if (write(ifd, ptr + offset, size) != size) {
558 fprintf (stderr, "%s: Write error on %s: %s\n",
559 params.cmdname, params.imagefile, strerror(errno));
563 if (pad && ((tail = size % 4) != 0)) {
565 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
566 fprintf (stderr, "%s: Write error on %s: %s\n",
567 params.cmdname, params.imagefile,
573 (void) munmap((void *)ptr, sbuf.st_size);
580 fprintf (stderr, "Usage: %s -l image\n"
581 " -l ==> list image header information\n",
583 fprintf (stderr, " %s [-x] -A arch -O os -T type -C comp "
584 "-a addr -e ep -n name -d data_file[:data_file...] image\n"
585 " -A ==> set architecture to 'arch'\n"
586 " -O ==> set operating system to 'os'\n"
587 " -T ==> set image type to 'type'\n"
588 " -C ==> set compression type 'comp'\n"
589 " -a ==> set load address to 'addr' (hex)\n"
590 " -e ==> set entry point to 'ep' (hex)\n"
591 " -n ==> set image name to 'name'\n"
592 " -d ==> use image data from 'datafile'\n"
593 " -x ==> set XIP (execute in place)\n",
595 fprintf (stderr, " %s [-D dtc_options] -f fit-image.its fit-image\n",
597 fprintf (stderr, " %s -V ==> print version information and exit\n",