rkcommon.c 10 KB

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