2 * Copyright 2015 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
27 #include "smu_ucode_xfer_vi.h"
28 #include "ppatomctrl.h"
29 #include "cgs_common.h"
30 #include "smu7_ppsmc.h"
31 #include "smu7_smumgr.h"
32 #include "smu7_common.h"
34 #include "polaris10_pwrvirus.h"
36 #define SMU7_SMC_SIZE 0x20000
38 static int smu7_set_smc_sram_address(struct pp_hwmgr
*hwmgr
, uint32_t smc_addr
, uint32_t limit
)
40 PP_ASSERT_WITH_CODE((0 == (3 & smc_addr
)), "SMC address must be 4 byte aligned.", return -EINVAL
);
41 PP_ASSERT_WITH_CODE((limit
> (smc_addr
+ 3)), "SMC addr is beyond the SMC RAM area.", return -EINVAL
);
43 cgs_write_register(hwmgr
->device
, mmSMC_IND_INDEX_11
, smc_addr
);
44 PHM_WRITE_FIELD(hwmgr
->device
, SMC_IND_ACCESS_CNTL
, AUTO_INCREMENT_IND_11
, 0); /* on ci, SMC_IND_ACCESS_CNTL is different */
49 int smu7_copy_bytes_from_smc(struct pp_hwmgr
*hwmgr
, uint32_t smc_start_address
, uint32_t *dest
, uint32_t byte_count
, uint32_t limit
)
54 uint8_t i
, data_byte
[4] = {0};
55 uint32_t *pdata
= (uint32_t *)&data_byte
;
57 PP_ASSERT_WITH_CODE((0 == (3 & smc_start_address
)), "SMC address must be 4 byte aligned.", return -EINVAL
);
58 PP_ASSERT_WITH_CODE((limit
> (smc_start_address
+ byte_count
)), "SMC address is beyond the SMC RAM area.", return -EINVAL
);
60 addr
= smc_start_address
;
62 while (byte_count
>= 4) {
63 smu7_read_smc_sram_dword(hwmgr
, addr
, &data
, limit
);
65 *dest
= PP_SMC_TO_HOST_UL(data
);
73 smu7_read_smc_sram_dword(hwmgr
, addr
, &data
, limit
);
74 *pdata
= PP_SMC_TO_HOST_UL(data
);
75 /* Cast dest into byte type in dest_byte. This way, we don't overflow if the allocated memory is not 4-byte aligned. */
76 dest_byte
= (uint8_t *)dest
;
77 for (i
= 0; i
< byte_count
; i
++)
78 dest_byte
[i
] = data_byte
[i
];
85 int smu7_copy_bytes_to_smc(struct pp_hwmgr
*hwmgr
, uint32_t smc_start_address
,
86 const uint8_t *src
, uint32_t byte_count
, uint32_t limit
)
90 uint32_t original_data
;
94 PP_ASSERT_WITH_CODE((0 == (3 & smc_start_address
)), "SMC address must be 4 byte aligned.", return -EINVAL
);
95 PP_ASSERT_WITH_CODE((limit
> (smc_start_address
+ byte_count
)), "SMC address is beyond the SMC RAM area.", return -EINVAL
);
97 addr
= smc_start_address
;
99 while (byte_count
>= 4) {
100 /* Bytes are written into the SMC addres space with the MSB first. */
101 data
= src
[0] * 0x1000000 + src
[1] * 0x10000 + src
[2] * 0x100 + src
[3];
103 result
= smu7_set_smc_sram_address(hwmgr
, addr
, limit
);
108 cgs_write_register(hwmgr
->device
, mmSMC_IND_DATA_11
, data
);
115 if (0 != byte_count
) {
119 result
= smu7_set_smc_sram_address(hwmgr
, addr
, limit
);
125 original_data
= cgs_read_register(hwmgr
->device
, mmSMC_IND_DATA_11
);
127 extra_shift
= 8 * (4 - byte_count
);
129 while (byte_count
> 0) {
130 /* Bytes are written into the SMC addres space with the MSB first. */
131 data
= (0x100 * data
) + *src
++;
135 data
<<= extra_shift
;
137 data
|= (original_data
& ~((~0UL) << extra_shift
));
139 result
= smu7_set_smc_sram_address(hwmgr
, addr
, limit
);
144 cgs_write_register(hwmgr
->device
, mmSMC_IND_DATA_11
, data
);
151 int smu7_program_jump_on_start(struct pp_hwmgr
*hwmgr
)
153 static const unsigned char data
[4] = { 0xE0, 0x00, 0x80, 0x40 };
155 smu7_copy_bytes_to_smc(hwmgr
, 0x0, data
, 4, sizeof(data
)+1);
160 bool smu7_is_smc_ram_running(struct pp_hwmgr
*hwmgr
)
162 return ((0 == PHM_READ_VFPF_INDIRECT_FIELD(hwmgr
->device
, CGS_IND_REG__SMC
, SMC_SYSCON_CLOCK_CNTL_0
, ck_disable
))
163 && (0x20100 <= cgs_read_ind_register(hwmgr
->device
, CGS_IND_REG__SMC
, ixSMC_PC_C
)));
166 int smu7_send_msg_to_smc(struct pp_hwmgr
*hwmgr
, uint16_t msg
)
170 PHM_WAIT_FIELD_UNEQUAL(hwmgr
, SMC_RESP_0
, SMC_RESP
, 0);
172 ret
= PHM_READ_FIELD(hwmgr
->device
, SMC_RESP_0
, SMC_RESP
);
175 pr_debug("last message was not supported\n");
177 pr_info("\n last message was failed ret is %d\n", ret
);
179 cgs_write_register(hwmgr
->device
, mmSMC_RESP_0
, 0);
180 cgs_write_register(hwmgr
->device
, mmSMC_MESSAGE_0
, msg
);
182 PHM_WAIT_FIELD_UNEQUAL(hwmgr
, SMC_RESP_0
, SMC_RESP
, 0);
184 ret
= PHM_READ_FIELD(hwmgr
->device
, SMC_RESP_0
, SMC_RESP
);
187 pr_debug("message %x was not supported\n", msg
);
189 pr_info("\n failed to send message %x ret is %d \n", msg
, ret
);
194 int smu7_send_msg_to_smc_without_waiting(struct pp_hwmgr
*hwmgr
, uint16_t msg
)
196 cgs_write_register(hwmgr
->device
, mmSMC_MESSAGE_0
, msg
);
201 int smu7_send_msg_to_smc_with_parameter(struct pp_hwmgr
*hwmgr
, uint16_t msg
, uint32_t parameter
)
203 PHM_WAIT_FIELD_UNEQUAL(hwmgr
, SMC_RESP_0
, SMC_RESP
, 0);
205 cgs_write_register(hwmgr
->device
, mmSMC_MSG_ARG_0
, parameter
);
207 return smu7_send_msg_to_smc(hwmgr
, msg
);
210 int smu7_send_msg_to_smc_with_parameter_without_waiting(struct pp_hwmgr
*hwmgr
, uint16_t msg
, uint32_t parameter
)
212 cgs_write_register(hwmgr
->device
, mmSMC_MSG_ARG_0
, parameter
);
214 return smu7_send_msg_to_smc_without_waiting(hwmgr
, msg
);
217 int smu7_send_msg_to_smc_offset(struct pp_hwmgr
*hwmgr
)
219 cgs_write_register(hwmgr
->device
, mmSMC_MSG_ARG_0
, 0x20000);
221 cgs_write_register(hwmgr
->device
, mmSMC_MESSAGE_0
, PPSMC_MSG_Test
);
223 PHM_WAIT_FIELD_UNEQUAL(hwmgr
, SMC_RESP_0
, SMC_RESP
, 0);
225 if (1 != PHM_READ_FIELD(hwmgr
->device
, SMC_RESP_0
, SMC_RESP
))
226 pr_info("Failed to send Message.\n");
231 enum cgs_ucode_id
smu7_convert_fw_type_to_cgs(uint32_t fw_type
)
233 enum cgs_ucode_id result
= CGS_UCODE_ID_MAXIMUM
;
237 result
= CGS_UCODE_ID_SMU
;
239 case UCODE_ID_SMU_SK
:
240 result
= CGS_UCODE_ID_SMU_SK
;
243 result
= CGS_UCODE_ID_SDMA0
;
246 result
= CGS_UCODE_ID_SDMA1
;
249 result
= CGS_UCODE_ID_CP_CE
;
251 case UCODE_ID_CP_PFP
:
252 result
= CGS_UCODE_ID_CP_PFP
;
255 result
= CGS_UCODE_ID_CP_ME
;
257 case UCODE_ID_CP_MEC
:
258 result
= CGS_UCODE_ID_CP_MEC
;
260 case UCODE_ID_CP_MEC_JT1
:
261 result
= CGS_UCODE_ID_CP_MEC_JT1
;
263 case UCODE_ID_CP_MEC_JT2
:
264 result
= CGS_UCODE_ID_CP_MEC_JT2
;
267 result
= CGS_UCODE_ID_RLC_G
;
269 case UCODE_ID_MEC_STORAGE
:
270 result
= CGS_UCODE_ID_STORAGE
;
280 int smu7_read_smc_sram_dword(struct pp_hwmgr
*hwmgr
, uint32_t smc_addr
, uint32_t *value
, uint32_t limit
)
284 result
= smu7_set_smc_sram_address(hwmgr
, smc_addr
, limit
);
286 *value
= result
? 0 : cgs_read_register(hwmgr
->device
, mmSMC_IND_DATA_11
);
291 int smu7_write_smc_sram_dword(struct pp_hwmgr
*hwmgr
, uint32_t smc_addr
, uint32_t value
, uint32_t limit
)
295 result
= smu7_set_smc_sram_address(hwmgr
, smc_addr
, limit
);
300 cgs_write_register(hwmgr
->device
, mmSMC_IND_DATA_11
, value
);
305 /* Convert the firmware type to SMU type mask. For MEC, we need to check all MEC related type */
307 static uint32_t smu7_get_mask_for_firmware_type(uint32_t fw_type
)
313 result
= UCODE_ID_SDMA0_MASK
;
316 result
= UCODE_ID_SDMA1_MASK
;
319 result
= UCODE_ID_CP_CE_MASK
;
321 case UCODE_ID_CP_PFP
:
322 result
= UCODE_ID_CP_PFP_MASK
;
325 result
= UCODE_ID_CP_ME_MASK
;
327 case UCODE_ID_CP_MEC
:
328 case UCODE_ID_CP_MEC_JT1
:
329 case UCODE_ID_CP_MEC_JT2
:
330 result
= UCODE_ID_CP_MEC_MASK
;
333 result
= UCODE_ID_RLC_G_MASK
;
336 pr_info("UCode type is out of range! \n");
343 static int smu7_populate_single_firmware_entry(struct pp_hwmgr
*hwmgr
,
345 struct SMU_Entry
*entry
)
348 struct cgs_firmware_info info
= {0};
350 result
= cgs_get_firmware_info(hwmgr
->device
,
351 smu7_convert_fw_type_to_cgs(fw_type
),
355 entry
->version
= info
.fw_version
;
356 entry
->id
= (uint16_t)fw_type
;
357 entry
->image_addr_high
= upper_32_bits(info
.mc_addr
);
358 entry
->image_addr_low
= lower_32_bits(info
.mc_addr
);
359 entry
->meta_data_addr_high
= 0;
360 entry
->meta_data_addr_low
= 0;
362 /* digest need be excluded out */
364 info
.image_size
-= 20;
365 entry
->data_size_byte
= info
.image_size
;
366 entry
->num_register_entries
= 0;
369 if ((fw_type
== UCODE_ID_RLC_G
)
370 || (fw_type
== UCODE_ID_CP_MEC
))
378 int smu7_request_smu_load_fw(struct pp_hwmgr
*hwmgr
)
380 struct smu7_smumgr
*smu_data
= (struct smu7_smumgr
*)(hwmgr
->smu_backend
);
384 if (!hwmgr
->reload_fw
) {
385 pr_info("skip reloading...\n");
389 if (smu_data
->soft_regs_start
)
390 cgs_write_ind_register(hwmgr
->device
, CGS_IND_REG__SMC
,
391 smu_data
->soft_regs_start
+ smum_get_offsetof(hwmgr
,
392 SMU_SoftRegisters
, UcodeLoadStatus
),
395 if (hwmgr
->chip_id
> CHIP_TOPAZ
) { /* add support for Topaz */
397 smu7_send_msg_to_smc_with_parameter(hwmgr
,
398 PPSMC_MSG_SMU_DRAM_ADDR_HI
,
399 upper_32_bits(smu_data
->smu_buffer
.mc_addr
));
400 smu7_send_msg_to_smc_with_parameter(hwmgr
,
401 PPSMC_MSG_SMU_DRAM_ADDR_LO
,
402 lower_32_bits(smu_data
->smu_buffer
.mc_addr
));
404 fw_to_load
= UCODE_ID_RLC_G_MASK
405 + UCODE_ID_SDMA0_MASK
406 + UCODE_ID_SDMA1_MASK
407 + UCODE_ID_CP_CE_MASK
408 + UCODE_ID_CP_ME_MASK
409 + UCODE_ID_CP_PFP_MASK
410 + UCODE_ID_CP_MEC_MASK
;
412 fw_to_load
= UCODE_ID_RLC_G_MASK
413 + UCODE_ID_SDMA0_MASK
414 + UCODE_ID_SDMA1_MASK
415 + UCODE_ID_CP_CE_MASK
416 + UCODE_ID_CP_ME_MASK
417 + UCODE_ID_CP_PFP_MASK
418 + UCODE_ID_CP_MEC_MASK
419 + UCODE_ID_CP_MEC_JT1_MASK
420 + UCODE_ID_CP_MEC_JT2_MASK
;
423 if (!smu_data
->toc
) {
424 struct SMU_DRAMData_TOC
*toc
;
426 smu_data
->toc
= kzalloc(sizeof(struct SMU_DRAMData_TOC
), GFP_KERNEL
);
430 toc
->num_entries
= 0;
431 toc
->structure_version
= 1;
433 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
434 UCODE_ID_RLC_G
, &toc
->entry
[toc
->num_entries
++]),
435 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
436 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
437 UCODE_ID_CP_CE
, &toc
->entry
[toc
->num_entries
++]),
438 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
439 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
440 UCODE_ID_CP_PFP
, &toc
->entry
[toc
->num_entries
++]),
441 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
442 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
443 UCODE_ID_CP_ME
, &toc
->entry
[toc
->num_entries
++]),
444 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
445 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
446 UCODE_ID_CP_MEC
, &toc
->entry
[toc
->num_entries
++]),
447 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
448 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
449 UCODE_ID_CP_MEC_JT1
, &toc
->entry
[toc
->num_entries
++]),
450 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
451 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
452 UCODE_ID_CP_MEC_JT2
, &toc
->entry
[toc
->num_entries
++]),
453 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
454 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
455 UCODE_ID_SDMA0
, &toc
->entry
[toc
->num_entries
++]),
456 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
457 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
458 UCODE_ID_SDMA1
, &toc
->entry
[toc
->num_entries
++]),
459 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
461 PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr
,
462 UCODE_ID_MEC_STORAGE
, &toc
->entry
[toc
->num_entries
++]),
463 "Failed to Get Firmware Entry.", r
= -EINVAL
; goto failed
);
465 memcpy_toio(smu_data
->header_buffer
.kaddr
, smu_data
->toc
,
466 sizeof(struct SMU_DRAMData_TOC
));
467 smu7_send_msg_to_smc_with_parameter(hwmgr
, PPSMC_MSG_DRV_DRAM_ADDR_HI
, upper_32_bits(smu_data
->header_buffer
.mc_addr
));
468 smu7_send_msg_to_smc_with_parameter(hwmgr
, PPSMC_MSG_DRV_DRAM_ADDR_LO
, lower_32_bits(smu_data
->header_buffer
.mc_addr
));
470 if (smu7_send_msg_to_smc_with_parameter(hwmgr
, PPSMC_MSG_LoadUcodes
, fw_to_load
))
471 pr_err("Fail to Request SMU Load uCode");
476 kfree(smu_data
->toc
);
477 smu_data
->toc
= NULL
;
481 /* Check if the FW has been loaded, SMU will not return if loading has not finished. */
482 int smu7_check_fw_load_finish(struct pp_hwmgr
*hwmgr
, uint32_t fw_type
)
484 struct smu7_smumgr
*smu_data
= (struct smu7_smumgr
*)(hwmgr
->smu_backend
);
485 uint32_t fw_mask
= smu7_get_mask_for_firmware_type(fw_type
);
488 ret
= phm_wait_on_indirect_register(hwmgr
, mmSMC_IND_INDEX_11
,
489 smu_data
->soft_regs_start
+ smum_get_offsetof(hwmgr
,
490 SMU_SoftRegisters
, UcodeLoadStatus
),
495 int smu7_reload_firmware(struct pp_hwmgr
*hwmgr
)
497 return hwmgr
->smumgr_funcs
->start_smu(hwmgr
);
500 static int smu7_upload_smc_firmware_data(struct pp_hwmgr
*hwmgr
, uint32_t length
, uint32_t *src
, uint32_t limit
)
502 uint32_t byte_count
= length
;
504 PP_ASSERT_WITH_CODE((limit
>= byte_count
), "SMC address is beyond the SMC RAM area.", return -EINVAL
);
506 cgs_write_register(hwmgr
->device
, mmSMC_IND_INDEX_11
, 0x20000);
507 PHM_WRITE_FIELD(hwmgr
->device
, SMC_IND_ACCESS_CNTL
, AUTO_INCREMENT_IND_11
, 1);
509 for (; byte_count
>= 4; byte_count
-= 4)
510 cgs_write_register(hwmgr
->device
, mmSMC_IND_DATA_11
, *src
++);
512 PHM_WRITE_FIELD(hwmgr
->device
, SMC_IND_ACCESS_CNTL
, AUTO_INCREMENT_IND_11
, 0);
514 PP_ASSERT_WITH_CODE((0 == byte_count
), "SMC size must be divisible by 4.", return -EINVAL
);
520 int smu7_upload_smu_firmware_image(struct pp_hwmgr
*hwmgr
)
523 struct smu7_smumgr
*smu_data
= (struct smu7_smumgr
*)(hwmgr
->smu_backend
);
525 struct cgs_firmware_info info
= {0};
527 if (smu_data
->security_hard_key
== 1)
528 cgs_get_firmware_info(hwmgr
->device
,
529 smu7_convert_fw_type_to_cgs(UCODE_ID_SMU
), &info
);
531 cgs_get_firmware_info(hwmgr
->device
,
532 smu7_convert_fw_type_to_cgs(UCODE_ID_SMU_SK
), &info
);
534 hwmgr
->is_kicker
= info
.is_kicker
;
535 hwmgr
->smu_version
= info
.version
;
536 result
= smu7_upload_smc_firmware_data(hwmgr
, info
.image_size
, (uint32_t *)info
.kptr
, SMU7_SMC_SIZE
);
541 static void execute_pwr_table(struct pp_hwmgr
*hwmgr
, const PWR_Command_Table
*pvirus
, int size
)
546 for (i
= 0; i
< size
; i
++) {
549 if (reg
!= 0xffffffff)
550 cgs_write_register(hwmgr
->device
, reg
, data
);
557 static void execute_pwr_dfy_table(struct pp_hwmgr
*hwmgr
, const PWR_DFY_Section
*section
)
561 cgs_write_register(hwmgr
->device
, mmCP_DFY_CNTL
, section
->dfy_cntl
);
562 cgs_write_register(hwmgr
->device
, mmCP_DFY_ADDR_HI
, section
->dfy_addr_hi
);
563 cgs_write_register(hwmgr
->device
, mmCP_DFY_ADDR_LO
, section
->dfy_addr_lo
);
564 for (i
= 0; i
< section
->dfy_size
; i
++)
565 cgs_write_register(hwmgr
->device
, mmCP_DFY_DATA_0
, section
->dfy_data
[i
]);
568 int smu7_setup_pwr_virus(struct pp_hwmgr
*hwmgr
)
570 execute_pwr_table(hwmgr
, pwr_virus_table_pre
, ARRAY_SIZE(pwr_virus_table_pre
));
571 execute_pwr_dfy_table(hwmgr
, &pwr_virus_section1
);
572 execute_pwr_dfy_table(hwmgr
, &pwr_virus_section2
);
573 execute_pwr_dfy_table(hwmgr
, &pwr_virus_section3
);
574 execute_pwr_dfy_table(hwmgr
, &pwr_virus_section4
);
575 execute_pwr_dfy_table(hwmgr
, &pwr_virus_section5
);
576 execute_pwr_dfy_table(hwmgr
, &pwr_virus_section6
);
577 execute_pwr_table(hwmgr
, pwr_virus_table_post
, ARRAY_SIZE(pwr_virus_table_post
));
582 int smu7_init(struct pp_hwmgr
*hwmgr
)
584 struct smu7_smumgr
*smu_data
;
586 /* Allocate memory for backend private data */
587 smu_data
= (struct smu7_smumgr
*)(hwmgr
->smu_backend
);
588 smu_data
->header_buffer
.data_size
=
589 ((sizeof(struct SMU_DRAMData_TOC
) / 4096) + 1) * 4096;
591 /* Allocate FW image data structure and header buffer and
592 * send the header buffer address to SMU */
593 r
= amdgpu_bo_create_kernel((struct amdgpu_device
*)hwmgr
->adev
,
594 smu_data
->header_buffer
.data_size
,
596 AMDGPU_GEM_DOMAIN_VRAM
,
597 &smu_data
->header_buffer
.handle
,
598 &smu_data
->header_buffer
.mc_addr
,
599 &smu_data
->header_buffer
.kaddr
);
607 smu_data
->smu_buffer
.data_size
= 200*4096;
608 r
= amdgpu_bo_create_kernel((struct amdgpu_device
*)hwmgr
->adev
,
609 smu_data
->smu_buffer
.data_size
,
611 AMDGPU_GEM_DOMAIN_VRAM
,
612 &smu_data
->smu_buffer
.handle
,
613 &smu_data
->smu_buffer
.mc_addr
,
614 &smu_data
->smu_buffer
.kaddr
);
617 amdgpu_bo_free_kernel(&smu_data
->header_buffer
.handle
,
618 &smu_data
->header_buffer
.mc_addr
,
619 &smu_data
->header_buffer
.kaddr
);
623 if (smum_is_hw_avfs_present(hwmgr
))
624 hwmgr
->avfs_supported
= true;
630 int smu7_smu_fini(struct pp_hwmgr
*hwmgr
)
632 struct smu7_smumgr
*smu_data
= (struct smu7_smumgr
*)(hwmgr
->smu_backend
);
634 amdgpu_bo_free_kernel(&smu_data
->header_buffer
.handle
,
635 &smu_data
->header_buffer
.mc_addr
,
636 &smu_data
->header_buffer
.kaddr
);
639 amdgpu_bo_free_kernel(&smu_data
->smu_buffer
.handle
,
640 &smu_data
->smu_buffer
.mc_addr
,
641 &smu_data
->smu_buffer
.kaddr
);
644 kfree(smu_data
->toc
);
645 smu_data
->toc
= NULL
;
646 kfree(hwmgr
->smu_backend
);
647 hwmgr
->smu_backend
= NULL
;