2 * Permission is hereby granted, free of charge, to any person obtaining a
3 * copy of this software and associated documentation files (the "Software"),
4 * to deal in the Software without restriction, including without limitation
5 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 * and/or sell copies of the Software, and to permit persons to whom the
7 * Software is furnished to do so, subject to the following conditions:
9 * The above copyright notice and this permission notice shall be included in
10 * all copies or substantial portions of the Software.
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
16 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
17 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
18 * OTHER DEALINGS IN THE SOFTWARE.
25 #include "amdgpu_drv.h"
26 #include "amdgpu_pm.h"
27 #include "amdgpu_dpm.h"
29 #include <linux/power_supply.h>
30 #include <linux/hwmon.h>
31 #include <linux/hwmon-sysfs.h>
33 #include "amd_powerplay.h"
35 static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev);
37 static const struct cg_flag_name clocks[] = {
38 {AMD_CG_SUPPORT_GFX_MGCG, "Graphics Medium Grain Clock Gating"},
39 {AMD_CG_SUPPORT_GFX_MGLS, "Graphics Medium Grain memory Light Sleep"},
40 {AMD_CG_SUPPORT_GFX_CGCG, "Graphics Coarse Grain Clock Gating"},
41 {AMD_CG_SUPPORT_GFX_CGLS, "Graphics Coarse Grain memory Light Sleep"},
42 {AMD_CG_SUPPORT_GFX_CGTS, "Graphics Coarse Grain Tree Shader Clock Gating"},
43 {AMD_CG_SUPPORT_GFX_CGTS_LS, "Graphics Coarse Grain Tree Shader Light Sleep"},
44 {AMD_CG_SUPPORT_GFX_CP_LS, "Graphics Command Processor Light Sleep"},
45 {AMD_CG_SUPPORT_GFX_RLC_LS, "Graphics Run List Controller Light Sleep"},
46 {AMD_CG_SUPPORT_GFX_3D_CGCG, "Graphics 3D Coarse Grain Clock Gating"},
47 {AMD_CG_SUPPORT_GFX_3D_CGLS, "Graphics 3D Coarse Grain memory Light Sleep"},
48 {AMD_CG_SUPPORT_MC_LS, "Memory Controller Light Sleep"},
49 {AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
50 {AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
51 {AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
52 {AMD_CG_SUPPORT_BIF_MGCG, "Bus Interface Medium Grain Clock Gating"},
53 {AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
54 {AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
55 {AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
56 {AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
57 {AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
58 {AMD_CG_SUPPORT_DRM_MGCG, "Digital Right Management Medium Grain Clock Gating"},
59 {AMD_CG_SUPPORT_DRM_LS, "Digital Right Management Light Sleep"},
60 {AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
61 {AMD_CG_SUPPORT_DF_MGCG, "Data Fabric Medium Grain Clock Gating"},
65 void amdgpu_pm_acpi_event_handler(struct amdgpu_device *adev)
71 if (adev->pm.dpm_enabled) {
72 mutex_lock(&adev->pm.mutex);
73 if (power_supply_is_system_supplied() > 0)
74 adev->pm.dpm.ac_power = true;
76 adev->pm.dpm.ac_power = false;
77 if (adev->powerplay.pp_funcs->enable_bapm)
78 amdgpu_dpm_enable_bapm(adev, adev->pm.dpm.ac_power);
79 mutex_unlock(&adev->pm.mutex);
83 static ssize_t amdgpu_get_dpm_state(struct device *dev,
84 struct device_attribute *attr,
87 struct drm_device *ddev = dev_get_drvdata(dev);
88 struct amdgpu_device *adev = ddev->dev_private;
89 enum amd_pm_state_type pm;
91 if (adev->powerplay.pp_funcs->get_current_power_state)
92 pm = amdgpu_dpm_get_current_power_state(adev);
94 pm = adev->pm.dpm.user_state;
96 return snprintf(buf, PAGE_SIZE, "%s\n",
97 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
98 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
101 static ssize_t amdgpu_set_dpm_state(struct device *dev,
102 struct device_attribute *attr,
106 struct drm_device *ddev = dev_get_drvdata(dev);
107 struct amdgpu_device *adev = ddev->dev_private;
108 enum amd_pm_state_type state;
110 if (strncmp("battery", buf, strlen("battery")) == 0)
111 state = POWER_STATE_TYPE_BATTERY;
112 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
113 state = POWER_STATE_TYPE_BALANCED;
114 else if (strncmp("performance", buf, strlen("performance")) == 0)
115 state = POWER_STATE_TYPE_PERFORMANCE;
121 if (adev->pp_enabled) {
122 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_ENABLE_USER_STATE, &state, NULL);
124 mutex_lock(&adev->pm.mutex);
125 adev->pm.dpm.user_state = state;
126 mutex_unlock(&adev->pm.mutex);
128 /* Can't set dpm state when the card is off */
129 if (!(adev->flags & AMD_IS_PX) ||
130 (ddev->switch_power_state == DRM_SWITCH_POWER_ON))
131 amdgpu_pm_compute_clocks(adev);
137 static ssize_t amdgpu_get_dpm_forced_performance_level(struct device *dev,
138 struct device_attribute *attr,
141 struct drm_device *ddev = dev_get_drvdata(dev);
142 struct amdgpu_device *adev = ddev->dev_private;
143 enum amd_dpm_forced_level level = 0xff;
145 if ((adev->flags & AMD_IS_PX) &&
146 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
147 return snprintf(buf, PAGE_SIZE, "off\n");
149 if (adev->powerplay.pp_funcs->get_performance_level)
150 level = amdgpu_dpm_get_performance_level(adev);
152 level = adev->pm.dpm.forced_level;
154 return snprintf(buf, PAGE_SIZE, "%s\n",
155 (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
156 (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
157 (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
158 (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
159 (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
160 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
161 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
162 (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
166 static ssize_t amdgpu_set_dpm_forced_performance_level(struct device *dev,
167 struct device_attribute *attr,
171 struct drm_device *ddev = dev_get_drvdata(dev);
172 struct amdgpu_device *adev = ddev->dev_private;
173 enum amd_dpm_forced_level level;
174 enum amd_dpm_forced_level current_level = 0xff;
177 /* Can't force performance level when the card is off */
178 if ((adev->flags & AMD_IS_PX) &&
179 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
182 if (adev->powerplay.pp_funcs->get_performance_level)
183 current_level = amdgpu_dpm_get_performance_level(adev);
185 if (strncmp("low", buf, strlen("low")) == 0) {
186 level = AMD_DPM_FORCED_LEVEL_LOW;
187 } else if (strncmp("high", buf, strlen("high")) == 0) {
188 level = AMD_DPM_FORCED_LEVEL_HIGH;
189 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
190 level = AMD_DPM_FORCED_LEVEL_AUTO;
191 } else if (strncmp("manual", buf, strlen("manual")) == 0) {
192 level = AMD_DPM_FORCED_LEVEL_MANUAL;
193 } else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
194 level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
195 } else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
196 level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
197 } else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
198 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
199 } else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
200 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
201 } else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
202 level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
208 if (current_level == level)
211 if (adev->powerplay.pp_funcs->force_performance_level) {
212 mutex_lock(&adev->pm.mutex);
213 if (adev->pm.dpm.thermal_active) {
215 mutex_unlock(&adev->pm.mutex);
218 ret = amdgpu_dpm_force_performance_level(adev, level);
222 adev->pm.dpm.forced_level = level;
223 mutex_unlock(&adev->pm.mutex);
230 static ssize_t amdgpu_get_pp_num_states(struct device *dev,
231 struct device_attribute *attr,
234 struct drm_device *ddev = dev_get_drvdata(dev);
235 struct amdgpu_device *adev = ddev->dev_private;
236 struct pp_states_info data;
239 if (adev->powerplay.pp_funcs->get_pp_num_states)
240 amdgpu_dpm_get_pp_num_states(adev, &data);
242 buf_len = snprintf(buf, PAGE_SIZE, "states: %d\n", data.nums);
243 for (i = 0; i < data.nums; i++)
244 buf_len += snprintf(buf + buf_len, PAGE_SIZE, "%d %s\n", i,
245 (data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
246 (data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
247 (data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
248 (data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
253 static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
254 struct device_attribute *attr,
257 struct drm_device *ddev = dev_get_drvdata(dev);
258 struct amdgpu_device *adev = ddev->dev_private;
259 struct pp_states_info data;
260 enum amd_pm_state_type pm = 0;
263 if (adev->powerplay.pp_funcs->get_current_power_state
264 && adev->powerplay.pp_funcs->get_pp_num_states) {
265 pm = amdgpu_dpm_get_current_power_state(adev);
266 amdgpu_dpm_get_pp_num_states(adev, &data);
268 for (i = 0; i < data.nums; i++) {
269 if (pm == data.states[i])
277 return snprintf(buf, PAGE_SIZE, "%d\n", i);
280 static ssize_t amdgpu_get_pp_force_state(struct device *dev,
281 struct device_attribute *attr,
284 struct drm_device *ddev = dev_get_drvdata(dev);
285 struct amdgpu_device *adev = ddev->dev_private;
287 if (adev->pp_force_state_enabled)
288 return amdgpu_get_pp_cur_state(dev, attr, buf);
290 return snprintf(buf, PAGE_SIZE, "\n");
293 static ssize_t amdgpu_set_pp_force_state(struct device *dev,
294 struct device_attribute *attr,
298 struct drm_device *ddev = dev_get_drvdata(dev);
299 struct amdgpu_device *adev = ddev->dev_private;
300 enum amd_pm_state_type state = 0;
304 if (strlen(buf) == 1)
305 adev->pp_force_state_enabled = false;
306 else if (adev->pp_enabled) {
307 struct pp_states_info data;
309 ret = kstrtoul(buf, 0, &idx);
310 if (ret || idx >= ARRAY_SIZE(data.states)) {
315 amdgpu_dpm_get_pp_num_states(adev, &data);
316 state = data.states[idx];
317 /* only set user selected power states */
318 if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
319 state != POWER_STATE_TYPE_DEFAULT) {
320 amdgpu_dpm_dispatch_task(adev,
321 AMD_PP_TASK_ENABLE_USER_STATE, &state, NULL);
322 adev->pp_force_state_enabled = true;
329 static ssize_t amdgpu_get_pp_table(struct device *dev,
330 struct device_attribute *attr,
333 struct drm_device *ddev = dev_get_drvdata(dev);
334 struct amdgpu_device *adev = ddev->dev_private;
338 if (adev->powerplay.pp_funcs->get_pp_table)
339 size = amdgpu_dpm_get_pp_table(adev, &table);
343 if (size >= PAGE_SIZE)
344 size = PAGE_SIZE - 1;
346 memcpy(buf, table, size);
351 static ssize_t amdgpu_set_pp_table(struct device *dev,
352 struct device_attribute *attr,
356 struct drm_device *ddev = dev_get_drvdata(dev);
357 struct amdgpu_device *adev = ddev->dev_private;
359 if (adev->powerplay.pp_funcs->set_pp_table)
360 amdgpu_dpm_set_pp_table(adev, buf, count);
365 static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
366 struct device_attribute *attr,
369 struct drm_device *ddev = dev_get_drvdata(dev);
370 struct amdgpu_device *adev = ddev->dev_private;
372 if (adev->powerplay.pp_funcs->print_clock_levels)
373 return amdgpu_dpm_print_clock_levels(adev, PP_SCLK, buf);
375 return snprintf(buf, PAGE_SIZE, "\n");
378 static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
379 struct device_attribute *attr,
383 struct drm_device *ddev = dev_get_drvdata(dev);
384 struct amdgpu_device *adev = ddev->dev_private;
387 uint32_t i, mask = 0;
390 for (i = 0; i < strlen(buf); i++) {
391 if (*(buf + i) == '\n')
393 sub_str[0] = *(buf + i);
395 ret = kstrtol(sub_str, 0, &level);
404 if (adev->powerplay.pp_funcs->force_clock_level)
405 amdgpu_dpm_force_clock_level(adev, PP_SCLK, mask);
411 static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
412 struct device_attribute *attr,
415 struct drm_device *ddev = dev_get_drvdata(dev);
416 struct amdgpu_device *adev = ddev->dev_private;
418 if (adev->powerplay.pp_funcs->print_clock_levels)
419 return amdgpu_dpm_print_clock_levels(adev, PP_MCLK, buf);
421 return snprintf(buf, PAGE_SIZE, "\n");
424 static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
425 struct device_attribute *attr,
429 struct drm_device *ddev = dev_get_drvdata(dev);
430 struct amdgpu_device *adev = ddev->dev_private;
433 uint32_t i, mask = 0;
436 for (i = 0; i < strlen(buf); i++) {
437 if (*(buf + i) == '\n')
439 sub_str[0] = *(buf + i);
441 ret = kstrtol(sub_str, 0, &level);
449 if (adev->powerplay.pp_funcs->force_clock_level)
450 amdgpu_dpm_force_clock_level(adev, PP_MCLK, mask);
456 static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
457 struct device_attribute *attr,
460 struct drm_device *ddev = dev_get_drvdata(dev);
461 struct amdgpu_device *adev = ddev->dev_private;
463 if (adev->powerplay.pp_funcs->print_clock_levels)
464 return amdgpu_dpm_print_clock_levels(adev, PP_PCIE, buf);
466 return snprintf(buf, PAGE_SIZE, "\n");
469 static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
470 struct device_attribute *attr,
474 struct drm_device *ddev = dev_get_drvdata(dev);
475 struct amdgpu_device *adev = ddev->dev_private;
478 uint32_t i, mask = 0;
481 for (i = 0; i < strlen(buf); i++) {
482 if (*(buf + i) == '\n')
484 sub_str[0] = *(buf + i);
486 ret = kstrtol(sub_str, 0, &level);
494 if (adev->powerplay.pp_funcs->force_clock_level)
495 amdgpu_dpm_force_clock_level(adev, PP_PCIE, mask);
501 static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
502 struct device_attribute *attr,
505 struct drm_device *ddev = dev_get_drvdata(dev);
506 struct amdgpu_device *adev = ddev->dev_private;
509 if (adev->powerplay.pp_funcs->get_sclk_od)
510 value = amdgpu_dpm_get_sclk_od(adev);
512 return snprintf(buf, PAGE_SIZE, "%d\n", value);
515 static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
516 struct device_attribute *attr,
520 struct drm_device *ddev = dev_get_drvdata(dev);
521 struct amdgpu_device *adev = ddev->dev_private;
525 ret = kstrtol(buf, 0, &value);
531 if (adev->powerplay.pp_funcs->set_sclk_od)
532 amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
534 if (adev->pp_enabled) {
535 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL, NULL);
537 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
538 amdgpu_pm_compute_clocks(adev);
545 static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
546 struct device_attribute *attr,
549 struct drm_device *ddev = dev_get_drvdata(dev);
550 struct amdgpu_device *adev = ddev->dev_private;
553 if (adev->powerplay.pp_funcs->get_mclk_od)
554 value = amdgpu_dpm_get_mclk_od(adev);
556 return snprintf(buf, PAGE_SIZE, "%d\n", value);
559 static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
560 struct device_attribute *attr,
564 struct drm_device *ddev = dev_get_drvdata(dev);
565 struct amdgpu_device *adev = ddev->dev_private;
569 ret = kstrtol(buf, 0, &value);
575 if (adev->powerplay.pp_funcs->set_mclk_od)
576 amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
578 if (adev->pp_enabled) {
579 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL, NULL);
581 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
582 amdgpu_pm_compute_clocks(adev);
589 static ssize_t amdgpu_get_pp_power_profile(struct device *dev,
590 char *buf, struct amd_pp_profile *query)
592 struct drm_device *ddev = dev_get_drvdata(dev);
593 struct amdgpu_device *adev = ddev->dev_private;
596 if (adev->powerplay.pp_funcs->get_power_profile_state)
597 ret = amdgpu_dpm_get_power_profile_state(
603 return snprintf(buf, PAGE_SIZE,
605 query->min_sclk / 100,
606 query->min_mclk / 100,
607 query->activity_threshold,
612 static ssize_t amdgpu_get_pp_gfx_power_profile(struct device *dev,
613 struct device_attribute *attr,
616 struct amd_pp_profile query = {0};
618 query.type = AMD_PP_GFX_PROFILE;
620 return amdgpu_get_pp_power_profile(dev, buf, &query);
623 static ssize_t amdgpu_get_pp_compute_power_profile(struct device *dev,
624 struct device_attribute *attr,
627 struct amd_pp_profile query = {0};
629 query.type = AMD_PP_COMPUTE_PROFILE;
631 return amdgpu_get_pp_power_profile(dev, buf, &query);
634 static ssize_t amdgpu_set_pp_power_profile(struct device *dev,
637 struct amd_pp_profile *request)
639 struct drm_device *ddev = dev_get_drvdata(dev);
640 struct amdgpu_device *adev = ddev->dev_private;
642 char *sub_str, buf_cpy[128], *tmp_str;
643 const char delimiter[3] = {' ', '\n', '\0'};
647 if (strncmp("reset", buf, strlen("reset")) == 0) {
648 if (adev->powerplay.pp_funcs->reset_power_profile_state)
649 ret = amdgpu_dpm_reset_power_profile_state(
658 if (strncmp("set", buf, strlen("set")) == 0) {
659 if (adev->powerplay.pp_funcs->set_power_profile_state)
660 ret = amdgpu_dpm_set_power_profile_state(
670 if (count + 1 >= 128) {
675 memcpy(buf_cpy, buf, count + 1);
679 sub_str = strsep(&tmp_str, delimiter);
680 ret = kstrtol(sub_str, 0, &value);
688 /* input unit MHz convert to dpm table unit 10KHz*/
689 request->min_sclk = (uint32_t)value * 100;
692 /* input unit MHz convert to dpm table unit 10KHz*/
693 request->min_mclk = (uint32_t)value * 100;
696 request->activity_threshold = (uint16_t)value;
699 request->up_hyst = (uint8_t)value;
702 request->down_hyst = (uint8_t)value;
710 if (adev->powerplay.pp_funcs->set_power_profile_state)
711 ret = amdgpu_dpm_set_power_profile_state(adev, request);
720 static ssize_t amdgpu_set_pp_gfx_power_profile(struct device *dev,
721 struct device_attribute *attr,
725 struct amd_pp_profile request = {0};
727 request.type = AMD_PP_GFX_PROFILE;
729 return amdgpu_set_pp_power_profile(dev, buf, count, &request);
732 static ssize_t amdgpu_set_pp_compute_power_profile(struct device *dev,
733 struct device_attribute *attr,
737 struct amd_pp_profile request = {0};
739 request.type = AMD_PP_COMPUTE_PROFILE;
741 return amdgpu_set_pp_power_profile(dev, buf, count, &request);
744 static DEVICE_ATTR(power_dpm_state, S_IRUGO | S_IWUSR, amdgpu_get_dpm_state, amdgpu_set_dpm_state);
745 static DEVICE_ATTR(power_dpm_force_performance_level, S_IRUGO | S_IWUSR,
746 amdgpu_get_dpm_forced_performance_level,
747 amdgpu_set_dpm_forced_performance_level);
748 static DEVICE_ATTR(pp_num_states, S_IRUGO, amdgpu_get_pp_num_states, NULL);
749 static DEVICE_ATTR(pp_cur_state, S_IRUGO, amdgpu_get_pp_cur_state, NULL);
750 static DEVICE_ATTR(pp_force_state, S_IRUGO | S_IWUSR,
751 amdgpu_get_pp_force_state,
752 amdgpu_set_pp_force_state);
753 static DEVICE_ATTR(pp_table, S_IRUGO | S_IWUSR,
755 amdgpu_set_pp_table);
756 static DEVICE_ATTR(pp_dpm_sclk, S_IRUGO | S_IWUSR,
757 amdgpu_get_pp_dpm_sclk,
758 amdgpu_set_pp_dpm_sclk);
759 static DEVICE_ATTR(pp_dpm_mclk, S_IRUGO | S_IWUSR,
760 amdgpu_get_pp_dpm_mclk,
761 amdgpu_set_pp_dpm_mclk);
762 static DEVICE_ATTR(pp_dpm_pcie, S_IRUGO | S_IWUSR,
763 amdgpu_get_pp_dpm_pcie,
764 amdgpu_set_pp_dpm_pcie);
765 static DEVICE_ATTR(pp_sclk_od, S_IRUGO | S_IWUSR,
766 amdgpu_get_pp_sclk_od,
767 amdgpu_set_pp_sclk_od);
768 static DEVICE_ATTR(pp_mclk_od, S_IRUGO | S_IWUSR,
769 amdgpu_get_pp_mclk_od,
770 amdgpu_set_pp_mclk_od);
771 static DEVICE_ATTR(pp_gfx_power_profile, S_IRUGO | S_IWUSR,
772 amdgpu_get_pp_gfx_power_profile,
773 amdgpu_set_pp_gfx_power_profile);
774 static DEVICE_ATTR(pp_compute_power_profile, S_IRUGO | S_IWUSR,
775 amdgpu_get_pp_compute_power_profile,
776 amdgpu_set_pp_compute_power_profile);
778 static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
779 struct device_attribute *attr,
782 struct amdgpu_device *adev = dev_get_drvdata(dev);
783 struct drm_device *ddev = adev->ddev;
786 /* Can't get temperature when the card is off */
787 if ((adev->flags & AMD_IS_PX) &&
788 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
791 if (!adev->powerplay.pp_funcs->get_temperature)
794 temp = amdgpu_dpm_get_temperature(adev);
796 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
799 static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
800 struct device_attribute *attr,
803 struct amdgpu_device *adev = dev_get_drvdata(dev);
804 int hyst = to_sensor_dev_attr(attr)->index;
808 temp = adev->pm.dpm.thermal.min_temp;
810 temp = adev->pm.dpm.thermal.max_temp;
812 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
815 static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
816 struct device_attribute *attr,
819 struct amdgpu_device *adev = dev_get_drvdata(dev);
822 if (!adev->powerplay.pp_funcs->get_fan_control_mode)
825 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
827 return sprintf(buf, "%i\n", pwm_mode);
830 static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
831 struct device_attribute *attr,
835 struct amdgpu_device *adev = dev_get_drvdata(dev);
839 if (!adev->powerplay.pp_funcs->set_fan_control_mode)
842 err = kstrtoint(buf, 10, &value);
846 amdgpu_dpm_set_fan_control_mode(adev, value);
851 static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
852 struct device_attribute *attr,
855 return sprintf(buf, "%i\n", 0);
858 static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
859 struct device_attribute *attr,
862 return sprintf(buf, "%i\n", 255);
865 static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
866 struct device_attribute *attr,
867 const char *buf, size_t count)
869 struct amdgpu_device *adev = dev_get_drvdata(dev);
873 err = kstrtou32(buf, 10, &value);
877 value = (value * 100) / 255;
879 if (adev->powerplay.pp_funcs->set_fan_speed_percent) {
880 err = amdgpu_dpm_set_fan_speed_percent(adev, value);
888 static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
889 struct device_attribute *attr,
892 struct amdgpu_device *adev = dev_get_drvdata(dev);
896 if (adev->powerplay.pp_funcs->get_fan_speed_percent) {
897 err = amdgpu_dpm_get_fan_speed_percent(adev, &speed);
902 speed = (speed * 255) / 100;
904 return sprintf(buf, "%i\n", speed);
907 static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
908 struct device_attribute *attr,
911 struct amdgpu_device *adev = dev_get_drvdata(dev);
915 if (adev->powerplay.pp_funcs->get_fan_speed_rpm) {
916 err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
921 return sprintf(buf, "%i\n", speed);
924 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, 0);
925 static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
926 static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
927 static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
928 static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
929 static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
930 static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
931 static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
933 static struct attribute *hwmon_attributes[] = {
934 &sensor_dev_attr_temp1_input.dev_attr.attr,
935 &sensor_dev_attr_temp1_crit.dev_attr.attr,
936 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
937 &sensor_dev_attr_pwm1.dev_attr.attr,
938 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
939 &sensor_dev_attr_pwm1_min.dev_attr.attr,
940 &sensor_dev_attr_pwm1_max.dev_attr.attr,
941 &sensor_dev_attr_fan1_input.dev_attr.attr,
945 static umode_t hwmon_attributes_visible(struct kobject *kobj,
946 struct attribute *attr, int index)
948 struct device *dev = kobj_to_dev(kobj);
949 struct amdgpu_device *adev = dev_get_drvdata(dev);
950 umode_t effective_mode = attr->mode;
952 /* Skip limit attributes if DPM is not enabled */
953 if (!adev->pm.dpm_enabled &&
954 (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
955 attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
956 attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
957 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
958 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
959 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
962 if (adev->pp_enabled)
963 return effective_mode;
965 /* Skip fan attributes if fan is not present */
966 if (adev->pm.no_fan &&
967 (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
968 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
969 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
970 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
973 /* mask fan attributes if we have no bindings for this asic to expose */
974 if ((!adev->powerplay.pp_funcs->get_fan_speed_percent &&
975 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
976 (!adev->powerplay.pp_funcs->get_fan_control_mode &&
977 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
978 effective_mode &= ~S_IRUGO;
980 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
981 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
982 (!adev->powerplay.pp_funcs->set_fan_control_mode &&
983 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
984 effective_mode &= ~S_IWUSR;
986 /* hide max/min values if we can't both query and manage the fan */
987 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
988 !adev->powerplay.pp_funcs->get_fan_speed_percent) &&
989 (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
990 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
993 /* requires powerplay */
994 if (attr == &sensor_dev_attr_fan1_input.dev_attr.attr)
997 return effective_mode;
1000 static const struct attribute_group hwmon_attrgroup = {
1001 .attrs = hwmon_attributes,
1002 .is_visible = hwmon_attributes_visible,
1005 static const struct attribute_group *hwmon_groups[] = {
1010 void amdgpu_dpm_thermal_work_handler(struct work_struct *work)
1012 struct amdgpu_device *adev =
1013 container_of(work, struct amdgpu_device,
1014 pm.dpm.thermal.work);
1015 /* switch to the thermal state */
1016 enum amd_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
1018 if (!adev->pm.dpm_enabled)
1021 if (adev->powerplay.pp_funcs->get_temperature) {
1022 int temp = amdgpu_dpm_get_temperature(adev);
1024 if (temp < adev->pm.dpm.thermal.min_temp)
1025 /* switch back the user state */
1026 dpm_state = adev->pm.dpm.user_state;
1028 if (adev->pm.dpm.thermal.high_to_low)
1029 /* switch back the user state */
1030 dpm_state = adev->pm.dpm.user_state;
1032 mutex_lock(&adev->pm.mutex);
1033 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
1034 adev->pm.dpm.thermal_active = true;
1036 adev->pm.dpm.thermal_active = false;
1037 adev->pm.dpm.state = dpm_state;
1038 mutex_unlock(&adev->pm.mutex);
1040 amdgpu_pm_compute_clocks(adev);
1043 static struct amdgpu_ps *amdgpu_dpm_pick_power_state(struct amdgpu_device *adev,
1044 enum amd_pm_state_type dpm_state)
1047 struct amdgpu_ps *ps;
1049 bool single_display = (adev->pm.dpm.new_active_crtc_count < 2) ?
1052 /* check if the vblank period is too short to adjust the mclk */
1053 if (single_display && adev->powerplay.pp_funcs->vblank_too_short) {
1054 if (amdgpu_dpm_vblank_too_short(adev))
1055 single_display = false;
1058 /* certain older asics have a separare 3D performance state,
1059 * so try that first if the user selected performance
1061 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
1062 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
1063 /* balanced states don't exist at the moment */
1064 if (dpm_state == POWER_STATE_TYPE_BALANCED)
1065 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1068 /* Pick the best power state based on current conditions */
1069 for (i = 0; i < adev->pm.dpm.num_ps; i++) {
1070 ps = &adev->pm.dpm.ps[i];
1071 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
1072 switch (dpm_state) {
1074 case POWER_STATE_TYPE_BATTERY:
1075 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
1076 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1083 case POWER_STATE_TYPE_BALANCED:
1084 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
1085 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1092 case POWER_STATE_TYPE_PERFORMANCE:
1093 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
1094 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1101 /* internal states */
1102 case POWER_STATE_TYPE_INTERNAL_UVD:
1103 if (adev->pm.dpm.uvd_ps)
1104 return adev->pm.dpm.uvd_ps;
1107 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1108 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
1111 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1112 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
1115 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1116 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
1119 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1120 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
1123 case POWER_STATE_TYPE_INTERNAL_BOOT:
1124 return adev->pm.dpm.boot_ps;
1125 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1126 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
1129 case POWER_STATE_TYPE_INTERNAL_ACPI:
1130 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
1133 case POWER_STATE_TYPE_INTERNAL_ULV:
1134 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
1137 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1138 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
1145 /* use a fallback state if we didn't match */
1146 switch (dpm_state) {
1147 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1148 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
1149 goto restart_search;
1150 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1151 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1152 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1153 if (adev->pm.dpm.uvd_ps) {
1154 return adev->pm.dpm.uvd_ps;
1156 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1157 goto restart_search;
1159 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1160 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
1161 goto restart_search;
1162 case POWER_STATE_TYPE_INTERNAL_ACPI:
1163 dpm_state = POWER_STATE_TYPE_BATTERY;
1164 goto restart_search;
1165 case POWER_STATE_TYPE_BATTERY:
1166 case POWER_STATE_TYPE_BALANCED:
1167 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1168 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1169 goto restart_search;
1177 static void amdgpu_dpm_change_power_state_locked(struct amdgpu_device *adev)
1179 struct amdgpu_ps *ps;
1180 enum amd_pm_state_type dpm_state;
1184 /* if dpm init failed */
1185 if (!adev->pm.dpm_enabled)
1188 if (adev->pm.dpm.user_state != adev->pm.dpm.state) {
1189 /* add other state override checks here */
1190 if ((!adev->pm.dpm.thermal_active) &&
1191 (!adev->pm.dpm.uvd_active))
1192 adev->pm.dpm.state = adev->pm.dpm.user_state;
1194 dpm_state = adev->pm.dpm.state;
1196 ps = amdgpu_dpm_pick_power_state(adev, dpm_state);
1198 adev->pm.dpm.requested_ps = ps;
1202 if (amdgpu_dpm == 1 && adev->powerplay.pp_funcs->print_power_state) {
1203 printk("switching from power state:\n");
1204 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.current_ps);
1205 printk("switching to power state:\n");
1206 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.requested_ps);
1209 /* update whether vce is active */
1210 ps->vce_active = adev->pm.dpm.vce_active;
1211 if (adev->powerplay.pp_funcs->display_configuration_changed)
1212 amdgpu_dpm_display_configuration_changed(adev);
1214 ret = amdgpu_dpm_pre_set_power_state(adev);
1218 if (adev->powerplay.pp_funcs->check_state_equal) {
1219 if (0 != amdgpu_dpm_check_state_equal(adev, adev->pm.dpm.current_ps, adev->pm.dpm.requested_ps, &equal))
1226 amdgpu_dpm_set_power_state(adev);
1227 amdgpu_dpm_post_set_power_state(adev);
1229 adev->pm.dpm.current_active_crtcs = adev->pm.dpm.new_active_crtcs;
1230 adev->pm.dpm.current_active_crtc_count = adev->pm.dpm.new_active_crtc_count;
1232 if (adev->powerplay.pp_funcs->force_performance_level) {
1233 if (adev->pm.dpm.thermal_active) {
1234 enum amd_dpm_forced_level level = adev->pm.dpm.forced_level;
1235 /* force low perf level for thermal */
1236 amdgpu_dpm_force_performance_level(adev, AMD_DPM_FORCED_LEVEL_LOW);
1237 /* save the user's level */
1238 adev->pm.dpm.forced_level = level;
1240 /* otherwise, user selected level */
1241 amdgpu_dpm_force_performance_level(adev, adev->pm.dpm.forced_level);
1246 void amdgpu_dpm_enable_uvd(struct amdgpu_device *adev, bool enable)
1248 if (adev->powerplay.pp_funcs->powergate_uvd) {
1249 /* enable/disable UVD */
1250 mutex_lock(&adev->pm.mutex);
1251 amdgpu_dpm_powergate_uvd(adev, !enable);
1252 mutex_unlock(&adev->pm.mutex);
1255 mutex_lock(&adev->pm.mutex);
1256 adev->pm.dpm.uvd_active = true;
1257 adev->pm.dpm.state = POWER_STATE_TYPE_INTERNAL_UVD;
1258 mutex_unlock(&adev->pm.mutex);
1260 mutex_lock(&adev->pm.mutex);
1261 adev->pm.dpm.uvd_active = false;
1262 mutex_unlock(&adev->pm.mutex);
1264 amdgpu_pm_compute_clocks(adev);
1268 void amdgpu_dpm_enable_vce(struct amdgpu_device *adev, bool enable)
1270 if (adev->powerplay.pp_funcs->powergate_vce) {
1271 /* enable/disable VCE */
1272 mutex_lock(&adev->pm.mutex);
1273 amdgpu_dpm_powergate_vce(adev, !enable);
1274 mutex_unlock(&adev->pm.mutex);
1277 mutex_lock(&adev->pm.mutex);
1278 adev->pm.dpm.vce_active = true;
1279 /* XXX select vce level based on ring/task */
1280 adev->pm.dpm.vce_level = AMD_VCE_LEVEL_AC_ALL;
1281 mutex_unlock(&adev->pm.mutex);
1282 amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1283 AMD_CG_STATE_UNGATE);
1284 amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1285 AMD_PG_STATE_UNGATE);
1286 amdgpu_pm_compute_clocks(adev);
1288 amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1290 amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1292 mutex_lock(&adev->pm.mutex);
1293 adev->pm.dpm.vce_active = false;
1294 mutex_unlock(&adev->pm.mutex);
1295 amdgpu_pm_compute_clocks(adev);
1301 void amdgpu_pm_print_power_states(struct amdgpu_device *adev)
1305 if (adev->powerplay.pp_funcs->print_power_state == NULL)
1308 for (i = 0; i < adev->pm.dpm.num_ps; i++)
1309 amdgpu_dpm_print_power_state(adev, &adev->pm.dpm.ps[i]);
1313 int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
1317 if (adev->pm.sysfs_initialized)
1320 if (adev->powerplay.pp_funcs->get_temperature == NULL)
1323 adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
1326 if (IS_ERR(adev->pm.int_hwmon_dev)) {
1327 ret = PTR_ERR(adev->pm.int_hwmon_dev);
1329 "Unable to register hwmon device: %d\n", ret);
1333 ret = device_create_file(adev->dev, &dev_attr_power_dpm_state);
1335 DRM_ERROR("failed to create device file for dpm state\n");
1338 ret = device_create_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
1340 DRM_ERROR("failed to create device file for dpm state\n");
1344 if (adev->pp_enabled) {
1345 ret = device_create_file(adev->dev, &dev_attr_pp_num_states);
1347 DRM_ERROR("failed to create device file pp_num_states\n");
1350 ret = device_create_file(adev->dev, &dev_attr_pp_cur_state);
1352 DRM_ERROR("failed to create device file pp_cur_state\n");
1355 ret = device_create_file(adev->dev, &dev_attr_pp_force_state);
1357 DRM_ERROR("failed to create device file pp_force_state\n");
1360 ret = device_create_file(adev->dev, &dev_attr_pp_table);
1362 DRM_ERROR("failed to create device file pp_table\n");
1367 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_sclk);
1369 DRM_ERROR("failed to create device file pp_dpm_sclk\n");
1372 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
1374 DRM_ERROR("failed to create device file pp_dpm_mclk\n");
1377 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_pcie);
1379 DRM_ERROR("failed to create device file pp_dpm_pcie\n");
1382 ret = device_create_file(adev->dev, &dev_attr_pp_sclk_od);
1384 DRM_ERROR("failed to create device file pp_sclk_od\n");
1387 ret = device_create_file(adev->dev, &dev_attr_pp_mclk_od);
1389 DRM_ERROR("failed to create device file pp_mclk_od\n");
1392 ret = device_create_file(adev->dev,
1393 &dev_attr_pp_gfx_power_profile);
1395 DRM_ERROR("failed to create device file "
1396 "pp_gfx_power_profile\n");
1399 ret = device_create_file(adev->dev,
1400 &dev_attr_pp_compute_power_profile);
1402 DRM_ERROR("failed to create device file "
1403 "pp_compute_power_profile\n");
1407 ret = amdgpu_debugfs_pm_init(adev);
1409 DRM_ERROR("Failed to register debugfs file for dpm!\n");
1413 adev->pm.sysfs_initialized = true;
1418 void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
1420 if (adev->pm.int_hwmon_dev)
1421 hwmon_device_unregister(adev->pm.int_hwmon_dev);
1422 device_remove_file(adev->dev, &dev_attr_power_dpm_state);
1423 device_remove_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
1424 if (adev->pp_enabled) {
1425 device_remove_file(adev->dev, &dev_attr_pp_num_states);
1426 device_remove_file(adev->dev, &dev_attr_pp_cur_state);
1427 device_remove_file(adev->dev, &dev_attr_pp_force_state);
1428 device_remove_file(adev->dev, &dev_attr_pp_table);
1430 device_remove_file(adev->dev, &dev_attr_pp_dpm_sclk);
1431 device_remove_file(adev->dev, &dev_attr_pp_dpm_mclk);
1432 device_remove_file(adev->dev, &dev_attr_pp_dpm_pcie);
1433 device_remove_file(adev->dev, &dev_attr_pp_sclk_od);
1434 device_remove_file(adev->dev, &dev_attr_pp_mclk_od);
1435 device_remove_file(adev->dev,
1436 &dev_attr_pp_gfx_power_profile);
1437 device_remove_file(adev->dev,
1438 &dev_attr_pp_compute_power_profile);
1441 void amdgpu_pm_compute_clocks(struct amdgpu_device *adev)
1443 struct drm_device *ddev = adev->ddev;
1444 struct drm_crtc *crtc;
1445 struct amdgpu_crtc *amdgpu_crtc;
1448 if (!adev->pm.dpm_enabled)
1451 if (adev->mode_info.num_crtc)
1452 amdgpu_display_bandwidth_update(adev);
1454 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
1455 struct amdgpu_ring *ring = adev->rings[i];
1456 if (ring && ring->ready)
1457 amdgpu_fence_wait_empty(ring);
1460 if (adev->pp_enabled) {
1461 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_DISPLAY_CONFIG_CHANGE, NULL, NULL);
1463 mutex_lock(&adev->pm.mutex);
1464 adev->pm.dpm.new_active_crtcs = 0;
1465 adev->pm.dpm.new_active_crtc_count = 0;
1466 if (adev->mode_info.num_crtc && adev->mode_info.mode_config_initialized) {
1467 list_for_each_entry(crtc,
1468 &ddev->mode_config.crtc_list, head) {
1469 amdgpu_crtc = to_amdgpu_crtc(crtc);
1470 if (crtc->enabled) {
1471 adev->pm.dpm.new_active_crtcs |= (1 << amdgpu_crtc->crtc_id);
1472 adev->pm.dpm.new_active_crtc_count++;
1476 /* update battery/ac status */
1477 if (power_supply_is_system_supplied() > 0)
1478 adev->pm.dpm.ac_power = true;
1480 adev->pm.dpm.ac_power = false;
1482 amdgpu_dpm_change_power_state_locked(adev);
1484 mutex_unlock(&adev->pm.mutex);
1491 #if defined(CONFIG_DEBUG_FS)
1493 static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
1496 struct pp_gpu_power query = {0};
1499 /* sanity check PP is enabled */
1500 if (!(adev->powerplay.pp_funcs &&
1501 adev->powerplay.pp_funcs->read_sensor))
1505 size = sizeof(value);
1506 seq_printf(m, "GFX Clocks and Power:\n");
1507 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
1508 seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
1509 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
1510 seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
1511 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
1512 seq_printf(m, "\t%u mV (VDDGFX)\n", value);
1513 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
1514 seq_printf(m, "\t%u mV (VDDNB)\n", value);
1515 size = sizeof(query);
1516 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER, (void *)&query, &size)) {
1517 seq_printf(m, "\t%u.%u W (VDDC)\n", query.vddc_power >> 8,
1518 query.vddc_power & 0xff);
1519 seq_printf(m, "\t%u.%u W (VDDCI)\n", query.vddci_power >> 8,
1520 query.vddci_power & 0xff);
1521 seq_printf(m, "\t%u.%u W (max GPU)\n", query.max_gpu_power >> 8,
1522 query.max_gpu_power & 0xff);
1523 seq_printf(m, "\t%u.%u W (average GPU)\n", query.average_gpu_power >> 8,
1524 query.average_gpu_power & 0xff);
1526 size = sizeof(value);
1527 seq_printf(m, "\n");
1530 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
1531 seq_printf(m, "GPU Temperature: %u C\n", value/1000);
1534 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
1535 seq_printf(m, "GPU Load: %u %%\n", value);
1536 seq_printf(m, "\n");
1539 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
1541 seq_printf(m, "UVD: Disabled\n");
1543 seq_printf(m, "UVD: Enabled\n");
1544 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
1545 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
1546 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
1547 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
1550 seq_printf(m, "\n");
1553 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
1555 seq_printf(m, "VCE: Disabled\n");
1557 seq_printf(m, "VCE: Enabled\n");
1558 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
1559 seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
1566 static void amdgpu_parse_cg_state(struct seq_file *m, u32 flags)
1570 for (i = 0; clocks[i].flag; i++)
1571 seq_printf(m, "\t%s: %s\n", clocks[i].name,
1572 (flags & clocks[i].flag) ? "On" : "Off");
1575 static int amdgpu_debugfs_pm_info(struct seq_file *m, void *data)
1577 struct drm_info_node *node = (struct drm_info_node *) m->private;
1578 struct drm_device *dev = node->minor->dev;
1579 struct amdgpu_device *adev = dev->dev_private;
1580 struct drm_device *ddev = adev->ddev;
1583 amdgpu_get_clockgating_state(adev, &flags);
1584 seq_printf(m, "Clock Gating Flags Mask: 0x%x\n", flags);
1585 amdgpu_parse_cg_state(m, flags);
1586 seq_printf(m, "\n");
1588 if (!adev->pm.dpm_enabled) {
1589 seq_printf(m, "dpm not enabled\n");
1592 if ((adev->flags & AMD_IS_PX) &&
1593 (ddev->switch_power_state != DRM_SWITCH_POWER_ON)) {
1594 seq_printf(m, "PX asic powered off\n");
1595 } else if (adev->pp_enabled) {
1596 return amdgpu_debugfs_pm_info_pp(m, adev);
1598 mutex_lock(&adev->pm.mutex);
1599 if (adev->powerplay.pp_funcs->debugfs_print_current_performance_level)
1600 adev->powerplay.pp_funcs->debugfs_print_current_performance_level(adev, m);
1602 seq_printf(m, "Debugfs support not implemented for this asic\n");
1603 mutex_unlock(&adev->pm.mutex);
1609 static const struct drm_info_list amdgpu_pm_info_list[] = {
1610 {"amdgpu_pm_info", amdgpu_debugfs_pm_info, 0, NULL},
1614 static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
1616 #if defined(CONFIG_DEBUG_FS)
1617 return amdgpu_debugfs_add_files(adev, amdgpu_pm_info_list, ARRAY_SIZE(amdgpu_pm_info_list));