blob: 59cc678de8c1570642afc2d488f63fbc179a1e99 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
Alex Deucher9ce6aae2017-11-30 21:29:47 -05002 * Copyright 2017 Advanced Micro Devices, Inc.
3 *
Alex Deucherd38ceaf2015-04-20 16:55:21 -04004 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Rafał Miłecki <zajec5@gmail.com>
23 * Alex Deucher <alexdeucher@gmail.com>
24 */
25#include <drm/drmP.h>
26#include "amdgpu.h"
27#include "amdgpu_drv.h"
28#include "amdgpu_pm.h"
29#include "amdgpu_dpm.h"
Huang Rui5df585252018-08-09 09:50:12 -050030#include "amdgpu_display.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040031#include "atom.h"
32#include <linux/power_supply.h>
33#include <linux/hwmon.h>
34#include <linux/hwmon-sysfs.h>
Gustavo A. R. Silvaddf74e72018-07-23 11:32:32 -050035#include <linux/nospec.h>
Rex Zhu1b5708f2015-11-10 18:25:24 -050036
Alex Deucherd38ceaf2015-04-20 16:55:21 -040037static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev);
38
Huang Ruia8503b12017-01-05 19:17:13 +080039static const struct cg_flag_name clocks[] = {
40 {AMD_CG_SUPPORT_GFX_MGCG, "Graphics Medium Grain Clock Gating"},
41 {AMD_CG_SUPPORT_GFX_MGLS, "Graphics Medium Grain memory Light Sleep"},
42 {AMD_CG_SUPPORT_GFX_CGCG, "Graphics Coarse Grain Clock Gating"},
43 {AMD_CG_SUPPORT_GFX_CGLS, "Graphics Coarse Grain memory Light Sleep"},
Huang Rui54170222017-01-11 09:55:34 +080044 {AMD_CG_SUPPORT_GFX_CGTS, "Graphics Coarse Grain Tree Shader Clock Gating"},
Huang Ruia8503b12017-01-05 19:17:13 +080045 {AMD_CG_SUPPORT_GFX_CGTS_LS, "Graphics Coarse Grain Tree Shader Light Sleep"},
46 {AMD_CG_SUPPORT_GFX_CP_LS, "Graphics Command Processor Light Sleep"},
47 {AMD_CG_SUPPORT_GFX_RLC_LS, "Graphics Run List Controller Light Sleep"},
Huang Rui12ad27f2017-03-24 09:58:11 +080048 {AMD_CG_SUPPORT_GFX_3D_CGCG, "Graphics 3D Coarse Grain Clock Gating"},
49 {AMD_CG_SUPPORT_GFX_3D_CGLS, "Graphics 3D Coarse Grain memory Light Sleep"},
Huang Ruia8503b12017-01-05 19:17:13 +080050 {AMD_CG_SUPPORT_MC_LS, "Memory Controller Light Sleep"},
51 {AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
52 {AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
53 {AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
Huang Ruie96487a2017-03-24 10:12:32 +080054 {AMD_CG_SUPPORT_BIF_MGCG, "Bus Interface Medium Grain Clock Gating"},
Huang Ruia8503b12017-01-05 19:17:13 +080055 {AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
56 {AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
57 {AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
58 {AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
59 {AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
Huang Ruif9abe352017-03-24 10:46:16 +080060 {AMD_CG_SUPPORT_DRM_MGCG, "Digital Right Management Medium Grain Clock Gating"},
61 {AMD_CG_SUPPORT_DRM_LS, "Digital Right Management Light Sleep"},
Huang Ruia8503b12017-01-05 19:17:13 +080062 {AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
Huang Ruif9abe352017-03-24 10:46:16 +080063 {AMD_CG_SUPPORT_DF_MGCG, "Data Fabric Medium Grain Clock Gating"},
Huang Ruia8503b12017-01-05 19:17:13 +080064 {0, NULL},
65};
66
Alex Deucherd38ceaf2015-04-20 16:55:21 -040067void amdgpu_pm_acpi_event_handler(struct amdgpu_device *adev)
68{
69 if (adev->pm.dpm_enabled) {
70 mutex_lock(&adev->pm.mutex);
71 if (power_supply_is_system_supplied() > 0)
Rex Zhu600ae892018-06-04 16:39:38 +080072 adev->pm.ac_power = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040073 else
Rex Zhu600ae892018-06-04 16:39:38 +080074 adev->pm.ac_power = false;
Rex Zhucd4d7462017-09-06 18:43:52 +080075 if (adev->powerplay.pp_funcs->enable_bapm)
Rex Zhu600ae892018-06-04 16:39:38 +080076 amdgpu_dpm_enable_bapm(adev, adev->pm.ac_power);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040077 mutex_unlock(&adev->pm.mutex);
78 }
79}
80
Alex Deucherca8d40c2018-04-19 13:56:41 -050081/**
82 * DOC: power_dpm_state
83 *
Alex Deucherdc85db22018-06-01 12:28:14 -050084 * The power_dpm_state file is a legacy interface and is only provided for
85 * backwards compatibility. The amdgpu driver provides a sysfs API for adjusting
86 * certain power related parameters. The file power_dpm_state is used for this.
Alex Deucherca8d40c2018-04-19 13:56:41 -050087 * It accepts the following arguments:
Alex Deucherdc85db22018-06-01 12:28:14 -050088 *
Alex Deucherca8d40c2018-04-19 13:56:41 -050089 * - battery
Alex Deucherdc85db22018-06-01 12:28:14 -050090 *
Alex Deucherca8d40c2018-04-19 13:56:41 -050091 * - balanced
Alex Deucherdc85db22018-06-01 12:28:14 -050092 *
Alex Deucherca8d40c2018-04-19 13:56:41 -050093 * - performance
94 *
95 * battery
96 *
97 * On older GPUs, the vbios provided a special power state for battery
98 * operation. Selecting battery switched to this state. This is no
99 * longer provided on newer GPUs so the option does nothing in that case.
100 *
101 * balanced
102 *
103 * On older GPUs, the vbios provided a special power state for balanced
104 * operation. Selecting balanced switched to this state. This is no
105 * longer provided on newer GPUs so the option does nothing in that case.
106 *
107 * performance
108 *
109 * On older GPUs, the vbios provided a special power state for performance
110 * operation. Selecting performance switched to this state. This is no
111 * longer provided on newer GPUs so the option does nothing in that case.
112 *
113 */
114
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400115static ssize_t amdgpu_get_dpm_state(struct device *dev,
116 struct device_attribute *attr,
117 char *buf)
118{
119 struct drm_device *ddev = dev_get_drvdata(dev);
120 struct amdgpu_device *adev = ddev->dev_private;
Rex Zhu1b5708f2015-11-10 18:25:24 -0500121 enum amd_pm_state_type pm;
122
Rex Zhucd4d7462017-09-06 18:43:52 +0800123 if (adev->powerplay.pp_funcs->get_current_power_state)
Rex Zhu1b5708f2015-11-10 18:25:24 -0500124 pm = amdgpu_dpm_get_current_power_state(adev);
Rex Zhucd4d7462017-09-06 18:43:52 +0800125 else
Rex Zhu1b5708f2015-11-10 18:25:24 -0500126 pm = adev->pm.dpm.user_state;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400127
128 return snprintf(buf, PAGE_SIZE, "%s\n",
129 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
130 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
131}
132
133static ssize_t amdgpu_set_dpm_state(struct device *dev,
134 struct device_attribute *attr,
135 const char *buf,
136 size_t count)
137{
138 struct drm_device *ddev = dev_get_drvdata(dev);
139 struct amdgpu_device *adev = ddev->dev_private;
Rex Zhu1b5708f2015-11-10 18:25:24 -0500140 enum amd_pm_state_type state;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400142 if (strncmp("battery", buf, strlen("battery")) == 0)
Rex Zhu1b5708f2015-11-10 18:25:24 -0500143 state = POWER_STATE_TYPE_BATTERY;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
Rex Zhu1b5708f2015-11-10 18:25:24 -0500145 state = POWER_STATE_TYPE_BALANCED;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400146 else if (strncmp("performance", buf, strlen("performance")) == 0)
Rex Zhu1b5708f2015-11-10 18:25:24 -0500147 state = POWER_STATE_TYPE_PERFORMANCE;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400148 else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149 count = -EINVAL;
150 goto fail;
151 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400152
Rex Zhu6d07fe72017-09-25 18:51:50 +0800153 if (adev->powerplay.pp_funcs->dispatch_tasks) {
Evan Quan39199b82017-12-29 14:46:13 +0800154 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_ENABLE_USER_STATE, &state);
Rex Zhu1b5708f2015-11-10 18:25:24 -0500155 } else {
156 mutex_lock(&adev->pm.mutex);
157 adev->pm.dpm.user_state = state;
158 mutex_unlock(&adev->pm.mutex);
159
160 /* Can't set dpm state when the card is off */
161 if (!(adev->flags & AMD_IS_PX) ||
162 (ddev->switch_power_state == DRM_SWITCH_POWER_ON))
163 amdgpu_pm_compute_clocks(adev);
164 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400165fail:
166 return count;
167}
168
Alex Deucher8567f682018-04-19 13:46:03 -0500169
170/**
171 * DOC: power_dpm_force_performance_level
172 *
173 * The amdgpu driver provides a sysfs API for adjusting certain power
174 * related parameters. The file power_dpm_force_performance_level is
175 * used for this. It accepts the following arguments:
Alex Deucherdc85db22018-06-01 12:28:14 -0500176 *
Alex Deucher8567f682018-04-19 13:46:03 -0500177 * - auto
Alex Deucherdc85db22018-06-01 12:28:14 -0500178 *
Alex Deucher8567f682018-04-19 13:46:03 -0500179 * - low
Alex Deucherdc85db22018-06-01 12:28:14 -0500180 *
Alex Deucher8567f682018-04-19 13:46:03 -0500181 * - high
Alex Deucherdc85db22018-06-01 12:28:14 -0500182 *
Alex Deucher8567f682018-04-19 13:46:03 -0500183 * - manual
Alex Deucherdc85db22018-06-01 12:28:14 -0500184 *
Alex Deucher8567f682018-04-19 13:46:03 -0500185 * - profile_standard
Alex Deucherdc85db22018-06-01 12:28:14 -0500186 *
Alex Deucher8567f682018-04-19 13:46:03 -0500187 * - profile_min_sclk
Alex Deucherdc85db22018-06-01 12:28:14 -0500188 *
Alex Deucher8567f682018-04-19 13:46:03 -0500189 * - profile_min_mclk
Alex Deucherdc85db22018-06-01 12:28:14 -0500190 *
Alex Deucher8567f682018-04-19 13:46:03 -0500191 * - profile_peak
192 *
193 * auto
194 *
195 * When auto is selected, the driver will attempt to dynamically select
196 * the optimal power profile for current conditions in the driver.
197 *
198 * low
199 *
200 * When low is selected, the clocks are forced to the lowest power state.
201 *
202 * high
203 *
204 * When high is selected, the clocks are forced to the highest power state.
205 *
206 * manual
207 *
208 * When manual is selected, the user can manually adjust which power states
209 * are enabled for each clock domain via the sysfs pp_dpm_mclk, pp_dpm_sclk,
210 * and pp_dpm_pcie files and adjust the power state transition heuristics
211 * via the pp_power_profile_mode sysfs file.
212 *
213 * profile_standard
214 * profile_min_sclk
215 * profile_min_mclk
216 * profile_peak
217 *
218 * When the profiling modes are selected, clock and power gating are
219 * disabled and the clocks are set for different profiling cases. This
220 * mode is recommended for profiling specific work loads where you do
221 * not want clock or power gating for clock fluctuation to interfere
222 * with your results. profile_standard sets the clocks to a fixed clock
223 * level which varies from asic to asic. profile_min_sclk forces the sclk
224 * to the lowest level. profile_min_mclk forces the mclk to the lowest level.
225 * profile_peak sets all clocks (mclk, sclk, pcie) to the highest levels.
226 *
227 */
228
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400229static ssize_t amdgpu_get_dpm_forced_performance_level(struct device *dev,
Rex Zhu1b5708f2015-11-10 18:25:24 -0500230 struct device_attribute *attr,
231 char *buf)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400232{
233 struct drm_device *ddev = dev_get_drvdata(dev);
234 struct amdgpu_device *adev = ddev->dev_private;
Rex Zhucd4d7462017-09-06 18:43:52 +0800235 enum amd_dpm_forced_level level = 0xff;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400236
Alex Deucher0c67df42016-02-19 15:30:15 -0500237 if ((adev->flags & AMD_IS_PX) &&
238 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
239 return snprintf(buf, PAGE_SIZE, "off\n");
240
Rex Zhucd4d7462017-09-06 18:43:52 +0800241 if (adev->powerplay.pp_funcs->get_performance_level)
242 level = amdgpu_dpm_get_performance_level(adev);
243 else
244 level = adev->pm.dpm.forced_level;
245
Rex Zhue5d03ac2016-12-23 14:39:41 +0800246 return snprintf(buf, PAGE_SIZE, "%s\n",
Rex Zhu570272d2017-01-06 13:32:49 +0800247 (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
248 (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
249 (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
250 (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
251 (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
252 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
253 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
254 (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
255 "unknown");
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400256}
257
258static ssize_t amdgpu_set_dpm_forced_performance_level(struct device *dev,
259 struct device_attribute *attr,
260 const char *buf,
261 size_t count)
262{
263 struct drm_device *ddev = dev_get_drvdata(dev);
264 struct amdgpu_device *adev = ddev->dev_private;
Rex Zhue5d03ac2016-12-23 14:39:41 +0800265 enum amd_dpm_forced_level level;
Rex Zhucd4d7462017-09-06 18:43:52 +0800266 enum amd_dpm_forced_level current_level = 0xff;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400267 int ret = 0;
268
Alex Deucher0c67df42016-02-19 15:30:15 -0500269 /* Can't force performance level when the card is off */
270 if ((adev->flags & AMD_IS_PX) &&
271 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
272 return -EINVAL;
273
Rex Zhucd4d7462017-09-06 18:43:52 +0800274 if (adev->powerplay.pp_funcs->get_performance_level)
275 current_level = amdgpu_dpm_get_performance_level(adev);
Rex Zhu3bd58972016-12-23 15:24:37 +0800276
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400277 if (strncmp("low", buf, strlen("low")) == 0) {
Rex Zhue5d03ac2016-12-23 14:39:41 +0800278 level = AMD_DPM_FORCED_LEVEL_LOW;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279 } else if (strncmp("high", buf, strlen("high")) == 0) {
Rex Zhue5d03ac2016-12-23 14:39:41 +0800280 level = AMD_DPM_FORCED_LEVEL_HIGH;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400281 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
Rex Zhue5d03ac2016-12-23 14:39:41 +0800282 level = AMD_DPM_FORCED_LEVEL_AUTO;
Eric Huangf3898ea2015-12-11 16:24:34 -0500283 } else if (strncmp("manual", buf, strlen("manual")) == 0) {
Rex Zhue5d03ac2016-12-23 14:39:41 +0800284 level = AMD_DPM_FORCED_LEVEL_MANUAL;
Rex Zhu570272d2017-01-06 13:32:49 +0800285 } else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
286 level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
287 } else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
288 level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
289 } else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
290 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
291 } else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
292 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
293 } else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
294 level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
295 } else {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400296 count = -EINVAL;
297 goto fail;
298 }
Rex Zhu1b5708f2015-11-10 18:25:24 -0500299
Rex Zhu3bd58972016-12-23 15:24:37 +0800300 if (current_level == level)
Rex Zhu8e7afd32017-01-09 15:18:01 +0800301 return count;
Rex Zhu3bd58972016-12-23 15:24:37 +0800302
Rex Zhucd4d7462017-09-06 18:43:52 +0800303 if (adev->powerplay.pp_funcs->force_performance_level) {
Rex Zhu1b5708f2015-11-10 18:25:24 -0500304 mutex_lock(&adev->pm.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400305 if (adev->pm.dpm.thermal_active) {
306 count = -EINVAL;
Alex Deucher10f950f2016-02-19 15:18:45 -0500307 mutex_unlock(&adev->pm.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400308 goto fail;
309 }
310 ret = amdgpu_dpm_force_performance_level(adev, level);
311 if (ret)
312 count = -EINVAL;
Rex Zhu1b5708f2015-11-10 18:25:24 -0500313 else
314 adev->pm.dpm.forced_level = level;
315 mutex_unlock(&adev->pm.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400316 }
Rex Zhu570272d2017-01-06 13:32:49 +0800317
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400318fail:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400319 return count;
320}
321
Eric Huangf3898ea2015-12-11 16:24:34 -0500322static ssize_t amdgpu_get_pp_num_states(struct device *dev,
323 struct device_attribute *attr,
324 char *buf)
325{
326 struct drm_device *ddev = dev_get_drvdata(dev);
327 struct amdgpu_device *adev = ddev->dev_private;
328 struct pp_states_info data;
329 int i, buf_len;
330
Rex Zhucd4d7462017-09-06 18:43:52 +0800331 if (adev->powerplay.pp_funcs->get_pp_num_states)
Eric Huangf3898ea2015-12-11 16:24:34 -0500332 amdgpu_dpm_get_pp_num_states(adev, &data);
333
334 buf_len = snprintf(buf, PAGE_SIZE, "states: %d\n", data.nums);
335 for (i = 0; i < data.nums; i++)
336 buf_len += snprintf(buf + buf_len, PAGE_SIZE, "%d %s\n", i,
337 (data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
338 (data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
339 (data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
340 (data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
341
342 return buf_len;
343}
344
345static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
346 struct device_attribute *attr,
347 char *buf)
348{
349 struct drm_device *ddev = dev_get_drvdata(dev);
350 struct amdgpu_device *adev = ddev->dev_private;
351 struct pp_states_info data;
352 enum amd_pm_state_type pm = 0;
353 int i = 0;
354
Rex Zhucd4d7462017-09-06 18:43:52 +0800355 if (adev->powerplay.pp_funcs->get_current_power_state
356 && adev->powerplay.pp_funcs->get_pp_num_states) {
Eric Huangf3898ea2015-12-11 16:24:34 -0500357 pm = amdgpu_dpm_get_current_power_state(adev);
358 amdgpu_dpm_get_pp_num_states(adev, &data);
359
360 for (i = 0; i < data.nums; i++) {
361 if (pm == data.states[i])
362 break;
363 }
364
365 if (i == data.nums)
366 i = -EINVAL;
367 }
368
369 return snprintf(buf, PAGE_SIZE, "%d\n", i);
370}
371
372static ssize_t amdgpu_get_pp_force_state(struct device *dev,
373 struct device_attribute *attr,
374 char *buf)
375{
376 struct drm_device *ddev = dev_get_drvdata(dev);
377 struct amdgpu_device *adev = ddev->dev_private;
Eric Huangf3898ea2015-12-11 16:24:34 -0500378
Rex Zhucd4d7462017-09-06 18:43:52 +0800379 if (adev->pp_force_state_enabled)
380 return amdgpu_get_pp_cur_state(dev, attr, buf);
381 else
Eric Huangf3898ea2015-12-11 16:24:34 -0500382 return snprintf(buf, PAGE_SIZE, "\n");
383}
384
385static ssize_t amdgpu_set_pp_force_state(struct device *dev,
386 struct device_attribute *attr,
387 const char *buf,
388 size_t count)
389{
390 struct drm_device *ddev = dev_get_drvdata(dev);
391 struct amdgpu_device *adev = ddev->dev_private;
392 enum amd_pm_state_type state = 0;
Dan Carpenter041bf022016-06-16 11:30:23 +0300393 unsigned long idx;
Eric Huangf3898ea2015-12-11 16:24:34 -0500394 int ret;
395
396 if (strlen(buf) == 1)
397 adev->pp_force_state_enabled = false;
Rex Zhu6d07fe72017-09-25 18:51:50 +0800398 else if (adev->powerplay.pp_funcs->dispatch_tasks &&
399 adev->powerplay.pp_funcs->get_pp_num_states) {
Dan Carpenter041bf022016-06-16 11:30:23 +0300400 struct pp_states_info data;
Eric Huangf3898ea2015-12-11 16:24:34 -0500401
Dan Carpenter041bf022016-06-16 11:30:23 +0300402 ret = kstrtoul(buf, 0, &idx);
403 if (ret || idx >= ARRAY_SIZE(data.states)) {
Eric Huangf3898ea2015-12-11 16:24:34 -0500404 count = -EINVAL;
405 goto fail;
406 }
Gustavo A. R. Silvaddf74e72018-07-23 11:32:32 -0500407 idx = array_index_nospec(idx, ARRAY_SIZE(data.states));
Eric Huangf3898ea2015-12-11 16:24:34 -0500408
Dan Carpenter041bf022016-06-16 11:30:23 +0300409 amdgpu_dpm_get_pp_num_states(adev, &data);
410 state = data.states[idx];
411 /* only set user selected power states */
412 if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
413 state != POWER_STATE_TYPE_DEFAULT) {
414 amdgpu_dpm_dispatch_task(adev,
Evan Quan39199b82017-12-29 14:46:13 +0800415 AMD_PP_TASK_ENABLE_USER_STATE, &state);
Dan Carpenter041bf022016-06-16 11:30:23 +0300416 adev->pp_force_state_enabled = true;
Eric Huangf3898ea2015-12-11 16:24:34 -0500417 }
418 }
419fail:
420 return count;
421}
422
Alex Deucherd54bb402018-04-19 14:02:52 -0500423/**
424 * DOC: pp_table
425 *
426 * The amdgpu driver provides a sysfs API for uploading new powerplay
427 * tables. The file pp_table is used for this. Reading the file
428 * will dump the current power play table. Writing to the file
429 * will attempt to upload a new powerplay table and re-initialize
430 * powerplay using that new table.
431 *
432 */
433
Eric Huangf3898ea2015-12-11 16:24:34 -0500434static ssize_t amdgpu_get_pp_table(struct device *dev,
435 struct device_attribute *attr,
436 char *buf)
437{
438 struct drm_device *ddev = dev_get_drvdata(dev);
439 struct amdgpu_device *adev = ddev->dev_private;
440 char *table = NULL;
Eric Huang1684d3b2016-07-28 17:25:01 -0400441 int size;
Eric Huangf3898ea2015-12-11 16:24:34 -0500442
Rex Zhucd4d7462017-09-06 18:43:52 +0800443 if (adev->powerplay.pp_funcs->get_pp_table)
Eric Huangf3898ea2015-12-11 16:24:34 -0500444 size = amdgpu_dpm_get_pp_table(adev, &table);
445 else
446 return 0;
447
448 if (size >= PAGE_SIZE)
449 size = PAGE_SIZE - 1;
450
Eric Huang1684d3b2016-07-28 17:25:01 -0400451 memcpy(buf, table, size);
Eric Huangf3898ea2015-12-11 16:24:34 -0500452
453 return size;
454}
455
456static ssize_t amdgpu_set_pp_table(struct device *dev,
457 struct device_attribute *attr,
458 const char *buf,
459 size_t count)
460{
461 struct drm_device *ddev = dev_get_drvdata(dev);
462 struct amdgpu_device *adev = ddev->dev_private;
463
Rex Zhucd4d7462017-09-06 18:43:52 +0800464 if (adev->powerplay.pp_funcs->set_pp_table)
Eric Huangf3898ea2015-12-11 16:24:34 -0500465 amdgpu_dpm_set_pp_table(adev, buf, count);
466
467 return count;
468}
469
Alex Deucher4e418c32018-04-19 14:59:55 -0500470/**
471 * DOC: pp_od_clk_voltage
472 *
473 * The amdgpu driver provides a sysfs API for adjusting the clocks and voltages
474 * in each power level within a power state. The pp_od_clk_voltage is used for
475 * this.
476 *
Evan Quand5bf2652018-08-29 14:38:50 +0800477 * < For Vega10 and previous ASICs >
478 *
Alex Deucher4e418c32018-04-19 14:59:55 -0500479 * Reading the file will display:
Alex Deucherdc85db22018-06-01 12:28:14 -0500480 *
Alex Deucher4e418c32018-04-19 14:59:55 -0500481 * - a list of engine clock levels and voltages labeled OD_SCLK
Alex Deucherdc85db22018-06-01 12:28:14 -0500482 *
Alex Deucher4e418c32018-04-19 14:59:55 -0500483 * - a list of memory clock levels and voltages labeled OD_MCLK
Alex Deucherdc85db22018-06-01 12:28:14 -0500484 *
Alex Deucher4e418c32018-04-19 14:59:55 -0500485 * - a list of valid ranges for sclk, mclk, and voltage labeled OD_RANGE
486 *
487 * To manually adjust these settings, first select manual using
488 * power_dpm_force_performance_level. Enter a new value for each
489 * level by writing a string that contains "s/m level clock voltage" to
490 * the file. E.g., "s 1 500 820" will update sclk level 1 to be 500 MHz
491 * at 820 mV; "m 0 350 810" will update mclk level 0 to be 350 MHz at
492 * 810 mV. When you have edited all of the states as needed, write
493 * "c" (commit) to the file to commit your changes. If you want to reset to the
494 * default power levels, write "r" (reset) to the file to reset them.
495 *
Evan Quand5bf2652018-08-29 14:38:50 +0800496 *
497 * < For Vega20 >
498 *
499 * Reading the file will display:
500 *
501 * - minimum and maximum engine clock labeled OD_SCLK
502 *
503 * - maximum memory clock labeled OD_MCLK
504 *
Evan Quanb1f82cb2018-09-13 16:14:33 +0800505 * - three <frequency, voltage> points labeled OD_VDDC_CURVE.
Evan Quand5bf2652018-08-29 14:38:50 +0800506 * They can be used to calibrate the sclk voltage curve.
507 *
508 * - a list of valid ranges for sclk, mclk, and voltage curve points
509 * labeled OD_RANGE
510 *
511 * To manually adjust these settings:
512 *
513 * - First select manual using power_dpm_force_performance_level
514 *
515 * - For clock frequency setting, enter a new value by writing a
516 * string that contains "s/m index clock" to the file. The index
517 * should be 0 if to set minimum clock. And 1 if to set maximum
518 * clock. E.g., "s 0 500" will update minimum sclk to be 500 MHz.
519 * "m 1 800" will update maximum mclk to be 800Mhz.
520 *
521 * For sclk voltage curve, enter the new values by writing a
Evan Quanb1f82cb2018-09-13 16:14:33 +0800522 * string that contains "vc point clock voltage" to the file. The
523 * points are indexed by 0, 1 and 2. E.g., "vc 0 300 600" will
524 * update point1 with clock set as 300Mhz and voltage as
525 * 600mV. "vc 2 1000 1000" will update point3 with clock set
526 * as 1000Mhz and voltage 1000mV.
Evan Quand5bf2652018-08-29 14:38:50 +0800527 *
528 * - When you have edited all of the states as needed, write "c" (commit)
529 * to the file to commit your changes
530 *
531 * - If you want to reset to the default power levels, write "r" (reset)
532 * to the file to reset them
533 *
Alex Deucher4e418c32018-04-19 14:59:55 -0500534 */
535
Rex Zhue3933f22018-01-16 18:35:15 +0800536static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev,
537 struct device_attribute *attr,
538 const char *buf,
539 size_t count)
540{
541 struct drm_device *ddev = dev_get_drvdata(dev);
542 struct amdgpu_device *adev = ddev->dev_private;
543 int ret;
544 uint32_t parameter_size = 0;
545 long parameter[64];
546 char buf_cpy[128];
547 char *tmp_str;
548 char *sub_str;
549 const char delimiter[3] = {' ', '\n', '\0'};
550 uint32_t type;
551
552 if (count > 127)
553 return -EINVAL;
554
555 if (*buf == 's')
556 type = PP_OD_EDIT_SCLK_VDDC_TABLE;
557 else if (*buf == 'm')
558 type = PP_OD_EDIT_MCLK_VDDC_TABLE;
559 else if(*buf == 'r')
560 type = PP_OD_RESTORE_DEFAULT_TABLE;
561 else if (*buf == 'c')
562 type = PP_OD_COMMIT_DPM_TABLE;
Evan Quand5bf2652018-08-29 14:38:50 +0800563 else if (!strncmp(buf, "vc", 2))
564 type = PP_OD_EDIT_VDDC_CURVE;
Rex Zhue3933f22018-01-16 18:35:15 +0800565 else
566 return -EINVAL;
567
568 memcpy(buf_cpy, buf, count+1);
569
570 tmp_str = buf_cpy;
571
Evan Quand5bf2652018-08-29 14:38:50 +0800572 if (type == PP_OD_EDIT_VDDC_CURVE)
573 tmp_str++;
Rex Zhue3933f22018-01-16 18:35:15 +0800574 while (isspace(*++tmp_str));
575
576 while (tmp_str[0]) {
577 sub_str = strsep(&tmp_str, delimiter);
578 ret = kstrtol(sub_str, 0, &parameter[parameter_size]);
579 if (ret)
580 return -EINVAL;
581 parameter_size++;
582
583 while (isspace(*tmp_str))
584 tmp_str++;
585 }
586
587 if (adev->powerplay.pp_funcs->odn_edit_dpm_table)
588 ret = amdgpu_dpm_odn_edit_dpm_table(adev, type,
589 parameter, parameter_size);
590
591 if (ret)
592 return -EINVAL;
593
594 if (type == PP_OD_COMMIT_DPM_TABLE) {
595 if (adev->powerplay.pp_funcs->dispatch_tasks) {
596 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
597 return count;
598 } else {
599 return -EINVAL;
600 }
601 }
602
603 return count;
604}
605
606static ssize_t amdgpu_get_pp_od_clk_voltage(struct device *dev,
607 struct device_attribute *attr,
608 char *buf)
609{
610 struct drm_device *ddev = dev_get_drvdata(dev);
611 struct amdgpu_device *adev = ddev->dev_private;
612 uint32_t size = 0;
613
614 if (adev->powerplay.pp_funcs->print_clock_levels) {
615 size = amdgpu_dpm_print_clock_levels(adev, OD_SCLK, buf);
616 size += amdgpu_dpm_print_clock_levels(adev, OD_MCLK, buf+size);
Evan Quand5bf2652018-08-29 14:38:50 +0800617 size += amdgpu_dpm_print_clock_levels(adev, OD_VDDC_CURVE, buf+size);
Rex Zhua3c991f2018-04-19 10:39:17 +0800618 size += amdgpu_dpm_print_clock_levels(adev, OD_RANGE, buf+size);
Rex Zhue3933f22018-01-16 18:35:15 +0800619 return size;
620 } else {
621 return snprintf(buf, PAGE_SIZE, "\n");
622 }
623
624}
625
Alex Deucher271dc902018-04-19 14:22:24 -0500626/**
627 * DOC: pp_dpm_sclk pp_dpm_mclk pp_dpm_pcie
628 *
629 * The amdgpu driver provides a sysfs API for adjusting what power levels
630 * are enabled for a given power state. The files pp_dpm_sclk, pp_dpm_mclk,
631 * and pp_dpm_pcie are used for this.
632 *
633 * Reading back the files will show you the available power levels within
634 * the power state and the clock information for those levels.
635 *
636 * To manually adjust these states, first select manual using
welu48edde32018-04-24 09:13:20 -0400637 * power_dpm_force_performance_level.
638 * Secondly,Enter a new value for each level by inputing a string that
639 * contains " echo xx xx xx > pp_dpm_sclk/mclk/pcie"
640 * E.g., echo 4 5 6 to > pp_dpm_sclk will enable sclk levels 4, 5, and 6.
Alex Deucher271dc902018-04-19 14:22:24 -0500641 */
642
Eric Huangf3898ea2015-12-11 16:24:34 -0500643static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
644 struct device_attribute *attr,
645 char *buf)
646{
647 struct drm_device *ddev = dev_get_drvdata(dev);
648 struct amdgpu_device *adev = ddev->dev_private;
Eric Huangf3898ea2015-12-11 16:24:34 -0500649
Rex Zhucd4d7462017-09-06 18:43:52 +0800650 if (adev->powerplay.pp_funcs->print_clock_levels)
651 return amdgpu_dpm_print_clock_levels(adev, PP_SCLK, buf);
652 else
653 return snprintf(buf, PAGE_SIZE, "\n");
Eric Huangf3898ea2015-12-11 16:24:34 -0500654}
655
Kees Cook4b4bd042018-06-20 11:26:47 -0700656/*
657 * Worst case: 32 bits individually specified, in octal at 12 characters
658 * per line (+1 for \n).
659 */
660#define AMDGPU_MASK_BUF_MAX (32 * 13)
661
662static ssize_t amdgpu_read_mask(const char *buf, size_t count, uint32_t *mask)
663{
664 int ret;
665 long level;
666 char *sub_str = NULL;
667 char *tmp;
668 char buf_cpy[AMDGPU_MASK_BUF_MAX + 1];
669 const char delimiter[3] = {' ', '\n', '\0'};
670 size_t bytes;
671
672 *mask = 0;
673
674 bytes = min(count, sizeof(buf_cpy) - 1);
675 memcpy(buf_cpy, buf, bytes);
676 buf_cpy[bytes] = '\0';
677 tmp = buf_cpy;
678 while (tmp[0]) {
679 sub_str = strsep(&tmp, delimiter);
680 if (strlen(sub_str)) {
681 ret = kstrtol(sub_str, 0, &level);
682 if (ret)
683 return -EINVAL;
684 *mask |= 1 << level;
685 } else
686 break;
687 }
688
689 return 0;
690}
691
Eric Huangf3898ea2015-12-11 16:24:34 -0500692static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
693 struct device_attribute *attr,
694 const char *buf,
695 size_t count)
696{
697 struct drm_device *ddev = dev_get_drvdata(dev);
698 struct amdgpu_device *adev = ddev->dev_private;
699 int ret;
welu48edde32018-04-24 09:13:20 -0400700 uint32_t mask = 0;
Eric Huangf3898ea2015-12-11 16:24:34 -0500701
Kees Cook4b4bd042018-06-20 11:26:47 -0700702 ret = amdgpu_read_mask(buf, count, &mask);
703 if (ret)
704 return ret;
Eric Huangf3898ea2015-12-11 16:24:34 -0500705
Rex Zhucd4d7462017-09-06 18:43:52 +0800706 if (adev->powerplay.pp_funcs->force_clock_level)
Evan Quan241dbbb2018-10-17 16:36:02 +0800707 ret = amdgpu_dpm_force_clock_level(adev, PP_SCLK, mask);
708
709 if (ret)
710 return -EINVAL;
Rex Zhucd4d7462017-09-06 18:43:52 +0800711
Eric Huangf3898ea2015-12-11 16:24:34 -0500712 return count;
713}
714
715static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
716 struct device_attribute *attr,
717 char *buf)
718{
719 struct drm_device *ddev = dev_get_drvdata(dev);
720 struct amdgpu_device *adev = ddev->dev_private;
Eric Huangf3898ea2015-12-11 16:24:34 -0500721
Rex Zhucd4d7462017-09-06 18:43:52 +0800722 if (adev->powerplay.pp_funcs->print_clock_levels)
723 return amdgpu_dpm_print_clock_levels(adev, PP_MCLK, buf);
724 else
725 return snprintf(buf, PAGE_SIZE, "\n");
Eric Huangf3898ea2015-12-11 16:24:34 -0500726}
727
728static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
729 struct device_attribute *attr,
730 const char *buf,
731 size_t count)
732{
733 struct drm_device *ddev = dev_get_drvdata(dev);
734 struct amdgpu_device *adev = ddev->dev_private;
735 int ret;
welu48edde32018-04-24 09:13:20 -0400736 uint32_t mask = 0;
Eric Huangf3898ea2015-12-11 16:24:34 -0500737
Kees Cook4b4bd042018-06-20 11:26:47 -0700738 ret = amdgpu_read_mask(buf, count, &mask);
739 if (ret)
740 return ret;
Eric Huangf3898ea2015-12-11 16:24:34 -0500741
Rex Zhucd4d7462017-09-06 18:43:52 +0800742 if (adev->powerplay.pp_funcs->force_clock_level)
Evan Quan241dbbb2018-10-17 16:36:02 +0800743 ret = amdgpu_dpm_force_clock_level(adev, PP_MCLK, mask);
744
745 if (ret)
746 return -EINVAL;
Rex Zhucd4d7462017-09-06 18:43:52 +0800747
Eric Huangf3898ea2015-12-11 16:24:34 -0500748 return count;
749}
750
751static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
752 struct device_attribute *attr,
753 char *buf)
754{
755 struct drm_device *ddev = dev_get_drvdata(dev);
756 struct amdgpu_device *adev = ddev->dev_private;
Eric Huangf3898ea2015-12-11 16:24:34 -0500757
Rex Zhucd4d7462017-09-06 18:43:52 +0800758 if (adev->powerplay.pp_funcs->print_clock_levels)
759 return amdgpu_dpm_print_clock_levels(adev, PP_PCIE, buf);
760 else
761 return snprintf(buf, PAGE_SIZE, "\n");
Eric Huangf3898ea2015-12-11 16:24:34 -0500762}
763
764static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
765 struct device_attribute *attr,
766 const char *buf,
767 size_t count)
768{
769 struct drm_device *ddev = dev_get_drvdata(dev);
770 struct amdgpu_device *adev = ddev->dev_private;
771 int ret;
welu48edde32018-04-24 09:13:20 -0400772 uint32_t mask = 0;
Eric Huangf3898ea2015-12-11 16:24:34 -0500773
Kees Cook4b4bd042018-06-20 11:26:47 -0700774 ret = amdgpu_read_mask(buf, count, &mask);
775 if (ret)
776 return ret;
Eric Huangf3898ea2015-12-11 16:24:34 -0500777
Rex Zhucd4d7462017-09-06 18:43:52 +0800778 if (adev->powerplay.pp_funcs->force_clock_level)
Evan Quan241dbbb2018-10-17 16:36:02 +0800779 ret = amdgpu_dpm_force_clock_level(adev, PP_PCIE, mask);
780
781 if (ret)
782 return -EINVAL;
Rex Zhucd4d7462017-09-06 18:43:52 +0800783
Eric Huangf3898ea2015-12-11 16:24:34 -0500784 return count;
785}
786
Eric Huang428bafa2016-05-12 14:51:21 -0400787static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
788 struct device_attribute *attr,
789 char *buf)
790{
791 struct drm_device *ddev = dev_get_drvdata(dev);
792 struct amdgpu_device *adev = ddev->dev_private;
793 uint32_t value = 0;
794
Rex Zhucd4d7462017-09-06 18:43:52 +0800795 if (adev->powerplay.pp_funcs->get_sclk_od)
Eric Huang428bafa2016-05-12 14:51:21 -0400796 value = amdgpu_dpm_get_sclk_od(adev);
797
798 return snprintf(buf, PAGE_SIZE, "%d\n", value);
799}
800
801static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
802 struct device_attribute *attr,
803 const char *buf,
804 size_t count)
805{
806 struct drm_device *ddev = dev_get_drvdata(dev);
807 struct amdgpu_device *adev = ddev->dev_private;
808 int ret;
809 long int value;
810
811 ret = kstrtol(buf, 0, &value);
812
813 if (ret) {
814 count = -EINVAL;
815 goto fail;
816 }
Rex Zhucd4d7462017-09-06 18:43:52 +0800817 if (adev->powerplay.pp_funcs->set_sclk_od)
818 amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
Eric Huang428bafa2016-05-12 14:51:21 -0400819
Rex Zhu6d07fe72017-09-25 18:51:50 +0800820 if (adev->powerplay.pp_funcs->dispatch_tasks) {
Evan Quan39199b82017-12-29 14:46:13 +0800821 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
Rex Zhucd4d7462017-09-06 18:43:52 +0800822 } else {
Eric Huang8b2e5742016-05-19 15:46:10 -0400823 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
824 amdgpu_pm_compute_clocks(adev);
825 }
Eric Huang428bafa2016-05-12 14:51:21 -0400826
827fail:
828 return count;
829}
830
Eric Huangf2bdc052016-05-24 15:11:17 -0400831static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
832 struct device_attribute *attr,
833 char *buf)
834{
835 struct drm_device *ddev = dev_get_drvdata(dev);
836 struct amdgpu_device *adev = ddev->dev_private;
837 uint32_t value = 0;
838
Rex Zhucd4d7462017-09-06 18:43:52 +0800839 if (adev->powerplay.pp_funcs->get_mclk_od)
Eric Huangf2bdc052016-05-24 15:11:17 -0400840 value = amdgpu_dpm_get_mclk_od(adev);
Eric Huangf2bdc052016-05-24 15:11:17 -0400841
842 return snprintf(buf, PAGE_SIZE, "%d\n", value);
843}
844
845static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
846 struct device_attribute *attr,
847 const char *buf,
848 size_t count)
849{
850 struct drm_device *ddev = dev_get_drvdata(dev);
851 struct amdgpu_device *adev = ddev->dev_private;
852 int ret;
853 long int value;
854
855 ret = kstrtol(buf, 0, &value);
856
857 if (ret) {
858 count = -EINVAL;
859 goto fail;
860 }
Rex Zhucd4d7462017-09-06 18:43:52 +0800861 if (adev->powerplay.pp_funcs->set_mclk_od)
862 amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
Eric Huangf2bdc052016-05-24 15:11:17 -0400863
Rex Zhu6d07fe72017-09-25 18:51:50 +0800864 if (adev->powerplay.pp_funcs->dispatch_tasks) {
Evan Quan39199b82017-12-29 14:46:13 +0800865 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
Rex Zhucd4d7462017-09-06 18:43:52 +0800866 } else {
Eric Huangf2bdc052016-05-24 15:11:17 -0400867 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
868 amdgpu_pm_compute_clocks(adev);
869 }
870
871fail:
872 return count;
873}
874
Alex Deucher6b2576f2018-04-19 14:38:31 -0500875/**
876 * DOC: pp_power_profile_mode
877 *
878 * The amdgpu driver provides a sysfs API for adjusting the heuristics
879 * related to switching between power levels in a power state. The file
880 * pp_power_profile_mode is used for this.
881 *
882 * Reading this file outputs a list of all of the predefined power profiles
883 * and the relevant heuristics settings for that profile.
884 *
885 * To select a profile or create a custom profile, first select manual using
886 * power_dpm_force_performance_level. Writing the number of a predefined
887 * profile to pp_power_profile_mode will enable those heuristics. To
888 * create a custom set of heuristics, write a string of numbers to the file
889 * starting with the number of the custom profile along with a setting
890 * for each heuristic parameter. Due to differences across asic families
891 * the heuristic parameters vary from family to family.
892 *
893 */
894
Rex Zhu37c5c4d2018-01-10 18:42:36 +0800895static ssize_t amdgpu_get_pp_power_profile_mode(struct device *dev,
896 struct device_attribute *attr,
897 char *buf)
898{
899 struct drm_device *ddev = dev_get_drvdata(dev);
900 struct amdgpu_device *adev = ddev->dev_private;
901
902 if (adev->powerplay.pp_funcs->get_power_profile_mode)
903 return amdgpu_dpm_get_power_profile_mode(adev, buf);
904
905 return snprintf(buf, PAGE_SIZE, "\n");
906}
907
908
909static ssize_t amdgpu_set_pp_power_profile_mode(struct device *dev,
910 struct device_attribute *attr,
911 const char *buf,
912 size_t count)
913{
914 int ret = 0xff;
915 struct drm_device *ddev = dev_get_drvdata(dev);
916 struct amdgpu_device *adev = ddev->dev_private;
917 uint32_t parameter_size = 0;
918 long parameter[64];
919 char *sub_str, buf_cpy[128];
920 char *tmp_str;
921 uint32_t i = 0;
922 char tmp[2];
923 long int profile_mode = 0;
924 const char delimiter[3] = {' ', '\n', '\0'};
925
926 tmp[0] = *(buf);
927 tmp[1] = '\0';
928 ret = kstrtol(tmp, 0, &profile_mode);
929 if (ret)
930 goto fail;
931
932 if (profile_mode == PP_SMC_POWER_PROFILE_CUSTOM) {
933 if (count < 2 || count > 127)
934 return -EINVAL;
935 while (isspace(*++buf))
936 i++;
937 memcpy(buf_cpy, buf, count-i);
938 tmp_str = buf_cpy;
939 while (tmp_str[0]) {
940 sub_str = strsep(&tmp_str, delimiter);
941 ret = kstrtol(sub_str, 0, &parameter[parameter_size]);
942 if (ret) {
943 count = -EINVAL;
944 goto fail;
945 }
Rex Zhu37c5c4d2018-01-10 18:42:36 +0800946 parameter_size++;
947 while (isspace(*tmp_str))
948 tmp_str++;
949 }
950 }
951 parameter[parameter_size] = profile_mode;
952 if (adev->powerplay.pp_funcs->set_power_profile_mode)
953 ret = amdgpu_dpm_set_power_profile_mode(adev, parameter, parameter_size);
954
955 if (!ret)
956 return count;
957fail:
958 return -EINVAL;
959}
960
Tom St Denisb374d822018-06-20 07:55:39 -0400961/**
962 * DOC: busy_percent
963 *
964 * The amdgpu driver provides a sysfs API for reading how busy the GPU
965 * is as a percentage. The file gpu_busy_percent is used for this.
966 * The SMU firmware computes a percentage of load based on the
967 * aggregate activity level in the IP cores.
968 */
969static ssize_t amdgpu_get_busy_percent(struct device *dev,
970 struct device_attribute *attr,
971 char *buf)
972{
973 struct drm_device *ddev = dev_get_drvdata(dev);
974 struct amdgpu_device *adev = ddev->dev_private;
975 int r, value, size = sizeof(value);
976
977 /* sanity check PP is enabled */
978 if (!(adev->powerplay.pp_funcs &&
979 adev->powerplay.pp_funcs->read_sensor))
980 return -EINVAL;
981
982 /* read the IP busy sensor */
983 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD,
984 (void *)&value, &size);
985 if (r)
986 return r;
987
988 return snprintf(buf, PAGE_SIZE, "%d\n", value);
989}
990
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400991static DEVICE_ATTR(power_dpm_state, S_IRUGO | S_IWUSR, amdgpu_get_dpm_state, amdgpu_set_dpm_state);
992static DEVICE_ATTR(power_dpm_force_performance_level, S_IRUGO | S_IWUSR,
993 amdgpu_get_dpm_forced_performance_level,
994 amdgpu_set_dpm_forced_performance_level);
Eric Huangf3898ea2015-12-11 16:24:34 -0500995static DEVICE_ATTR(pp_num_states, S_IRUGO, amdgpu_get_pp_num_states, NULL);
996static DEVICE_ATTR(pp_cur_state, S_IRUGO, amdgpu_get_pp_cur_state, NULL);
997static DEVICE_ATTR(pp_force_state, S_IRUGO | S_IWUSR,
998 amdgpu_get_pp_force_state,
999 amdgpu_set_pp_force_state);
1000static DEVICE_ATTR(pp_table, S_IRUGO | S_IWUSR,
1001 amdgpu_get_pp_table,
1002 amdgpu_set_pp_table);
1003static DEVICE_ATTR(pp_dpm_sclk, S_IRUGO | S_IWUSR,
1004 amdgpu_get_pp_dpm_sclk,
1005 amdgpu_set_pp_dpm_sclk);
1006static DEVICE_ATTR(pp_dpm_mclk, S_IRUGO | S_IWUSR,
1007 amdgpu_get_pp_dpm_mclk,
1008 amdgpu_set_pp_dpm_mclk);
1009static DEVICE_ATTR(pp_dpm_pcie, S_IRUGO | S_IWUSR,
1010 amdgpu_get_pp_dpm_pcie,
1011 amdgpu_set_pp_dpm_pcie);
Eric Huang428bafa2016-05-12 14:51:21 -04001012static DEVICE_ATTR(pp_sclk_od, S_IRUGO | S_IWUSR,
1013 amdgpu_get_pp_sclk_od,
1014 amdgpu_set_pp_sclk_od);
Eric Huangf2bdc052016-05-24 15:11:17 -04001015static DEVICE_ATTR(pp_mclk_od, S_IRUGO | S_IWUSR,
1016 amdgpu_get_pp_mclk_od,
1017 amdgpu_set_pp_mclk_od);
Rex Zhu37c5c4d2018-01-10 18:42:36 +08001018static DEVICE_ATTR(pp_power_profile_mode, S_IRUGO | S_IWUSR,
1019 amdgpu_get_pp_power_profile_mode,
1020 amdgpu_set_pp_power_profile_mode);
Rex Zhue3933f22018-01-16 18:35:15 +08001021static DEVICE_ATTR(pp_od_clk_voltage, S_IRUGO | S_IWUSR,
1022 amdgpu_get_pp_od_clk_voltage,
1023 amdgpu_set_pp_od_clk_voltage);
Tom St Denisb374d822018-06-20 07:55:39 -04001024static DEVICE_ATTR(gpu_busy_percent, S_IRUGO,
1025 amdgpu_get_busy_percent, NULL);
Rex Zhue3933f22018-01-16 18:35:15 +08001026
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001027static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
1028 struct device_attribute *attr,
1029 char *buf)
1030{
1031 struct amdgpu_device *adev = dev_get_drvdata(dev);
Alex Deucher0c67df42016-02-19 15:30:15 -05001032 struct drm_device *ddev = adev->ddev;
Alex Deucher71c9b9a2018-01-24 17:27:54 -05001033 int r, temp, size = sizeof(temp);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001034
Alex Deucher0c67df42016-02-19 15:30:15 -05001035 /* Can't get temperature when the card is off */
1036 if ((adev->flags & AMD_IS_PX) &&
1037 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1038 return -EINVAL;
1039
Alex Deucher71c9b9a2018-01-24 17:27:54 -05001040 /* sanity check PP is enabled */
1041 if (!(adev->powerplay.pp_funcs &&
1042 adev->powerplay.pp_funcs->read_sensor))
1043 return -EINVAL;
1044
1045 /* get the temperature */
1046 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP,
1047 (void *)&temp, &size);
1048 if (r)
1049 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001050
1051 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
1052}
1053
1054static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
1055 struct device_attribute *attr,
1056 char *buf)
1057{
1058 struct amdgpu_device *adev = dev_get_drvdata(dev);
1059 int hyst = to_sensor_dev_attr(attr)->index;
1060 int temp;
1061
1062 if (hyst)
1063 temp = adev->pm.dpm.thermal.min_temp;
1064 else
1065 temp = adev->pm.dpm.thermal.max_temp;
1066
1067 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
1068}
1069
1070static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
1071 struct device_attribute *attr,
1072 char *buf)
1073{
1074 struct amdgpu_device *adev = dev_get_drvdata(dev);
1075 u32 pwm_mode = 0;
1076
Rex Zhucd4d7462017-09-06 18:43:52 +08001077 if (!adev->powerplay.pp_funcs->get_fan_control_mode)
Rex Zhu8804b8d2015-11-10 18:29:11 -05001078 return -EINVAL;
1079
1080 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001081
Rex Zhuaad22ca2017-05-05 16:56:45 +08001082 return sprintf(buf, "%i\n", pwm_mode);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001083}
1084
1085static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
1086 struct device_attribute *attr,
1087 const char *buf,
1088 size_t count)
1089{
1090 struct amdgpu_device *adev = dev_get_drvdata(dev);
1091 int err;
1092 int value;
1093
Alex Deucher5ec36e22018-01-24 16:41:50 -05001094 /* Can't adjust fan when the card is off */
1095 if ((adev->flags & AMD_IS_PX) &&
1096 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1097 return -EINVAL;
1098
Rex Zhucd4d7462017-09-06 18:43:52 +08001099 if (!adev->powerplay.pp_funcs->set_fan_control_mode)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001100 return -EINVAL;
1101
1102 err = kstrtoint(buf, 10, &value);
1103 if (err)
1104 return err;
1105
Rex Zhuaad22ca2017-05-05 16:56:45 +08001106 amdgpu_dpm_set_fan_control_mode(adev, value);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001107
1108 return count;
1109}
1110
1111static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
1112 struct device_attribute *attr,
1113 char *buf)
1114{
1115 return sprintf(buf, "%i\n", 0);
1116}
1117
1118static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
1119 struct device_attribute *attr,
1120 char *buf)
1121{
1122 return sprintf(buf, "%i\n", 255);
1123}
1124
1125static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
1126 struct device_attribute *attr,
1127 const char *buf, size_t count)
1128{
1129 struct amdgpu_device *adev = dev_get_drvdata(dev);
1130 int err;
1131 u32 value;
Rex Zhub8a9c002018-09-28 16:01:48 +08001132 u32 pwm_mode;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001133
Alex Deucher5ec36e22018-01-24 16:41:50 -05001134 /* Can't adjust fan when the card is off */
1135 if ((adev->flags & AMD_IS_PX) &&
1136 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1137 return -EINVAL;
1138
Rex Zhub8a9c002018-09-28 16:01:48 +08001139 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
1140 if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
1141 pr_info("manual fan speed control should be enabled first\n");
1142 return -EINVAL;
1143 }
1144
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001145 err = kstrtou32(buf, 10, &value);
1146 if (err)
1147 return err;
1148
1149 value = (value * 100) / 255;
1150
Rex Zhucd4d7462017-09-06 18:43:52 +08001151 if (adev->powerplay.pp_funcs->set_fan_speed_percent) {
1152 err = amdgpu_dpm_set_fan_speed_percent(adev, value);
1153 if (err)
1154 return err;
1155 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001156
1157 return count;
1158}
1159
1160static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
1161 struct device_attribute *attr,
1162 char *buf)
1163{
1164 struct amdgpu_device *adev = dev_get_drvdata(dev);
1165 int err;
Rex Zhucd4d7462017-09-06 18:43:52 +08001166 u32 speed = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001167
Alex Deucher5ec36e22018-01-24 16:41:50 -05001168 /* Can't adjust fan when the card is off */
1169 if ((adev->flags & AMD_IS_PX) &&
1170 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1171 return -EINVAL;
1172
Rex Zhucd4d7462017-09-06 18:43:52 +08001173 if (adev->powerplay.pp_funcs->get_fan_speed_percent) {
1174 err = amdgpu_dpm_get_fan_speed_percent(adev, &speed);
1175 if (err)
1176 return err;
1177 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001178
1179 speed = (speed * 255) / 100;
1180
1181 return sprintf(buf, "%i\n", speed);
1182}
1183
Grazvydas Ignotas81c15142016-10-29 23:28:59 +03001184static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
1185 struct device_attribute *attr,
1186 char *buf)
1187{
1188 struct amdgpu_device *adev = dev_get_drvdata(dev);
1189 int err;
Rex Zhucd4d7462017-09-06 18:43:52 +08001190 u32 speed = 0;
Grazvydas Ignotas81c15142016-10-29 23:28:59 +03001191
Alex Deucher5ec36e22018-01-24 16:41:50 -05001192 /* Can't adjust fan when the card is off */
1193 if ((adev->flags & AMD_IS_PX) &&
1194 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1195 return -EINVAL;
1196
Rex Zhucd4d7462017-09-06 18:43:52 +08001197 if (adev->powerplay.pp_funcs->get_fan_speed_rpm) {
1198 err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
1199 if (err)
1200 return err;
1201 }
Grazvydas Ignotas81c15142016-10-29 23:28:59 +03001202
1203 return sprintf(buf, "%i\n", speed);
1204}
1205
Rex Zhuc2870522018-09-20 14:30:55 +08001206static ssize_t amdgpu_hwmon_get_fan1_min(struct device *dev,
1207 struct device_attribute *attr,
1208 char *buf)
1209{
1210 struct amdgpu_device *adev = dev_get_drvdata(dev);
1211 u32 min_rpm = 0;
1212 u32 size = sizeof(min_rpm);
1213 int r;
1214
1215 if (!adev->powerplay.pp_funcs->read_sensor)
1216 return -EINVAL;
1217
1218 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MIN_FAN_RPM,
1219 (void *)&min_rpm, &size);
1220 if (r)
1221 return r;
1222
1223 return snprintf(buf, PAGE_SIZE, "%d\n", min_rpm);
1224}
1225
1226static ssize_t amdgpu_hwmon_get_fan1_max(struct device *dev,
1227 struct device_attribute *attr,
1228 char *buf)
1229{
1230 struct amdgpu_device *adev = dev_get_drvdata(dev);
1231 u32 max_rpm = 0;
1232 u32 size = sizeof(max_rpm);
1233 int r;
1234
1235 if (!adev->powerplay.pp_funcs->read_sensor)
1236 return -EINVAL;
1237
1238 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MAX_FAN_RPM,
1239 (void *)&max_rpm, &size);
1240 if (r)
1241 return r;
1242
1243 return snprintf(buf, PAGE_SIZE, "%d\n", max_rpm);
1244}
1245
1246static ssize_t amdgpu_hwmon_get_fan1_target(struct device *dev,
1247 struct device_attribute *attr,
1248 char *buf)
1249{
1250 struct amdgpu_device *adev = dev_get_drvdata(dev);
1251 int err;
1252 u32 rpm = 0;
Rex Zhuc2870522018-09-20 14:30:55 +08001253
1254 /* Can't adjust fan when the card is off */
1255 if ((adev->flags & AMD_IS_PX) &&
1256 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1257 return -EINVAL;
1258
1259 if (adev->powerplay.pp_funcs->get_fan_speed_rpm) {
1260 err = amdgpu_dpm_get_fan_speed_rpm(adev, &rpm);
1261 if (err)
1262 return err;
1263 }
1264
1265 return sprintf(buf, "%i\n", rpm);
1266}
1267
1268static ssize_t amdgpu_hwmon_set_fan1_target(struct device *dev,
1269 struct device_attribute *attr,
1270 const char *buf, size_t count)
1271{
1272 struct amdgpu_device *adev = dev_get_drvdata(dev);
1273 int err;
1274 u32 value;
1275 u32 pwm_mode;
1276
1277 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
1278 if (pwm_mode != AMD_FAN_CTRL_MANUAL)
1279 return -ENODATA;
1280
1281 /* Can't adjust fan when the card is off */
1282 if ((adev->flags & AMD_IS_PX) &&
1283 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1284 return -EINVAL;
1285
1286 err = kstrtou32(buf, 10, &value);
1287 if (err)
1288 return err;
1289
1290 if (adev->powerplay.pp_funcs->set_fan_speed_rpm) {
1291 err = amdgpu_dpm_set_fan_speed_rpm(adev, value);
1292 if (err)
1293 return err;
1294 }
1295
1296 return count;
1297}
1298
1299static ssize_t amdgpu_hwmon_get_fan1_enable(struct device *dev,
1300 struct device_attribute *attr,
1301 char *buf)
1302{
1303 struct amdgpu_device *adev = dev_get_drvdata(dev);
1304 u32 pwm_mode = 0;
1305
1306 if (!adev->powerplay.pp_funcs->get_fan_control_mode)
1307 return -EINVAL;
1308
1309 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
1310
1311 return sprintf(buf, "%i\n", pwm_mode == AMD_FAN_CTRL_AUTO ? 0 : 1);
1312}
1313
1314static ssize_t amdgpu_hwmon_set_fan1_enable(struct device *dev,
1315 struct device_attribute *attr,
1316 const char *buf,
1317 size_t count)
1318{
1319 struct amdgpu_device *adev = dev_get_drvdata(dev);
1320 int err;
1321 int value;
1322 u32 pwm_mode;
1323
1324 /* Can't adjust fan when the card is off */
1325 if ((adev->flags & AMD_IS_PX) &&
1326 (adev->ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1327 return -EINVAL;
1328
1329 if (!adev->powerplay.pp_funcs->set_fan_control_mode)
1330 return -EINVAL;
1331
1332 err = kstrtoint(buf, 10, &value);
1333 if (err)
1334 return err;
1335
1336 if (value == 0)
1337 pwm_mode = AMD_FAN_CTRL_AUTO;
1338 else if (value == 1)
1339 pwm_mode = AMD_FAN_CTRL_MANUAL;
1340 else
1341 return -EINVAL;
1342
1343 amdgpu_dpm_set_fan_control_mode(adev, pwm_mode);
1344
1345 return count;
1346}
1347
Alex Deucher2bd376b2018-01-24 17:19:33 -05001348static ssize_t amdgpu_hwmon_show_vddgfx(struct device *dev,
1349 struct device_attribute *attr,
1350 char *buf)
1351{
1352 struct amdgpu_device *adev = dev_get_drvdata(dev);
1353 struct drm_device *ddev = adev->ddev;
1354 u32 vddgfx;
1355 int r, size = sizeof(vddgfx);
1356
1357 /* Can't get voltage when the card is off */
1358 if ((adev->flags & AMD_IS_PX) &&
1359 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1360 return -EINVAL;
1361
1362 /* sanity check PP is enabled */
1363 if (!(adev->powerplay.pp_funcs &&
1364 adev->powerplay.pp_funcs->read_sensor))
1365 return -EINVAL;
1366
1367 /* get the voltage */
1368 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX,
1369 (void *)&vddgfx, &size);
1370 if (r)
1371 return r;
1372
1373 return snprintf(buf, PAGE_SIZE, "%d\n", vddgfx);
1374}
1375
1376static ssize_t amdgpu_hwmon_show_vddgfx_label(struct device *dev,
1377 struct device_attribute *attr,
1378 char *buf)
1379{
1380 return snprintf(buf, PAGE_SIZE, "vddgfx\n");
1381}
1382
1383static ssize_t amdgpu_hwmon_show_vddnb(struct device *dev,
1384 struct device_attribute *attr,
1385 char *buf)
1386{
1387 struct amdgpu_device *adev = dev_get_drvdata(dev);
1388 struct drm_device *ddev = adev->ddev;
1389 u32 vddnb;
1390 int r, size = sizeof(vddnb);
1391
1392 /* only APUs have vddnb */
Rex Zhuccf9ef02018-07-25 11:51:46 +08001393 if (!(adev->flags & AMD_IS_APU))
Alex Deucher2bd376b2018-01-24 17:19:33 -05001394 return -EINVAL;
1395
1396 /* Can't get voltage when the card is off */
1397 if ((adev->flags & AMD_IS_PX) &&
1398 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1399 return -EINVAL;
1400
1401 /* sanity check PP is enabled */
1402 if (!(adev->powerplay.pp_funcs &&
1403 adev->powerplay.pp_funcs->read_sensor))
1404 return -EINVAL;
1405
1406 /* get the voltage */
1407 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB,
1408 (void *)&vddnb, &size);
1409 if (r)
1410 return r;
1411
1412 return snprintf(buf, PAGE_SIZE, "%d\n", vddnb);
1413}
1414
1415static ssize_t amdgpu_hwmon_show_vddnb_label(struct device *dev,
1416 struct device_attribute *attr,
1417 char *buf)
1418{
1419 return snprintf(buf, PAGE_SIZE, "vddnb\n");
1420}
1421
Alex Deucher2976fc22018-01-24 18:34:26 -05001422static ssize_t amdgpu_hwmon_show_power_avg(struct device *dev,
1423 struct device_attribute *attr,
1424 char *buf)
1425{
1426 struct amdgpu_device *adev = dev_get_drvdata(dev);
1427 struct drm_device *ddev = adev->ddev;
Rex Zhu5b79d042018-04-04 15:37:35 +08001428 u32 query = 0;
1429 int r, size = sizeof(u32);
Alex Deucher2976fc22018-01-24 18:34:26 -05001430 unsigned uw;
1431
1432 /* Can't get power when the card is off */
1433 if ((adev->flags & AMD_IS_PX) &&
1434 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
1435 return -EINVAL;
1436
1437 /* sanity check PP is enabled */
1438 if (!(adev->powerplay.pp_funcs &&
1439 adev->powerplay.pp_funcs->read_sensor))
1440 return -EINVAL;
1441
1442 /* get the voltage */
1443 r = amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER,
1444 (void *)&query, &size);
1445 if (r)
1446 return r;
1447
1448 /* convert to microwatts */
Rex Zhu5b79d042018-04-04 15:37:35 +08001449 uw = (query >> 8) * 1000000 + (query & 0xff) * 1000;
Alex Deucher2976fc22018-01-24 18:34:26 -05001450
1451 return snprintf(buf, PAGE_SIZE, "%u\n", uw);
1452}
1453
Rex Zhu8d81bce2018-01-29 18:07:01 +08001454static ssize_t amdgpu_hwmon_show_power_cap_min(struct device *dev,
1455 struct device_attribute *attr,
1456 char *buf)
1457{
1458 return sprintf(buf, "%i\n", 0);
1459}
1460
1461static ssize_t amdgpu_hwmon_show_power_cap_max(struct device *dev,
1462 struct device_attribute *attr,
1463 char *buf)
1464{
1465 struct amdgpu_device *adev = dev_get_drvdata(dev);
1466 uint32_t limit = 0;
1467
1468 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->get_power_limit) {
1469 adev->powerplay.pp_funcs->get_power_limit(adev->powerplay.pp_handle, &limit, true);
1470 return snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
1471 } else {
1472 return snprintf(buf, PAGE_SIZE, "\n");
1473 }
1474}
1475
1476static ssize_t amdgpu_hwmon_show_power_cap(struct device *dev,
1477 struct device_attribute *attr,
1478 char *buf)
1479{
1480 struct amdgpu_device *adev = dev_get_drvdata(dev);
1481 uint32_t limit = 0;
1482
1483 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->get_power_limit) {
1484 adev->powerplay.pp_funcs->get_power_limit(adev->powerplay.pp_handle, &limit, false);
1485 return snprintf(buf, PAGE_SIZE, "%u\n", limit * 1000000);
1486 } else {
1487 return snprintf(buf, PAGE_SIZE, "\n");
1488 }
1489}
1490
1491
1492static ssize_t amdgpu_hwmon_set_power_cap(struct device *dev,
1493 struct device_attribute *attr,
1494 const char *buf,
1495 size_t count)
1496{
1497 struct amdgpu_device *adev = dev_get_drvdata(dev);
1498 int err;
1499 u32 value;
1500
1501 err = kstrtou32(buf, 10, &value);
1502 if (err)
1503 return err;
1504
1505 value = value / 1000000; /* convert to Watt */
1506 if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->set_power_limit) {
1507 err = adev->powerplay.pp_funcs->set_power_limit(adev->powerplay.pp_handle, value);
1508 if (err)
1509 return err;
1510 } else {
1511 return -EINVAL;
1512 }
1513
1514 return count;
1515}
1516
Alex Deucher844c5412018-03-26 12:56:56 -05001517
1518/**
1519 * DOC: hwmon
1520 *
1521 * The amdgpu driver exposes the following sensor interfaces:
Alex Deucherdc85db22018-06-01 12:28:14 -05001522 *
Alex Deucher844c5412018-03-26 12:56:56 -05001523 * - GPU temperature (via the on-die sensor)
Alex Deucherdc85db22018-06-01 12:28:14 -05001524 *
Alex Deucher844c5412018-03-26 12:56:56 -05001525 * - GPU voltage
Alex Deucherdc85db22018-06-01 12:28:14 -05001526 *
Alex Deucher844c5412018-03-26 12:56:56 -05001527 * - Northbridge voltage (APUs only)
Alex Deucherdc85db22018-06-01 12:28:14 -05001528 *
Alex Deucher844c5412018-03-26 12:56:56 -05001529 * - GPU power
Alex Deucherdc85db22018-06-01 12:28:14 -05001530 *
Alex Deucher844c5412018-03-26 12:56:56 -05001531 * - GPU fan
1532 *
1533 * hwmon interfaces for GPU temperature:
Alex Deucherdc85db22018-06-01 12:28:14 -05001534 *
Alex Deucher844c5412018-03-26 12:56:56 -05001535 * - temp1_input: the on die GPU temperature in millidegrees Celsius
Alex Deucherdc85db22018-06-01 12:28:14 -05001536 *
Alex Deucher844c5412018-03-26 12:56:56 -05001537 * - temp1_crit: temperature critical max value in millidegrees Celsius
Alex Deucherdc85db22018-06-01 12:28:14 -05001538 *
Alex Deucher844c5412018-03-26 12:56:56 -05001539 * - temp1_crit_hyst: temperature hysteresis for critical limit in millidegrees Celsius
1540 *
1541 * hwmon interfaces for GPU voltage:
Alex Deucherdc85db22018-06-01 12:28:14 -05001542 *
Alex Deucher844c5412018-03-26 12:56:56 -05001543 * - in0_input: the voltage on the GPU in millivolts
Alex Deucherdc85db22018-06-01 12:28:14 -05001544 *
Alex Deucher844c5412018-03-26 12:56:56 -05001545 * - in1_input: the voltage on the Northbridge in millivolts
1546 *
1547 * hwmon interfaces for GPU power:
Alex Deucherdc85db22018-06-01 12:28:14 -05001548 *
Alex Deucher844c5412018-03-26 12:56:56 -05001549 * - power1_average: average power used by the GPU in microWatts
Alex Deucherdc85db22018-06-01 12:28:14 -05001550 *
Alex Deucher844c5412018-03-26 12:56:56 -05001551 * - power1_cap_min: minimum cap supported in microWatts
Alex Deucherdc85db22018-06-01 12:28:14 -05001552 *
Alex Deucher844c5412018-03-26 12:56:56 -05001553 * - power1_cap_max: maximum cap supported in microWatts
Alex Deucherdc85db22018-06-01 12:28:14 -05001554 *
Alex Deucher844c5412018-03-26 12:56:56 -05001555 * - power1_cap: selected power cap in microWatts
1556 *
1557 * hwmon interfaces for GPU fan:
Alex Deucherdc85db22018-06-01 12:28:14 -05001558 *
Alex Deucher844c5412018-03-26 12:56:56 -05001559 * - pwm1: pulse width modulation fan level (0-255)
Alex Deucherdc85db22018-06-01 12:28:14 -05001560 *
1561 * - 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)
1562 *
Alex Deucher844c5412018-03-26 12:56:56 -05001563 * - pwm1_min: pulse width modulation fan control minimum level (0)
Alex Deucherdc85db22018-06-01 12:28:14 -05001564 *
Alex Deucher844c5412018-03-26 12:56:56 -05001565 * - pwm1_max: pulse width modulation fan control maximum level (255)
Alex Deucherdc85db22018-06-01 12:28:14 -05001566 *
Rex Zhuc2870522018-09-20 14:30:55 +08001567 * - fan1_min: an minimum value Unit: revolution/min (RPM)
1568 *
1569 * - fan1_max: an maxmum value Unit: revolution/max (RPM)
1570 *
Alex Deucher844c5412018-03-26 12:56:56 -05001571 * - fan1_input: fan speed in RPM
1572 *
Rex Zhuc2870522018-09-20 14:30:55 +08001573 * - fan[1-*]_target: Desired fan speed Unit: revolution/min (RPM)
1574 *
1575 * - fan[1-*]_enable: Enable or disable the sensors.1: Enable 0: Disable
1576 *
Alex Deucher844c5412018-03-26 12:56:56 -05001577 * You can use hwmon tools like sensors to view this information on your system.
1578 *
1579 */
1580
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001581static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, 0);
1582static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
1583static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
1584static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
1585static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
1586static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
1587static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
Grazvydas Ignotas81c15142016-10-29 23:28:59 +03001588static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
Rex Zhuc2870522018-09-20 14:30:55 +08001589static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO, amdgpu_hwmon_get_fan1_min, NULL, 0);
1590static SENSOR_DEVICE_ATTR(fan1_max, S_IRUGO, amdgpu_hwmon_get_fan1_max, NULL, 0);
1591static SENSOR_DEVICE_ATTR(fan1_target, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_target, amdgpu_hwmon_set_fan1_target, 0);
1592static SENSOR_DEVICE_ATTR(fan1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_enable, amdgpu_hwmon_set_fan1_enable, 0);
Alex Deucher2bd376b2018-01-24 17:19:33 -05001593static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, amdgpu_hwmon_show_vddgfx, NULL, 0);
1594static SENSOR_DEVICE_ATTR(in0_label, S_IRUGO, amdgpu_hwmon_show_vddgfx_label, NULL, 0);
1595static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, amdgpu_hwmon_show_vddnb, NULL, 0);
1596static SENSOR_DEVICE_ATTR(in1_label, S_IRUGO, amdgpu_hwmon_show_vddnb_label, NULL, 0);
Alex Deucher2976fc22018-01-24 18:34:26 -05001597static SENSOR_DEVICE_ATTR(power1_average, S_IRUGO, amdgpu_hwmon_show_power_avg, NULL, 0);
Rex Zhu8d81bce2018-01-29 18:07:01 +08001598static SENSOR_DEVICE_ATTR(power1_cap_max, S_IRUGO, amdgpu_hwmon_show_power_cap_max, NULL, 0);
1599static SENSOR_DEVICE_ATTR(power1_cap_min, S_IRUGO, amdgpu_hwmon_show_power_cap_min, NULL, 0);
1600static SENSOR_DEVICE_ATTR(power1_cap, S_IRUGO | S_IWUSR, amdgpu_hwmon_show_power_cap, amdgpu_hwmon_set_power_cap, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001601
1602static struct attribute *hwmon_attributes[] = {
1603 &sensor_dev_attr_temp1_input.dev_attr.attr,
1604 &sensor_dev_attr_temp1_crit.dev_attr.attr,
1605 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
1606 &sensor_dev_attr_pwm1.dev_attr.attr,
1607 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
1608 &sensor_dev_attr_pwm1_min.dev_attr.attr,
1609 &sensor_dev_attr_pwm1_max.dev_attr.attr,
Grazvydas Ignotas81c15142016-10-29 23:28:59 +03001610 &sensor_dev_attr_fan1_input.dev_attr.attr,
Rex Zhuc2870522018-09-20 14:30:55 +08001611 &sensor_dev_attr_fan1_min.dev_attr.attr,
1612 &sensor_dev_attr_fan1_max.dev_attr.attr,
1613 &sensor_dev_attr_fan1_target.dev_attr.attr,
1614 &sensor_dev_attr_fan1_enable.dev_attr.attr,
Alex Deucher2bd376b2018-01-24 17:19:33 -05001615 &sensor_dev_attr_in0_input.dev_attr.attr,
1616 &sensor_dev_attr_in0_label.dev_attr.attr,
1617 &sensor_dev_attr_in1_input.dev_attr.attr,
1618 &sensor_dev_attr_in1_label.dev_attr.attr,
Alex Deucher2976fc22018-01-24 18:34:26 -05001619 &sensor_dev_attr_power1_average.dev_attr.attr,
Rex Zhu8d81bce2018-01-29 18:07:01 +08001620 &sensor_dev_attr_power1_cap_max.dev_attr.attr,
1621 &sensor_dev_attr_power1_cap_min.dev_attr.attr,
1622 &sensor_dev_attr_power1_cap.dev_attr.attr,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001623 NULL
1624};
1625
1626static umode_t hwmon_attributes_visible(struct kobject *kobj,
1627 struct attribute *attr, int index)
1628{
Geliang Tangcc29ec82016-01-13 22:48:42 +08001629 struct device *dev = kobj_to_dev(kobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001630 struct amdgpu_device *adev = dev_get_drvdata(dev);
1631 umode_t effective_mode = attr->mode;
1632
Rex Zhufc5a1362018-04-27 13:46:08 +08001633 /* Skip fan attributes if fan is not present */
1634 if (adev->pm.no_fan && (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
1635 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
1636 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
1637 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
Rex Zhuc2870522018-09-20 14:30:55 +08001638 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
1639 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
1640 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
1641 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
1642 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
Rex Zhufc5a1362018-04-27 13:46:08 +08001643 return 0;
Alex Deucher135f9712017-11-20 17:49:53 -05001644
Rex Zhu1b5708f2015-11-10 18:25:24 -05001645 /* Skip limit attributes if DPM is not enabled */
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001646 if (!adev->pm.dpm_enabled &&
1647 (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
Alex Deucher27100732015-10-19 15:49:11 -04001648 attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
1649 attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
1650 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
1651 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
Rex Zhuc2870522018-09-20 14:30:55 +08001652 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
1653 attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
1654 attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
1655 attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
1656 attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
1657 attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001658 return 0;
1659
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001660 /* mask fan attributes if we have no bindings for this asic to expose */
Rex Zhucd4d7462017-09-06 18:43:52 +08001661 if ((!adev->powerplay.pp_funcs->get_fan_speed_percent &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001662 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
Rex Zhucd4d7462017-09-06 18:43:52 +08001663 (!adev->powerplay.pp_funcs->get_fan_control_mode &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001664 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
1665 effective_mode &= ~S_IRUGO;
1666
Rex Zhucd4d7462017-09-06 18:43:52 +08001667 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001668 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
Rex Zhucd4d7462017-09-06 18:43:52 +08001669 (!adev->powerplay.pp_funcs->set_fan_control_mode &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001670 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
1671 effective_mode &= ~S_IWUSR;
1672
Rex Zhu8d81bce2018-01-29 18:07:01 +08001673 if ((adev->flags & AMD_IS_APU) &&
1674 (attr == &sensor_dev_attr_power1_cap_max.dev_attr.attr ||
1675 attr == &sensor_dev_attr_power1_cap_min.dev_attr.attr||
1676 attr == &sensor_dev_attr_power1_cap.dev_attr.attr))
1677 return 0;
1678
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001679 /* hide max/min values if we can't both query and manage the fan */
Rex Zhucd4d7462017-09-06 18:43:52 +08001680 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
1681 !adev->powerplay.pp_funcs->get_fan_speed_percent) &&
Rex Zhuc2870522018-09-20 14:30:55 +08001682 (!adev->powerplay.pp_funcs->set_fan_speed_rpm &&
1683 !adev->powerplay.pp_funcs->get_fan_speed_rpm) &&
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001684 (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
1685 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
1686 return 0;
1687
Rex Zhuc2870522018-09-20 14:30:55 +08001688 if ((!adev->powerplay.pp_funcs->set_fan_speed_rpm &&
1689 !adev->powerplay.pp_funcs->get_fan_speed_rpm) &&
1690 (attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
1691 attr == &sensor_dev_attr_fan1_min.dev_attr.attr))
1692 return 0;
1693
Alex Deucher0d35bc782018-01-24 17:57:19 -05001694 /* only APUs have vddnb */
1695 if (!(adev->flags & AMD_IS_APU) &&
1696 (attr == &sensor_dev_attr_in1_input.dev_attr.attr ||
1697 attr == &sensor_dev_attr_in1_label.dev_attr.attr))
Grazvydas Ignotas81c15142016-10-29 23:28:59 +03001698 return 0;
1699
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001700 return effective_mode;
1701}
1702
1703static const struct attribute_group hwmon_attrgroup = {
1704 .attrs = hwmon_attributes,
1705 .is_visible = hwmon_attributes_visible,
1706};
1707
1708static const struct attribute_group *hwmon_groups[] = {
1709 &hwmon_attrgroup,
1710 NULL
1711};
1712
1713void amdgpu_dpm_thermal_work_handler(struct work_struct *work)
1714{
1715 struct amdgpu_device *adev =
1716 container_of(work, struct amdgpu_device,
1717 pm.dpm.thermal.work);
1718 /* switch to the thermal state */
Rex Zhu3a2c7882015-08-25 15:57:43 +08001719 enum amd_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
Alex Deucher71c9b9a2018-01-24 17:27:54 -05001720 int temp, size = sizeof(temp);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001721
1722 if (!adev->pm.dpm_enabled)
1723 return;
1724
Alex Deucher71c9b9a2018-01-24 17:27:54 -05001725 if (adev->powerplay.pp_funcs &&
1726 adev->powerplay.pp_funcs->read_sensor &&
1727 !amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP,
1728 (void *)&temp, &size)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001729 if (temp < adev->pm.dpm.thermal.min_temp)
1730 /* switch back the user state */
1731 dpm_state = adev->pm.dpm.user_state;
1732 } else {
1733 if (adev->pm.dpm.thermal.high_to_low)
1734 /* switch back the user state */
1735 dpm_state = adev->pm.dpm.user_state;
1736 }
1737 mutex_lock(&adev->pm.mutex);
1738 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
1739 adev->pm.dpm.thermal_active = true;
1740 else
1741 adev->pm.dpm.thermal_active = false;
1742 adev->pm.dpm.state = dpm_state;
1743 mutex_unlock(&adev->pm.mutex);
1744
1745 amdgpu_pm_compute_clocks(adev);
1746}
1747
1748static struct amdgpu_ps *amdgpu_dpm_pick_power_state(struct amdgpu_device *adev,
Rex Zhu3a2c7882015-08-25 15:57:43 +08001749 enum amd_pm_state_type dpm_state)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001750{
1751 int i;
1752 struct amdgpu_ps *ps;
1753 u32 ui_class;
1754 bool single_display = (adev->pm.dpm.new_active_crtc_count < 2) ?
1755 true : false;
1756
1757 /* check if the vblank period is too short to adjust the mclk */
Rex Zhucd4d7462017-09-06 18:43:52 +08001758 if (single_display && adev->powerplay.pp_funcs->vblank_too_short) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001759 if (amdgpu_dpm_vblank_too_short(adev))
1760 single_display = false;
1761 }
1762
1763 /* certain older asics have a separare 3D performance state,
1764 * so try that first if the user selected performance
1765 */
1766 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
1767 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
1768 /* balanced states don't exist at the moment */
1769 if (dpm_state == POWER_STATE_TYPE_BALANCED)
1770 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1771
1772restart_search:
1773 /* Pick the best power state based on current conditions */
1774 for (i = 0; i < adev->pm.dpm.num_ps; i++) {
1775 ps = &adev->pm.dpm.ps[i];
1776 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
1777 switch (dpm_state) {
1778 /* user states */
1779 case POWER_STATE_TYPE_BATTERY:
1780 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
1781 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1782 if (single_display)
1783 return ps;
1784 } else
1785 return ps;
1786 }
1787 break;
1788 case POWER_STATE_TYPE_BALANCED:
1789 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
1790 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1791 if (single_display)
1792 return ps;
1793 } else
1794 return ps;
1795 }
1796 break;
1797 case POWER_STATE_TYPE_PERFORMANCE:
1798 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
1799 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1800 if (single_display)
1801 return ps;
1802 } else
1803 return ps;
1804 }
1805 break;
1806 /* internal states */
1807 case POWER_STATE_TYPE_INTERNAL_UVD:
1808 if (adev->pm.dpm.uvd_ps)
1809 return adev->pm.dpm.uvd_ps;
1810 else
1811 break;
1812 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1813 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
1814 return ps;
1815 break;
1816 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1817 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
1818 return ps;
1819 break;
1820 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1821 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
1822 return ps;
1823 break;
1824 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1825 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
1826 return ps;
1827 break;
1828 case POWER_STATE_TYPE_INTERNAL_BOOT:
1829 return adev->pm.dpm.boot_ps;
1830 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1831 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
1832 return ps;
1833 break;
1834 case POWER_STATE_TYPE_INTERNAL_ACPI:
1835 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
1836 return ps;
1837 break;
1838 case POWER_STATE_TYPE_INTERNAL_ULV:
1839 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
1840 return ps;
1841 break;
1842 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1843 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
1844 return ps;
1845 break;
1846 default:
1847 break;
1848 }
1849 }
1850 /* use a fallback state if we didn't match */
1851 switch (dpm_state) {
1852 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1853 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
1854 goto restart_search;
1855 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1856 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1857 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1858 if (adev->pm.dpm.uvd_ps) {
1859 return adev->pm.dpm.uvd_ps;
1860 } else {
1861 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1862 goto restart_search;
1863 }
1864 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1865 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
1866 goto restart_search;
1867 case POWER_STATE_TYPE_INTERNAL_ACPI:
1868 dpm_state = POWER_STATE_TYPE_BATTERY;
1869 goto restart_search;
1870 case POWER_STATE_TYPE_BATTERY:
1871 case POWER_STATE_TYPE_BALANCED:
1872 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1873 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1874 goto restart_search;
1875 default:
1876 break;
1877 }
1878
1879 return NULL;
1880}
1881
1882static void amdgpu_dpm_change_power_state_locked(struct amdgpu_device *adev)
1883{
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001884 struct amdgpu_ps *ps;
Rex Zhu3a2c7882015-08-25 15:57:43 +08001885 enum amd_pm_state_type dpm_state;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001886 int ret;
Rex Zhucd4d7462017-09-06 18:43:52 +08001887 bool equal = false;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001888
1889 /* if dpm init failed */
1890 if (!adev->pm.dpm_enabled)
1891 return;
1892
1893 if (adev->pm.dpm.user_state != adev->pm.dpm.state) {
1894 /* add other state override checks here */
1895 if ((!adev->pm.dpm.thermal_active) &&
1896 (!adev->pm.dpm.uvd_active))
1897 adev->pm.dpm.state = adev->pm.dpm.user_state;
1898 }
1899 dpm_state = adev->pm.dpm.state;
1900
1901 ps = amdgpu_dpm_pick_power_state(adev, dpm_state);
1902 if (ps)
1903 adev->pm.dpm.requested_ps = ps;
1904 else
1905 return;
1906
Rex Zhucd4d7462017-09-06 18:43:52 +08001907 if (amdgpu_dpm == 1 && adev->powerplay.pp_funcs->print_power_state) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001908 printk("switching from power state:\n");
1909 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.current_ps);
1910 printk("switching to power state:\n");
1911 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.requested_ps);
1912 }
1913
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001914 /* update whether vce is active */
1915 ps->vce_active = adev->pm.dpm.vce_active;
Rex Zhucd4d7462017-09-06 18:43:52 +08001916 if (adev->powerplay.pp_funcs->display_configuration_changed)
1917 amdgpu_dpm_display_configuration_changed(adev);
Rex Zhu5e876c62016-10-14 19:23:34 +08001918
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001919 ret = amdgpu_dpm_pre_set_power_state(adev);
1920 if (ret)
Christian Königa27de352016-01-21 11:28:53 +01001921 return;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001922
Rex Zhucd4d7462017-09-06 18:43:52 +08001923 if (adev->powerplay.pp_funcs->check_state_equal) {
1924 if (0 != amdgpu_dpm_check_state_equal(adev, adev->pm.dpm.current_ps, adev->pm.dpm.requested_ps, &equal))
1925 equal = false;
1926 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001927
Rex Zhu5e876c62016-10-14 19:23:34 +08001928 if (equal)
1929 return;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001930
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001931 amdgpu_dpm_set_power_state(adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001932 amdgpu_dpm_post_set_power_state(adev);
1933
Alex Deuchereda1d1c2016-02-24 17:18:25 -05001934 adev->pm.dpm.current_active_crtcs = adev->pm.dpm.new_active_crtcs;
1935 adev->pm.dpm.current_active_crtc_count = adev->pm.dpm.new_active_crtc_count;
1936
Rex Zhucd4d7462017-09-06 18:43:52 +08001937 if (adev->powerplay.pp_funcs->force_performance_level) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001938 if (adev->pm.dpm.thermal_active) {
Rex Zhue5d03ac2016-12-23 14:39:41 +08001939 enum amd_dpm_forced_level level = adev->pm.dpm.forced_level;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001940 /* force low perf level for thermal */
Rex Zhue5d03ac2016-12-23 14:39:41 +08001941 amdgpu_dpm_force_performance_level(adev, AMD_DPM_FORCED_LEVEL_LOW);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001942 /* save the user's level */
1943 adev->pm.dpm.forced_level = level;
1944 } else {
1945 /* otherwise, user selected level */
1946 amdgpu_dpm_force_performance_level(adev, adev->pm.dpm.forced_level);
1947 }
1948 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001949}
1950
1951void amdgpu_dpm_enable_uvd(struct amdgpu_device *adev, bool enable)
1952{
Rex Zhub92c6282018-06-05 13:06:11 +08001953 if (adev->powerplay.pp_funcs->set_powergating_by_smu) {
Tom St Denise95a14a2016-07-28 09:40:07 -04001954 /* enable/disable UVD */
1955 mutex_lock(&adev->pm.mutex);
Rex Zhub92c6282018-06-05 13:06:11 +08001956 amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_UVD, !enable);
Tom St Denise95a14a2016-07-28 09:40:07 -04001957 mutex_unlock(&adev->pm.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001958 }
1959}
1960
1961void amdgpu_dpm_enable_vce(struct amdgpu_device *adev, bool enable)
1962{
Rex Zhub92c6282018-06-05 13:06:11 +08001963 if (adev->powerplay.pp_funcs->set_powergating_by_smu) {
Tom St Denise95a14a2016-07-28 09:40:07 -04001964 /* enable/disable VCE */
1965 mutex_lock(&adev->pm.mutex);
Rex Zhub92c6282018-06-05 13:06:11 +08001966 amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_VCE, !enable);
Tom St Denise95a14a2016-07-28 09:40:07 -04001967 mutex_unlock(&adev->pm.mutex);
Sonny Jiangb7a077692015-05-28 15:47:53 -04001968 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001969}
1970
1971void amdgpu_pm_print_power_states(struct amdgpu_device *adev)
1972{
1973 int i;
1974
Rex Zhucd4d7462017-09-06 18:43:52 +08001975 if (adev->powerplay.pp_funcs->print_power_state == NULL)
Rex Zhu1b5708f2015-11-10 18:25:24 -05001976 return;
1977
1978 for (i = 0; i < adev->pm.dpm.num_ps; i++)
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001979 amdgpu_dpm_print_power_state(adev, &adev->pm.dpm.ps[i]);
Rex Zhu1b5708f2015-11-10 18:25:24 -05001980
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001981}
1982
1983int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
1984{
1985 int ret;
1986
Alex Deucherc86f5ebf2015-10-23 10:45:14 -04001987 if (adev->pm.sysfs_initialized)
1988 return 0;
1989
Rex Zhud2f52ac2017-09-22 17:47:27 +08001990 if (adev->pm.dpm_enabled == 0)
1991 return 0;
1992
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001993 adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
1994 DRIVER_NAME, adev,
1995 hwmon_groups);
1996 if (IS_ERR(adev->pm.int_hwmon_dev)) {
1997 ret = PTR_ERR(adev->pm.int_hwmon_dev);
1998 dev_err(adev->dev,
1999 "Unable to register hwmon device: %d\n", ret);
2000 return ret;
2001 }
2002
2003 ret = device_create_file(adev->dev, &dev_attr_power_dpm_state);
2004 if (ret) {
2005 DRM_ERROR("failed to create device file for dpm state\n");
2006 return ret;
2007 }
2008 ret = device_create_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
2009 if (ret) {
2010 DRM_ERROR("failed to create device file for dpm state\n");
2011 return ret;
2012 }
Eric Huangf3898ea2015-12-11 16:24:34 -05002013
Rex Zhu6d07fe72017-09-25 18:51:50 +08002014
2015 ret = device_create_file(adev->dev, &dev_attr_pp_num_states);
2016 if (ret) {
2017 DRM_ERROR("failed to create device file pp_num_states\n");
2018 return ret;
2019 }
2020 ret = device_create_file(adev->dev, &dev_attr_pp_cur_state);
2021 if (ret) {
2022 DRM_ERROR("failed to create device file pp_cur_state\n");
2023 return ret;
2024 }
2025 ret = device_create_file(adev->dev, &dev_attr_pp_force_state);
2026 if (ret) {
2027 DRM_ERROR("failed to create device file pp_force_state\n");
2028 return ret;
2029 }
2030 ret = device_create_file(adev->dev, &dev_attr_pp_table);
2031 if (ret) {
2032 DRM_ERROR("failed to create device file pp_table\n");
2033 return ret;
Eric Huangf3898ea2015-12-11 16:24:34 -05002034 }
Eric Huangc85e2992016-05-19 15:41:25 -04002035
2036 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_sclk);
2037 if (ret) {
2038 DRM_ERROR("failed to create device file pp_dpm_sclk\n");
2039 return ret;
2040 }
2041 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
2042 if (ret) {
2043 DRM_ERROR("failed to create device file pp_dpm_mclk\n");
2044 return ret;
2045 }
2046 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_pcie);
2047 if (ret) {
2048 DRM_ERROR("failed to create device file pp_dpm_pcie\n");
2049 return ret;
2050 }
Eric Huang8b2e5742016-05-19 15:46:10 -04002051 ret = device_create_file(adev->dev, &dev_attr_pp_sclk_od);
2052 if (ret) {
2053 DRM_ERROR("failed to create device file pp_sclk_od\n");
2054 return ret;
2055 }
Eric Huangf2bdc052016-05-24 15:11:17 -04002056 ret = device_create_file(adev->dev, &dev_attr_pp_mclk_od);
2057 if (ret) {
2058 DRM_ERROR("failed to create device file pp_mclk_od\n");
2059 return ret;
2060 }
Eric Huang34bb2732016-09-12 16:17:44 -04002061 ret = device_create_file(adev->dev,
Rex Zhu37c5c4d2018-01-10 18:42:36 +08002062 &dev_attr_pp_power_profile_mode);
2063 if (ret) {
2064 DRM_ERROR("failed to create device file "
2065 "pp_power_profile_mode\n");
2066 return ret;
2067 }
Rex Zhue3933f22018-01-16 18:35:15 +08002068 ret = device_create_file(adev->dev,
2069 &dev_attr_pp_od_clk_voltage);
2070 if (ret) {
2071 DRM_ERROR("failed to create device file "
2072 "pp_od_clk_voltage\n");
2073 return ret;
2074 }
Tom St Denisb374d822018-06-20 07:55:39 -04002075 ret = device_create_file(adev->dev,
2076 &dev_attr_gpu_busy_percent);
2077 if (ret) {
2078 DRM_ERROR("failed to create device file "
2079 "gpu_busy_level\n");
2080 return ret;
2081 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002082 ret = amdgpu_debugfs_pm_init(adev);
2083 if (ret) {
2084 DRM_ERROR("Failed to register debugfs file for dpm!\n");
2085 return ret;
2086 }
2087
Alex Deucherc86f5ebf2015-10-23 10:45:14 -04002088 adev->pm.sysfs_initialized = true;
2089
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002090 return 0;
2091}
2092
2093void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
2094{
Rex Zhud2f52ac2017-09-22 17:47:27 +08002095 if (adev->pm.dpm_enabled == 0)
2096 return;
2097
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002098 if (adev->pm.int_hwmon_dev)
2099 hwmon_device_unregister(adev->pm.int_hwmon_dev);
2100 device_remove_file(adev->dev, &dev_attr_power_dpm_state);
2101 device_remove_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
Rex Zhu6d07fe72017-09-25 18:51:50 +08002102
2103 device_remove_file(adev->dev, &dev_attr_pp_num_states);
2104 device_remove_file(adev->dev, &dev_attr_pp_cur_state);
2105 device_remove_file(adev->dev, &dev_attr_pp_force_state);
2106 device_remove_file(adev->dev, &dev_attr_pp_table);
2107
Eric Huangc85e2992016-05-19 15:41:25 -04002108 device_remove_file(adev->dev, &dev_attr_pp_dpm_sclk);
2109 device_remove_file(adev->dev, &dev_attr_pp_dpm_mclk);
2110 device_remove_file(adev->dev, &dev_attr_pp_dpm_pcie);
Eric Huang8b2e5742016-05-19 15:46:10 -04002111 device_remove_file(adev->dev, &dev_attr_pp_sclk_od);
Eric Huangf2bdc052016-05-24 15:11:17 -04002112 device_remove_file(adev->dev, &dev_attr_pp_mclk_od);
Eric Huang34bb2732016-09-12 16:17:44 -04002113 device_remove_file(adev->dev,
Rex Zhu37c5c4d2018-01-10 18:42:36 +08002114 &dev_attr_pp_power_profile_mode);
Rex Zhue3933f22018-01-16 18:35:15 +08002115 device_remove_file(adev->dev,
2116 &dev_attr_pp_od_clk_voltage);
Tom St Denisb374d822018-06-20 07:55:39 -04002117 device_remove_file(adev->dev, &dev_attr_gpu_busy_percent);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002118}
2119
2120void amdgpu_pm_compute_clocks(struct amdgpu_device *adev)
2121{
Rex Zhu5e876c62016-10-14 19:23:34 +08002122 int i = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002123
2124 if (!adev->pm.dpm_enabled)
2125 return;
2126
Alex Deucherc10c8f72017-02-10 18:09:32 -05002127 if (adev->mode_info.num_crtc)
2128 amdgpu_display_bandwidth_update(adev);
Rex Zhu5e876c62016-10-14 19:23:34 +08002129
2130 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
2131 struct amdgpu_ring *ring = adev->rings[i];
2132 if (ring && ring->ready)
2133 amdgpu_fence_wait_empty(ring);
2134 }
2135
Rex Zhu6d07fe72017-09-25 18:51:50 +08002136 if (adev->powerplay.pp_funcs->dispatch_tasks) {
Rex Zhu51d45cb2018-04-27 14:09:30 +08002137 if (!amdgpu_device_has_dc_support(adev)) {
2138 mutex_lock(&adev->pm.mutex);
2139 amdgpu_dpm_get_active_displays(adev);
Alex Deucher70eb46d2018-06-28 12:44:25 -05002140 adev->pm.pm_display_cfg.num_display = adev->pm.dpm.new_active_crtc_count;
Rex Zhu51d45cb2018-04-27 14:09:30 +08002141 adev->pm.pm_display_cfg.vrefresh = amdgpu_dpm_get_vrefresh(adev);
2142 adev->pm.pm_display_cfg.min_vblank_time = amdgpu_dpm_get_vblank_time(adev);
2143 /* we have issues with mclk switching with refresh rates over 120 hz on the non-DC code. */
2144 if (adev->pm.pm_display_cfg.vrefresh > 120)
2145 adev->pm.pm_display_cfg.min_vblank_time = 0;
2146 if (adev->powerplay.pp_funcs->display_configuration_change)
2147 adev->powerplay.pp_funcs->display_configuration_change(
2148 adev->powerplay.pp_handle,
2149 &adev->pm.pm_display_cfg);
2150 mutex_unlock(&adev->pm.mutex);
2151 }
Evan Quan39199b82017-12-29 14:46:13 +08002152 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_DISPLAY_CONFIG_CHANGE, NULL);
Rex Zhu1b5708f2015-11-10 18:25:24 -05002153 } else {
2154 mutex_lock(&adev->pm.mutex);
Rex Zhu51d45cb2018-04-27 14:09:30 +08002155 amdgpu_dpm_get_active_displays(adev);
Rex Zhu1b5708f2015-11-10 18:25:24 -05002156 amdgpu_dpm_change_power_state_locked(adev);
Rex Zhu1b5708f2015-11-10 18:25:24 -05002157 mutex_unlock(&adev->pm.mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002158 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002159}
2160
2161/*
2162 * Debugfs info
2163 */
2164#if defined(CONFIG_DEBUG_FS)
2165
Tom St Denis3de4ec52016-09-19 12:48:52 -04002166static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
2167{
Eric Huangcd7b0c62017-02-07 16:37:48 -05002168 uint32_t value;
Alex Deucher505f8db2018-09-20 22:50:07 -05002169 uint64_t value64;
Rex Zhu5b79d042018-04-04 15:37:35 +08002170 uint32_t query = 0;
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002171 int size;
Tom St Denis3de4ec52016-09-19 12:48:52 -04002172
2173 /* sanity check PP is enabled */
2174 if (!(adev->powerplay.pp_funcs &&
2175 adev->powerplay.pp_funcs->read_sensor))
2176 return -EINVAL;
2177
2178 /* GPU Clocks */
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002179 size = sizeof(value);
Tom St Denis3de4ec52016-09-19 12:48:52 -04002180 seq_printf(m, "GFX Clocks and Power:\n");
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002181 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002182 seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002183 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002184 seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
Rex Zhu5ed8d652018-01-08 13:59:05 +08002185 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK, (void *)&value, &size))
2186 seq_printf(m, "\t%u MHz (PSTATE_SCLK)\n", value/100);
2187 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK, (void *)&value, &size))
2188 seq_printf(m, "\t%u MHz (PSTATE_MCLK)\n", value/100);
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002189 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002190 seq_printf(m, "\t%u mV (VDDGFX)\n", value);
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002191 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002192 seq_printf(m, "\t%u mV (VDDNB)\n", value);
Rex Zhu5b79d042018-04-04 15:37:35 +08002193 size = sizeof(uint32_t);
2194 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER, (void *)&query, &size))
2195 seq_printf(m, "\t%u.%u W (average GPU)\n", query >> 8, query & 0xff);
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002196 size = sizeof(value);
Tom St Denis3de4ec52016-09-19 12:48:52 -04002197 seq_printf(m, "\n");
2198
2199 /* GPU Temp */
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002200 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002201 seq_printf(m, "GPU Temperature: %u C\n", value/1000);
2202
2203 /* GPU Load */
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002204 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002205 seq_printf(m, "GPU Load: %u %%\n", value);
2206 seq_printf(m, "\n");
2207
Alex Deucher505f8db2018-09-20 22:50:07 -05002208 /* SMC feature mask */
2209 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_ENABLED_SMC_FEATURES_MASK, (void *)&value64, &size))
2210 seq_printf(m, "SMC Feature Mask: 0x%016llx\n", value64);
2211
Tom St Denis3de4ec52016-09-19 12:48:52 -04002212 /* UVD clocks */
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002213 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
Tom St Denis3de4ec52016-09-19 12:48:52 -04002214 if (!value) {
2215 seq_printf(m, "UVD: Disabled\n");
2216 } else {
2217 seq_printf(m, "UVD: Enabled\n");
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002218 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002219 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002220 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002221 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
2222 }
2223 }
2224 seq_printf(m, "\n");
2225
2226 /* VCE clocks */
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002227 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
Tom St Denis3de4ec52016-09-19 12:48:52 -04002228 if (!value) {
2229 seq_printf(m, "VCE: Disabled\n");
2230 } else {
2231 seq_printf(m, "VCE: Enabled\n");
Tom St Denis9f8df7d2017-02-09 14:29:01 -05002232 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
Tom St Denis3de4ec52016-09-19 12:48:52 -04002233 seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
2234 }
2235 }
2236
2237 return 0;
2238}
2239
Huang Ruia8503b12017-01-05 19:17:13 +08002240static void amdgpu_parse_cg_state(struct seq_file *m, u32 flags)
2241{
2242 int i;
2243
2244 for (i = 0; clocks[i].flag; i++)
2245 seq_printf(m, "\t%s: %s\n", clocks[i].name,
2246 (flags & clocks[i].flag) ? "On" : "Off");
2247}
2248
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002249static int amdgpu_debugfs_pm_info(struct seq_file *m, void *data)
2250{
2251 struct drm_info_node *node = (struct drm_info_node *) m->private;
2252 struct drm_device *dev = node->minor->dev;
2253 struct amdgpu_device *adev = dev->dev_private;
Alex Deucher0c67df42016-02-19 15:30:15 -05002254 struct drm_device *ddev = adev->ddev;
Huang Rui6cb2d4e2017-01-05 18:44:41 +08002255 u32 flags = 0;
2256
Alex Deucher2990a1f2017-12-15 16:18:00 -05002257 amdgpu_device_ip_get_clockgating_state(adev, &flags);
Huang Rui6cb2d4e2017-01-05 18:44:41 +08002258 seq_printf(m, "Clock Gating Flags Mask: 0x%x\n", flags);
Huang Ruia8503b12017-01-05 19:17:13 +08002259 amdgpu_parse_cg_state(m, flags);
2260 seq_printf(m, "\n");
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002261
Rex Zhu1b5708f2015-11-10 18:25:24 -05002262 if (!adev->pm.dpm_enabled) {
2263 seq_printf(m, "dpm not enabled\n");
2264 return 0;
2265 }
Alex Deucher0c67df42016-02-19 15:30:15 -05002266 if ((adev->flags & AMD_IS_PX) &&
2267 (ddev->switch_power_state != DRM_SWITCH_POWER_ON)) {
2268 seq_printf(m, "PX asic powered off\n");
Rex Zhu6d07fe72017-09-25 18:51:50 +08002269 } else if (adev->powerplay.pp_funcs->debugfs_print_current_performance_level) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002270 mutex_lock(&adev->pm.mutex);
Rex Zhucd4d7462017-09-06 18:43:52 +08002271 if (adev->powerplay.pp_funcs->debugfs_print_current_performance_level)
2272 adev->powerplay.pp_funcs->debugfs_print_current_performance_level(adev, m);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002273 else
2274 seq_printf(m, "Debugfs support not implemented for this asic\n");
2275 mutex_unlock(&adev->pm.mutex);
Rex Zhu6d07fe72017-09-25 18:51:50 +08002276 } else {
2277 return amdgpu_debugfs_pm_info_pp(m, adev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002278 }
2279
2280 return 0;
2281}
2282
Nils Wallménius06ab6832016-05-02 12:46:15 -04002283static const struct drm_info_list amdgpu_pm_info_list[] = {
Alex Deucherd38ceaf2015-04-20 16:55:21 -04002284 {"amdgpu_pm_info", amdgpu_debugfs_pm_info, 0, NULL},
2285};
2286#endif
2287
2288static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
2289{
2290#if defined(CONFIG_DEBUG_FS)
2291 return amdgpu_debugfs_add_files(adev, amdgpu_pm_info_list, ARRAY_SIZE(amdgpu_pm_info_list));
2292#else
2293 return 0;
2294#endif
2295}