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_MC_LS, "Memory Controller Light Sleep"},
47 {AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
48 {AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
49 {AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
50 {AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
51 {AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
52 {AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
53 {AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
54 {AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
55 {AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
59 void amdgpu_pm_acpi_event_handler(struct amdgpu_device *adev)
65 if (adev->pm.dpm_enabled) {
66 mutex_lock(&adev->pm.mutex);
67 if (power_supply_is_system_supplied() > 0)
68 adev->pm.dpm.ac_power = true;
70 adev->pm.dpm.ac_power = false;
71 if (adev->pm.funcs->enable_bapm)
72 amdgpu_dpm_enable_bapm(adev, adev->pm.dpm.ac_power);
73 mutex_unlock(&adev->pm.mutex);
77 static ssize_t amdgpu_get_dpm_state(struct device *dev,
78 struct device_attribute *attr,
81 struct drm_device *ddev = dev_get_drvdata(dev);
82 struct amdgpu_device *adev = ddev->dev_private;
83 enum amd_pm_state_type pm;
85 if (adev->pp_enabled) {
86 pm = amdgpu_dpm_get_current_power_state(adev);
88 pm = adev->pm.dpm.user_state;
90 return snprintf(buf, PAGE_SIZE, "%s\n",
91 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
92 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
95 static ssize_t amdgpu_set_dpm_state(struct device *dev,
96 struct device_attribute *attr,
100 struct drm_device *ddev = dev_get_drvdata(dev);
101 struct amdgpu_device *adev = ddev->dev_private;
102 enum amd_pm_state_type state;
104 if (strncmp("battery", buf, strlen("battery")) == 0)
105 state = POWER_STATE_TYPE_BATTERY;
106 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
107 state = POWER_STATE_TYPE_BALANCED;
108 else if (strncmp("performance", buf, strlen("performance")) == 0)
109 state = POWER_STATE_TYPE_PERFORMANCE;
115 if (adev->pp_enabled) {
116 amdgpu_dpm_dispatch_task(adev, AMD_PP_EVENT_ENABLE_USER_STATE, &state, NULL);
118 mutex_lock(&adev->pm.mutex);
119 adev->pm.dpm.user_state = state;
120 mutex_unlock(&adev->pm.mutex);
122 /* Can't set dpm state when the card is off */
123 if (!(adev->flags & AMD_IS_PX) ||
124 (ddev->switch_power_state == DRM_SWITCH_POWER_ON))
125 amdgpu_pm_compute_clocks(adev);
131 static ssize_t amdgpu_get_dpm_forced_performance_level(struct device *dev,
132 struct device_attribute *attr,
135 struct drm_device *ddev = dev_get_drvdata(dev);
136 struct amdgpu_device *adev = ddev->dev_private;
137 enum amd_dpm_forced_level level;
139 if ((adev->flags & AMD_IS_PX) &&
140 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
141 return snprintf(buf, PAGE_SIZE, "off\n");
143 level = amdgpu_dpm_get_performance_level(adev);
144 return snprintf(buf, PAGE_SIZE, "%s\n",
145 (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
146 (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
147 (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
148 (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
149 (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
150 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
151 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
152 (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
156 static ssize_t amdgpu_set_dpm_forced_performance_level(struct device *dev,
157 struct device_attribute *attr,
161 struct drm_device *ddev = dev_get_drvdata(dev);
162 struct amdgpu_device *adev = ddev->dev_private;
163 enum amd_dpm_forced_level level;
164 enum amd_dpm_forced_level current_level;
167 /* Can't force performance level when the card is off */
168 if ((adev->flags & AMD_IS_PX) &&
169 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
172 current_level = amdgpu_dpm_get_performance_level(adev);
174 if (strncmp("low", buf, strlen("low")) == 0) {
175 level = AMD_DPM_FORCED_LEVEL_LOW;
176 } else if (strncmp("high", buf, strlen("high")) == 0) {
177 level = AMD_DPM_FORCED_LEVEL_HIGH;
178 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
179 level = AMD_DPM_FORCED_LEVEL_AUTO;
180 } else if (strncmp("manual", buf, strlen("manual")) == 0) {
181 level = AMD_DPM_FORCED_LEVEL_MANUAL;
182 } else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
183 level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
184 } else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
185 level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
186 } else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
187 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
188 } else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
189 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
190 } else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
191 level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
197 if (current_level == level)
200 if (adev->pp_enabled)
201 amdgpu_dpm_force_performance_level(adev, level);
203 mutex_lock(&adev->pm.mutex);
204 if (adev->pm.dpm.thermal_active) {
206 mutex_unlock(&adev->pm.mutex);
209 ret = amdgpu_dpm_force_performance_level(adev, level);
213 adev->pm.dpm.forced_level = level;
214 mutex_unlock(&adev->pm.mutex);
221 static ssize_t amdgpu_get_pp_num_states(struct device *dev,
222 struct device_attribute *attr,
225 struct drm_device *ddev = dev_get_drvdata(dev);
226 struct amdgpu_device *adev = ddev->dev_private;
227 struct pp_states_info data;
230 if (adev->pp_enabled)
231 amdgpu_dpm_get_pp_num_states(adev, &data);
233 buf_len = snprintf(buf, PAGE_SIZE, "states: %d\n", data.nums);
234 for (i = 0; i < data.nums; i++)
235 buf_len += snprintf(buf + buf_len, PAGE_SIZE, "%d %s\n", i,
236 (data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
237 (data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
238 (data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
239 (data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
244 static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
245 struct device_attribute *attr,
248 struct drm_device *ddev = dev_get_drvdata(dev);
249 struct amdgpu_device *adev = ddev->dev_private;
250 struct pp_states_info data;
251 enum amd_pm_state_type pm = 0;
254 if (adev->pp_enabled) {
256 pm = amdgpu_dpm_get_current_power_state(adev);
257 amdgpu_dpm_get_pp_num_states(adev, &data);
259 for (i = 0; i < data.nums; i++) {
260 if (pm == data.states[i])
268 return snprintf(buf, PAGE_SIZE, "%d\n", i);
271 static ssize_t amdgpu_get_pp_force_state(struct device *dev,
272 struct device_attribute *attr,
275 struct drm_device *ddev = dev_get_drvdata(dev);
276 struct amdgpu_device *adev = ddev->dev_private;
277 struct pp_states_info data;
278 enum amd_pm_state_type pm = 0;
281 if (adev->pp_force_state_enabled && adev->pp_enabled) {
282 pm = amdgpu_dpm_get_current_power_state(adev);
283 amdgpu_dpm_get_pp_num_states(adev, &data);
285 for (i = 0; i < data.nums; i++) {
286 if (pm == data.states[i])
293 return snprintf(buf, PAGE_SIZE, "%d\n", i);
296 return snprintf(buf, PAGE_SIZE, "\n");
299 static ssize_t amdgpu_set_pp_force_state(struct device *dev,
300 struct device_attribute *attr,
304 struct drm_device *ddev = dev_get_drvdata(dev);
305 struct amdgpu_device *adev = ddev->dev_private;
306 enum amd_pm_state_type state = 0;
310 if (strlen(buf) == 1)
311 adev->pp_force_state_enabled = false;
312 else if (adev->pp_enabled) {
313 struct pp_states_info data;
315 ret = kstrtoul(buf, 0, &idx);
316 if (ret || idx >= ARRAY_SIZE(data.states)) {
321 amdgpu_dpm_get_pp_num_states(adev, &data);
322 state = data.states[idx];
323 /* only set user selected power states */
324 if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
325 state != POWER_STATE_TYPE_DEFAULT) {
326 amdgpu_dpm_dispatch_task(adev,
327 AMD_PP_EVENT_ENABLE_USER_STATE, &state, NULL);
328 adev->pp_force_state_enabled = true;
335 static ssize_t amdgpu_get_pp_table(struct device *dev,
336 struct device_attribute *attr,
339 struct drm_device *ddev = dev_get_drvdata(dev);
340 struct amdgpu_device *adev = ddev->dev_private;
344 if (adev->pp_enabled)
345 size = amdgpu_dpm_get_pp_table(adev, &table);
349 if (size >= PAGE_SIZE)
350 size = PAGE_SIZE - 1;
352 memcpy(buf, table, size);
357 static ssize_t amdgpu_set_pp_table(struct device *dev,
358 struct device_attribute *attr,
362 struct drm_device *ddev = dev_get_drvdata(dev);
363 struct amdgpu_device *adev = ddev->dev_private;
365 if (adev->pp_enabled)
366 amdgpu_dpm_set_pp_table(adev, buf, count);
371 static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
372 struct device_attribute *attr,
375 struct drm_device *ddev = dev_get_drvdata(dev);
376 struct amdgpu_device *adev = ddev->dev_private;
379 if (adev->pp_enabled)
380 size = amdgpu_dpm_print_clock_levels(adev, PP_SCLK, buf);
381 else if (adev->pm.funcs->print_clock_levels)
382 size = adev->pm.funcs->print_clock_levels(adev, PP_SCLK, buf);
387 static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
388 struct device_attribute *attr,
392 struct drm_device *ddev = dev_get_drvdata(dev);
393 struct amdgpu_device *adev = ddev->dev_private;
396 uint32_t i, mask = 0;
399 for (i = 0; i < strlen(buf); i++) {
400 if (*(buf + i) == '\n')
402 sub_str[0] = *(buf + i);
404 ret = kstrtol(sub_str, 0, &level);
413 if (adev->pp_enabled)
414 amdgpu_dpm_force_clock_level(adev, PP_SCLK, mask);
415 else if (adev->pm.funcs->force_clock_level)
416 adev->pm.funcs->force_clock_level(adev, PP_SCLK, mask);
421 static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
422 struct device_attribute *attr,
425 struct drm_device *ddev = dev_get_drvdata(dev);
426 struct amdgpu_device *adev = ddev->dev_private;
429 if (adev->pp_enabled)
430 size = amdgpu_dpm_print_clock_levels(adev, PP_MCLK, buf);
431 else if (adev->pm.funcs->print_clock_levels)
432 size = adev->pm.funcs->print_clock_levels(adev, PP_MCLK, buf);
437 static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
438 struct device_attribute *attr,
442 struct drm_device *ddev = dev_get_drvdata(dev);
443 struct amdgpu_device *adev = ddev->dev_private;
446 uint32_t i, mask = 0;
449 for (i = 0; i < strlen(buf); i++) {
450 if (*(buf + i) == '\n')
452 sub_str[0] = *(buf + i);
454 ret = kstrtol(sub_str, 0, &level);
463 if (adev->pp_enabled)
464 amdgpu_dpm_force_clock_level(adev, PP_MCLK, mask);
465 else if (adev->pm.funcs->force_clock_level)
466 adev->pm.funcs->force_clock_level(adev, PP_MCLK, mask);
471 static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
472 struct device_attribute *attr,
475 struct drm_device *ddev = dev_get_drvdata(dev);
476 struct amdgpu_device *adev = ddev->dev_private;
479 if (adev->pp_enabled)
480 size = amdgpu_dpm_print_clock_levels(adev, PP_PCIE, buf);
481 else if (adev->pm.funcs->print_clock_levels)
482 size = adev->pm.funcs->print_clock_levels(adev, PP_PCIE, buf);
487 static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
488 struct device_attribute *attr,
492 struct drm_device *ddev = dev_get_drvdata(dev);
493 struct amdgpu_device *adev = ddev->dev_private;
496 uint32_t i, mask = 0;
499 for (i = 0; i < strlen(buf); i++) {
500 if (*(buf + i) == '\n')
502 sub_str[0] = *(buf + i);
504 ret = kstrtol(sub_str, 0, &level);
513 if (adev->pp_enabled)
514 amdgpu_dpm_force_clock_level(adev, PP_PCIE, mask);
515 else if (adev->pm.funcs->force_clock_level)
516 adev->pm.funcs->force_clock_level(adev, PP_PCIE, mask);
521 static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
522 struct device_attribute *attr,
525 struct drm_device *ddev = dev_get_drvdata(dev);
526 struct amdgpu_device *adev = ddev->dev_private;
529 if (adev->pp_enabled)
530 value = amdgpu_dpm_get_sclk_od(adev);
531 else if (adev->pm.funcs->get_sclk_od)
532 value = adev->pm.funcs->get_sclk_od(adev);
534 return snprintf(buf, PAGE_SIZE, "%d\n", value);
537 static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
538 struct device_attribute *attr,
542 struct drm_device *ddev = dev_get_drvdata(dev);
543 struct amdgpu_device *adev = ddev->dev_private;
547 ret = kstrtol(buf, 0, &value);
554 if (adev->pp_enabled) {
555 amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
556 amdgpu_dpm_dispatch_task(adev, AMD_PP_EVENT_READJUST_POWER_STATE, NULL, NULL);
557 } else if (adev->pm.funcs->set_sclk_od) {
558 adev->pm.funcs->set_sclk_od(adev, (uint32_t)value);
559 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
560 amdgpu_pm_compute_clocks(adev);
567 static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
568 struct device_attribute *attr,
571 struct drm_device *ddev = dev_get_drvdata(dev);
572 struct amdgpu_device *adev = ddev->dev_private;
575 if (adev->pp_enabled)
576 value = amdgpu_dpm_get_mclk_od(adev);
577 else if (adev->pm.funcs->get_mclk_od)
578 value = adev->pm.funcs->get_mclk_od(adev);
580 return snprintf(buf, PAGE_SIZE, "%d\n", value);
583 static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
584 struct device_attribute *attr,
588 struct drm_device *ddev = dev_get_drvdata(dev);
589 struct amdgpu_device *adev = ddev->dev_private;
593 ret = kstrtol(buf, 0, &value);
600 if (adev->pp_enabled) {
601 amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
602 amdgpu_dpm_dispatch_task(adev, AMD_PP_EVENT_READJUST_POWER_STATE, NULL, NULL);
603 } else if (adev->pm.funcs->set_mclk_od) {
604 adev->pm.funcs->set_mclk_od(adev, (uint32_t)value);
605 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
606 amdgpu_pm_compute_clocks(adev);
613 static ssize_t amdgpu_get_pp_power_profile(struct device *dev,
614 char *buf, struct amd_pp_profile *query)
616 struct drm_device *ddev = dev_get_drvdata(dev);
617 struct amdgpu_device *adev = ddev->dev_private;
620 if (adev->pp_enabled)
621 ret = amdgpu_dpm_get_power_profile_state(
623 else if (adev->pm.funcs->get_power_profile_state)
624 ret = adev->pm.funcs->get_power_profile_state(
630 return snprintf(buf, PAGE_SIZE,
632 query->min_sclk / 100,
633 query->min_mclk / 100,
634 query->activity_threshold,
639 static ssize_t amdgpu_get_pp_gfx_power_profile(struct device *dev,
640 struct device_attribute *attr,
643 struct amd_pp_profile query = {0};
645 query.type = AMD_PP_GFX_PROFILE;
647 return amdgpu_get_pp_power_profile(dev, buf, &query);
650 static ssize_t amdgpu_get_pp_compute_power_profile(struct device *dev,
651 struct device_attribute *attr,
654 struct amd_pp_profile query = {0};
656 query.type = AMD_PP_COMPUTE_PROFILE;
658 return amdgpu_get_pp_power_profile(dev, buf, &query);
661 static ssize_t amdgpu_set_pp_power_profile(struct device *dev,
664 struct amd_pp_profile *request)
666 struct drm_device *ddev = dev_get_drvdata(dev);
667 struct amdgpu_device *adev = ddev->dev_private;
669 char *sub_str, buf_cpy[128], *tmp_str;
670 const char delimiter[3] = {' ', '\n', '\0'};
674 if (strncmp("reset", buf, strlen("reset")) == 0) {
675 if (adev->pp_enabled)
676 ret = amdgpu_dpm_reset_power_profile_state(
678 else if (adev->pm.funcs->reset_power_profile_state)
679 ret = adev->pm.funcs->reset_power_profile_state(
688 if (strncmp("set", buf, strlen("set")) == 0) {
689 if (adev->pp_enabled)
690 ret = amdgpu_dpm_set_power_profile_state(
692 else if (adev->pm.funcs->set_power_profile_state)
693 ret = adev->pm.funcs->set_power_profile_state(
702 if (count + 1 >= 128) {
707 memcpy(buf_cpy, buf, count + 1);
711 sub_str = strsep(&tmp_str, delimiter);
712 ret = kstrtol(sub_str, 0, &value);
720 /* input unit MHz convert to dpm table unit 10KHz*/
721 request->min_sclk = (uint32_t)value * 100;
724 /* input unit MHz convert to dpm table unit 10KHz*/
725 request->min_mclk = (uint32_t)value * 100;
728 request->activity_threshold = (uint16_t)value;
731 request->up_hyst = (uint8_t)value;
734 request->down_hyst = (uint8_t)value;
743 if (adev->pp_enabled)
744 ret = amdgpu_dpm_set_power_profile_state(
746 else if (adev->pm.funcs->set_power_profile_state)
747 ret = adev->pm.funcs->set_power_profile_state(
757 static ssize_t amdgpu_set_pp_gfx_power_profile(struct device *dev,
758 struct device_attribute *attr,
762 struct amd_pp_profile request = {0};
764 request.type = AMD_PP_GFX_PROFILE;
766 return amdgpu_set_pp_power_profile(dev, buf, count, &request);
769 static ssize_t amdgpu_set_pp_compute_power_profile(struct device *dev,
770 struct device_attribute *attr,
774 struct amd_pp_profile request = {0};
776 request.type = AMD_PP_COMPUTE_PROFILE;
778 return amdgpu_set_pp_power_profile(dev, buf, count, &request);
781 static DEVICE_ATTR(power_dpm_state, S_IRUGO | S_IWUSR, amdgpu_get_dpm_state, amdgpu_set_dpm_state);
782 static DEVICE_ATTR(power_dpm_force_performance_level, S_IRUGO | S_IWUSR,
783 amdgpu_get_dpm_forced_performance_level,
784 amdgpu_set_dpm_forced_performance_level);
785 static DEVICE_ATTR(pp_num_states, S_IRUGO, amdgpu_get_pp_num_states, NULL);
786 static DEVICE_ATTR(pp_cur_state, S_IRUGO, amdgpu_get_pp_cur_state, NULL);
787 static DEVICE_ATTR(pp_force_state, S_IRUGO | S_IWUSR,
788 amdgpu_get_pp_force_state,
789 amdgpu_set_pp_force_state);
790 static DEVICE_ATTR(pp_table, S_IRUGO | S_IWUSR,
792 amdgpu_set_pp_table);
793 static DEVICE_ATTR(pp_dpm_sclk, S_IRUGO | S_IWUSR,
794 amdgpu_get_pp_dpm_sclk,
795 amdgpu_set_pp_dpm_sclk);
796 static DEVICE_ATTR(pp_dpm_mclk, S_IRUGO | S_IWUSR,
797 amdgpu_get_pp_dpm_mclk,
798 amdgpu_set_pp_dpm_mclk);
799 static DEVICE_ATTR(pp_dpm_pcie, S_IRUGO | S_IWUSR,
800 amdgpu_get_pp_dpm_pcie,
801 amdgpu_set_pp_dpm_pcie);
802 static DEVICE_ATTR(pp_sclk_od, S_IRUGO | S_IWUSR,
803 amdgpu_get_pp_sclk_od,
804 amdgpu_set_pp_sclk_od);
805 static DEVICE_ATTR(pp_mclk_od, S_IRUGO | S_IWUSR,
806 amdgpu_get_pp_mclk_od,
807 amdgpu_set_pp_mclk_od);
808 static DEVICE_ATTR(pp_gfx_power_profile, S_IRUGO | S_IWUSR,
809 amdgpu_get_pp_gfx_power_profile,
810 amdgpu_set_pp_gfx_power_profile);
811 static DEVICE_ATTR(pp_compute_power_profile, S_IRUGO | S_IWUSR,
812 amdgpu_get_pp_compute_power_profile,
813 amdgpu_set_pp_compute_power_profile);
815 static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
816 struct device_attribute *attr,
819 struct amdgpu_device *adev = dev_get_drvdata(dev);
820 struct drm_device *ddev = adev->ddev;
823 /* Can't get temperature when the card is off */
824 if ((adev->flags & AMD_IS_PX) &&
825 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
828 if (!adev->pp_enabled && !adev->pm.funcs->get_temperature)
831 temp = amdgpu_dpm_get_temperature(adev);
833 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
836 static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
837 struct device_attribute *attr,
840 struct amdgpu_device *adev = dev_get_drvdata(dev);
841 int hyst = to_sensor_dev_attr(attr)->index;
845 temp = adev->pm.dpm.thermal.min_temp;
847 temp = adev->pm.dpm.thermal.max_temp;
849 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
852 static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
853 struct device_attribute *attr,
856 struct amdgpu_device *adev = dev_get_drvdata(dev);
859 if (!adev->pp_enabled && !adev->pm.funcs->get_fan_control_mode)
862 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
864 /* never 0 (full-speed), fuse or smc-controlled always */
865 return sprintf(buf, "%i\n", pwm_mode == FDO_PWM_MODE_STATIC ? 1 : 2);
868 static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
869 struct device_attribute *attr,
873 struct amdgpu_device *adev = dev_get_drvdata(dev);
877 if (!adev->pp_enabled && !adev->pm.funcs->set_fan_control_mode)
880 err = kstrtoint(buf, 10, &value);
885 case 1: /* manual, percent-based */
886 amdgpu_dpm_set_fan_control_mode(adev, FDO_PWM_MODE_STATIC);
888 default: /* disable */
889 amdgpu_dpm_set_fan_control_mode(adev, 0);
896 static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
897 struct device_attribute *attr,
900 return sprintf(buf, "%i\n", 0);
903 static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
904 struct device_attribute *attr,
907 return sprintf(buf, "%i\n", 255);
910 static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
911 struct device_attribute *attr,
912 const char *buf, size_t count)
914 struct amdgpu_device *adev = dev_get_drvdata(dev);
918 err = kstrtou32(buf, 10, &value);
922 value = (value * 100) / 255;
924 err = amdgpu_dpm_set_fan_speed_percent(adev, value);
931 static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
932 struct device_attribute *attr,
935 struct amdgpu_device *adev = dev_get_drvdata(dev);
939 err = amdgpu_dpm_get_fan_speed_percent(adev, &speed);
943 speed = (speed * 255) / 100;
945 return sprintf(buf, "%i\n", speed);
948 static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
949 struct device_attribute *attr,
952 struct amdgpu_device *adev = dev_get_drvdata(dev);
956 err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
960 return sprintf(buf, "%i\n", speed);
963 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, 0);
964 static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
965 static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
966 static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
967 static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
968 static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
969 static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
970 static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
972 static struct attribute *hwmon_attributes[] = {
973 &sensor_dev_attr_temp1_input.dev_attr.attr,
974 &sensor_dev_attr_temp1_crit.dev_attr.attr,
975 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
976 &sensor_dev_attr_pwm1.dev_attr.attr,
977 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
978 &sensor_dev_attr_pwm1_min.dev_attr.attr,
979 &sensor_dev_attr_pwm1_max.dev_attr.attr,
980 &sensor_dev_attr_fan1_input.dev_attr.attr,
984 static umode_t hwmon_attributes_visible(struct kobject *kobj,
985 struct attribute *attr, int index)
987 struct device *dev = kobj_to_dev(kobj);
988 struct amdgpu_device *adev = dev_get_drvdata(dev);
989 umode_t effective_mode = attr->mode;
991 /* Skip limit attributes if DPM is not enabled */
992 if (!adev->pm.dpm_enabled &&
993 (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
994 attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
995 attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
996 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
997 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
998 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
1001 if (adev->pp_enabled)
1002 return effective_mode;
1004 /* Skip fan attributes if fan is not present */
1005 if (adev->pm.no_fan &&
1006 (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
1007 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
1008 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
1009 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
1012 /* mask fan attributes if we have no bindings for this asic to expose */
1013 if ((!adev->pm.funcs->get_fan_speed_percent &&
1014 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
1015 (!adev->pm.funcs->get_fan_control_mode &&
1016 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
1017 effective_mode &= ~S_IRUGO;
1019 if ((!adev->pm.funcs->set_fan_speed_percent &&
1020 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
1021 (!adev->pm.funcs->set_fan_control_mode &&
1022 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
1023 effective_mode &= ~S_IWUSR;
1025 /* hide max/min values if we can't both query and manage the fan */
1026 if ((!adev->pm.funcs->set_fan_speed_percent &&
1027 !adev->pm.funcs->get_fan_speed_percent) &&
1028 (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
1029 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
1032 /* requires powerplay */
1033 if (attr == &sensor_dev_attr_fan1_input.dev_attr.attr)
1036 return effective_mode;
1039 static const struct attribute_group hwmon_attrgroup = {
1040 .attrs = hwmon_attributes,
1041 .is_visible = hwmon_attributes_visible,
1044 static const struct attribute_group *hwmon_groups[] = {
1049 void amdgpu_dpm_thermal_work_handler(struct work_struct *work)
1051 struct amdgpu_device *adev =
1052 container_of(work, struct amdgpu_device,
1053 pm.dpm.thermal.work);
1054 /* switch to the thermal state */
1055 enum amd_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
1057 if (!adev->pm.dpm_enabled)
1060 if (adev->pm.funcs->get_temperature) {
1061 int temp = amdgpu_dpm_get_temperature(adev);
1063 if (temp < adev->pm.dpm.thermal.min_temp)
1064 /* switch back the user state */
1065 dpm_state = adev->pm.dpm.user_state;
1067 if (adev->pm.dpm.thermal.high_to_low)
1068 /* switch back the user state */
1069 dpm_state = adev->pm.dpm.user_state;
1071 mutex_lock(&adev->pm.mutex);
1072 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
1073 adev->pm.dpm.thermal_active = true;
1075 adev->pm.dpm.thermal_active = false;
1076 adev->pm.dpm.state = dpm_state;
1077 mutex_unlock(&adev->pm.mutex);
1079 amdgpu_pm_compute_clocks(adev);
1082 static struct amdgpu_ps *amdgpu_dpm_pick_power_state(struct amdgpu_device *adev,
1083 enum amd_pm_state_type dpm_state)
1086 struct amdgpu_ps *ps;
1088 bool single_display = (adev->pm.dpm.new_active_crtc_count < 2) ?
1091 /* check if the vblank period is too short to adjust the mclk */
1092 if (single_display && adev->pm.funcs->vblank_too_short) {
1093 if (amdgpu_dpm_vblank_too_short(adev))
1094 single_display = false;
1097 /* certain older asics have a separare 3D performance state,
1098 * so try that first if the user selected performance
1100 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
1101 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
1102 /* balanced states don't exist at the moment */
1103 if (dpm_state == POWER_STATE_TYPE_BALANCED)
1104 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1107 /* Pick the best power state based on current conditions */
1108 for (i = 0; i < adev->pm.dpm.num_ps; i++) {
1109 ps = &adev->pm.dpm.ps[i];
1110 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
1111 switch (dpm_state) {
1113 case POWER_STATE_TYPE_BATTERY:
1114 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
1115 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1122 case POWER_STATE_TYPE_BALANCED:
1123 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
1124 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1131 case POWER_STATE_TYPE_PERFORMANCE:
1132 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
1133 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1140 /* internal states */
1141 case POWER_STATE_TYPE_INTERNAL_UVD:
1142 if (adev->pm.dpm.uvd_ps)
1143 return adev->pm.dpm.uvd_ps;
1146 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1147 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
1150 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1151 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
1154 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1155 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
1158 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1159 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
1162 case POWER_STATE_TYPE_INTERNAL_BOOT:
1163 return adev->pm.dpm.boot_ps;
1164 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1165 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
1168 case POWER_STATE_TYPE_INTERNAL_ACPI:
1169 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
1172 case POWER_STATE_TYPE_INTERNAL_ULV:
1173 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
1176 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1177 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
1184 /* use a fallback state if we didn't match */
1185 switch (dpm_state) {
1186 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1187 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
1188 goto restart_search;
1189 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1190 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1191 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1192 if (adev->pm.dpm.uvd_ps) {
1193 return adev->pm.dpm.uvd_ps;
1195 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1196 goto restart_search;
1198 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1199 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
1200 goto restart_search;
1201 case POWER_STATE_TYPE_INTERNAL_ACPI:
1202 dpm_state = POWER_STATE_TYPE_BATTERY;
1203 goto restart_search;
1204 case POWER_STATE_TYPE_BATTERY:
1205 case POWER_STATE_TYPE_BALANCED:
1206 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1207 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1208 goto restart_search;
1216 static void amdgpu_dpm_change_power_state_locked(struct amdgpu_device *adev)
1218 struct amdgpu_ps *ps;
1219 enum amd_pm_state_type dpm_state;
1223 /* if dpm init failed */
1224 if (!adev->pm.dpm_enabled)
1227 if (adev->pm.dpm.user_state != adev->pm.dpm.state) {
1228 /* add other state override checks here */
1229 if ((!adev->pm.dpm.thermal_active) &&
1230 (!adev->pm.dpm.uvd_active))
1231 adev->pm.dpm.state = adev->pm.dpm.user_state;
1233 dpm_state = adev->pm.dpm.state;
1235 ps = amdgpu_dpm_pick_power_state(adev, dpm_state);
1237 adev->pm.dpm.requested_ps = ps;
1241 if (amdgpu_dpm == 1) {
1242 printk("switching from power state:\n");
1243 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.current_ps);
1244 printk("switching to power state:\n");
1245 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.requested_ps);
1248 /* update whether vce is active */
1249 ps->vce_active = adev->pm.dpm.vce_active;
1251 amdgpu_dpm_display_configuration_changed(adev);
1253 ret = amdgpu_dpm_pre_set_power_state(adev);
1257 if ((0 != amgdpu_dpm_check_state_equal(adev, adev->pm.dpm.current_ps, adev->pm.dpm.requested_ps, &equal)))
1263 amdgpu_dpm_set_power_state(adev);
1264 amdgpu_dpm_post_set_power_state(adev);
1266 adev->pm.dpm.current_active_crtcs = adev->pm.dpm.new_active_crtcs;
1267 adev->pm.dpm.current_active_crtc_count = adev->pm.dpm.new_active_crtc_count;
1269 if (adev->pm.funcs->force_performance_level) {
1270 if (adev->pm.dpm.thermal_active) {
1271 enum amd_dpm_forced_level level = adev->pm.dpm.forced_level;
1272 /* force low perf level for thermal */
1273 amdgpu_dpm_force_performance_level(adev, AMD_DPM_FORCED_LEVEL_LOW);
1274 /* save the user's level */
1275 adev->pm.dpm.forced_level = level;
1277 /* otherwise, user selected level */
1278 amdgpu_dpm_force_performance_level(adev, adev->pm.dpm.forced_level);
1283 void amdgpu_dpm_enable_uvd(struct amdgpu_device *adev, bool enable)
1285 if (adev->pp_enabled || adev->pm.funcs->powergate_uvd) {
1286 /* enable/disable UVD */
1287 mutex_lock(&adev->pm.mutex);
1288 amdgpu_dpm_powergate_uvd(adev, !enable);
1289 mutex_unlock(&adev->pm.mutex);
1292 mutex_lock(&adev->pm.mutex);
1293 adev->pm.dpm.uvd_active = true;
1294 adev->pm.dpm.state = POWER_STATE_TYPE_INTERNAL_UVD;
1295 mutex_unlock(&adev->pm.mutex);
1297 mutex_lock(&adev->pm.mutex);
1298 adev->pm.dpm.uvd_active = false;
1299 mutex_unlock(&adev->pm.mutex);
1301 amdgpu_pm_compute_clocks(adev);
1305 void amdgpu_dpm_enable_vce(struct amdgpu_device *adev, bool enable)
1307 if (adev->pp_enabled || adev->pm.funcs->powergate_vce) {
1308 /* enable/disable VCE */
1309 mutex_lock(&adev->pm.mutex);
1310 amdgpu_dpm_powergate_vce(adev, !enable);
1311 mutex_unlock(&adev->pm.mutex);
1314 mutex_lock(&adev->pm.mutex);
1315 adev->pm.dpm.vce_active = true;
1316 /* XXX select vce level based on ring/task */
1317 adev->pm.dpm.vce_level = AMD_VCE_LEVEL_AC_ALL;
1318 mutex_unlock(&adev->pm.mutex);
1319 amdgpu_pm_compute_clocks(adev);
1320 amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1321 AMD_PG_STATE_UNGATE);
1322 amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1323 AMD_CG_STATE_UNGATE);
1325 amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1327 amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1329 mutex_lock(&adev->pm.mutex);
1330 adev->pm.dpm.vce_active = false;
1331 mutex_unlock(&adev->pm.mutex);
1332 amdgpu_pm_compute_clocks(adev);
1338 void amdgpu_pm_print_power_states(struct amdgpu_device *adev)
1342 if (adev->pp_enabled)
1346 for (i = 0; i < adev->pm.dpm.num_ps; i++)
1347 amdgpu_dpm_print_power_state(adev, &adev->pm.dpm.ps[i]);
1351 int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
1355 if (adev->pm.sysfs_initialized)
1358 if (!adev->pp_enabled) {
1359 if (adev->pm.funcs->get_temperature == NULL)
1363 adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
1366 if (IS_ERR(adev->pm.int_hwmon_dev)) {
1367 ret = PTR_ERR(adev->pm.int_hwmon_dev);
1369 "Unable to register hwmon device: %d\n", ret);
1373 ret = device_create_file(adev->dev, &dev_attr_power_dpm_state);
1375 DRM_ERROR("failed to create device file for dpm state\n");
1378 ret = device_create_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
1380 DRM_ERROR("failed to create device file for dpm state\n");
1384 if (adev->pp_enabled) {
1385 ret = device_create_file(adev->dev, &dev_attr_pp_num_states);
1387 DRM_ERROR("failed to create device file pp_num_states\n");
1390 ret = device_create_file(adev->dev, &dev_attr_pp_cur_state);
1392 DRM_ERROR("failed to create device file pp_cur_state\n");
1395 ret = device_create_file(adev->dev, &dev_attr_pp_force_state);
1397 DRM_ERROR("failed to create device file pp_force_state\n");
1400 ret = device_create_file(adev->dev, &dev_attr_pp_table);
1402 DRM_ERROR("failed to create device file pp_table\n");
1407 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_sclk);
1409 DRM_ERROR("failed to create device file pp_dpm_sclk\n");
1412 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
1414 DRM_ERROR("failed to create device file pp_dpm_mclk\n");
1417 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_pcie);
1419 DRM_ERROR("failed to create device file pp_dpm_pcie\n");
1422 ret = device_create_file(adev->dev, &dev_attr_pp_sclk_od);
1424 DRM_ERROR("failed to create device file pp_sclk_od\n");
1427 ret = device_create_file(adev->dev, &dev_attr_pp_mclk_od);
1429 DRM_ERROR("failed to create device file pp_mclk_od\n");
1432 ret = device_create_file(adev->dev,
1433 &dev_attr_pp_gfx_power_profile);
1435 DRM_ERROR("failed to create device file "
1436 "pp_gfx_power_profile\n");
1439 ret = device_create_file(adev->dev,
1440 &dev_attr_pp_compute_power_profile);
1442 DRM_ERROR("failed to create device file "
1443 "pp_compute_power_profile\n");
1447 ret = amdgpu_debugfs_pm_init(adev);
1449 DRM_ERROR("Failed to register debugfs file for dpm!\n");
1453 adev->pm.sysfs_initialized = true;
1458 void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
1460 if (adev->pm.int_hwmon_dev)
1461 hwmon_device_unregister(adev->pm.int_hwmon_dev);
1462 device_remove_file(adev->dev, &dev_attr_power_dpm_state);
1463 device_remove_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
1464 if (adev->pp_enabled) {
1465 device_remove_file(adev->dev, &dev_attr_pp_num_states);
1466 device_remove_file(adev->dev, &dev_attr_pp_cur_state);
1467 device_remove_file(adev->dev, &dev_attr_pp_force_state);
1468 device_remove_file(adev->dev, &dev_attr_pp_table);
1470 device_remove_file(adev->dev, &dev_attr_pp_dpm_sclk);
1471 device_remove_file(adev->dev, &dev_attr_pp_dpm_mclk);
1472 device_remove_file(adev->dev, &dev_attr_pp_dpm_pcie);
1473 device_remove_file(adev->dev, &dev_attr_pp_sclk_od);
1474 device_remove_file(adev->dev, &dev_attr_pp_mclk_od);
1475 device_remove_file(adev->dev,
1476 &dev_attr_pp_gfx_power_profile);
1477 device_remove_file(adev->dev,
1478 &dev_attr_pp_compute_power_profile);
1481 void amdgpu_pm_compute_clocks(struct amdgpu_device *adev)
1483 struct drm_device *ddev = adev->ddev;
1484 struct drm_crtc *crtc;
1485 struct amdgpu_crtc *amdgpu_crtc;
1488 if (!adev->pm.dpm_enabled)
1491 if (adev->mode_info.num_crtc)
1492 amdgpu_display_bandwidth_update(adev);
1494 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
1495 struct amdgpu_ring *ring = adev->rings[i];
1496 if (ring && ring->ready)
1497 amdgpu_fence_wait_empty(ring);
1500 if (adev->pp_enabled) {
1501 amdgpu_dpm_dispatch_task(adev, AMD_PP_EVENT_DISPLAY_CONFIG_CHANGE, NULL, NULL);
1503 mutex_lock(&adev->pm.mutex);
1504 adev->pm.dpm.new_active_crtcs = 0;
1505 adev->pm.dpm.new_active_crtc_count = 0;
1506 if (adev->mode_info.num_crtc && adev->mode_info.mode_config_initialized) {
1507 list_for_each_entry(crtc,
1508 &ddev->mode_config.crtc_list, head) {
1509 amdgpu_crtc = to_amdgpu_crtc(crtc);
1510 if (crtc->enabled) {
1511 adev->pm.dpm.new_active_crtcs |= (1 << amdgpu_crtc->crtc_id);
1512 adev->pm.dpm.new_active_crtc_count++;
1516 /* update battery/ac status */
1517 if (power_supply_is_system_supplied() > 0)
1518 adev->pm.dpm.ac_power = true;
1520 adev->pm.dpm.ac_power = false;
1522 amdgpu_dpm_change_power_state_locked(adev);
1524 mutex_unlock(&adev->pm.mutex);
1531 #if defined(CONFIG_DEBUG_FS)
1533 static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
1536 struct pp_gpu_power query = {0};
1539 /* sanity check PP is enabled */
1540 if (!(adev->powerplay.pp_funcs &&
1541 adev->powerplay.pp_funcs->read_sensor))
1545 size = sizeof(value);
1546 seq_printf(m, "GFX Clocks and Power:\n");
1547 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
1548 seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
1549 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
1550 seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
1551 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
1552 seq_printf(m, "\t%u mV (VDDGFX)\n", value);
1553 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
1554 seq_printf(m, "\t%u mV (VDDNB)\n", value);
1555 size = sizeof(query);
1556 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER, (void *)&query, &size)) {
1557 seq_printf(m, "\t%u.%u W (VDDC)\n", query.vddc_power >> 8,
1558 query.vddc_power & 0xff);
1559 seq_printf(m, "\t%u.%u W (VDDCI)\n", query.vddci_power >> 8,
1560 query.vddci_power & 0xff);
1561 seq_printf(m, "\t%u.%u W (max GPU)\n", query.max_gpu_power >> 8,
1562 query.max_gpu_power & 0xff);
1563 seq_printf(m, "\t%u.%u W (average GPU)\n", query.average_gpu_power >> 8,
1564 query.average_gpu_power & 0xff);
1566 size = sizeof(value);
1567 seq_printf(m, "\n");
1570 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
1571 seq_printf(m, "GPU Temperature: %u C\n", value/1000);
1574 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
1575 seq_printf(m, "GPU Load: %u %%\n", value);
1576 seq_printf(m, "\n");
1579 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
1581 seq_printf(m, "UVD: Disabled\n");
1583 seq_printf(m, "UVD: Enabled\n");
1584 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
1585 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
1586 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
1587 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
1590 seq_printf(m, "\n");
1593 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
1595 seq_printf(m, "VCE: Disabled\n");
1597 seq_printf(m, "VCE: Enabled\n");
1598 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
1599 seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
1606 static void amdgpu_parse_cg_state(struct seq_file *m, u32 flags)
1610 for (i = 0; clocks[i].flag; i++)
1611 seq_printf(m, "\t%s: %s\n", clocks[i].name,
1612 (flags & clocks[i].flag) ? "On" : "Off");
1615 static int amdgpu_debugfs_pm_info(struct seq_file *m, void *data)
1617 struct drm_info_node *node = (struct drm_info_node *) m->private;
1618 struct drm_device *dev = node->minor->dev;
1619 struct amdgpu_device *adev = dev->dev_private;
1620 struct drm_device *ddev = adev->ddev;
1623 amdgpu_get_clockgating_state(adev, &flags);
1624 seq_printf(m, "Clock Gating Flags Mask: 0x%x\n", flags);
1625 amdgpu_parse_cg_state(m, flags);
1626 seq_printf(m, "\n");
1628 if (!adev->pm.dpm_enabled) {
1629 seq_printf(m, "dpm not enabled\n");
1632 if ((adev->flags & AMD_IS_PX) &&
1633 (ddev->switch_power_state != DRM_SWITCH_POWER_ON)) {
1634 seq_printf(m, "PX asic powered off\n");
1635 } else if (adev->pp_enabled) {
1636 return amdgpu_debugfs_pm_info_pp(m, adev);
1638 mutex_lock(&adev->pm.mutex);
1639 if (adev->pm.funcs->debugfs_print_current_performance_level)
1640 adev->pm.funcs->debugfs_print_current_performance_level(adev, m);
1642 seq_printf(m, "Debugfs support not implemented for this asic\n");
1643 mutex_unlock(&adev->pm.mutex);
1649 static const struct drm_info_list amdgpu_pm_info_list[] = {
1650 {"amdgpu_pm_info", amdgpu_debugfs_pm_info, 0, NULL},
1654 static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
1656 #if defined(CONFIG_DEBUG_FS)
1657 return amdgpu_debugfs_add_files(adev, amdgpu_pm_info_list, ARRAY_SIZE(amdgpu_pm_info_list));