1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 #ifndef _SMU7_SMUMANAGER_H
25 #define _SMU7_SMUMANAGER_H
26
27
28 #include <pp_endian.h>
29
30 #define SMC_RAM_END 0x40000
31
32 struct smu7_buffer_entry {
33 uint32_t data_size;
34 uint64_t mc_addr;
35 void *kaddr;
36 struct amdgpu_bo *handle;
37 };
38
39 struct smu7_smumgr {
40 struct smu7_buffer_entry smu_buffer;
41 struct smu7_buffer_entry header_buffer;
42 struct SMU_DRAMData_TOC *toc;
43
44 uint32_t soft_regs_start;
45 uint32_t dpm_table_start;
46 uint32_t mc_reg_table_start;
47 uint32_t fan_table_start;
48 uint32_t arb_table_start;
49 uint32_t ulv_setting_starts;
50 uint8_t security_hard_key;
51 uint32_t acpi_optimization;
52 uint32_t avfs_btc_param;
53 };
54
55
56 int smu7_copy_bytes_from_smc(struct pp_hwmgr *hwmgr, uint32_t smc_start_address,
57 uint32_t *dest, uint32_t byte_count, uint32_t limit);
58 int smu7_copy_bytes_to_smc(struct pp_hwmgr *hwmgr, uint32_t smc_start_address,
59 const uint8_t *src, uint32_t byte_count, uint32_t limit);
60 int smu7_program_jump_on_start(struct pp_hwmgr *hwmgr);
61 bool smu7_is_smc_ram_running(struct pp_hwmgr *hwmgr);
62 int smu7_send_msg_to_smc(struct pp_hwmgr *hwmgr, uint16_t msg);
63 int smu7_send_msg_to_smc_without_waiting(struct pp_hwmgr *hwmgr, uint16_t msg);
64 int smu7_send_msg_to_smc_with_parameter(struct pp_hwmgr *hwmgr, uint16_t msg,
65 uint32_t parameter);
66 int smu7_send_msg_to_smc_with_parameter_without_waiting(struct pp_hwmgr *hwmgr,
67 uint16_t msg, uint32_t parameter);
68 int smu7_send_msg_to_smc_offset(struct pp_hwmgr *hwmgr);
69
70 enum cgs_ucode_id smu7_convert_fw_type_to_cgs(uint32_t fw_type);
71 int smu7_read_smc_sram_dword(struct pp_hwmgr *hwmgr, uint32_t smc_addr,
72 uint32_t *value, uint32_t limit);
73 int smu7_write_smc_sram_dword(struct pp_hwmgr *hwmgr, uint32_t smc_addr,
74 uint32_t value, uint32_t limit);
75
76 int smu7_request_smu_load_fw(struct pp_hwmgr *hwmgr);
77 int smu7_check_fw_load_finish(struct pp_hwmgr *hwmgr, uint32_t fw_type);
78 int smu7_reload_firmware(struct pp_hwmgr *hwmgr);
79 int smu7_upload_smu_firmware_image(struct pp_hwmgr *hwmgr);
80 int smu7_init(struct pp_hwmgr *hwmgr);
81 int smu7_smu_fini(struct pp_hwmgr *hwmgr);
82
83 int smu7_setup_pwr_virus(struct pp_hwmgr *hwmgr);
84
85 #endif