rkcommon.c 9.7 KB

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