]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c
Merge branch 'for-4.8/core' of git://git.kernel.dk/linux-block
[karo-tx-linux.git] / drivers / gpu / drm / amd / powerplay / hwmgr / hardwaremanager.c
1 /*
2  * Copyright 2015 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  */
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
37 void 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
69 bool phm_is_hw_access_blocked(struct pp_hwmgr *hwmgr)
70 {
71         return hwmgr->block_hw_access;
72 }
73
74 int phm_block_hw_access(struct pp_hwmgr *hwmgr, bool block)
75 {
76         hwmgr->block_hw_access = block;
77         return 0;
78 }
79
80 int 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
96 int 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
112 int 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
134 int 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
157 int 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
167 int 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
181 int 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
190 int 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
199 int 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
208 int 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
222 int 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
235 int 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
247 int 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
257 int 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 * Initializes the thermal controller subsystem.
269 *
270 * @param    pHwMgr  the address of the powerplay hardware manager.
271 * @param    pTemperatureRange the address of the structure holding the temperature range.
272 * @exception PP_Result_Failed if any of the paramters is NULL, otherwise the return value from the dispatcher.
273 */
274 int 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
280 bool 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
291 int 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
304 int 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 (display_config == NULL)
310                 return -EINVAL;
311
312         hwmgr->display_config = *display_config;
313
314         if (hwmgr->hwmgr_func->store_cc6_data == NULL)
315                 return -EINVAL;
316
317         /* to do pass other display configuration in furture */
318
319         if (hwmgr->hwmgr_func->store_cc6_data)
320                 hwmgr->hwmgr_func->store_cc6_data(hwmgr,
321                                 display_config->cpu_pstate_separation_time,
322                                 display_config->cpu_cc6_disable,
323                                 display_config->cpu_pstate_disable,
324                                 display_config->nb_pstate_switch_disable);
325
326         return 0;
327 }
328
329 int phm_get_dal_power_level(struct pp_hwmgr *hwmgr,
330                 struct amd_pp_simple_clock_info *info)
331 {
332         PHM_FUNC_CHECK(hwmgr);
333
334         if (info == NULL || hwmgr->hwmgr_func->get_dal_power_level == NULL)
335                 return -EINVAL;
336         return hwmgr->hwmgr_func->get_dal_power_level(hwmgr, info);
337 }
338
339 int phm_set_cpu_power_state(struct pp_hwmgr *hwmgr)
340 {
341         PHM_FUNC_CHECK(hwmgr);
342
343         if (hwmgr->hwmgr_func->set_cpu_power_state != NULL)
344                 return hwmgr->hwmgr_func->set_cpu_power_state(hwmgr);
345
346         return 0;
347 }
348
349
350 int phm_get_performance_level(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state,
351                                 PHM_PerformanceLevelDesignation designation, uint32_t index,
352                                 PHM_PerformanceLevel *level)
353 {
354         PHM_FUNC_CHECK(hwmgr);
355         if (hwmgr->hwmgr_func->get_performance_level == NULL)
356                 return -EINVAL;
357
358         return hwmgr->hwmgr_func->get_performance_level(hwmgr, state, designation, index, level);
359
360
361 }
362
363
364 /**
365 * Gets Clock Info.
366 *
367 * @param    pHwMgr  the address of the powerplay hardware manager.
368 * @param    pPowerState the address of the Power State structure.
369 * @param    pClockInfo the address of PP_ClockInfo structure where the result will be returned.
370 * @exception PP_Result_Failed if any of the paramters is NULL, otherwise the return value from the back-end.
371 */
372 int phm_get_clock_info(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state, struct pp_clock_info *pclock_info,
373                         PHM_PerformanceLevelDesignation designation)
374 {
375         int result;
376         PHM_PerformanceLevel performance_level;
377
378         PHM_FUNC_CHECK(hwmgr);
379
380         PP_ASSERT_WITH_CODE((NULL != state), "Invalid Input!", return -EINVAL);
381         PP_ASSERT_WITH_CODE((NULL != pclock_info), "Invalid Input!", return -EINVAL);
382
383         result = phm_get_performance_level(hwmgr, state, PHM_PerformanceLevelDesignation_Activity, 0, &performance_level);
384
385         PP_ASSERT_WITH_CODE((0 == result), "Failed to retrieve minimum clocks.", return result);
386
387
388         pclock_info->min_mem_clk = performance_level.memory_clock;
389         pclock_info->min_eng_clk = performance_level.coreClock;
390         pclock_info->min_bus_bandwidth = performance_level.nonLocalMemoryFreq * performance_level.nonLocalMemoryWidth;
391
392
393         result = phm_get_performance_level(hwmgr, state, designation,
394                                         (hwmgr->platform_descriptor.hardwareActivityPerformanceLevels - 1), &performance_level);
395
396         PP_ASSERT_WITH_CODE((0 == result), "Failed to retrieve maximum clocks.", return result);
397
398         pclock_info->max_mem_clk = performance_level.memory_clock;
399         pclock_info->max_eng_clk = performance_level.coreClock;
400         pclock_info->max_bus_bandwidth = performance_level.nonLocalMemoryFreq * performance_level.nonLocalMemoryWidth;
401
402         return 0;
403 }
404
405 int phm_get_current_shallow_sleep_clocks(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state, struct pp_clock_info *clock_info)
406 {
407         PHM_FUNC_CHECK(hwmgr);
408
409         if (hwmgr->hwmgr_func->get_current_shallow_sleep_clocks == NULL)
410                 return -EINVAL;
411
412         return hwmgr->hwmgr_func->get_current_shallow_sleep_clocks(hwmgr, state, clock_info);
413
414 }
415
416 int phm_get_clock_by_type(struct pp_hwmgr *hwmgr, enum amd_pp_clock_type type, struct amd_pp_clocks *clocks)
417 {
418         PHM_FUNC_CHECK(hwmgr);
419
420         if (hwmgr->hwmgr_func->get_clock_by_type == NULL)
421                 return -EINVAL;
422
423         return hwmgr->hwmgr_func->get_clock_by_type(hwmgr, type, clocks);
424
425 }
426
427 int phm_get_max_high_clocks(struct pp_hwmgr *hwmgr, struct amd_pp_simple_clock_info *clocks)
428 {
429         PHM_FUNC_CHECK(hwmgr);
430
431         if (hwmgr->hwmgr_func->get_max_high_clocks == NULL)
432                 return -EINVAL;
433
434         return hwmgr->hwmgr_func->get_max_high_clocks(hwmgr, clocks);
435 }