rkcommon.c 10 KB

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