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,
27 static void copy_file(int, const char *, int);
28 static void usage(void);
30 /* image_type_params link list to maintain registered image type supports */
31 struct image_type_params *mkimage_tparams = NULL;
33 /* parameters initialized by core will be used by the image type code */
34 struct mkimage_params params = {
37 .type = IH_TYPE_KERNEL,
39 .dtc = MKIMAGE_DEFAULT_DTC_OPTIONS,
45 * It is used to register respective image generation/list support to the
48 * the input struct image_type_params is checked and appended to the link
49 * list, if the input structure is already registered, error
51 void mkimage_register (struct image_type_params *tparams)
53 struct image_type_params **tp;
56 fprintf (stderr, "%s: %s: Null input\n",
57 params.cmdname, __FUNCTION__);
61 /* scan the linked list, check for registry and point the last one */
62 for (tp = &mkimage_tparams; *tp != NULL; tp = &(*tp)->next) {
63 if (!strcmp((*tp)->name, tparams->name)) {
64 fprintf (stderr, "%s: %s already registered\n",
65 params.cmdname, tparams->name);
70 /* add input struct entry at the end of link list */
72 /* mark input entry as last entry in the link list */
75 debug ("Registered %s\n", tparams->name);
81 * It scans all registers image type supports
82 * checks the input type_id for each supported image type
85 * returns respective image_type_params pointer if success
86 * if input type_id is not supported by any of image_type_support
89 struct image_type_params *mkimage_get_type(int type)
91 struct image_type_params *curr;
93 for (curr = mkimage_tparams; curr != NULL; curr = curr->next) {
94 if (curr->check_image_type) {
95 if (!curr->check_image_type (type))
103 * mkimage_verify_print_header -
105 * It scans mkimage_tparams link list,
106 * verifies image_header for each supported image type
107 * if verification is successful, prints respective header
109 * returns negative if input image format does not match with any of
110 * supported image types
112 int mkimage_verify_print_header (void *ptr, struct stat *sbuf)
115 struct image_type_params *curr;
117 for (curr = mkimage_tparams; curr != NULL; curr = curr->next ) {
118 if (curr->verify_header) {
119 retval = curr->verify_header (
120 (unsigned char *)ptr, sbuf->st_size,
125 * Print the image information
126 * if verify is successful
128 if (curr->print_header)
129 curr->print_header (ptr);
132 "%s: print_header undefined for %s\n",
133 params.cmdname, curr->name);
143 main (int argc, char **argv)
149 struct image_type_params *tparams = NULL;
151 /* Init Kirkwood Boot image generation/list support */
152 init_kwb_image_type ();
153 /* Init FIT image generation/list support */
154 init_fit_image_type ();
155 /* Init Default image generation/list support */
156 init_default_image_type ();
158 params.cmdname = *argv;
159 params.addr = params.ep = 0;
161 while (--argc > 0 && **++argv == '-') {
170 genimg_get_arch_id (*++argv)) < 0)
176 genimg_get_comp_id (*++argv)) < 0)
182 params.dtc = *++argv;
188 genimg_get_os_id (*++argv)) < 0)
194 genimg_get_type_id (*++argv)) < 0)
201 params.addr = strtoul (*++argv,
205 "%s: invalid load address %s\n",
206 params.cmdname, *argv);
213 params.datafile = *++argv;
219 params.ep = strtoul (*++argv,
223 "%s: invalid entry point %s\n",
224 params.cmdname, *argv);
232 params.type = IH_TYPE_FLATDT;
233 params.datafile = *++argv;
239 params.imagename = *++argv;
257 /* set tparams as per input type_id */
258 tparams = mkimage_get_type(params.type);
259 if (tparams == NULL) {
260 fprintf (stderr, "%s: unsupported type %s\n",
261 params.cmdname, genimg_get_type_name(params.type));
266 * check the passed arguments parameters meets the requirements
267 * as per image type to be generated/listed
269 if (tparams->check_params)
270 if (tparams->check_params (¶ms))
274 params.ep = params.addr;
275 /* If XIP, entry point must be after the U-Boot header */
277 params.ep += tparams->header_size;
281 * If XIP, ensure the entry point is equal to the load address plus
282 * the size of the U-Boot header.
285 if (params.ep != params.addr + tparams->header_size) {
287 "%s: For XIP, the entry point must be the load addr + %lu\n",
289 (unsigned long)tparams->header_size);
294 params.imagefile = *argv;
298 ifd = open (params.imagefile, O_RDONLY|O_BINARY);
300 ifd = open (params.imagefile,
301 O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0666);
305 fprintf (stderr, "%s: Can't open %s: %s\n",
306 params.cmdname, params.imagefile,
314 * list header information of existing image
316 if (fstat(ifd, &sbuf) < 0) {
317 fprintf (stderr, "%s: Can't stat %s: %s\n",
318 params.cmdname, params.imagefile,
323 if ((unsigned)sbuf.st_size < tparams->header_size) {
325 "%s: Bad size: \"%s\" is not valid image\n",
326 params.cmdname, params.imagefile);
330 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0);
331 if (ptr == MAP_FAILED) {
332 fprintf (stderr, "%s: Can't read %s: %s\n",
333 params.cmdname, params.imagefile,
339 * scan through mkimage registry for all supported image types
340 * and verify the input image file header for match
341 * Print the image information for matched image type
342 * Returns the error code if not matched
344 retval = mkimage_verify_print_header (ptr, &sbuf);
346 (void) munmap((void *)ptr, sbuf.st_size);
350 } else if (params.fflag) {
351 if (tparams->fflag_handle)
353 * in some cases, some additional processing needs
354 * to be done if fflag is defined
356 * For ex. fit_handle_file for Fit file support
358 retval = tparams->fflag_handle(¶ms);
366 * write dummy header, to be fixed later
368 memset (tparams->hdr, 0, tparams->header_size);
370 if (write(ifd, tparams->hdr, tparams->header_size)
371 != tparams->header_size) {
372 fprintf (stderr, "%s: Write error on %s: %s\n",
373 params.cmdname, params.imagefile, strerror(errno));
377 if (params.type == IH_TYPE_MULTI || params.type == IH_TYPE_SCRIPT) {
378 char *file = params.datafile;
385 if ((sep = strchr(file, ':')) != NULL) {
389 if (stat (file, &sbuf) < 0) {
390 fprintf (stderr, "%s: Can't stat %s: %s\n",
391 params.cmdname, file, strerror(errno));
394 size = cpu_to_uimage (sbuf.st_size);
399 if (write(ifd, (char *)&size, sizeof(size)) != sizeof(size)) {
400 fprintf (stderr, "%s: Write error on %s: %s\n",
401 params.cmdname, params.imagefile,
418 file = params.datafile;
421 char *sep = strchr(file, ':');
424 copy_file (ifd, file, 1);
428 copy_file (ifd, file, 0);
433 copy_file (ifd, params.datafile, 0);
436 /* We're a bit of paranoid */
437 #if defined(_POSIX_SYNCHRONIZED_IO) && \
438 !defined(__sun__) && \
439 !defined(__FreeBSD__) && \
441 (void) fdatasync (ifd);
446 if (fstat(ifd, &sbuf) < 0) {
447 fprintf (stderr, "%s: Can't stat %s: %s\n",
448 params.cmdname, params.imagefile, strerror(errno));
452 ptr = mmap(0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, ifd, 0);
453 if (ptr == MAP_FAILED) {
454 fprintf (stderr, "%s: Can't map %s: %s\n",
455 params.cmdname, params.imagefile, strerror(errno));
459 /* Setup the image header as per input image type*/
460 if (tparams->set_header)
461 tparams->set_header (ptr, &sbuf, ifd, ¶ms);
463 fprintf (stderr, "%s: Can't set header for %s: %s\n",
464 params.cmdname, tparams->name, strerror(errno));
468 /* Print the image information by processing image header */
469 if (tparams->print_header)
470 tparams->print_header (ptr);
472 fprintf (stderr, "%s: Can't print header for %s: %s\n",
473 params.cmdname, tparams->name, strerror(errno));
477 (void) munmap((void *)ptr, sbuf.st_size);
479 /* We're a bit of paranoid */
480 #if defined(_POSIX_SYNCHRONIZED_IO) && \
481 !defined(__sun__) && \
482 !defined(__FreeBSD__) && \
484 (void) fdatasync (ifd);
490 fprintf (stderr, "%s: Write error on %s: %s\n",
491 params.cmdname, params.imagefile, strerror(errno));
499 copy_file (int ifd, const char *datafile, int pad)
508 struct image_type_params *tparams = mkimage_get_type (params.type);
511 fprintf (stderr, "Adding Image %s\n", datafile);
514 if ((dfd = open(datafile, O_RDONLY|O_BINARY)) < 0) {
515 fprintf (stderr, "%s: Can't open %s: %s\n",
516 params.cmdname, datafile, strerror(errno));
520 if (fstat(dfd, &sbuf) < 0) {
521 fprintf (stderr, "%s: Can't stat %s: %s\n",
522 params.cmdname, datafile, strerror(errno));
526 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
527 if (ptr == MAP_FAILED) {
528 fprintf (stderr, "%s: Can't read %s: %s\n",
529 params.cmdname, datafile, strerror(errno));
534 unsigned char *p = NULL;
536 * XIP: do not append the image_header_t at the
537 * beginning of the file, but consume the space
541 if ((unsigned)sbuf.st_size < tparams->header_size) {
543 "%s: Bad size: \"%s\" is too small for XIP\n",
544 params.cmdname, datafile);
548 for (p = ptr; p < ptr + tparams->header_size; p++) {
551 "%s: Bad file: \"%s\" has invalid buffer for XIP\n",
552 params.cmdname, datafile);
557 offset = tparams->header_size;
560 size = sbuf.st_size - offset;
561 if (write(ifd, ptr + offset, size) != size) {
562 fprintf (stderr, "%s: Write error on %s: %s\n",
563 params.cmdname, params.imagefile, strerror(errno));
567 if (pad && ((tail = size % 4) != 0)) {
569 if (write(ifd, (char *)&zero, 4-tail) != 4-tail) {
570 fprintf (stderr, "%s: Write error on %s: %s\n",
571 params.cmdname, params.imagefile,
577 (void) munmap((void *)ptr, sbuf.st_size);
584 fprintf (stderr, "Usage: %s -l image\n"
585 " -l ==> list image header information\n",
587 fprintf (stderr, " %s [-x] -A arch -O os -T type -C comp "
588 "-a addr -e ep -n name -d data_file[:data_file...] image\n"
589 " -A ==> set architecture to 'arch'\n"
590 " -O ==> set operating system to 'os'\n"
591 " -T ==> set image type to 'type'\n"
592 " -C ==> set compression type 'comp'\n"
593 " -a ==> set load address to 'addr' (hex)\n"
594 " -e ==> set entry point to 'ep' (hex)\n"
595 " -n ==> set image name to 'name'\n"
596 " -d ==> use image data from 'datafile'\n"
597 " -x ==> set XIP (execute in place)\n",
599 fprintf (stderr, " %s [-D dtc_options] -f fit-image.its fit-image\n",