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.
24 #include <linux/delay.h>
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/slab.h>
28 #include <linux/types.h>
29 #include <drm/amdgpu_drm.h>
32 MODULE_FIRMWARE("amdgpu/bonaire_smc.bin");
33 MODULE_FIRMWARE("amdgpu/bonaire_k_smc.bin");
34 MODULE_FIRMWARE("amdgpu/hawaii_smc.bin");
35 MODULE_FIRMWARE("amdgpu/hawaii_k_smc.bin");
36 MODULE_FIRMWARE("amdgpu/topaz_smc.bin");
37 MODULE_FIRMWARE("amdgpu/topaz_k_smc.bin");
38 MODULE_FIRMWARE("amdgpu/tonga_smc.bin");
39 MODULE_FIRMWARE("amdgpu/tonga_k_smc.bin");
40 MODULE_FIRMWARE("amdgpu/fiji_smc.bin");
41 MODULE_FIRMWARE("amdgpu/polaris10_smc.bin");
42 MODULE_FIRMWARE("amdgpu/polaris10_smc_sk.bin");
43 MODULE_FIRMWARE("amdgpu/polaris10_k_smc.bin");
44 MODULE_FIRMWARE("amdgpu/polaris10_k2_smc.bin");
45 MODULE_FIRMWARE("amdgpu/polaris11_smc.bin");
46 MODULE_FIRMWARE("amdgpu/polaris11_smc_sk.bin");
47 MODULE_FIRMWARE("amdgpu/polaris11_k_smc.bin");
48 MODULE_FIRMWARE("amdgpu/polaris11_k2_smc.bin");
49 MODULE_FIRMWARE("amdgpu/polaris12_smc.bin");
50 MODULE_FIRMWARE("amdgpu/polaris12_k_smc.bin");
51 MODULE_FIRMWARE("amdgpu/vegam_smc.bin");
52 MODULE_FIRMWARE("amdgpu/vega10_smc.bin");
53 MODULE_FIRMWARE("amdgpu/vega10_acg_smc.bin");
54 MODULE_FIRMWARE("amdgpu/vega12_smc.bin");
55 MODULE_FIRMWARE("amdgpu/vega20_smc.bin");
57 int smum_thermal_avfs_enable(struct pp_hwmgr
*hwmgr
)
59 if (NULL
!= hwmgr
->smumgr_funcs
->thermal_avfs_enable
)
60 return hwmgr
->smumgr_funcs
->thermal_avfs_enable(hwmgr
);
65 int smum_thermal_setup_fan_table(struct pp_hwmgr
*hwmgr
)
67 if (NULL
!= hwmgr
->smumgr_funcs
->thermal_setup_fan_table
)
68 return hwmgr
->smumgr_funcs
->thermal_setup_fan_table(hwmgr
);
73 int smum_update_sclk_threshold(struct pp_hwmgr
*hwmgr
)
76 if (NULL
!= hwmgr
->smumgr_funcs
->update_sclk_threshold
)
77 return hwmgr
->smumgr_funcs
->update_sclk_threshold(hwmgr
);
82 int smum_update_smc_table(struct pp_hwmgr
*hwmgr
, uint32_t type
)
85 if (NULL
!= hwmgr
->smumgr_funcs
->update_smc_table
)
86 return hwmgr
->smumgr_funcs
->update_smc_table(hwmgr
, type
);
91 uint32_t smum_get_offsetof(struct pp_hwmgr
*hwmgr
, uint32_t type
, uint32_t member
)
93 if (NULL
!= hwmgr
->smumgr_funcs
->get_offsetof
)
94 return hwmgr
->smumgr_funcs
->get_offsetof(type
, member
);
99 int smum_process_firmware_header(struct pp_hwmgr
*hwmgr
)
101 if (NULL
!= hwmgr
->smumgr_funcs
->process_firmware_header
)
102 return hwmgr
->smumgr_funcs
->process_firmware_header(hwmgr
);
106 uint32_t smum_get_argument(struct pp_hwmgr
*hwmgr
)
108 if (NULL
!= hwmgr
->smumgr_funcs
->get_argument
)
109 return hwmgr
->smumgr_funcs
->get_argument(hwmgr
);
114 uint32_t smum_get_mac_definition(struct pp_hwmgr
*hwmgr
, uint32_t value
)
116 if (NULL
!= hwmgr
->smumgr_funcs
->get_mac_definition
)
117 return hwmgr
->smumgr_funcs
->get_mac_definition(value
);
122 int smum_download_powerplay_table(struct pp_hwmgr
*hwmgr
, void **table
)
124 if (NULL
!= hwmgr
->smumgr_funcs
->download_pptable_settings
)
125 return hwmgr
->smumgr_funcs
->download_pptable_settings(hwmgr
,
130 int smum_upload_powerplay_table(struct pp_hwmgr
*hwmgr
)
132 if (NULL
!= hwmgr
->smumgr_funcs
->upload_pptable_settings
)
133 return hwmgr
->smumgr_funcs
->upload_pptable_settings(hwmgr
);
138 int smum_send_msg_to_smc(struct pp_hwmgr
*hwmgr
, uint16_t msg
)
140 if (hwmgr
== NULL
|| hwmgr
->smumgr_funcs
->send_msg_to_smc
== NULL
)
143 return hwmgr
->smumgr_funcs
->send_msg_to_smc(hwmgr
, msg
);
146 int smum_send_msg_to_smc_with_parameter(struct pp_hwmgr
*hwmgr
,
147 uint16_t msg
, uint32_t parameter
)
150 hwmgr
->smumgr_funcs
->send_msg_to_smc_with_parameter
== NULL
)
152 return hwmgr
->smumgr_funcs
->send_msg_to_smc_with_parameter(
153 hwmgr
, msg
, parameter
);
156 int smum_init_smc_table(struct pp_hwmgr
*hwmgr
)
158 if (NULL
!= hwmgr
->smumgr_funcs
->init_smc_table
)
159 return hwmgr
->smumgr_funcs
->init_smc_table(hwmgr
);
164 int smum_populate_all_graphic_levels(struct pp_hwmgr
*hwmgr
)
166 if (NULL
!= hwmgr
->smumgr_funcs
->populate_all_graphic_levels
)
167 return hwmgr
->smumgr_funcs
->populate_all_graphic_levels(hwmgr
);
172 int smum_populate_all_memory_levels(struct pp_hwmgr
*hwmgr
)
174 if (NULL
!= hwmgr
->smumgr_funcs
->populate_all_memory_levels
)
175 return hwmgr
->smumgr_funcs
->populate_all_memory_levels(hwmgr
);
180 /*this interface is needed by island ci/vi */
181 int smum_initialize_mc_reg_table(struct pp_hwmgr
*hwmgr
)
183 if (NULL
!= hwmgr
->smumgr_funcs
->initialize_mc_reg_table
)
184 return hwmgr
->smumgr_funcs
->initialize_mc_reg_table(hwmgr
);
189 bool smum_is_dpm_running(struct pp_hwmgr
*hwmgr
)
191 if (NULL
!= hwmgr
->smumgr_funcs
->is_dpm_running
)
192 return hwmgr
->smumgr_funcs
->is_dpm_running(hwmgr
);
197 bool smum_is_hw_avfs_present(struct pp_hwmgr
*hwmgr
)
199 if (hwmgr
->smumgr_funcs
->is_hw_avfs_present
)
200 return hwmgr
->smumgr_funcs
->is_hw_avfs_present(hwmgr
);
205 int smum_update_dpm_settings(struct pp_hwmgr
*hwmgr
, void *profile_setting
)
207 if (hwmgr
->smumgr_funcs
->update_dpm_settings
)
208 return hwmgr
->smumgr_funcs
->update_dpm_settings(hwmgr
, profile_setting
);
213 int smum_smc_table_manager(struct pp_hwmgr
*hwmgr
, uint8_t *table
, uint16_t table_id
, bool rw
)
215 if (hwmgr
->smumgr_funcs
->smc_table_manager
)
216 return hwmgr
->smumgr_funcs
->smc_table_manager(hwmgr
, table
, table_id
, rw
);