]> git.sur5r.net Git - u-boot/blob - tools/rkcommon.c
rockchip: mkimage: remove unused code-paths (spl_boot0 is now implied)
[u-boot] / tools / rkcommon.c
1 /*
2  * (C) Copyright 2015 Google,  Inc
3  * Written by Simon Glass <sjg@chromium.org>
4  *
5  * (C) 2017 Theobroma Systems Design und Consulting GmbH
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  *
9  * Helper functions for Rockchip images
10  */
11
12 #include "imagetool.h"
13 #include <image.h>
14 #include <rc4.h>
15 #include "mkimage.h"
16 #include "rkcommon.h"
17
18 #define DIV_ROUND_UP(n, d)      (((n) + (d) - 1) / (d))
19
20 enum {
21         RK_SIGNATURE            = 0x0ff0aa55,
22 };
23
24 /**
25  * struct header0_info - header block for boot ROM
26  *
27  * This is stored at SD card block 64 (where each block is 512 bytes, or at
28  * the start of SPI flash. It is encoded with RC4.
29  *
30  * @signature:          Signature (must be RKSD_SIGNATURE)
31  * @disable_rc4:        0 to use rc4 for boot image,  1 to use plain binary
32  * @init_offset:        Offset in blocks of the SPL code from this header
33  *                      block. E.g. 4 means 2KB after the start of this header.
34  * Other fields are not used by U-Boot
35  */
36 struct header0_info {
37         uint32_t signature;
38         uint8_t reserved[4];
39         uint32_t disable_rc4;
40         uint16_t init_offset;
41         uint8_t reserved1[492];
42         uint16_t init_size;
43         uint16_t init_boot_size;
44         uint8_t reserved2[2];
45 };
46
47 /**
48  * struct header1_info
49  */
50 struct header1_info {
51         uint32_t magic;
52 };
53
54 /**
55  * struct spl_info - spl info for each chip
56  *
57  * @imagename:          Image name(passed by "mkimage -n")
58  * @spl_hdr:            Boot ROM requires a 4-bytes spl header
59  * @spl_size:           Spl size(include extra 4-bytes spl header)
60  * @spl_rc4:            RC4 encode the SPL binary (same key as header)
61  */
62
63 struct spl_info {
64         const char *imagename;
65         const char *spl_hdr;
66         const uint32_t spl_size;
67         const bool spl_rc4;
68 };
69
70 static struct spl_info spl_infos[] = {
71         { "rk3036", "RK30", 0x1000, false },
72         { "rk3128", "RK31", 0x1800, false },
73         { "rk3188", "RK31", 0x8000 - 0x800, true },
74         { "rk322x", "RK32", 0x8000 - 0x1000, false },
75         { "rk3288", "RK32", 0x8000, false },
76         { "rk3328", "RK32", 0x8000 - 0x1000, false },
77         { "rk3368", "RK33", 0x8000 - 0x1000, false },
78         { "rk3399", "RK33", 0x30000 - 0x2000, false },
79         { "rv1108", "RK11", 0x1800, false },
80 };
81
82 static unsigned char rc4_key[16] = {
83         124, 78, 3, 4, 85, 5, 9, 7,
84         45, 44, 123, 56, 23, 13, 23, 17
85 };
86
87 static struct spl_info *rkcommon_get_spl_info(char *imagename)
88 {
89         int i;
90
91         if (!imagename)
92                 return NULL;
93
94         for (i = 0; i < ARRAY_SIZE(spl_infos); i++)
95                 if (!strncmp(imagename, spl_infos[i].imagename, 6))
96                         return spl_infos + i;
97
98         return NULL;
99 }
100
101 int rkcommon_check_params(struct image_tool_params *params)
102 {
103         int i;
104
105         if (rkcommon_get_spl_info(params->imagename) != NULL)
106                 return EXIT_SUCCESS;
107
108         /*
109          * If this is a operation (list or extract), the don't require
110          * imagename to be set.
111          */
112         if (params->lflag || params->iflag)
113                 return EXIT_SUCCESS;
114
115         fprintf(stderr, "ERROR: imagename (%s) is not supported!\n",
116                 params->imagename ? params->imagename : "NULL");
117
118         fprintf(stderr, "Available imagename:");
119         for (i = 0; i < ARRAY_SIZE(spl_infos); i++)
120                 fprintf(stderr, "\t%s", spl_infos[i].imagename);
121         fprintf(stderr, "\n");
122
123         return EXIT_FAILURE;
124 }
125
126 const char *rkcommon_get_spl_hdr(struct image_tool_params *params)
127 {
128         struct spl_info *info = rkcommon_get_spl_info(params->imagename);
129
130         /*
131          * info would not be NULL, because of we checked params before.
132          */
133         return info->spl_hdr;
134 }
135
136
137 int rkcommon_get_spl_size(struct image_tool_params *params)
138 {
139         struct spl_info *info = rkcommon_get_spl_info(params->imagename);
140
141         /*
142          * info would not be NULL, because of we checked params before.
143          */
144         return info->spl_size;
145 }
146
147 bool rkcommon_need_rc4_spl(struct image_tool_params *params)
148 {
149         struct spl_info *info = rkcommon_get_spl_info(params->imagename);
150
151         /*
152          * info would not be NULL, because of we checked params before.
153          */
154         return info->spl_rc4;
155 }
156
157 static void rkcommon_set_header0(void *buf, uint file_size,
158                                  struct image_tool_params *params)
159 {
160         struct header0_info *hdr = buf;
161
162         memset(buf, '\0', RK_INIT_OFFSET * RK_BLK_SIZE);
163         hdr->signature = RK_SIGNATURE;
164         hdr->disable_rc4 = !rkcommon_need_rc4_spl(params);
165         hdr->init_offset = RK_INIT_OFFSET;
166
167         hdr->init_size = DIV_ROUND_UP(file_size, RK_BLK_SIZE);
168         /*
169          * The init_size has to be a multiple of 4 blocks (i.e. of 2K)
170          * or the BootROM will not boot the image.
171          *
172          * Note: To verify that this is not a legacy constraint, we
173          *       rechecked this against the RK3399 BootROM.
174          */
175         hdr->init_size = ROUND(hdr->init_size, 4);
176         /*
177          * init_boot_size needs to be set, as it is read by the BootROM
178          * to determine the size of the next-stage bootloader (e.g. U-Boot
179          * proper), when used with the back-to-bootrom functionality.
180          *
181          * see https://lists.denx.de/pipermail/u-boot/2017-May/293267.html
182          * for a more detailed explanation by Andy Yan
183          */
184         hdr->init_boot_size = hdr->init_size + RK_MAX_BOOT_SIZE / RK_BLK_SIZE;
185
186         rc4_encode(buf, RK_BLK_SIZE, rc4_key);
187 }
188
189 int rkcommon_set_header(void *buf, uint file_size,
190                         struct image_tool_params *params)
191 {
192         struct header1_info *hdr = buf + RK_SPL_HDR_START;
193
194         if (file_size > rkcommon_get_spl_size(params))
195                 return -ENOSPC;
196
197         rkcommon_set_header0(buf, file_size, params);
198
199         /* Set up the SPL name (i.e. copy spl_hdr over) */
200         memcpy(&hdr->magic, rkcommon_get_spl_hdr(params), RK_SPL_HDR_SIZE);
201
202         if (rkcommon_need_rc4_spl(params))
203                 rkcommon_rc4_encode_spl(buf, RK_SPL_HDR_START,
204                                         params->file_size - RK_SPL_HDR_START);
205
206         return 0;
207 }
208
209 static inline unsigned rkcommon_offset_to_spi(unsigned offset)
210 {
211         /*
212          * While SD/MMC images use a flat addressing, SPI images are padded
213          * to use the first 2K of every 4K sector only.
214          */
215         return ((offset & ~0x7ff) << 1) + (offset & 0x7ff);
216 }
217
218 static int rkcommon_parse_header(const void *buf, struct header0_info *header0,
219                                  struct spl_info **spl_info)
220 {
221         unsigned hdr1_offset;
222         struct header1_info *hdr1_sdmmc, *hdr1_spi;
223         int i;
224
225         if (spl_info)
226                 *spl_info = NULL;
227
228         /*
229          * The first header (hdr0) is always RC4 encoded, so try to decrypt
230          * with the well-known key.
231          */
232         memcpy((void *)header0, buf, sizeof(struct header0_info));
233         rc4_encode((void *)header0, sizeof(struct header0_info), rc4_key);
234
235         if (header0->signature != RK_SIGNATURE)
236                 return -EPROTO;
237
238         /* We don't support RC4 encoded image payloads here, yet... */
239         if (header0->disable_rc4 == 0)
240                 return -ENOSYS;
241
242         hdr1_offset = header0->init_offset * RK_BLK_SIZE;
243         hdr1_sdmmc = (struct header1_info *)(buf + hdr1_offset);
244         hdr1_spi = (struct header1_info *)(buf +
245                                            rkcommon_offset_to_spi(hdr1_offset));
246
247         for (i = 0; i < ARRAY_SIZE(spl_infos); i++) {
248                 if (!memcmp(&hdr1_sdmmc->magic, spl_infos[i].spl_hdr, 4)) {
249                         if (spl_info)
250                                 *spl_info = &spl_infos[i];
251                         return IH_TYPE_RKSD;
252                 } else if (!memcmp(&hdr1_spi->magic, spl_infos[i].spl_hdr, 4)) {
253                         if (spl_info)
254                                 *spl_info = &spl_infos[i];
255                         return IH_TYPE_RKSPI;
256                 }
257         }
258
259         return -1;
260 }
261
262 int rkcommon_verify_header(unsigned char *buf, int size,
263                            struct image_tool_params *params)
264 {
265         struct header0_info header0;
266         struct spl_info *img_spl_info, *spl_info;
267         int ret;
268
269         ret = rkcommon_parse_header(buf, &header0, &img_spl_info);
270
271         /* If this is the (unimplemented) RC4 case, then rewrite the result */
272         if (ret == -ENOSYS)
273                 return 0;
274
275         if (ret < 0)
276                 return ret;
277
278         /*
279          * If no 'imagename' is specified via the commandline (e.g. if this is
280          * 'dumpimage -l' w/o any further constraints), we accept any spl_info.
281          */
282         if (params->imagename == NULL)
283                 return 0;
284
285         /* Match the 'imagename' against the 'spl_hdr' found */
286         spl_info = rkcommon_get_spl_info(params->imagename);
287         if (spl_info && img_spl_info)
288                 return strcmp(spl_info->spl_hdr, img_spl_info->spl_hdr);
289
290         return -ENOENT;
291 }
292
293 void rkcommon_print_header(const void *buf)
294 {
295         struct header0_info header0;
296         struct spl_info *spl_info;
297         uint8_t image_type;
298         int ret;
299
300         ret = rkcommon_parse_header(buf, &header0, &spl_info);
301
302         /* If this is the (unimplemented) RC4 case, then fail silently */
303         if (ret == -ENOSYS)
304                 return;
305
306         if (ret < 0) {
307                 fprintf(stderr, "Error: image verification failed\n");
308                 return;
309         }
310
311         image_type = ret;
312
313         printf("Image Type:   Rockchip %s (%s) boot image\n",
314                spl_info->spl_hdr,
315                (image_type == IH_TYPE_RKSD) ? "SD/MMC" : "SPI");
316         printf("Data Size:    %d bytes\n", header0.init_size * RK_BLK_SIZE);
317 }
318
319 void rkcommon_rc4_encode_spl(void *buf, unsigned int offset, unsigned int size)
320 {
321         unsigned int remaining = size;
322
323         while (remaining > 0) {
324                 int step = (remaining > RK_BLK_SIZE) ? RK_BLK_SIZE : remaining;
325
326                 rc4_encode(buf + offset, step, rc4_key);
327                 offset += RK_BLK_SIZE;
328                 remaining -= step;
329         }
330 }
331
332 int rkcommon_vrec_header(struct image_tool_params *params,
333                          struct image_type_params *tparams,
334                          unsigned int alignment)
335 {
336         unsigned int  unpadded_size;
337         unsigned int  padded_size;
338
339         /*
340          * The SPL image looks as follows:
341          *
342          * 0x0    header0 (see rkcommon.c)
343          * 0x800  spl_name ('RK30', ..., 'RK33')
344          *        (start of the payload for AArch64 payloads: we expect the
345          *        first 4 bytes to be available for overwriting with our
346          *        spl_name)
347          * 0x804  first instruction to be executed
348          *        (start of the image/payload for 32bit payloads)
349          *
350          * For AArch64 (ARMv8) payloads, natural alignment (8-bytes) is
351          * required for its sections (so the image we receive needs to
352          * have the first 4 bytes reserved for the spl_name).  Reserving
353          * these 4 bytes is done using the BOOT0_HOOK infrastructure.
354          *
355          * The header is always at 0x800 (as we now use a payload
356          * prepadded using the boot0 hook for all targets): the first
357          * 4 bytes of these images can safely be overwritten using the
358          * boot magic.
359          */
360         tparams->header_size = RK_SPL_HDR_START;
361
362         /* Allocate, clear and install the header */
363         tparams->hdr = malloc(tparams->header_size);
364         if (!tparams->hdr)
365                 return -ENOMEM;
366         memset(tparams->hdr, 0, tparams->header_size);
367
368         /*
369          * If someone passed in 0 for the alignment, we'd better handle
370          * it correctly...
371          */
372         if (!alignment)
373                 alignment = 1;
374
375         unpadded_size = tparams->header_size + params->file_size;
376         padded_size = ROUND(unpadded_size, alignment);
377
378         return padded_size - unpadded_size;
379 }