blob: 29f2676c19ddcfb12d2b9bb9adf9b33e4a453ccf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassa131c1f2015-08-30 16:55:24 -06002/*
3 * (C) Copyright 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
5 *
Philipp Tomsich2fb371f2017-05-30 23:32:08 +02006 * (C) 2017 Theobroma Systems Design und Consulting GmbH
7 *
Simon Glassa131c1f2015-08-30 16:55:24 -06008 * Helper functions for Rockchip images
9 */
10
11#include "imagetool.h"
12#include <image.h>
Yi Liu8935e522021-05-18 10:13:40 +080013#include <u-boot/sha256.h>
Simon Glassa131c1f2015-08-30 16:55:24 -060014#include <rc4.h>
15#include "mkimage.h"
16#include "rkcommon.h"
17
18enum {
Kever Yangd7a44612021-12-24 17:58:32 +080019 RK_MAGIC = 0x0ff0aa55,
Yi Liu8935e522021-05-18 10:13:40 +080020 RK_MAGIC_V2 = 0x534E4B52,
Simon Glassa131c1f2015-08-30 16:55:24 -060021};
22
Kever Yang0faa7da2021-12-24 18:00:36 +080023enum {
24 RK_HEADER_V1 = 1,
Yi Liu8935e522021-05-18 10:13:40 +080025 RK_HEADER_V2 = 2,
26};
27
28enum hash_type {
29 HASH_NONE = 0,
30 HASH_SHA256 = 1,
31 HASH_SHA512 = 2,
32};
33
34/**
35 * struct image_entry
36 *
37 * @size_and_off: [31:16]image size;[15:0]image offset
38 * @address: default as 0xFFFFFFFF
39 * @flag: no use
40 * @counter: no use
41 * @hash: hash of image
42 *
43 */
44struct image_entry {
45 uint32_t size_and_off;
46 uint32_t address;
47 uint32_t flag;
48 uint32_t counter;
49 uint8_t reserved[8];
50 uint8_t hash[64];
51};
52
53/**
54 * struct header0_info_v2 - v2 header block for rockchip BootRom
55 *
56 * This is stored at SD card block 64 (where each block is 512 bytes)
57 *
58 * @magic: Magic (must be RK_MAGIC_V2)
59 * @size_and_nimage: [31:16]number of images;[15:0]
60 * offset to hash field of header(unit as 4Byte)
61 * @boot_flag: [3:0]hash type(0:none,1:sha256,2:sha512)
62 * @signature: hash or signature for header info
63 *
64 */
65struct header0_info_v2 {
66 uint32_t magic;
67 uint8_t reserved[4];
68 uint32_t size_and_nimage;
69 uint32_t boot_flag;
70 uint8_t reserved1[104];
71 struct image_entry images[4];
72 uint8_t reserved2[1064];
73 uint8_t hash[512];
Kever Yang0faa7da2021-12-24 18:00:36 +080074};
75
Simon Glassa131c1f2015-08-30 16:55:24 -060076/**
77 * struct header0_info - header block for boot ROM
78 *
79 * This is stored at SD card block 64 (where each block is 512 bytes, or at
80 * the start of SPI flash. It is encoded with RC4.
81 *
Kever Yangd7a44612021-12-24 17:58:32 +080082 * @magic: Magic (must be RK_MAGIC)
Simon Glassa131c1f2015-08-30 16:55:24 -060083 * @disable_rc4: 0 to use rc4 for boot image, 1 to use plain binary
Jeffy Chen36413392015-11-17 14:20:30 +080084 * @init_offset: Offset in blocks of the SPL code from this header
Simon Glassa131c1f2015-08-30 16:55:24 -060085 * block. E.g. 4 means 2KB after the start of this header.
86 * Other fields are not used by U-Boot
87 */
88struct header0_info {
Kever Yangd7a44612021-12-24 17:58:32 +080089 uint32_t magic;
Simon Glassa131c1f2015-08-30 16:55:24 -060090 uint8_t reserved[4];
91 uint32_t disable_rc4;
Jeffy Chen36413392015-11-17 14:20:30 +080092 uint16_t init_offset;
93 uint8_t reserved1[492];
94 uint16_t init_size;
95 uint16_t init_boot_size;
Simon Glassa131c1f2015-08-30 16:55:24 -060096 uint8_t reserved2[2];
97};
98
Jeffy Chen7bf274b2015-11-27 12:07:17 +080099/**
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100100 * struct header1_info
101 */
102struct header1_info {
103 uint32_t magic;
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100104};
105
106/**
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800107 * struct spl_info - spl info for each chip
108 *
109 * @imagename: Image name(passed by "mkimage -n")
110 * @spl_hdr: Boot ROM requires a 4-bytes spl header
111 * @spl_size: Spl size(include extra 4-bytes spl header)
Heiko Stübnercfbcdad2017-02-18 19:46:27 +0100112 * @spl_rc4: RC4 encode the SPL binary (same key as header)
Kever Yang0faa7da2021-12-24 18:00:36 +0800113 * @header_ver: header block version
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800114 */
115struct spl_info {
116 const char *imagename;
117 const char *spl_hdr;
118 const uint32_t spl_size;
Heiko Stübnercfbcdad2017-02-18 19:46:27 +0100119 const bool spl_rc4;
Kever Yang0faa7da2021-12-24 18:00:36 +0800120 const uint32_t header_ver;
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800121};
122
123static struct spl_info spl_infos[] = {
Kever Yang0faa7da2021-12-24 18:00:36 +0800124 { "px30", "RK33", 0x2800, false, RK_HEADER_V1 },
125 { "rk3036", "RK30", 0x1000, false, RK_HEADER_V1 },
126 { "rk3128", "RK31", 0x1800, false, RK_HEADER_V1 },
127 { "rk3188", "RK31", 0x8000 - 0x800, true, RK_HEADER_V1 },
128 { "rk322x", "RK32", 0x8000 - 0x1000, false, RK_HEADER_V1 },
129 { "rk3288", "RK32", 0x8000, false, RK_HEADER_V1 },
130 { "rk3308", "RK33", 0x40000 - 0x1000, false, RK_HEADER_V1 },
131 { "rk3328", "RK32", 0x8000 - 0x1000, false, RK_HEADER_V1 },
132 { "rk3368", "RK33", 0x8000 - 0x1000, false, RK_HEADER_V1 },
133 { "rk3399", "RK33", 0x30000 - 0x2000, false, RK_HEADER_V1 },
134 { "rv1108", "RK11", 0x1800, false, RK_HEADER_V1 },
Kever Yang376b08d2021-12-24 18:21:50 +0800135 { "rk3568", "RK35", 0x14000 - 0x1000, false, RK_HEADER_V2 },
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800136};
137
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800138/**
139 * struct spl_params - spl params parsed in check_params()
140 *
141 * @init_file: Init data file path
142 * @init_size: Aligned size of init data in bytes
143 * @boot_file: Boot data file path
144 * @boot_size: Aligned size of boot data in bytes
145 */
146
147struct spl_params {
148 char *init_file;
149 uint32_t init_size;
150 char *boot_file;
151 uint32_t boot_size;
152};
153
154static struct spl_params spl_params = { 0 };
155
Simon Glassa131c1f2015-08-30 16:55:24 -0600156static unsigned char rc4_key[16] = {
157 124, 78, 3, 4, 85, 5, 9, 7,
158 45, 44, 123, 56, 23, 13, 23, 17
159};
160
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800161static struct spl_info *rkcommon_get_spl_info(char *imagename)
162{
163 int i;
164
Philipp Tomsich24aae932017-04-17 17:48:05 +0200165 if (!imagename)
166 return NULL;
167
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800168 for (i = 0; i < ARRAY_SIZE(spl_infos); i++)
169 if (!strncmp(imagename, spl_infos[i].imagename, 6))
170 return spl_infos + i;
171
172 return NULL;
173}
174
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800175static int rkcommon_get_aligned_size(struct image_tool_params *params,
176 const char *fname)
177{
178 int size;
179
180 size = imagetool_get_filesize(params, fname);
181 if (size < 0)
182 return -1;
183
184 /*
185 * Pad to a 2KB alignment, as required for init/boot size by the ROM
186 * (see https://lists.denx.de/pipermail/u-boot/2017-May/293268.html)
187 */
188 return ROUND(size, RK_SIZE_ALIGN);
189}
190
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800191int rkcommon_check_params(struct image_tool_params *params)
192{
Heinrich Schuchardt69cd0c42020-05-09 21:31:03 +0200193 int i, size;
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800194
Philipp Tomsich24aae932017-04-17 17:48:05 +0200195 /*
196 * If this is a operation (list or extract), the don't require
197 * imagename to be set.
198 */
199 if (params->lflag || params->iflag)
200 return EXIT_SUCCESS;
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800201
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800202 if (!rkcommon_get_spl_info(params->imagename))
203 goto err_spl_info;
204
205 spl_params.init_file = params->datafile;
206
207 spl_params.boot_file = strchr(spl_params.init_file, ':');
208 if (spl_params.boot_file) {
209 *spl_params.boot_file = '\0';
210 spl_params.boot_file += 1;
211 }
212
Heinrich Schuchardt69cd0c42020-05-09 21:31:03 +0200213 size = rkcommon_get_aligned_size(params, spl_params.init_file);
214 if (size < 0)
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800215 return EXIT_FAILURE;
Heinrich Schuchardt69cd0c42020-05-09 21:31:03 +0200216 spl_params.init_size = size;
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800217
218 /* Boot file is optional, and only for back-to-bootrom functionality. */
219 if (spl_params.boot_file) {
Heinrich Schuchardt69cd0c42020-05-09 21:31:03 +0200220 size = rkcommon_get_aligned_size(params, spl_params.boot_file);
221 if (size < 0)
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800222 return EXIT_FAILURE;
Heinrich Schuchardt69cd0c42020-05-09 21:31:03 +0200223 spl_params.boot_size = size;
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800224 }
225
226 if (spl_params.init_size > rkcommon_get_spl_size(params)) {
227 fprintf(stderr,
228 "Error: SPL image is too large (size %#x than %#x)\n",
229 spl_params.init_size, rkcommon_get_spl_size(params));
230 return EXIT_FAILURE;
231 }
232
233 return EXIT_SUCCESS;
234
235err_spl_info:
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800236 fprintf(stderr, "ERROR: imagename (%s) is not supported!\n",
Philipp Tomsich24aae932017-04-17 17:48:05 +0200237 params->imagename ? params->imagename : "NULL");
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800238
239 fprintf(stderr, "Available imagename:");
240 for (i = 0; i < ARRAY_SIZE(spl_infos); i++)
241 fprintf(stderr, "\t%s", spl_infos[i].imagename);
242 fprintf(stderr, "\n");
243
Philipp Tomsich24aae932017-04-17 17:48:05 +0200244 return EXIT_FAILURE;
Jeffy Chen7bf274b2015-11-27 12:07:17 +0800245}
246
247const char *rkcommon_get_spl_hdr(struct image_tool_params *params)
248{
249 struct spl_info *info = rkcommon_get_spl_info(params->imagename);
250
251 /*
252 * info would not be NULL, because of we checked params before.
253 */
254 return info->spl_hdr;
255}
256
257int rkcommon_get_spl_size(struct image_tool_params *params)
258{
259 struct spl_info *info = rkcommon_get_spl_info(params->imagename);
260
261 /*
262 * info would not be NULL, because of we checked params before.
263 */
264 return info->spl_size;
265}
266
Heiko Stübnercfbcdad2017-02-18 19:46:27 +0100267bool rkcommon_need_rc4_spl(struct image_tool_params *params)
268{
269 struct spl_info *info = rkcommon_get_spl_info(params->imagename);
270
271 /*
272 * info would not be NULL, because of we checked params before.
273 */
274 return info->spl_rc4;
275}
276
Yi Liu8935e522021-05-18 10:13:40 +0800277bool rkcommon_is_header_v2(struct image_tool_params *params)
278{
279 struct spl_info *info = rkcommon_get_spl_info(params->imagename);
280
281 return (info->header_ver == RK_HEADER_V2);
282}
283
284static void do_sha256_hash(uint8_t *buf, uint32_t size, uint8_t *out)
285{
286 sha256_context ctx;
287
288 sha256_starts(&ctx);
289 sha256_update(&ctx, buf, size);
290 sha256_finish(&ctx, out);
291}
292
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800293static void rkcommon_set_header0(void *buf, struct image_tool_params *params)
Simon Glassa131c1f2015-08-30 16:55:24 -0600294{
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100295 struct header0_info *hdr = buf;
Samuel Holland29ef48e2020-10-24 11:43:17 -0500296 uint32_t init_boot_size;
Simon Glassa131c1f2015-08-30 16:55:24 -0600297
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100298 memset(buf, '\0', RK_INIT_OFFSET * RK_BLK_SIZE);
Kever Yangd7a44612021-12-24 17:58:32 +0800299 hdr->magic = cpu_to_le32(RK_MAGIC);
Samuel Holland29ef48e2020-10-24 11:43:17 -0500300 hdr->disable_rc4 = cpu_to_le32(!rkcommon_need_rc4_spl(params));
301 hdr->init_offset = cpu_to_le16(RK_INIT_OFFSET);
302 hdr->init_size = cpu_to_le16(spl_params.init_size / RK_BLK_SIZE);
Simon Glassa131c1f2015-08-30 16:55:24 -0600303
Philipp Tomsicha1a2dfb2017-04-17 17:48:04 +0200304 /*
Philipp Tomsicha1c29d42017-05-30 23:32:10 +0200305 * init_boot_size needs to be set, as it is read by the BootROM
306 * to determine the size of the next-stage bootloader (e.g. U-Boot
307 * proper), when used with the back-to-bootrom functionality.
308 *
309 * see https://lists.denx.de/pipermail/u-boot/2017-May/293267.html
310 * for a more detailed explanation by Andy Yan
Philipp Tomsicha1a2dfb2017-04-17 17:48:04 +0200311 */
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800312 if (spl_params.boot_file)
Samuel Holland29ef48e2020-10-24 11:43:17 -0500313 init_boot_size = spl_params.init_size + spl_params.boot_size;
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800314 else
Samuel Holland29ef48e2020-10-24 11:43:17 -0500315 init_boot_size = spl_params.init_size + RK_MAX_BOOT_SIZE;
316 hdr->init_boot_size = cpu_to_le16(init_boot_size / RK_BLK_SIZE);
Simon Glassa131c1f2015-08-30 16:55:24 -0600317
318 rc4_encode(buf, RK_BLK_SIZE, rc4_key);
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100319}
320
Yi Liu8935e522021-05-18 10:13:40 +0800321static void rkcommon_set_header0_v2(void *buf, struct image_tool_params *params)
322{
323 struct header0_info_v2 *hdr = buf;
324 uint32_t sector_offset, image_sector_count;
325 uint32_t image_size_array[2];
326 uint8_t *image_ptr = NULL;
327 int i;
328
329 printf("Image Type: Rockchip %s boot image\n",
330 rkcommon_get_spl_hdr(params));
331 memset(buf, '\0', RK_INIT_OFFSET * RK_BLK_SIZE);
332 hdr->magic = cpu_to_le32(RK_MAGIC_V2);
333 hdr->size_and_nimage = cpu_to_le32((2 << 16) + 384);
334 hdr->boot_flag = cpu_to_le32(HASH_SHA256);
335 sector_offset = 4;
336 image_size_array[0] = spl_params.init_size;
337 image_size_array[1] = spl_params.boot_size;
338
339 for (i = 0; i < 2; i++) {
340 image_sector_count = image_size_array[i] / RK_BLK_SIZE;
341 hdr->images[i].size_and_off = cpu_to_le32((image_sector_count
342 << 16) + sector_offset);
343 hdr->images[i].address = 0xFFFFFFFF;
344 hdr->images[i].counter = cpu_to_le32(i + 1);
345 image_ptr = buf + sector_offset * RK_BLK_SIZE;
346 do_sha256_hash(image_ptr, image_size_array[i],
347 hdr->images[i].hash);
348 sector_offset = sector_offset + image_sector_count;
349 }
350
351 do_sha256_hash(buf, (void *)hdr->hash - buf, hdr->hash);
352}
353
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800354void rkcommon_set_header(void *buf, struct stat *sbuf, int ifd,
355 struct image_tool_params *params)
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100356{
357 struct header1_info *hdr = buf + RK_SPL_HDR_START;
358
Yi Liu8935e522021-05-18 10:13:40 +0800359 if (rkcommon_is_header_v2(params)) {
360 rkcommon_set_header0_v2(buf, params);
361 } else {
362 rkcommon_set_header0(buf, params);
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100363
Yi Liu8935e522021-05-18 10:13:40 +0800364 /* Set up the SPL name (i.e. copy spl_hdr over) */
365 if (memcmp(&hdr->magic, "RSAK", 4))
366 memcpy(&hdr->magic, rkcommon_get_spl_hdr(params), RK_SPL_HDR_SIZE);
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100367
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800368 if (rkcommon_need_rc4_spl(params))
Yi Liu8935e522021-05-18 10:13:40 +0800369 rkcommon_rc4_encode_spl(buf, RK_SPL_HDR_START,
370 spl_params.init_size);
371
372 if (spl_params.boot_file) {
373 if (rkcommon_need_rc4_spl(params))
374 rkcommon_rc4_encode_spl(buf + RK_SPL_HDR_START,
375 spl_params.init_size,
376 spl_params.boot_size);
377 }
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800378 }
Simon Glassa131c1f2015-08-30 16:55:24 -0600379}
Heiko Stübnercfbcdad2017-02-18 19:46:27 +0100380
Yi Liu8935e522021-05-18 10:13:40 +0800381static inline unsigned int rkcommon_offset_to_spi(unsigned int offset)
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200382{
383 /*
384 * While SD/MMC images use a flat addressing, SPI images are padded
385 * to use the first 2K of every 4K sector only.
386 */
387 return ((offset & ~0x7ff) << 1) + (offset & 0x7ff);
388}
389
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200390static int rkcommon_parse_header(const void *buf, struct header0_info *header0,
391 struct spl_info **spl_info)
392{
Yi Liu8935e522021-05-18 10:13:40 +0800393 unsigned int hdr1_offset;
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200394 struct header1_info *hdr1_sdmmc, *hdr1_spi;
395 int i;
396
397 if (spl_info)
398 *spl_info = NULL;
399
400 /*
401 * The first header (hdr0) is always RC4 encoded, so try to decrypt
402 * with the well-known key.
403 */
404 memcpy((void *)header0, buf, sizeof(struct header0_info));
405 rc4_encode((void *)header0, sizeof(struct header0_info), rc4_key);
406
Kever Yangd7a44612021-12-24 17:58:32 +0800407 if (le32_to_cpu(header0->magic) != RK_MAGIC)
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200408 return -EPROTO;
409
410 /* We don't support RC4 encoded image payloads here, yet... */
Samuel Holland29ef48e2020-10-24 11:43:17 -0500411 if (le32_to_cpu(header0->disable_rc4) == 0)
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200412 return -ENOSYS;
413
Samuel Holland29ef48e2020-10-24 11:43:17 -0500414 hdr1_offset = le16_to_cpu(header0->init_offset) * RK_BLK_SIZE;
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200415 hdr1_sdmmc = (struct header1_info *)(buf + hdr1_offset);
416 hdr1_spi = (struct header1_info *)(buf +
417 rkcommon_offset_to_spi(hdr1_offset));
418
419 for (i = 0; i < ARRAY_SIZE(spl_infos); i++) {
Miquel Raynale5a40552020-03-18 17:22:55 +0100420 if (!memcmp(&hdr1_sdmmc->magic, spl_infos[i].spl_hdr,
421 RK_SPL_HDR_SIZE)) {
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200422 if (spl_info)
423 *spl_info = &spl_infos[i];
424 return IH_TYPE_RKSD;
Miquel Raynale5a40552020-03-18 17:22:55 +0100425 } else if (!memcmp(&hdr1_spi->magic, spl_infos[i].spl_hdr,
426 RK_SPL_HDR_SIZE)) {
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200427 if (spl_info)
428 *spl_info = &spl_infos[i];
429 return IH_TYPE_RKSPI;
430 }
431 }
432
433 return -1;
434}
435
Yi Liu8935e522021-05-18 10:13:40 +0800436static int rkcommon_parse_header_v2(const void *buf, struct header0_info_v2 *header)
437{
438 memcpy((void *)header, buf, sizeof(struct header0_info_v2));
439
440 if (le32_to_cpu(header->magic) != RK_MAGIC_V2)
441 return -EPROTO;
442
443 return 0;
444}
445
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200446int rkcommon_verify_header(unsigned char *buf, int size,
447 struct image_tool_params *params)
448{
449 struct header0_info header0;
450 struct spl_info *img_spl_info, *spl_info;
451 int ret;
452
453 ret = rkcommon_parse_header(buf, &header0, &img_spl_info);
454
455 /* If this is the (unimplemented) RC4 case, then rewrite the result */
456 if (ret == -ENOSYS)
457 return 0;
458
459 if (ret < 0)
460 return ret;
461
462 /*
463 * If no 'imagename' is specified via the commandline (e.g. if this is
464 * 'dumpimage -l' w/o any further constraints), we accept any spl_info.
465 */
466 if (params->imagename == NULL)
467 return 0;
468
469 /* Match the 'imagename' against the 'spl_hdr' found */
470 spl_info = rkcommon_get_spl_info(params->imagename);
471 if (spl_info && img_spl_info)
472 return strcmp(spl_info->spl_hdr, img_spl_info->spl_hdr);
473
474 return -ENOENT;
475}
476
477void rkcommon_print_header(const void *buf)
478{
479 struct header0_info header0;
Yi Liu8935e522021-05-18 10:13:40 +0800480 struct header0_info_v2 header0_v2;
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200481 struct spl_info *spl_info;
482 uint8_t image_type;
Samuel Holland29ef48e2020-10-24 11:43:17 -0500483 int ret, boot_size, init_size;
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200484
Yi Liu8935e522021-05-18 10:13:40 +0800485 if ((*(uint32_t *)buf) == RK_MAGIC_V2) {
486 ret = rkcommon_parse_header_v2(buf, &header0_v2);
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200487
Yi Liu8935e522021-05-18 10:13:40 +0800488 if (ret < 0) {
489 fprintf(stderr, "Error: image verification failed\n");
490 return;
491 }
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200492
Yi Liu8935e522021-05-18 10:13:40 +0800493 init_size = header0_v2.images[0].size_and_off >> 16;
494 init_size = init_size * RK_BLK_SIZE;
495 boot_size = header0_v2.images[1].size_and_off >> 16;
496 boot_size = boot_size * RK_BLK_SIZE;
497 } else {
498 ret = rkcommon_parse_header(buf, &header0, &spl_info);
499
500 /* If this is the (unimplemented) RC4 case, then fail silently */
501 if (ret == -ENOSYS)
502 return;
503
504 if (ret < 0) {
505 fprintf(stderr, "Error: image verification failed\n");
506 return;
507 }
508
509 image_type = ret;
510 init_size = header0.init_size * RK_BLK_SIZE;
511 boot_size = header0.init_boot_size * RK_BLK_SIZE - init_size;
512
513 printf("Image Type: Rockchip %s (%s) boot image\n",
514 spl_info->spl_hdr,
515 (image_type == IH_TYPE_RKSD) ? "SD/MMC" : "SPI");
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200516 }
517
Samuel Holland29ef48e2020-10-24 11:43:17 -0500518 printf("Init Data Size: %d bytes\n", init_size);
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800519
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800520 if (boot_size != RK_MAX_BOOT_SIZE)
521 printf("Boot Data Size: %d bytes\n", boot_size);
Philipp Tomsich2fb371f2017-05-30 23:32:08 +0200522}
523
Heiko Stübnercfbcdad2017-02-18 19:46:27 +0100524void rkcommon_rc4_encode_spl(void *buf, unsigned int offset, unsigned int size)
525{
526 unsigned int remaining = size;
527
528 while (remaining > 0) {
529 int step = (remaining > RK_BLK_SIZE) ? RK_BLK_SIZE : remaining;
530
531 rc4_encode(buf + offset, step, rc4_key);
532 offset += RK_BLK_SIZE;
533 remaining -= step;
534 }
535}
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100536
Philipp Tomsich366aad42017-04-17 17:48:01 +0200537int rkcommon_vrec_header(struct image_tool_params *params,
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800538 struct image_type_params *tparams)
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100539{
540 /*
541 * The SPL image looks as follows:
542 *
543 * 0x0 header0 (see rkcommon.c)
544 * 0x800 spl_name ('RK30', ..., 'RK33')
Philipp Tomsichea3729e2017-04-17 17:48:02 +0200545 * (start of the payload for AArch64 payloads: we expect the
546 * first 4 bytes to be available for overwriting with our
547 * spl_name)
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100548 * 0x804 first instruction to be executed
Philipp Tomsichea3729e2017-04-17 17:48:02 +0200549 * (start of the image/payload for 32bit payloads)
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100550 *
Philipp Tomsichea3729e2017-04-17 17:48:02 +0200551 * For AArch64 (ARMv8) payloads, natural alignment (8-bytes) is
552 * required for its sections (so the image we receive needs to
553 * have the first 4 bytes reserved for the spl_name). Reserving
554 * these 4 bytes is done using the BOOT0_HOOK infrastructure.
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100555 *
Philipp Tomsich95d363c2017-10-10 16:21:18 +0200556 * The header is always at 0x800 (as we now use a payload
557 * prepadded using the boot0 hook for all targets): the first
558 * 4 bytes of these images can safely be overwritten using the
559 * boot magic.
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100560 */
Philipp Tomsich95d363c2017-10-10 16:21:18 +0200561 tparams->header_size = RK_SPL_HDR_START;
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100562
563 /* Allocate, clear and install the header */
564 tparams->hdr = malloc(tparams->header_size);
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800565 if (!tparams->hdr) {
566 fprintf(stderr, "%s: Can't alloc header: %s\n",
567 params->cmdname, strerror(errno));
568 exit(EXIT_FAILURE);
569 }
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100570 memset(tparams->hdr, 0, tparams->header_size);
Philipp Tomsich366aad42017-04-17 17:48:01 +0200571
572 /*
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800573 * We need to store the original file-size (i.e. before padding), as
574 * imagetool does not set this during its adjustment of file_size.
Philipp Tomsich366aad42017-04-17 17:48:01 +0200575 */
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800576 params->orig_file_size = tparams->header_size +
577 spl_params.init_size + spl_params.boot_size;
Philipp Tomsich366aad42017-04-17 17:48:01 +0200578
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800579 params->file_size = ROUND(params->orig_file_size, RK_SIZE_ALIGN);
Philipp Tomsich366aad42017-04-17 17:48:01 +0200580
Jeffy Cheneea6cd82019-12-27 11:24:41 +0800581 /* Ignoring pad len, since we are using our own copy_image() */
582 return 0;
583}
584
585static int pad_file(struct image_tool_params *params, int ifd, int pad)
586{
587 uint8_t zeros[4096];
588
589 memset(zeros, 0, sizeof(zeros));
590
591 while (pad > 0) {
592 int todo = sizeof(zeros);
593
594 if (todo > pad)
595 todo = pad;
596 if (write(ifd, (char *)&zeros, todo) != todo) {
597 fprintf(stderr, "%s: Write error on %s: %s\n",
598 params->cmdname, params->imagefile,
599 strerror(errno));
600 return -1;
601 }
602 pad -= todo;
603 }
604
605 return 0;
606}
607
608static int copy_file(struct image_tool_params *params, int ifd,
609 const char *file, int padded_size)
610{
611 int dfd;
612 struct stat sbuf;
613 unsigned char *ptr;
614 int size;
615
616 if (params->vflag)
617 fprintf(stderr, "Adding Image %s\n", file);
618
619 dfd = open(file, O_RDONLY | O_BINARY);
620 if (dfd < 0) {
621 fprintf(stderr, "%s: Can't open %s: %s\n",
622 params->cmdname, file, strerror(errno));
623 return -1;
624 }
625
626 if (fstat(dfd, &sbuf) < 0) {
627 fprintf(stderr, "%s: Can't stat %s: %s\n",
628 params->cmdname, file, strerror(errno));
629 goto err_close;
630 }
631
632 if (params->vflag)
633 fprintf(stderr, "Size %u(pad to %u)\n",
634 (int)sbuf.st_size, padded_size);
635
636 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0);
637 if (ptr == MAP_FAILED) {
638 fprintf(stderr, "%s: Can't read %s: %s\n",
639 params->cmdname, file, strerror(errno));
640 goto err_munmap;
641 }
642
643 size = sbuf.st_size;
644 if (write(ifd, ptr, size) != size) {
645 fprintf(stderr, "%s: Write error on %s: %s\n",
646 params->cmdname, params->imagefile, strerror(errno));
647 goto err_munmap;
648 }
649
650 munmap((void *)ptr, sbuf.st_size);
651 close(dfd);
652 return pad_file(params, ifd, padded_size - size);
653
654err_munmap:
655 munmap((void *)ptr, sbuf.st_size);
656err_close:
657 close(dfd);
658 return -1;
659}
660
661int rockchip_copy_image(int ifd, struct image_tool_params *params)
662{
663 int ret;
664
665 ret = copy_file(params, ifd, spl_params.init_file,
666 spl_params.init_size);
667 if (ret)
668 return ret;
669
670 if (spl_params.boot_file) {
671 ret = copy_file(params, ifd, spl_params.boot_file,
672 spl_params.boot_size);
673 if (ret)
674 return ret;
675 }
676
677 return pad_file(params, ifd,
678 params->file_size - params->orig_file_size);
Philipp Tomsich111bcc42017-03-15 12:08:43 +0100679}