amdgpu_ucode.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. /*
  2. * Copyright 2014 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. */
  23. #include <linux/firmware.h>
  24. #include <linux/slab.h>
  25. #include <linux/module.h>
  26. #include <drm/drmP.h>
  27. #include "amdgpu.h"
  28. #include "amdgpu_ucode.h"
  29. static void amdgpu_ucode_print_common_hdr(const struct common_firmware_header *hdr)
  30. {
  31. DRM_DEBUG("size_bytes: %u\n", le32_to_cpu(hdr->size_bytes));
  32. DRM_DEBUG("header_size_bytes: %u\n", le32_to_cpu(hdr->header_size_bytes));
  33. DRM_DEBUG("header_version_major: %u\n", le16_to_cpu(hdr->header_version_major));
  34. DRM_DEBUG("header_version_minor: %u\n", le16_to_cpu(hdr->header_version_minor));
  35. DRM_DEBUG("ip_version_major: %u\n", le16_to_cpu(hdr->ip_version_major));
  36. DRM_DEBUG("ip_version_minor: %u\n", le16_to_cpu(hdr->ip_version_minor));
  37. DRM_DEBUG("ucode_version: 0x%08x\n", le32_to_cpu(hdr->ucode_version));
  38. DRM_DEBUG("ucode_size_bytes: %u\n", le32_to_cpu(hdr->ucode_size_bytes));
  39. DRM_DEBUG("ucode_array_offset_bytes: %u\n",
  40. le32_to_cpu(hdr->ucode_array_offset_bytes));
  41. DRM_DEBUG("crc32: 0x%08x\n", le32_to_cpu(hdr->crc32));
  42. }
  43. void amdgpu_ucode_print_mc_hdr(const struct common_firmware_header *hdr)
  44. {
  45. uint16_t version_major = le16_to_cpu(hdr->header_version_major);
  46. uint16_t version_minor = le16_to_cpu(hdr->header_version_minor);
  47. DRM_DEBUG("MC\n");
  48. amdgpu_ucode_print_common_hdr(hdr);
  49. if (version_major == 1) {
  50. const struct mc_firmware_header_v1_0 *mc_hdr =
  51. container_of(hdr, struct mc_firmware_header_v1_0, header);
  52. DRM_DEBUG("io_debug_size_bytes: %u\n",
  53. le32_to_cpu(mc_hdr->io_debug_size_bytes));
  54. DRM_DEBUG("io_debug_array_offset_bytes: %u\n",
  55. le32_to_cpu(mc_hdr->io_debug_array_offset_bytes));
  56. } else {
  57. DRM_ERROR("Unknown MC ucode version: %u.%u\n", version_major, version_minor);
  58. }
  59. }
  60. void amdgpu_ucode_print_smc_hdr(const struct common_firmware_header *hdr)
  61. {
  62. uint16_t version_major = le16_to_cpu(hdr->header_version_major);
  63. uint16_t version_minor = le16_to_cpu(hdr->header_version_minor);
  64. DRM_DEBUG("SMC\n");
  65. amdgpu_ucode_print_common_hdr(hdr);
  66. if (version_major == 1) {
  67. const struct smc_firmware_header_v1_0 *smc_hdr =
  68. container_of(hdr, struct smc_firmware_header_v1_0, header);
  69. DRM_DEBUG("ucode_start_addr: %u\n", le32_to_cpu(smc_hdr->ucode_start_addr));
  70. } else {
  71. DRM_ERROR("Unknown SMC ucode version: %u.%u\n", version_major, version_minor);
  72. }
  73. }
  74. void amdgpu_ucode_print_gfx_hdr(const struct common_firmware_header *hdr)
  75. {
  76. uint16_t version_major = le16_to_cpu(hdr->header_version_major);
  77. uint16_t version_minor = le16_to_cpu(hdr->header_version_minor);
  78. DRM_DEBUG("GFX\n");
  79. amdgpu_ucode_print_common_hdr(hdr);
  80. if (version_major == 1) {
  81. const struct gfx_firmware_header_v1_0 *gfx_hdr =
  82. container_of(hdr, struct gfx_firmware_header_v1_0, header);
  83. DRM_DEBUG("ucode_feature_version: %u\n",
  84. le32_to_cpu(gfx_hdr->ucode_feature_version));
  85. DRM_DEBUG("jt_offset: %u\n", le32_to_cpu(gfx_hdr->jt_offset));
  86. DRM_DEBUG("jt_size: %u\n", le32_to_cpu(gfx_hdr->jt_size));
  87. } else {
  88. DRM_ERROR("Unknown GFX ucode version: %u.%u\n", version_major, version_minor);
  89. }
  90. }
  91. void amdgpu_ucode_print_rlc_hdr(const struct common_firmware_header *hdr)
  92. {
  93. uint16_t version_major = le16_to_cpu(hdr->header_version_major);
  94. uint16_t version_minor = le16_to_cpu(hdr->header_version_minor);
  95. DRM_DEBUG("RLC\n");
  96. amdgpu_ucode_print_common_hdr(hdr);
  97. if (version_major == 1) {
  98. const struct rlc_firmware_header_v1_0 *rlc_hdr =
  99. container_of(hdr, struct rlc_firmware_header_v1_0, header);
  100. DRM_DEBUG("ucode_feature_version: %u\n",
  101. le32_to_cpu(rlc_hdr->ucode_feature_version));
  102. DRM_DEBUG("save_and_restore_offset: %u\n",
  103. le32_to_cpu(rlc_hdr->save_and_restore_offset));
  104. DRM_DEBUG("clear_state_descriptor_offset: %u\n",
  105. le32_to_cpu(rlc_hdr->clear_state_descriptor_offset));
  106. DRM_DEBUG("avail_scratch_ram_locations: %u\n",
  107. le32_to_cpu(rlc_hdr->avail_scratch_ram_locations));
  108. DRM_DEBUG("master_pkt_description_offset: %u\n",
  109. le32_to_cpu(rlc_hdr->master_pkt_description_offset));
  110. } else if (version_major == 2) {
  111. const struct rlc_firmware_header_v2_0 *rlc_hdr =
  112. container_of(hdr, struct rlc_firmware_header_v2_0, header);
  113. DRM_DEBUG("ucode_feature_version: %u\n",
  114. le32_to_cpu(rlc_hdr->ucode_feature_version));
  115. DRM_DEBUG("jt_offset: %u\n", le32_to_cpu(rlc_hdr->jt_offset));
  116. DRM_DEBUG("jt_size: %u\n", le32_to_cpu(rlc_hdr->jt_size));
  117. DRM_DEBUG("save_and_restore_offset: %u\n",
  118. le32_to_cpu(rlc_hdr->save_and_restore_offset));
  119. DRM_DEBUG("clear_state_descriptor_offset: %u\n",
  120. le32_to_cpu(rlc_hdr->clear_state_descriptor_offset));
  121. DRM_DEBUG("avail_scratch_ram_locations: %u\n",
  122. le32_to_cpu(rlc_hdr->avail_scratch_ram_locations));
  123. DRM_DEBUG("reg_restore_list_size: %u\n",
  124. le32_to_cpu(rlc_hdr->reg_restore_list_size));
  125. DRM_DEBUG("reg_list_format_start: %u\n",
  126. le32_to_cpu(rlc_hdr->reg_list_format_start));
  127. DRM_DEBUG("reg_list_format_separate_start: %u\n",
  128. le32_to_cpu(rlc_hdr->reg_list_format_separate_start));
  129. DRM_DEBUG("starting_offsets_start: %u\n",
  130. le32_to_cpu(rlc_hdr->starting_offsets_start));
  131. DRM_DEBUG("reg_list_format_size_bytes: %u\n",
  132. le32_to_cpu(rlc_hdr->reg_list_format_size_bytes));
  133. DRM_DEBUG("reg_list_format_array_offset_bytes: %u\n",
  134. le32_to_cpu(rlc_hdr->reg_list_format_array_offset_bytes));
  135. DRM_DEBUG("reg_list_size_bytes: %u\n",
  136. le32_to_cpu(rlc_hdr->reg_list_size_bytes));
  137. DRM_DEBUG("reg_list_array_offset_bytes: %u\n",
  138. le32_to_cpu(rlc_hdr->reg_list_array_offset_bytes));
  139. DRM_DEBUG("reg_list_format_separate_size_bytes: %u\n",
  140. le32_to_cpu(rlc_hdr->reg_list_format_separate_size_bytes));
  141. DRM_DEBUG("reg_list_format_separate_array_offset_bytes: %u\n",
  142. le32_to_cpu(rlc_hdr->reg_list_format_separate_array_offset_bytes));
  143. DRM_DEBUG("reg_list_separate_size_bytes: %u\n",
  144. le32_to_cpu(rlc_hdr->reg_list_separate_size_bytes));
  145. DRM_DEBUG("reg_list_separate_size_bytes: %u\n",
  146. le32_to_cpu(rlc_hdr->reg_list_separate_size_bytes));
  147. } else {
  148. DRM_ERROR("Unknown RLC ucode version: %u.%u\n", version_major, version_minor);
  149. }
  150. }
  151. void amdgpu_ucode_print_sdma_hdr(const struct common_firmware_header *hdr)
  152. {
  153. uint16_t version_major = le16_to_cpu(hdr->header_version_major);
  154. uint16_t version_minor = le16_to_cpu(hdr->header_version_minor);
  155. DRM_DEBUG("SDMA\n");
  156. amdgpu_ucode_print_common_hdr(hdr);
  157. if (version_major == 1) {
  158. const struct sdma_firmware_header_v1_0 *sdma_hdr =
  159. container_of(hdr, struct sdma_firmware_header_v1_0, header);
  160. DRM_DEBUG("ucode_feature_version: %u\n",
  161. le32_to_cpu(sdma_hdr->ucode_feature_version));
  162. DRM_DEBUG("ucode_change_version: %u\n",
  163. le32_to_cpu(sdma_hdr->ucode_change_version));
  164. DRM_DEBUG("jt_offset: %u\n", le32_to_cpu(sdma_hdr->jt_offset));
  165. DRM_DEBUG("jt_size: %u\n", le32_to_cpu(sdma_hdr->jt_size));
  166. if (version_minor >= 1) {
  167. const struct sdma_firmware_header_v1_1 *sdma_v1_1_hdr =
  168. container_of(sdma_hdr, struct sdma_firmware_header_v1_1, v1_0);
  169. DRM_DEBUG("digest_size: %u\n", le32_to_cpu(sdma_v1_1_hdr->digest_size));
  170. }
  171. } else {
  172. DRM_ERROR("Unknown SDMA ucode version: %u.%u\n",
  173. version_major, version_minor);
  174. }
  175. }
  176. int amdgpu_ucode_validate(const struct firmware *fw)
  177. {
  178. const struct common_firmware_header *hdr =
  179. (const struct common_firmware_header *)fw->data;
  180. if (fw->size == le32_to_cpu(hdr->size_bytes))
  181. return 0;
  182. return -EINVAL;
  183. }
  184. bool amdgpu_ucode_hdr_version(union amdgpu_firmware_header *hdr,
  185. uint16_t hdr_major, uint16_t hdr_minor)
  186. {
  187. if ((hdr->common.header_version_major == hdr_major) &&
  188. (hdr->common.header_version_minor == hdr_minor))
  189. return false;
  190. return true;
  191. }
  192. static int amdgpu_ucode_init_single_fw(struct amdgpu_firmware_info *ucode,
  193. uint64_t mc_addr, void *kptr)
  194. {
  195. const struct common_firmware_header *header = NULL;
  196. if (NULL == ucode->fw)
  197. return 0;
  198. ucode->mc_addr = mc_addr;
  199. ucode->kaddr = kptr;
  200. header = (const struct common_firmware_header *)ucode->fw->data;
  201. memcpy(ucode->kaddr, (void *)((uint8_t *)ucode->fw->data +
  202. le32_to_cpu(header->ucode_array_offset_bytes)),
  203. le32_to_cpu(header->ucode_size_bytes));
  204. return 0;
  205. }
  206. int amdgpu_ucode_init_bo(struct amdgpu_device *adev)
  207. {
  208. struct amdgpu_bo **bo = &adev->firmware.fw_buf;
  209. uint64_t fw_mc_addr;
  210. void *fw_buf_ptr = NULL;
  211. uint64_t fw_offset = 0;
  212. int i, err;
  213. struct amdgpu_firmware_info *ucode = NULL;
  214. const struct common_firmware_header *header = NULL;
  215. err = amdgpu_bo_create(adev, adev->firmware.fw_size, PAGE_SIZE, true,
  216. AMDGPU_GEM_DOMAIN_GTT, 0, NULL, NULL, bo);
  217. if (err) {
  218. dev_err(adev->dev, "(%d) Firmware buffer allocate failed\n", err);
  219. err = -ENOMEM;
  220. goto failed;
  221. }
  222. err = amdgpu_bo_reserve(*bo, false);
  223. if (err) {
  224. amdgpu_bo_unref(bo);
  225. dev_err(adev->dev, "(%d) Firmware buffer reserve failed\n", err);
  226. goto failed;
  227. }
  228. err = amdgpu_bo_pin(*bo, AMDGPU_GEM_DOMAIN_GTT, &fw_mc_addr);
  229. if (err) {
  230. amdgpu_bo_unreserve(*bo);
  231. amdgpu_bo_unref(bo);
  232. dev_err(adev->dev, "(%d) Firmware buffer pin failed\n", err);
  233. goto failed;
  234. }
  235. err = amdgpu_bo_kmap(*bo, &fw_buf_ptr);
  236. if (err) {
  237. dev_err(adev->dev, "(%d) Firmware buffer kmap failed\n", err);
  238. amdgpu_bo_unpin(*bo);
  239. amdgpu_bo_unreserve(*bo);
  240. amdgpu_bo_unref(bo);
  241. goto failed;
  242. }
  243. amdgpu_bo_unreserve(*bo);
  244. fw_offset = 0;
  245. for (i = 0; i < AMDGPU_UCODE_ID_MAXIMUM; i++) {
  246. ucode = &adev->firmware.ucode[i];
  247. if (ucode->fw) {
  248. header = (const struct common_firmware_header *)ucode->fw->data;
  249. amdgpu_ucode_init_single_fw(ucode, fw_mc_addr + fw_offset,
  250. fw_buf_ptr + fw_offset);
  251. fw_offset += ALIGN(le32_to_cpu(header->ucode_size_bytes), PAGE_SIZE);
  252. }
  253. }
  254. failed:
  255. if (err)
  256. adev->firmware.smu_load = false;
  257. return err;
  258. }
  259. int amdgpu_ucode_fini_bo(struct amdgpu_device *adev)
  260. {
  261. int i;
  262. struct amdgpu_firmware_info *ucode = NULL;
  263. for (i = 0; i < AMDGPU_UCODE_ID_MAXIMUM; i++) {
  264. ucode = &adev->firmware.ucode[i];
  265. if (ucode->fw) {
  266. ucode->mc_addr = 0;
  267. ucode->kaddr = NULL;
  268. }
  269. }
  270. amdgpu_bo_unref(&adev->firmware.fw_buf);
  271. adev->firmware.fw_buf = NULL;
  272. return 0;
  273. }