rkcommon.c 10 KB

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