1 // SPDX-License-Identifier: GPL-2.0+
4 * DENX Software Engineering
7 * (C) Copyright 2008 Semihalf
9 * (C) Copyright 2000-2004
10 * DENX Software Engineering
14 * FIT image specific code abstracted from mkimage.c
15 * some functions added to address abstraction
17 * All rights reserved.
20 #include "imagetool.h"
22 #include "fit_common.h"
24 #include <u-boot/crc.h>
26 int fit_verify_header(unsigned char *ptr, int image_size,
27 struct image_tool_params *params)
29 if (fdt_check_header(ptr) != EXIT_SUCCESS || !fit_check_format(ptr))
35 int fit_check_image_types(uint8_t type)
37 if (type == IH_TYPE_FLATDT)
43 int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc,
44 void **blobp, struct stat *sbuf, bool delete_on_error)
49 /* Load FIT blob into memory (we need to write hashes/signatures) */
50 fd = open(fname, O_RDWR | O_BINARY);
53 fprintf(stderr, "%s: Can't open %s: %s\n",
54 cmdname, fname, strerror(errno));
58 if (fstat(fd, sbuf) < 0) {
59 fprintf(stderr, "%s: Can't stat %s: %s\n",
60 cmdname, fname, strerror(errno));
65 sbuf->st_size += size_inc;
66 if (ftruncate(fd, sbuf->st_size)) {
67 fprintf(stderr, "%s: Can't expand %s: %s\n",
68 cmdname, fname, strerror(errno));
74 ptr = mmap(0, sbuf->st_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
75 if ((ptr == MAP_FAILED) || (errno != 0)) {
76 fprintf(stderr, "%s: Can't read %s: %s\n",
77 cmdname, fname, strerror(errno));
81 /* check if ptr has a valid blob */
82 if (fdt_check_header(ptr)) {
83 fprintf(stderr, "%s: Invalid FIT blob\n", cmdname);
87 /* expand if needed */
91 ret = fdt_open_into(ptr, ptr, sbuf->st_size);
93 fprintf(stderr, "%s: Cannot expand FDT: %s\n",
94 cmdname, fdt_strerror(ret));