]> Git Repo - J-u-boot.git/blame - tools/default_image.c
tools: kwbimage: Set BOOT_FROM by default to SPI
[J-u-boot.git] / tools / default_image.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
89a4d6b1
PW
2/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2004
6 * DENX Software Engineering
7 * Wolfgang Denk, [email protected]
8 *
9 * Updated-by: Prafulla Wadaskar <[email protected]>
10 * default_image specific code abstracted from mkimage.c
11 * some functions added to address abstraction
12 *
13 * All rights reserved.
89a4d6b1
PW
14 */
15
f86ed6a8 16#include "imagetool.h"
26621799 17#include "mkimage.h"
3db71108 18#include <u-boot/crc.h>
26621799 19
89a4d6b1 20#include <image.h>
45b55712 21#include <tee/optee.h>
89a4d6b1 22#include <u-boot/crc.h>
5b20d141 23#include <imximage.h>
89a4d6b1
PW
24
25static image_header_t header;
26
712fbcf3 27static int image_check_image_types(uint8_t type)
89a4d6b1 28{
b9b50e89 29 if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) ||
d21bd69b 30 (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT))
89a4d6b1
PW
31 return EXIT_SUCCESS;
32 else
33 return EXIT_FAILURE;
34}
35
f86ed6a8 36static int image_check_params(struct image_tool_params *params)
89a4d6b1
PW
37{
38 return ((params->dflag && (params->fflag || params->lflag)) ||
39 (params->fflag && (params->dflag || params->lflag)) ||
40 (params->lflag && (params->dflag || params->fflag)));
41}
42
712fbcf3 43static int image_verify_header(unsigned char *ptr, int image_size,
f86ed6a8 44 struct image_tool_params *params)
89a4d6b1
PW
45{
46 uint32_t len;
47 const unsigned char *data;
48 uint32_t checksum;
49 image_header_t header;
50 image_header_t *hdr = &header;
51
52 /*
53 * create copy of header so that we can blank out the
54 * checksum field for checking - this can't be done
55 * on the PROT_READ mapped data.
56 */
712fbcf3 57 memcpy(hdr, ptr, sizeof(image_header_t));
89a4d6b1
PW
58
59 if (be32_to_cpu(hdr->ih_magic) != IH_MAGIC) {
26621799
GMF
60 debug("%s: Bad Magic Number: \"%s\" is no valid image\n",
61 params->cmdname, params->imagefile);
89a4d6b1
PW
62 return -FDT_ERR_BADMAGIC;
63 }
64
65 data = (const unsigned char *)hdr;
66 len = sizeof(image_header_t);
67
68 checksum = be32_to_cpu(hdr->ih_hcrc);
69 hdr->ih_hcrc = cpu_to_be32(0); /* clear for re-calculation */
70
712fbcf3 71 if (crc32(0, data, len) != checksum) {
26621799
GMF
72 debug("%s: ERROR: \"%s\" has bad header checksum!\n",
73 params->cmdname, params->imagefile);
89a4d6b1
PW
74 return -FDT_ERR_BADSTATE;
75 }
76
77 data = (const unsigned char *)ptr + sizeof(image_header_t);
78 len = image_size - sizeof(image_header_t) ;
79
80 checksum = be32_to_cpu(hdr->ih_dcrc);
712fbcf3 81 if (crc32(0, data, len) != checksum) {
26621799
GMF
82 debug("%s: ERROR: \"%s\" has corrupted data!\n",
83 params->cmdname, params->imagefile);
89a4d6b1
PW
84 return -FDT_ERR_BADSTRUCTURE;
85 }
86 return 0;
87}
88
712fbcf3 89static void image_set_header(void *ptr, struct stat *sbuf, int ifd,
f86ed6a8 90 struct image_tool_params *params)
89a4d6b1
PW
91{
92 uint32_t checksum;
f3f431a7 93 time_t time;
d21bd69b 94 uint32_t imagesize;
45b55712
BD
95 uint32_t ep;
96 uint32_t addr;
89a4d6b1
PW
97
98 image_header_t * hdr = (image_header_t *)ptr;
99
712fbcf3 100 checksum = crc32(0,
89a4d6b1
PW
101 (const unsigned char *)(ptr +
102 sizeof(image_header_t)),
103 sbuf->st_size - sizeof(image_header_t));
104
87925df2 105 time = imagetool_get_source_date(params->cmdname, sbuf->st_mtime);
45b55712
BD
106 ep = params->ep;
107 addr = params->addr;
108
d21bd69b
SE
109 if (params->type == IH_TYPE_FIRMWARE_IVT)
110 /* Add size of CSF minus IVT */
5b20d141
BML
111 imagesize = sbuf->st_size - sizeof(image_header_t)
112 + 0x2060 - sizeof(flash_header_v2_t);
113
d21bd69b
SE
114 else
115 imagesize = sbuf->st_size - sizeof(image_header_t);
f3f431a7 116
45b55712
BD
117 if (params->os == IH_OS_TEE) {
118 addr = optee_image_get_load_addr(hdr);
119 ep = optee_image_get_entry_point(hdr);
120 }
121
89a4d6b1 122 /* Build new header */
712fbcf3 123 image_set_magic(hdr, IH_MAGIC);
f3f431a7 124 image_set_time(hdr, time);
d21bd69b 125 image_set_size(hdr, imagesize);
45b55712
BD
126 image_set_load(hdr, addr);
127 image_set_ep(hdr, ep);
712fbcf3
SW
128 image_set_dcrc(hdr, checksum);
129 image_set_os(hdr, params->os);
130 image_set_arch(hdr, params->arch);
131 image_set_type(hdr, params->type);
132 image_set_comp(hdr, params->comp);
133
134 image_set_name(hdr, params->imagename);
135
136 checksum = crc32(0, (const unsigned char *)hdr,
89a4d6b1
PW
137 sizeof(image_header_t));
138
712fbcf3 139 image_set_hcrc(hdr, checksum);
89a4d6b1
PW
140}
141
67f946cd 142static int image_extract_subimage(void *ptr, struct image_tool_params *params)
a804b5ce
GMF
143{
144 const image_header_t *hdr = (const image_header_t *)ptr;
145 ulong file_data;
146 ulong file_len;
147
148 if (image_check_type(hdr, IH_TYPE_MULTI)) {
149 ulong idx = params->pflag;
150 ulong count;
151
152 /* get the number of data files present in the image */
153 count = image_multi_count(hdr);
154
155 /* retrieve the "data file" at the idx position */
156 image_multi_getimg(hdr, idx, &file_data, &file_len);
157
158 if ((file_len == 0) || (idx >= count)) {
159 fprintf(stderr, "%s: No such data file %ld in \"%s\"\n",
160 params->cmdname, idx, params->imagefile);
161 return -1;
162 }
163 } else {
164 file_data = image_get_data(hdr);
165 file_len = image_get_size(hdr);
166 }
167
168 /* save the "data file" into the file system */
67f946cd 169 return imagetool_save_subimage(params->outfile, file_data, file_len);
a804b5ce
GMF
170}
171
89a4d6b1
PW
172/*
173 * Default image type parameters definition
174 */
a93648d1
GMF
175U_BOOT_IMAGE_TYPE(
176 defimage,
177 "Default Image support",
178 sizeof(image_header_t),
179 (void *)&header,
180 image_check_params,
181 image_verify_header,
182 image_print_contents,
183 image_set_header,
67f946cd 184 image_extract_subimage,
a93648d1
GMF
185 image_check_image_types,
186 NULL,
187 NULL
188);
This page took 0.469992 seconds and 4 git commands to generate.