1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <linux/errno.h>
24#include "hwmgr.h"
25#include "hardwaremanager.h"
26#include "power_state.h"
27#include "pp_acpi.h"
28#include "amd_acpi.h"
29#include "pp_debug.h"
30
31#define PHM_FUNC_CHECK(hw) \
32 do { \
33 if ((hw) == NULL || (hw)->hwmgr_func == NULL) \
34 return -EINVAL; \
35 } while (0)
36
37void phm_init_dynamic_caps(struct pp_hwmgr *hwmgr)
38{
39 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableVoltageTransition);
40 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableEngineTransition);
41 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableMemoryTransition);
42 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableMGClockGating);
43 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableMGCGTSSM);
44 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableLSClockGating);
45 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_Force3DClockSupport);
46 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableLightSleep);
47 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableMCLS);
48 phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisablePowerGating);
49
50 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableDPM);
51 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DisableSMUUVDHandshake);
52 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_ThermalAutoThrottling);
53
54 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_PCIEPerformanceRequest);
55
56 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_NoOD5Support);
57 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_UserMaxClockForMultiDisplays);
58
59 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_VpuRecoveryInProgress);
60
61 phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_UVDDPM);
62 phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_VCEDPM);
63
64 if (acpi_atcs_functions_supported(hwmgr->device, ATCS_FUNCTION_PCIE_PERFORMANCE_REQUEST) &&
65 acpi_atcs_functions_supported(hwmgr->device, ATCS_FUNCTION_PCIE_DEVICE_READY_NOTIFICATION))
66 phm_cap_set(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_PCIEPerformanceRequest);
67}
68
69bool phm_is_hw_access_blocked(struct pp_hwmgr *hwmgr)
70{
71 return hwmgr->block_hw_access;
72}
73
74int phm_block_hw_access(struct pp_hwmgr *hwmgr, bool block)
75{
76 hwmgr->block_hw_access = block;
77 return 0;
78}
79
80int phm_setup_asic(struct pp_hwmgr *hwmgr)
81{
82 PHM_FUNC_CHECK(hwmgr);
83
84 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
85 PHM_PlatformCaps_TablelessHardwareInterface)) {
86 if (NULL != hwmgr->hwmgr_func->asic_setup)
87 return hwmgr->hwmgr_func->asic_setup(hwmgr);
88 } else {
89 return phm_dispatch_table(hwmgr, &(hwmgr->setup_asic),
90 NULL, NULL);
91 }
92
93 return 0;
94}
95
96int phm_power_down_asic(struct pp_hwmgr *hwmgr)
97{
98 PHM_FUNC_CHECK(hwmgr);
99
100 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
101 PHM_PlatformCaps_TablelessHardwareInterface)) {
102 if (NULL != hwmgr->hwmgr_func->power_off_asic)
103 return hwmgr->hwmgr_func->power_off_asic(hwmgr);
104 } else {
105 return phm_dispatch_table(hwmgr, &(hwmgr->power_down_asic),
106 NULL, NULL);
107 }
108
109 return 0;
110}
111
112int phm_set_power_state(struct pp_hwmgr *hwmgr,
113 const struct pp_hw_power_state *pcurrent_state,
114 const struct pp_hw_power_state *pnew_power_state)
115{
116 struct phm_set_power_state_input states;
117
118 PHM_FUNC_CHECK(hwmgr);
119
120 states.pcurrent_state = pcurrent_state;
121 states.pnew_state = pnew_power_state;
122
123 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
124 PHM_PlatformCaps_TablelessHardwareInterface)) {
125 if (NULL != hwmgr->hwmgr_func->power_state_set)
126 return hwmgr->hwmgr_func->power_state_set(hwmgr, &states);
127 } else {
128 return phm_dispatch_table(hwmgr, &(hwmgr->set_power_state), &states, NULL);
129 }
130
131 return 0;
132}
133
134int phm_enable_dynamic_state_management(struct pp_hwmgr *hwmgr)
135{
136 int ret = 1;
137 bool enabled;
138 PHM_FUNC_CHECK(hwmgr);
139
140 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
141 PHM_PlatformCaps_TablelessHardwareInterface)) {
142 if (NULL != hwmgr->hwmgr_func->dynamic_state_management_enable)
143 ret = hwmgr->hwmgr_func->dynamic_state_management_enable(hwmgr);
144 } else {
145 ret = phm_dispatch_table(hwmgr,
146 &(hwmgr->enable_dynamic_state_management),
147 NULL, NULL);
148 }
149
150 enabled = ret == 0 ? true : false;
151
152 cgs_notify_dpm_enabled(hwmgr->device, enabled);
153
154 return ret;
155}
156
157int phm_force_dpm_levels(struct pp_hwmgr *hwmgr, enum amd_dpm_forced_level level)
158{
159 PHM_FUNC_CHECK(hwmgr);
160
161 if (hwmgr->hwmgr_func->force_dpm_level != NULL)
162 return hwmgr->hwmgr_func->force_dpm_level(hwmgr, level);
163
164 return 0;
165}
166
167int phm_apply_state_adjust_rules(struct pp_hwmgr *hwmgr,
168 struct pp_power_state *adjusted_ps,
169 const struct pp_power_state *current_ps)
170{
171 PHM_FUNC_CHECK(hwmgr);
172
173 if (hwmgr->hwmgr_func->apply_state_adjust_rules != NULL)
174 return hwmgr->hwmgr_func->apply_state_adjust_rules(
175 hwmgr,
176 adjusted_ps,
177 current_ps);
178 return 0;
179}
180
181int phm_powerdown_uvd(struct pp_hwmgr *hwmgr)
182{
183 PHM_FUNC_CHECK(hwmgr);
184
185 if (hwmgr->hwmgr_func->powerdown_uvd != NULL)
186 return hwmgr->hwmgr_func->powerdown_uvd(hwmgr);
187 return 0;
188}
189
190int phm_powergate_uvd(struct pp_hwmgr *hwmgr, bool gate)
191{
192 PHM_FUNC_CHECK(hwmgr);
193
194 if (hwmgr->hwmgr_func->powergate_uvd != NULL)
195 return hwmgr->hwmgr_func->powergate_uvd(hwmgr, gate);
196 return 0;
197}
198
199int phm_powergate_vce(struct pp_hwmgr *hwmgr, bool gate)
200{
201 PHM_FUNC_CHECK(hwmgr);
202
203 if (hwmgr->hwmgr_func->powergate_vce != NULL)
204 return hwmgr->hwmgr_func->powergate_vce(hwmgr, gate);
205 return 0;
206}
207
208int phm_enable_clock_power_gatings(struct pp_hwmgr *hwmgr)
209{
210 PHM_FUNC_CHECK(hwmgr);
211
212 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
213 PHM_PlatformCaps_TablelessHardwareInterface)) {
214 if (NULL != hwmgr->hwmgr_func->enable_clock_power_gating)
215 return hwmgr->hwmgr_func->enable_clock_power_gating(hwmgr);
216 } else {
217 return phm_dispatch_table(hwmgr, &(hwmgr->enable_clock_power_gatings), NULL, NULL);
218 }
219 return 0;
220}
221
222int phm_display_configuration_changed(struct pp_hwmgr *hwmgr)
223{
224 PHM_FUNC_CHECK(hwmgr);
225
226 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
227 PHM_PlatformCaps_TablelessHardwareInterface)) {
228 if (NULL != hwmgr->hwmgr_func->display_config_changed)
229 hwmgr->hwmgr_func->display_config_changed(hwmgr);
230 } else
231 return phm_dispatch_table(hwmgr, &hwmgr->display_configuration_changed, NULL, NULL);
232 return 0;
233}
234
235int phm_notify_smc_display_config_after_ps_adjustment(struct pp_hwmgr *hwmgr)
236{
237 PHM_FUNC_CHECK(hwmgr);
238
239 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
240 PHM_PlatformCaps_TablelessHardwareInterface))
241 if (NULL != hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment)
242 hwmgr->hwmgr_func->notify_smc_display_config_after_ps_adjustment(hwmgr);
243
244 return 0;
245}
246
247int phm_stop_thermal_controller(struct pp_hwmgr *hwmgr)
248{
249 PHM_FUNC_CHECK(hwmgr);
250
251 if (hwmgr->hwmgr_func->stop_thermal_controller == NULL)
252 return -EINVAL;
253
254 return hwmgr->hwmgr_func->stop_thermal_controller(hwmgr);
255}
256
257int phm_register_thermal_interrupt(struct pp_hwmgr *hwmgr, const void *info)
258{
259 PHM_FUNC_CHECK(hwmgr);
260
261 if (hwmgr->hwmgr_func->register_internal_thermal_interrupt == NULL)
262 return -EINVAL;
263
264 return hwmgr->hwmgr_func->register_internal_thermal_interrupt(hwmgr, info);
265}
266
267
268
269
270
271
272
273
274int phm_start_thermal_controller(struct pp_hwmgr *hwmgr, struct PP_TemperatureRange *temperature_range)
275{
276 return phm_dispatch_table(hwmgr, &(hwmgr->start_thermal_controller), temperature_range, NULL);
277}
278
279
280bool phm_check_smc_update_required_for_display_configuration(struct pp_hwmgr *hwmgr)
281{
282 PHM_FUNC_CHECK(hwmgr);
283
284 if (hwmgr->hwmgr_func->check_smc_update_required_for_display_configuration == NULL)
285 return -EINVAL;
286
287 return hwmgr->hwmgr_func->check_smc_update_required_for_display_configuration(hwmgr);
288}
289
290
291int phm_check_states_equal(struct pp_hwmgr *hwmgr,
292 const struct pp_hw_power_state *pstate1,
293 const struct pp_hw_power_state *pstate2,
294 bool *equal)
295{
296 PHM_FUNC_CHECK(hwmgr);
297
298 if (hwmgr->hwmgr_func->check_states_equal == NULL)
299 return -EINVAL;
300
301 return hwmgr->hwmgr_func->check_states_equal(hwmgr, pstate1, pstate2, equal);
302}
303
304int phm_store_dal_configuration_data(struct pp_hwmgr *hwmgr,
305 const struct amd_pp_display_configuration *display_config)
306{
307 PHM_FUNC_CHECK(hwmgr);
308
309 if (hwmgr->hwmgr_func->store_cc6_data == NULL)
310 return -EINVAL;
311
312 hwmgr->display_config = *display_config;
313
314
315 if (hwmgr->hwmgr_func->store_cc6_data)
316 hwmgr->hwmgr_func->store_cc6_data(hwmgr,
317 display_config->cpu_pstate_separation_time,
318 display_config->cpu_cc6_disable,
319 display_config->cpu_pstate_disable,
320 display_config->nb_pstate_switch_disable);
321
322 return 0;
323}
324
325int phm_get_dal_power_level(struct pp_hwmgr *hwmgr,
326 struct amd_pp_simple_clock_info *info)
327{
328 PHM_FUNC_CHECK(hwmgr);
329
330 if (info == NULL || hwmgr->hwmgr_func->get_dal_power_level == NULL)
331 return -EINVAL;
332 return hwmgr->hwmgr_func->get_dal_power_level(hwmgr, info);
333}
334
335int phm_set_cpu_power_state(struct pp_hwmgr *hwmgr)
336{
337 PHM_FUNC_CHECK(hwmgr);
338
339 if (hwmgr->hwmgr_func->set_cpu_power_state != NULL)
340 return hwmgr->hwmgr_func->set_cpu_power_state(hwmgr);
341
342 return 0;
343}
344
345
346int phm_get_performance_level(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state,
347 PHM_PerformanceLevelDesignation designation, uint32_t index,
348 PHM_PerformanceLevel *level)
349{
350 PHM_FUNC_CHECK(hwmgr);
351 if (hwmgr->hwmgr_func->get_performance_level == NULL)
352 return -EINVAL;
353
354 return hwmgr->hwmgr_func->get_performance_level(hwmgr, state, designation, index, level);
355
356
357}
358
359
360
361
362
363
364
365
366
367
368int phm_get_clock_info(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state, struct pp_clock_info *pclock_info,
369 PHM_PerformanceLevelDesignation designation)
370{
371 int result;
372 PHM_PerformanceLevel performance_level;
373
374 PHM_FUNC_CHECK(hwmgr);
375
376 PP_ASSERT_WITH_CODE((NULL != state), "Invalid Input!", return -EINVAL);
377 PP_ASSERT_WITH_CODE((NULL != pclock_info), "Invalid Input!", return -EINVAL);
378
379 result = phm_get_performance_level(hwmgr, state, PHM_PerformanceLevelDesignation_Activity, 0, &performance_level);
380
381 PP_ASSERT_WITH_CODE((0 == result), "Failed to retrieve minimum clocks.", return result);
382
383
384 pclock_info->min_mem_clk = performance_level.memory_clock;
385 pclock_info->min_eng_clk = performance_level.coreClock;
386 pclock_info->min_bus_bandwidth = performance_level.nonLocalMemoryFreq * performance_level.nonLocalMemoryWidth;
387
388
389 result = phm_get_performance_level(hwmgr, state, designation,
390 (hwmgr->platform_descriptor.hardwareActivityPerformanceLevels - 1), &performance_level);
391
392 PP_ASSERT_WITH_CODE((0 == result), "Failed to retrieve maximum clocks.", return result);
393
394 pclock_info->max_mem_clk = performance_level.memory_clock;
395 pclock_info->max_eng_clk = performance_level.coreClock;
396 pclock_info->max_bus_bandwidth = performance_level.nonLocalMemoryFreq * performance_level.nonLocalMemoryWidth;
397
398 return 0;
399}
400
401int phm_get_current_shallow_sleep_clocks(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state, struct pp_clock_info *clock_info)
402{
403 PHM_FUNC_CHECK(hwmgr);
404
405 if (hwmgr->hwmgr_func->get_current_shallow_sleep_clocks == NULL)
406 return -EINVAL;
407
408 return hwmgr->hwmgr_func->get_current_shallow_sleep_clocks(hwmgr, state, clock_info);
409
410}
411
412int phm_get_clock_by_type(struct pp_hwmgr *hwmgr, enum amd_pp_clock_type type, struct amd_pp_clocks *clocks)
413{
414 PHM_FUNC_CHECK(hwmgr);
415
416 if (hwmgr->hwmgr_func->get_clock_by_type == NULL)
417 return -EINVAL;
418
419 return hwmgr->hwmgr_func->get_clock_by_type(hwmgr, type, clocks);
420
421}
422
423int phm_get_max_high_clocks(struct pp_hwmgr *hwmgr, struct amd_pp_simple_clock_info *clocks)
424{
425 PHM_FUNC_CHECK(hwmgr);
426
427 if (hwmgr->hwmgr_func->get_max_high_clocks == NULL)
428 return -EINVAL;
429
430 return hwmgr->hwmgr_func->get_max_high_clocks(hwmgr, clocks);
431}
432