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>
40 #include <linux/pm_runtime.h>
44 static const struct cg_flag_name clocks[] = {
45 {AMD_CG_SUPPORT_GFX_MGCG, "Graphics Medium Grain Clock Gating"},
46 {AMD_CG_SUPPORT_GFX_MGLS, "Graphics Medium Grain memory Light Sleep"},
47 {AMD_CG_SUPPORT_GFX_CGCG, "Graphics Coarse Grain Clock Gating"},
48 {AMD_CG_SUPPORT_GFX_CGLS, "Graphics Coarse Grain memory Light Sleep"},
49 {AMD_CG_SUPPORT_GFX_CGTS, "Graphics Coarse Grain Tree Shader Clock Gating"},
50 {AMD_CG_SUPPORT_GFX_CGTS_LS, "Graphics Coarse Grain Tree Shader Light Sleep"},
51 {AMD_CG_SUPPORT_GFX_CP_LS, "Graphics Command Processor Light Sleep"},
52 {AMD_CG_SUPPORT_GFX_RLC_LS, "Graphics Run List Controller Light Sleep"},
53 {AMD_CG_SUPPORT_GFX_3D_CGCG, "Graphics 3D Coarse Grain Clock Gating"},
54 {AMD_CG_SUPPORT_GFX_3D_CGLS, "Graphics 3D Coarse Grain memory Light Sleep"},
55 {AMD_CG_SUPPORT_MC_LS, "Memory Controller Light Sleep"},
56 {AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
57 {AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
58 {AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
59 {AMD_CG_SUPPORT_BIF_MGCG, "Bus Interface Medium Grain Clock Gating"},
60 {AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
61 {AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
62 {AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
63 {AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
64 {AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
65 {AMD_CG_SUPPORT_DRM_MGCG, "Digital Right Management Medium Grain Clock Gating"},
66 {AMD_CG_SUPPORT_DRM_LS, "Digital Right Management Light Sleep"},
67 {AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
68 {AMD_CG_SUPPORT_DF_MGCG, "Data Fabric Medium Grain Clock Gating"},
70 {AMD_CG_SUPPORT_ATHUB_MGCG, "Address Translation Hub Medium Grain Clock Gating"},
71 {AMD_CG_SUPPORT_ATHUB_LS, "Address Translation Hub Light Sleep"},
75 static const struct hwmon_temp_label {
76 enum PP_HWMON_TEMP channel;
79 {PP_TEMP_EDGE, "edge"},
80 {PP_TEMP_JUNCTION, "junction"},
84 void amdgpu_pm_acpi_event_handler(struct amdgpu_device *adev)
86 if (adev->pm.dpm_enabled) {
87 mutex_lock(&adev->pm.mutex);
88 if (power_supply_is_system_supplied() > 0)
89 adev->pm.ac_power = true;
91 adev->pm.ac_power = false;
92 if (adev->powerplay.pp_funcs &&
93 adev->powerplay.pp_funcs->enable_bapm)
94 amdgpu_dpm_enable_bapm(adev, adev->pm.ac_power);
95 mutex_unlock(&adev->pm.mutex);
97 if (is_support_sw_smu(adev))
98 smu_set_ac_dc(&adev->smu);
102 int amdgpu_dpm_read_sensor(struct amdgpu_device *adev, enum amd_pp_sensors sensor,
103 void *data, uint32_t *size)
110 if (is_support_sw_smu(adev))
111 ret = smu_read_sensor(&adev->smu, sensor, data, size);
113 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor)
114 ret = adev->powerplay.pp_funcs->read_sensor((adev)->powerplay.pp_handle,
124 * DOC: power_dpm_state
126 * The power_dpm_state file is a legacy interface and is only provided for
127 * backwards compatibility. The amdgpu driver provides a sysfs API for adjusting
128 * certain power related parameters. The file power_dpm_state is used for this.
129 * It accepts the following arguments:
139 * On older GPUs, the vbios provided a special power state for battery
140 * operation. Selecting battery switched to this state. This is no
141 * longer provided on newer GPUs so the option does nothing in that case.
145 * On older GPUs, the vbios provided a special power state for balanced
146 * operation. Selecting balanced switched to this state. This is no
147 * longer provided on newer GPUs so the option does nothing in that case.
151 * On older GPUs, the vbios provided a special power state for performance
152 * operation. Selecting performance switched to this state. This is no
153 * longer provided on newer GPUs so the option does nothing in that case.
157 static ssize_t amdgpu_get_power_dpm_state(struct device *dev,
158 struct device_attribute *attr,
161 struct drm_device *ddev = dev_get_drvdata(dev);
162 struct amdgpu_device *adev = ddev->dev_private;
163 enum amd_pm_state_type pm;
166 if (adev->in_gpu_reset)
169 ret = pm_runtime_get_sync(ddev->dev);
173 if (is_support_sw_smu(adev)) {
174 if (adev->smu.ppt_funcs->get_current_power_state)
175 pm = smu_get_current_power_state(&adev->smu);
177 pm = adev->pm.dpm.user_state;
178 } else if (adev->powerplay.pp_funcs->get_current_power_state) {
179 pm = amdgpu_dpm_get_current_power_state(adev);
181 pm = adev->pm.dpm.user_state;
184 pm_runtime_mark_last_busy(ddev->dev);
185 pm_runtime_put_autosuspend(ddev->dev);
187 return snprintf(buf, PAGE_SIZE, "%s\n",
188 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
189 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
192 static ssize_t amdgpu_set_power_dpm_state(struct device *dev,
193 struct device_attribute *attr,
197 struct drm_device *ddev = dev_get_drvdata(dev);
198 struct amdgpu_device *adev = ddev->dev_private;
199 enum amd_pm_state_type state;
202 if (adev->in_gpu_reset)
205 if (strncmp("battery", buf, strlen("battery")) == 0)
206 state = POWER_STATE_TYPE_BATTERY;
207 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
208 state = POWER_STATE_TYPE_BALANCED;
209 else if (strncmp("performance", buf, strlen("performance")) == 0)
210 state = POWER_STATE_TYPE_PERFORMANCE;
214 ret = pm_runtime_get_sync(ddev->dev);
218 if (is_support_sw_smu(adev)) {
219 mutex_lock(&adev->pm.mutex);
220 adev->pm.dpm.user_state = state;
221 mutex_unlock(&adev->pm.mutex);
222 } else if (adev->powerplay.pp_funcs->dispatch_tasks) {
223 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_ENABLE_USER_STATE, &state);
225 mutex_lock(&adev->pm.mutex);
226 adev->pm.dpm.user_state = state;
227 mutex_unlock(&adev->pm.mutex);
229 amdgpu_pm_compute_clocks(adev);
231 pm_runtime_mark_last_busy(ddev->dev);
232 pm_runtime_put_autosuspend(ddev->dev);
239 * DOC: power_dpm_force_performance_level
241 * The amdgpu driver provides a sysfs API for adjusting certain power
242 * related parameters. The file power_dpm_force_performance_level is
243 * used for this. It accepts the following arguments:
263 * When auto is selected, the driver will attempt to dynamically select
264 * the optimal power profile for current conditions in the driver.
268 * When low is selected, the clocks are forced to the lowest power state.
272 * When high is selected, the clocks are forced to the highest power state.
276 * When manual is selected, the user can manually adjust which power states
277 * are enabled for each clock domain via the sysfs pp_dpm_mclk, pp_dpm_sclk,
278 * and pp_dpm_pcie files and adjust the power state transition heuristics
279 * via the pp_power_profile_mode sysfs file.
286 * When the profiling modes are selected, clock and power gating are
287 * disabled and the clocks are set for different profiling cases. This
288 * mode is recommended for profiling specific work loads where you do
289 * not want clock or power gating for clock fluctuation to interfere
290 * with your results. profile_standard sets the clocks to a fixed clock
291 * level which varies from asic to asic. profile_min_sclk forces the sclk
292 * to the lowest level. profile_min_mclk forces the mclk to the lowest level.
293 * profile_peak sets all clocks (mclk, sclk, pcie) to the highest levels.
297 static ssize_t amdgpu_get_power_dpm_force_performance_level(struct device *dev,
298 struct device_attribute *attr,
301 struct drm_device *ddev = dev_get_drvdata(dev);
302 struct amdgpu_device *adev = ddev->dev_private;
303 enum amd_dpm_forced_level level = 0xff;
306 if (adev->in_gpu_reset)
309 ret = pm_runtime_get_sync(ddev->dev);
313 if (is_support_sw_smu(adev))
314 level = smu_get_performance_level(&adev->smu);
315 else if (adev->powerplay.pp_funcs->get_performance_level)
316 level = amdgpu_dpm_get_performance_level(adev);
318 level = adev->pm.dpm.forced_level;
320 pm_runtime_mark_last_busy(ddev->dev);
321 pm_runtime_put_autosuspend(ddev->dev);
323 return snprintf(buf, PAGE_SIZE, "%s\n",
324 (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
325 (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
326 (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
327 (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
328 (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
329 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
330 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
331 (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
335 static ssize_t amdgpu_set_power_dpm_force_performance_level(struct device *dev,
336 struct device_attribute *attr,
340 struct drm_device *ddev = dev_get_drvdata(dev);
341 struct amdgpu_device *adev = ddev->dev_private;
342 enum amd_dpm_forced_level level;
343 enum amd_dpm_forced_level current_level = 0xff;
346 if (adev->in_gpu_reset)
349 if (strncmp("low", buf, strlen("low")) == 0) {
350 level = AMD_DPM_FORCED_LEVEL_LOW;
351 } else if (strncmp("high", buf, strlen("high")) == 0) {
352 level = AMD_DPM_FORCED_LEVEL_HIGH;
353 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
354 level = AMD_DPM_FORCED_LEVEL_AUTO;
355 } else if (strncmp("manual", buf, strlen("manual")) == 0) {
356 level = AMD_DPM_FORCED_LEVEL_MANUAL;
357 } else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
358 level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
359 } else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
360 level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
361 } else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
362 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
363 } else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
364 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
365 } else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
366 level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
371 ret = pm_runtime_get_sync(ddev->dev);
375 if (is_support_sw_smu(adev))
376 current_level = smu_get_performance_level(&adev->smu);
377 else if (adev->powerplay.pp_funcs->get_performance_level)
378 current_level = amdgpu_dpm_get_performance_level(adev);
380 if (current_level == level) {
381 pm_runtime_mark_last_busy(ddev->dev);
382 pm_runtime_put_autosuspend(ddev->dev);
386 if (adev->asic_type == CHIP_RAVEN) {
387 if (!(adev->apu_flags & AMD_APU_IS_RAVEN2)) {
388 if (current_level != AMD_DPM_FORCED_LEVEL_MANUAL && level == AMD_DPM_FORCED_LEVEL_MANUAL)
389 amdgpu_gfx_off_ctrl(adev, false);
390 else if (current_level == AMD_DPM_FORCED_LEVEL_MANUAL && level != AMD_DPM_FORCED_LEVEL_MANUAL)
391 amdgpu_gfx_off_ctrl(adev, true);
395 /* profile_exit setting is valid only when current mode is in profile mode */
396 if (!(current_level & (AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD |
397 AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK |
398 AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK |
399 AMD_DPM_FORCED_LEVEL_PROFILE_PEAK)) &&
400 (level == AMD_DPM_FORCED_LEVEL_PROFILE_EXIT)) {
401 pr_err("Currently not in any profile mode!\n");
402 pm_runtime_mark_last_busy(ddev->dev);
403 pm_runtime_put_autosuspend(ddev->dev);
407 if (is_support_sw_smu(adev)) {
408 ret = smu_force_performance_level(&adev->smu, level);
410 pm_runtime_mark_last_busy(ddev->dev);
411 pm_runtime_put_autosuspend(ddev->dev);
414 } else if (adev->powerplay.pp_funcs->force_performance_level) {
415 mutex_lock(&adev->pm.mutex);
416 if (adev->pm.dpm.thermal_active) {
417 mutex_unlock(&adev->pm.mutex);
418 pm_runtime_mark_last_busy(ddev->dev);
419 pm_runtime_put_autosuspend(ddev->dev);
422 ret = amdgpu_dpm_force_performance_level(adev, level);
424 mutex_unlock(&adev->pm.mutex);
425 pm_runtime_mark_last_busy(ddev->dev);
426 pm_runtime_put_autosuspend(ddev->dev);
429 adev->pm.dpm.forced_level = level;
431 mutex_unlock(&adev->pm.mutex);
433 pm_runtime_mark_last_busy(ddev->dev);
434 pm_runtime_put_autosuspend(ddev->dev);
439 static ssize_t amdgpu_get_pp_num_states(struct device *dev,
440 struct device_attribute *attr,
443 struct drm_device *ddev = dev_get_drvdata(dev);
444 struct amdgpu_device *adev = ddev->dev_private;
445 struct pp_states_info data;
448 if (adev->in_gpu_reset)
451 ret = pm_runtime_get_sync(ddev->dev);
455 if (is_support_sw_smu(adev)) {
456 ret = smu_get_power_num_states(&adev->smu, &data);
459 } else if (adev->powerplay.pp_funcs->get_pp_num_states) {
460 amdgpu_dpm_get_pp_num_states(adev, &data);
462 memset(&data, 0, sizeof(data));
465 pm_runtime_mark_last_busy(ddev->dev);
466 pm_runtime_put_autosuspend(ddev->dev);
468 buf_len = snprintf(buf, PAGE_SIZE, "states: %d\n", data.nums);
469 for (i = 0; i < data.nums; i++)
470 buf_len += snprintf(buf + buf_len, PAGE_SIZE, "%d %s\n", i,
471 (data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
472 (data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
473 (data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
474 (data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
479 static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
480 struct device_attribute *attr,
483 struct drm_device *ddev = dev_get_drvdata(dev);
484 struct amdgpu_device *adev = ddev->dev_private;
485 struct pp_states_info data;
486 struct smu_context *smu = &adev->smu;
487 enum amd_pm_state_type pm = 0;
490 if (adev->in_gpu_reset)
493 ret = pm_runtime_get_sync(ddev->dev);
497 if (is_support_sw_smu(adev)) {
498 pm = smu_get_current_power_state(smu);
499 ret = smu_get_power_num_states(smu, &data);
502 } else if (adev->powerplay.pp_funcs->get_current_power_state
503 && adev->powerplay.pp_funcs->get_pp_num_states) {
504 pm = amdgpu_dpm_get_current_power_state(adev);
505 amdgpu_dpm_get_pp_num_states(adev, &data);
508 pm_runtime_mark_last_busy(ddev->dev);
509 pm_runtime_put_autosuspend(ddev->dev);
511 for (i = 0; i < data.nums; i++) {
512 if (pm == data.states[i])
519 return snprintf(buf, PAGE_SIZE, "%d\n", i);
522 static ssize_t amdgpu_get_pp_force_state(struct device *dev,
523 struct device_attribute *attr,
526 struct drm_device *ddev = dev_get_drvdata(dev);
527 struct amdgpu_device *adev = ddev->dev_private;
529 if (adev->in_gpu_reset)
532 if (adev->pp_force_state_enabled)
533 return amdgpu_get_pp_cur_state(dev, attr, buf);
535 return snprintf(buf, PAGE_SIZE, "\n");
538 static ssize_t amdgpu_set_pp_force_state(struct device *dev,
539 struct device_attribute *attr,
543 struct drm_device *ddev = dev_get_drvdata(dev);
544 struct amdgpu_device *adev = ddev->dev_private;
545 enum amd_pm_state_type state = 0;
549 if (adev->in_gpu_reset)
552 if (strlen(buf) == 1)
553 adev->pp_force_state_enabled = false;
554 else if (is_support_sw_smu(adev))
555 adev->pp_force_state_enabled = false;
556 else if (adev->powerplay.pp_funcs->dispatch_tasks &&
557 adev->powerplay.pp_funcs->get_pp_num_states) {
558 struct pp_states_info data;
560 ret = kstrtoul(buf, 0, &idx);
561 if (ret || idx >= ARRAY_SIZE(data.states))
564 idx = array_index_nospec(idx, ARRAY_SIZE(data.states));
566 amdgpu_dpm_get_pp_num_states(adev, &data);
567 state = data.states[idx];
569 ret = pm_runtime_get_sync(ddev->dev);
573 /* only set user selected power states */
574 if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
575 state != POWER_STATE_TYPE_DEFAULT) {
576 amdgpu_dpm_dispatch_task(adev,
577 AMD_PP_TASK_ENABLE_USER_STATE, &state);
578 adev->pp_force_state_enabled = true;
580 pm_runtime_mark_last_busy(ddev->dev);
581 pm_runtime_put_autosuspend(ddev->dev);
590 * The amdgpu driver provides a sysfs API for uploading new powerplay
591 * tables. The file pp_table is used for this. Reading the file
592 * will dump the current power play table. Writing to the file
593 * will attempt to upload a new powerplay table and re-initialize
594 * powerplay using that new table.
598 static ssize_t amdgpu_get_pp_table(struct device *dev,
599 struct device_attribute *attr,
602 struct drm_device *ddev = dev_get_drvdata(dev);
603 struct amdgpu_device *adev = ddev->dev_private;
607 if (adev->in_gpu_reset)
610 ret = pm_runtime_get_sync(ddev->dev);
614 if (is_support_sw_smu(adev)) {
615 size = smu_sys_get_pp_table(&adev->smu, (void **)&table);
616 pm_runtime_mark_last_busy(ddev->dev);
617 pm_runtime_put_autosuspend(ddev->dev);
620 } else if (adev->powerplay.pp_funcs->get_pp_table) {
621 size = amdgpu_dpm_get_pp_table(adev, &table);
622 pm_runtime_mark_last_busy(ddev->dev);
623 pm_runtime_put_autosuspend(ddev->dev);
627 pm_runtime_mark_last_busy(ddev->dev);
628 pm_runtime_put_autosuspend(ddev->dev);
632 if (size >= PAGE_SIZE)
633 size = PAGE_SIZE - 1;
635 memcpy(buf, table, size);
640 static ssize_t amdgpu_set_pp_table(struct device *dev,
641 struct device_attribute *attr,
645 struct drm_device *ddev = dev_get_drvdata(dev);
646 struct amdgpu_device *adev = ddev->dev_private;
649 if (adev->in_gpu_reset)
652 ret = pm_runtime_get_sync(ddev->dev);
656 if (is_support_sw_smu(adev)) {
657 ret = smu_sys_set_pp_table(&adev->smu, (void *)buf, count);
659 pm_runtime_mark_last_busy(ddev->dev);
660 pm_runtime_put_autosuspend(ddev->dev);
663 } else if (adev->powerplay.pp_funcs->set_pp_table)
664 amdgpu_dpm_set_pp_table(adev, buf, count);
666 pm_runtime_mark_last_busy(ddev->dev);
667 pm_runtime_put_autosuspend(ddev->dev);
673 * DOC: pp_od_clk_voltage
675 * The amdgpu driver provides a sysfs API for adjusting the clocks and voltages
676 * in each power level within a power state. The pp_od_clk_voltage is used for
679 * < For Vega10 and previous ASICs >
681 * Reading the file will display:
683 * - a list of engine clock levels and voltages labeled OD_SCLK
685 * - a list of memory clock levels and voltages labeled OD_MCLK
687 * - a list of valid ranges for sclk, mclk, and voltage labeled OD_RANGE
689 * To manually adjust these settings, first select manual using
690 * power_dpm_force_performance_level. Enter a new value for each
691 * level by writing a string that contains "s/m level clock voltage" to
692 * the file. E.g., "s 1 500 820" will update sclk level 1 to be 500 MHz
693 * at 820 mV; "m 0 350 810" will update mclk level 0 to be 350 MHz at
694 * 810 mV. When you have edited all of the states as needed, write
695 * "c" (commit) to the file to commit your changes. If you want to reset to the
696 * default power levels, write "r" (reset) to the file to reset them.
699 * < For Vega20 and newer ASICs >
701 * Reading the file will display:
703 * - minimum and maximum engine clock labeled OD_SCLK
705 * - maximum memory clock labeled OD_MCLK
707 * - three <frequency, voltage> points labeled OD_VDDC_CURVE.
708 * They can be used to calibrate the sclk voltage curve.
710 * - a list of valid ranges for sclk, mclk, and voltage curve points
713 * To manually adjust these settings:
715 * - First select manual using power_dpm_force_performance_level
717 * - For clock frequency setting, enter a new value by writing a
718 * string that contains "s/m index clock" to the file. The index
719 * should be 0 if to set minimum clock. And 1 if to set maximum
720 * clock. E.g., "s 0 500" will update minimum sclk to be 500 MHz.
721 * "m 1 800" will update maximum mclk to be 800Mhz.
723 * For sclk voltage curve, enter the new values by writing a
724 * string that contains "vc point clock voltage" to the file. The
725 * points are indexed by 0, 1 and 2. E.g., "vc 0 300 600" will
726 * update point1 with clock set as 300Mhz and voltage as
727 * 600mV. "vc 2 1000 1000" will update point3 with clock set
728 * as 1000Mhz and voltage 1000mV.
730 * - When you have edited all of the states as needed, write "c" (commit)
731 * to the file to commit your changes
733 * - If you want to reset to the default power levels, write "r" (reset)
734 * to the file to reset them
738 static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev,
739 struct device_attribute *attr,
743 struct drm_device *ddev = dev_get_drvdata(dev);
744 struct amdgpu_device *adev = ddev->dev_private;
746 uint32_t parameter_size = 0;
751 const char delimiter[3] = {' ', '\n', '\0'};
754 if (adev->in_gpu_reset)
761 type = PP_OD_EDIT_SCLK_VDDC_TABLE;
762 else if (*buf == 'm')
763 type = PP_OD_EDIT_MCLK_VDDC_TABLE;
765 type = PP_OD_RESTORE_DEFAULT_TABLE;
766 else if (*buf == 'c')
767 type = PP_OD_COMMIT_DPM_TABLE;
768 else if (!strncmp(buf, "vc", 2))
769 type = PP_OD_EDIT_VDDC_CURVE;
773 memcpy(buf_cpy, buf, count+1);
777 if (type == PP_OD_EDIT_VDDC_CURVE)
779 while (isspace(*++tmp_str));
781 while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
782 ret = kstrtol(sub_str, 0, ¶meter[parameter_size]);
787 while (isspace(*tmp_str))
791 ret = pm_runtime_get_sync(ddev->dev);
795 if (is_support_sw_smu(adev)) {
796 ret = smu_od_edit_dpm_table(&adev->smu, type,
797 parameter, parameter_size);
800 pm_runtime_mark_last_busy(ddev->dev);
801 pm_runtime_put_autosuspend(ddev->dev);
805 if (adev->powerplay.pp_funcs->odn_edit_dpm_table) {
806 ret = amdgpu_dpm_odn_edit_dpm_table(adev, type,
807 parameter, parameter_size);
809 pm_runtime_mark_last_busy(ddev->dev);
810 pm_runtime_put_autosuspend(ddev->dev);
815 if (type == PP_OD_COMMIT_DPM_TABLE) {
816 if (adev->powerplay.pp_funcs->dispatch_tasks) {
817 amdgpu_dpm_dispatch_task(adev,
818 AMD_PP_TASK_READJUST_POWER_STATE,
820 pm_runtime_mark_last_busy(ddev->dev);
821 pm_runtime_put_autosuspend(ddev->dev);
824 pm_runtime_mark_last_busy(ddev->dev);
825 pm_runtime_put_autosuspend(ddev->dev);
830 pm_runtime_mark_last_busy(ddev->dev);
831 pm_runtime_put_autosuspend(ddev->dev);
836 static ssize_t amdgpu_get_pp_od_clk_voltage(struct device *dev,
837 struct device_attribute *attr,
840 struct drm_device *ddev = dev_get_drvdata(dev);
841 struct amdgpu_device *adev = ddev->dev_private;
845 if (adev->in_gpu_reset)
848 ret = pm_runtime_get_sync(ddev->dev);
852 if (is_support_sw_smu(adev)) {
853 size = smu_print_clk_levels(&adev->smu, SMU_OD_SCLK, buf);
854 size += smu_print_clk_levels(&adev->smu, SMU_OD_MCLK, buf+size);
855 size += smu_print_clk_levels(&adev->smu, SMU_OD_VDDC_CURVE, buf+size);
856 size += smu_print_clk_levels(&adev->smu, SMU_OD_RANGE, buf+size);
857 } else if (adev->powerplay.pp_funcs->print_clock_levels) {
858 size = amdgpu_dpm_print_clock_levels(adev, OD_SCLK, buf);
859 size += amdgpu_dpm_print_clock_levels(adev, OD_MCLK, buf+size);
860 size += amdgpu_dpm_print_clock_levels(adev, OD_VDDC_CURVE, buf+size);
861 size += amdgpu_dpm_print_clock_levels(adev, OD_RANGE, buf+size);
863 size = snprintf(buf, PAGE_SIZE, "\n");
865 pm_runtime_mark_last_busy(ddev->dev);
866 pm_runtime_put_autosuspend(ddev->dev);
874 * The amdgpu driver provides a sysfs API for adjusting what powerplay
875 * features to be enabled. The file pp_features is used for this. And
876 * this is only available for Vega10 and later dGPUs.
878 * Reading back the file will show you the followings:
879 * - Current ppfeature masks
880 * - List of the all supported powerplay features with their naming,
881 * bitmasks and enablement status('Y'/'N' means "enabled"/"disabled").
883 * To manually enable or disable a specific feature, just set or clear
884 * the corresponding bit from original ppfeature masks and input the
885 * new ppfeature masks.
887 static ssize_t amdgpu_set_pp_features(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;
894 uint64_t featuremask;
897 if (adev->in_gpu_reset)
900 ret = kstrtou64(buf, 0, &featuremask);
904 pr_debug("featuremask = 0x%llx\n", featuremask);
906 ret = pm_runtime_get_sync(ddev->dev);
910 if (is_support_sw_smu(adev)) {
911 ret = smu_sys_set_pp_feature_mask(&adev->smu, featuremask);
913 pm_runtime_mark_last_busy(ddev->dev);
914 pm_runtime_put_autosuspend(ddev->dev);
917 } else if (adev->powerplay.pp_funcs->set_ppfeature_status) {
918 ret = amdgpu_dpm_set_ppfeature_status(adev, featuremask);
920 pm_runtime_mark_last_busy(ddev->dev);
921 pm_runtime_put_autosuspend(ddev->dev);
925 pm_runtime_mark_last_busy(ddev->dev);
926 pm_runtime_put_autosuspend(ddev->dev);
931 static ssize_t amdgpu_get_pp_features(struct device *dev,
932 struct device_attribute *attr,
935 struct drm_device *ddev = dev_get_drvdata(dev);
936 struct amdgpu_device *adev = ddev->dev_private;
940 if (adev->in_gpu_reset)
943 ret = pm_runtime_get_sync(ddev->dev);
947 if (is_support_sw_smu(adev))
948 size = smu_sys_get_pp_feature_mask(&adev->smu, buf);
949 else if (adev->powerplay.pp_funcs->get_ppfeature_status)
950 size = amdgpu_dpm_get_ppfeature_status(adev, buf);
952 size = snprintf(buf, PAGE_SIZE, "\n");
954 pm_runtime_mark_last_busy(ddev->dev);
955 pm_runtime_put_autosuspend(ddev->dev);
961 * DOC: pp_dpm_sclk pp_dpm_mclk pp_dpm_socclk pp_dpm_fclk pp_dpm_dcefclk pp_dpm_pcie
963 * The amdgpu driver provides a sysfs API for adjusting what power levels
964 * are enabled for a given power state. The files pp_dpm_sclk, pp_dpm_mclk,
965 * pp_dpm_socclk, pp_dpm_fclk, pp_dpm_dcefclk and pp_dpm_pcie are used for
968 * pp_dpm_socclk and pp_dpm_dcefclk interfaces are only available for
969 * Vega10 and later ASICs.
970 * pp_dpm_fclk interface is only available for Vega20 and later ASICs.
972 * Reading back the files will show you the available power levels within
973 * the power state and the clock information for those levels.
975 * To manually adjust these states, first select manual using
976 * power_dpm_force_performance_level.
977 * Secondly, enter a new value for each level by inputing a string that
978 * contains " echo xx xx xx > pp_dpm_sclk/mclk/pcie"
981 * .. code-block:: bash
983 * echo "4 5 6" > pp_dpm_sclk
985 * will enable sclk levels 4, 5, and 6.
987 * NOTE: change to the dcefclk max dpm level is not supported now
990 static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
991 struct device_attribute *attr,
994 struct drm_device *ddev = dev_get_drvdata(dev);
995 struct amdgpu_device *adev = ddev->dev_private;
999 if (adev->in_gpu_reset)
1002 ret = pm_runtime_get_sync(ddev->dev);
1006 if (is_support_sw_smu(adev))
1007 size = smu_print_clk_levels(&adev->smu, SMU_SCLK, buf);
1008 else if (adev->powerplay.pp_funcs->print_clock_levels)
1009 size = amdgpu_dpm_print_clock_levels(adev, PP_SCLK, buf);
1011 size = snprintf(buf, PAGE_SIZE, "\n");
1013 pm_runtime_mark_last_busy(ddev->dev);
1014 pm_runtime_put_autosuspend(ddev->dev);
1020 * Worst case: 32 bits individually specified, in octal at 12 characters
1021 * per line (+1 for \n).
1023 #define AMDGPU_MASK_BUF_MAX (32 * 13)
1025 static ssize_t amdgpu_read_mask(const char *buf, size_t count, uint32_t *mask)
1029 char *sub_str = NULL;
1031 char buf_cpy[AMDGPU_MASK_BUF_MAX + 1];
1032 const char delimiter[3] = {' ', '\n', '\0'};
1037 bytes = min(count, sizeof(buf_cpy) - 1);
1038 memcpy(buf_cpy, buf, bytes);
1039 buf_cpy[bytes] = '\0';
1041 while ((sub_str = strsep(&tmp, delimiter)) != NULL) {
1042 if (strlen(sub_str)) {
1043 ret = kstrtol(sub_str, 0, &level);
1046 *mask |= 1 << level;
1054 static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
1055 struct device_attribute *attr,
1059 struct drm_device *ddev = dev_get_drvdata(dev);
1060 struct amdgpu_device *adev = ddev->dev_private;
1064 if (adev->in_gpu_reset)
1067 ret = amdgpu_read_mask(buf, count, &mask);
1071 ret = pm_runtime_get_sync(ddev->dev);
1075 if (is_support_sw_smu(adev))
1076 ret = smu_force_clk_levels(&adev->smu, SMU_SCLK, mask, true);
1077 else if (adev->powerplay.pp_funcs->force_clock_level)
1078 ret = amdgpu_dpm_force_clock_level(adev, PP_SCLK, mask);
1080 pm_runtime_mark_last_busy(ddev->dev);
1081 pm_runtime_put_autosuspend(ddev->dev);
1089 static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
1090 struct device_attribute *attr,
1093 struct drm_device *ddev = dev_get_drvdata(dev);
1094 struct amdgpu_device *adev = ddev->dev_private;
1098 if (adev->in_gpu_reset)
1101 ret = pm_runtime_get_sync(ddev->dev);
1105 if (is_support_sw_smu(adev))
1106 size = smu_print_clk_levels(&adev->smu, SMU_MCLK, buf);
1107 else if (adev->powerplay.pp_funcs->print_clock_levels)
1108 size = amdgpu_dpm_print_clock_levels(adev, PP_MCLK, buf);
1110 size = snprintf(buf, PAGE_SIZE, "\n");
1112 pm_runtime_mark_last_busy(ddev->dev);
1113 pm_runtime_put_autosuspend(ddev->dev);
1118 static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
1119 struct device_attribute *attr,
1123 struct drm_device *ddev = dev_get_drvdata(dev);
1124 struct amdgpu_device *adev = ddev->dev_private;
1128 if (adev->in_gpu_reset)
1131 ret = amdgpu_read_mask(buf, count, &mask);
1135 ret = pm_runtime_get_sync(ddev->dev);
1139 if (is_support_sw_smu(adev))
1140 ret = smu_force_clk_levels(&adev->smu, SMU_MCLK, mask, true);
1141 else if (adev->powerplay.pp_funcs->force_clock_level)
1142 ret = amdgpu_dpm_force_clock_level(adev, PP_MCLK, mask);
1144 pm_runtime_mark_last_busy(ddev->dev);
1145 pm_runtime_put_autosuspend(ddev->dev);
1153 static ssize_t amdgpu_get_pp_dpm_socclk(struct device *dev,
1154 struct device_attribute *attr,
1157 struct drm_device *ddev = dev_get_drvdata(dev);
1158 struct amdgpu_device *adev = ddev->dev_private;
1162 if (adev->in_gpu_reset)
1165 ret = pm_runtime_get_sync(ddev->dev);
1169 if (is_support_sw_smu(adev))
1170 size = smu_print_clk_levels(&adev->smu, SMU_SOCCLK, buf);
1171 else if (adev->powerplay.pp_funcs->print_clock_levels)
1172 size = amdgpu_dpm_print_clock_levels(adev, PP_SOCCLK, buf);
1174 size = snprintf(buf, PAGE_SIZE, "\n");
1176 pm_runtime_mark_last_busy(ddev->dev);
1177 pm_runtime_put_autosuspend(ddev->dev);
1182 static ssize_t amdgpu_set_pp_dpm_socclk(struct device *dev,
1183 struct device_attribute *attr,
1187 struct drm_device *ddev = dev_get_drvdata(dev);
1188 struct amdgpu_device *adev = ddev->dev_private;
1192 if (adev->in_gpu_reset)
1195 ret = amdgpu_read_mask(buf, count, &mask);
1199 ret = pm_runtime_get_sync(ddev->dev);
1203 if (is_support_sw_smu(adev))
1204 ret = smu_force_clk_levels(&adev->smu, SMU_SOCCLK, mask, true);
1205 else if (adev->powerplay.pp_funcs->force_clock_level)
1206 ret = amdgpu_dpm_force_clock_level(adev, PP_SOCCLK, mask);
1210 pm_runtime_mark_last_busy(ddev->dev);
1211 pm_runtime_put_autosuspend(ddev->dev);
1219 static ssize_t amdgpu_get_pp_dpm_fclk(struct device *dev,
1220 struct device_attribute *attr,
1223 struct drm_device *ddev = dev_get_drvdata(dev);
1224 struct amdgpu_device *adev = ddev->dev_private;
1228 if (adev->in_gpu_reset)
1231 ret = pm_runtime_get_sync(ddev->dev);
1235 if (is_support_sw_smu(adev))
1236 size = smu_print_clk_levels(&adev->smu, SMU_FCLK, buf);
1237 else if (adev->powerplay.pp_funcs->print_clock_levels)
1238 size = amdgpu_dpm_print_clock_levels(adev, PP_FCLK, buf);
1240 size = snprintf(buf, PAGE_SIZE, "\n");
1242 pm_runtime_mark_last_busy(ddev->dev);
1243 pm_runtime_put_autosuspend(ddev->dev);
1248 static ssize_t amdgpu_set_pp_dpm_fclk(struct device *dev,
1249 struct device_attribute *attr,
1253 struct drm_device *ddev = dev_get_drvdata(dev);
1254 struct amdgpu_device *adev = ddev->dev_private;
1258 if (adev->in_gpu_reset)
1261 ret = amdgpu_read_mask(buf, count, &mask);
1265 ret = pm_runtime_get_sync(ddev->dev);
1269 if (is_support_sw_smu(adev))
1270 ret = smu_force_clk_levels(&adev->smu, SMU_FCLK, mask, true);
1271 else if (adev->powerplay.pp_funcs->force_clock_level)
1272 ret = amdgpu_dpm_force_clock_level(adev, PP_FCLK, mask);
1276 pm_runtime_mark_last_busy(ddev->dev);
1277 pm_runtime_put_autosuspend(ddev->dev);
1285 static ssize_t amdgpu_get_pp_dpm_dcefclk(struct device *dev,
1286 struct device_attribute *attr,
1289 struct drm_device *ddev = dev_get_drvdata(dev);
1290 struct amdgpu_device *adev = ddev->dev_private;
1294 if (adev->in_gpu_reset)
1297 ret = pm_runtime_get_sync(ddev->dev);
1301 if (is_support_sw_smu(adev))
1302 size = smu_print_clk_levels(&adev->smu, SMU_DCEFCLK, buf);
1303 else if (adev->powerplay.pp_funcs->print_clock_levels)
1304 size = amdgpu_dpm_print_clock_levels(adev, PP_DCEFCLK, buf);
1306 size = snprintf(buf, PAGE_SIZE, "\n");
1308 pm_runtime_mark_last_busy(ddev->dev);
1309 pm_runtime_put_autosuspend(ddev->dev);
1314 static ssize_t amdgpu_set_pp_dpm_dcefclk(struct device *dev,
1315 struct device_attribute *attr,
1319 struct drm_device *ddev = dev_get_drvdata(dev);
1320 struct amdgpu_device *adev = ddev->dev_private;
1324 if (adev->in_gpu_reset)
1327 ret = amdgpu_read_mask(buf, count, &mask);
1331 ret = pm_runtime_get_sync(ddev->dev);
1335 if (is_support_sw_smu(adev))
1336 ret = smu_force_clk_levels(&adev->smu, SMU_DCEFCLK, mask, true);
1337 else if (adev->powerplay.pp_funcs->force_clock_level)
1338 ret = amdgpu_dpm_force_clock_level(adev, PP_DCEFCLK, mask);
1342 pm_runtime_mark_last_busy(ddev->dev);
1343 pm_runtime_put_autosuspend(ddev->dev);
1351 static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
1352 struct device_attribute *attr,
1355 struct drm_device *ddev = dev_get_drvdata(dev);
1356 struct amdgpu_device *adev = ddev->dev_private;
1360 if (adev->in_gpu_reset)
1363 ret = pm_runtime_get_sync(ddev->dev);
1367 if (is_support_sw_smu(adev))
1368 size = smu_print_clk_levels(&adev->smu, SMU_PCIE, buf);
1369 else if (adev->powerplay.pp_funcs->print_clock_levels)
1370 size = amdgpu_dpm_print_clock_levels(adev, PP_PCIE, buf);
1372 size = snprintf(buf, PAGE_SIZE, "\n");
1374 pm_runtime_mark_last_busy(ddev->dev);
1375 pm_runtime_put_autosuspend(ddev->dev);
1380 static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
1381 struct device_attribute *attr,
1385 struct drm_device *ddev = dev_get_drvdata(dev);
1386 struct amdgpu_device *adev = ddev->dev_private;
1390 if (adev->in_gpu_reset)
1393 ret = amdgpu_read_mask(buf, count, &mask);
1397 ret = pm_runtime_get_sync(ddev->dev);
1401 if (is_support_sw_smu(adev))
1402 ret = smu_force_clk_levels(&adev->smu, SMU_PCIE, mask, true);
1403 else if (adev->powerplay.pp_funcs->force_clock_level)
1404 ret = amdgpu_dpm_force_clock_level(adev, PP_PCIE, mask);
1408 pm_runtime_mark_last_busy(ddev->dev);
1409 pm_runtime_put_autosuspend(ddev->dev);
1417 static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
1418 struct device_attribute *attr,
1421 struct drm_device *ddev = dev_get_drvdata(dev);
1422 struct amdgpu_device *adev = ddev->dev_private;
1426 if (adev->in_gpu_reset)
1429 ret = pm_runtime_get_sync(ddev->dev);
1433 if (is_support_sw_smu(adev))
1434 value = smu_get_od_percentage(&(adev->smu), SMU_OD_SCLK);
1435 else if (adev->powerplay.pp_funcs->get_sclk_od)
1436 value = amdgpu_dpm_get_sclk_od(adev);
1438 pm_runtime_mark_last_busy(ddev->dev);
1439 pm_runtime_put_autosuspend(ddev->dev);
1441 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1444 static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
1445 struct device_attribute *attr,
1449 struct drm_device *ddev = dev_get_drvdata(dev);
1450 struct amdgpu_device *adev = ddev->dev_private;
1454 if (adev->in_gpu_reset)
1457 ret = kstrtol(buf, 0, &value);
1462 ret = pm_runtime_get_sync(ddev->dev);
1466 if (is_support_sw_smu(adev)) {
1467 value = smu_set_od_percentage(&(adev->smu), SMU_OD_SCLK, (uint32_t)value);
1469 if (adev->powerplay.pp_funcs->set_sclk_od)
1470 amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
1472 if (adev->powerplay.pp_funcs->dispatch_tasks) {
1473 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
1475 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
1476 amdgpu_pm_compute_clocks(adev);
1480 pm_runtime_mark_last_busy(ddev->dev);
1481 pm_runtime_put_autosuspend(ddev->dev);
1486 static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
1487 struct device_attribute *attr,
1490 struct drm_device *ddev = dev_get_drvdata(dev);
1491 struct amdgpu_device *adev = ddev->dev_private;
1495 if (adev->in_gpu_reset)
1498 ret = pm_runtime_get_sync(ddev->dev);
1502 if (is_support_sw_smu(adev))
1503 value = smu_get_od_percentage(&(adev->smu), SMU_OD_MCLK);
1504 else if (adev->powerplay.pp_funcs->get_mclk_od)
1505 value = amdgpu_dpm_get_mclk_od(adev);
1507 pm_runtime_mark_last_busy(ddev->dev);
1508 pm_runtime_put_autosuspend(ddev->dev);
1510 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1513 static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
1514 struct device_attribute *attr,
1518 struct drm_device *ddev = dev_get_drvdata(dev);
1519 struct amdgpu_device *adev = ddev->dev_private;
1523 if (adev->in_gpu_reset)
1526 ret = kstrtol(buf, 0, &value);
1531 ret = pm_runtime_get_sync(ddev->dev);
1535 if (is_support_sw_smu(adev)) {
1536 value = smu_set_od_percentage(&(adev->smu), SMU_OD_MCLK, (uint32_t)value);
1538 if (adev->powerplay.pp_funcs->set_mclk_od)
1539 amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
1541 if (adev->powerplay.pp_funcs->dispatch_tasks) {
1542 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
1544 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
1545 amdgpu_pm_compute_clocks(adev);
1549 pm_runtime_mark_last_busy(ddev->dev);
1550 pm_runtime_put_autosuspend(ddev->dev);
1556 * DOC: pp_power_profile_mode
1558 * The amdgpu driver provides a sysfs API for adjusting the heuristics
1559 * related to switching between power levels in a power state. The file
1560 * pp_power_profile_mode is used for this.
1562 * Reading this file outputs a list of all of the predefined power profiles
1563 * and the relevant heuristics settings for that profile.
1565 * To select a profile or create a custom profile, first select manual using
1566 * power_dpm_force_performance_level. Writing the number of a predefined
1567 * profile to pp_power_profile_mode will enable those heuristics. To
1568 * create a custom set of heuristics, write a string of numbers to the file
1569 * starting with the number of the custom profile along with a setting
1570 * for each heuristic parameter. Due to differences across asic families
1571 * the heuristic parameters vary from family to family.
1575 static ssize_t amdgpu_get_pp_power_profile_mode(struct device *dev,
1576 struct device_attribute *attr,
1579 struct drm_device *ddev = dev_get_drvdata(dev);
1580 struct amdgpu_device *adev = ddev->dev_private;
1584 if (adev->in_gpu_reset)
1587 ret = pm_runtime_get_sync(ddev->dev);
1591 if (is_support_sw_smu(adev))
1592 size = smu_get_power_profile_mode(&adev->smu, buf);
1593 else if (adev->powerplay.pp_funcs->get_power_profile_mode)
1594 size = amdgpu_dpm_get_power_profile_mode(adev, buf);
1596 size = snprintf(buf, PAGE_SIZE, "\n");
1598 pm_runtime_mark_last_busy(ddev->dev);
1599 pm_runtime_put_autosuspend(ddev->dev);
1605 static ssize_t amdgpu_set_pp_power_profile_mode(struct device *dev,
1606 struct device_attribute *attr,
1611 struct drm_device *ddev = dev_get_drvdata(dev);
1612 struct amdgpu_device *adev = ddev->dev_private;
1613 uint32_t parameter_size = 0;
1615 char *sub_str, buf_cpy[128];
1619 long int profile_mode = 0;
1620 const char delimiter[3] = {' ', '\n', '\0'};
1622 if (adev->in_gpu_reset)
1627 ret = kstrtol(tmp, 0, &profile_mode);
1631 if (profile_mode == PP_SMC_POWER_PROFILE_CUSTOM) {
1632 if (count < 2 || count > 127)
1634 while (isspace(*++buf))
1636 memcpy(buf_cpy, buf, count-i);
1638 while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
1639 ret = kstrtol(sub_str, 0, ¶meter[parameter_size]);
1643 while (isspace(*tmp_str))
1647 parameter[parameter_size] = profile_mode;
1649 ret = pm_runtime_get_sync(ddev->dev);
1653 if (is_support_sw_smu(adev))
1654 ret = smu_set_power_profile_mode(&adev->smu, parameter, parameter_size, true);
1655 else if (adev->powerplay.pp_funcs->set_power_profile_mode)
1656 ret = amdgpu_dpm_set_power_profile_mode(adev, parameter, parameter_size);
1658 pm_runtime_mark_last_busy(ddev->dev);
1659 pm_runtime_put_autosuspend(ddev->dev);
1668 * DOC: gpu_busy_percent
1670 * The amdgpu driver provides a sysfs API for reading how busy the GPU
1671 * is as a percentage. The file gpu_busy_percent is used for this.
1672 * The SMU firmware computes a percentage of load based on the
1673 * aggregate activity level in the IP cores.
1675 static ssize_t amdgpu_get_gpu_busy_percent(struct device *dev,
1676 struct device_attribute *attr,
1679 struct drm_device *ddev = dev_get_drvdata(dev);
1680 struct amdgpu_device *adev = ddev->dev_private;
1681 int r, value, size = sizeof(value);
1683 if (adev->in_gpu_reset)
1686 r = pm_runtime_get_sync(ddev->dev);
1690 /* read the IP busy sensor */
1691 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD,
1692 (void *)&value, &size);
1694 pm_runtime_mark_last_busy(ddev->dev);
1695 pm_runtime_put_autosuspend(ddev->dev);
1700 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1704 * DOC: mem_busy_percent
1706 * The amdgpu driver provides a sysfs API for reading how busy the VRAM
1707 * is as a percentage. The file mem_busy_percent is used for this.
1708 * The SMU firmware computes a percentage of load based on the
1709 * aggregate activity level in the IP cores.
1711 static ssize_t amdgpu_get_mem_busy_percent(struct device *dev,
1712 struct device_attribute *attr,
1715 struct drm_device *ddev = dev_get_drvdata(dev);
1716 struct amdgpu_device *adev = ddev->dev_private;
1717 int r, value, size = sizeof(value);
1719 if (adev->in_gpu_reset)
1722 r = pm_runtime_get_sync(ddev->dev);
1726 /* read the IP busy sensor */
1727 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_LOAD,
1728 (void *)&value, &size);
1730 pm_runtime_mark_last_busy(ddev->dev);
1731 pm_runtime_put_autosuspend(ddev->dev);
1736 return snprintf(buf, PAGE_SIZE, "%d\n", value);
1742 * The amdgpu driver provides a sysfs API for estimating how much data
1743 * has been received and sent by the GPU in the last second through PCIe.
1744 * The file pcie_bw is used for this.
1745 * The Perf counters count the number of received and sent messages and return
1746 * those values, as well as the maximum payload size of a PCIe packet (mps).
1747 * Note that it is not possible to easily and quickly obtain the size of each
1748 * packet transmitted, so we output the max payload size (mps) to allow for
1749 * quick estimation of the PCIe bandwidth usage
1751 static ssize_t amdgpu_get_pcie_bw(struct device *dev,
1752 struct device_attribute *attr,
1755 struct drm_device *ddev = dev_get_drvdata(dev);
1756 struct amdgpu_device *adev = ddev->dev_private;
1757 uint64_t count0 = 0, count1 = 0;
1760 if (adev->in_gpu_reset)
1763 if (adev->flags & AMD_IS_APU)
1766 if (!adev->asic_funcs->get_pcie_usage)
1769 ret = pm_runtime_get_sync(ddev->dev);
1773 amdgpu_asic_get_pcie_usage(adev, &count0, &count1);
1775 pm_runtime_mark_last_busy(ddev->dev);
1776 pm_runtime_put_autosuspend(ddev->dev);
1778 return snprintf(buf, PAGE_SIZE, "%llu %llu %i\n",
1779 count0, count1, pcie_get_mps(adev->pdev));
1785 * The amdgpu driver provides a sysfs API for providing a unique ID for the GPU
1786 * The file unique_id is used for this.
1787 * This will provide a Unique ID that will persist from machine to machine
1789 * NOTE: This will only work for GFX9 and newer. This file will be absent
1790 * on unsupported ASICs (GFX8 and older)
1792 static ssize_t amdgpu_get_unique_id(struct device *dev,
1793 struct device_attribute *attr,
1796 struct drm_device *ddev = dev_get_drvdata(dev);
1797 struct amdgpu_device *adev = ddev->dev_private;
1799 if (adev->in_gpu_reset)
1802 if (adev->unique_id)
1803 return snprintf(buf, PAGE_SIZE, "%016llx\n", adev->unique_id);
1808 static struct amdgpu_device_attr amdgpu_device_attrs[] = {
1809 AMDGPU_DEVICE_ATTR_RW(power_dpm_state, ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
1810 AMDGPU_DEVICE_ATTR_RW(power_dpm_force_performance_level, ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
1811 AMDGPU_DEVICE_ATTR_RO(pp_num_states, ATTR_FLAG_BASIC),
1812 AMDGPU_DEVICE_ATTR_RO(pp_cur_state, ATTR_FLAG_BASIC),
1813 AMDGPU_DEVICE_ATTR_RW(pp_force_state, ATTR_FLAG_BASIC),
1814 AMDGPU_DEVICE_ATTR_RW(pp_table, ATTR_FLAG_BASIC),
1815 AMDGPU_DEVICE_ATTR_RW(pp_dpm_sclk, ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
1816 AMDGPU_DEVICE_ATTR_RW(pp_dpm_mclk, ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
1817 AMDGPU_DEVICE_ATTR_RW(pp_dpm_socclk, ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
1818 AMDGPU_DEVICE_ATTR_RW(pp_dpm_fclk, ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
1819 AMDGPU_DEVICE_ATTR_RW(pp_dpm_dcefclk, ATTR_FLAG_BASIC),
1820 AMDGPU_DEVICE_ATTR_RW(pp_dpm_pcie, ATTR_FLAG_BASIC),
1821 AMDGPU_DEVICE_ATTR_RW(pp_sclk_od, ATTR_FLAG_BASIC),
1822 AMDGPU_DEVICE_ATTR_RW(pp_mclk_od, ATTR_FLAG_BASIC),
1823 AMDGPU_DEVICE_ATTR_RW(pp_power_profile_mode, ATTR_FLAG_BASIC),
1824 AMDGPU_DEVICE_ATTR_RW(pp_od_clk_voltage, ATTR_FLAG_BASIC),
1825 AMDGPU_DEVICE_ATTR_RO(gpu_busy_percent, ATTR_FLAG_BASIC),
1826 AMDGPU_DEVICE_ATTR_RO(mem_busy_percent, ATTR_FLAG_BASIC),
1827 AMDGPU_DEVICE_ATTR_RO(pcie_bw, ATTR_FLAG_BASIC),
1828 AMDGPU_DEVICE_ATTR_RW(pp_features, ATTR_FLAG_BASIC),
1829 AMDGPU_DEVICE_ATTR_RO(unique_id, ATTR_FLAG_BASIC),
1832 static int default_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
1833 uint32_t mask, enum amdgpu_device_attr_states *states)
1835 struct device_attribute *dev_attr = &attr->dev_attr;
1836 const char *attr_name = dev_attr->attr.name;
1837 struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
1838 enum amd_asic_type asic_type = adev->asic_type;
1840 if (!(attr->flags & mask)) {
1841 *states = ATTR_STATE_UNSUPPORTED;
1845 #define DEVICE_ATTR_IS(_name) (!strcmp(attr_name, #_name))
1847 if (DEVICE_ATTR_IS(pp_dpm_socclk)) {
1848 if (asic_type < CHIP_VEGA10)
1849 *states = ATTR_STATE_UNSUPPORTED;
1850 } else if (DEVICE_ATTR_IS(pp_dpm_dcefclk)) {
1851 if (asic_type < CHIP_VEGA10 || asic_type == CHIP_ARCTURUS)
1852 *states = ATTR_STATE_UNSUPPORTED;
1853 } else if (DEVICE_ATTR_IS(pp_dpm_fclk)) {
1854 if (asic_type < CHIP_VEGA20)
1855 *states = ATTR_STATE_UNSUPPORTED;
1856 } else if (DEVICE_ATTR_IS(pp_dpm_pcie)) {
1857 if (asic_type == CHIP_ARCTURUS)
1858 *states = ATTR_STATE_UNSUPPORTED;
1859 } else if (DEVICE_ATTR_IS(pp_od_clk_voltage)) {
1860 *states = ATTR_STATE_UNSUPPORTED;
1861 if ((is_support_sw_smu(adev) && adev->smu.od_enabled) ||
1862 (!is_support_sw_smu(adev) && hwmgr->od_enabled))
1863 *states = ATTR_STATE_SUPPORTED;
1864 } else if (DEVICE_ATTR_IS(mem_busy_percent)) {
1865 if (adev->flags & AMD_IS_APU || asic_type == CHIP_VEGA10)
1866 *states = ATTR_STATE_UNSUPPORTED;
1867 } else if (DEVICE_ATTR_IS(pcie_bw)) {
1868 /* PCIe Perf counters won't work on APU nodes */
1869 if (adev->flags & AMD_IS_APU)
1870 *states = ATTR_STATE_UNSUPPORTED;
1871 } else if (DEVICE_ATTR_IS(unique_id)) {
1872 if (!adev->unique_id)
1873 *states = ATTR_STATE_UNSUPPORTED;
1874 } else if (DEVICE_ATTR_IS(pp_features)) {
1875 if (adev->flags & AMD_IS_APU || asic_type < CHIP_VEGA10)
1876 *states = ATTR_STATE_UNSUPPORTED;
1879 if (asic_type == CHIP_ARCTURUS) {
1880 /* Arcturus does not support standalone mclk/socclk/fclk level setting */
1881 if (DEVICE_ATTR_IS(pp_dpm_mclk) ||
1882 DEVICE_ATTR_IS(pp_dpm_socclk) ||
1883 DEVICE_ATTR_IS(pp_dpm_fclk)) {
1884 dev_attr->attr.mode &= ~S_IWUGO;
1885 dev_attr->store = NULL;
1889 #undef DEVICE_ATTR_IS
1895 static int amdgpu_device_attr_create(struct amdgpu_device *adev,
1896 struct amdgpu_device_attr *attr,
1897 uint32_t mask, struct list_head *attr_list)
1900 struct device_attribute *dev_attr = &attr->dev_attr;
1901 const char *name = dev_attr->attr.name;
1902 enum amdgpu_device_attr_states attr_states = ATTR_STATE_SUPPORTED;
1903 struct amdgpu_device_attr_entry *attr_entry;
1905 int (*attr_update)(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
1906 uint32_t mask, enum amdgpu_device_attr_states *states) = default_attr_update;
1910 attr_update = attr->attr_update ? attr_update : default_attr_update;
1912 ret = attr_update(adev, attr, mask, &attr_states);
1914 dev_err(adev->dev, "failed to update device file %s, ret = %d\n",
1919 if (attr_states == ATTR_STATE_UNSUPPORTED)
1922 ret = device_create_file(adev->dev, dev_attr);
1924 dev_err(adev->dev, "failed to create device file %s, ret = %d\n",
1928 attr_entry = kmalloc(sizeof(*attr_entry), GFP_KERNEL);
1932 attr_entry->attr = attr;
1933 INIT_LIST_HEAD(&attr_entry->entry);
1935 list_add_tail(&attr_entry->entry, attr_list);
1940 static void amdgpu_device_attr_remove(struct amdgpu_device *adev, struct amdgpu_device_attr *attr)
1942 struct device_attribute *dev_attr = &attr->dev_attr;
1944 device_remove_file(adev->dev, dev_attr);
1947 static void amdgpu_device_attr_remove_groups(struct amdgpu_device *adev,
1948 struct list_head *attr_list);
1950 static int amdgpu_device_attr_create_groups(struct amdgpu_device *adev,
1951 struct amdgpu_device_attr *attrs,
1954 struct list_head *attr_list)
1959 for (i = 0; i < counts; i++) {
1960 ret = amdgpu_device_attr_create(adev, &attrs[i], mask, attr_list);
1968 amdgpu_device_attr_remove_groups(adev, attr_list);
1973 static void amdgpu_device_attr_remove_groups(struct amdgpu_device *adev,
1974 struct list_head *attr_list)
1976 struct amdgpu_device_attr_entry *entry, *entry_tmp;
1978 if (list_empty(attr_list))
1981 list_for_each_entry_safe(entry, entry_tmp, attr_list, entry) {
1982 amdgpu_device_attr_remove(adev, entry->attr);
1983 list_del(&entry->entry);
1988 static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
1989 struct device_attribute *attr,
1992 struct amdgpu_device *adev = dev_get_drvdata(dev);
1993 int channel = to_sensor_dev_attr(attr)->index;
1994 int r, temp = 0, size = sizeof(temp);
1996 if (adev->in_gpu_reset)
1999 if (channel >= PP_TEMP_MAX)
2002 r = pm_runtime_get_sync(adev->ddev->dev);
2007 case PP_TEMP_JUNCTION:
2008 /* get current junction temperature */
2009 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_HOTSPOT_TEMP,
2010 (void *)&temp, &size);
2013 /* get current edge temperature */
2014 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_EDGE_TEMP,
2015 (void *)&temp, &size);
2018 /* get current memory temperature */
2019 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_TEMP,
2020 (void *)&temp, &size);
2027 pm_runtime_mark_last_busy(adev->ddev->dev);
2028 pm_runtime_put_autosuspend(adev->ddev->dev);
2033 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
2036 static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
2037 struct device_attribute *attr,
2040 struct amdgpu_device *adev = dev_get_drvdata(dev);
2041 int hyst = to_sensor_dev_attr(attr)->index;
2045 temp = adev->pm.dpm.thermal.min_temp;
2047 temp = adev->pm.dpm.thermal.max_temp;
2049 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
2052 static ssize_t amdgpu_hwmon_show_hotspot_temp_thresh(struct device *dev,
2053 struct device_attribute *attr,
2056 struct amdgpu_device *adev = dev_get_drvdata(dev);
2057 int hyst = to_sensor_dev_attr(attr)->index;
2061 temp = adev->pm.dpm.thermal.min_hotspot_temp;
2063 temp = adev->pm.dpm.thermal.max_hotspot_crit_temp;
2065 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
2068 static ssize_t amdgpu_hwmon_show_mem_temp_thresh(struct device *dev,
2069 struct device_attribute *attr,
2072 struct amdgpu_device *adev = dev_get_drvdata(dev);
2073 int hyst = to_sensor_dev_attr(attr)->index;
2077 temp = adev->pm.dpm.thermal.min_mem_temp;
2079 temp = adev->pm.dpm.thermal.max_mem_crit_temp;
2081 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
2084 static ssize_t amdgpu_hwmon_show_temp_label(struct device *dev,
2085 struct device_attribute *attr,
2088 int channel = to_sensor_dev_attr(attr)->index;
2090 if (channel >= PP_TEMP_MAX)
2093 return snprintf(buf, PAGE_SIZE, "%s\n", temp_label[channel].label);
2096 static ssize_t amdgpu_hwmon_show_temp_emergency(struct device *dev,
2097 struct device_attribute *attr,
2100 struct amdgpu_device *adev = dev_get_drvdata(dev);
2101 int channel = to_sensor_dev_attr(attr)->index;
2104 if (channel >= PP_TEMP_MAX)
2108 case PP_TEMP_JUNCTION:
2109 temp = adev->pm.dpm.thermal.max_hotspot_emergency_temp;
2112 temp = adev->pm.dpm.thermal.max_edge_emergency_temp;
2115 temp = adev->pm.dpm.thermal.max_mem_emergency_temp;
2119 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
2122 static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
2123 struct device_attribute *attr,
2126 struct amdgpu_device *adev = dev_get_drvdata(dev);
2130 if (adev->in_gpu_reset)
2133 ret = pm_runtime_get_sync(adev->ddev->dev);
2137 if (is_support_sw_smu(adev)) {
2138 pwm_mode = smu_get_fan_control_mode(&adev->smu);
2140 if (!adev->powerplay.pp_funcs->get_fan_control_mode) {
2141 pm_runtime_mark_last_busy(adev->ddev->dev);
2142 pm_runtime_put_autosuspend(adev->ddev->dev);
2146 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
2149 pm_runtime_mark_last_busy(adev->ddev->dev);
2150 pm_runtime_put_autosuspend(adev->ddev->dev);
2152 return sprintf(buf, "%i\n", pwm_mode);
2155 static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
2156 struct device_attribute *attr,
2160 struct amdgpu_device *adev = dev_get_drvdata(dev);
2164 if (adev->in_gpu_reset)
2167 err = kstrtoint(buf, 10, &value);
2171 ret = pm_runtime_get_sync(adev->ddev->dev);
2175 if (is_support_sw_smu(adev)) {
2176 smu_set_fan_control_mode(&adev->smu, value);
2178 if (!adev->powerplay.pp_funcs->set_fan_control_mode) {
2179 pm_runtime_mark_last_busy(adev->ddev->dev);
2180 pm_runtime_put_autosuspend(adev->ddev->dev);
2184 amdgpu_dpm_set_fan_control_mode(adev, value);
2187 pm_runtime_mark_last_busy(adev->ddev->dev);
2188 pm_runtime_put_autosuspend(adev->ddev->dev);
2193 static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
2194 struct device_attribute *attr,
2197 return sprintf(buf, "%i\n", 0);
2200 static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
2201 struct device_attribute *attr,
2204 return sprintf(buf, "%i\n", 255);
2207 static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
2208 struct device_attribute *attr,
2209 const char *buf, size_t count)
2211 struct amdgpu_device *adev = dev_get_drvdata(dev);
2216 if (adev->in_gpu_reset)
2219 err = pm_runtime_get_sync(adev->ddev->dev);
2223 if (is_support_sw_smu(adev))
2224 pwm_mode = smu_get_fan_control_mode(&adev->smu);
2226 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
2228 if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
2229 pr_info("manual fan speed control should be enabled first\n");
2230 pm_runtime_mark_last_busy(adev->ddev->dev);
2231 pm_runtime_put_autosuspend(adev->ddev->dev);
2235 err = kstrtou32(buf, 10, &value);
2237 pm_runtime_mark_last_busy(adev->ddev->dev);
2238 pm_runtime_put_autosuspend(adev->ddev->dev);
2242 value = (value * 100) / 255;
2244 if (is_support_sw_smu(adev))
2245 err = smu_set_fan_speed_percent(&adev->smu, value);
2246 else if (adev->powerplay.pp_funcs->set_fan_speed_percent)
2247 err = amdgpu_dpm_set_fan_speed_percent(adev, value);
2251 pm_runtime_mark_last_busy(adev->ddev->dev);
2252 pm_runtime_put_autosuspend(adev->ddev->dev);
2260 static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
2261 struct device_attribute *attr,
2264 struct amdgpu_device *adev = dev_get_drvdata(dev);
2268 if (adev->in_gpu_reset)
2271 err = pm_runtime_get_sync(adev->ddev->dev);
2275 if (is_support_sw_smu(adev))
2276 err = smu_get_fan_speed_percent(&adev->smu, &speed);
2277 else if (adev->powerplay.pp_funcs->get_fan_speed_percent)
2278 err = amdgpu_dpm_get_fan_speed_percent(adev, &speed);
2282 pm_runtime_mark_last_busy(adev->ddev->dev);
2283 pm_runtime_put_autosuspend(adev->ddev->dev);
2288 speed = (speed * 255) / 100;
2290 return sprintf(buf, "%i\n", speed);
2293 static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
2294 struct device_attribute *attr,
2297 struct amdgpu_device *adev = dev_get_drvdata(dev);
2301 if (adev->in_gpu_reset)
2304 err = pm_runtime_get_sync(adev->ddev->dev);
2308 if (is_support_sw_smu(adev))
2309 err = smu_get_fan_speed_rpm(&adev->smu, &speed);
2310 else if (adev->powerplay.pp_funcs->get_fan_speed_rpm)
2311 err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
2315 pm_runtime_mark_last_busy(adev->ddev->dev);
2316 pm_runtime_put_autosuspend(adev->ddev->dev);
2321 return sprintf(buf, "%i\n", speed);
2324 static ssize_t amdgpu_hwmon_get_fan1_min(struct device *dev,
2325 struct device_attribute *attr,
2328 struct amdgpu_device *adev = dev_get_drvdata(dev);
2330 u32 size = sizeof(min_rpm);
2333 if (adev->in_gpu_reset)
2336 r = pm_runtime_get_sync(adev->ddev->dev);
2340 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MIN_FAN_RPM,
2341 (void *)&min_rpm, &size);
2343 pm_runtime_mark_last_busy(adev->ddev->dev);
2344 pm_runtime_put_autosuspend(adev->ddev->dev);
2349 return snprintf(buf, PAGE_SIZE, "%d\n", min_rpm);
2352 static ssize_t amdgpu_hwmon_get_fan1_max(struct device *dev,
2353 struct device_attribute *attr,
2356 struct amdgpu_device *adev = dev_get_drvdata(dev);
2358 u32 size = sizeof(max_rpm);
2361 if (adev->in_gpu_reset)
2364 r = pm_runtime_get_sync(adev->ddev->dev);
2368 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MAX_FAN_RPM,
2369 (void *)&max_rpm, &size);
2371 pm_runtime_mark_last_busy(adev->ddev->dev);
2372 pm_runtime_put_autosuspend(adev->ddev->dev);
2377 return snprintf(buf, PAGE_SIZE, "%d\n", max_rpm);
2380 static ssize_t amdgpu_hwmon_get_fan1_target(struct device *dev,
2381 struct device_attribute *attr,
2384 struct amdgpu_device *adev = dev_get_drvdata(dev);
2388 if (adev->in_gpu_reset)
2391 err = pm_runtime_get_sync(adev->ddev->dev);
2395 if (is_support_sw_smu(adev))
2396 err = smu_get_fan_speed_rpm(&adev->smu, &rpm);
2397 else if (adev->powerplay.pp_funcs->get_fan_speed_rpm)
2398 err = amdgpu_dpm_get_fan_speed_rpm(adev, &rpm);
2402 pm_runtime_mark_last_busy(adev->ddev->dev);
2403 pm_runtime_put_autosuspend(adev->ddev->dev);
2408 return sprintf(buf, "%i\n", rpm);
2411 static ssize_t amdgpu_hwmon_set_fan1_target(struct device *dev,
2412 struct device_attribute *attr,
2413 const char *buf, size_t count)
2415 struct amdgpu_device *adev = dev_get_drvdata(dev);
2420 if (adev->in_gpu_reset)
2423 err = pm_runtime_get_sync(adev->ddev->dev);
2427 if (is_support_sw_smu(adev))
2428 pwm_mode = smu_get_fan_control_mode(&adev->smu);
2430 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
2432 if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
2433 pm_runtime_mark_last_busy(adev->ddev->dev);
2434 pm_runtime_put_autosuspend(adev->ddev->dev);
2438 err = kstrtou32(buf, 10, &value);
2440 pm_runtime_mark_last_busy(adev->ddev->dev);
2441 pm_runtime_put_autosuspend(adev->ddev->dev);
2445 if (is_support_sw_smu(adev))
2446 err = smu_set_fan_speed_rpm(&adev->smu, value);
2447 else if (adev->powerplay.pp_funcs->set_fan_speed_rpm)
2448 err = amdgpu_dpm_set_fan_speed_rpm(adev, value);
2452 pm_runtime_mark_last_busy(adev->ddev->dev);
2453 pm_runtime_put_autosuspend(adev->ddev->dev);
2461 static ssize_t amdgpu_hwmon_get_fan1_enable(struct device *dev,
2462 struct device_attribute *attr,
2465 struct amdgpu_device *adev = dev_get_drvdata(dev);
2469 if (adev->in_gpu_reset)
2472 ret = pm_runtime_get_sync(adev->ddev->dev);
2476 if (is_support_sw_smu(adev)) {
2477 pwm_mode = smu_get_fan_control_mode(&adev->smu);
2479 if (!adev->powerplay.pp_funcs->get_fan_control_mode) {
2480 pm_runtime_mark_last_busy(adev->ddev->dev);
2481 pm_runtime_put_autosuspend(adev->ddev->dev);
2485 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
2488 pm_runtime_mark_last_busy(adev->ddev->dev);
2489 pm_runtime_put_autosuspend(adev->ddev->dev);
2491 return sprintf(buf, "%i\n", pwm_mode == AMD_FAN_CTRL_AUTO ? 0 : 1);
2494 static ssize_t amdgpu_hwmon_set_fan1_enable(struct device *dev,
2495 struct device_attribute *attr,
2499 struct amdgpu_device *adev = dev_get_drvdata(dev);
2504 if (adev->in_gpu_reset)
2507 err = kstrtoint(buf, 10, &value);
2512 pwm_mode = AMD_FAN_CTRL_AUTO;
2513 else if (value == 1)
2514 pwm_mode = AMD_FAN_CTRL_MANUAL;
2518 err = pm_runtime_get_sync(adev->ddev->dev);
2522 if (is_support_sw_smu(adev)) {
2523 smu_set_fan_control_mode(&adev->smu, pwm_mode);
2525 if (!adev->powerplay.pp_funcs->set_fan_control_mode) {
2526 pm_runtime_mark_last_busy(adev->ddev->dev);
2527 pm_runtime_put_autosuspend(adev->ddev->dev);
2530 amdgpu_dpm_set_fan_control_mode(adev, pwm_mode);
2533 pm_runtime_mark_last_busy(adev->ddev->dev);
2534 pm_runtime_put_autosuspend(adev->ddev->dev);
2539 static ssize_t amdgpu_hwmon_show_vddgfx(struct device *dev,
2540 struct device_attribute *attr,
2543 struct amdgpu_device *adev = dev_get_drvdata(dev);
2545 int r, size = sizeof(vddgfx);
2547 if (adev->in_gpu_reset)
2550 r = pm_runtime_get_sync(adev->ddev->dev);
2554 /* get the voltage */
2555 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX,
2556 (void *)&vddgfx, &size);
2558 pm_runtime_mark_last_busy(adev->ddev->dev);
2559 pm_runtime_put_autosuspend(adev->ddev->dev);
2564 return snprintf(buf, PAGE_SIZE, "%d\n", vddgfx);
2567 static ssize_t amdgpu_hwmon_show_vddgfx_label(struct device *dev,
2568 struct device_attribute *attr,
2571 return snprintf(buf, PAGE_SIZE, "vddgfx\n");
2574 static ssize_t amdgpu_hwmon_show_vddnb(struct device *dev,
2575 struct device_attribute *attr,
2578 struct amdgpu_device *adev = dev_get_drvdata(dev);
2580 int r, size = sizeof(vddnb);
2582 if (adev->in_gpu_reset)
2585 /* only APUs have vddnb */
2586 if (!(adev->flags & AMD_IS_APU))
2589 r = pm_runtime_get_sync(adev->ddev->dev);
2593 /* get the voltage */
2594 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB,
2595 (void *)&vddnb, &size);
2597 pm_runtime_mark_last_busy(adev->ddev->dev);
2598 pm_runtime_put_autosuspend(adev->ddev->dev);
2603 return snprintf(buf, PAGE_SIZE, "%d\n", vddnb);
2606 static ssize_t amdgpu_hwmon_show_vddnb_label(struct device *dev,
2607 struct device_attribute *attr,
2610 return snprintf(buf, PAGE_SIZE, "vddnb\n");
2613 static ssize_t amdgpu_hwmon_show_power_avg(struct device *dev,
2614 struct device_attribute *attr,
2617 struct amdgpu_device *adev = dev_get_drvdata(dev);
2619 int r, size = sizeof(u32);
2622 if (adev->in_gpu_reset)
2625 r = pm_runtime_get_sync(adev->ddev->dev);
2629 /* get the voltage */
2630 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER,
2631 (void *)&query, &size);
2633 pm_runtime_mark_last_busy(adev->ddev->dev);
2634 pm_runtime_put_autosuspend(adev->ddev->dev);
2639 /* convert to microwatts */
2640 uw = (query >> 8) * 1000000 + (query & 0xff) * 1000;
2642 return snprintf(buf, PAGE_SIZE, "%u\n", uw);
2645 static ssize_t amdgpu_hwmon_show_power_cap_min(struct device *dev,
2646 struct device_attribute *attr,
2649 return sprintf(buf, "%i\n", 0);
2652 static ssize_t amdgpu_hwmon_show_power_cap_max(struct device *dev,
2653 struct device_attribute *attr,
2656 struct amdgpu_device *adev = dev_get_drvdata(dev);
2661 if (adev->in_gpu_reset)
2664 r = pm_runtime_get_sync(adev->ddev->dev);
2668 if (is_support_sw_smu(adev)) {
2669 smu_get_power_limit(&adev->smu, &limit, true, true);
2670 size = snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2671 } else if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->get_power_limit) {
2672 adev->powerplay.pp_funcs->get_power_limit(adev->powerplay.pp_handle, &limit, true);
2673 size = snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2675 size = snprintf(buf, PAGE_SIZE, "\n");
2678 pm_runtime_mark_last_busy(adev->ddev->dev);
2679 pm_runtime_put_autosuspend(adev->ddev->dev);
2684 static ssize_t amdgpu_hwmon_show_power_cap(struct device *dev,
2685 struct device_attribute *attr,
2688 struct amdgpu_device *adev = dev_get_drvdata(dev);
2693 if (adev->in_gpu_reset)
2696 r = pm_runtime_get_sync(adev->ddev->dev);
2700 if (is_support_sw_smu(adev)) {
2701 smu_get_power_limit(&adev->smu, &limit, false, true);
2702 size = snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2703 } else if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->get_power_limit) {
2704 adev->powerplay.pp_funcs->get_power_limit(adev->powerplay.pp_handle, &limit, false);
2705 size = snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
2707 size = snprintf(buf, PAGE_SIZE, "\n");
2710 pm_runtime_mark_last_busy(adev->ddev->dev);
2711 pm_runtime_put_autosuspend(adev->ddev->dev);
2717 static ssize_t amdgpu_hwmon_set_power_cap(struct device *dev,
2718 struct device_attribute *attr,
2722 struct amdgpu_device *adev = dev_get_drvdata(dev);
2726 if (adev->in_gpu_reset)
2729 if (amdgpu_sriov_vf(adev))
2732 err = kstrtou32(buf, 10, &value);
2736 value = value / 1000000; /* convert to Watt */
2739 err = pm_runtime_get_sync(adev->ddev->dev);
2743 if (is_support_sw_smu(adev))
2744 err = smu_set_power_limit(&adev->smu, value);
2745 else if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->set_power_limit)
2746 err = adev->powerplay.pp_funcs->set_power_limit(adev->powerplay.pp_handle, value);
2750 pm_runtime_mark_last_busy(adev->ddev->dev);
2751 pm_runtime_put_autosuspend(adev->ddev->dev);
2759 static ssize_t amdgpu_hwmon_show_sclk(struct device *dev,
2760 struct device_attribute *attr,
2763 struct amdgpu_device *adev = dev_get_drvdata(dev);
2765 int r, size = sizeof(sclk);
2767 if (adev->in_gpu_reset)
2770 r = pm_runtime_get_sync(adev->ddev->dev);
2775 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK,
2776 (void *)&sclk, &size);
2778 pm_runtime_mark_last_busy(adev->ddev->dev);
2779 pm_runtime_put_autosuspend(adev->ddev->dev);
2784 return snprintf(buf, PAGE_SIZE, "%u\n", sclk * 10 * 1000);
2787 static ssize_t amdgpu_hwmon_show_sclk_label(struct device *dev,
2788 struct device_attribute *attr,
2791 return snprintf(buf, PAGE_SIZE, "sclk\n");
2794 static ssize_t amdgpu_hwmon_show_mclk(struct device *dev,
2795 struct device_attribute *attr,
2798 struct amdgpu_device *adev = dev_get_drvdata(dev);
2800 int r, size = sizeof(mclk);
2802 if (adev->in_gpu_reset)
2805 r = pm_runtime_get_sync(adev->ddev->dev);
2810 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK,
2811 (void *)&mclk, &size);
2813 pm_runtime_mark_last_busy(adev->ddev->dev);
2814 pm_runtime_put_autosuspend(adev->ddev->dev);
2819 return snprintf(buf, PAGE_SIZE, "%u\n", mclk * 10 * 1000);
2822 static ssize_t amdgpu_hwmon_show_mclk_label(struct device *dev,
2823 struct device_attribute *attr,
2826 return snprintf(buf, PAGE_SIZE, "mclk\n");
2832 * The amdgpu driver exposes the following sensor interfaces:
2834 * - GPU temperature (via the on-die sensor)
2838 * - Northbridge voltage (APUs only)
2844 * - GPU gfx/compute engine clock
2846 * - GPU memory clock (dGPU only)
2848 * hwmon interfaces for GPU temperature:
2850 * - temp[1-3]_input: the on die GPU temperature in millidegrees Celsius
2851 * - temp2_input and temp3_input are supported on SOC15 dGPUs only
2853 * - temp[1-3]_label: temperature channel label
2854 * - temp2_label and temp3_label are supported on SOC15 dGPUs only
2856 * - temp[1-3]_crit: temperature critical max value in millidegrees Celsius
2857 * - temp2_crit and temp3_crit are supported on SOC15 dGPUs only
2859 * - temp[1-3]_crit_hyst: temperature hysteresis for critical limit in millidegrees Celsius
2860 * - temp2_crit_hyst and temp3_crit_hyst are supported on SOC15 dGPUs only
2862 * - temp[1-3]_emergency: temperature emergency max value(asic shutdown) in millidegrees Celsius
2863 * - these are supported on SOC15 dGPUs only
2865 * hwmon interfaces for GPU voltage:
2867 * - in0_input: the voltage on the GPU in millivolts
2869 * - in1_input: the voltage on the Northbridge in millivolts
2871 * hwmon interfaces for GPU power:
2873 * - power1_average: average power used by the GPU in microWatts
2875 * - power1_cap_min: minimum cap supported in microWatts
2877 * - power1_cap_max: maximum cap supported in microWatts
2879 * - power1_cap: selected power cap in microWatts
2881 * hwmon interfaces for GPU fan:
2883 * - pwm1: pulse width modulation fan level (0-255)
2885 * - 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)
2887 * - pwm1_min: pulse width modulation fan control minimum level (0)
2889 * - pwm1_max: pulse width modulation fan control maximum level (255)
2891 * - fan1_min: an minimum value Unit: revolution/min (RPM)
2893 * - fan1_max: an maxmum value Unit: revolution/max (RPM)
2895 * - fan1_input: fan speed in RPM
2897 * - fan[1-\*]_target: Desired fan speed Unit: revolution/min (RPM)
2899 * - fan[1-\*]_enable: Enable or disable the sensors.1: Enable 0: Disable
2901 * hwmon interfaces for GPU clocks:
2903 * - freq1_input: the gfx/compute clock in hertz
2905 * - freq2_input: the memory clock in hertz
2907 * You can use hwmon tools like sensors to view this information on your system.
2911 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_EDGE);
2912 static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
2913 static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
2914 static SENSOR_DEVICE_ATTR(temp1_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_EDGE);
2915 static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_JUNCTION);
2916 static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 0);
2917 static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 1);
2918 static SENSOR_DEVICE_ATTR(temp2_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_JUNCTION);
2919 static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_MEM);
2920 static SENSOR_DEVICE_ATTR(temp3_crit, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 0);
2921 static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 1);
2922 static SENSOR_DEVICE_ATTR(temp3_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_MEM);
2923 static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_EDGE);
2924 static SENSOR_DEVICE_ATTR(temp2_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_JUNCTION);
2925 static SENSOR_DEVICE_ATTR(temp3_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_MEM);
2926 static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
2927 static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
2928 static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
2929 static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
2930 static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
2931 static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO, amdgpu_hwmon_get_fan1_min, NULL, 0);
2932 static SENSOR_DEVICE_ATTR(fan1_max, S_IRUGO, amdgpu_hwmon_get_fan1_max, NULL, 0);
2933 static SENSOR_DEVICE_ATTR(fan1_target, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_target, amdgpu_hwmon_set_fan1_target, 0);
2934 static SENSOR_DEVICE_ATTR(fan1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_enable, amdgpu_hwmon_set_fan1_enable, 0);
2935 static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, amdgpu_hwmon_show_vddgfx, NULL, 0);
2936 static SENSOR_DEVICE_ATTR(in0_label, S_IRUGO, amdgpu_hwmon_show_vddgfx_label, NULL, 0);
2937 static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, amdgpu_hwmon_show_vddnb, NULL, 0);
2938 static SENSOR_DEVICE_ATTR(in1_label, S_IRUGO, amdgpu_hwmon_show_vddnb_label, NULL, 0);
2939 static SENSOR_DEVICE_ATTR(power1_average, S_IRUGO, amdgpu_hwmon_show_power_avg, NULL, 0);
2940 static SENSOR_DEVICE_ATTR(power1_cap_max, S_IRUGO, amdgpu_hwmon_show_power_cap_max, NULL, 0);
2941 static SENSOR_DEVICE_ATTR(power1_cap_min, S_IRUGO, amdgpu_hwmon_show_power_cap_min, NULL, 0);
2942 static SENSOR_DEVICE_ATTR(power1_cap, S_IRUGO | S_IWUSR, amdgpu_hwmon_show_power_cap, amdgpu_hwmon_set_power_cap, 0);
2943 static SENSOR_DEVICE_ATTR(freq1_input, S_IRUGO, amdgpu_hwmon_show_sclk, NULL, 0);
2944 static SENSOR_DEVICE_ATTR(freq1_label, S_IRUGO, amdgpu_hwmon_show_sclk_label, NULL, 0);
2945 static SENSOR_DEVICE_ATTR(freq2_input, S_IRUGO, amdgpu_hwmon_show_mclk, NULL, 0);
2946 static SENSOR_DEVICE_ATTR(freq2_label, S_IRUGO, amdgpu_hwmon_show_mclk_label, NULL, 0);
2948 static struct attribute *hwmon_attributes[] = {
2949 &sensor_dev_attr_temp1_input.dev_attr.attr,
2950 &sensor_dev_attr_temp1_crit.dev_attr.attr,
2951 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
2952 &sensor_dev_attr_temp2_input.dev_attr.attr,
2953 &sensor_dev_attr_temp2_crit.dev_attr.attr,
2954 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
2955 &sensor_dev_attr_temp3_input.dev_attr.attr,
2956 &sensor_dev_attr_temp3_crit.dev_attr.attr,
2957 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
2958 &sensor_dev_attr_temp1_emergency.dev_attr.attr,
2959 &sensor_dev_attr_temp2_emergency.dev_attr.attr,
2960 &sensor_dev_attr_temp3_emergency.dev_attr.attr,
2961 &sensor_dev_attr_temp1_label.dev_attr.attr,
2962 &sensor_dev_attr_temp2_label.dev_attr.attr,
2963 &sensor_dev_attr_temp3_label.dev_attr.attr,
2964 &sensor_dev_attr_pwm1.dev_attr.attr,
2965 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2966 &sensor_dev_attr_pwm1_min.dev_attr.attr,
2967 &sensor_dev_attr_pwm1_max.dev_attr.attr,
2968 &sensor_dev_attr_fan1_input.dev_attr.attr,
2969 &sensor_dev_attr_fan1_min.dev_attr.attr,
2970 &sensor_dev_attr_fan1_max.dev_attr.attr,
2971 &sensor_dev_attr_fan1_target.dev_attr.attr,
2972 &sensor_dev_attr_fan1_enable.dev_attr.attr,
2973 &sensor_dev_attr_in0_input.dev_attr.attr,
2974 &sensor_dev_attr_in0_label.dev_attr.attr,
2975 &sensor_dev_attr_in1_input.dev_attr.attr,
2976 &sensor_dev_attr_in1_label.dev_attr.attr,
2977 &sensor_dev_attr_power1_average.dev_attr.attr,
2978 &sensor_dev_attr_power1_cap_max.dev_attr.attr,
2979 &sensor_dev_attr_power1_cap_min.dev_attr.attr,
2980 &sensor_dev_attr_power1_cap.dev_attr.attr,
2981 &sensor_dev_attr_freq1_input.dev_attr.attr,
2982 &sensor_dev_attr_freq1_label.dev_attr.attr,
2983 &sensor_dev_attr_freq2_input.dev_attr.attr,
2984 &sensor_dev_attr_freq2_label.dev_attr.attr,
2988 static umode_t hwmon_attributes_visible(struct kobject *kobj,
2989 struct attribute *attr, int index)
2991 struct device *dev = kobj_to_dev(kobj);
2992 struct amdgpu_device *adev = dev_get_drvdata(dev);
2993 umode_t effective_mode = attr->mode;
2995 /* under multi-vf mode, the hwmon attributes are all not supported */
2996 if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))
2999 /* there is no fan under pp one vf mode */
3000 if (amdgpu_sriov_is_pp_one_vf(adev) &&
3001 (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3002 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3003 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3004 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3005 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3006 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3007 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3008 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3009 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3012 /* Skip fan attributes if fan is not present */
3013 if (adev->pm.no_fan && (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3014 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3015 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3016 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3017 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3018 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3019 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3020 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3021 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3024 /* Skip fan attributes on APU */
3025 if ((adev->flags & AMD_IS_APU) &&
3026 (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3027 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3028 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3029 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3030 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3031 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3032 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3033 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3034 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3037 /* Skip limit attributes if DPM is not enabled */
3038 if (!adev->pm.dpm_enabled &&
3039 (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
3040 attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
3041 attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3042 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3043 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3044 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3045 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3046 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3047 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3048 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3049 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3052 if (!is_support_sw_smu(adev)) {
3053 /* mask fan attributes if we have no bindings for this asic to expose */
3054 if ((!adev->powerplay.pp_funcs->get_fan_speed_percent &&
3055 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
3056 (!adev->powerplay.pp_funcs->get_fan_control_mode &&
3057 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
3058 effective_mode &= ~S_IRUGO;
3060 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
3061 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
3062 (!adev->powerplay.pp_funcs->set_fan_control_mode &&
3063 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
3064 effective_mode &= ~S_IWUSR;
3067 if (((adev->flags & AMD_IS_APU) ||
3068 adev->family == AMDGPU_FAMILY_SI || /* not implemented yet */
3069 adev->family == AMDGPU_FAMILY_KV) && /* not implemented yet */
3070 (attr == &sensor_dev_attr_power1_average.dev_attr.attr ||
3071 attr == &sensor_dev_attr_power1_cap_max.dev_attr.attr ||
3072 attr == &sensor_dev_attr_power1_cap_min.dev_attr.attr||
3073 attr == &sensor_dev_attr_power1_cap.dev_attr.attr))
3076 if (!is_support_sw_smu(adev)) {
3077 /* hide max/min values if we can't both query and manage the fan */
3078 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
3079 !adev->powerplay.pp_funcs->get_fan_speed_percent) &&
3080 (!adev->powerplay.pp_funcs->set_fan_speed_rpm &&
3081 !adev->powerplay.pp_funcs->get_fan_speed_rpm) &&
3082 (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3083 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
3086 if ((!adev->powerplay.pp_funcs->set_fan_speed_rpm &&
3087 !adev->powerplay.pp_funcs->get_fan_speed_rpm) &&
3088 (attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3089 attr == &sensor_dev_attr_fan1_min.dev_attr.attr))
3093 if ((adev->family == AMDGPU_FAMILY_SI || /* not implemented yet */
3094 adev->family == AMDGPU_FAMILY_KV) && /* not implemented yet */
3095 (attr == &sensor_dev_attr_in0_input.dev_attr.attr ||
3096 attr == &sensor_dev_attr_in0_label.dev_attr.attr))
3099 /* only APUs have vddnb */
3100 if (!(adev->flags & AMD_IS_APU) &&
3101 (attr == &sensor_dev_attr_in1_input.dev_attr.attr ||
3102 attr == &sensor_dev_attr_in1_label.dev_attr.attr))
3105 /* no mclk on APUs */
3106 if ((adev->flags & AMD_IS_APU) &&
3107 (attr == &sensor_dev_attr_freq2_input.dev_attr.attr ||
3108 attr == &sensor_dev_attr_freq2_label.dev_attr.attr))
3111 /* only SOC15 dGPUs support hotspot and mem temperatures */
3112 if (((adev->flags & AMD_IS_APU) ||
3113 adev->asic_type < CHIP_VEGA10) &&
3114 (attr == &sensor_dev_attr_temp2_crit.dev_attr.attr ||
3115 attr == &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr ||
3116 attr == &sensor_dev_attr_temp3_crit.dev_attr.attr ||
3117 attr == &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr ||
3118 attr == &sensor_dev_attr_temp1_emergency.dev_attr.attr ||
3119 attr == &sensor_dev_attr_temp2_emergency.dev_attr.attr ||
3120 attr == &sensor_dev_attr_temp3_emergency.dev_attr.attr ||
3121 attr == &sensor_dev_attr_temp2_input.dev_attr.attr ||
3122 attr == &sensor_dev_attr_temp3_input.dev_attr.attr ||
3123 attr == &sensor_dev_attr_temp2_label.dev_attr.attr ||
3124 attr == &sensor_dev_attr_temp3_label.dev_attr.attr))
3127 return effective_mode;
3130 static const struct attribute_group hwmon_attrgroup = {
3131 .attrs = hwmon_attributes,
3132 .is_visible = hwmon_attributes_visible,
3135 static const struct attribute_group *hwmon_groups[] = {
3140 void amdgpu_dpm_thermal_work_handler(struct work_struct *work)
3142 struct amdgpu_device *adev =
3143 container_of(work, struct amdgpu_device,
3144 pm.dpm.thermal.work);
3145 /* switch to the thermal state */
3146 enum amd_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
3147 int temp, size = sizeof(temp);
3149 if (!adev->pm.dpm_enabled)
3152 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP,
3153 (void *)&temp, &size)) {
3154 if (temp < adev->pm.dpm.thermal.min_temp)
3155 /* switch back the user state */
3156 dpm_state = adev->pm.dpm.user_state;
3158 if (adev->pm.dpm.thermal.high_to_low)
3159 /* switch back the user state */
3160 dpm_state = adev->pm.dpm.user_state;
3162 mutex_lock(&adev->pm.mutex);
3163 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
3164 adev->pm.dpm.thermal_active = true;
3166 adev->pm.dpm.thermal_active = false;
3167 adev->pm.dpm.state = dpm_state;
3168 mutex_unlock(&adev->pm.mutex);
3170 amdgpu_pm_compute_clocks(adev);
3173 static struct amdgpu_ps *amdgpu_dpm_pick_power_state(struct amdgpu_device *adev,
3174 enum amd_pm_state_type dpm_state)
3177 struct amdgpu_ps *ps;
3179 bool single_display = (adev->pm.dpm.new_active_crtc_count < 2) ?
3182 /* check if the vblank period is too short to adjust the mclk */
3183 if (single_display && adev->powerplay.pp_funcs->vblank_too_short) {
3184 if (amdgpu_dpm_vblank_too_short(adev))
3185 single_display = false;
3188 /* certain older asics have a separare 3D performance state,
3189 * so try that first if the user selected performance
3191 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
3192 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
3193 /* balanced states don't exist at the moment */
3194 if (dpm_state == POWER_STATE_TYPE_BALANCED)
3195 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
3198 /* Pick the best power state based on current conditions */
3199 for (i = 0; i < adev->pm.dpm.num_ps; i++) {
3200 ps = &adev->pm.dpm.ps[i];
3201 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
3202 switch (dpm_state) {
3204 case POWER_STATE_TYPE_BATTERY:
3205 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
3206 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
3213 case POWER_STATE_TYPE_BALANCED:
3214 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
3215 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
3222 case POWER_STATE_TYPE_PERFORMANCE:
3223 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
3224 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
3231 /* internal states */
3232 case POWER_STATE_TYPE_INTERNAL_UVD:
3233 if (adev->pm.dpm.uvd_ps)
3234 return adev->pm.dpm.uvd_ps;
3237 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
3238 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
3241 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
3242 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
3245 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
3246 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
3249 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
3250 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
3253 case POWER_STATE_TYPE_INTERNAL_BOOT:
3254 return adev->pm.dpm.boot_ps;
3255 case POWER_STATE_TYPE_INTERNAL_THERMAL:
3256 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
3259 case POWER_STATE_TYPE_INTERNAL_ACPI:
3260 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
3263 case POWER_STATE_TYPE_INTERNAL_ULV:
3264 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
3267 case POWER_STATE_TYPE_INTERNAL_3DPERF:
3268 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
3275 /* use a fallback state if we didn't match */
3276 switch (dpm_state) {
3277 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
3278 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
3279 goto restart_search;
3280 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
3281 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
3282 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
3283 if (adev->pm.dpm.uvd_ps) {
3284 return adev->pm.dpm.uvd_ps;
3286 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
3287 goto restart_search;
3289 case POWER_STATE_TYPE_INTERNAL_THERMAL:
3290 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
3291 goto restart_search;
3292 case POWER_STATE_TYPE_INTERNAL_ACPI:
3293 dpm_state = POWER_STATE_TYPE_BATTERY;
3294 goto restart_search;
3295 case POWER_STATE_TYPE_BATTERY:
3296 case POWER_STATE_TYPE_BALANCED:
3297 case POWER_STATE_TYPE_INTERNAL_3DPERF:
3298 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
3299 goto restart_search;
3307 static void amdgpu_dpm_change_power_state_locked(struct amdgpu_device *adev)
3309 struct amdgpu_ps *ps;
3310 enum amd_pm_state_type dpm_state;
3314 /* if dpm init failed */
3315 if (!adev->pm.dpm_enabled)
3318 if (adev->pm.dpm.user_state != adev->pm.dpm.state) {
3319 /* add other state override checks here */
3320 if ((!adev->pm.dpm.thermal_active) &&
3321 (!adev->pm.dpm.uvd_active))
3322 adev->pm.dpm.state = adev->pm.dpm.user_state;
3324 dpm_state = adev->pm.dpm.state;
3326 ps = amdgpu_dpm_pick_power_state(adev, dpm_state);
3328 adev->pm.dpm.requested_ps = ps;
3332 if (amdgpu_dpm == 1 && adev->powerplay.pp_funcs->print_power_state) {
3333 printk("switching from power state:\n");
3334 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.current_ps);
3335 printk("switching to power state:\n");
3336 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.requested_ps);
3339 /* update whether vce is active */
3340 ps->vce_active = adev->pm.dpm.vce_active;
3341 if (adev->powerplay.pp_funcs->display_configuration_changed)
3342 amdgpu_dpm_display_configuration_changed(adev);
3344 ret = amdgpu_dpm_pre_set_power_state(adev);
3348 if (adev->powerplay.pp_funcs->check_state_equal) {
3349 if (0 != amdgpu_dpm_check_state_equal(adev, adev->pm.dpm.current_ps, adev->pm.dpm.requested_ps, &equal))
3356 amdgpu_dpm_set_power_state(adev);
3357 amdgpu_dpm_post_set_power_state(adev);
3359 adev->pm.dpm.current_active_crtcs = adev->pm.dpm.new_active_crtcs;
3360 adev->pm.dpm.current_active_crtc_count = adev->pm.dpm.new_active_crtc_count;
3362 if (adev->powerplay.pp_funcs->force_performance_level) {
3363 if (adev->pm.dpm.thermal_active) {
3364 enum amd_dpm_forced_level level = adev->pm.dpm.forced_level;
3365 /* force low perf level for thermal */
3366 amdgpu_dpm_force_performance_level(adev, AMD_DPM_FORCED_LEVEL_LOW);
3367 /* save the user's level */
3368 adev->pm.dpm.forced_level = level;
3370 /* otherwise, user selected level */
3371 amdgpu_dpm_force_performance_level(adev, adev->pm.dpm.forced_level);
3376 void amdgpu_dpm_enable_uvd(struct amdgpu_device *adev, bool enable)
3380 ret = amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_UVD, !enable);
3382 DRM_ERROR("Dpm %s uvd failed, ret = %d. \n",
3383 enable ? "enable" : "disable", ret);
3385 /* enable/disable Low Memory PState for UVD (4k videos) */
3386 if (adev->asic_type == CHIP_STONEY &&
3387 adev->uvd.decode_image_width >= WIDTH_4K) {
3388 struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
3390 if (hwmgr && hwmgr->hwmgr_func &&
3391 hwmgr->hwmgr_func->update_nbdpm_pstate)
3392 hwmgr->hwmgr_func->update_nbdpm_pstate(hwmgr,
3398 void amdgpu_dpm_enable_vce(struct amdgpu_device *adev, bool enable)
3402 ret = amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_VCE, !enable);
3404 DRM_ERROR("Dpm %s vce failed, ret = %d. \n",
3405 enable ? "enable" : "disable", ret);
3408 void amdgpu_pm_print_power_states(struct amdgpu_device *adev)
3412 if (adev->powerplay.pp_funcs->print_power_state == NULL)
3415 for (i = 0; i < adev->pm.dpm.num_ps; i++)
3416 amdgpu_dpm_print_power_state(adev, &adev->pm.dpm.ps[i]);
3420 void amdgpu_dpm_enable_jpeg(struct amdgpu_device *adev, bool enable)
3424 ret = amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_JPEG, !enable);
3426 DRM_ERROR("Dpm %s jpeg failed, ret = %d. \n",
3427 enable ? "enable" : "disable", ret);
3430 int amdgpu_pm_load_smu_firmware(struct amdgpu_device *adev, uint32_t *smu_version)
3434 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->load_firmware) {
3435 r = adev->powerplay.pp_funcs->load_firmware(adev->powerplay.pp_handle);
3437 pr_err("smu firmware loading failed\n");
3440 *smu_version = adev->pm.fw_version;
3445 int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
3450 if (adev->pm.sysfs_initialized)
3453 if (adev->pm.dpm_enabled == 0)
3456 INIT_LIST_HEAD(&adev->pm.pm_attr_list);
3458 adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
3461 if (IS_ERR(adev->pm.int_hwmon_dev)) {
3462 ret = PTR_ERR(adev->pm.int_hwmon_dev);
3464 "Unable to register hwmon device: %d\n", ret);
3468 switch (amdgpu_virt_get_sriov_vf_mode(adev)) {
3469 case SRIOV_VF_MODE_ONE_VF:
3470 mask = ATTR_FLAG_ONEVF;
3472 case SRIOV_VF_MODE_MULTI_VF:
3475 case SRIOV_VF_MODE_BARE_METAL:
3477 mask = ATTR_FLAG_MASK_ALL;
3481 ret = amdgpu_device_attr_create_groups(adev,
3482 amdgpu_device_attrs,
3483 ARRAY_SIZE(amdgpu_device_attrs),
3485 &adev->pm.pm_attr_list);
3489 adev->pm.sysfs_initialized = true;
3494 void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
3496 if (adev->pm.dpm_enabled == 0)
3499 if (adev->pm.int_hwmon_dev)
3500 hwmon_device_unregister(adev->pm.int_hwmon_dev);
3502 amdgpu_device_attr_remove_groups(adev, &adev->pm.pm_attr_list);
3505 void amdgpu_pm_compute_clocks(struct amdgpu_device *adev)
3509 if (!adev->pm.dpm_enabled)
3512 if (adev->mode_info.num_crtc)
3513 amdgpu_display_bandwidth_update(adev);
3515 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
3516 struct amdgpu_ring *ring = adev->rings[i];
3517 if (ring && ring->sched.ready)
3518 amdgpu_fence_wait_empty(ring);
3521 if (is_support_sw_smu(adev)) {
3522 struct smu_dpm_context *smu_dpm = &adev->smu.smu_dpm;
3523 smu_handle_task(&adev->smu,
3525 AMD_PP_TASK_DISPLAY_CONFIG_CHANGE,
3528 if (adev->powerplay.pp_funcs->dispatch_tasks) {
3529 if (!amdgpu_device_has_dc_support(adev)) {
3530 mutex_lock(&adev->pm.mutex);
3531 amdgpu_dpm_get_active_displays(adev);
3532 adev->pm.pm_display_cfg.num_display = adev->pm.dpm.new_active_crtc_count;
3533 adev->pm.pm_display_cfg.vrefresh = amdgpu_dpm_get_vrefresh(adev);
3534 adev->pm.pm_display_cfg.min_vblank_time = amdgpu_dpm_get_vblank_time(adev);
3535 /* we have issues with mclk switching with refresh rates over 120 hz on the non-DC code. */
3536 if (adev->pm.pm_display_cfg.vrefresh > 120)
3537 adev->pm.pm_display_cfg.min_vblank_time = 0;
3538 if (adev->powerplay.pp_funcs->display_configuration_change)
3539 adev->powerplay.pp_funcs->display_configuration_change(
3540 adev->powerplay.pp_handle,
3541 &adev->pm.pm_display_cfg);
3542 mutex_unlock(&adev->pm.mutex);
3544 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_DISPLAY_CONFIG_CHANGE, NULL);
3546 mutex_lock(&adev->pm.mutex);
3547 amdgpu_dpm_get_active_displays(adev);
3548 amdgpu_dpm_change_power_state_locked(adev);
3549 mutex_unlock(&adev->pm.mutex);
3557 #if defined(CONFIG_DEBUG_FS)
3559 static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
3567 size = sizeof(value);
3568 seq_printf(m, "GFX Clocks and Power:\n");
3569 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
3570 seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
3571 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
3572 seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
3573 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK, (void *)&value, &size))
3574 seq_printf(m, "\t%u MHz (PSTATE_SCLK)\n", value/100);
3575 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK, (void *)&value, &size))
3576 seq_printf(m, "\t%u MHz (PSTATE_MCLK)\n", value/100);
3577 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
3578 seq_printf(m, "\t%u mV (VDDGFX)\n", value);
3579 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
3580 seq_printf(m, "\t%u mV (VDDNB)\n", value);
3581 size = sizeof(uint32_t);
3582 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER, (void *)&query, &size))
3583 seq_printf(m, "\t%u.%u W (average GPU)\n", query >> 8, query & 0xff);
3584 size = sizeof(value);
3585 seq_printf(m, "\n");
3588 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
3589 seq_printf(m, "GPU Temperature: %u C\n", value/1000);
3592 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
3593 seq_printf(m, "GPU Load: %u %%\n", value);
3595 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_LOAD, (void *)&value, &size))
3596 seq_printf(m, "MEM Load: %u %%\n", value);
3598 seq_printf(m, "\n");
3600 /* SMC feature mask */
3601 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_ENABLED_SMC_FEATURES_MASK, (void *)&value64, &size))
3602 seq_printf(m, "SMC Feature Mask: 0x%016llx\n", value64);
3604 if (adev->asic_type > CHIP_VEGA20) {
3606 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCN_POWER_STATE, (void *)&value, &size)) {
3608 seq_printf(m, "VCN: Disabled\n");
3610 seq_printf(m, "VCN: Enabled\n");
3611 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
3612 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
3613 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
3614 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
3617 seq_printf(m, "\n");
3620 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
3622 seq_printf(m, "UVD: Disabled\n");
3624 seq_printf(m, "UVD: Enabled\n");
3625 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
3626 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
3627 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
3628 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
3631 seq_printf(m, "\n");
3634 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
3636 seq_printf(m, "VCE: Disabled\n");
3638 seq_printf(m, "VCE: Enabled\n");
3639 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
3640 seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
3648 static void amdgpu_parse_cg_state(struct seq_file *m, u32 flags)
3652 for (i = 0; clocks[i].flag; i++)
3653 seq_printf(m, "\t%s: %s\n", clocks[i].name,
3654 (flags & clocks[i].flag) ? "On" : "Off");
3657 static int amdgpu_debugfs_pm_info(struct seq_file *m, void *data)
3659 struct drm_info_node *node = (struct drm_info_node *) m->private;
3660 struct drm_device *dev = node->minor->dev;
3661 struct amdgpu_device *adev = dev->dev_private;
3665 if (adev->in_gpu_reset)
3668 r = pm_runtime_get_sync(dev->dev);
3672 amdgpu_device_ip_get_clockgating_state(adev, &flags);
3673 seq_printf(m, "Clock Gating Flags Mask: 0x%x\n", flags);
3674 amdgpu_parse_cg_state(m, flags);
3675 seq_printf(m, "\n");
3677 if (!adev->pm.dpm_enabled) {
3678 seq_printf(m, "dpm not enabled\n");
3679 pm_runtime_mark_last_busy(dev->dev);
3680 pm_runtime_put_autosuspend(dev->dev);
3684 if (!is_support_sw_smu(adev) &&
3685 adev->powerplay.pp_funcs->debugfs_print_current_performance_level) {
3686 mutex_lock(&adev->pm.mutex);
3687 if (adev->powerplay.pp_funcs->debugfs_print_current_performance_level)
3688 adev->powerplay.pp_funcs->debugfs_print_current_performance_level(adev, m);
3690 seq_printf(m, "Debugfs support not implemented for this asic\n");
3691 mutex_unlock(&adev->pm.mutex);
3694 r = amdgpu_debugfs_pm_info_pp(m, adev);
3697 pm_runtime_mark_last_busy(dev->dev);
3698 pm_runtime_put_autosuspend(dev->dev);
3703 static const struct drm_info_list amdgpu_pm_info_list[] = {
3704 {"amdgpu_pm_info", amdgpu_debugfs_pm_info, 0, NULL},
3708 int amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
3710 #if defined(CONFIG_DEBUG_FS)
3711 return amdgpu_debugfs_add_files(adev, amdgpu_pm_info_list, ARRAY_SIZE(amdgpu_pm_info_list));