2 * Copyright 2017 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 #include <drm/drm_debugfs.h>
29 #include "amdgpu_drv.h"
30 #include "amdgpu_pm.h"
31 #include "amdgpu_dpm.h"
32 #include "amdgpu_display.h"
33 #include "amdgpu_smu.h"
35 #include <linux/power_supply.h>
36 #include <linux/pci.h>
37 #include <linux/hwmon.h>
38 #include <linux/hwmon-sysfs.h>
39 #include <linux/nospec.h>
43 static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev);
45 static const struct cg_flag_name clocks[] = {
46 {AMD_CG_SUPPORT_GFX_MGCG, "Graphics Medium Grain Clock Gating"},
47 {AMD_CG_SUPPORT_GFX_MGLS, "Graphics Medium Grain memory Light Sleep"},
48 {AMD_CG_SUPPORT_GFX_CGCG, "Graphics Coarse Grain Clock Gating"},
49 {AMD_CG_SUPPORT_GFX_CGLS, "Graphics Coarse Grain memory Light Sleep"},
50 {AMD_CG_SUPPORT_GFX_CGTS, "Graphics Coarse Grain Tree Shader Clock Gating"},
51 {AMD_CG_SUPPORT_GFX_CGTS_LS, "Graphics Coarse Grain Tree Shader Light Sleep"},
52 {AMD_CG_SUPPORT_GFX_CP_LS, "Graphics Command Processor Light Sleep"},
53 {AMD_CG_SUPPORT_GFX_RLC_LS, "Graphics Run List Controller Light Sleep"},
54 {AMD_CG_SUPPORT_GFX_3D_CGCG, "Graphics 3D Coarse Grain Clock Gating"},
55 {AMD_CG_SUPPORT_GFX_3D_CGLS, "Graphics 3D Coarse Grain memory Light Sleep"},
56 {AMD_CG_SUPPORT_MC_LS, "Memory Controller Light Sleep"},
57 {AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
58 {AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
59 {AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
60 {AMD_CG_SUPPORT_BIF_MGCG, "Bus Interface Medium Grain Clock Gating"},
61 {AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
62 {AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
63 {AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
64 {AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
65 {AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
66 {AMD_CG_SUPPORT_DRM_MGCG, "Digital Right Management Medium Grain Clock Gating"},
67 {AMD_CG_SUPPORT_DRM_LS, "Digital Right Management Light Sleep"},
68 {AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
69 {AMD_CG_SUPPORT_DF_MGCG, "Data Fabric Medium Grain Clock Gating"},
71 {AMD_CG_SUPPORT_ATHUB_MGCG, "Address Translation Hub Medium Grain Clock Gating"},
72 {AMD_CG_SUPPORT_ATHUB_LS, "Address Translation Hub Light Sleep"},
76 static const struct hwmon_temp_label {
77 enum PP_HWMON_TEMP channel;
80 {PP_TEMP_EDGE, "edge"},
81 {PP_TEMP_JUNCTION, "junction"},
85 void amdgpu_pm_acpi_event_handler(struct amdgpu_device *adev)
87 if (adev->pm.dpm_enabled) {
88 mutex_lock(&adev->pm.mutex);
89 if (power_supply_is_system_supplied() > 0)
90 adev->pm.ac_power = true;
92 adev->pm.ac_power = false;
93 if (adev->powerplay.pp_funcs->enable_bapm)
94 amdgpu_dpm_enable_bapm(adev, adev->pm.ac_power);
95 mutex_unlock(&adev->pm.mutex);
99 int amdgpu_dpm_read_sensor(struct amdgpu_device *adev, enum amd_pp_sensors sensor,
100 void *data, uint32_t *size)
107 if (is_support_sw_smu(adev))
108 ret = smu_read_sensor(&adev->smu, sensor, data, size);
110 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
111 ret = adev->powerplay.pp_funcs->read_sensor((adev)->powerplay.pp_handle,
121 * DOC: power_dpm_state
123 * The power_dpm_state file is a legacy interface and is only provided for
124 * backwards compatibility. The amdgpu driver provides a sysfs API for adjusting
125 * certain power related parameters. The file power_dpm_state is used for this.
126 * It accepts the following arguments:
136 * On older GPUs, the vbios provided a special power state for battery
137 * operation. Selecting battery switched to this state. This is no
138 * longer provided on newer GPUs so the option does nothing in that case.
142 * On older GPUs, the vbios provided a special power state for balanced
143 * operation. Selecting balanced switched to this state. This is no
144 * longer provided on newer GPUs so the option does nothing in that case.
148 * On older GPUs, the vbios provided a special power state for performance
149 * operation. Selecting performance switched to this state. This is no
150 * longer provided on newer GPUs so the option does nothing in that case.
154 static ssize_t amdgpu_get_dpm_state(struct device *dev,
155 struct device_attribute *attr,
158 struct drm_device *ddev = dev_get_drvdata(dev);
159 struct amdgpu_device *adev = ddev->dev_private;
160 enum amd_pm_state_type pm;
162 if (is_support_sw_smu(adev)) {
163 if (adev->smu.ppt_funcs->get_current_power_state)
164 pm = amdgpu_smu_get_current_power_state(adev);
166 pm = adev->pm.dpm.user_state;
167 } else if (adev->powerplay.pp_funcs->get_current_power_state) {
168 pm = amdgpu_dpm_get_current_power_state(adev);
170 pm = adev->pm.dpm.user_state;
173 return snprintf(buf, PAGE_SIZE, "%s\n",
174 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
175 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
178 static ssize_t amdgpu_set_dpm_state(struct device *dev,
179 struct device_attribute *attr,
183 struct drm_device *ddev = dev_get_drvdata(dev);
184 struct amdgpu_device *adev = ddev->dev_private;
185 enum amd_pm_state_type state;
187 if (strncmp("battery", buf, strlen("battery")) == 0)
188 state = POWER_STATE_TYPE_BATTERY;
189 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
190 state = POWER_STATE_TYPE_BALANCED;
191 else if (strncmp("performance", buf, strlen("performance")) == 0)
192 state = POWER_STATE_TYPE_PERFORMANCE;
198 if (is_support_sw_smu(adev)) {
199 mutex_lock(&adev->pm.mutex);
200 adev->pm.dpm.user_state = state;
201 mutex_unlock(&adev->pm.mutex);
202 } else if (adev->powerplay.pp_funcs->dispatch_tasks) {
203 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_ENABLE_USER_STATE, &state);
205 mutex_lock(&adev->pm.mutex);
206 adev->pm.dpm.user_state = state;
207 mutex_unlock(&adev->pm.mutex);
209 /* Can't set dpm state when the card is off */
210 if (!(adev->flags & AMD_IS_PX) ||
211 (ddev->switch_power_state == DRM_SWITCH_POWER_ON))
212 amdgpu_pm_compute_clocks(adev);
220 * DOC: power_dpm_force_performance_level
222 * The amdgpu driver provides a sysfs API for adjusting certain power
223 * related parameters. The file power_dpm_force_performance_level is
224 * used for this. It accepts the following arguments:
244 * When auto is selected, the driver will attempt to dynamically select
245 * the optimal power profile for current conditions in the driver.
249 * When low is selected, the clocks are forced to the lowest power state.
253 * When high is selected, the clocks are forced to the highest power state.
257 * When manual is selected, the user can manually adjust which power states
258 * are enabled for each clock domain via the sysfs pp_dpm_mclk, pp_dpm_sclk,
259 * and pp_dpm_pcie files and adjust the power state transition heuristics
260 * via the pp_power_profile_mode sysfs file.
267 * When the profiling modes are selected, clock and power gating are
268 * disabled and the clocks are set for different profiling cases. This
269 * mode is recommended for profiling specific work loads where you do
270 * not want clock or power gating for clock fluctuation to interfere
271 * with your results. profile_standard sets the clocks to a fixed clock
272 * level which varies from asic to asic. profile_min_sclk forces the sclk
273 * to the lowest level. profile_min_mclk forces the mclk to the lowest level.
274 * profile_peak sets all clocks (mclk, sclk, pcie) to the highest levels.
278 static ssize_t amdgpu_get_dpm_forced_performance_level(struct device *dev,
279 struct device_attribute *attr,
282 struct drm_device *ddev = dev_get_drvdata(dev);
283 struct amdgpu_device *adev = ddev->dev_private;
284 enum amd_dpm_forced_level level = 0xff;
286 if (amdgpu_sriov_vf(adev))
289 if ((adev->flags & AMD_IS_PX) &&
290 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
291 return snprintf(buf, PAGE_SIZE, "off\n");
293 if (is_support_sw_smu(adev))
294 level = smu_get_performance_level(&adev->smu);
295 else if (adev->powerplay.pp_funcs->get_performance_level)
296 level = amdgpu_dpm_get_performance_level(adev);
298 level = adev->pm.dpm.forced_level;
300 return snprintf(buf, PAGE_SIZE, "%s\n",
301 (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
302 (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
303 (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
304 (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
305 (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
306 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
307 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
308 (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
312 static ssize_t amdgpu_set_dpm_forced_performance_level(struct device *dev,
313 struct device_attribute *attr,
317 struct drm_device *ddev = dev_get_drvdata(dev);
318 struct amdgpu_device *adev = ddev->dev_private;
319 enum amd_dpm_forced_level level;
320 enum amd_dpm_forced_level current_level = 0xff;
323 /* Can't force performance level when the card is off */
324 if ((adev->flags & AMD_IS_PX) &&
325 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
328 if (strncmp("low", buf, strlen("low")) == 0) {
329 level = AMD_DPM_FORCED_LEVEL_LOW;
330 } else if (strncmp("high", buf, strlen("high")) == 0) {
331 level = AMD_DPM_FORCED_LEVEL_HIGH;
332 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
333 level = AMD_DPM_FORCED_LEVEL_AUTO;
334 } else if (strncmp("manual", buf, strlen("manual")) == 0) {
335 level = AMD_DPM_FORCED_LEVEL_MANUAL;
336 } else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
337 level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
338 } else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
339 level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
340 } else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
341 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
342 } else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
343 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
344 } else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
345 level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
351 /* handle sriov case here */
352 if (amdgpu_sriov_vf(adev)) {
353 if (amdgim_is_hwperf(adev) &&
354 adev->virt.ops->force_dpm_level) {
355 mutex_lock(&adev->pm.mutex);
356 adev->virt.ops->force_dpm_level(adev, level);
357 mutex_unlock(&adev->pm.mutex);
364 if (is_support_sw_smu(adev))
365 current_level = smu_get_performance_level(&adev->smu);
366 else if (adev->powerplay.pp_funcs->get_performance_level)
367 current_level = amdgpu_dpm_get_performance_level(adev);
369 if (current_level == level)
372 /* profile_exit setting is valid only when current mode is in profile mode */
373 if (!(current_level & (AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD |
374 AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK |
375 AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK |
376 AMD_DPM_FORCED_LEVEL_PROFILE_PEAK)) &&
377 (level == AMD_DPM_FORCED_LEVEL_PROFILE_EXIT)) {
378 pr_err("Currently not in any profile mode!\n");
382 if (is_support_sw_smu(adev)) {
383 ret = smu_force_performance_level(&adev->smu, level);
386 } else if (adev->powerplay.pp_funcs->force_performance_level) {
387 mutex_lock(&adev->pm.mutex);
388 if (adev->pm.dpm.thermal_active) {
390 mutex_unlock(&adev->pm.mutex);
393 ret = amdgpu_dpm_force_performance_level(adev, level);
397 adev->pm.dpm.forced_level = level;
398 mutex_unlock(&adev->pm.mutex);
405 static ssize_t amdgpu_get_pp_num_states(struct device *dev,
406 struct device_attribute *attr,
409 struct drm_device *ddev = dev_get_drvdata(dev);
410 struct amdgpu_device *adev = ddev->dev_private;
411 struct pp_states_info data;
414 if (is_support_sw_smu(adev)) {
415 ret = smu_get_power_num_states(&adev->smu, &data);
418 } else if (adev->powerplay.pp_funcs->get_pp_num_states)
419 amdgpu_dpm_get_pp_num_states(adev, &data);
421 buf_len = snprintf(buf, PAGE_SIZE, "states: %d\n", data.nums);
422 for (i = 0; i < data.nums; i++)
423 buf_len += snprintf(buf + buf_len, PAGE_SIZE, "%d %s\n", i,
424 (data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
425 (data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
426 (data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
427 (data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
432 static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
433 struct device_attribute *attr,
436 struct drm_device *ddev = dev_get_drvdata(dev);
437 struct amdgpu_device *adev = ddev->dev_private;
438 struct pp_states_info data;
439 struct smu_context *smu = &adev->smu;
440 enum amd_pm_state_type pm = 0;
443 if (is_support_sw_smu(adev)) {
444 pm = smu_get_current_power_state(smu);
445 ret = smu_get_power_num_states(smu, &data);
448 } else if (adev->powerplay.pp_funcs->get_current_power_state
449 && adev->powerplay.pp_funcs->get_pp_num_states) {
450 pm = amdgpu_dpm_get_current_power_state(adev);
451 amdgpu_dpm_get_pp_num_states(adev, &data);
454 for (i = 0; i < data.nums; i++) {
455 if (pm == data.states[i])
462 return snprintf(buf, PAGE_SIZE, "%d\n", i);
465 static ssize_t amdgpu_get_pp_force_state(struct device *dev,
466 struct device_attribute *attr,
469 struct drm_device *ddev = dev_get_drvdata(dev);
470 struct amdgpu_device *adev = ddev->dev_private;
472 if (adev->pp_force_state_enabled)
473 return amdgpu_get_pp_cur_state(dev, attr, buf);
475 return snprintf(buf, PAGE_SIZE, "\n");
478 static ssize_t amdgpu_set_pp_force_state(struct device *dev,
479 struct device_attribute *attr,
483 struct drm_device *ddev = dev_get_drvdata(dev);
484 struct amdgpu_device *adev = ddev->dev_private;
485 enum amd_pm_state_type state = 0;
489 if (strlen(buf) == 1)
490 adev->pp_force_state_enabled = false;
491 else if (is_support_sw_smu(adev))
492 adev->pp_force_state_enabled = false;
493 else if (adev->powerplay.pp_funcs->dispatch_tasks &&
494 adev->powerplay.pp_funcs->get_pp_num_states) {
495 struct pp_states_info data;
497 ret = kstrtoul(buf, 0, &idx);
498 if (ret || idx >= ARRAY_SIZE(data.states)) {
502 idx = array_index_nospec(idx, ARRAY_SIZE(data.states));
504 amdgpu_dpm_get_pp_num_states(adev, &data);
505 state = data.states[idx];
506 /* only set user selected power states */
507 if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
508 state != POWER_STATE_TYPE_DEFAULT) {
509 amdgpu_dpm_dispatch_task(adev,
510 AMD_PP_TASK_ENABLE_USER_STATE, &state);
511 adev->pp_force_state_enabled = true;
521 * The amdgpu driver provides a sysfs API for uploading new powerplay
522 * tables. The file pp_table is used for this. Reading the file
523 * will dump the current power play table. Writing to the file
524 * will attempt to upload a new powerplay table and re-initialize
525 * powerplay using that new table.
529 static ssize_t amdgpu_get_pp_table(struct device *dev,
530 struct device_attribute *attr,
533 struct drm_device *ddev = dev_get_drvdata(dev);
534 struct amdgpu_device *adev = ddev->dev_private;
538 if (is_support_sw_smu(adev)) {
539 size = smu_sys_get_pp_table(&adev->smu, (void **)&table);
543 else if (adev->powerplay.pp_funcs->get_pp_table)
544 size = amdgpu_dpm_get_pp_table(adev, &table);
548 if (size >= PAGE_SIZE)
549 size = PAGE_SIZE - 1;
551 memcpy(buf, table, size);
556 static ssize_t amdgpu_set_pp_table(struct device *dev,
557 struct device_attribute *attr,
561 struct drm_device *ddev = dev_get_drvdata(dev);
562 struct amdgpu_device *adev = ddev->dev_private;
565 if (is_support_sw_smu(adev)) {
566 ret = smu_sys_set_pp_table(&adev->smu, (void *)buf, count);
569 } else if (adev->powerplay.pp_funcs->set_pp_table)
570 amdgpu_dpm_set_pp_table(adev, buf, count);
576 * DOC: pp_od_clk_voltage
578 * The amdgpu driver provides a sysfs API for adjusting the clocks and voltages
579 * in each power level within a power state. The pp_od_clk_voltage is used for
582 * < For Vega10 and previous ASICs >
584 * Reading the file will display:
586 * - a list of engine clock levels and voltages labeled OD_SCLK
588 * - a list of memory clock levels and voltages labeled OD_MCLK
590 * - a list of valid ranges for sclk, mclk, and voltage labeled OD_RANGE
592 * To manually adjust these settings, first select manual using
593 * power_dpm_force_performance_level. Enter a new value for each
594 * level by writing a string that contains "s/m level clock voltage" to
595 * the file. E.g., "s 1 500 820" will update sclk level 1 to be 500 MHz
596 * at 820 mV; "m 0 350 810" will update mclk level 0 to be 350 MHz at
597 * 810 mV. When you have edited all of the states as needed, write
598 * "c" (commit) to the file to commit your changes. If you want to reset to the
599 * default power levels, write "r" (reset) to the file to reset them.
604 * Reading the file will display:
606 * - minimum and maximum engine clock labeled OD_SCLK
608 * - maximum memory clock labeled OD_MCLK
610 * - three <frequency, voltage> points labeled OD_VDDC_CURVE.
611 * They can be used to calibrate the sclk voltage curve.
613 * - a list of valid ranges for sclk, mclk, and voltage curve points
616 * To manually adjust these settings:
618 * - First select manual using power_dpm_force_performance_level
620 * - For clock frequency setting, enter a new value by writing a
621 * string that contains "s/m index clock" to the file. The index
622 * should be 0 if to set minimum clock. And 1 if to set maximum
623 * clock. E.g., "s 0 500" will update minimum sclk to be 500 MHz.
624 * "m 1 800" will update maximum mclk to be 800Mhz.
626 * For sclk voltage curve, enter the new values by writing a
627 * string that contains "vc point clock voltage" to the file. The
628 * points are indexed by 0, 1 and 2. E.g., "vc 0 300 600" will
629 * update point1 with clock set as 300Mhz and voltage as
630 * 600mV. "vc 2 1000 1000" will update point3 with clock set
631 * as 1000Mhz and voltage 1000mV.
633 * - When you have edited all of the states as needed, write "c" (commit)
634 * to the file to commit your changes
636 * - If you want to reset to the default power levels, write "r" (reset)
637 * to the file to reset them
641 static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev,
642 struct device_attribute *attr,
646 struct drm_device *ddev = dev_get_drvdata(dev);
647 struct amdgpu_device *adev = ddev->dev_private;
649 uint32_t parameter_size = 0;
654 const char delimiter[3] = {' ', '\n', '\0'};
661 type = PP_OD_EDIT_SCLK_VDDC_TABLE;
662 else if (*buf == 'm')
663 type = PP_OD_EDIT_MCLK_VDDC_TABLE;
665 type = PP_OD_RESTORE_DEFAULT_TABLE;
666 else if (*buf == 'c')
667 type = PP_OD_COMMIT_DPM_TABLE;
668 else if (!strncmp(buf, "vc", 2))
669 type = PP_OD_EDIT_VDDC_CURVE;
673 memcpy(buf_cpy, buf, count+1);
677 if (type == PP_OD_EDIT_VDDC_CURVE)
679 while (isspace(*++tmp_str));
682 sub_str = strsep(&tmp_str, delimiter);
683 ret = kstrtol(sub_str, 0, ¶meter[parameter_size]);
688 while (isspace(*tmp_str))
692 if (is_support_sw_smu(adev)) {
693 ret = smu_od_edit_dpm_table(&adev->smu, type,
694 parameter, parameter_size);
699 if (adev->powerplay.pp_funcs->odn_edit_dpm_table) {
700 ret = amdgpu_dpm_odn_edit_dpm_table(adev, type,
701 parameter, parameter_size);
706 if (type == PP_OD_COMMIT_DPM_TABLE) {
707 if (adev->powerplay.pp_funcs->dispatch_tasks) {
708 amdgpu_dpm_dispatch_task(adev,
709 AMD_PP_TASK_READJUST_POWER_STATE,
721 static ssize_t amdgpu_get_pp_od_clk_voltage(struct device *dev,
722 struct device_attribute *attr,
725 struct drm_device *ddev = dev_get_drvdata(dev);
726 struct amdgpu_device *adev = ddev->dev_private;
729 if (is_support_sw_smu(adev)) {
730 size = smu_print_clk_levels(&adev->smu, SMU_OD_SCLK, buf);
731 size += smu_print_clk_levels(&adev->smu, SMU_OD_MCLK, buf+size);
732 size += smu_print_clk_levels(&adev->smu, SMU_OD_VDDC_CURVE, buf+size);
733 size += smu_print_clk_levels(&adev->smu, SMU_OD_RANGE, buf+size);
735 } else if (adev->powerplay.pp_funcs->print_clock_levels) {
736 size = amdgpu_dpm_print_clock_levels(adev, OD_SCLK, buf);
737 size += amdgpu_dpm_print_clock_levels(adev, OD_MCLK, buf+size);
738 size += amdgpu_dpm_print_clock_levels(adev, OD_VDDC_CURVE, buf+size);
739 size += amdgpu_dpm_print_clock_levels(adev, OD_RANGE, buf+size);
742 return snprintf(buf, PAGE_SIZE, "\n");
750 * The amdgpu driver provides a sysfs API for adjusting what powerplay
751 * features to be enabled. The file pp_features is used for this. And
752 * this is only available for Vega10 and later dGPUs.
754 * Reading back the file will show you the followings:
755 * - Current ppfeature masks
756 * - List of the all supported powerplay features with their naming,
757 * bitmasks and enablement status('Y'/'N' means "enabled"/"disabled").
759 * To manually enable or disable a specific feature, just set or clear
760 * the corresponding bit from original ppfeature masks and input the
761 * new ppfeature masks.
763 static ssize_t amdgpu_set_pp_feature_status(struct device *dev,
764 struct device_attribute *attr,
768 struct drm_device *ddev = dev_get_drvdata(dev);
769 struct amdgpu_device *adev = ddev->dev_private;
770 uint64_t featuremask;
773 ret = kstrtou64(buf, 0, &featuremask);
777 pr_debug("featuremask = 0x%llx\n", featuremask);
779 if (is_support_sw_smu(adev)) {
780 ret = smu_sys_set_pp_feature_mask(&adev->smu, featuremask);
783 } else if (adev->powerplay.pp_funcs->set_ppfeature_status) {
784 ret = amdgpu_dpm_set_ppfeature_status(adev, featuremask);
792 static ssize_t amdgpu_get_pp_feature_status(struct device *dev,
793 struct device_attribute *attr,
796 struct drm_device *ddev = dev_get_drvdata(dev);
797 struct amdgpu_device *adev = ddev->dev_private;
799 if (is_support_sw_smu(adev)) {
800 return smu_sys_get_pp_feature_mask(&adev->smu, buf);
801 } else if (adev->powerplay.pp_funcs->get_ppfeature_status)
802 return amdgpu_dpm_get_ppfeature_status(adev, buf);
804 return snprintf(buf, PAGE_SIZE, "\n");
808 * DOC: pp_dpm_sclk pp_dpm_mclk pp_dpm_socclk pp_dpm_fclk pp_dpm_dcefclk
811 * The amdgpu driver provides a sysfs API for adjusting what power levels
812 * are enabled for a given power state. The files pp_dpm_sclk, pp_dpm_mclk,
813 * pp_dpm_socclk, pp_dpm_fclk, pp_dpm_dcefclk and pp_dpm_pcie are used for
816 * pp_dpm_socclk and pp_dpm_dcefclk interfaces are only available for
817 * Vega10 and later ASICs.
818 * pp_dpm_fclk interface is only available for Vega20 and later ASICs.
820 * Reading back the files will show you the available power levels within
821 * the power state and the clock information for those levels.
823 * To manually adjust these states, first select manual using
824 * power_dpm_force_performance_level.
825 * Secondly,Enter a new value for each level by inputing a string that
826 * contains " echo xx xx xx > pp_dpm_sclk/mclk/pcie"
827 * E.g., echo 4 5 6 to > pp_dpm_sclk will enable sclk levels 4, 5, and 6.
829 * NOTE: change to the dcefclk max dpm level is not supported now
832 static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
833 struct device_attribute *attr,
836 struct drm_device *ddev = dev_get_drvdata(dev);
837 struct amdgpu_device *adev = ddev->dev_private;
839 if (amdgpu_sriov_vf(adev) && amdgim_is_hwperf(adev) &&
840 adev->virt.ops->get_pp_clk)
841 return adev->virt.ops->get_pp_clk(adev, PP_SCLK, buf);
843 if (is_support_sw_smu(adev))
844 return smu_print_clk_levels(&adev->smu, SMU_SCLK, buf);
845 else if (adev->powerplay.pp_funcs->print_clock_levels)
846 return amdgpu_dpm_print_clock_levels(adev, PP_SCLK, buf);
848 return snprintf(buf, PAGE_SIZE, "\n");
852 * Worst case: 32 bits individually specified, in octal at 12 characters
853 * per line (+1 for \n).
855 #define AMDGPU_MASK_BUF_MAX (32 * 13)
857 static ssize_t amdgpu_read_mask(const char *buf, size_t count, uint32_t *mask)
861 char *sub_str = NULL;
863 char buf_cpy[AMDGPU_MASK_BUF_MAX + 1];
864 const char delimiter[3] = {' ', '\n', '\0'};
869 bytes = min(count, sizeof(buf_cpy) - 1);
870 memcpy(buf_cpy, buf, bytes);
871 buf_cpy[bytes] = '\0';
874 sub_str = strsep(&tmp, delimiter);
875 if (strlen(sub_str)) {
876 ret = kstrtol(sub_str, 0, &level);
887 static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
888 struct device_attribute *attr,
892 struct drm_device *ddev = dev_get_drvdata(dev);
893 struct amdgpu_device *adev = ddev->dev_private;
897 if (amdgpu_sriov_vf(adev))
900 ret = amdgpu_read_mask(buf, count, &mask);
904 if (is_support_sw_smu(adev))
905 ret = smu_force_clk_levels(&adev->smu, SMU_SCLK, mask);
906 else if (adev->powerplay.pp_funcs->force_clock_level)
907 ret = amdgpu_dpm_force_clock_level(adev, PP_SCLK, mask);
915 static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
916 struct device_attribute *attr,
919 struct drm_device *ddev = dev_get_drvdata(dev);
920 struct amdgpu_device *adev = ddev->dev_private;
922 if (amdgpu_sriov_vf(adev) && amdgim_is_hwperf(adev) &&
923 adev->virt.ops->get_pp_clk)
924 return adev->virt.ops->get_pp_clk(adev, PP_MCLK, buf);
926 if (is_support_sw_smu(adev))
927 return smu_print_clk_levels(&adev->smu, SMU_MCLK, buf);
928 else if (adev->powerplay.pp_funcs->print_clock_levels)
929 return amdgpu_dpm_print_clock_levels(adev, PP_MCLK, buf);
931 return snprintf(buf, PAGE_SIZE, "\n");
934 static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
935 struct device_attribute *attr,
939 struct drm_device *ddev = dev_get_drvdata(dev);
940 struct amdgpu_device *adev = ddev->dev_private;
944 if (amdgpu_sriov_vf(adev))
947 ret = amdgpu_read_mask(buf, count, &mask);
951 if (is_support_sw_smu(adev))
952 ret = smu_force_clk_levels(&adev->smu, SMU_MCLK, mask);
953 else if (adev->powerplay.pp_funcs->force_clock_level)
954 ret = amdgpu_dpm_force_clock_level(adev, PP_MCLK, mask);
962 static ssize_t amdgpu_get_pp_dpm_socclk(struct device *dev,
963 struct device_attribute *attr,
966 struct drm_device *ddev = dev_get_drvdata(dev);
967 struct amdgpu_device *adev = ddev->dev_private;
969 if (is_support_sw_smu(adev))
970 return smu_print_clk_levels(&adev->smu, SMU_SOCCLK, buf);
971 else if (adev->powerplay.pp_funcs->print_clock_levels)
972 return amdgpu_dpm_print_clock_levels(adev, PP_SOCCLK, buf);
974 return snprintf(buf, PAGE_SIZE, "\n");
977 static ssize_t amdgpu_set_pp_dpm_socclk(struct device *dev,
978 struct device_attribute *attr,
982 struct drm_device *ddev = dev_get_drvdata(dev);
983 struct amdgpu_device *adev = ddev->dev_private;
987 ret = amdgpu_read_mask(buf, count, &mask);
991 if (is_support_sw_smu(adev))
992 ret = smu_force_clk_levels(&adev->smu, SMU_SOCCLK, mask);
993 else if (adev->powerplay.pp_funcs->force_clock_level)
994 ret = amdgpu_dpm_force_clock_level(adev, PP_SOCCLK, mask);
1002 static ssize_t amdgpu_get_pp_dpm_fclk(struct device *dev,
1003 struct device_attribute *attr,
1006 struct drm_device *ddev = dev_get_drvdata(dev);
1007 struct amdgpu_device *adev = ddev->dev_private;
1009 if (is_support_sw_smu(adev))
1010 return smu_print_clk_levels(&adev->smu, SMU_FCLK, buf);
1011 else if (adev->powerplay.pp_funcs->print_clock_levels)
1012 return amdgpu_dpm_print_clock_levels(adev, PP_FCLK, buf);
1014 return snprintf(buf, PAGE_SIZE, "\n");
1017 static ssize_t amdgpu_set_pp_dpm_fclk(struct device *dev,
1018 struct device_attribute *attr,
1022 struct drm_device *ddev = dev_get_drvdata(dev);
1023 struct amdgpu_device *adev = ddev->dev_private;
1027 ret = amdgpu_read_mask(buf, count, &mask);
1031 if (is_support_sw_smu(adev))
1032 ret = smu_force_clk_levels(&adev->smu, SMU_FCLK, mask);
1033 else if (adev->powerplay.pp_funcs->force_clock_level)
1034 ret = amdgpu_dpm_force_clock_level(adev, PP_FCLK, mask);
1042 static ssize_t amdgpu_get_pp_dpm_dcefclk(struct device *dev,
1043 struct device_attribute *attr,
1046 struct drm_device *ddev = dev_get_drvdata(dev);
1047 struct amdgpu_device *adev = ddev->dev_private;
1049 if (is_support_sw_smu(adev))
1050 return smu_print_clk_levels(&adev->smu, SMU_DCEFCLK, buf);
1051 else if (adev->powerplay.pp_funcs->print_clock_levels)
1052 return amdgpu_dpm_print_clock_levels(adev, PP_DCEFCLK, buf);
1054 return snprintf(buf, PAGE_SIZE, "\n");
1057 static ssize_t amdgpu_set_pp_dpm_dcefclk(struct device *dev,
1058 struct device_attribute *attr,
1062 struct drm_device *ddev = dev_get_drvdata(dev);
1063 struct amdgpu_device *adev = ddev->dev_private;
1067 ret = amdgpu_read_mask(buf, count, &mask);
1071 if (is_support_sw_smu(adev))
1072 ret = smu_force_clk_levels(&adev->smu, SMU_DCEFCLK, mask);
1073 else if (adev->powerplay.pp_funcs->force_clock_level)
1074 ret = amdgpu_dpm_force_clock_level(adev, PP_DCEFCLK, mask);
1082 static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
1083 struct device_attribute *attr,
1086 struct drm_device *ddev = dev_get_drvdata(dev);
1087 struct amdgpu_device *adev = ddev->dev_private;
1089 if (is_support_sw_smu(adev))
1090 return smu_print_clk_levels(&adev->smu, SMU_PCIE, buf);
1091 else if (adev->powerplay.pp_funcs->print_clock_levels)
1092 return amdgpu_dpm_print_clock_levels(adev, PP_PCIE, buf);
1094 return snprintf(buf, PAGE_SIZE, "\n");
1097 static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
1098 struct device_attribute *attr,
1102 struct drm_device *ddev = dev_get_drvdata(dev);
1103 struct amdgpu_device *adev = ddev->dev_private;
1107 ret = amdgpu_read_mask(buf, count, &mask);
1111 if (is_support_sw_smu(adev))
1112 ret = smu_force_clk_levels(&adev->smu, SMU_PCIE, mask);
1113 else if (adev->powerplay.pp_funcs->force_clock_level)
1114 ret = amdgpu_dpm_force_clock_level(adev, PP_PCIE, mask);
1122 static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
1123 struct device_attribute *attr,
1126 struct drm_device *ddev = dev_get_drvdata(dev);
1127 struct amdgpu_device *adev = ddev->dev_private;
1130 if (is_support_sw_smu(adev))
1131 value = smu_get_od_percentage(&(adev->smu), SMU_OD_SCLK);
1132 else if (adev->powerplay.pp_funcs->get_sclk_od)
1133 value = amdgpu_dpm_get_sclk_od(adev);
1135 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1138 static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
1139 struct device_attribute *attr,
1143 struct drm_device *ddev = dev_get_drvdata(dev);
1144 struct amdgpu_device *adev = ddev->dev_private;
1148 ret = kstrtol(buf, 0, &value);
1155 if (is_support_sw_smu(adev)) {
1156 value = smu_set_od_percentage(&(adev->smu), SMU_OD_SCLK, (uint32_t)value);
1158 if (adev->powerplay.pp_funcs->set_sclk_od)
1159 amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
1161 if (adev->powerplay.pp_funcs->dispatch_tasks) {
1162 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
1164 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
1165 amdgpu_pm_compute_clocks(adev);
1173 static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
1174 struct device_attribute *attr,
1177 struct drm_device *ddev = dev_get_drvdata(dev);
1178 struct amdgpu_device *adev = ddev->dev_private;
1181 if (is_support_sw_smu(adev))
1182 value = smu_get_od_percentage(&(adev->smu), SMU_OD_MCLK);
1183 else if (adev->powerplay.pp_funcs->get_mclk_od)
1184 value = amdgpu_dpm_get_mclk_od(adev);
1186 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1189 static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
1190 struct device_attribute *attr,
1194 struct drm_device *ddev = dev_get_drvdata(dev);
1195 struct amdgpu_device *adev = ddev->dev_private;
1199 ret = kstrtol(buf, 0, &value);
1206 if (is_support_sw_smu(adev)) {
1207 value = smu_set_od_percentage(&(adev->smu), SMU_OD_MCLK, (uint32_t)value);
1209 if (adev->powerplay.pp_funcs->set_mclk_od)
1210 amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
1212 if (adev->powerplay.pp_funcs->dispatch_tasks) {
1213 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
1215 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
1216 amdgpu_pm_compute_clocks(adev);
1225 * DOC: pp_power_profile_mode
1227 * The amdgpu driver provides a sysfs API for adjusting the heuristics
1228 * related to switching between power levels in a power state. The file
1229 * pp_power_profile_mode is used for this.
1231 * Reading this file outputs a list of all of the predefined power profiles
1232 * and the relevant heuristics settings for that profile.
1234 * To select a profile or create a custom profile, first select manual using
1235 * power_dpm_force_performance_level. Writing the number of a predefined
1236 * profile to pp_power_profile_mode will enable those heuristics. To
1237 * create a custom set of heuristics, write a string of numbers to the file
1238 * starting with the number of the custom profile along with a setting
1239 * for each heuristic parameter. Due to differences across asic families
1240 * the heuristic parameters vary from family to family.
1244 static ssize_t amdgpu_get_pp_power_profile_mode(struct device *dev,
1245 struct device_attribute *attr,
1248 struct drm_device *ddev = dev_get_drvdata(dev);
1249 struct amdgpu_device *adev = ddev->dev_private;
1251 if (is_support_sw_smu(adev))
1252 return smu_get_power_profile_mode(&adev->smu, buf);
1253 else if (adev->powerplay.pp_funcs->get_power_profile_mode)
1254 return amdgpu_dpm_get_power_profile_mode(adev, buf);
1256 return snprintf(buf, PAGE_SIZE, "\n");
1260 static ssize_t amdgpu_set_pp_power_profile_mode(struct device *dev,
1261 struct device_attribute *attr,
1266 struct drm_device *ddev = dev_get_drvdata(dev);
1267 struct amdgpu_device *adev = ddev->dev_private;
1268 uint32_t parameter_size = 0;
1270 char *sub_str, buf_cpy[128];
1274 long int profile_mode = 0;
1275 const char delimiter[3] = {' ', '\n', '\0'};
1279 ret = kstrtol(tmp, 0, &profile_mode);
1283 if (profile_mode == PP_SMC_POWER_PROFILE_CUSTOM) {
1284 if (count < 2 || count > 127)
1286 while (isspace(*++buf))
1288 memcpy(buf_cpy, buf, count-i);
1290 while (tmp_str[0]) {
1291 sub_str = strsep(&tmp_str, delimiter);
1292 ret = kstrtol(sub_str, 0, ¶meter[parameter_size]);
1298 while (isspace(*tmp_str))
1302 parameter[parameter_size] = profile_mode;
1303 if (is_support_sw_smu(adev))
1304 ret = smu_set_power_profile_mode(&adev->smu, parameter, parameter_size);
1305 else if (adev->powerplay.pp_funcs->set_power_profile_mode)
1306 ret = amdgpu_dpm_set_power_profile_mode(adev, parameter, parameter_size);
1316 * The amdgpu driver provides a sysfs API for reading how busy the GPU
1317 * is as a percentage. The file gpu_busy_percent is used for this.
1318 * The SMU firmware computes a percentage of load based on the
1319 * aggregate activity level in the IP cores.
1321 static ssize_t amdgpu_get_busy_percent(struct device *dev,
1322 struct device_attribute *attr,
1325 struct drm_device *ddev = dev_get_drvdata(dev);
1326 struct amdgpu_device *adev = ddev->dev_private;
1327 int r, value, size = sizeof(value);
1329 /* read the IP busy sensor */
1330 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD,
1331 (void *)&value, &size);
1336 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1340 * DOC: mem_busy_percent
1342 * The amdgpu driver provides a sysfs API for reading how busy the VRAM
1343 * is as a percentage. The file mem_busy_percent is used for this.
1344 * The SMU firmware computes a percentage of load based on the
1345 * aggregate activity level in the IP cores.
1347 static ssize_t amdgpu_get_memory_busy_percent(struct device *dev,
1348 struct device_attribute *attr,
1351 struct drm_device *ddev = dev_get_drvdata(dev);
1352 struct amdgpu_device *adev = ddev->dev_private;
1353 int r, value, size = sizeof(value);
1355 /* read the IP busy sensor */
1356 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_LOAD,
1357 (void *)&value, &size);
1362 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1368 * The amdgpu driver provides a sysfs API for estimating how much data
1369 * has been received and sent by the GPU in the last second through PCIe.
1370 * The file pcie_bw is used for this.
1371 * The Perf counters count the number of received and sent messages and return
1372 * those values, as well as the maximum payload size of a PCIe packet (mps).
1373 * Note that it is not possible to easily and quickly obtain the size of each
1374 * packet transmitted, so we output the max payload size (mps) to allow for
1375 * quick estimation of the PCIe bandwidth usage
1377 static ssize_t amdgpu_get_pcie_bw(struct device *dev,
1378 struct device_attribute *attr,
1381 struct drm_device *ddev = dev_get_drvdata(dev);
1382 struct amdgpu_device *adev = ddev->dev_private;
1383 uint64_t count0, count1;
1385 amdgpu_asic_get_pcie_usage(adev, &count0, &count1);
1386 return snprintf(buf, PAGE_SIZE, "%llu %llu %i\n",
1387 count0, count1, pcie_get_mps(adev->pdev));
1393 * The amdgpu driver provides a sysfs API for providing a unique ID for the GPU
1394 * The file unique_id is used for this.
1395 * This will provide a Unique ID that will persist from machine to machine
1397 * NOTE: This will only work for GFX9 and newer. This file will be absent
1398 * on unsupported ASICs (GFX8 and older)
1400 static ssize_t amdgpu_get_unique_id(struct device *dev,
1401 struct device_attribute *attr,
1404 struct drm_device *ddev = dev_get_drvdata(dev);
1405 struct amdgpu_device *adev = ddev->dev_private;
1407 if (adev->unique_id)
1408 return snprintf(buf, PAGE_SIZE, "%016llx\n", adev->unique_id);
1413 static DEVICE_ATTR(power_dpm_state, S_IRUGO | S_IWUSR, amdgpu_get_dpm_state, amdgpu_set_dpm_state);
1414 static DEVICE_ATTR(power_dpm_force_performance_level, S_IRUGO | S_IWUSR,
1415 amdgpu_get_dpm_forced_performance_level,
1416 amdgpu_set_dpm_forced_performance_level);
1417 static DEVICE_ATTR(pp_num_states, S_IRUGO, amdgpu_get_pp_num_states, NULL);
1418 static DEVICE_ATTR(pp_cur_state, S_IRUGO, amdgpu_get_pp_cur_state, NULL);
1419 static DEVICE_ATTR(pp_force_state, S_IRUGO | S_IWUSR,
1420 amdgpu_get_pp_force_state,
1421 amdgpu_set_pp_force_state);
1422 static DEVICE_ATTR(pp_table, S_IRUGO | S_IWUSR,
1423 amdgpu_get_pp_table,
1424 amdgpu_set_pp_table);
1425 static DEVICE_ATTR(pp_dpm_sclk, S_IRUGO | S_IWUSR,
1426 amdgpu_get_pp_dpm_sclk,
1427 amdgpu_set_pp_dpm_sclk);
1428 static DEVICE_ATTR(pp_dpm_mclk, S_IRUGO | S_IWUSR,
1429 amdgpu_get_pp_dpm_mclk,
1430 amdgpu_set_pp_dpm_mclk);
1431 static DEVICE_ATTR(pp_dpm_socclk, S_IRUGO | S_IWUSR,
1432 amdgpu_get_pp_dpm_socclk,
1433 amdgpu_set_pp_dpm_socclk);
1434 static DEVICE_ATTR(pp_dpm_fclk, S_IRUGO | S_IWUSR,
1435 amdgpu_get_pp_dpm_fclk,
1436 amdgpu_set_pp_dpm_fclk);
1437 static DEVICE_ATTR(pp_dpm_dcefclk, S_IRUGO | S_IWUSR,
1438 amdgpu_get_pp_dpm_dcefclk,
1439 amdgpu_set_pp_dpm_dcefclk);
1440 static DEVICE_ATTR(pp_dpm_pcie, S_IRUGO | S_IWUSR,
1441 amdgpu_get_pp_dpm_pcie,
1442 amdgpu_set_pp_dpm_pcie);
1443 static DEVICE_ATTR(pp_sclk_od, S_IRUGO | S_IWUSR,
1444 amdgpu_get_pp_sclk_od,
1445 amdgpu_set_pp_sclk_od);
1446 static DEVICE_ATTR(pp_mclk_od, S_IRUGO | S_IWUSR,
1447 amdgpu_get_pp_mclk_od,
1448 amdgpu_set_pp_mclk_od);
1449 static DEVICE_ATTR(pp_power_profile_mode, S_IRUGO | S_IWUSR,
1450 amdgpu_get_pp_power_profile_mode,
1451 amdgpu_set_pp_power_profile_mode);
1452 static DEVICE_ATTR(pp_od_clk_voltage, S_IRUGO | S_IWUSR,
1453 amdgpu_get_pp_od_clk_voltage,
1454 amdgpu_set_pp_od_clk_voltage);
1455 static DEVICE_ATTR(gpu_busy_percent, S_IRUGO,
1456 amdgpu_get_busy_percent, NULL);
1457 static DEVICE_ATTR(mem_busy_percent, S_IRUGO,
1458 amdgpu_get_memory_busy_percent, NULL);
1459 static DEVICE_ATTR(pcie_bw, S_IRUGO, amdgpu_get_pcie_bw, NULL);
1460 static DEVICE_ATTR(pp_features, S_IRUGO | S_IWUSR,
1461 amdgpu_get_pp_feature_status,
1462 amdgpu_set_pp_feature_status);
1463 static DEVICE_ATTR(unique_id, S_IRUGO, amdgpu_get_unique_id, NULL);
1465 static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
1466 struct device_attribute *attr,
1469 struct amdgpu_device *adev = dev_get_drvdata(dev);
1470 struct drm_device *ddev = adev->ddev;
1471 int channel = to_sensor_dev_attr(attr)->index;
1472 int r, temp = 0, size = sizeof(temp);
1474 /* Can't get temperature when the card is off */
1475 if ((adev->flags & AMD_IS_PX) &&
1476 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1479 if (channel >= PP_TEMP_MAX)
1483 case PP_TEMP_JUNCTION:
1484 /* get current junction temperature */
1485 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_HOTSPOT_TEMP,
1486 (void *)&temp, &size);
1491 /* get current edge temperature */
1492 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_EDGE_TEMP,
1493 (void *)&temp, &size);
1498 /* get current memory temperature */
1499 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_TEMP,
1500 (void *)&temp, &size);
1506 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
1509 static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
1510 struct device_attribute *attr,
1513 struct amdgpu_device *adev = dev_get_drvdata(dev);
1514 int hyst = to_sensor_dev_attr(attr)->index;
1518 temp = adev->pm.dpm.thermal.min_temp;
1520 temp = adev->pm.dpm.thermal.max_temp;
1522 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
1525 static ssize_t amdgpu_hwmon_show_hotspot_temp_thresh(struct device *dev,
1526 struct device_attribute *attr,
1529 struct amdgpu_device *adev = dev_get_drvdata(dev);
1530 int hyst = to_sensor_dev_attr(attr)->index;
1534 temp = adev->pm.dpm.thermal.min_hotspot_temp;
1536 temp = adev->pm.dpm.thermal.max_hotspot_crit_temp;
1538 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
1541 static ssize_t amdgpu_hwmon_show_mem_temp_thresh(struct device *dev,
1542 struct device_attribute *attr,
1545 struct amdgpu_device *adev = dev_get_drvdata(dev);
1546 int hyst = to_sensor_dev_attr(attr)->index;
1550 temp = adev->pm.dpm.thermal.min_mem_temp;
1552 temp = adev->pm.dpm.thermal.max_mem_crit_temp;
1554 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
1557 static ssize_t amdgpu_hwmon_show_temp_label(struct device *dev,
1558 struct device_attribute *attr,
1561 int channel = to_sensor_dev_attr(attr)->index;
1563 if (channel >= PP_TEMP_MAX)
1566 return snprintf(buf, PAGE_SIZE, "%s\n", temp_label[channel].label);
1569 static ssize_t amdgpu_hwmon_show_temp_emergency(struct device *dev,
1570 struct device_attribute *attr,
1573 struct amdgpu_device *adev = dev_get_drvdata(dev);
1574 int channel = to_sensor_dev_attr(attr)->index;
1577 if (channel >= PP_TEMP_MAX)
1581 case PP_TEMP_JUNCTION:
1582 temp = adev->pm.dpm.thermal.max_hotspot_emergency_temp;
1585 temp = adev->pm.dpm.thermal.max_edge_emergency_temp;
1588 temp = adev->pm.dpm.thermal.max_mem_emergency_temp;
1592 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
1595 static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
1596 struct device_attribute *attr,
1599 struct amdgpu_device *adev = dev_get_drvdata(dev);
1601 if (is_support_sw_smu(adev)) {
1602 pwm_mode = smu_get_fan_control_mode(&adev->smu);
1604 if (!adev->powerplay.pp_funcs->get_fan_control_mode)
1607 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
1610 return sprintf(buf, "%i\n", pwm_mode);
1613 static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
1614 struct device_attribute *attr,
1618 struct amdgpu_device *adev = dev_get_drvdata(dev);
1622 /* Can't adjust fan when the card is off */
1623 if ((adev->flags & AMD_IS_PX) &&
1624 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1627 err = kstrtoint(buf, 10, &value);
1631 if (is_support_sw_smu(adev)) {
1632 smu_set_fan_control_mode(&adev->smu, value);
1634 if (!adev->powerplay.pp_funcs->set_fan_control_mode)
1637 amdgpu_dpm_set_fan_control_mode(adev, value);
1643 static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
1644 struct device_attribute *attr,
1647 return sprintf(buf, "%i\n", 0);
1650 static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
1651 struct device_attribute *attr,
1654 return sprintf(buf, "%i\n", 255);
1657 static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
1658 struct device_attribute *attr,
1659 const char *buf, size_t count)
1661 struct amdgpu_device *adev = dev_get_drvdata(dev);
1666 /* Can't adjust fan when the card is off */
1667 if ((adev->flags & AMD_IS_PX) &&
1668 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1670 if (is_support_sw_smu(adev))
1671 pwm_mode = smu_get_fan_control_mode(&adev->smu);
1673 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
1674 if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
1675 pr_info("manual fan speed control should be enabled first\n");
1679 err = kstrtou32(buf, 10, &value);
1683 value = (value * 100) / 255;
1685 if (is_support_sw_smu(adev)) {
1686 err = smu_set_fan_speed_percent(&adev->smu, value);
1689 } else if (adev->powerplay.pp_funcs->set_fan_speed_percent) {
1690 err = amdgpu_dpm_set_fan_speed_percent(adev, value);
1698 static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
1699 struct device_attribute *attr,
1702 struct amdgpu_device *adev = dev_get_drvdata(dev);
1706 /* Can't adjust fan when the card is off */
1707 if ((adev->flags & AMD_IS_PX) &&
1708 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1711 if (is_support_sw_smu(adev)) {
1712 err = smu_get_fan_speed_percent(&adev->smu, &speed);
1715 } else if (adev->powerplay.pp_funcs->get_fan_speed_percent) {
1716 err = amdgpu_dpm_get_fan_speed_percent(adev, &speed);
1721 speed = (speed * 255) / 100;
1723 return sprintf(buf, "%i\n", speed);
1726 static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
1727 struct device_attribute *attr,
1730 struct amdgpu_device *adev = dev_get_drvdata(dev);
1734 /* Can't adjust fan when the card is off */
1735 if ((adev->flags & AMD_IS_PX) &&
1736 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1739 if (is_support_sw_smu(adev)) {
1740 err = smu_get_fan_speed_rpm(&adev->smu, &speed);
1743 } else if (adev->powerplay.pp_funcs->get_fan_speed_rpm) {
1744 err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
1749 return sprintf(buf, "%i\n", speed);
1752 static ssize_t amdgpu_hwmon_get_fan1_min(struct device *dev,
1753 struct device_attribute *attr,
1756 struct amdgpu_device *adev = dev_get_drvdata(dev);
1758 u32 size = sizeof(min_rpm);
1761 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MIN_FAN_RPM,
1762 (void *)&min_rpm, &size);
1766 return snprintf(buf, PAGE_SIZE, "%d\n", min_rpm);
1769 static ssize_t amdgpu_hwmon_get_fan1_max(struct device *dev,
1770 struct device_attribute *attr,
1773 struct amdgpu_device *adev = dev_get_drvdata(dev);
1775 u32 size = sizeof(max_rpm);
1778 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MAX_FAN_RPM,
1779 (void *)&max_rpm, &size);
1783 return snprintf(buf, PAGE_SIZE, "%d\n", max_rpm);
1786 static ssize_t amdgpu_hwmon_get_fan1_target(struct device *dev,
1787 struct device_attribute *attr,
1790 struct amdgpu_device *adev = dev_get_drvdata(dev);
1794 /* Can't adjust fan when the card is off */
1795 if ((adev->flags & AMD_IS_PX) &&
1796 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1799 if (is_support_sw_smu(adev)) {
1800 err = smu_get_fan_speed_rpm(&adev->smu, &rpm);
1803 } else if (adev->powerplay.pp_funcs->get_fan_speed_rpm) {
1804 err = amdgpu_dpm_get_fan_speed_rpm(adev, &rpm);
1809 return sprintf(buf, "%i\n", rpm);
1812 static ssize_t amdgpu_hwmon_set_fan1_target(struct device *dev,
1813 struct device_attribute *attr,
1814 const char *buf, size_t count)
1816 struct amdgpu_device *adev = dev_get_drvdata(dev);
1821 if (is_support_sw_smu(adev))
1822 pwm_mode = smu_get_fan_control_mode(&adev->smu);
1824 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
1826 if (pwm_mode != AMD_FAN_CTRL_MANUAL)
1829 /* Can't adjust fan when the card is off */
1830 if ((adev->flags & AMD_IS_PX) &&
1831 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1834 err = kstrtou32(buf, 10, &value);
1838 if (is_support_sw_smu(adev)) {
1839 err = smu_set_fan_speed_rpm(&adev->smu, value);
1842 } else if (adev->powerplay.pp_funcs->set_fan_speed_rpm) {
1843 err = amdgpu_dpm_set_fan_speed_rpm(adev, value);
1851 static ssize_t amdgpu_hwmon_get_fan1_enable(struct device *dev,
1852 struct device_attribute *attr,
1855 struct amdgpu_device *adev = dev_get_drvdata(dev);
1858 if (is_support_sw_smu(adev)) {
1859 pwm_mode = smu_get_fan_control_mode(&adev->smu);
1861 if (!adev->powerplay.pp_funcs->get_fan_control_mode)
1864 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
1866 return sprintf(buf, "%i\n", pwm_mode == AMD_FAN_CTRL_AUTO ? 0 : 1);
1869 static ssize_t amdgpu_hwmon_set_fan1_enable(struct device *dev,
1870 struct device_attribute *attr,
1874 struct amdgpu_device *adev = dev_get_drvdata(dev);
1879 /* Can't adjust fan when the card is off */
1880 if ((adev->flags & AMD_IS_PX) &&
1881 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1885 err = kstrtoint(buf, 10, &value);
1890 pwm_mode = AMD_FAN_CTRL_AUTO;
1891 else if (value == 1)
1892 pwm_mode = AMD_FAN_CTRL_MANUAL;
1896 if (is_support_sw_smu(adev)) {
1897 smu_set_fan_control_mode(&adev->smu, pwm_mode);
1899 if (!adev->powerplay.pp_funcs->set_fan_control_mode)
1901 amdgpu_dpm_set_fan_control_mode(adev, pwm_mode);
1907 static ssize_t amdgpu_hwmon_show_vddgfx(struct device *dev,
1908 struct device_attribute *attr,
1911 struct amdgpu_device *adev = dev_get_drvdata(dev);
1912 struct drm_device *ddev = adev->ddev;
1914 int r, size = sizeof(vddgfx);
1916 /* Can't get voltage when the card is off */
1917 if ((adev->flags & AMD_IS_PX) &&
1918 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1921 /* get the voltage */
1922 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX,
1923 (void *)&vddgfx, &size);
1927 return snprintf(buf, PAGE_SIZE, "%d\n", vddgfx);
1930 static ssize_t amdgpu_hwmon_show_vddgfx_label(struct device *dev,
1931 struct device_attribute *attr,
1934 return snprintf(buf, PAGE_SIZE, "vddgfx\n");
1937 static ssize_t amdgpu_hwmon_show_vddnb(struct device *dev,
1938 struct device_attribute *attr,
1941 struct amdgpu_device *adev = dev_get_drvdata(dev);
1942 struct drm_device *ddev = adev->ddev;
1944 int r, size = sizeof(vddnb);
1946 /* only APUs have vddnb */
1947 if (!(adev->flags & AMD_IS_APU))
1950 /* Can't get voltage when the card is off */
1951 if ((adev->flags & AMD_IS_PX) &&
1952 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1955 /* get the voltage */
1956 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB,
1957 (void *)&vddnb, &size);
1961 return snprintf(buf, PAGE_SIZE, "%d\n", vddnb);
1964 static ssize_t amdgpu_hwmon_show_vddnb_label(struct device *dev,
1965 struct device_attribute *attr,
1968 return snprintf(buf, PAGE_SIZE, "vddnb\n");
1971 static ssize_t amdgpu_hwmon_show_power_avg(struct device *dev,
1972 struct device_attribute *attr,
1975 struct amdgpu_device *adev = dev_get_drvdata(dev);
1976 struct drm_device *ddev = adev->ddev;
1978 int r, size = sizeof(u32);
1981 /* Can't get power when the card is off */
1982 if ((adev->flags & AMD_IS_PX) &&
1983 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1986 /* get the voltage */
1987 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER,
1988 (void *)&query, &size);
1992 /* convert to microwatts */
1993 uw = (query >> 8) * 1000000 + (query & 0xff) * 1000;
1995 return snprintf(buf, PAGE_SIZE, "%u\n", uw);
1998 static ssize_t amdgpu_hwmon_show_power_cap_min(struct device *dev,
1999 struct device_attribute *attr,
2002 return sprintf(buf, "%i\n", 0);
2005 static ssize_t amdgpu_hwmon_show_power_cap_max(struct device *dev,
2006 struct device_attribute *attr,
2009 struct amdgpu_device *adev = dev_get_drvdata(dev);
2012 if (is_support_sw_smu(adev)) {
2013 smu_get_power_limit(&adev->smu, &limit, true);
2014 return snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2015 } else if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->get_power_limit) {
2016 adev->powerplay.pp_funcs->get_power_limit(adev->powerplay.pp_handle, &limit, true);
2017 return snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2019 return snprintf(buf, PAGE_SIZE, "\n");
2023 static ssize_t amdgpu_hwmon_show_power_cap(struct device *dev,
2024 struct device_attribute *attr,
2027 struct amdgpu_device *adev = dev_get_drvdata(dev);
2030 if (is_support_sw_smu(adev)) {
2031 smu_get_power_limit(&adev->smu, &limit, false);
2032 return snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2033 } else if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->get_power_limit) {
2034 adev->powerplay.pp_funcs->get_power_limit(adev->powerplay.pp_handle, &limit, false);
2035 return snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2037 return snprintf(buf, PAGE_SIZE, "\n");
2042 static ssize_t amdgpu_hwmon_set_power_cap(struct device *dev,
2043 struct device_attribute *attr,
2047 struct amdgpu_device *adev = dev_get_drvdata(dev);
2051 err = kstrtou32(buf, 10, &value);
2055 value = value / 1000000; /* convert to Watt */
2057 if (is_support_sw_smu(adev)) {
2058 err = smu_set_power_limit(&adev->smu, value);
2059 } else if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->set_power_limit) {
2060 err = adev->powerplay.pp_funcs->set_power_limit(adev->powerplay.pp_handle, value);
2071 static ssize_t amdgpu_hwmon_show_sclk(struct device *dev,
2072 struct device_attribute *attr,
2075 struct amdgpu_device *adev = dev_get_drvdata(dev);
2076 struct drm_device *ddev = adev->ddev;
2078 int r, size = sizeof(sclk);
2080 /* Can't get voltage when the card is off */
2081 if ((adev->flags & AMD_IS_PX) &&
2082 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
2086 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK,
2087 (void *)&sclk, &size);
2091 return snprintf(buf, PAGE_SIZE, "%d\n", sclk * 10 * 1000);
2094 static ssize_t amdgpu_hwmon_show_sclk_label(struct device *dev,
2095 struct device_attribute *attr,
2098 return snprintf(buf, PAGE_SIZE, "sclk\n");
2101 static ssize_t amdgpu_hwmon_show_mclk(struct device *dev,
2102 struct device_attribute *attr,
2105 struct amdgpu_device *adev = dev_get_drvdata(dev);
2106 struct drm_device *ddev = adev->ddev;
2108 int r, size = sizeof(mclk);
2110 /* Can't get voltage when the card is off */
2111 if ((adev->flags & AMD_IS_PX) &&
2112 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
2116 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK,
2117 (void *)&mclk, &size);
2121 return snprintf(buf, PAGE_SIZE, "%d\n", mclk * 10 * 1000);
2124 static ssize_t amdgpu_hwmon_show_mclk_label(struct device *dev,
2125 struct device_attribute *attr,
2128 return snprintf(buf, PAGE_SIZE, "mclk\n");
2134 * The amdgpu driver exposes the following sensor interfaces:
2136 * - GPU temperature (via the on-die sensor)
2140 * - Northbridge voltage (APUs only)
2146 * - GPU gfx/compute engine clock
2148 * - GPU memory clock (dGPU only)
2150 * hwmon interfaces for GPU temperature:
2152 * - temp[1-3]_input: the on die GPU temperature in millidegrees Celsius
2153 * - temp2_input and temp3_input are supported on SOC15 dGPUs only
2155 * - temp[1-3]_label: temperature channel label
2156 * - temp2_label and temp3_label are supported on SOC15 dGPUs only
2158 * - temp[1-3]_crit: temperature critical max value in millidegrees Celsius
2159 * - temp2_crit and temp3_crit are supported on SOC15 dGPUs only
2161 * - temp[1-3]_crit_hyst: temperature hysteresis for critical limit in millidegrees Celsius
2162 * - temp2_crit_hyst and temp3_crit_hyst are supported on SOC15 dGPUs only
2164 * - temp[1-3]_emergency: temperature emergency max value(asic shutdown) in millidegrees Celsius
2165 * - these are supported on SOC15 dGPUs only
2167 * hwmon interfaces for GPU voltage:
2169 * - in0_input: the voltage on the GPU in millivolts
2171 * - in1_input: the voltage on the Northbridge in millivolts
2173 * hwmon interfaces for GPU power:
2175 * - power1_average: average power used by the GPU in microWatts
2177 * - power1_cap_min: minimum cap supported in microWatts
2179 * - power1_cap_max: maximum cap supported in microWatts
2181 * - power1_cap: selected power cap in microWatts
2183 * hwmon interfaces for GPU fan:
2185 * - pwm1: pulse width modulation fan level (0-255)
2187 * - pwm1_enable: pulse width modulation fan control method (0: no fan speed control, 1: manual fan speed control using pwm interface, 2: automatic fan speed control)
2189 * - pwm1_min: pulse width modulation fan control minimum level (0)
2191 * - pwm1_max: pulse width modulation fan control maximum level (255)
2193 * - fan1_min: an minimum value Unit: revolution/min (RPM)
2195 * - fan1_max: an maxmum value Unit: revolution/max (RPM)
2197 * - fan1_input: fan speed in RPM
2199 * - fan[1-*]_target: Desired fan speed Unit: revolution/min (RPM)
2201 * - fan[1-*]_enable: Enable or disable the sensors.1: Enable 0: Disable
2203 * hwmon interfaces for GPU clocks:
2205 * - freq1_input: the gfx/compute clock in hertz
2207 * - freq2_input: the memory clock in hertz
2209 * You can use hwmon tools like sensors to view this information on your system.
2213 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_EDGE);
2214 static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
2215 static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
2216 static SENSOR_DEVICE_ATTR(temp1_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_EDGE);
2217 static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_JUNCTION);
2218 static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 0);
2219 static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 1);
2220 static SENSOR_DEVICE_ATTR(temp2_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_JUNCTION);
2221 static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_MEM);
2222 static SENSOR_DEVICE_ATTR(temp3_crit, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 0);
2223 static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 1);
2224 static SENSOR_DEVICE_ATTR(temp3_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_MEM);
2225 static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_EDGE);
2226 static SENSOR_DEVICE_ATTR(temp2_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_JUNCTION);
2227 static SENSOR_DEVICE_ATTR(temp3_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_MEM);
2228 static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
2229 static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
2230 static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
2231 static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
2232 static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
2233 static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO, amdgpu_hwmon_get_fan1_min, NULL, 0);
2234 static SENSOR_DEVICE_ATTR(fan1_max, S_IRUGO, amdgpu_hwmon_get_fan1_max, NULL, 0);
2235 static SENSOR_DEVICE_ATTR(fan1_target, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_target, amdgpu_hwmon_set_fan1_target, 0);
2236 static SENSOR_DEVICE_ATTR(fan1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_enable, amdgpu_hwmon_set_fan1_enable, 0);
2237 static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, amdgpu_hwmon_show_vddgfx, NULL, 0);
2238 static SENSOR_DEVICE_ATTR(in0_label, S_IRUGO, amdgpu_hwmon_show_vddgfx_label, NULL, 0);
2239 static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, amdgpu_hwmon_show_vddnb, NULL, 0);
2240 static SENSOR_DEVICE_ATTR(in1_label, S_IRUGO, amdgpu_hwmon_show_vddnb_label, NULL, 0);
2241 static SENSOR_DEVICE_ATTR(power1_average, S_IRUGO, amdgpu_hwmon_show_power_avg, NULL, 0);
2242 static SENSOR_DEVICE_ATTR(power1_cap_max, S_IRUGO, amdgpu_hwmon_show_power_cap_max, NULL, 0);
2243 static SENSOR_DEVICE_ATTR(power1_cap_min, S_IRUGO, amdgpu_hwmon_show_power_cap_min, NULL, 0);
2244 static SENSOR_DEVICE_ATTR(power1_cap, S_IRUGO | S_IWUSR, amdgpu_hwmon_show_power_cap, amdgpu_hwmon_set_power_cap, 0);
2245 static SENSOR_DEVICE_ATTR(freq1_input, S_IRUGO, amdgpu_hwmon_show_sclk, NULL, 0);
2246 static SENSOR_DEVICE_ATTR(freq1_label, S_IRUGO, amdgpu_hwmon_show_sclk_label, NULL, 0);
2247 static SENSOR_DEVICE_ATTR(freq2_input, S_IRUGO, amdgpu_hwmon_show_mclk, NULL, 0);
2248 static SENSOR_DEVICE_ATTR(freq2_label, S_IRUGO, amdgpu_hwmon_show_mclk_label, NULL, 0);
2250 static struct attribute *hwmon_attributes[] = {
2251 &sensor_dev_attr_temp1_input.dev_attr.attr,
2252 &sensor_dev_attr_temp1_crit.dev_attr.attr,
2253 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
2254 &sensor_dev_attr_temp2_input.dev_attr.attr,
2255 &sensor_dev_attr_temp2_crit.dev_attr.attr,
2256 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
2257 &sensor_dev_attr_temp3_input.dev_attr.attr,
2258 &sensor_dev_attr_temp3_crit.dev_attr.attr,
2259 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
2260 &sensor_dev_attr_temp1_emergency.dev_attr.attr,
2261 &sensor_dev_attr_temp2_emergency.dev_attr.attr,
2262 &sensor_dev_attr_temp3_emergency.dev_attr.attr,
2263 &sensor_dev_attr_temp1_label.dev_attr.attr,
2264 &sensor_dev_attr_temp2_label.dev_attr.attr,
2265 &sensor_dev_attr_temp3_label.dev_attr.attr,
2266 &sensor_dev_attr_pwm1.dev_attr.attr,
2267 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2268 &sensor_dev_attr_pwm1_min.dev_attr.attr,
2269 &sensor_dev_attr_pwm1_max.dev_attr.attr,
2270 &sensor_dev_attr_fan1_input.dev_attr.attr,
2271 &sensor_dev_attr_fan1_min.dev_attr.attr,
2272 &sensor_dev_attr_fan1_max.dev_attr.attr,
2273 &sensor_dev_attr_fan1_target.dev_attr.attr,
2274 &sensor_dev_attr_fan1_enable.dev_attr.attr,
2275 &sensor_dev_attr_in0_input.dev_attr.attr,
2276 &sensor_dev_attr_in0_label.dev_attr.attr,
2277 &sensor_dev_attr_in1_input.dev_attr.attr,
2278 &sensor_dev_attr_in1_label.dev_attr.attr,
2279 &sensor_dev_attr_power1_average.dev_attr.attr,
2280 &sensor_dev_attr_power1_cap_max.dev_attr.attr,
2281 &sensor_dev_attr_power1_cap_min.dev_attr.attr,
2282 &sensor_dev_attr_power1_cap.dev_attr.attr,
2283 &sensor_dev_attr_freq1_input.dev_attr.attr,
2284 &sensor_dev_attr_freq1_label.dev_attr.attr,
2285 &sensor_dev_attr_freq2_input.dev_attr.attr,
2286 &sensor_dev_attr_freq2_label.dev_attr.attr,
2290 static umode_t hwmon_attributes_visible(struct kobject *kobj,
2291 struct attribute *attr, int index)
2293 struct device *dev = kobj_to_dev(kobj);
2294 struct amdgpu_device *adev = dev_get_drvdata(dev);
2295 umode_t effective_mode = attr->mode;
2297 /* Skip fan attributes if fan is not present */
2298 if (adev->pm.no_fan && (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
2299 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
2300 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
2301 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
2302 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
2303 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
2304 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
2305 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
2306 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
2309 /* Skip fan attributes on APU */
2310 if ((adev->flags & AMD_IS_APU) &&
2311 (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
2312 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
2313 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
2314 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
2315 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
2316 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
2317 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
2318 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
2319 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
2322 /* Skip limit attributes if DPM is not enabled */
2323 if (!adev->pm.dpm_enabled &&
2324 (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
2325 attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
2326 attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
2327 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
2328 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
2329 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
2330 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
2331 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
2332 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
2333 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
2334 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
2337 if (!is_support_sw_smu(adev)) {
2338 /* mask fan attributes if we have no bindings for this asic to expose */
2339 if ((!adev->powerplay.pp_funcs->get_fan_speed_percent &&
2340 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
2341 (!adev->powerplay.pp_funcs->get_fan_control_mode &&
2342 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
2343 effective_mode &= ~S_IRUGO;
2345 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
2346 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
2347 (!adev->powerplay.pp_funcs->set_fan_control_mode &&
2348 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
2349 effective_mode &= ~S_IWUSR;
2352 if (((adev->flags & AMD_IS_APU) ||
2353 adev->family == AMDGPU_FAMILY_SI || /* not implemented yet */
2354 adev->family == AMDGPU_FAMILY_KV) && /* not implemented yet */
2355 (attr == &sensor_dev_attr_power1_average.dev_attr.attr ||
2356 attr == &sensor_dev_attr_power1_cap_max.dev_attr.attr ||
2357 attr == &sensor_dev_attr_power1_cap_min.dev_attr.attr||
2358 attr == &sensor_dev_attr_power1_cap.dev_attr.attr))
2361 if (!is_support_sw_smu(adev)) {
2362 /* hide max/min values if we can't both query and manage the fan */
2363 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
2364 !adev->powerplay.pp_funcs->get_fan_speed_percent) &&
2365 (!adev->powerplay.pp_funcs->set_fan_speed_rpm &&
2366 !adev->powerplay.pp_funcs->get_fan_speed_rpm) &&
2367 (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
2368 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
2371 if ((!adev->powerplay.pp_funcs->set_fan_speed_rpm &&
2372 !adev->powerplay.pp_funcs->get_fan_speed_rpm) &&
2373 (attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
2374 attr == &sensor_dev_attr_fan1_min.dev_attr.attr))
2378 if ((adev->family == AMDGPU_FAMILY_SI || /* not implemented yet */
2379 adev->family == AMDGPU_FAMILY_KV) && /* not implemented yet */
2380 (attr == &sensor_dev_attr_in0_input.dev_attr.attr ||
2381 attr == &sensor_dev_attr_in0_label.dev_attr.attr))
2384 /* only APUs have vddnb */
2385 if (!(adev->flags & AMD_IS_APU) &&
2386 (attr == &sensor_dev_attr_in1_input.dev_attr.attr ||
2387 attr == &sensor_dev_attr_in1_label.dev_attr.attr))
2390 /* no mclk on APUs */
2391 if ((adev->flags & AMD_IS_APU) &&
2392 (attr == &sensor_dev_attr_freq2_input.dev_attr.attr ||
2393 attr == &sensor_dev_attr_freq2_label.dev_attr.attr))
2396 /* only SOC15 dGPUs support hotspot and mem temperatures */
2397 if (((adev->flags & AMD_IS_APU) ||
2398 adev->asic_type < CHIP_VEGA10) &&
2399 (attr == &sensor_dev_attr_temp2_crit.dev_attr.attr ||
2400 attr == &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr ||
2401 attr == &sensor_dev_attr_temp3_crit.dev_attr.attr ||
2402 attr == &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr ||
2403 attr == &sensor_dev_attr_temp1_emergency.dev_attr.attr ||
2404 attr == &sensor_dev_attr_temp2_emergency.dev_attr.attr ||
2405 attr == &sensor_dev_attr_temp3_emergency.dev_attr.attr ||
2406 attr == &sensor_dev_attr_temp2_input.dev_attr.attr ||
2407 attr == &sensor_dev_attr_temp3_input.dev_attr.attr ||
2408 attr == &sensor_dev_attr_temp2_label.dev_attr.attr ||
2409 attr == &sensor_dev_attr_temp3_label.dev_attr.attr))
2412 return effective_mode;
2415 static const struct attribute_group hwmon_attrgroup = {
2416 .attrs = hwmon_attributes,
2417 .is_visible = hwmon_attributes_visible,
2420 static const struct attribute_group *hwmon_groups[] = {
2425 void amdgpu_dpm_thermal_work_handler(struct work_struct *work)
2427 struct amdgpu_device *adev =
2428 container_of(work, struct amdgpu_device,
2429 pm.dpm.thermal.work);
2430 /* switch to the thermal state */
2431 enum amd_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
2432 int temp, size = sizeof(temp);
2434 if (!adev->pm.dpm_enabled)
2437 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP,
2438 (void *)&temp, &size)) {
2439 if (temp < adev->pm.dpm.thermal.min_temp)
2440 /* switch back the user state */
2441 dpm_state = adev->pm.dpm.user_state;
2443 if (adev->pm.dpm.thermal.high_to_low)
2444 /* switch back the user state */
2445 dpm_state = adev->pm.dpm.user_state;
2447 mutex_lock(&adev->pm.mutex);
2448 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
2449 adev->pm.dpm.thermal_active = true;
2451 adev->pm.dpm.thermal_active = false;
2452 adev->pm.dpm.state = dpm_state;
2453 mutex_unlock(&adev->pm.mutex);
2455 amdgpu_pm_compute_clocks(adev);
2458 static struct amdgpu_ps *amdgpu_dpm_pick_power_state(struct amdgpu_device *adev,
2459 enum amd_pm_state_type dpm_state)
2462 struct amdgpu_ps *ps;
2464 bool single_display = (adev->pm.dpm.new_active_crtc_count < 2) ?
2467 /* check if the vblank period is too short to adjust the mclk */
2468 if (single_display && adev->powerplay.pp_funcs->vblank_too_short) {
2469 if (amdgpu_dpm_vblank_too_short(adev))
2470 single_display = false;
2473 /* certain older asics have a separare 3D performance state,
2474 * so try that first if the user selected performance
2476 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
2477 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
2478 /* balanced states don't exist at the moment */
2479 if (dpm_state == POWER_STATE_TYPE_BALANCED)
2480 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
2483 /* Pick the best power state based on current conditions */
2484 for (i = 0; i < adev->pm.dpm.num_ps; i++) {
2485 ps = &adev->pm.dpm.ps[i];
2486 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
2487 switch (dpm_state) {
2489 case POWER_STATE_TYPE_BATTERY:
2490 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
2491 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
2498 case POWER_STATE_TYPE_BALANCED:
2499 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
2500 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
2507 case POWER_STATE_TYPE_PERFORMANCE:
2508 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
2509 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
2516 /* internal states */
2517 case POWER_STATE_TYPE_INTERNAL_UVD:
2518 if (adev->pm.dpm.uvd_ps)
2519 return adev->pm.dpm.uvd_ps;
2522 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
2523 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
2526 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
2527 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
2530 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
2531 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
2534 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
2535 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
2538 case POWER_STATE_TYPE_INTERNAL_BOOT:
2539 return adev->pm.dpm.boot_ps;
2540 case POWER_STATE_TYPE_INTERNAL_THERMAL:
2541 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
2544 case POWER_STATE_TYPE_INTERNAL_ACPI:
2545 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
2548 case POWER_STATE_TYPE_INTERNAL_ULV:
2549 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
2552 case POWER_STATE_TYPE_INTERNAL_3DPERF:
2553 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
2560 /* use a fallback state if we didn't match */
2561 switch (dpm_state) {
2562 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
2563 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
2564 goto restart_search;
2565 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
2566 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
2567 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
2568 if (adev->pm.dpm.uvd_ps) {
2569 return adev->pm.dpm.uvd_ps;
2571 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
2572 goto restart_search;
2574 case POWER_STATE_TYPE_INTERNAL_THERMAL:
2575 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
2576 goto restart_search;
2577 case POWER_STATE_TYPE_INTERNAL_ACPI:
2578 dpm_state = POWER_STATE_TYPE_BATTERY;
2579 goto restart_search;
2580 case POWER_STATE_TYPE_BATTERY:
2581 case POWER_STATE_TYPE_BALANCED:
2582 case POWER_STATE_TYPE_INTERNAL_3DPERF:
2583 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
2584 goto restart_search;
2592 static void amdgpu_dpm_change_power_state_locked(struct amdgpu_device *adev)
2594 struct amdgpu_ps *ps;
2595 enum amd_pm_state_type dpm_state;
2599 /* if dpm init failed */
2600 if (!adev->pm.dpm_enabled)
2603 if (adev->pm.dpm.user_state != adev->pm.dpm.state) {
2604 /* add other state override checks here */
2605 if ((!adev->pm.dpm.thermal_active) &&
2606 (!adev->pm.dpm.uvd_active))
2607 adev->pm.dpm.state = adev->pm.dpm.user_state;
2609 dpm_state = adev->pm.dpm.state;
2611 ps = amdgpu_dpm_pick_power_state(adev, dpm_state);
2613 adev->pm.dpm.requested_ps = ps;
2617 if (amdgpu_dpm == 1 && adev->powerplay.pp_funcs->print_power_state) {
2618 printk("switching from power state:\n");
2619 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.current_ps);
2620 printk("switching to power state:\n");
2621 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.requested_ps);
2624 /* update whether vce is active */
2625 ps->vce_active = adev->pm.dpm.vce_active;
2626 if (adev->powerplay.pp_funcs->display_configuration_changed)
2627 amdgpu_dpm_display_configuration_changed(adev);
2629 ret = amdgpu_dpm_pre_set_power_state(adev);
2633 if (adev->powerplay.pp_funcs->check_state_equal) {
2634 if (0 != amdgpu_dpm_check_state_equal(adev, adev->pm.dpm.current_ps, adev->pm.dpm.requested_ps, &equal))
2641 amdgpu_dpm_set_power_state(adev);
2642 amdgpu_dpm_post_set_power_state(adev);
2644 adev->pm.dpm.current_active_crtcs = adev->pm.dpm.new_active_crtcs;
2645 adev->pm.dpm.current_active_crtc_count = adev->pm.dpm.new_active_crtc_count;
2647 if (adev->powerplay.pp_funcs->force_performance_level) {
2648 if (adev->pm.dpm.thermal_active) {
2649 enum amd_dpm_forced_level level = adev->pm.dpm.forced_level;
2650 /* force low perf level for thermal */
2651 amdgpu_dpm_force_performance_level(adev, AMD_DPM_FORCED_LEVEL_LOW);
2652 /* save the user's level */
2653 adev->pm.dpm.forced_level = level;
2655 /* otherwise, user selected level */
2656 amdgpu_dpm_force_performance_level(adev, adev->pm.dpm.forced_level);
2661 void amdgpu_dpm_enable_uvd(struct amdgpu_device *adev, bool enable)
2664 if (is_support_sw_smu(adev)) {
2665 ret = smu_dpm_set_power_gate(&adev->smu, AMD_IP_BLOCK_TYPE_UVD, enable);
2667 DRM_ERROR("[SW SMU]: dpm enable uvd failed, state = %s, ret = %d. \n",
2668 enable ? "true" : "false", ret);
2669 } else if (adev->powerplay.pp_funcs->set_powergating_by_smu) {
2670 /* enable/disable UVD */
2671 mutex_lock(&adev->pm.mutex);
2672 amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_UVD, !enable);
2673 mutex_unlock(&adev->pm.mutex);
2675 /* enable/disable Low Memory PState for UVD (4k videos) */
2676 if (adev->asic_type == CHIP_STONEY &&
2677 adev->uvd.decode_image_width >= WIDTH_4K) {
2678 struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
2680 if (hwmgr && hwmgr->hwmgr_func &&
2681 hwmgr->hwmgr_func->update_nbdpm_pstate)
2682 hwmgr->hwmgr_func->update_nbdpm_pstate(hwmgr,
2688 void amdgpu_dpm_enable_vce(struct amdgpu_device *adev, bool enable)
2691 if (is_support_sw_smu(adev)) {
2692 ret = smu_dpm_set_power_gate(&adev->smu, AMD_IP_BLOCK_TYPE_VCE, enable);
2694 DRM_ERROR("[SW SMU]: dpm enable vce failed, state = %s, ret = %d. \n",
2695 enable ? "true" : "false", ret);
2696 } else if (adev->powerplay.pp_funcs->set_powergating_by_smu) {
2697 /* enable/disable VCE */
2698 mutex_lock(&adev->pm.mutex);
2699 amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_VCE, !enable);
2700 mutex_unlock(&adev->pm.mutex);
2704 void amdgpu_pm_print_power_states(struct amdgpu_device *adev)
2708 if (adev->powerplay.pp_funcs->print_power_state == NULL)
2711 for (i = 0; i < adev->pm.dpm.num_ps; i++)
2712 amdgpu_dpm_print_power_state(adev, &adev->pm.dpm.ps[i]);
2716 int amdgpu_pm_virt_sysfs_init(struct amdgpu_device *adev)
2720 if (!(amdgpu_sriov_vf(adev) && amdgim_is_hwperf(adev)))
2723 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_sclk);
2725 DRM_ERROR("failed to create device file pp_dpm_sclk\n");
2729 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
2731 DRM_ERROR("failed to create device file pp_dpm_mclk\n");
2735 ret = device_create_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
2737 DRM_ERROR("failed to create device file for dpm state\n");
2744 void amdgpu_pm_virt_sysfs_fini(struct amdgpu_device *adev)
2746 if (!(amdgpu_sriov_vf(adev) && amdgim_is_hwperf(adev)))
2749 device_remove_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
2750 device_remove_file(adev->dev, &dev_attr_pp_dpm_sclk);
2751 device_remove_file(adev->dev, &dev_attr_pp_dpm_mclk);
2754 int amdgpu_pm_load_smu_firmware(struct amdgpu_device *adev, uint32_t *smu_version)
2758 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->load_firmware) {
2759 r = adev->powerplay.pp_funcs->load_firmware(adev->powerplay.pp_handle);
2761 pr_err("smu firmware loading failed\n");
2764 *smu_version = adev->pm.fw_version;
2769 int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
2771 struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
2774 if (adev->pm.sysfs_initialized)
2777 if (adev->pm.dpm_enabled == 0)
2780 adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
2783 if (IS_ERR(adev->pm.int_hwmon_dev)) {
2784 ret = PTR_ERR(adev->pm.int_hwmon_dev);
2786 "Unable to register hwmon device: %d\n", ret);
2790 ret = device_create_file(adev->dev, &dev_attr_power_dpm_state);
2792 DRM_ERROR("failed to create device file for dpm state\n");
2795 ret = device_create_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
2797 DRM_ERROR("failed to create device file for dpm state\n");
2802 ret = device_create_file(adev->dev, &dev_attr_pp_num_states);
2804 DRM_ERROR("failed to create device file pp_num_states\n");
2807 ret = device_create_file(adev->dev, &dev_attr_pp_cur_state);
2809 DRM_ERROR("failed to create device file pp_cur_state\n");
2812 ret = device_create_file(adev->dev, &dev_attr_pp_force_state);
2814 DRM_ERROR("failed to create device file pp_force_state\n");
2817 ret = device_create_file(adev->dev, &dev_attr_pp_table);
2819 DRM_ERROR("failed to create device file pp_table\n");
2823 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_sclk);
2825 DRM_ERROR("failed to create device file pp_dpm_sclk\n");
2828 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
2830 DRM_ERROR("failed to create device file pp_dpm_mclk\n");
2833 if (adev->asic_type >= CHIP_VEGA10) {
2834 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_socclk);
2836 DRM_ERROR("failed to create device file pp_dpm_socclk\n");
2839 if (adev->asic_type != CHIP_ARCTURUS) {
2840 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_dcefclk);
2842 DRM_ERROR("failed to create device file pp_dpm_dcefclk\n");
2847 if (adev->asic_type >= CHIP_VEGA20) {
2848 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_fclk);
2850 DRM_ERROR("failed to create device file pp_dpm_fclk\n");
2854 if (adev->asic_type != CHIP_ARCTURUS) {
2855 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_pcie);
2857 DRM_ERROR("failed to create device file pp_dpm_pcie\n");
2861 ret = device_create_file(adev->dev, &dev_attr_pp_sclk_od);
2863 DRM_ERROR("failed to create device file pp_sclk_od\n");
2866 ret = device_create_file(adev->dev, &dev_attr_pp_mclk_od);
2868 DRM_ERROR("failed to create device file pp_mclk_od\n");
2871 ret = device_create_file(adev->dev,
2872 &dev_attr_pp_power_profile_mode);
2874 DRM_ERROR("failed to create device file "
2875 "pp_power_profile_mode\n");
2878 if ((is_support_sw_smu(adev) && adev->smu.od_enabled) ||
2879 (!is_support_sw_smu(adev) && hwmgr->od_enabled)) {
2880 ret = device_create_file(adev->dev,
2881 &dev_attr_pp_od_clk_voltage);
2883 DRM_ERROR("failed to create device file "
2884 "pp_od_clk_voltage\n");
2888 ret = device_create_file(adev->dev,
2889 &dev_attr_gpu_busy_percent);
2891 DRM_ERROR("failed to create device file "
2892 "gpu_busy_level\n");
2895 /* APU does not have its own dedicated memory */
2896 if (!(adev->flags & AMD_IS_APU) &&
2897 (adev->asic_type != CHIP_VEGA10)) {
2898 ret = device_create_file(adev->dev,
2899 &dev_attr_mem_busy_percent);
2901 DRM_ERROR("failed to create device file "
2902 "mem_busy_percent\n");
2906 /* PCIe Perf counters won't work on APU nodes */
2907 if (!(adev->flags & AMD_IS_APU)) {
2908 ret = device_create_file(adev->dev, &dev_attr_pcie_bw);
2910 DRM_ERROR("failed to create device file pcie_bw\n");
2914 if (adev->unique_id)
2915 ret = device_create_file(adev->dev, &dev_attr_unique_id);
2917 DRM_ERROR("failed to create device file unique_id\n");
2920 ret = amdgpu_debugfs_pm_init(adev);
2922 DRM_ERROR("Failed to register debugfs file for dpm!\n");
2926 if ((adev->asic_type >= CHIP_VEGA10) &&
2927 !(adev->flags & AMD_IS_APU)) {
2928 ret = device_create_file(adev->dev,
2929 &dev_attr_pp_features);
2931 DRM_ERROR("failed to create device file "
2937 adev->pm.sysfs_initialized = true;
2942 void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
2944 struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
2946 if (adev->pm.dpm_enabled == 0)
2949 if (adev->pm.int_hwmon_dev)
2950 hwmon_device_unregister(adev->pm.int_hwmon_dev);
2951 device_remove_file(adev->dev, &dev_attr_power_dpm_state);
2952 device_remove_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
2954 device_remove_file(adev->dev, &dev_attr_pp_num_states);
2955 device_remove_file(adev->dev, &dev_attr_pp_cur_state);
2956 device_remove_file(adev->dev, &dev_attr_pp_force_state);
2957 device_remove_file(adev->dev, &dev_attr_pp_table);
2959 device_remove_file(adev->dev, &dev_attr_pp_dpm_sclk);
2960 device_remove_file(adev->dev, &dev_attr_pp_dpm_mclk);
2961 if (adev->asic_type >= CHIP_VEGA10) {
2962 device_remove_file(adev->dev, &dev_attr_pp_dpm_socclk);
2963 if (adev->asic_type != CHIP_ARCTURUS)
2964 device_remove_file(adev->dev, &dev_attr_pp_dpm_dcefclk);
2966 if (adev->asic_type != CHIP_ARCTURUS)
2967 device_remove_file(adev->dev, &dev_attr_pp_dpm_pcie);
2968 if (adev->asic_type >= CHIP_VEGA20)
2969 device_remove_file(adev->dev, &dev_attr_pp_dpm_fclk);
2970 device_remove_file(adev->dev, &dev_attr_pp_sclk_od);
2971 device_remove_file(adev->dev, &dev_attr_pp_mclk_od);
2972 device_remove_file(adev->dev,
2973 &dev_attr_pp_power_profile_mode);
2974 if ((is_support_sw_smu(adev) && adev->smu.od_enabled) ||
2975 (!is_support_sw_smu(adev) && hwmgr->od_enabled))
2976 device_remove_file(adev->dev,
2977 &dev_attr_pp_od_clk_voltage);
2978 device_remove_file(adev->dev, &dev_attr_gpu_busy_percent);
2979 if (!(adev->flags & AMD_IS_APU) &&
2980 (adev->asic_type != CHIP_VEGA10))
2981 device_remove_file(adev->dev, &dev_attr_mem_busy_percent);
2982 if (!(adev->flags & AMD_IS_APU))
2983 device_remove_file(adev->dev, &dev_attr_pcie_bw);
2984 if (adev->unique_id)
2985 device_remove_file(adev->dev, &dev_attr_unique_id);
2986 if ((adev->asic_type >= CHIP_VEGA10) &&
2987 !(adev->flags & AMD_IS_APU))
2988 device_remove_file(adev->dev, &dev_attr_pp_features);
2991 void amdgpu_pm_compute_clocks(struct amdgpu_device *adev)
2995 if (!adev->pm.dpm_enabled)
2998 if (adev->mode_info.num_crtc)
2999 amdgpu_display_bandwidth_update(adev);
3001 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3002 struct amdgpu_ring *ring = adev->rings[i];
3003 if (ring && ring->sched.ready)
3004 amdgpu_fence_wait_empty(ring);
3007 if (is_support_sw_smu(adev)) {
3008 struct smu_dpm_context *smu_dpm = &adev->smu.smu_dpm;
3009 smu_handle_task(&adev->smu,
3011 AMD_PP_TASK_DISPLAY_CONFIG_CHANGE);
3013 if (adev->powerplay.pp_funcs->dispatch_tasks) {
3014 if (!amdgpu_device_has_dc_support(adev)) {
3015 mutex_lock(&adev->pm.mutex);
3016 amdgpu_dpm_get_active_displays(adev);
3017 adev->pm.pm_display_cfg.num_display = adev->pm.dpm.new_active_crtc_count;
3018 adev->pm.pm_display_cfg.vrefresh = amdgpu_dpm_get_vrefresh(adev);
3019 adev->pm.pm_display_cfg.min_vblank_time = amdgpu_dpm_get_vblank_time(adev);
3020 /* we have issues with mclk switching with refresh rates over 120 hz on the non-DC code. */
3021 if (adev->pm.pm_display_cfg.vrefresh > 120)
3022 adev->pm.pm_display_cfg.min_vblank_time = 0;
3023 if (adev->powerplay.pp_funcs->display_configuration_change)
3024 adev->powerplay.pp_funcs->display_configuration_change(
3025 adev->powerplay.pp_handle,
3026 &adev->pm.pm_display_cfg);
3027 mutex_unlock(&adev->pm.mutex);
3029 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_DISPLAY_CONFIG_CHANGE, NULL);
3031 mutex_lock(&adev->pm.mutex);
3032 amdgpu_dpm_get_active_displays(adev);
3033 amdgpu_dpm_change_power_state_locked(adev);
3034 mutex_unlock(&adev->pm.mutex);
3042 #if defined(CONFIG_DEBUG_FS)
3044 static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
3052 size = sizeof(value);
3053 seq_printf(m, "GFX Clocks and Power:\n");
3054 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
3055 seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
3056 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
3057 seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
3058 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK, (void *)&value, &size))
3059 seq_printf(m, "\t%u MHz (PSTATE_SCLK)\n", value/100);
3060 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK, (void *)&value, &size))
3061 seq_printf(m, "\t%u MHz (PSTATE_MCLK)\n", value/100);
3062 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
3063 seq_printf(m, "\t%u mV (VDDGFX)\n", value);
3064 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
3065 seq_printf(m, "\t%u mV (VDDNB)\n", value);
3066 size = sizeof(uint32_t);
3067 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER, (void *)&query, &size))
3068 seq_printf(m, "\t%u.%u W (average GPU)\n", query >> 8, query & 0xff);
3069 size = sizeof(value);
3070 seq_printf(m, "\n");
3073 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
3074 seq_printf(m, "GPU Temperature: %u C\n", value/1000);
3077 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
3078 seq_printf(m, "GPU Load: %u %%\n", value);
3080 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_LOAD, (void *)&value, &size))
3081 seq_printf(m, "MEM Load: %u %%\n", value);
3083 seq_printf(m, "\n");
3085 /* SMC feature mask */
3086 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_ENABLED_SMC_FEATURES_MASK, (void *)&value64, &size))
3087 seq_printf(m, "SMC Feature Mask: 0x%016llx\n", value64);
3089 if (adev->asic_type > CHIP_VEGA20) {
3091 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCN_POWER_STATE, (void *)&value, &size)) {
3093 seq_printf(m, "VCN: Disabled\n");
3095 seq_printf(m, "VCN: Enabled\n");
3096 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
3097 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
3098 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
3099 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
3102 seq_printf(m, "\n");
3105 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
3107 seq_printf(m, "UVD: Disabled\n");
3109 seq_printf(m, "UVD: Enabled\n");
3110 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
3111 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
3112 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
3113 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
3116 seq_printf(m, "\n");
3119 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
3121 seq_printf(m, "VCE: Disabled\n");
3123 seq_printf(m, "VCE: Enabled\n");
3124 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
3125 seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
3133 static void amdgpu_parse_cg_state(struct seq_file *m, u32 flags)
3137 for (i = 0; clocks[i].flag; i++)
3138 seq_printf(m, "\t%s: %s\n", clocks[i].name,
3139 (flags & clocks[i].flag) ? "On" : "Off");
3142 static int amdgpu_debugfs_pm_info(struct seq_file *m, void *data)
3144 struct drm_info_node *node = (struct drm_info_node *) m->private;
3145 struct drm_device *dev = node->minor->dev;
3146 struct amdgpu_device *adev = dev->dev_private;
3147 struct drm_device *ddev = adev->ddev;
3150 amdgpu_device_ip_get_clockgating_state(adev, &flags);
3151 seq_printf(m, "Clock Gating Flags Mask: 0x%x\n", flags);
3152 amdgpu_parse_cg_state(m, flags);
3153 seq_printf(m, "\n");
3155 if (!adev->pm.dpm_enabled) {
3156 seq_printf(m, "dpm not enabled\n");
3159 if ((adev->flags & AMD_IS_PX) &&
3160 (ddev->switch_power_state != DRM_SWITCH_POWER_ON)) {
3161 seq_printf(m, "PX asic powered off\n");
3162 } else if (!is_support_sw_smu(adev) && adev->powerplay.pp_funcs->debugfs_print_current_performance_level) {
3163 mutex_lock(&adev->pm.mutex);
3164 if (adev->powerplay.pp_funcs->debugfs_print_current_performance_level)
3165 adev->powerplay.pp_funcs->debugfs_print_current_performance_level(adev, m);
3167 seq_printf(m, "Debugfs support not implemented for this asic\n");
3168 mutex_unlock(&adev->pm.mutex);
3170 return amdgpu_debugfs_pm_info_pp(m, adev);
3176 static const struct drm_info_list amdgpu_pm_info_list[] = {
3177 {"amdgpu_pm_info", amdgpu_debugfs_pm_info, 0, NULL},
3181 static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
3183 #if defined(CONFIG_DEBUG_FS)
3184 return amdgpu_debugfs_add_files(adev, amdgpu_pm_info_list, ARRAY_SIZE(amdgpu_pm_info_list));