Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * Copyright 2016 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 * Author: Huang Rui
23 *
24 */
25
26#include <linux/firmware.h>
27#include <drm/drm_drv.h>
28
29#include "amdgpu.h"
30#include "amdgpu_psp.h"
31#include "amdgpu_ucode.h"
32#include "amdgpu_xgmi.h"
33#include "soc15_common.h"
34#include "psp_v3_1.h"
35#include "psp_v10_0.h"
36#include "psp_v11_0.h"
37#include "psp_v11_0_8.h"
38#include "psp_v12_0.h"
39#include "psp_v13_0.h"
40#include "psp_v13_0_4.h"
41
42#include "amdgpu_ras.h"
43#include "amdgpu_securedisplay.h"
44#include "amdgpu_atomfirmware.h"
45
46#define AMD_VBIOS_FILE_MAX_SIZE_B (1024*1024*3)
47
48static int psp_sysfs_init(struct amdgpu_device *adev);
49static void psp_sysfs_fini(struct amdgpu_device *adev);
50
51static int psp_load_smu_fw(struct psp_context *psp);
52static int psp_rap_terminate(struct psp_context *psp);
53static int psp_securedisplay_terminate(struct psp_context *psp);
54
55/*
56 * Due to DF Cstate management centralized to PMFW, the firmware
57 * loading sequence will be updated as below:
58 * - Load KDB
59 * - Load SYS_DRV
60 * - Load tOS
61 * - Load PMFW
62 * - Setup TMR
63 * - Load other non-psp fw
64 * - Load ASD
65 * - Load XGMI/RAS/HDCP/DTM TA if any
66 *
67 * This new sequence is required for
68 * - Arcturus and onwards
69 */
70static void psp_check_pmfw_centralized_cstate_management(struct psp_context *psp)
71{
72 struct amdgpu_device *adev = psp->adev;
73
74 if (amdgpu_sriov_vf(adev)) {
75 psp->pmfw_centralized_cstate_management = false;
76 return;
77 }
78
79 switch (adev->ip_versions[MP0_HWIP][0]) {
80 case IP_VERSION(11, 0, 0):
81 case IP_VERSION(11, 0, 4):
82 case IP_VERSION(11, 0, 5):
83 case IP_VERSION(11, 0, 7):
84 case IP_VERSION(11, 0, 9):
85 case IP_VERSION(11, 0, 11):
86 case IP_VERSION(11, 0, 12):
87 case IP_VERSION(11, 0, 13):
88 case IP_VERSION(13, 0, 0):
89 case IP_VERSION(13, 0, 2):
90 case IP_VERSION(13, 0, 7):
91 psp->pmfw_centralized_cstate_management = true;
92 break;
93 default:
94 psp->pmfw_centralized_cstate_management = false;
95 break;
96 }
97}
98
99static int psp_early_init(void *handle)
100{
101 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
102 struct psp_context *psp = &adev->psp;
103
104 switch (adev->ip_versions[MP0_HWIP][0]) {
105 case IP_VERSION(9, 0, 0):
106 psp_v3_1_set_psp_funcs(psp);
107 psp->autoload_supported = false;
108 break;
109 case IP_VERSION(10, 0, 0):
110 case IP_VERSION(10, 0, 1):
111 psp_v10_0_set_psp_funcs(psp);
112 psp->autoload_supported = false;
113 break;
114 case IP_VERSION(11, 0, 2):
115 case IP_VERSION(11, 0, 4):
116 psp_v11_0_set_psp_funcs(psp);
117 psp->autoload_supported = false;
118 break;
119 case IP_VERSION(11, 0, 0):
120 case IP_VERSION(11, 0, 5):
121 case IP_VERSION(11, 0, 9):
122 case IP_VERSION(11, 0, 7):
123 case IP_VERSION(11, 0, 11):
124 case IP_VERSION(11, 5, 0):
125 case IP_VERSION(11, 0, 12):
126 case IP_VERSION(11, 0, 13):
127 psp_v11_0_set_psp_funcs(psp);
128 psp->autoload_supported = true;
129 break;
130 case IP_VERSION(11, 0, 3):
131 case IP_VERSION(12, 0, 1):
132 psp_v12_0_set_psp_funcs(psp);
133 break;
134 case IP_VERSION(13, 0, 2):
135 psp_v13_0_set_psp_funcs(psp);
136 break;
137 case IP_VERSION(13, 0, 1):
138 case IP_VERSION(13, 0, 3):
139 case IP_VERSION(13, 0, 5):
140 case IP_VERSION(13, 0, 8):
141 psp_v13_0_set_psp_funcs(psp);
142 psp->autoload_supported = true;
143 break;
144 case IP_VERSION(11, 0, 8):
145 if (adev->apu_flags & AMD_APU_IS_CYAN_SKILLFISH2) {
146 psp_v11_0_8_set_psp_funcs(psp);
147 psp->autoload_supported = false;
148 }
149 break;
150 case IP_VERSION(13, 0, 0):
151 case IP_VERSION(13, 0, 7):
152 psp_v13_0_set_psp_funcs(psp);
153 psp->autoload_supported = true;
154 break;
155 case IP_VERSION(13, 0, 4):
156 psp_v13_0_4_set_psp_funcs(psp);
157 psp->autoload_supported = true;
158 break;
159 default:
160 return -EINVAL;
161 }
162
163 psp->adev = adev;
164
165 psp_check_pmfw_centralized_cstate_management(psp);
166
167 return 0;
168}
169
170void psp_ta_free_shared_buf(struct ta_mem_context *mem_ctx)
171{
172 amdgpu_bo_free_kernel(&mem_ctx->shared_bo, &mem_ctx->shared_mc_addr,
173 &mem_ctx->shared_buf);
174}
175
176static void psp_free_shared_bufs(struct psp_context *psp)
177{
178 void *tmr_buf;
179 void **pptr;
180
181 /* free TMR memory buffer */
182 pptr = amdgpu_sriov_vf(psp->adev) ? &tmr_buf : NULL;
183 amdgpu_bo_free_kernel(&psp->tmr_bo, &psp->tmr_mc_addr, pptr);
184
185 /* free xgmi shared memory */
186 psp_ta_free_shared_buf(&psp->xgmi_context.context.mem_context);
187
188 /* free ras shared memory */
189 psp_ta_free_shared_buf(&psp->ras_context.context.mem_context);
190
191 /* free hdcp shared memory */
192 psp_ta_free_shared_buf(&psp->hdcp_context.context.mem_context);
193
194 /* free dtm shared memory */
195 psp_ta_free_shared_buf(&psp->dtm_context.context.mem_context);
196
197 /* free rap shared memory */
198 psp_ta_free_shared_buf(&psp->rap_context.context.mem_context);
199
200 /* free securedisplay shared memory */
201 psp_ta_free_shared_buf(&psp->securedisplay_context.context.mem_context);
202
203
204}
205
206static void psp_memory_training_fini(struct psp_context *psp)
207{
208 struct psp_memory_training_context *ctx = &psp->mem_train_ctx;
209
210 ctx->init = PSP_MEM_TRAIN_NOT_SUPPORT;
211 kfree(ctx->sys_cache);
212 ctx->sys_cache = NULL;
213}
214
215static int psp_memory_training_init(struct psp_context *psp)
216{
217 int ret;
218 struct psp_memory_training_context *ctx = &psp->mem_train_ctx;
219
220 if (ctx->init != PSP_MEM_TRAIN_RESERVE_SUCCESS) {
221 DRM_DEBUG("memory training is not supported!\n");
222 return 0;
223 }
224
225 ctx->sys_cache = kzalloc(ctx->train_data_size, GFP_KERNEL);
226 if (ctx->sys_cache == NULL) {
227 DRM_ERROR("alloc mem_train_ctx.sys_cache failed!\n");
228 ret = -ENOMEM;
229 goto Err_out;
230 }
231
232 DRM_DEBUG("train_data_size:%llx,p2c_train_data_offset:%llx,c2p_train_data_offset:%llx.\n",
233 ctx->train_data_size,
234 ctx->p2c_train_data_offset,
235 ctx->c2p_train_data_offset);
236 ctx->init = PSP_MEM_TRAIN_INIT_SUCCESS;
237 return 0;
238
239Err_out:
240 psp_memory_training_fini(psp);
241 return ret;
242}
243
244/*
245 * Helper funciton to query psp runtime database entry
246 *
247 * @adev: amdgpu_device pointer
248 * @entry_type: the type of psp runtime database entry
249 * @db_entry: runtime database entry pointer
250 *
251 * Return false if runtime database doesn't exit or entry is invalid
252 * or true if the specific database entry is found, and copy to @db_entry
253 */
254static bool psp_get_runtime_db_entry(struct amdgpu_device *adev,
255 enum psp_runtime_entry_type entry_type,
256 void *db_entry)
257{
258 uint64_t db_header_pos, db_dir_pos;
259 struct psp_runtime_data_header db_header = {0};
260 struct psp_runtime_data_directory db_dir = {0};
261 bool ret = false;
262 int i;
263
264 db_header_pos = adev->gmc.mc_vram_size - PSP_RUNTIME_DB_OFFSET;
265 db_dir_pos = db_header_pos + sizeof(struct psp_runtime_data_header);
266
267 /* read runtime db header from vram */
268 amdgpu_device_vram_access(adev, db_header_pos, (uint32_t *)&db_header,
269 sizeof(struct psp_runtime_data_header), false);
270
271 if (db_header.cookie != PSP_RUNTIME_DB_COOKIE_ID) {
272 /* runtime db doesn't exist, exit */
273 dev_warn(adev->dev, "PSP runtime database doesn't exist\n");
274 return false;
275 }
276
277 /* read runtime database entry from vram */
278 amdgpu_device_vram_access(adev, db_dir_pos, (uint32_t *)&db_dir,
279 sizeof(struct psp_runtime_data_directory), false);
280
281 if (db_dir.entry_count >= PSP_RUNTIME_DB_DIAG_ENTRY_MAX_COUNT) {
282 /* invalid db entry count, exit */
283 dev_warn(adev->dev, "Invalid PSP runtime database entry count\n");
284 return false;
285 }
286
287 /* look up for requested entry type */
288 for (i = 0; i < db_dir.entry_count && !ret; i++) {
289 if (db_dir.entry_list[i].entry_type == entry_type) {
290 switch (entry_type) {
291 case PSP_RUNTIME_ENTRY_TYPE_BOOT_CONFIG:
292 if (db_dir.entry_list[i].size < sizeof(struct psp_runtime_boot_cfg_entry)) {
293 /* invalid db entry size */
294 dev_warn(adev->dev, "Invalid PSP runtime database boot cfg entry size\n");
295 return false;
296 }
297 /* read runtime database entry */
298 amdgpu_device_vram_access(adev, db_header_pos + db_dir.entry_list[i].offset,
299 (uint32_t *)db_entry, sizeof(struct psp_runtime_boot_cfg_entry), false);
300 ret = true;
301 break;
302 case PSP_RUNTIME_ENTRY_TYPE_PPTABLE_ERR_STATUS:
303 if (db_dir.entry_list[i].size < sizeof(struct psp_runtime_scpm_entry)) {
304 /* invalid db entry size */
305 dev_warn(adev->dev, "Invalid PSP runtime database scpm entry size\n");
306 return false;
307 }
308 /* read runtime database entry */
309 amdgpu_device_vram_access(adev, db_header_pos + db_dir.entry_list[i].offset,
310 (uint32_t *)db_entry, sizeof(struct psp_runtime_scpm_entry), false);
311 ret = true;
312 break;
313 default:
314 ret = false;
315 break;
316 }
317 }
318 }
319
320 return ret;
321}
322
323static int psp_init_sriov_microcode(struct psp_context *psp)
324{
325 struct amdgpu_device *adev = psp->adev;
326 int ret = 0;
327
328 switch (adev->ip_versions[MP0_HWIP][0]) {
329 case IP_VERSION(9, 0, 0):
330 ret = psp_init_cap_microcode(psp, "vega10");
331 break;
332 case IP_VERSION(11, 0, 9):
333 ret = psp_init_cap_microcode(psp, "navi12");
334 break;
335 case IP_VERSION(11, 0, 7):
336 ret = psp_init_cap_microcode(psp, "sienna_cichlid");
337 break;
338 case IP_VERSION(13, 0, 2):
339 ret = psp_init_cap_microcode(psp, "aldebaran");
340 ret &= psp_init_ta_microcode(psp, "aldebaran");
341 break;
342 default:
343 BUG();
344 break;
345 }
346
347 return ret;
348}
349
350static int psp_sw_init(void *handle)
351{
352 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
353 struct psp_context *psp = &adev->psp;
354 int ret;
355 struct psp_runtime_boot_cfg_entry boot_cfg_entry;
356 struct psp_memory_training_context *mem_training_ctx = &psp->mem_train_ctx;
357 struct psp_runtime_scpm_entry scpm_entry;
358
359 psp->cmd = kzalloc(sizeof(struct psp_gfx_cmd_resp), GFP_KERNEL);
360 if (!psp->cmd) {
361 DRM_ERROR("Failed to allocate memory to command buffer!\n");
362 ret = -ENOMEM;
363 }
364
365 if (amdgpu_sriov_vf(adev))
366 ret = psp_init_sriov_microcode(psp);
367 else
368 ret = psp_init_microcode(psp);
369 if (ret) {
370 DRM_ERROR("Failed to load psp firmware!\n");
371 return ret;
372 }
373
374 adev->psp.xgmi_context.supports_extended_data =
375 !adev->gmc.xgmi.connected_to_cpu &&
376 adev->ip_versions[MP0_HWIP][0] == IP_VERSION(13, 0, 2);
377
378 memset(&scpm_entry, 0, sizeof(scpm_entry));
379 if ((psp_get_runtime_db_entry(adev,
380 PSP_RUNTIME_ENTRY_TYPE_PPTABLE_ERR_STATUS,
381 &scpm_entry)) &&
382 (SCPM_DISABLE != scpm_entry.scpm_status)) {
383 adev->scpm_enabled = true;
384 adev->scpm_status = scpm_entry.scpm_status;
385 } else {
386 adev->scpm_enabled = false;
387 adev->scpm_status = SCPM_DISABLE;
388 }
389
390 /* TODO: stop gpu driver services and print alarm if scpm is enabled with error status */
391
392 memset(&boot_cfg_entry, 0, sizeof(boot_cfg_entry));
393 if (psp_get_runtime_db_entry(adev,
394 PSP_RUNTIME_ENTRY_TYPE_BOOT_CONFIG,
395 &boot_cfg_entry)) {
396 psp->boot_cfg_bitmask = boot_cfg_entry.boot_cfg_bitmask;
397 if ((psp->boot_cfg_bitmask) &
398 BOOT_CFG_FEATURE_TWO_STAGE_DRAM_TRAINING) {
399 /* If psp runtime database exists, then
400 * only enable two stage memory training
401 * when TWO_STAGE_DRAM_TRAINING bit is set
402 * in runtime database */
403 mem_training_ctx->enable_mem_training = true;
404 }
405
406 } else {
407 /* If psp runtime database doesn't exist or
408 * is invalid, force enable two stage memory
409 * training */
410 mem_training_ctx->enable_mem_training = true;
411 }
412
413 if (mem_training_ctx->enable_mem_training) {
414 ret = psp_memory_training_init(psp);
415 if (ret) {
416 DRM_ERROR("Failed to initialize memory training!\n");
417 return ret;
418 }
419
420 ret = psp_mem_training(psp, PSP_MEM_TRAIN_COLD_BOOT);
421 if (ret) {
422 DRM_ERROR("Failed to process memory training!\n");
423 return ret;
424 }
425 }
426
427 if (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 0) ||
428 adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 7)) {
429 ret= psp_sysfs_init(adev);
430 if (ret) {
431 return ret;
432 }
433 }
434
435 ret = amdgpu_bo_create_kernel(adev, PSP_1_MEG, PSP_1_MEG,
436 amdgpu_sriov_vf(adev) ?
437 AMDGPU_GEM_DOMAIN_VRAM : AMDGPU_GEM_DOMAIN_GTT,
438 &psp->fw_pri_bo,
439 &psp->fw_pri_mc_addr,
440 &psp->fw_pri_buf);
441 if (ret)
442 return ret;
443
444 ret = amdgpu_bo_create_kernel(adev, PSP_FENCE_BUFFER_SIZE, PAGE_SIZE,
445 AMDGPU_GEM_DOMAIN_VRAM,
446 &psp->fence_buf_bo,
447 &psp->fence_buf_mc_addr,
448 &psp->fence_buf);
449 if (ret)
450 goto failed1;
451
452 ret = amdgpu_bo_create_kernel(adev, PSP_CMD_BUFFER_SIZE, PAGE_SIZE,
453 AMDGPU_GEM_DOMAIN_VRAM,
454 &psp->cmd_buf_bo, &psp->cmd_buf_mc_addr,
455 (void **)&psp->cmd_buf_mem);
456 if (ret)
457 goto failed2;
458
459 return 0;
460
461failed2:
462 amdgpu_bo_free_kernel(&psp->fw_pri_bo,
463 &psp->fw_pri_mc_addr, &psp->fw_pri_buf);
464failed1:
465 amdgpu_bo_free_kernel(&psp->fence_buf_bo,
466 &psp->fence_buf_mc_addr, &psp->fence_buf);
467 return ret;
468}
469
470static int psp_sw_fini(void *handle)
471{
472 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
473 struct psp_context *psp = &adev->psp;
474 struct psp_gfx_cmd_resp *cmd = psp->cmd;
475
476 psp_memory_training_fini(psp);
477 if (psp->sos_fw) {
478 release_firmware(psp->sos_fw);
479 psp->sos_fw = NULL;
480 }
481 if (psp->asd_fw) {
482 release_firmware(psp->asd_fw);
483 psp->asd_fw = NULL;
484 }
485 if (psp->ta_fw) {
486 release_firmware(psp->ta_fw);
487 psp->ta_fw = NULL;
488 }
489 if (adev->psp.cap_fw) {
490 release_firmware(psp->cap_fw);
491 psp->cap_fw = NULL;
492 }
493
494 if (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 0) ||
495 adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 7))
496 psp_sysfs_fini(adev);
497
498 kfree(cmd);
499 cmd = NULL;
500
501 amdgpu_bo_free_kernel(&psp->fw_pri_bo,
502 &psp->fw_pri_mc_addr, &psp->fw_pri_buf);
503 amdgpu_bo_free_kernel(&psp->fence_buf_bo,
504 &psp->fence_buf_mc_addr, &psp->fence_buf);
505 amdgpu_bo_free_kernel(&psp->cmd_buf_bo, &psp->cmd_buf_mc_addr,
506 (void **)&psp->cmd_buf_mem);
507
508 return 0;
509}
510
511int psp_wait_for(struct psp_context *psp, uint32_t reg_index,
512 uint32_t reg_val, uint32_t mask, bool check_changed)
513{
514 uint32_t val;
515 int i;
516 struct amdgpu_device *adev = psp->adev;
517
518 if (psp->adev->no_hw_access)
519 return 0;
520
521 for (i = 0; i < adev->usec_timeout; i++) {
522 val = RREG32(reg_index);
523 if (check_changed) {
524 if (val != reg_val)
525 return 0;
526 } else {
527 if ((val & mask) == reg_val)
528 return 0;
529 }
530 udelay(1);
531 }
532
533 return -ETIME;
534}
535
536static const char *psp_gfx_cmd_name(enum psp_gfx_cmd_id cmd_id)
537{
538 switch (cmd_id) {
539 case GFX_CMD_ID_LOAD_TA:
540 return "LOAD_TA";
541 case GFX_CMD_ID_UNLOAD_TA:
542 return "UNLOAD_TA";
543 case GFX_CMD_ID_INVOKE_CMD:
544 return "INVOKE_CMD";
545 case GFX_CMD_ID_LOAD_ASD:
546 return "LOAD_ASD";
547 case GFX_CMD_ID_SETUP_TMR:
548 return "SETUP_TMR";
549 case GFX_CMD_ID_LOAD_IP_FW:
550 return "LOAD_IP_FW";
551 case GFX_CMD_ID_DESTROY_TMR:
552 return "DESTROY_TMR";
553 case GFX_CMD_ID_SAVE_RESTORE:
554 return "SAVE_RESTORE_IP_FW";
555 case GFX_CMD_ID_SETUP_VMR:
556 return "SETUP_VMR";
557 case GFX_CMD_ID_DESTROY_VMR:
558 return "DESTROY_VMR";
559 case GFX_CMD_ID_PROG_REG:
560 return "PROG_REG";
561 case GFX_CMD_ID_GET_FW_ATTESTATION:
562 return "GET_FW_ATTESTATION";
563 case GFX_CMD_ID_LOAD_TOC:
564 return "ID_LOAD_TOC";
565 case GFX_CMD_ID_AUTOLOAD_RLC:
566 return "AUTOLOAD_RLC";
567 case GFX_CMD_ID_BOOT_CFG:
568 return "BOOT_CFG";
569 default:
570 return "UNKNOWN CMD";
571 }
572}
573
574static int
575psp_cmd_submit_buf(struct psp_context *psp,
576 struct amdgpu_firmware_info *ucode,
577 struct psp_gfx_cmd_resp *cmd, uint64_t fence_mc_addr)
578{
579 int ret;
580 int index, idx;
581 int timeout = 20000;
582 bool ras_intr = false;
583 bool skip_unsupport = false;
584
585 if (psp->adev->no_hw_access)
586 return 0;
587
588 if (!drm_dev_enter(adev_to_drm(psp->adev), &idx))
589 return 0;
590
591 memset(psp->cmd_buf_mem, 0, PSP_CMD_BUFFER_SIZE);
592
593 memcpy(psp->cmd_buf_mem, cmd, sizeof(struct psp_gfx_cmd_resp));
594
595 index = atomic_inc_return(&psp->fence_value);
596 ret = psp_ring_cmd_submit(psp, psp->cmd_buf_mc_addr, fence_mc_addr, index);
597 if (ret) {
598 atomic_dec(&psp->fence_value);
599 goto exit;
600 }
601
602 amdgpu_device_invalidate_hdp(psp->adev, NULL);
603 while (*((unsigned int *)psp->fence_buf) != index) {
604 if (--timeout == 0)
605 break;
606 /*
607 * Shouldn't wait for timeout when err_event_athub occurs,
608 * because gpu reset thread triggered and lock resource should
609 * be released for psp resume sequence.
610 */
611 ras_intr = amdgpu_ras_intr_triggered();
612 if (ras_intr)
613 break;
614 usleep_range(10, 100);
615 amdgpu_device_invalidate_hdp(psp->adev, NULL);
616 }
617
618 /* We allow TEE_ERROR_NOT_SUPPORTED for VMR command and PSP_ERR_UNKNOWN_COMMAND in SRIOV */
619 skip_unsupport = (psp->cmd_buf_mem->resp.status == TEE_ERROR_NOT_SUPPORTED ||
620 psp->cmd_buf_mem->resp.status == PSP_ERR_UNKNOWN_COMMAND) && amdgpu_sriov_vf(psp->adev);
621
622 memcpy((void*)&cmd->resp, (void*)&psp->cmd_buf_mem->resp, sizeof(struct psp_gfx_resp));
623
624 /* In some cases, psp response status is not 0 even there is no
625 * problem while the command is submitted. Some version of PSP FW
626 * doesn't write 0 to that field.
627 * So here we would like to only print a warning instead of an error
628 * during psp initialization to avoid breaking hw_init and it doesn't
629 * return -EINVAL.
630 */
631 if (!skip_unsupport && (psp->cmd_buf_mem->resp.status || !timeout) && !ras_intr) {
632 if (ucode)
633 DRM_WARN("failed to load ucode %s(0x%X) ",
634 amdgpu_ucode_name(ucode->ucode_id), ucode->ucode_id);
635 DRM_WARN("psp gfx command %s(0x%X) failed and response status is (0x%X)\n",
636 psp_gfx_cmd_name(psp->cmd_buf_mem->cmd_id), psp->cmd_buf_mem->cmd_id,
637 psp->cmd_buf_mem->resp.status);
638 /* If any firmware (including CAP) load fails under SRIOV, it should
639 * return failure to stop the VF from initializing.
640 * Also return failure in case of timeout
641 */
642 if ((ucode && amdgpu_sriov_vf(psp->adev)) || !timeout) {
643 ret = -EINVAL;
644 goto exit;
645 }
646 }
647
648 if (ucode) {
649 ucode->tmr_mc_addr_lo = psp->cmd_buf_mem->resp.fw_addr_lo;
650 ucode->tmr_mc_addr_hi = psp->cmd_buf_mem->resp.fw_addr_hi;
651 }
652
653exit:
654 drm_dev_exit(idx);
655 return ret;
656}
657
658static struct psp_gfx_cmd_resp *acquire_psp_cmd_buf(struct psp_context *psp)
659{
660 struct psp_gfx_cmd_resp *cmd = psp->cmd;
661
662 mutex_lock(&psp->mutex);
663
664 memset(cmd, 0, sizeof(struct psp_gfx_cmd_resp));
665
666 return cmd;
667}
668
669static void release_psp_cmd_buf(struct psp_context *psp)
670{
671 mutex_unlock(&psp->mutex);
672}
673
674static void psp_prep_tmr_cmd_buf(struct psp_context *psp,
675 struct psp_gfx_cmd_resp *cmd,
676 uint64_t tmr_mc, struct amdgpu_bo *tmr_bo)
677{
678 struct amdgpu_device *adev = psp->adev;
679 uint32_t size = amdgpu_bo_size(tmr_bo);
680 uint64_t tmr_pa = amdgpu_gmc_vram_pa(adev, tmr_bo);
681
682 if (amdgpu_sriov_vf(psp->adev))
683 cmd->cmd_id = GFX_CMD_ID_SETUP_VMR;
684 else
685 cmd->cmd_id = GFX_CMD_ID_SETUP_TMR;
686 cmd->cmd.cmd_setup_tmr.buf_phy_addr_lo = lower_32_bits(tmr_mc);
687 cmd->cmd.cmd_setup_tmr.buf_phy_addr_hi = upper_32_bits(tmr_mc);
688 cmd->cmd.cmd_setup_tmr.buf_size = size;
689 cmd->cmd.cmd_setup_tmr.bitfield.virt_phy_addr = 1;
690 cmd->cmd.cmd_setup_tmr.system_phy_addr_lo = lower_32_bits(tmr_pa);
691 cmd->cmd.cmd_setup_tmr.system_phy_addr_hi = upper_32_bits(tmr_pa);
692}
693
694static void psp_prep_load_toc_cmd_buf(struct psp_gfx_cmd_resp *cmd,
695 uint64_t pri_buf_mc, uint32_t size)
696{
697 cmd->cmd_id = GFX_CMD_ID_LOAD_TOC;
698 cmd->cmd.cmd_load_toc.toc_phy_addr_lo = lower_32_bits(pri_buf_mc);
699 cmd->cmd.cmd_load_toc.toc_phy_addr_hi = upper_32_bits(pri_buf_mc);
700 cmd->cmd.cmd_load_toc.toc_size = size;
701}
702
703/* Issue LOAD TOC cmd to PSP to part toc and calculate tmr size needed */
704static int psp_load_toc(struct psp_context *psp,
705 uint32_t *tmr_size)
706{
707 int ret;
708 struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
709
710 /* Copy toc to psp firmware private buffer */
711 psp_copy_fw(psp, psp->toc.start_addr, psp->toc.size_bytes);
712
713 psp_prep_load_toc_cmd_buf(cmd, psp->fw_pri_mc_addr, psp->toc.size_bytes);
714
715 ret = psp_cmd_submit_buf(psp, NULL, cmd,
716 psp->fence_buf_mc_addr);
717 if (!ret)
718 *tmr_size = psp->cmd_buf_mem->resp.tmr_size;
719
720 release_psp_cmd_buf(psp);
721
722 return ret;
723}
724
725/* Set up Trusted Memory Region */
726static int psp_tmr_init(struct psp_context *psp)
727{
728 int ret;
729 int tmr_size;
730 void *tmr_buf;
731 void **pptr;
732
733 /*
734 * According to HW engineer, they prefer the TMR address be "naturally
735 * aligned" , e.g. the start address be an integer divide of TMR size.
736 *
737 * Note: this memory need be reserved till the driver
738 * uninitializes.
739 */
740 tmr_size = PSP_TMR_SIZE(psp->adev);
741
742 /* For ASICs support RLC autoload, psp will parse the toc
743 * and calculate the total size of TMR needed */
744 if (!amdgpu_sriov_vf(psp->adev) &&
745 psp->toc.start_addr &&
746 psp->toc.size_bytes &&
747 psp->fw_pri_buf) {
748 ret = psp_load_toc(psp, &tmr_size);
749 if (ret) {
750 DRM_ERROR("Failed to load toc\n");
751 return ret;
752 }
753 }
754
755 pptr = amdgpu_sriov_vf(psp->adev) ? &tmr_buf : NULL;
756 ret = amdgpu_bo_create_kernel(psp->adev, tmr_size, PSP_TMR_SIZE(psp->adev),
757 AMDGPU_GEM_DOMAIN_VRAM,
758 &psp->tmr_bo, &psp->tmr_mc_addr, pptr);
759
760 return ret;
761}
762
763static bool psp_skip_tmr(struct psp_context *psp)
764{
765 switch (psp->adev->ip_versions[MP0_HWIP][0]) {
766 case IP_VERSION(11, 0, 9):
767 case IP_VERSION(11, 0, 7):
768 case IP_VERSION(13, 0, 2):
769 return true;
770 default:
771 return false;
772 }
773}
774
775static int psp_tmr_load(struct psp_context *psp)
776{
777 int ret;
778 struct psp_gfx_cmd_resp *cmd;
779
780 /* For Navi12 and CHIP_SIENNA_CICHLID SRIOV, do not set up TMR.
781 * Already set up by host driver.
782 */
783 if (amdgpu_sriov_vf(psp->adev) && psp_skip_tmr(psp))
784 return 0;
785
786 cmd = acquire_psp_cmd_buf(psp);
787
788 psp_prep_tmr_cmd_buf(psp, cmd, psp->tmr_mc_addr, psp->tmr_bo);
789 DRM_INFO("reserve 0x%lx from 0x%llx for PSP TMR\n",
790 amdgpu_bo_size(psp->tmr_bo), psp->tmr_mc_addr);
791
792 ret = psp_cmd_submit_buf(psp, NULL, cmd,
793 psp->fence_buf_mc_addr);
794
795 release_psp_cmd_buf(psp);
796
797 return ret;
798}
799
800static void psp_prep_tmr_unload_cmd_buf(struct psp_context *psp,
801 struct psp_gfx_cmd_resp *cmd)
802{
803 if (amdgpu_sriov_vf(psp->adev))
804 cmd->cmd_id = GFX_CMD_ID_DESTROY_VMR;
805 else
806 cmd->cmd_id = GFX_CMD_ID_DESTROY_TMR;
807}
808
809static int psp_tmr_unload(struct psp_context *psp)
810{
811 int ret;
812 struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
813
814 psp_prep_tmr_unload_cmd_buf(psp, cmd);
815 DRM_INFO("free PSP TMR buffer\n");
816
817 ret = psp_cmd_submit_buf(psp, NULL, cmd,
818 psp->fence_buf_mc_addr);
819
820 release_psp_cmd_buf(psp);
821
822 return ret;
823}
824
825static int psp_tmr_terminate(struct psp_context *psp)
826{
827 return psp_tmr_unload(psp);
828}
829
830int psp_get_fw_attestation_records_addr(struct psp_context *psp,
831 uint64_t *output_ptr)
832{
833 int ret;
834 struct psp_gfx_cmd_resp *cmd;
835
836 if (!output_ptr)
837 return -EINVAL;
838
839 if (amdgpu_sriov_vf(psp->adev))
840 return 0;
841
842 cmd = acquire_psp_cmd_buf(psp);
843
844 cmd->cmd_id = GFX_CMD_ID_GET_FW_ATTESTATION;
845
846 ret = psp_cmd_submit_buf(psp, NULL, cmd,
847 psp->fence_buf_mc_addr);
848
849 if (!ret) {
850 *output_ptr = ((uint64_t)cmd->resp.uresp.fwar_db_info.fwar_db_addr_lo) +
851 ((uint64_t)cmd->resp.uresp.fwar_db_info.fwar_db_addr_hi << 32);
852 }
853
854 release_psp_cmd_buf(psp);
855
856 return ret;
857}
858
859static int psp_boot_config_get(struct amdgpu_device *adev, uint32_t *boot_cfg)
860{
861 struct psp_context *psp = &adev->psp;
862 struct psp_gfx_cmd_resp *cmd;
863 int ret;
864
865 if (amdgpu_sriov_vf(adev))
866 return 0;
867
868 cmd = acquire_psp_cmd_buf(psp);
869
870 cmd->cmd_id = GFX_CMD_ID_BOOT_CFG;
871 cmd->cmd.boot_cfg.sub_cmd = BOOTCFG_CMD_GET;
872
873 ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
874 if (!ret) {
875 *boot_cfg =
876 (cmd->resp.uresp.boot_cfg.boot_cfg & BOOT_CONFIG_GECC) ? 1 : 0;
877 }
878
879 release_psp_cmd_buf(psp);
880
881 return ret;
882}
883
884static int psp_boot_config_set(struct amdgpu_device *adev, uint32_t boot_cfg)
885{
886 int ret;
887 struct psp_context *psp = &adev->psp;
888 struct psp_gfx_cmd_resp *cmd;
889
890 if (amdgpu_sriov_vf(adev))
891 return 0;
892
893 cmd = acquire_psp_cmd_buf(psp);
894
895 cmd->cmd_id = GFX_CMD_ID_BOOT_CFG;
896 cmd->cmd.boot_cfg.sub_cmd = BOOTCFG_CMD_SET;
897 cmd->cmd.boot_cfg.boot_config = boot_cfg;
898 cmd->cmd.boot_cfg.boot_config_valid = boot_cfg;
899
900 ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
901
902 release_psp_cmd_buf(psp);
903
904 return ret;
905}
906
907static int psp_rl_load(struct amdgpu_device *adev)
908{
909 int ret;
910 struct psp_context *psp = &adev->psp;
911 struct psp_gfx_cmd_resp *cmd;
912
913 if (!is_psp_fw_valid(psp->rl))
914 return 0;
915
916 cmd = acquire_psp_cmd_buf(psp);
917
918 memset(psp->fw_pri_buf, 0, PSP_1_MEG);
919 memcpy(psp->fw_pri_buf, psp->rl.start_addr, psp->rl.size_bytes);
920
921 cmd->cmd_id = GFX_CMD_ID_LOAD_IP_FW;
922 cmd->cmd.cmd_load_ip_fw.fw_phy_addr_lo = lower_32_bits(psp->fw_pri_mc_addr);
923 cmd->cmd.cmd_load_ip_fw.fw_phy_addr_hi = upper_32_bits(psp->fw_pri_mc_addr);
924 cmd->cmd.cmd_load_ip_fw.fw_size = psp->rl.size_bytes;
925 cmd->cmd.cmd_load_ip_fw.fw_type = GFX_FW_TYPE_REG_LIST;
926
927 ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
928
929 release_psp_cmd_buf(psp);
930
931 return ret;
932}
933
934static int psp_asd_initialize(struct psp_context *psp)
935{
936 int ret;
937
938 /* If PSP version doesn't match ASD version, asd loading will be failed.
939 * add workaround to bypass it for sriov now.
940 * TODO: add version check to make it common
941 */
942 if (amdgpu_sriov_vf(psp->adev) || !psp->asd_context.bin_desc.size_bytes)
943 return 0;
944
945 psp->asd_context.mem_context.shared_mc_addr = 0;
946 psp->asd_context.mem_context.shared_mem_size = PSP_ASD_SHARED_MEM_SIZE;
947 psp->asd_context.ta_load_type = GFX_CMD_ID_LOAD_ASD;
948
949 ret = psp_ta_load(psp, &psp->asd_context);
950 if (!ret)
951 psp->asd_context.initialized = true;
952
953 return ret;
954}
955
956static void psp_prep_ta_unload_cmd_buf(struct psp_gfx_cmd_resp *cmd,
957 uint32_t session_id)
958{
959 cmd->cmd_id = GFX_CMD_ID_UNLOAD_TA;
960 cmd->cmd.cmd_unload_ta.session_id = session_id;
961}
962
963int psp_ta_unload(struct psp_context *psp, struct ta_context *context)
964{
965 int ret;
966 struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
967
968 psp_prep_ta_unload_cmd_buf(cmd, context->session_id);
969
970 ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
971
972 release_psp_cmd_buf(psp);
973
974 return ret;
975}
976
977static int psp_asd_terminate(struct psp_context *psp)
978{
979 int ret;
980
981 if (amdgpu_sriov_vf(psp->adev))
982 return 0;
983
984 if (!psp->asd_context.initialized)
985 return 0;
986
987 ret = psp_ta_unload(psp, &psp->asd_context);
988 if (!ret)
989 psp->asd_context.initialized = false;
990
991 return ret;
992}
993
994static void psp_prep_reg_prog_cmd_buf(struct psp_gfx_cmd_resp *cmd,
995 uint32_t id, uint32_t value)
996{
997 cmd->cmd_id = GFX_CMD_ID_PROG_REG;
998 cmd->cmd.cmd_setup_reg_prog.reg_value = value;
999 cmd->cmd.cmd_setup_reg_prog.reg_id = id;
1000}
1001
1002int psp_reg_program(struct psp_context *psp, enum psp_reg_prog_id reg,
1003 uint32_t value)
1004{
1005 struct psp_gfx_cmd_resp *cmd;
1006 int ret = 0;
1007
1008 if (reg >= PSP_REG_LAST)
1009 return -EINVAL;
1010
1011 cmd = acquire_psp_cmd_buf(psp);
1012
1013 psp_prep_reg_prog_cmd_buf(cmd, reg, value);
1014 ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
1015 if (ret)
1016 DRM_ERROR("PSP failed to program reg id %d", reg);
1017
1018 release_psp_cmd_buf(psp);
1019
1020 return ret;
1021}
1022
1023static void psp_prep_ta_load_cmd_buf(struct psp_gfx_cmd_resp *cmd,
1024 uint64_t ta_bin_mc,
1025 struct ta_context *context)
1026{
1027 cmd->cmd_id = context->ta_load_type;
1028 cmd->cmd.cmd_load_ta.app_phy_addr_lo = lower_32_bits(ta_bin_mc);
1029 cmd->cmd.cmd_load_ta.app_phy_addr_hi = upper_32_bits(ta_bin_mc);
1030 cmd->cmd.cmd_load_ta.app_len = context->bin_desc.size_bytes;
1031
1032 cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_lo =
1033 lower_32_bits(context->mem_context.shared_mc_addr);
1034 cmd->cmd.cmd_load_ta.cmd_buf_phy_addr_hi =
1035 upper_32_bits(context->mem_context.shared_mc_addr);
1036 cmd->cmd.cmd_load_ta.cmd_buf_len = context->mem_context.shared_mem_size;
1037}
1038
1039int psp_ta_init_shared_buf(struct psp_context *psp,
1040 struct ta_mem_context *mem_ctx)
1041{
1042 /*
1043 * Allocate 16k memory aligned to 4k from Frame Buffer (local
1044 * physical) for ta to host memory
1045 */
1046 return amdgpu_bo_create_kernel(psp->adev, mem_ctx->shared_mem_size,
1047 PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM,
1048 &mem_ctx->shared_bo,
1049 &mem_ctx->shared_mc_addr,
1050 &mem_ctx->shared_buf);
1051}
1052
1053static void psp_prep_ta_invoke_indirect_cmd_buf(struct psp_gfx_cmd_resp *cmd,
1054 uint32_t ta_cmd_id,
1055 struct ta_context *context)
1056{
1057 cmd->cmd_id = GFX_CMD_ID_INVOKE_CMD;
1058 cmd->cmd.cmd_invoke_cmd.session_id = context->session_id;
1059 cmd->cmd.cmd_invoke_cmd.ta_cmd_id = ta_cmd_id;
1060
1061 cmd->cmd.cmd_invoke_cmd.buf.num_desc = 1;
1062 cmd->cmd.cmd_invoke_cmd.buf.total_size = context->mem_context.shared_mem_size;
1063 cmd->cmd.cmd_invoke_cmd.buf.buf_desc[0].buf_size = context->mem_context.shared_mem_size;
1064 cmd->cmd.cmd_invoke_cmd.buf.buf_desc[0].buf_phy_addr_lo =
1065 lower_32_bits(context->mem_context.shared_mc_addr);
1066 cmd->cmd.cmd_invoke_cmd.buf.buf_desc[0].buf_phy_addr_hi =
1067 upper_32_bits(context->mem_context.shared_mc_addr);
1068}
1069
1070int psp_ta_invoke_indirect(struct psp_context *psp,
1071 uint32_t ta_cmd_id,
1072 struct ta_context *context)
1073{
1074 int ret;
1075 struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
1076
1077 psp_prep_ta_invoke_indirect_cmd_buf(cmd, ta_cmd_id, context);
1078
1079 ret = psp_cmd_submit_buf(psp, NULL, cmd,
1080 psp->fence_buf_mc_addr);
1081
1082 context->resp_status = cmd->resp.status;
1083
1084 release_psp_cmd_buf(psp);
1085
1086 return ret;
1087}
1088
1089static void psp_prep_ta_invoke_cmd_buf(struct psp_gfx_cmd_resp *cmd,
1090 uint32_t ta_cmd_id,
1091 uint32_t session_id)
1092{
1093 cmd->cmd_id = GFX_CMD_ID_INVOKE_CMD;
1094 cmd->cmd.cmd_invoke_cmd.session_id = session_id;
1095 cmd->cmd.cmd_invoke_cmd.ta_cmd_id = ta_cmd_id;
1096}
1097
1098int psp_ta_invoke(struct psp_context *psp,
1099 uint32_t ta_cmd_id,
1100 struct ta_context *context)
1101{
1102 int ret;
1103 struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
1104
1105 psp_prep_ta_invoke_cmd_buf(cmd, ta_cmd_id, context->session_id);
1106
1107 ret = psp_cmd_submit_buf(psp, NULL, cmd,
1108 psp->fence_buf_mc_addr);
1109
1110 context->resp_status = cmd->resp.status;
1111
1112 release_psp_cmd_buf(psp);
1113
1114 return ret;
1115}
1116
1117int psp_ta_load(struct psp_context *psp, struct ta_context *context)
1118{
1119 int ret;
1120 struct psp_gfx_cmd_resp *cmd;
1121
1122 cmd = acquire_psp_cmd_buf(psp);
1123
1124 psp_copy_fw(psp, context->bin_desc.start_addr,
1125 context->bin_desc.size_bytes);
1126
1127 psp_prep_ta_load_cmd_buf(cmd, psp->fw_pri_mc_addr, context);
1128
1129 ret = psp_cmd_submit_buf(psp, NULL, cmd,
1130 psp->fence_buf_mc_addr);
1131
1132 context->resp_status = cmd->resp.status;
1133
1134 if (!ret) {
1135 context->session_id = cmd->resp.session_id;
1136 }
1137
1138 release_psp_cmd_buf(psp);
1139
1140 return ret;
1141}
1142
1143int psp_xgmi_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1144{
1145 return psp_ta_invoke(psp, ta_cmd_id, &psp->xgmi_context.context);
1146}
1147
1148int psp_xgmi_terminate(struct psp_context *psp)
1149{
1150 int ret;
1151 struct amdgpu_device *adev = psp->adev;
1152
1153 /* XGMI TA unload currently is not supported on Arcturus/Aldebaran A+A */
1154 if (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 4) ||
1155 (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(13, 0, 2) &&
1156 adev->gmc.xgmi.connected_to_cpu))
1157 return 0;
1158
1159 if (!psp->xgmi_context.context.initialized)
1160 return 0;
1161
1162 ret = psp_ta_unload(psp, &psp->xgmi_context.context);
1163
1164 psp->xgmi_context.context.initialized = false;
1165
1166 return ret;
1167}
1168
1169int psp_xgmi_initialize(struct psp_context *psp, bool set_extended_data, bool load_ta)
1170{
1171 struct ta_xgmi_shared_memory *xgmi_cmd;
1172 int ret;
1173
1174 if (!psp->ta_fw ||
1175 !psp->xgmi_context.context.bin_desc.size_bytes ||
1176 !psp->xgmi_context.context.bin_desc.start_addr)
1177 return -ENOENT;
1178
1179 if (!load_ta)
1180 goto invoke;
1181
1182 psp->xgmi_context.context.mem_context.shared_mem_size = PSP_XGMI_SHARED_MEM_SIZE;
1183 psp->xgmi_context.context.ta_load_type = GFX_CMD_ID_LOAD_TA;
1184
1185 if (!psp->xgmi_context.context.mem_context.shared_buf) {
1186 ret = psp_ta_init_shared_buf(psp, &psp->xgmi_context.context.mem_context);
1187 if (ret)
1188 return ret;
1189 }
1190
1191 /* Load XGMI TA */
1192 ret = psp_ta_load(psp, &psp->xgmi_context.context);
1193 if (!ret)
1194 psp->xgmi_context.context.initialized = true;
1195 else
1196 return ret;
1197
1198invoke:
1199 /* Initialize XGMI session */
1200 xgmi_cmd = (struct ta_xgmi_shared_memory *)(psp->xgmi_context.context.mem_context.shared_buf);
1201 memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1202 xgmi_cmd->flag_extend_link_record = set_extended_data;
1203 xgmi_cmd->cmd_id = TA_COMMAND_XGMI__INITIALIZE;
1204
1205 ret = psp_xgmi_invoke(psp, xgmi_cmd->cmd_id);
1206
1207 return ret;
1208}
1209
1210int psp_xgmi_get_hive_id(struct psp_context *psp, uint64_t *hive_id)
1211{
1212 struct ta_xgmi_shared_memory *xgmi_cmd;
1213 int ret;
1214
1215 xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.context.mem_context.shared_buf;
1216 memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1217
1218 xgmi_cmd->cmd_id = TA_COMMAND_XGMI__GET_HIVE_ID;
1219
1220 /* Invoke xgmi ta to get hive id */
1221 ret = psp_xgmi_invoke(psp, xgmi_cmd->cmd_id);
1222 if (ret)
1223 return ret;
1224
1225 *hive_id = xgmi_cmd->xgmi_out_message.get_hive_id.hive_id;
1226
1227 return 0;
1228}
1229
1230int psp_xgmi_get_node_id(struct psp_context *psp, uint64_t *node_id)
1231{
1232 struct ta_xgmi_shared_memory *xgmi_cmd;
1233 int ret;
1234
1235 xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.context.mem_context.shared_buf;
1236 memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1237
1238 xgmi_cmd->cmd_id = TA_COMMAND_XGMI__GET_NODE_ID;
1239
1240 /* Invoke xgmi ta to get the node id */
1241 ret = psp_xgmi_invoke(psp, xgmi_cmd->cmd_id);
1242 if (ret)
1243 return ret;
1244
1245 *node_id = xgmi_cmd->xgmi_out_message.get_node_id.node_id;
1246
1247 return 0;
1248}
1249
1250static bool psp_xgmi_peer_link_info_supported(struct psp_context *psp)
1251{
1252 return psp->adev->ip_versions[MP0_HWIP][0] == IP_VERSION(13, 0, 2) &&
1253 psp->xgmi_context.context.bin_desc.fw_version >= 0x2000000b;
1254}
1255
1256/*
1257 * Chips that support extended topology information require the driver to
1258 * reflect topology information in the opposite direction. This is
1259 * because the TA has already exceeded its link record limit and if the
1260 * TA holds bi-directional information, the driver would have to do
1261 * multiple fetches instead of just two.
1262 */
1263static void psp_xgmi_reflect_topology_info(struct psp_context *psp,
1264 struct psp_xgmi_node_info node_info)
1265{
1266 struct amdgpu_device *mirror_adev;
1267 struct amdgpu_hive_info *hive;
1268 uint64_t src_node_id = psp->adev->gmc.xgmi.node_id;
1269 uint64_t dst_node_id = node_info.node_id;
1270 uint8_t dst_num_hops = node_info.num_hops;
1271 uint8_t dst_num_links = node_info.num_links;
1272
1273 hive = amdgpu_get_xgmi_hive(psp->adev);
1274 list_for_each_entry(mirror_adev, &hive->device_list, gmc.xgmi.head) {
1275 struct psp_xgmi_topology_info *mirror_top_info;
1276 int j;
1277
1278 if (mirror_adev->gmc.xgmi.node_id != dst_node_id)
1279 continue;
1280
1281 mirror_top_info = &mirror_adev->psp.xgmi_context.top_info;
1282 for (j = 0; j < mirror_top_info->num_nodes; j++) {
1283 if (mirror_top_info->nodes[j].node_id != src_node_id)
1284 continue;
1285
1286 mirror_top_info->nodes[j].num_hops = dst_num_hops;
1287 /*
1288 * prevent 0 num_links value re-reflection since reflection
1289 * criteria is based on num_hops (direct or indirect).
1290 *
1291 */
1292 if (dst_num_links)
1293 mirror_top_info->nodes[j].num_links = dst_num_links;
1294
1295 break;
1296 }
1297
1298 break;
1299 }
1300
1301 amdgpu_put_xgmi_hive(hive);
1302}
1303
1304int psp_xgmi_get_topology_info(struct psp_context *psp,
1305 int number_devices,
1306 struct psp_xgmi_topology_info *topology,
1307 bool get_extended_data)
1308{
1309 struct ta_xgmi_shared_memory *xgmi_cmd;
1310 struct ta_xgmi_cmd_get_topology_info_input *topology_info_input;
1311 struct ta_xgmi_cmd_get_topology_info_output *topology_info_output;
1312 int i;
1313 int ret;
1314
1315 if (!topology || topology->num_nodes > TA_XGMI__MAX_CONNECTED_NODES)
1316 return -EINVAL;
1317
1318 xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.context.mem_context.shared_buf;
1319 memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1320 xgmi_cmd->flag_extend_link_record = get_extended_data;
1321
1322 /* Fill in the shared memory with topology information as input */
1323 topology_info_input = &xgmi_cmd->xgmi_in_message.get_topology_info;
1324 xgmi_cmd->cmd_id = TA_COMMAND_XGMI__GET_GET_TOPOLOGY_INFO;
1325 topology_info_input->num_nodes = number_devices;
1326
1327 for (i = 0; i < topology_info_input->num_nodes; i++) {
1328 topology_info_input->nodes[i].node_id = topology->nodes[i].node_id;
1329 topology_info_input->nodes[i].num_hops = topology->nodes[i].num_hops;
1330 topology_info_input->nodes[i].is_sharing_enabled = topology->nodes[i].is_sharing_enabled;
1331 topology_info_input->nodes[i].sdma_engine = topology->nodes[i].sdma_engine;
1332 }
1333
1334 /* Invoke xgmi ta to get the topology information */
1335 ret = psp_xgmi_invoke(psp, TA_COMMAND_XGMI__GET_GET_TOPOLOGY_INFO);
1336 if (ret)
1337 return ret;
1338
1339 /* Read the output topology information from the shared memory */
1340 topology_info_output = &xgmi_cmd->xgmi_out_message.get_topology_info;
1341 topology->num_nodes = xgmi_cmd->xgmi_out_message.get_topology_info.num_nodes;
1342 for (i = 0; i < topology->num_nodes; i++) {
1343 /* extended data will either be 0 or equal to non-extended data */
1344 if (topology_info_output->nodes[i].num_hops)
1345 topology->nodes[i].num_hops = topology_info_output->nodes[i].num_hops;
1346
1347 /* non-extended data gets everything here so no need to update */
1348 if (!get_extended_data) {
1349 topology->nodes[i].node_id = topology_info_output->nodes[i].node_id;
1350 topology->nodes[i].is_sharing_enabled =
1351 topology_info_output->nodes[i].is_sharing_enabled;
1352 topology->nodes[i].sdma_engine =
1353 topology_info_output->nodes[i].sdma_engine;
1354 }
1355
1356 }
1357
1358 /* Invoke xgmi ta again to get the link information */
1359 if (psp_xgmi_peer_link_info_supported(psp)) {
1360 struct ta_xgmi_cmd_get_peer_link_info_output *link_info_output;
1361
1362 xgmi_cmd->cmd_id = TA_COMMAND_XGMI__GET_PEER_LINKS;
1363
1364 ret = psp_xgmi_invoke(psp, TA_COMMAND_XGMI__GET_PEER_LINKS);
1365
1366 if (ret)
1367 return ret;
1368
1369 link_info_output = &xgmi_cmd->xgmi_out_message.get_link_info;
1370 for (i = 0; i < topology->num_nodes; i++) {
1371 /* accumulate num_links on extended data */
1372 topology->nodes[i].num_links = get_extended_data ?
1373 topology->nodes[i].num_links +
1374 link_info_output->nodes[i].num_links :
1375 link_info_output->nodes[i].num_links;
1376
1377 /* reflect the topology information for bi-directionality */
1378 if (psp->xgmi_context.supports_extended_data &&
1379 get_extended_data && topology->nodes[i].num_hops)
1380 psp_xgmi_reflect_topology_info(psp, topology->nodes[i]);
1381 }
1382 }
1383
1384 return 0;
1385}
1386
1387int psp_xgmi_set_topology_info(struct psp_context *psp,
1388 int number_devices,
1389 struct psp_xgmi_topology_info *topology)
1390{
1391 struct ta_xgmi_shared_memory *xgmi_cmd;
1392 struct ta_xgmi_cmd_get_topology_info_input *topology_info_input;
1393 int i;
1394
1395 if (!topology || topology->num_nodes > TA_XGMI__MAX_CONNECTED_NODES)
1396 return -EINVAL;
1397
1398 xgmi_cmd = (struct ta_xgmi_shared_memory *)psp->xgmi_context.context.mem_context.shared_buf;
1399 memset(xgmi_cmd, 0, sizeof(struct ta_xgmi_shared_memory));
1400
1401 topology_info_input = &xgmi_cmd->xgmi_in_message.get_topology_info;
1402 xgmi_cmd->cmd_id = TA_COMMAND_XGMI__SET_TOPOLOGY_INFO;
1403 topology_info_input->num_nodes = number_devices;
1404
1405 for (i = 0; i < topology_info_input->num_nodes; i++) {
1406 topology_info_input->nodes[i].node_id = topology->nodes[i].node_id;
1407 topology_info_input->nodes[i].num_hops = topology->nodes[i].num_hops;
1408 topology_info_input->nodes[i].is_sharing_enabled = 1;
1409 topology_info_input->nodes[i].sdma_engine = topology->nodes[i].sdma_engine;
1410 }
1411
1412 /* Invoke xgmi ta to set topology information */
1413 return psp_xgmi_invoke(psp, TA_COMMAND_XGMI__SET_TOPOLOGY_INFO);
1414}
1415
1416// ras begin
1417static void psp_ras_ta_check_status(struct psp_context *psp)
1418{
1419 struct ta_ras_shared_memory *ras_cmd =
1420 (struct ta_ras_shared_memory *)psp->ras_context.context.mem_context.shared_buf;
1421
1422 switch (ras_cmd->ras_status) {
1423 case TA_RAS_STATUS__ERROR_UNSUPPORTED_IP:
1424 dev_warn(psp->adev->dev,
1425 "RAS WARNING: cmd failed due to unsupported ip\n");
1426 break;
1427 case TA_RAS_STATUS__ERROR_UNSUPPORTED_ERROR_INJ:
1428 dev_warn(psp->adev->dev,
1429 "RAS WARNING: cmd failed due to unsupported error injection\n");
1430 break;
1431 case TA_RAS_STATUS__SUCCESS:
1432 break;
1433 case TA_RAS_STATUS__TEE_ERROR_ACCESS_DENIED:
1434 if (ras_cmd->cmd_id == TA_RAS_COMMAND__TRIGGER_ERROR)
1435 dev_warn(psp->adev->dev,
1436 "RAS WARNING: Inject error to critical region is not allowed\n");
1437 break;
1438 default:
1439 dev_warn(psp->adev->dev,
1440 "RAS WARNING: ras status = 0x%X\n", ras_cmd->ras_status);
1441 break;
1442 }
1443}
1444
1445int psp_ras_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1446{
1447 struct ta_ras_shared_memory *ras_cmd;
1448 int ret;
1449
1450 ras_cmd = (struct ta_ras_shared_memory *)psp->ras_context.context.mem_context.shared_buf;
1451
1452 /*
1453 * TODO: bypass the loading in sriov for now
1454 */
1455 if (amdgpu_sriov_vf(psp->adev))
1456 return 0;
1457
1458 ret = psp_ta_invoke(psp, ta_cmd_id, &psp->ras_context.context);
1459
1460 if (amdgpu_ras_intr_triggered())
1461 return ret;
1462
1463 if (ras_cmd->if_version > RAS_TA_HOST_IF_VER)
1464 {
1465 DRM_WARN("RAS: Unsupported Interface");
1466 return -EINVAL;
1467 }
1468
1469 if (!ret) {
1470 if (ras_cmd->ras_out_message.flags.err_inject_switch_disable_flag) {
1471 dev_warn(psp->adev->dev, "ECC switch disabled\n");
1472
1473 ras_cmd->ras_status = TA_RAS_STATUS__ERROR_RAS_NOT_AVAILABLE;
1474 }
1475 else if (ras_cmd->ras_out_message.flags.reg_access_failure_flag)
1476 dev_warn(psp->adev->dev,
1477 "RAS internal register access blocked\n");
1478
1479 psp_ras_ta_check_status(psp);
1480 }
1481
1482 return ret;
1483}
1484
1485int psp_ras_enable_features(struct psp_context *psp,
1486 union ta_ras_cmd_input *info, bool enable)
1487{
1488 struct ta_ras_shared_memory *ras_cmd;
1489 int ret;
1490
1491 if (!psp->ras_context.context.initialized)
1492 return -EINVAL;
1493
1494 ras_cmd = (struct ta_ras_shared_memory *)psp->ras_context.context.mem_context.shared_buf;
1495 memset(ras_cmd, 0, sizeof(struct ta_ras_shared_memory));
1496
1497 if (enable)
1498 ras_cmd->cmd_id = TA_RAS_COMMAND__ENABLE_FEATURES;
1499 else
1500 ras_cmd->cmd_id = TA_RAS_COMMAND__DISABLE_FEATURES;
1501
1502 ras_cmd->ras_in_message = *info;
1503
1504 ret = psp_ras_invoke(psp, ras_cmd->cmd_id);
1505 if (ret)
1506 return -EINVAL;
1507
1508 return 0;
1509}
1510
1511int psp_ras_terminate(struct psp_context *psp)
1512{
1513 int ret;
1514
1515 /*
1516 * TODO: bypass the terminate in sriov for now
1517 */
1518 if (amdgpu_sriov_vf(psp->adev))
1519 return 0;
1520
1521 if (!psp->ras_context.context.initialized)
1522 return 0;
1523
1524 ret = psp_ta_unload(psp, &psp->ras_context.context);
1525
1526 psp->ras_context.context.initialized = false;
1527
1528 return ret;
1529}
1530
1531static int psp_ras_initialize(struct psp_context *psp)
1532{
1533 int ret;
1534 uint32_t boot_cfg = 0xFF;
1535 struct amdgpu_device *adev = psp->adev;
1536 struct ta_ras_shared_memory *ras_cmd;
1537
1538 /*
1539 * TODO: bypass the initialize in sriov for now
1540 */
1541 if (amdgpu_sriov_vf(adev))
1542 return 0;
1543
1544 if (!adev->psp.ras_context.context.bin_desc.size_bytes ||
1545 !adev->psp.ras_context.context.bin_desc.start_addr) {
1546 dev_info(adev->dev, "RAS: optional ras ta ucode is not available\n");
1547 return 0;
1548 }
1549
1550 if (amdgpu_atomfirmware_dynamic_boot_config_supported(adev)) {
1551 /* query GECC enablement status from boot config
1552 * boot_cfg: 1: GECC is enabled or 0: GECC is disabled
1553 */
1554 ret = psp_boot_config_get(adev, &boot_cfg);
1555 if (ret)
1556 dev_warn(adev->dev, "PSP get boot config failed\n");
1557
1558 if (!amdgpu_ras_is_supported(psp->adev, AMDGPU_RAS_BLOCK__UMC)) {
1559 if (!boot_cfg) {
1560 dev_info(adev->dev, "GECC is disabled\n");
1561 } else {
1562 /* disable GECC in next boot cycle if ras is
1563 * disabled by module parameter amdgpu_ras_enable
1564 * and/or amdgpu_ras_mask, or boot_config_get call
1565 * is failed
1566 */
1567 ret = psp_boot_config_set(adev, 0);
1568 if (ret)
1569 dev_warn(adev->dev, "PSP set boot config failed\n");
1570 else
1571 dev_warn(adev->dev, "GECC will be disabled in next boot cycle "
1572 "if set amdgpu_ras_enable and/or amdgpu_ras_mask to 0x0\n");
1573 }
1574 } else {
1575 if (1 == boot_cfg) {
1576 dev_info(adev->dev, "GECC is enabled\n");
1577 } else {
1578 /* enable GECC in next boot cycle if it is disabled
1579 * in boot config, or force enable GECC if failed to
1580 * get boot configuration
1581 */
1582 ret = psp_boot_config_set(adev, BOOT_CONFIG_GECC);
1583 if (ret)
1584 dev_warn(adev->dev, "PSP set boot config failed\n");
1585 else
1586 dev_warn(adev->dev, "GECC will be enabled in next boot cycle\n");
1587 }
1588 }
1589 }
1590
1591 psp->ras_context.context.mem_context.shared_mem_size = PSP_RAS_SHARED_MEM_SIZE;
1592 psp->ras_context.context.ta_load_type = GFX_CMD_ID_LOAD_TA;
1593
1594 if (!psp->ras_context.context.initialized) {
1595 ret = psp_ta_init_shared_buf(psp, &psp->ras_context.context.mem_context);
1596 if (ret)
1597 return ret;
1598 }
1599
1600 ras_cmd = (struct ta_ras_shared_memory *)psp->ras_context.context.mem_context.shared_buf;
1601 memset(ras_cmd, 0, sizeof(struct ta_ras_shared_memory));
1602
1603 if (amdgpu_ras_is_poison_mode_supported(adev))
1604 ras_cmd->ras_in_message.init_flags.poison_mode_en = 1;
1605 if (!adev->gmc.xgmi.connected_to_cpu)
1606 ras_cmd->ras_in_message.init_flags.dgpu_mode = 1;
1607
1608 ret = psp_ta_load(psp, &psp->ras_context.context);
1609
1610 if (!ret && !ras_cmd->ras_status)
1611 psp->ras_context.context.initialized = true;
1612 else {
1613 if (ras_cmd->ras_status)
1614 dev_warn(psp->adev->dev, "RAS Init Status: 0x%X\n", ras_cmd->ras_status);
1615 amdgpu_ras_fini(psp->adev);
1616 }
1617
1618 return ret;
1619}
1620
1621int psp_ras_trigger_error(struct psp_context *psp,
1622 struct ta_ras_trigger_error_input *info)
1623{
1624 struct ta_ras_shared_memory *ras_cmd;
1625 int ret;
1626
1627 if (!psp->ras_context.context.initialized)
1628 return -EINVAL;
1629
1630 ras_cmd = (struct ta_ras_shared_memory *)psp->ras_context.context.mem_context.shared_buf;
1631 memset(ras_cmd, 0, sizeof(struct ta_ras_shared_memory));
1632
1633 ras_cmd->cmd_id = TA_RAS_COMMAND__TRIGGER_ERROR;
1634 ras_cmd->ras_in_message.trigger_error = *info;
1635
1636 ret = psp_ras_invoke(psp, ras_cmd->cmd_id);
1637 if (ret)
1638 return -EINVAL;
1639
1640 /* If err_event_athub occurs error inject was successful, however
1641 return status from TA is no long reliable */
1642 if (amdgpu_ras_intr_triggered())
1643 return 0;
1644
1645 if (ras_cmd->ras_status == TA_RAS_STATUS__TEE_ERROR_ACCESS_DENIED)
1646 return -EACCES;
1647 else if (ras_cmd->ras_status)
1648 return -EINVAL;
1649
1650 return 0;
1651}
1652// ras end
1653
1654// HDCP start
1655static int psp_hdcp_initialize(struct psp_context *psp)
1656{
1657 int ret;
1658
1659 /*
1660 * TODO: bypass the initialize in sriov for now
1661 */
1662 if (amdgpu_sriov_vf(psp->adev))
1663 return 0;
1664
1665 if (!psp->hdcp_context.context.bin_desc.size_bytes ||
1666 !psp->hdcp_context.context.bin_desc.start_addr) {
1667 dev_info(psp->adev->dev, "HDCP: optional hdcp ta ucode is not available\n");
1668 return 0;
1669 }
1670
1671 psp->hdcp_context.context.mem_context.shared_mem_size = PSP_HDCP_SHARED_MEM_SIZE;
1672 psp->hdcp_context.context.ta_load_type = GFX_CMD_ID_LOAD_TA;
1673
1674 if (!psp->hdcp_context.context.initialized) {
1675 ret = psp_ta_init_shared_buf(psp, &psp->hdcp_context.context.mem_context);
1676 if (ret)
1677 return ret;
1678 }
1679
1680 ret = psp_ta_load(psp, &psp->hdcp_context.context);
1681 if (!ret) {
1682 psp->hdcp_context.context.initialized = true;
1683 mutex_init(&psp->hdcp_context.mutex);
1684 }
1685
1686 return ret;
1687}
1688
1689int psp_hdcp_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1690{
1691 /*
1692 * TODO: bypass the loading in sriov for now
1693 */
1694 if (amdgpu_sriov_vf(psp->adev))
1695 return 0;
1696
1697 return psp_ta_invoke(psp, ta_cmd_id, &psp->hdcp_context.context);
1698}
1699
1700static int psp_hdcp_terminate(struct psp_context *psp)
1701{
1702 int ret;
1703
1704 /*
1705 * TODO: bypass the terminate in sriov for now
1706 */
1707 if (amdgpu_sriov_vf(psp->adev))
1708 return 0;
1709
1710 if (!psp->hdcp_context.context.initialized)
1711 return 0;
1712
1713 ret = psp_ta_unload(psp, &psp->hdcp_context.context);
1714
1715 psp->hdcp_context.context.initialized = false;
1716
1717 return ret;
1718}
1719// HDCP end
1720
1721// DTM start
1722static int psp_dtm_initialize(struct psp_context *psp)
1723{
1724 int ret;
1725
1726 /*
1727 * TODO: bypass the initialize in sriov for now
1728 */
1729 if (amdgpu_sriov_vf(psp->adev))
1730 return 0;
1731
1732 if (!psp->dtm_context.context.bin_desc.size_bytes ||
1733 !psp->dtm_context.context.bin_desc.start_addr) {
1734 dev_info(psp->adev->dev, "DTM: optional dtm ta ucode is not available\n");
1735 return 0;
1736 }
1737
1738 psp->dtm_context.context.mem_context.shared_mem_size = PSP_DTM_SHARED_MEM_SIZE;
1739 psp->dtm_context.context.ta_load_type = GFX_CMD_ID_LOAD_TA;
1740
1741 if (!psp->dtm_context.context.initialized) {
1742 ret = psp_ta_init_shared_buf(psp, &psp->dtm_context.context.mem_context);
1743 if (ret)
1744 return ret;
1745 }
1746
1747 ret = psp_ta_load(psp, &psp->dtm_context.context);
1748 if (!ret) {
1749 psp->dtm_context.context.initialized = true;
1750 mutex_init(&psp->dtm_context.mutex);
1751 }
1752
1753 return ret;
1754}
1755
1756int psp_dtm_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1757{
1758 /*
1759 * TODO: bypass the loading in sriov for now
1760 */
1761 if (amdgpu_sriov_vf(psp->adev))
1762 return 0;
1763
1764 return psp_ta_invoke(psp, ta_cmd_id, &psp->dtm_context.context);
1765}
1766
1767static int psp_dtm_terminate(struct psp_context *psp)
1768{
1769 int ret;
1770
1771 /*
1772 * TODO: bypass the terminate in sriov for now
1773 */
1774 if (amdgpu_sriov_vf(psp->adev))
1775 return 0;
1776
1777 if (!psp->dtm_context.context.initialized)
1778 return 0;
1779
1780 ret = psp_ta_unload(psp, &psp->dtm_context.context);
1781
1782 psp->dtm_context.context.initialized = false;
1783
1784 return ret;
1785}
1786// DTM end
1787
1788// RAP start
1789static int psp_rap_initialize(struct psp_context *psp)
1790{
1791 int ret;
1792 enum ta_rap_status status = TA_RAP_STATUS__SUCCESS;
1793
1794 /*
1795 * TODO: bypass the initialize in sriov for now
1796 */
1797 if (amdgpu_sriov_vf(psp->adev))
1798 return 0;
1799
1800 if (!psp->rap_context.context.bin_desc.size_bytes ||
1801 !psp->rap_context.context.bin_desc.start_addr) {
1802 dev_info(psp->adev->dev, "RAP: optional rap ta ucode is not available\n");
1803 return 0;
1804 }
1805
1806 psp->rap_context.context.mem_context.shared_mem_size = PSP_RAP_SHARED_MEM_SIZE;
1807 psp->rap_context.context.ta_load_type = GFX_CMD_ID_LOAD_TA;
1808
1809 if (!psp->rap_context.context.initialized) {
1810 ret = psp_ta_init_shared_buf(psp, &psp->rap_context.context.mem_context);
1811 if (ret)
1812 return ret;
1813 }
1814
1815 ret = psp_ta_load(psp, &psp->rap_context.context);
1816 if (!ret) {
1817 psp->rap_context.context.initialized = true;
1818 mutex_init(&psp->rap_context.mutex);
1819 } else
1820 return ret;
1821
1822 ret = psp_rap_invoke(psp, TA_CMD_RAP__INITIALIZE, &status);
1823 if (ret || status != TA_RAP_STATUS__SUCCESS) {
1824 psp_rap_terminate(psp);
1825 /* free rap shared memory */
1826 psp_ta_free_shared_buf(&psp->rap_context.context.mem_context);
1827
1828 dev_warn(psp->adev->dev, "RAP TA initialize fail (%d) status %d.\n",
1829 ret, status);
1830
1831 return ret;
1832 }
1833
1834 return 0;
1835}
1836
1837static int psp_rap_terminate(struct psp_context *psp)
1838{
1839 int ret;
1840
1841 if (!psp->rap_context.context.initialized)
1842 return 0;
1843
1844 ret = psp_ta_unload(psp, &psp->rap_context.context);
1845
1846 psp->rap_context.context.initialized = false;
1847
1848 return ret;
1849}
1850
1851int psp_rap_invoke(struct psp_context *psp, uint32_t ta_cmd_id, enum ta_rap_status *status)
1852{
1853 struct ta_rap_shared_memory *rap_cmd;
1854 int ret = 0;
1855
1856 if (!psp->rap_context.context.initialized)
1857 return 0;
1858
1859 if (ta_cmd_id != TA_CMD_RAP__INITIALIZE &&
1860 ta_cmd_id != TA_CMD_RAP__VALIDATE_L0)
1861 return -EINVAL;
1862
1863 mutex_lock(&psp->rap_context.mutex);
1864
1865 rap_cmd = (struct ta_rap_shared_memory *)
1866 psp->rap_context.context.mem_context.shared_buf;
1867 memset(rap_cmd, 0, sizeof(struct ta_rap_shared_memory));
1868
1869 rap_cmd->cmd_id = ta_cmd_id;
1870 rap_cmd->validation_method_id = METHOD_A;
1871
1872 ret = psp_ta_invoke(psp, rap_cmd->cmd_id, &psp->rap_context.context);
1873 if (ret)
1874 goto out_unlock;
1875
1876 if (status)
1877 *status = rap_cmd->rap_status;
1878
1879out_unlock:
1880 mutex_unlock(&psp->rap_context.mutex);
1881
1882 return ret;
1883}
1884// RAP end
1885
1886/* securedisplay start */
1887static int psp_securedisplay_initialize(struct psp_context *psp)
1888{
1889 int ret;
1890 struct securedisplay_cmd *securedisplay_cmd;
1891
1892 /*
1893 * TODO: bypass the initialize in sriov for now
1894 */
1895 if (amdgpu_sriov_vf(psp->adev))
1896 return 0;
1897
1898 if (!psp->securedisplay_context.context.bin_desc.size_bytes ||
1899 !psp->securedisplay_context.context.bin_desc.start_addr) {
1900 dev_info(psp->adev->dev, "SECUREDISPLAY: securedisplay ta ucode is not available\n");
1901 return 0;
1902 }
1903
1904 psp->securedisplay_context.context.mem_context.shared_mem_size =
1905 PSP_SECUREDISPLAY_SHARED_MEM_SIZE;
1906 psp->securedisplay_context.context.ta_load_type = GFX_CMD_ID_LOAD_TA;
1907
1908 if (!psp->securedisplay_context.context.initialized) {
1909 ret = psp_ta_init_shared_buf(psp,
1910 &psp->securedisplay_context.context.mem_context);
1911 if (ret)
1912 return ret;
1913 }
1914
1915 ret = psp_ta_load(psp, &psp->securedisplay_context.context);
1916 if (!ret) {
1917 psp->securedisplay_context.context.initialized = true;
1918 mutex_init(&psp->securedisplay_context.mutex);
1919 } else
1920 return ret;
1921
1922 psp_prep_securedisplay_cmd_buf(psp, &securedisplay_cmd,
1923 TA_SECUREDISPLAY_COMMAND__QUERY_TA);
1924
1925 ret = psp_securedisplay_invoke(psp, TA_SECUREDISPLAY_COMMAND__QUERY_TA);
1926 if (ret) {
1927 psp_securedisplay_terminate(psp);
1928 /* free securedisplay shared memory */
1929 psp_ta_free_shared_buf(&psp->securedisplay_context.context.mem_context);
1930 dev_err(psp->adev->dev, "SECUREDISPLAY TA initialize fail.\n");
1931 return -EINVAL;
1932 }
1933
1934 if (securedisplay_cmd->status != TA_SECUREDISPLAY_STATUS__SUCCESS) {
1935 psp_securedisplay_parse_resp_status(psp, securedisplay_cmd->status);
1936 dev_err(psp->adev->dev, "SECUREDISPLAY: query securedisplay TA failed. ret 0x%x\n",
1937 securedisplay_cmd->securedisplay_out_message.query_ta.query_cmd_ret);
1938 }
1939
1940 return 0;
1941}
1942
1943static int psp_securedisplay_terminate(struct psp_context *psp)
1944{
1945 int ret;
1946
1947 /*
1948 * TODO:bypass the terminate in sriov for now
1949 */
1950 if (amdgpu_sriov_vf(psp->adev))
1951 return 0;
1952
1953 if (!psp->securedisplay_context.context.initialized)
1954 return 0;
1955
1956 ret = psp_ta_unload(psp, &psp->securedisplay_context.context);
1957
1958 psp->securedisplay_context.context.initialized = false;
1959
1960 return ret;
1961}
1962
1963int psp_securedisplay_invoke(struct psp_context *psp, uint32_t ta_cmd_id)
1964{
1965 int ret;
1966
1967 if (!psp->securedisplay_context.context.initialized)
1968 return -EINVAL;
1969
1970 if (ta_cmd_id != TA_SECUREDISPLAY_COMMAND__QUERY_TA &&
1971 ta_cmd_id != TA_SECUREDISPLAY_COMMAND__SEND_ROI_CRC)
1972 return -EINVAL;
1973
1974 mutex_lock(&psp->securedisplay_context.mutex);
1975
1976 ret = psp_ta_invoke(psp, ta_cmd_id, &psp->securedisplay_context.context);
1977
1978 mutex_unlock(&psp->securedisplay_context.mutex);
1979
1980 return ret;
1981}
1982/* SECUREDISPLAY end */
1983
1984static int psp_hw_start(struct psp_context *psp)
1985{
1986 struct amdgpu_device *adev = psp->adev;
1987 int ret;
1988
1989 if (!amdgpu_sriov_vf(adev)) {
1990 if ((is_psp_fw_valid(psp->kdb)) &&
1991 (psp->funcs->bootloader_load_kdb != NULL)) {
1992 ret = psp_bootloader_load_kdb(psp);
1993 if (ret) {
1994 DRM_ERROR("PSP load kdb failed!\n");
1995 return ret;
1996 }
1997 }
1998
1999 if ((is_psp_fw_valid(psp->spl)) &&
2000 (psp->funcs->bootloader_load_spl != NULL)) {
2001 ret = psp_bootloader_load_spl(psp);
2002 if (ret) {
2003 DRM_ERROR("PSP load spl failed!\n");
2004 return ret;
2005 }
2006 }
2007
2008 if ((is_psp_fw_valid(psp->sys)) &&
2009 (psp->funcs->bootloader_load_sysdrv != NULL)) {
2010 ret = psp_bootloader_load_sysdrv(psp);
2011 if (ret) {
2012 DRM_ERROR("PSP load sys drv failed!\n");
2013 return ret;
2014 }
2015 }
2016
2017 if ((is_psp_fw_valid(psp->soc_drv)) &&
2018 (psp->funcs->bootloader_load_soc_drv != NULL)) {
2019 ret = psp_bootloader_load_soc_drv(psp);
2020 if (ret) {
2021 DRM_ERROR("PSP load soc drv failed!\n");
2022 return ret;
2023 }
2024 }
2025
2026 if ((is_psp_fw_valid(psp->intf_drv)) &&
2027 (psp->funcs->bootloader_load_intf_drv != NULL)) {
2028 ret = psp_bootloader_load_intf_drv(psp);
2029 if (ret) {
2030 DRM_ERROR("PSP load intf drv failed!\n");
2031 return ret;
2032 }
2033 }
2034
2035 if ((is_psp_fw_valid(psp->dbg_drv)) &&
2036 (psp->funcs->bootloader_load_dbg_drv != NULL)) {
2037 ret = psp_bootloader_load_dbg_drv(psp);
2038 if (ret) {
2039 DRM_ERROR("PSP load dbg drv failed!\n");
2040 return ret;
2041 }
2042 }
2043
2044 if ((is_psp_fw_valid(psp->sos)) &&
2045 (psp->funcs->bootloader_load_sos != NULL)) {
2046 ret = psp_bootloader_load_sos(psp);
2047 if (ret) {
2048 DRM_ERROR("PSP load sos failed!\n");
2049 return ret;
2050 }
2051 }
2052 }
2053
2054 ret = psp_ring_create(psp, PSP_RING_TYPE__KM);
2055 if (ret) {
2056 DRM_ERROR("PSP create ring failed!\n");
2057 return ret;
2058 }
2059
2060 if (amdgpu_sriov_vf(adev) && amdgpu_in_reset(adev))
2061 goto skip_pin_bo;
2062
2063 ret = psp_tmr_init(psp);
2064 if (ret) {
2065 DRM_ERROR("PSP tmr init failed!\n");
2066 return ret;
2067 }
2068
2069skip_pin_bo:
2070 /*
2071 * For ASICs with DF Cstate management centralized
2072 * to PMFW, TMR setup should be performed after PMFW
2073 * loaded and before other non-psp firmware loaded.
2074 */
2075 if (psp->pmfw_centralized_cstate_management) {
2076 ret = psp_load_smu_fw(psp);
2077 if (ret)
2078 return ret;
2079 }
2080
2081 ret = psp_tmr_load(psp);
2082 if (ret) {
2083 DRM_ERROR("PSP load tmr failed!\n");
2084 return ret;
2085 }
2086
2087 return 0;
2088}
2089
2090static int psp_get_fw_type(struct amdgpu_firmware_info *ucode,
2091 enum psp_gfx_fw_type *type)
2092{
2093 switch (ucode->ucode_id) {
2094 case AMDGPU_UCODE_ID_CAP:
2095 *type = GFX_FW_TYPE_CAP;
2096 break;
2097 case AMDGPU_UCODE_ID_SDMA0:
2098 *type = GFX_FW_TYPE_SDMA0;
2099 break;
2100 case AMDGPU_UCODE_ID_SDMA1:
2101 *type = GFX_FW_TYPE_SDMA1;
2102 break;
2103 case AMDGPU_UCODE_ID_SDMA2:
2104 *type = GFX_FW_TYPE_SDMA2;
2105 break;
2106 case AMDGPU_UCODE_ID_SDMA3:
2107 *type = GFX_FW_TYPE_SDMA3;
2108 break;
2109 case AMDGPU_UCODE_ID_SDMA4:
2110 *type = GFX_FW_TYPE_SDMA4;
2111 break;
2112 case AMDGPU_UCODE_ID_SDMA5:
2113 *type = GFX_FW_TYPE_SDMA5;
2114 break;
2115 case AMDGPU_UCODE_ID_SDMA6:
2116 *type = GFX_FW_TYPE_SDMA6;
2117 break;
2118 case AMDGPU_UCODE_ID_SDMA7:
2119 *type = GFX_FW_TYPE_SDMA7;
2120 break;
2121 case AMDGPU_UCODE_ID_CP_MES:
2122 *type = GFX_FW_TYPE_CP_MES;
2123 break;
2124 case AMDGPU_UCODE_ID_CP_MES_DATA:
2125 *type = GFX_FW_TYPE_MES_STACK;
2126 break;
2127 case AMDGPU_UCODE_ID_CP_MES1:
2128 *type = GFX_FW_TYPE_CP_MES_KIQ;
2129 break;
2130 case AMDGPU_UCODE_ID_CP_MES1_DATA:
2131 *type = GFX_FW_TYPE_MES_KIQ_STACK;
2132 break;
2133 case AMDGPU_UCODE_ID_CP_CE:
2134 *type = GFX_FW_TYPE_CP_CE;
2135 break;
2136 case AMDGPU_UCODE_ID_CP_PFP:
2137 *type = GFX_FW_TYPE_CP_PFP;
2138 break;
2139 case AMDGPU_UCODE_ID_CP_ME:
2140 *type = GFX_FW_TYPE_CP_ME;
2141 break;
2142 case AMDGPU_UCODE_ID_CP_MEC1:
2143 *type = GFX_FW_TYPE_CP_MEC;
2144 break;
2145 case AMDGPU_UCODE_ID_CP_MEC1_JT:
2146 *type = GFX_FW_TYPE_CP_MEC_ME1;
2147 break;
2148 case AMDGPU_UCODE_ID_CP_MEC2:
2149 *type = GFX_FW_TYPE_CP_MEC;
2150 break;
2151 case AMDGPU_UCODE_ID_CP_MEC2_JT:
2152 *type = GFX_FW_TYPE_CP_MEC_ME2;
2153 break;
2154 case AMDGPU_UCODE_ID_RLC_P:
2155 *type = GFX_FW_TYPE_RLC_P;
2156 break;
2157 case AMDGPU_UCODE_ID_RLC_V:
2158 *type = GFX_FW_TYPE_RLC_V;
2159 break;
2160 case AMDGPU_UCODE_ID_RLC_G:
2161 *type = GFX_FW_TYPE_RLC_G;
2162 break;
2163 case AMDGPU_UCODE_ID_RLC_RESTORE_LIST_CNTL:
2164 *type = GFX_FW_TYPE_RLC_RESTORE_LIST_SRM_CNTL;
2165 break;
2166 case AMDGPU_UCODE_ID_RLC_RESTORE_LIST_GPM_MEM:
2167 *type = GFX_FW_TYPE_RLC_RESTORE_LIST_GPM_MEM;
2168 break;
2169 case AMDGPU_UCODE_ID_RLC_RESTORE_LIST_SRM_MEM:
2170 *type = GFX_FW_TYPE_RLC_RESTORE_LIST_SRM_MEM;
2171 break;
2172 case AMDGPU_UCODE_ID_RLC_IRAM:
2173 *type = GFX_FW_TYPE_RLC_IRAM;
2174 break;
2175 case AMDGPU_UCODE_ID_RLC_DRAM:
2176 *type = GFX_FW_TYPE_RLC_DRAM_BOOT;
2177 break;
2178 case AMDGPU_UCODE_ID_GLOBAL_TAP_DELAYS:
2179 *type = GFX_FW_TYPE_GLOBAL_TAP_DELAYS;
2180 break;
2181 case AMDGPU_UCODE_ID_SE0_TAP_DELAYS:
2182 *type = GFX_FW_TYPE_SE0_TAP_DELAYS;
2183 break;
2184 case AMDGPU_UCODE_ID_SE1_TAP_DELAYS:
2185 *type = GFX_FW_TYPE_SE1_TAP_DELAYS;
2186 break;
2187 case AMDGPU_UCODE_ID_SE2_TAP_DELAYS:
2188 *type = GFX_FW_TYPE_SE2_TAP_DELAYS;
2189 break;
2190 case AMDGPU_UCODE_ID_SE3_TAP_DELAYS:
2191 *type = GFX_FW_TYPE_SE3_TAP_DELAYS;
2192 break;
2193 case AMDGPU_UCODE_ID_SMC:
2194 *type = GFX_FW_TYPE_SMU;
2195 break;
2196 case AMDGPU_UCODE_ID_PPTABLE:
2197 *type = GFX_FW_TYPE_PPTABLE;
2198 break;
2199 case AMDGPU_UCODE_ID_UVD:
2200 *type = GFX_FW_TYPE_UVD;
2201 break;
2202 case AMDGPU_UCODE_ID_UVD1:
2203 *type = GFX_FW_TYPE_UVD1;
2204 break;
2205 case AMDGPU_UCODE_ID_VCE:
2206 *type = GFX_FW_TYPE_VCE;
2207 break;
2208 case AMDGPU_UCODE_ID_VCN:
2209 *type = GFX_FW_TYPE_VCN;
2210 break;
2211 case AMDGPU_UCODE_ID_VCN1:
2212 *type = GFX_FW_TYPE_VCN1;
2213 break;
2214 case AMDGPU_UCODE_ID_DMCU_ERAM:
2215 *type = GFX_FW_TYPE_DMCU_ERAM;
2216 break;
2217 case AMDGPU_UCODE_ID_DMCU_INTV:
2218 *type = GFX_FW_TYPE_DMCU_ISR;
2219 break;
2220 case AMDGPU_UCODE_ID_VCN0_RAM:
2221 *type = GFX_FW_TYPE_VCN0_RAM;
2222 break;
2223 case AMDGPU_UCODE_ID_VCN1_RAM:
2224 *type = GFX_FW_TYPE_VCN1_RAM;
2225 break;
2226 case AMDGPU_UCODE_ID_DMCUB:
2227 *type = GFX_FW_TYPE_DMUB;
2228 break;
2229 case AMDGPU_UCODE_ID_SDMA_UCODE_TH0:
2230 *type = GFX_FW_TYPE_SDMA_UCODE_TH0;
2231 break;
2232 case AMDGPU_UCODE_ID_SDMA_UCODE_TH1:
2233 *type = GFX_FW_TYPE_SDMA_UCODE_TH1;
2234 break;
2235 case AMDGPU_UCODE_ID_IMU_I:
2236 *type = GFX_FW_TYPE_IMU_I;
2237 break;
2238 case AMDGPU_UCODE_ID_IMU_D:
2239 *type = GFX_FW_TYPE_IMU_D;
2240 break;
2241 case AMDGPU_UCODE_ID_CP_RS64_PFP:
2242 *type = GFX_FW_TYPE_RS64_PFP;
2243 break;
2244 case AMDGPU_UCODE_ID_CP_RS64_ME:
2245 *type = GFX_FW_TYPE_RS64_ME;
2246 break;
2247 case AMDGPU_UCODE_ID_CP_RS64_MEC:
2248 *type = GFX_FW_TYPE_RS64_MEC;
2249 break;
2250 case AMDGPU_UCODE_ID_CP_RS64_PFP_P0_STACK:
2251 *type = GFX_FW_TYPE_RS64_PFP_P0_STACK;
2252 break;
2253 case AMDGPU_UCODE_ID_CP_RS64_PFP_P1_STACK:
2254 *type = GFX_FW_TYPE_RS64_PFP_P1_STACK;
2255 break;
2256 case AMDGPU_UCODE_ID_CP_RS64_ME_P0_STACK:
2257 *type = GFX_FW_TYPE_RS64_ME_P0_STACK;
2258 break;
2259 case AMDGPU_UCODE_ID_CP_RS64_ME_P1_STACK:
2260 *type = GFX_FW_TYPE_RS64_ME_P1_STACK;
2261 break;
2262 case AMDGPU_UCODE_ID_CP_RS64_MEC_P0_STACK:
2263 *type = GFX_FW_TYPE_RS64_MEC_P0_STACK;
2264 break;
2265 case AMDGPU_UCODE_ID_CP_RS64_MEC_P1_STACK:
2266 *type = GFX_FW_TYPE_RS64_MEC_P1_STACK;
2267 break;
2268 case AMDGPU_UCODE_ID_CP_RS64_MEC_P2_STACK:
2269 *type = GFX_FW_TYPE_RS64_MEC_P2_STACK;
2270 break;
2271 case AMDGPU_UCODE_ID_CP_RS64_MEC_P3_STACK:
2272 *type = GFX_FW_TYPE_RS64_MEC_P3_STACK;
2273 break;
2274 case AMDGPU_UCODE_ID_MAXIMUM:
2275 default:
2276 return -EINVAL;
2277 }
2278
2279 return 0;
2280}
2281
2282static void psp_print_fw_hdr(struct psp_context *psp,
2283 struct amdgpu_firmware_info *ucode)
2284{
2285 struct amdgpu_device *adev = psp->adev;
2286 struct common_firmware_header *hdr;
2287
2288 switch (ucode->ucode_id) {
2289 case AMDGPU_UCODE_ID_SDMA0:
2290 case AMDGPU_UCODE_ID_SDMA1:
2291 case AMDGPU_UCODE_ID_SDMA2:
2292 case AMDGPU_UCODE_ID_SDMA3:
2293 case AMDGPU_UCODE_ID_SDMA4:
2294 case AMDGPU_UCODE_ID_SDMA5:
2295 case AMDGPU_UCODE_ID_SDMA6:
2296 case AMDGPU_UCODE_ID_SDMA7:
2297 hdr = (struct common_firmware_header *)
2298 adev->sdma.instance[ucode->ucode_id - AMDGPU_UCODE_ID_SDMA0].fw->data;
2299 amdgpu_ucode_print_sdma_hdr(hdr);
2300 break;
2301 case AMDGPU_UCODE_ID_CP_CE:
2302 hdr = (struct common_firmware_header *)adev->gfx.ce_fw->data;
2303 amdgpu_ucode_print_gfx_hdr(hdr);
2304 break;
2305 case AMDGPU_UCODE_ID_CP_PFP:
2306 hdr = (struct common_firmware_header *)adev->gfx.pfp_fw->data;
2307 amdgpu_ucode_print_gfx_hdr(hdr);
2308 break;
2309 case AMDGPU_UCODE_ID_CP_ME:
2310 hdr = (struct common_firmware_header *)adev->gfx.me_fw->data;
2311 amdgpu_ucode_print_gfx_hdr(hdr);
2312 break;
2313 case AMDGPU_UCODE_ID_CP_MEC1:
2314 hdr = (struct common_firmware_header *)adev->gfx.mec_fw->data;
2315 amdgpu_ucode_print_gfx_hdr(hdr);
2316 break;
2317 case AMDGPU_UCODE_ID_RLC_G:
2318 hdr = (struct common_firmware_header *)adev->gfx.rlc_fw->data;
2319 amdgpu_ucode_print_rlc_hdr(hdr);
2320 break;
2321 case AMDGPU_UCODE_ID_SMC:
2322 hdr = (struct common_firmware_header *)adev->pm.fw->data;
2323 amdgpu_ucode_print_smc_hdr(hdr);
2324 break;
2325 default:
2326 break;
2327 }
2328}
2329
2330static int psp_prep_load_ip_fw_cmd_buf(struct amdgpu_firmware_info *ucode,
2331 struct psp_gfx_cmd_resp *cmd)
2332{
2333 int ret;
2334 uint64_t fw_mem_mc_addr = ucode->mc_addr;
2335
2336 cmd->cmd_id = GFX_CMD_ID_LOAD_IP_FW;
2337 cmd->cmd.cmd_load_ip_fw.fw_phy_addr_lo = lower_32_bits(fw_mem_mc_addr);
2338 cmd->cmd.cmd_load_ip_fw.fw_phy_addr_hi = upper_32_bits(fw_mem_mc_addr);
2339 cmd->cmd.cmd_load_ip_fw.fw_size = ucode->ucode_size;
2340
2341 ret = psp_get_fw_type(ucode, &cmd->cmd.cmd_load_ip_fw.fw_type);
2342 if (ret)
2343 DRM_ERROR("Unknown firmware type\n");
2344
2345 return ret;
2346}
2347
2348static int psp_execute_non_psp_fw_load(struct psp_context *psp,
2349 struct amdgpu_firmware_info *ucode)
2350{
2351 int ret = 0;
2352 struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
2353
2354 ret = psp_prep_load_ip_fw_cmd_buf(ucode, cmd);
2355 if (!ret) {
2356 ret = psp_cmd_submit_buf(psp, ucode, cmd,
2357 psp->fence_buf_mc_addr);
2358 }
2359
2360 release_psp_cmd_buf(psp);
2361
2362 return ret;
2363}
2364
2365static int psp_load_smu_fw(struct psp_context *psp)
2366{
2367 int ret;
2368 struct amdgpu_device *adev = psp->adev;
2369 struct amdgpu_firmware_info *ucode =
2370 &adev->firmware.ucode[AMDGPU_UCODE_ID_SMC];
2371 struct amdgpu_ras *ras = psp->ras_context.ras;
2372
2373 /*
2374 * Skip SMU FW reloading in case of using BACO for runpm only,
2375 * as SMU is always alive.
2376 */
2377 if (adev->in_runpm && (adev->pm.rpm_mode == AMDGPU_RUNPM_BACO))
2378 return 0;
2379
2380 if (!ucode->fw || amdgpu_sriov_vf(psp->adev))
2381 return 0;
2382
2383 if ((amdgpu_in_reset(adev) &&
2384 ras && adev->ras_enabled &&
2385 (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 4) ||
2386 adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 2)))) {
2387 ret = amdgpu_dpm_set_mp1_state(adev, PP_MP1_STATE_UNLOAD);
2388 if (ret) {
2389 DRM_WARN("Failed to set MP1 state prepare for reload\n");
2390 }
2391 }
2392
2393 ret = psp_execute_non_psp_fw_load(psp, ucode);
2394
2395 if (ret)
2396 DRM_ERROR("PSP load smu failed!\n");
2397
2398 return ret;
2399}
2400
2401static bool fw_load_skip_check(struct psp_context *psp,
2402 struct amdgpu_firmware_info *ucode)
2403{
2404 if (!ucode->fw)
2405 return true;
2406
2407 if (ucode->ucode_id == AMDGPU_UCODE_ID_SMC &&
2408 (psp_smu_reload_quirk(psp) ||
2409 psp->autoload_supported ||
2410 psp->pmfw_centralized_cstate_management))
2411 return true;
2412
2413 if (amdgpu_sriov_vf(psp->adev) &&
2414 (ucode->ucode_id == AMDGPU_UCODE_ID_SDMA0
2415 || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA1
2416 || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA2
2417 || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA3
2418 || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA4
2419 || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA5
2420 || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA6
2421 || ucode->ucode_id == AMDGPU_UCODE_ID_SDMA7
2422 || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_G
2423 || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_RESTORE_LIST_CNTL
2424 || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_RESTORE_LIST_GPM_MEM
2425 || ucode->ucode_id == AMDGPU_UCODE_ID_RLC_RESTORE_LIST_SRM_MEM
2426 || ucode->ucode_id == AMDGPU_UCODE_ID_SMC))
2427 /*skip ucode loading in SRIOV VF */
2428 return true;
2429
2430 if (psp->autoload_supported &&
2431 (ucode->ucode_id == AMDGPU_UCODE_ID_CP_MEC1_JT ||
2432 ucode->ucode_id == AMDGPU_UCODE_ID_CP_MEC2_JT))
2433 /* skip mec JT when autoload is enabled */
2434 return true;
2435
2436 return false;
2437}
2438
2439int psp_load_fw_list(struct psp_context *psp,
2440 struct amdgpu_firmware_info **ucode_list, int ucode_count)
2441{
2442 int ret = 0, i;
2443 struct amdgpu_firmware_info *ucode;
2444
2445 for (i = 0; i < ucode_count; ++i) {
2446 ucode = ucode_list[i];
2447 psp_print_fw_hdr(psp, ucode);
2448 ret = psp_execute_non_psp_fw_load(psp, ucode);
2449 if (ret)
2450 return ret;
2451 }
2452 return ret;
2453}
2454
2455static int psp_load_non_psp_fw(struct psp_context *psp)
2456{
2457 int i, ret;
2458 struct amdgpu_firmware_info *ucode;
2459 struct amdgpu_device *adev = psp->adev;
2460
2461 if (psp->autoload_supported &&
2462 !psp->pmfw_centralized_cstate_management) {
2463 ret = psp_load_smu_fw(psp);
2464 if (ret)
2465 return ret;
2466 }
2467
2468 for (i = 0; i < adev->firmware.max_ucodes; i++) {
2469 ucode = &adev->firmware.ucode[i];
2470
2471 if (ucode->ucode_id == AMDGPU_UCODE_ID_SMC &&
2472 !fw_load_skip_check(psp, ucode)) {
2473 ret = psp_load_smu_fw(psp);
2474 if (ret)
2475 return ret;
2476 continue;
2477 }
2478
2479 if (fw_load_skip_check(psp, ucode))
2480 continue;
2481
2482 if (psp->autoload_supported &&
2483 (adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 7) ||
2484 adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 11) ||
2485 adev->ip_versions[MP0_HWIP][0] == IP_VERSION(11, 0, 12)) &&
2486 (ucode->ucode_id == AMDGPU_UCODE_ID_SDMA1 ||
2487 ucode->ucode_id == AMDGPU_UCODE_ID_SDMA2 ||
2488 ucode->ucode_id == AMDGPU_UCODE_ID_SDMA3))
2489 /* PSP only receive one SDMA fw for sienna_cichlid,
2490 * as all four sdma fw are same */
2491 continue;
2492
2493 psp_print_fw_hdr(psp, ucode);
2494
2495 ret = psp_execute_non_psp_fw_load(psp, ucode);
2496 if (ret)
2497 return ret;
2498
2499 /* Start rlc autoload after psp recieved all the gfx firmware */
2500 if (psp->autoload_supported && ucode->ucode_id == (amdgpu_sriov_vf(adev) ?
2501 AMDGPU_UCODE_ID_CP_MEC2 : AMDGPU_UCODE_ID_RLC_G)) {
2502 ret = psp_rlc_autoload_start(psp);
2503 if (ret) {
2504 DRM_ERROR("Failed to start rlc autoload\n");
2505 return ret;
2506 }
2507 }
2508 }
2509
2510 return 0;
2511}
2512
2513static int psp_load_fw(struct amdgpu_device *adev)
2514{
2515 int ret;
2516 struct psp_context *psp = &adev->psp;
2517
2518 if (amdgpu_sriov_vf(adev) && amdgpu_in_reset(adev)) {
2519 /* should not destroy ring, only stop */
2520 psp_ring_stop(psp, PSP_RING_TYPE__KM);
2521 } else {
2522 memset(psp->fence_buf, 0, PSP_FENCE_BUFFER_SIZE);
2523
2524 ret = psp_ring_init(psp, PSP_RING_TYPE__KM);
2525 if (ret) {
2526 DRM_ERROR("PSP ring init failed!\n");
2527 goto failed;
2528 }
2529 }
2530
2531 ret = psp_hw_start(psp);
2532 if (ret)
2533 goto failed;
2534
2535 ret = psp_load_non_psp_fw(psp);
2536 if (ret)
2537 goto failed1;
2538
2539 ret = psp_asd_initialize(psp);
2540 if (ret) {
2541 DRM_ERROR("PSP load asd failed!\n");
2542 goto failed1;
2543 }
2544
2545 ret = psp_rl_load(adev);
2546 if (ret) {
2547 DRM_ERROR("PSP load RL failed!\n");
2548 goto failed1;
2549 }
2550
2551 if (amdgpu_sriov_vf(adev) && amdgpu_in_reset(adev)) {
2552 if (adev->gmc.xgmi.num_physical_nodes > 1) {
2553 ret = psp_xgmi_initialize(psp, false, true);
2554 /* Warning the XGMI seesion initialize failure
2555 * Instead of stop driver initialization
2556 */
2557 if (ret)
2558 dev_err(psp->adev->dev,
2559 "XGMI: Failed to initialize XGMI session\n");
2560 }
2561 }
2562
2563 if (psp->ta_fw) {
2564 ret = psp_ras_initialize(psp);
2565 if (ret)
2566 dev_err(psp->adev->dev,
2567 "RAS: Failed to initialize RAS\n");
2568
2569 ret = psp_hdcp_initialize(psp);
2570 if (ret)
2571 dev_err(psp->adev->dev,
2572 "HDCP: Failed to initialize HDCP\n");
2573
2574 ret = psp_dtm_initialize(psp);
2575 if (ret)
2576 dev_err(psp->adev->dev,
2577 "DTM: Failed to initialize DTM\n");
2578
2579 ret = psp_rap_initialize(psp);
2580 if (ret)
2581 dev_err(psp->adev->dev,
2582 "RAP: Failed to initialize RAP\n");
2583
2584 ret = psp_securedisplay_initialize(psp);
2585 if (ret)
2586 dev_err(psp->adev->dev,
2587 "SECUREDISPLAY: Failed to initialize SECUREDISPLAY\n");
2588 }
2589
2590 return 0;
2591
2592failed1:
2593 psp_free_shared_bufs(psp);
2594failed:
2595 /*
2596 * all cleanup jobs (xgmi terminate, ras terminate,
2597 * ring destroy, cmd/fence/fw buffers destory,
2598 * psp->cmd destory) are delayed to psp_hw_fini
2599 */
2600 psp_ring_destroy(psp, PSP_RING_TYPE__KM);
2601 return ret;
2602}
2603
2604static int psp_hw_init(void *handle)
2605{
2606 int ret;
2607 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2608
2609 mutex_lock(&adev->firmware.mutex);
2610 /*
2611 * This sequence is just used on hw_init only once, no need on
2612 * resume.
2613 */
2614 ret = amdgpu_ucode_init_bo(adev);
2615 if (ret)
2616 goto failed;
2617
2618 ret = psp_load_fw(adev);
2619 if (ret) {
2620 DRM_ERROR("PSP firmware loading failed\n");
2621 goto failed;
2622 }
2623
2624 mutex_unlock(&adev->firmware.mutex);
2625 return 0;
2626
2627failed:
2628 adev->firmware.load_type = AMDGPU_FW_LOAD_DIRECT;
2629 mutex_unlock(&adev->firmware.mutex);
2630 return -EINVAL;
2631}
2632
2633static int psp_hw_fini(void *handle)
2634{
2635 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2636 struct psp_context *psp = &adev->psp;
2637
2638 if (psp->ta_fw) {
2639 psp_ras_terminate(psp);
2640 psp_securedisplay_terminate(psp);
2641 psp_rap_terminate(psp);
2642 psp_dtm_terminate(psp);
2643 psp_hdcp_terminate(psp);
2644 }
2645
2646 psp_asd_terminate(psp);
2647 psp_tmr_terminate(psp);
2648
2649 psp_ring_destroy(psp, PSP_RING_TYPE__KM);
2650
2651 psp_free_shared_bufs(psp);
2652
2653 return 0;
2654}
2655
2656static int psp_suspend(void *handle)
2657{
2658 int ret = 0;
2659 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2660 struct psp_context *psp = &adev->psp;
2661
2662 if (adev->gmc.xgmi.num_physical_nodes > 1 &&
2663 psp->xgmi_context.context.initialized) {
2664 ret = psp_xgmi_terminate(psp);
2665 if (ret) {
2666 DRM_ERROR("Failed to terminate xgmi ta\n");
2667 goto out;
2668 }
2669 }
2670
2671 if (psp->ta_fw) {
2672 ret = psp_ras_terminate(psp);
2673 if (ret) {
2674 DRM_ERROR("Failed to terminate ras ta\n");
2675 goto out;
2676 }
2677 ret = psp_hdcp_terminate(psp);
2678 if (ret) {
2679 DRM_ERROR("Failed to terminate hdcp ta\n");
2680 goto out;
2681 }
2682 ret = psp_dtm_terminate(psp);
2683 if (ret) {
2684 DRM_ERROR("Failed to terminate dtm ta\n");
2685 goto out;
2686 }
2687 ret = psp_rap_terminate(psp);
2688 if (ret) {
2689 DRM_ERROR("Failed to terminate rap ta\n");
2690 goto out;
2691 }
2692 ret = psp_securedisplay_terminate(psp);
2693 if (ret) {
2694 DRM_ERROR("Failed to terminate securedisplay ta\n");
2695 goto out;
2696 }
2697 }
2698
2699 ret = psp_asd_terminate(psp);
2700 if (ret) {
2701 DRM_ERROR("Failed to terminate asd\n");
2702 goto out;
2703 }
2704
2705 ret = psp_tmr_terminate(psp);
2706 if (ret) {
2707 DRM_ERROR("Failed to terminate tmr\n");
2708 goto out;
2709 }
2710
2711 ret = psp_ring_stop(psp, PSP_RING_TYPE__KM);
2712 if (ret) {
2713 DRM_ERROR("PSP ring stop failed\n");
2714 }
2715
2716out:
2717 psp_free_shared_bufs(psp);
2718
2719 return ret;
2720}
2721
2722static int psp_resume(void *handle)
2723{
2724 int ret;
2725 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2726 struct psp_context *psp = &adev->psp;
2727
2728 DRM_INFO("PSP is resuming...\n");
2729
2730 if (psp->mem_train_ctx.enable_mem_training) {
2731 ret = psp_mem_training(psp, PSP_MEM_TRAIN_RESUME);
2732 if (ret) {
2733 DRM_ERROR("Failed to process memory training!\n");
2734 return ret;
2735 }
2736 }
2737
2738 mutex_lock(&adev->firmware.mutex);
2739
2740 ret = psp_hw_start(psp);
2741 if (ret)
2742 goto failed;
2743
2744 ret = psp_load_non_psp_fw(psp);
2745 if (ret)
2746 goto failed;
2747
2748 ret = psp_asd_initialize(psp);
2749 if (ret) {
2750 DRM_ERROR("PSP load asd failed!\n");
2751 goto failed;
2752 }
2753
2754 ret = psp_rl_load(adev);
2755 if (ret) {
2756 dev_err(adev->dev, "PSP load RL failed!\n");
2757 goto failed;
2758 }
2759
2760 if (adev->gmc.xgmi.num_physical_nodes > 1) {
2761 ret = psp_xgmi_initialize(psp, false, true);
2762 /* Warning the XGMI seesion initialize failure
2763 * Instead of stop driver initialization
2764 */
2765 if (ret)
2766 dev_err(psp->adev->dev,
2767 "XGMI: Failed to initialize XGMI session\n");
2768 }
2769
2770 if (psp->ta_fw) {
2771 ret = psp_ras_initialize(psp);
2772 if (ret)
2773 dev_err(psp->adev->dev,
2774 "RAS: Failed to initialize RAS\n");
2775
2776 ret = psp_hdcp_initialize(psp);
2777 if (ret)
2778 dev_err(psp->adev->dev,
2779 "HDCP: Failed to initialize HDCP\n");
2780
2781 ret = psp_dtm_initialize(psp);
2782 if (ret)
2783 dev_err(psp->adev->dev,
2784 "DTM: Failed to initialize DTM\n");
2785
2786 ret = psp_rap_initialize(psp);
2787 if (ret)
2788 dev_err(psp->adev->dev,
2789 "RAP: Failed to initialize RAP\n");
2790
2791 ret = psp_securedisplay_initialize(psp);
2792 if (ret)
2793 dev_err(psp->adev->dev,
2794 "SECUREDISPLAY: Failed to initialize SECUREDISPLAY\n");
2795 }
2796
2797 mutex_unlock(&adev->firmware.mutex);
2798
2799 return 0;
2800
2801failed:
2802 DRM_ERROR("PSP resume failed\n");
2803 mutex_unlock(&adev->firmware.mutex);
2804 return ret;
2805}
2806
2807int psp_gpu_reset(struct amdgpu_device *adev)
2808{
2809 int ret;
2810
2811 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
2812 return 0;
2813
2814 mutex_lock(&adev->psp.mutex);
2815 ret = psp_mode1_reset(&adev->psp);
2816 mutex_unlock(&adev->psp.mutex);
2817
2818 return ret;
2819}
2820
2821int psp_rlc_autoload_start(struct psp_context *psp)
2822{
2823 int ret;
2824 struct psp_gfx_cmd_resp *cmd = acquire_psp_cmd_buf(psp);
2825
2826 cmd->cmd_id = GFX_CMD_ID_AUTOLOAD_RLC;
2827
2828 ret = psp_cmd_submit_buf(psp, NULL, cmd,
2829 psp->fence_buf_mc_addr);
2830
2831 release_psp_cmd_buf(psp);
2832
2833 return ret;
2834}
2835
2836int psp_update_vcn_sram(struct amdgpu_device *adev, int inst_idx,
2837 uint64_t cmd_gpu_addr, int cmd_size)
2838{
2839 struct amdgpu_firmware_info ucode = {0};
2840
2841 ucode.ucode_id = inst_idx ? AMDGPU_UCODE_ID_VCN1_RAM :
2842 AMDGPU_UCODE_ID_VCN0_RAM;
2843 ucode.mc_addr = cmd_gpu_addr;
2844 ucode.ucode_size = cmd_size;
2845
2846 return psp_execute_non_psp_fw_load(&adev->psp, &ucode);
2847}
2848
2849int psp_ring_cmd_submit(struct psp_context *psp,
2850 uint64_t cmd_buf_mc_addr,
2851 uint64_t fence_mc_addr,
2852 int index)
2853{
2854 unsigned int psp_write_ptr_reg = 0;
2855 struct psp_gfx_rb_frame *write_frame;
2856 struct psp_ring *ring = &psp->km_ring;
2857 struct psp_gfx_rb_frame *ring_buffer_start = ring->ring_mem;
2858 struct psp_gfx_rb_frame *ring_buffer_end = ring_buffer_start +
2859 ring->ring_size / sizeof(struct psp_gfx_rb_frame) - 1;
2860 struct amdgpu_device *adev = psp->adev;
2861 uint32_t ring_size_dw = ring->ring_size / 4;
2862 uint32_t rb_frame_size_dw = sizeof(struct psp_gfx_rb_frame) / 4;
2863
2864 /* KM (GPCOM) prepare write pointer */
2865 psp_write_ptr_reg = psp_ring_get_wptr(psp);
2866
2867 /* Update KM RB frame pointer to new frame */
2868 /* write_frame ptr increments by size of rb_frame in bytes */
2869 /* psp_write_ptr_reg increments by size of rb_frame in DWORDs */
2870 if ((psp_write_ptr_reg % ring_size_dw) == 0)
2871 write_frame = ring_buffer_start;
2872 else
2873 write_frame = ring_buffer_start + (psp_write_ptr_reg / rb_frame_size_dw);
2874 /* Check invalid write_frame ptr address */
2875 if ((write_frame < ring_buffer_start) || (ring_buffer_end < write_frame)) {
2876 DRM_ERROR("ring_buffer_start = %p; ring_buffer_end = %p; write_frame = %p\n",
2877 ring_buffer_start, ring_buffer_end, write_frame);
2878 DRM_ERROR("write_frame is pointing to address out of bounds\n");
2879 return -EINVAL;
2880 }
2881
2882 /* Initialize KM RB frame */
2883 memset(write_frame, 0, sizeof(struct psp_gfx_rb_frame));
2884
2885 /* Update KM RB frame */
2886 write_frame->cmd_buf_addr_hi = upper_32_bits(cmd_buf_mc_addr);
2887 write_frame->cmd_buf_addr_lo = lower_32_bits(cmd_buf_mc_addr);
2888 write_frame->fence_addr_hi = upper_32_bits(fence_mc_addr);
2889 write_frame->fence_addr_lo = lower_32_bits(fence_mc_addr);
2890 write_frame->fence_value = index;
2891 amdgpu_device_flush_hdp(adev, NULL);
2892
2893 /* Update the write Pointer in DWORDs */
2894 psp_write_ptr_reg = (psp_write_ptr_reg + rb_frame_size_dw) % ring_size_dw;
2895 psp_ring_set_wptr(psp, psp_write_ptr_reg);
2896 return 0;
2897}
2898
2899int psp_init_asd_microcode(struct psp_context *psp,
2900 const char *chip_name)
2901{
2902 struct amdgpu_device *adev = psp->adev;
2903 char fw_name[PSP_FW_NAME_LEN];
2904 const struct psp_firmware_header_v1_0 *asd_hdr;
2905 int err = 0;
2906
2907 if (!chip_name) {
2908 dev_err(adev->dev, "invalid chip name for asd microcode\n");
2909 return -EINVAL;
2910 }
2911
2912 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_asd.bin", chip_name);
2913 err = request_firmware(&adev->psp.asd_fw, fw_name, adev->dev);
2914 if (err)
2915 goto out;
2916
2917 err = amdgpu_ucode_validate(adev->psp.asd_fw);
2918 if (err)
2919 goto out;
2920
2921 asd_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.asd_fw->data;
2922 adev->psp.asd_context.bin_desc.fw_version = le32_to_cpu(asd_hdr->header.ucode_version);
2923 adev->psp.asd_context.bin_desc.feature_version = le32_to_cpu(asd_hdr->sos.fw_version);
2924 adev->psp.asd_context.bin_desc.size_bytes = le32_to_cpu(asd_hdr->header.ucode_size_bytes);
2925 adev->psp.asd_context.bin_desc.start_addr = (uint8_t *)asd_hdr +
2926 le32_to_cpu(asd_hdr->header.ucode_array_offset_bytes);
2927 return 0;
2928out:
2929 dev_err(adev->dev, "fail to initialize asd microcode\n");
2930 release_firmware(adev->psp.asd_fw);
2931 adev->psp.asd_fw = NULL;
2932 return err;
2933}
2934
2935int psp_init_toc_microcode(struct psp_context *psp,
2936 const char *chip_name)
2937{
2938 struct amdgpu_device *adev = psp->adev;
2939 char fw_name[PSP_FW_NAME_LEN];
2940 const struct psp_firmware_header_v1_0 *toc_hdr;
2941 int err = 0;
2942
2943 if (!chip_name) {
2944 dev_err(adev->dev, "invalid chip name for toc microcode\n");
2945 return -EINVAL;
2946 }
2947
2948 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_toc.bin", chip_name);
2949 err = request_firmware(&adev->psp.toc_fw, fw_name, adev->dev);
2950 if (err)
2951 goto out;
2952
2953 err = amdgpu_ucode_validate(adev->psp.toc_fw);
2954 if (err)
2955 goto out;
2956
2957 toc_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.toc_fw->data;
2958 adev->psp.toc.fw_version = le32_to_cpu(toc_hdr->header.ucode_version);
2959 adev->psp.toc.feature_version = le32_to_cpu(toc_hdr->sos.fw_version);
2960 adev->psp.toc.size_bytes = le32_to_cpu(toc_hdr->header.ucode_size_bytes);
2961 adev->psp.toc.start_addr = (uint8_t *)toc_hdr +
2962 le32_to_cpu(toc_hdr->header.ucode_array_offset_bytes);
2963 return 0;
2964out:
2965 dev_err(adev->dev, "fail to request/validate toc microcode\n");
2966 release_firmware(adev->psp.toc_fw);
2967 adev->psp.toc_fw = NULL;
2968 return err;
2969}
2970
2971static int parse_sos_bin_descriptor(struct psp_context *psp,
2972 const struct psp_fw_bin_desc *desc,
2973 const struct psp_firmware_header_v2_0 *sos_hdr)
2974{
2975 uint8_t *ucode_start_addr = NULL;
2976
2977 if (!psp || !desc || !sos_hdr)
2978 return -EINVAL;
2979
2980 ucode_start_addr = (uint8_t *)sos_hdr +
2981 le32_to_cpu(desc->offset_bytes) +
2982 le32_to_cpu(sos_hdr->header.ucode_array_offset_bytes);
2983
2984 switch (desc->fw_type) {
2985 case PSP_FW_TYPE_PSP_SOS:
2986 psp->sos.fw_version = le32_to_cpu(desc->fw_version);
2987 psp->sos.feature_version = le32_to_cpu(desc->fw_version);
2988 psp->sos.size_bytes = le32_to_cpu(desc->size_bytes);
2989 psp->sos.start_addr = ucode_start_addr;
2990 break;
2991 case PSP_FW_TYPE_PSP_SYS_DRV:
2992 psp->sys.fw_version = le32_to_cpu(desc->fw_version);
2993 psp->sys.feature_version = le32_to_cpu(desc->fw_version);
2994 psp->sys.size_bytes = le32_to_cpu(desc->size_bytes);
2995 psp->sys.start_addr = ucode_start_addr;
2996 break;
2997 case PSP_FW_TYPE_PSP_KDB:
2998 psp->kdb.fw_version = le32_to_cpu(desc->fw_version);
2999 psp->kdb.feature_version = le32_to_cpu(desc->fw_version);
3000 psp->kdb.size_bytes = le32_to_cpu(desc->size_bytes);
3001 psp->kdb.start_addr = ucode_start_addr;
3002 break;
3003 case PSP_FW_TYPE_PSP_TOC:
3004 psp->toc.fw_version = le32_to_cpu(desc->fw_version);
3005 psp->toc.feature_version = le32_to_cpu(desc->fw_version);
3006 psp->toc.size_bytes = le32_to_cpu(desc->size_bytes);
3007 psp->toc.start_addr = ucode_start_addr;
3008 break;
3009 case PSP_FW_TYPE_PSP_SPL:
3010 psp->spl.fw_version = le32_to_cpu(desc->fw_version);
3011 psp->spl.feature_version = le32_to_cpu(desc->fw_version);
3012 psp->spl.size_bytes = le32_to_cpu(desc->size_bytes);
3013 psp->spl.start_addr = ucode_start_addr;
3014 break;
3015 case PSP_FW_TYPE_PSP_RL:
3016 psp->rl.fw_version = le32_to_cpu(desc->fw_version);
3017 psp->rl.feature_version = le32_to_cpu(desc->fw_version);
3018 psp->rl.size_bytes = le32_to_cpu(desc->size_bytes);
3019 psp->rl.start_addr = ucode_start_addr;
3020 break;
3021 case PSP_FW_TYPE_PSP_SOC_DRV:
3022 psp->soc_drv.fw_version = le32_to_cpu(desc->fw_version);
3023 psp->soc_drv.feature_version = le32_to_cpu(desc->fw_version);
3024 psp->soc_drv.size_bytes = le32_to_cpu(desc->size_bytes);
3025 psp->soc_drv.start_addr = ucode_start_addr;
3026 break;
3027 case PSP_FW_TYPE_PSP_INTF_DRV:
3028 psp->intf_drv.fw_version = le32_to_cpu(desc->fw_version);
3029 psp->intf_drv.feature_version = le32_to_cpu(desc->fw_version);
3030 psp->intf_drv.size_bytes = le32_to_cpu(desc->size_bytes);
3031 psp->intf_drv.start_addr = ucode_start_addr;
3032 break;
3033 case PSP_FW_TYPE_PSP_DBG_DRV:
3034 psp->dbg_drv.fw_version = le32_to_cpu(desc->fw_version);
3035 psp->dbg_drv.feature_version = le32_to_cpu(desc->fw_version);
3036 psp->dbg_drv.size_bytes = le32_to_cpu(desc->size_bytes);
3037 psp->dbg_drv.start_addr = ucode_start_addr;
3038 break;
3039 default:
3040 dev_warn(psp->adev->dev, "Unsupported PSP FW type: %d\n", desc->fw_type);
3041 break;
3042 }
3043
3044 return 0;
3045}
3046
3047static int psp_init_sos_base_fw(struct amdgpu_device *adev)
3048{
3049 const struct psp_firmware_header_v1_0 *sos_hdr;
3050 const struct psp_firmware_header_v1_3 *sos_hdr_v1_3;
3051 uint8_t *ucode_array_start_addr;
3052
3053 sos_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.sos_fw->data;
3054 ucode_array_start_addr = (uint8_t *)sos_hdr +
3055 le32_to_cpu(sos_hdr->header.ucode_array_offset_bytes);
3056
3057 if (adev->gmc.xgmi.connected_to_cpu ||
3058 (adev->ip_versions[MP0_HWIP][0] != IP_VERSION(13, 0, 2))) {
3059 adev->psp.sos.fw_version = le32_to_cpu(sos_hdr->header.ucode_version);
3060 adev->psp.sos.feature_version = le32_to_cpu(sos_hdr->sos.fw_version);
3061
3062 adev->psp.sys.size_bytes = le32_to_cpu(sos_hdr->sos.offset_bytes);
3063 adev->psp.sys.start_addr = ucode_array_start_addr;
3064
3065 adev->psp.sos.size_bytes = le32_to_cpu(sos_hdr->sos.size_bytes);
3066 adev->psp.sos.start_addr = ucode_array_start_addr +
3067 le32_to_cpu(sos_hdr->sos.offset_bytes);
3068 } else {
3069 /* Load alternate PSP SOS FW */
3070 sos_hdr_v1_3 = (const struct psp_firmware_header_v1_3 *)adev->psp.sos_fw->data;
3071
3072 adev->psp.sos.fw_version = le32_to_cpu(sos_hdr_v1_3->sos_aux.fw_version);
3073 adev->psp.sos.feature_version = le32_to_cpu(sos_hdr_v1_3->sos_aux.fw_version);
3074
3075 adev->psp.sys.size_bytes = le32_to_cpu(sos_hdr_v1_3->sys_drv_aux.size_bytes);
3076 adev->psp.sys.start_addr = ucode_array_start_addr +
3077 le32_to_cpu(sos_hdr_v1_3->sys_drv_aux.offset_bytes);
3078
3079 adev->psp.sos.size_bytes = le32_to_cpu(sos_hdr_v1_3->sos_aux.size_bytes);
3080 adev->psp.sos.start_addr = ucode_array_start_addr +
3081 le32_to_cpu(sos_hdr_v1_3->sos_aux.offset_bytes);
3082 }
3083
3084 if ((adev->psp.sys.size_bytes == 0) || (adev->psp.sos.size_bytes == 0)) {
3085 dev_warn(adev->dev, "PSP SOS FW not available");
3086 return -EINVAL;
3087 }
3088
3089 return 0;
3090}
3091
3092int psp_init_sos_microcode(struct psp_context *psp,
3093 const char *chip_name)
3094{
3095 struct amdgpu_device *adev = psp->adev;
3096 char fw_name[PSP_FW_NAME_LEN];
3097 const struct psp_firmware_header_v1_0 *sos_hdr;
3098 const struct psp_firmware_header_v1_1 *sos_hdr_v1_1;
3099 const struct psp_firmware_header_v1_2 *sos_hdr_v1_2;
3100 const struct psp_firmware_header_v1_3 *sos_hdr_v1_3;
3101 const struct psp_firmware_header_v2_0 *sos_hdr_v2_0;
3102 int err = 0;
3103 uint8_t *ucode_array_start_addr;
3104 int fw_index = 0;
3105
3106 if (!chip_name) {
3107 dev_err(adev->dev, "invalid chip name for sos microcode\n");
3108 return -EINVAL;
3109 }
3110
3111 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_sos.bin", chip_name);
3112 err = request_firmware(&adev->psp.sos_fw, fw_name, adev->dev);
3113 if (err)
3114 goto out;
3115
3116 err = amdgpu_ucode_validate(adev->psp.sos_fw);
3117 if (err)
3118 goto out;
3119
3120 sos_hdr = (const struct psp_firmware_header_v1_0 *)adev->psp.sos_fw->data;
3121 ucode_array_start_addr = (uint8_t *)sos_hdr +
3122 le32_to_cpu(sos_hdr->header.ucode_array_offset_bytes);
3123 amdgpu_ucode_print_psp_hdr(&sos_hdr->header);
3124
3125 switch (sos_hdr->header.header_version_major) {
3126 case 1:
3127 err = psp_init_sos_base_fw(adev);
3128 if (err)
3129 goto out;
3130
3131 if (sos_hdr->header.header_version_minor == 1) {
3132 sos_hdr_v1_1 = (const struct psp_firmware_header_v1_1 *)adev->psp.sos_fw->data;
3133 adev->psp.toc.size_bytes = le32_to_cpu(sos_hdr_v1_1->toc.size_bytes);
3134 adev->psp.toc.start_addr = (uint8_t *)adev->psp.sys.start_addr +
3135 le32_to_cpu(sos_hdr_v1_1->toc.offset_bytes);
3136 adev->psp.kdb.size_bytes = le32_to_cpu(sos_hdr_v1_1->kdb.size_bytes);
3137 adev->psp.kdb.start_addr = (uint8_t *)adev->psp.sys.start_addr +
3138 le32_to_cpu(sos_hdr_v1_1->kdb.offset_bytes);
3139 }
3140 if (sos_hdr->header.header_version_minor == 2) {
3141 sos_hdr_v1_2 = (const struct psp_firmware_header_v1_2 *)adev->psp.sos_fw->data;
3142 adev->psp.kdb.size_bytes = le32_to_cpu(sos_hdr_v1_2->kdb.size_bytes);
3143 adev->psp.kdb.start_addr = (uint8_t *)adev->psp.sys.start_addr +
3144 le32_to_cpu(sos_hdr_v1_2->kdb.offset_bytes);
3145 }
3146 if (sos_hdr->header.header_version_minor == 3) {
3147 sos_hdr_v1_3 = (const struct psp_firmware_header_v1_3 *)adev->psp.sos_fw->data;
3148 adev->psp.toc.size_bytes = le32_to_cpu(sos_hdr_v1_3->v1_1.toc.size_bytes);
3149 adev->psp.toc.start_addr = ucode_array_start_addr +
3150 le32_to_cpu(sos_hdr_v1_3->v1_1.toc.offset_bytes);
3151 adev->psp.kdb.size_bytes = le32_to_cpu(sos_hdr_v1_3->v1_1.kdb.size_bytes);
3152 adev->psp.kdb.start_addr = ucode_array_start_addr +
3153 le32_to_cpu(sos_hdr_v1_3->v1_1.kdb.offset_bytes);
3154 adev->psp.spl.size_bytes = le32_to_cpu(sos_hdr_v1_3->spl.size_bytes);
3155 adev->psp.spl.start_addr = ucode_array_start_addr +
3156 le32_to_cpu(sos_hdr_v1_3->spl.offset_bytes);
3157 adev->psp.rl.size_bytes = le32_to_cpu(sos_hdr_v1_3->rl.size_bytes);
3158 adev->psp.rl.start_addr = ucode_array_start_addr +
3159 le32_to_cpu(sos_hdr_v1_3->rl.offset_bytes);
3160 }
3161 break;
3162 case 2:
3163 sos_hdr_v2_0 = (const struct psp_firmware_header_v2_0 *)adev->psp.sos_fw->data;
3164
3165 if (le32_to_cpu(sos_hdr_v2_0->psp_fw_bin_count) >= UCODE_MAX_PSP_PACKAGING) {
3166 dev_err(adev->dev, "packed SOS count exceeds maximum limit\n");
3167 err = -EINVAL;
3168 goto out;
3169 }
3170
3171 for (fw_index = 0; fw_index < le32_to_cpu(sos_hdr_v2_0->psp_fw_bin_count); fw_index++) {
3172 err = parse_sos_bin_descriptor(psp,
3173 &sos_hdr_v2_0->psp_fw_bin[fw_index],
3174 sos_hdr_v2_0);
3175 if (err)
3176 goto out;
3177 }
3178 break;
3179 default:
3180 dev_err(adev->dev,
3181 "unsupported psp sos firmware\n");
3182 err = -EINVAL;
3183 goto out;
3184 }
3185
3186 return 0;
3187out:
3188 dev_err(adev->dev,
3189 "failed to init sos firmware\n");
3190 release_firmware(adev->psp.sos_fw);
3191 adev->psp.sos_fw = NULL;
3192
3193 return err;
3194}
3195
3196static int parse_ta_bin_descriptor(struct psp_context *psp,
3197 const struct psp_fw_bin_desc *desc,
3198 const struct ta_firmware_header_v2_0 *ta_hdr)
3199{
3200 uint8_t *ucode_start_addr = NULL;
3201
3202 if (!psp || !desc || !ta_hdr)
3203 return -EINVAL;
3204
3205 ucode_start_addr = (uint8_t *)ta_hdr +
3206 le32_to_cpu(desc->offset_bytes) +
3207 le32_to_cpu(ta_hdr->header.ucode_array_offset_bytes);
3208
3209 switch (desc->fw_type) {
3210 case TA_FW_TYPE_PSP_ASD:
3211 psp->asd_context.bin_desc.fw_version = le32_to_cpu(desc->fw_version);
3212 psp->asd_context.bin_desc.feature_version = le32_to_cpu(desc->fw_version);
3213 psp->asd_context.bin_desc.size_bytes = le32_to_cpu(desc->size_bytes);
3214 psp->asd_context.bin_desc.start_addr = ucode_start_addr;
3215 break;
3216 case TA_FW_TYPE_PSP_XGMI:
3217 psp->xgmi_context.context.bin_desc.fw_version = le32_to_cpu(desc->fw_version);
3218 psp->xgmi_context.context.bin_desc.size_bytes = le32_to_cpu(desc->size_bytes);
3219 psp->xgmi_context.context.bin_desc.start_addr = ucode_start_addr;
3220 break;
3221 case TA_FW_TYPE_PSP_RAS:
3222 psp->ras_context.context.bin_desc.fw_version = le32_to_cpu(desc->fw_version);
3223 psp->ras_context.context.bin_desc.size_bytes = le32_to_cpu(desc->size_bytes);
3224 psp->ras_context.context.bin_desc.start_addr = ucode_start_addr;
3225 break;
3226 case TA_FW_TYPE_PSP_HDCP:
3227 psp->hdcp_context.context.bin_desc.fw_version = le32_to_cpu(desc->fw_version);
3228 psp->hdcp_context.context.bin_desc.size_bytes = le32_to_cpu(desc->size_bytes);
3229 psp->hdcp_context.context.bin_desc.start_addr = ucode_start_addr;
3230 break;
3231 case TA_FW_TYPE_PSP_DTM:
3232 psp->dtm_context.context.bin_desc.fw_version = le32_to_cpu(desc->fw_version);
3233 psp->dtm_context.context.bin_desc.size_bytes = le32_to_cpu(desc->size_bytes);
3234 psp->dtm_context.context.bin_desc.start_addr = ucode_start_addr;
3235 break;
3236 case TA_FW_TYPE_PSP_RAP:
3237 psp->rap_context.context.bin_desc.fw_version = le32_to_cpu(desc->fw_version);
3238 psp->rap_context.context.bin_desc.size_bytes = le32_to_cpu(desc->size_bytes);
3239 psp->rap_context.context.bin_desc.start_addr = ucode_start_addr;
3240 break;
3241 case TA_FW_TYPE_PSP_SECUREDISPLAY:
3242 psp->securedisplay_context.context.bin_desc.fw_version =
3243 le32_to_cpu(desc->fw_version);
3244 psp->securedisplay_context.context.bin_desc.size_bytes =
3245 le32_to_cpu(desc->size_bytes);
3246 psp->securedisplay_context.context.bin_desc.start_addr =
3247 ucode_start_addr;
3248 break;
3249 default:
3250 dev_warn(psp->adev->dev, "Unsupported TA type: %d\n", desc->fw_type);
3251 break;
3252 }
3253
3254 return 0;
3255}
3256
3257int psp_init_ta_microcode(struct psp_context *psp,
3258 const char *chip_name)
3259{
3260 struct amdgpu_device *adev = psp->adev;
3261 char fw_name[PSP_FW_NAME_LEN];
3262 const struct ta_firmware_header_v2_0 *ta_hdr;
3263 int err = 0;
3264 int ta_index = 0;
3265
3266 if (!chip_name) {
3267 dev_err(adev->dev, "invalid chip name for ta microcode\n");
3268 return -EINVAL;
3269 }
3270
3271 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_ta.bin", chip_name);
3272 err = request_firmware(&adev->psp.ta_fw, fw_name, adev->dev);
3273 if (err)
3274 goto out;
3275
3276 err = amdgpu_ucode_validate(adev->psp.ta_fw);
3277 if (err)
3278 goto out;
3279
3280 ta_hdr = (const struct ta_firmware_header_v2_0 *)adev->psp.ta_fw->data;
3281
3282 if (le16_to_cpu(ta_hdr->header.header_version_major) != 2) {
3283 dev_err(adev->dev, "unsupported TA header version\n");
3284 err = -EINVAL;
3285 goto out;
3286 }
3287
3288 if (le32_to_cpu(ta_hdr->ta_fw_bin_count) >= UCODE_MAX_PSP_PACKAGING) {
3289 dev_err(adev->dev, "packed TA count exceeds maximum limit\n");
3290 err = -EINVAL;
3291 goto out;
3292 }
3293
3294 for (ta_index = 0; ta_index < le32_to_cpu(ta_hdr->ta_fw_bin_count); ta_index++) {
3295 err = parse_ta_bin_descriptor(psp,
3296 &ta_hdr->ta_fw_bin[ta_index],
3297 ta_hdr);
3298 if (err)
3299 goto out;
3300 }
3301
3302 return 0;
3303out:
3304 dev_err(adev->dev, "fail to initialize ta microcode\n");
3305 release_firmware(adev->psp.ta_fw);
3306 adev->psp.ta_fw = NULL;
3307 return err;
3308}
3309
3310int psp_init_cap_microcode(struct psp_context *psp,
3311 const char *chip_name)
3312{
3313 struct amdgpu_device *adev = psp->adev;
3314 char fw_name[PSP_FW_NAME_LEN];
3315 const struct psp_firmware_header_v1_0 *cap_hdr_v1_0;
3316 struct amdgpu_firmware_info *info = NULL;
3317 int err = 0;
3318
3319 if (!chip_name) {
3320 dev_err(adev->dev, "invalid chip name for cap microcode\n");
3321 return -EINVAL;
3322 }
3323
3324 if (!amdgpu_sriov_vf(adev)) {
3325 dev_err(adev->dev, "cap microcode should only be loaded under SRIOV\n");
3326 return -EINVAL;
3327 }
3328
3329 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_cap.bin", chip_name);
3330 err = request_firmware(&adev->psp.cap_fw, fw_name, adev->dev);
3331 if (err) {
3332 dev_warn(adev->dev, "cap microcode does not exist, skip\n");
3333 err = 0;
3334 goto out;
3335 }
3336
3337 err = amdgpu_ucode_validate(adev->psp.cap_fw);
3338 if (err) {
3339 dev_err(adev->dev, "fail to initialize cap microcode\n");
3340 goto out;
3341 }
3342
3343 info = &adev->firmware.ucode[AMDGPU_UCODE_ID_CAP];
3344 info->ucode_id = AMDGPU_UCODE_ID_CAP;
3345 info->fw = adev->psp.cap_fw;
3346 cap_hdr_v1_0 = (const struct psp_firmware_header_v1_0 *)
3347 adev->psp.cap_fw->data;
3348 adev->firmware.fw_size += ALIGN(
3349 le32_to_cpu(cap_hdr_v1_0->header.ucode_size_bytes), PAGE_SIZE);
3350 adev->psp.cap_fw_version = le32_to_cpu(cap_hdr_v1_0->header.ucode_version);
3351 adev->psp.cap_feature_version = le32_to_cpu(cap_hdr_v1_0->sos.fw_version);
3352 adev->psp.cap_ucode_size = le32_to_cpu(cap_hdr_v1_0->header.ucode_size_bytes);
3353
3354 return 0;
3355
3356out:
3357 release_firmware(adev->psp.cap_fw);
3358 adev->psp.cap_fw = NULL;
3359 return err;
3360}
3361
3362static int psp_set_clockgating_state(void *handle,
3363 enum amd_clockgating_state state)
3364{
3365 return 0;
3366}
3367
3368static int psp_set_powergating_state(void *handle,
3369 enum amd_powergating_state state)
3370{
3371 return 0;
3372}
3373
3374static ssize_t psp_usbc_pd_fw_sysfs_read(struct device *dev,
3375 struct device_attribute *attr,
3376 char *buf)
3377{
3378 struct drm_device *ddev = dev_get_drvdata(dev);
3379 struct amdgpu_device *adev = drm_to_adev(ddev);
3380 uint32_t fw_ver;
3381 int ret;
3382
3383 if (!adev->ip_blocks[AMD_IP_BLOCK_TYPE_PSP].status.late_initialized) {
3384 DRM_INFO("PSP block is not ready yet.");
3385 return -EBUSY;
3386 }
3387
3388 mutex_lock(&adev->psp.mutex);
3389 ret = psp_read_usbc_pd_fw(&adev->psp, &fw_ver);
3390 mutex_unlock(&adev->psp.mutex);
3391
3392 if (ret) {
3393 DRM_ERROR("Failed to read USBC PD FW, err = %d", ret);
3394 return ret;
3395 }
3396
3397 return sysfs_emit(buf, "%x\n", fw_ver);
3398}
3399
3400static ssize_t psp_usbc_pd_fw_sysfs_write(struct device *dev,
3401 struct device_attribute *attr,
3402 const char *buf,
3403 size_t count)
3404{
3405 struct drm_device *ddev = dev_get_drvdata(dev);
3406 struct amdgpu_device *adev = drm_to_adev(ddev);
3407 int ret, idx;
3408 char fw_name[100];
3409 const struct firmware *usbc_pd_fw;
3410 struct amdgpu_bo *fw_buf_bo = NULL;
3411 uint64_t fw_pri_mc_addr;
3412 void *fw_pri_cpu_addr;
3413
3414 if (!adev->ip_blocks[AMD_IP_BLOCK_TYPE_PSP].status.late_initialized) {
3415 DRM_INFO("PSP block is not ready yet.");
3416 return -EBUSY;
3417 }
3418
3419 if (!drm_dev_enter(ddev, &idx))
3420 return -ENODEV;
3421
3422 snprintf(fw_name, sizeof(fw_name), "amdgpu/%s", buf);
3423 ret = request_firmware(&usbc_pd_fw, fw_name, adev->dev);
3424 if (ret)
3425 goto fail;
3426
3427 /* LFB address which is aligned to 1MB boundary per PSP request */
3428 ret = amdgpu_bo_create_kernel(adev, usbc_pd_fw->size, 0x100000,
3429 AMDGPU_GEM_DOMAIN_VRAM,
3430 &fw_buf_bo,
3431 &fw_pri_mc_addr,
3432 &fw_pri_cpu_addr);
3433 if (ret)
3434 goto rel_buf;
3435
3436 memcpy_toio(fw_pri_cpu_addr, usbc_pd_fw->data, usbc_pd_fw->size);
3437
3438 mutex_lock(&adev->psp.mutex);
3439 ret = psp_load_usbc_pd_fw(&adev->psp, fw_pri_mc_addr);
3440 mutex_unlock(&adev->psp.mutex);
3441
3442 amdgpu_bo_free_kernel(&fw_buf_bo, &fw_pri_mc_addr, &fw_pri_cpu_addr);
3443
3444rel_buf:
3445 release_firmware(usbc_pd_fw);
3446fail:
3447 if (ret) {
3448 DRM_ERROR("Failed to load USBC PD FW, err = %d", ret);
3449 count = ret;
3450 }
3451
3452 drm_dev_exit(idx);
3453 return count;
3454}
3455
3456void psp_copy_fw(struct psp_context *psp, uint8_t *start_addr, uint32_t bin_size)
3457{
3458 int idx;
3459
3460 if (!drm_dev_enter(adev_to_drm(psp->adev), &idx))
3461 return;
3462
3463 memset(psp->fw_pri_buf, 0, PSP_1_MEG);
3464 memcpy(psp->fw_pri_buf, start_addr, bin_size);
3465
3466 drm_dev_exit(idx);
3467}
3468
3469static DEVICE_ATTR(usbc_pd_fw, S_IRUGO | S_IWUSR,
3470 psp_usbc_pd_fw_sysfs_read,
3471 psp_usbc_pd_fw_sysfs_write);
3472
3473int is_psp_fw_valid(struct psp_bin_desc bin)
3474{
3475 return bin.size_bytes;
3476}
3477
3478static ssize_t amdgpu_psp_vbflash_write(struct file *filp, struct kobject *kobj,
3479 struct bin_attribute *bin_attr,
3480 char *buffer, loff_t pos, size_t count)
3481{
3482 struct device *dev = kobj_to_dev(kobj);
3483 struct drm_device *ddev = dev_get_drvdata(dev);
3484 struct amdgpu_device *adev = drm_to_adev(ddev);
3485
3486 adev->psp.vbflash_done = false;
3487
3488 /* Safeguard against memory drain */
3489 if (adev->psp.vbflash_image_size > AMD_VBIOS_FILE_MAX_SIZE_B) {
3490 dev_err(adev->dev, "File size cannot exceed %u", AMD_VBIOS_FILE_MAX_SIZE_B);
3491 kvfree(adev->psp.vbflash_tmp_buf);
3492 adev->psp.vbflash_tmp_buf = NULL;
3493 adev->psp.vbflash_image_size = 0;
3494 return -ENOMEM;
3495 }
3496
3497 /* TODO Just allocate max for now and optimize to realloc later if needed */
3498 if (!adev->psp.vbflash_tmp_buf) {
3499 adev->psp.vbflash_tmp_buf = kvmalloc(AMD_VBIOS_FILE_MAX_SIZE_B, GFP_KERNEL);
3500 if (!adev->psp.vbflash_tmp_buf)
3501 return -ENOMEM;
3502 }
3503
3504 mutex_lock(&adev->psp.mutex);
3505 memcpy(adev->psp.vbflash_tmp_buf + pos, buffer, count);
3506 adev->psp.vbflash_image_size += count;
3507 mutex_unlock(&adev->psp.mutex);
3508
3509 dev_info(adev->dev, "VBIOS flash write PSP done");
3510
3511 return count;
3512}
3513
3514static ssize_t amdgpu_psp_vbflash_read(struct file *filp, struct kobject *kobj,
3515 struct bin_attribute *bin_attr, char *buffer,
3516 loff_t pos, size_t count)
3517{
3518 struct device *dev = kobj_to_dev(kobj);
3519 struct drm_device *ddev = dev_get_drvdata(dev);
3520 struct amdgpu_device *adev = drm_to_adev(ddev);
3521 struct amdgpu_bo *fw_buf_bo = NULL;
3522 uint64_t fw_pri_mc_addr;
3523 void *fw_pri_cpu_addr;
3524 int ret;
3525
3526 dev_info(adev->dev, "VBIOS flash to PSP started");
3527
3528 ret = amdgpu_bo_create_kernel(adev, adev->psp.vbflash_image_size,
3529 AMDGPU_GPU_PAGE_SIZE,
3530 AMDGPU_GEM_DOMAIN_VRAM,
3531 &fw_buf_bo,
3532 &fw_pri_mc_addr,
3533 &fw_pri_cpu_addr);
3534 if (ret)
3535 goto rel_buf;
3536
3537 memcpy_toio(fw_pri_cpu_addr, adev->psp.vbflash_tmp_buf, adev->psp.vbflash_image_size);
3538
3539 mutex_lock(&adev->psp.mutex);
3540 ret = psp_update_spirom(&adev->psp, fw_pri_mc_addr);
3541 mutex_unlock(&adev->psp.mutex);
3542
3543 amdgpu_bo_free_kernel(&fw_buf_bo, &fw_pri_mc_addr, &fw_pri_cpu_addr);
3544
3545rel_buf:
3546 kvfree(adev->psp.vbflash_tmp_buf);
3547 adev->psp.vbflash_tmp_buf = NULL;
3548 adev->psp.vbflash_image_size = 0;
3549
3550 if (ret) {
3551 dev_err(adev->dev, "Failed to load VBIOS FW, err = %d", ret);
3552 return ret;
3553 }
3554
3555 dev_info(adev->dev, "VBIOS flash to PSP done");
3556 return 0;
3557}
3558
3559static ssize_t amdgpu_psp_vbflash_status(struct device *dev,
3560 struct device_attribute *attr,
3561 char *buf)
3562{
3563 struct drm_device *ddev = dev_get_drvdata(dev);
3564 struct amdgpu_device *adev = drm_to_adev(ddev);
3565 uint32_t vbflash_status;
3566
3567 vbflash_status = psp_vbflash_status(&adev->psp);
3568 if (!adev->psp.vbflash_done)
3569 vbflash_status = 0;
3570 else if (adev->psp.vbflash_done && !(vbflash_status & 0x80000000))
3571 vbflash_status = 1;
3572
3573 return sysfs_emit(buf, "0x%x\n", vbflash_status);
3574}
3575
3576static const struct bin_attribute psp_vbflash_bin_attr = {
3577 .attr = {.name = "psp_vbflash", .mode = 0664},
3578 .size = 0,
3579 .write = amdgpu_psp_vbflash_write,
3580 .read = amdgpu_psp_vbflash_read,
3581};
3582
3583static DEVICE_ATTR(psp_vbflash_status, 0444, amdgpu_psp_vbflash_status, NULL);
3584
3585int amdgpu_psp_sysfs_init(struct amdgpu_device *adev)
3586{
3587 int ret = 0;
3588 struct psp_context *psp = &adev->psp;
3589
3590 if (amdgpu_sriov_vf(adev))
3591 return -EINVAL;
3592
3593 switch (adev->ip_versions[MP0_HWIP][0]) {
3594 case IP_VERSION(13, 0, 0):
3595 case IP_VERSION(13, 0, 7):
3596 if (!psp->adev) {
3597 psp->adev = adev;
3598 psp_v13_0_set_psp_funcs(psp);
3599 }
3600 ret = sysfs_create_bin_file(&adev->dev->kobj, &psp_vbflash_bin_attr);
3601 if (ret)
3602 dev_err(adev->dev, "Failed to create device file psp_vbflash");
3603 ret = device_create_file(adev->dev, &dev_attr_psp_vbflash_status);
3604 if (ret)
3605 dev_err(adev->dev, "Failed to create device file psp_vbflash_status");
3606 return ret;
3607 default:
3608 return 0;
3609 }
3610}
3611
3612const struct amd_ip_funcs psp_ip_funcs = {
3613 .name = "psp",
3614 .early_init = psp_early_init,
3615 .late_init = NULL,
3616 .sw_init = psp_sw_init,
3617 .sw_fini = psp_sw_fini,
3618 .hw_init = psp_hw_init,
3619 .hw_fini = psp_hw_fini,
3620 .suspend = psp_suspend,
3621 .resume = psp_resume,
3622 .is_idle = NULL,
3623 .check_soft_reset = NULL,
3624 .wait_for_idle = NULL,
3625 .soft_reset = NULL,
3626 .set_clockgating_state = psp_set_clockgating_state,
3627 .set_powergating_state = psp_set_powergating_state,
3628};
3629
3630static int psp_sysfs_init(struct amdgpu_device *adev)
3631{
3632 int ret = device_create_file(adev->dev, &dev_attr_usbc_pd_fw);
3633
3634 if (ret)
3635 DRM_ERROR("Failed to create USBC PD FW control file!");
3636
3637 return ret;
3638}
3639
3640void amdgpu_psp_sysfs_fini(struct amdgpu_device *adev)
3641{
3642 sysfs_remove_bin_file(&adev->dev->kobj, &psp_vbflash_bin_attr);
3643 device_remove_file(adev->dev, &dev_attr_psp_vbflash_status);
3644}
3645
3646static void psp_sysfs_fini(struct amdgpu_device *adev)
3647{
3648 device_remove_file(adev->dev, &dev_attr_usbc_pd_fw);
3649}
3650
3651const struct amdgpu_ip_block_version psp_v3_1_ip_block =
3652{
3653 .type = AMD_IP_BLOCK_TYPE_PSP,
3654 .major = 3,
3655 .minor = 1,
3656 .rev = 0,
3657 .funcs = &psp_ip_funcs,
3658};
3659
3660const struct amdgpu_ip_block_version psp_v10_0_ip_block =
3661{
3662 .type = AMD_IP_BLOCK_TYPE_PSP,
3663 .major = 10,
3664 .minor = 0,
3665 .rev = 0,
3666 .funcs = &psp_ip_funcs,
3667};
3668
3669const struct amdgpu_ip_block_version psp_v11_0_ip_block =
3670{
3671 .type = AMD_IP_BLOCK_TYPE_PSP,
3672 .major = 11,
3673 .minor = 0,
3674 .rev = 0,
3675 .funcs = &psp_ip_funcs,
3676};
3677
3678const struct amdgpu_ip_block_version psp_v11_0_8_ip_block = {
3679 .type = AMD_IP_BLOCK_TYPE_PSP,
3680 .major = 11,
3681 .minor = 0,
3682 .rev = 8,
3683 .funcs = &psp_ip_funcs,
3684};
3685
3686const struct amdgpu_ip_block_version psp_v12_0_ip_block =
3687{
3688 .type = AMD_IP_BLOCK_TYPE_PSP,
3689 .major = 12,
3690 .minor = 0,
3691 .rev = 0,
3692 .funcs = &psp_ip_funcs,
3693};
3694
3695const struct amdgpu_ip_block_version psp_v13_0_ip_block = {
3696 .type = AMD_IP_BLOCK_TYPE_PSP,
3697 .major = 13,
3698 .minor = 0,
3699 .rev = 0,
3700 .funcs = &psp_ip_funcs,
3701};
3702
3703const struct amdgpu_ip_block_version psp_v13_0_4_ip_block = {
3704 .type = AMD_IP_BLOCK_TYPE_PSP,
3705 .major = 13,
3706 .minor = 0,
3707 .rev = 4,
3708 .funcs = &psp_ip_funcs,
3709};