]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c
drm/amdgpu: Pulling old prepare and submit for flip back
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_pm.c
CommitLineData
d38ceaf9
AD
1/*
2 * Permission is hereby granted, free of charge, to any person obtaining a
3 * copy of this software and associated documentation files (the "Software"),
4 * to deal in the Software without restriction, including without limitation
5 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 * and/or sell copies of the Software, and to permit persons to whom the
7 * Software is furnished to do so, subject to the following conditions:
8 *
9 * The above copyright notice and this permission notice shall be included in
10 * all copies or substantial portions of the Software.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
16 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
17 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
18 * OTHER DEALINGS IN THE SOFTWARE.
19 *
20 * Authors: Rafał Miłecki <zajec5@gmail.com>
21 * Alex Deucher <alexdeucher@gmail.com>
22 */
23#include <drm/drmP.h>
24#include "amdgpu.h"
25#include "amdgpu_drv.h"
26#include "amdgpu_pm.h"
27#include "amdgpu_dpm.h"
28#include "atom.h"
29#include <linux/power_supply.h>
30#include <linux/hwmon.h>
31#include <linux/hwmon-sysfs.h>
32
1b5708ff
RZ
33#include "amd_powerplay.h"
34
d38ceaf9
AD
35static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev);
36
a8503b15
HR
37static const struct cg_flag_name clocks[] = {
38 {AMD_CG_SUPPORT_GFX_MGCG, "Graphics Medium Grain Clock Gating"},
39 {AMD_CG_SUPPORT_GFX_MGLS, "Graphics Medium Grain memory Light Sleep"},
40 {AMD_CG_SUPPORT_GFX_CGCG, "Graphics Coarse Grain Clock Gating"},
41 {AMD_CG_SUPPORT_GFX_CGLS, "Graphics Coarse Grain memory Light Sleep"},
54170226 42 {AMD_CG_SUPPORT_GFX_CGTS, "Graphics Coarse Grain Tree Shader Clock Gating"},
a8503b15
HR
43 {AMD_CG_SUPPORT_GFX_CGTS_LS, "Graphics Coarse Grain Tree Shader Light Sleep"},
44 {AMD_CG_SUPPORT_GFX_CP_LS, "Graphics Command Processor Light Sleep"},
45 {AMD_CG_SUPPORT_GFX_RLC_LS, "Graphics Run List Controller Light Sleep"},
12ad27fa
HR
46 {AMD_CG_SUPPORT_GFX_3D_CGCG, "Graphics 3D Coarse Grain Clock Gating"},
47 {AMD_CG_SUPPORT_GFX_3D_CGLS, "Graphics 3D Coarse Grain memory Light Sleep"},
a8503b15
HR
48 {AMD_CG_SUPPORT_MC_LS, "Memory Controller Light Sleep"},
49 {AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
50 {AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
51 {AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
e96487a6 52 {AMD_CG_SUPPORT_BIF_MGCG, "Bus Interface Medium Grain Clock Gating"},
a8503b15
HR
53 {AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
54 {AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
55 {AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
56 {AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
57 {AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
f9abe35c
HR
58 {AMD_CG_SUPPORT_DRM_MGCG, "Digital Right Management Medium Grain Clock Gating"},
59 {AMD_CG_SUPPORT_DRM_LS, "Digital Right Management Light Sleep"},
a8503b15 60 {AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
f9abe35c 61 {AMD_CG_SUPPORT_DF_MGCG, "Data Fabric Medium Grain Clock Gating"},
a8503b15
HR
62 {0, NULL},
63};
64
d38ceaf9
AD
65void amdgpu_pm_acpi_event_handler(struct amdgpu_device *adev)
66{
e61710c5 67 if (adev->pp_enabled)
1b5708ff
RZ
68 /* TODO */
69 return;
70
d38ceaf9
AD
71 if (adev->pm.dpm_enabled) {
72 mutex_lock(&adev->pm.mutex);
73 if (power_supply_is_system_supplied() > 0)
74 adev->pm.dpm.ac_power = true;
75 else
76 adev->pm.dpm.ac_power = false;
cd4d7464 77 if (adev->powerplay.pp_funcs->enable_bapm)
d38ceaf9
AD
78 amdgpu_dpm_enable_bapm(adev, adev->pm.dpm.ac_power);
79 mutex_unlock(&adev->pm.mutex);
80 }
81}
82
83static ssize_t amdgpu_get_dpm_state(struct device *dev,
84 struct device_attribute *attr,
85 char *buf)
86{
87 struct drm_device *ddev = dev_get_drvdata(dev);
88 struct amdgpu_device *adev = ddev->dev_private;
1b5708ff
RZ
89 enum amd_pm_state_type pm;
90
cd4d7464 91 if (adev->powerplay.pp_funcs->get_current_power_state)
1b5708ff 92 pm = amdgpu_dpm_get_current_power_state(adev);
cd4d7464 93 else
1b5708ff 94 pm = adev->pm.dpm.user_state;
d38ceaf9
AD
95
96 return snprintf(buf, PAGE_SIZE, "%s\n",
97 (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
98 (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
99}
100
101static ssize_t amdgpu_set_dpm_state(struct device *dev,
102 struct device_attribute *attr,
103 const char *buf,
104 size_t count)
105{
106 struct drm_device *ddev = dev_get_drvdata(dev);
107 struct amdgpu_device *adev = ddev->dev_private;
1b5708ff 108 enum amd_pm_state_type state;
d38ceaf9 109
d38ceaf9 110 if (strncmp("battery", buf, strlen("battery")) == 0)
1b5708ff 111 state = POWER_STATE_TYPE_BATTERY;
d38ceaf9 112 else if (strncmp("balanced", buf, strlen("balanced")) == 0)
1b5708ff 113 state = POWER_STATE_TYPE_BALANCED;
d38ceaf9 114 else if (strncmp("performance", buf, strlen("performance")) == 0)
1b5708ff 115 state = POWER_STATE_TYPE_PERFORMANCE;
d38ceaf9 116 else {
d38ceaf9
AD
117 count = -EINVAL;
118 goto fail;
119 }
d38ceaf9 120
e61710c5 121 if (adev->pp_enabled) {
df1e6394 122 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_ENABLE_USER_STATE, &state, NULL);
1b5708ff
RZ
123 } else {
124 mutex_lock(&adev->pm.mutex);
125 adev->pm.dpm.user_state = state;
126 mutex_unlock(&adev->pm.mutex);
127
128 /* Can't set dpm state when the card is off */
129 if (!(adev->flags & AMD_IS_PX) ||
130 (ddev->switch_power_state == DRM_SWITCH_POWER_ON))
131 amdgpu_pm_compute_clocks(adev);
132 }
d38ceaf9
AD
133fail:
134 return count;
135}
136
137static ssize_t amdgpu_get_dpm_forced_performance_level(struct device *dev,
1b5708ff
RZ
138 struct device_attribute *attr,
139 char *buf)
d38ceaf9
AD
140{
141 struct drm_device *ddev = dev_get_drvdata(dev);
142 struct amdgpu_device *adev = ddev->dev_private;
cd4d7464 143 enum amd_dpm_forced_level level = 0xff;
d38ceaf9 144
0c67df48
AD
145 if ((adev->flags & AMD_IS_PX) &&
146 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
147 return snprintf(buf, PAGE_SIZE, "off\n");
148
cd4d7464
RZ
149 if (adev->powerplay.pp_funcs->get_performance_level)
150 level = amdgpu_dpm_get_performance_level(adev);
151 else
152 level = adev->pm.dpm.forced_level;
153
e5d03ac2 154 return snprintf(buf, PAGE_SIZE, "%s\n",
570272d2
RZ
155 (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
156 (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
157 (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
158 (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
159 (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
160 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
161 (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
162 (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
163 "unknown");
d38ceaf9
AD
164}
165
166static ssize_t amdgpu_set_dpm_forced_performance_level(struct device *dev,
167 struct device_attribute *attr,
168 const char *buf,
169 size_t count)
170{
171 struct drm_device *ddev = dev_get_drvdata(dev);
172 struct amdgpu_device *adev = ddev->dev_private;
e5d03ac2 173 enum amd_dpm_forced_level level;
cd4d7464 174 enum amd_dpm_forced_level current_level = 0xff;
d38ceaf9
AD
175 int ret = 0;
176
0c67df48
AD
177 /* Can't force performance level when the card is off */
178 if ((adev->flags & AMD_IS_PX) &&
179 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
180 return -EINVAL;
181
cd4d7464
RZ
182 if (adev->powerplay.pp_funcs->get_performance_level)
183 current_level = amdgpu_dpm_get_performance_level(adev);
3bd58979 184
d38ceaf9 185 if (strncmp("low", buf, strlen("low")) == 0) {
e5d03ac2 186 level = AMD_DPM_FORCED_LEVEL_LOW;
d38ceaf9 187 } else if (strncmp("high", buf, strlen("high")) == 0) {
e5d03ac2 188 level = AMD_DPM_FORCED_LEVEL_HIGH;
d38ceaf9 189 } else if (strncmp("auto", buf, strlen("auto")) == 0) {
e5d03ac2 190 level = AMD_DPM_FORCED_LEVEL_AUTO;
f3898ea1 191 } else if (strncmp("manual", buf, strlen("manual")) == 0) {
e5d03ac2 192 level = AMD_DPM_FORCED_LEVEL_MANUAL;
570272d2
RZ
193 } else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
194 level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
195 } else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
196 level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
197 } else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
198 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
199 } else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
200 level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
201 } else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
202 level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
203 } else {
d38ceaf9
AD
204 count = -EINVAL;
205 goto fail;
206 }
1b5708ff 207
3bd58979 208 if (current_level == level)
8e7afd34 209 return count;
3bd58979 210
cd4d7464 211 if (adev->powerplay.pp_funcs->force_performance_level) {
1b5708ff 212 mutex_lock(&adev->pm.mutex);
d38ceaf9
AD
213 if (adev->pm.dpm.thermal_active) {
214 count = -EINVAL;
10f950f6 215 mutex_unlock(&adev->pm.mutex);
d38ceaf9
AD
216 goto fail;
217 }
218 ret = amdgpu_dpm_force_performance_level(adev, level);
219 if (ret)
220 count = -EINVAL;
1b5708ff
RZ
221 else
222 adev->pm.dpm.forced_level = level;
223 mutex_unlock(&adev->pm.mutex);
d38ceaf9 224 }
570272d2 225
d38ceaf9 226fail:
d38ceaf9
AD
227 return count;
228}
229
f3898ea1
EH
230static ssize_t amdgpu_get_pp_num_states(struct device *dev,
231 struct device_attribute *attr,
232 char *buf)
233{
234 struct drm_device *ddev = dev_get_drvdata(dev);
235 struct amdgpu_device *adev = ddev->dev_private;
236 struct pp_states_info data;
237 int i, buf_len;
238
cd4d7464 239 if (adev->powerplay.pp_funcs->get_pp_num_states)
f3898ea1
EH
240 amdgpu_dpm_get_pp_num_states(adev, &data);
241
242 buf_len = snprintf(buf, PAGE_SIZE, "states: %d\n", data.nums);
243 for (i = 0; i < data.nums; i++)
244 buf_len += snprintf(buf + buf_len, PAGE_SIZE, "%d %s\n", i,
245 (data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
246 (data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
247 (data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
248 (data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
249
250 return buf_len;
251}
252
253static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
254 struct device_attribute *attr,
255 char *buf)
256{
257 struct drm_device *ddev = dev_get_drvdata(dev);
258 struct amdgpu_device *adev = ddev->dev_private;
259 struct pp_states_info data;
260 enum amd_pm_state_type pm = 0;
261 int i = 0;
262
cd4d7464
RZ
263 if (adev->powerplay.pp_funcs->get_current_power_state
264 && adev->powerplay.pp_funcs->get_pp_num_states) {
f3898ea1
EH
265 pm = amdgpu_dpm_get_current_power_state(adev);
266 amdgpu_dpm_get_pp_num_states(adev, &data);
267
268 for (i = 0; i < data.nums; i++) {
269 if (pm == data.states[i])
270 break;
271 }
272
273 if (i == data.nums)
274 i = -EINVAL;
275 }
276
277 return snprintf(buf, PAGE_SIZE, "%d\n", i);
278}
279
280static ssize_t amdgpu_get_pp_force_state(struct device *dev,
281 struct device_attribute *attr,
282 char *buf)
283{
284 struct drm_device *ddev = dev_get_drvdata(dev);
285 struct amdgpu_device *adev = ddev->dev_private;
f3898ea1 286
cd4d7464
RZ
287 if (adev->pp_force_state_enabled)
288 return amdgpu_get_pp_cur_state(dev, attr, buf);
289 else
f3898ea1
EH
290 return snprintf(buf, PAGE_SIZE, "\n");
291}
292
293static ssize_t amdgpu_set_pp_force_state(struct device *dev,
294 struct device_attribute *attr,
295 const char *buf,
296 size_t count)
297{
298 struct drm_device *ddev = dev_get_drvdata(dev);
299 struct amdgpu_device *adev = ddev->dev_private;
300 enum amd_pm_state_type state = 0;
041bf022 301 unsigned long idx;
f3898ea1
EH
302 int ret;
303
304 if (strlen(buf) == 1)
305 adev->pp_force_state_enabled = false;
041bf022
DC
306 else if (adev->pp_enabled) {
307 struct pp_states_info data;
f3898ea1 308
041bf022
DC
309 ret = kstrtoul(buf, 0, &idx);
310 if (ret || idx >= ARRAY_SIZE(data.states)) {
f3898ea1
EH
311 count = -EINVAL;
312 goto fail;
313 }
314
041bf022
DC
315 amdgpu_dpm_get_pp_num_states(adev, &data);
316 state = data.states[idx];
317 /* only set user selected power states */
318 if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
319 state != POWER_STATE_TYPE_DEFAULT) {
320 amdgpu_dpm_dispatch_task(adev,
df1e6394 321 AMD_PP_TASK_ENABLE_USER_STATE, &state, NULL);
041bf022 322 adev->pp_force_state_enabled = true;
f3898ea1
EH
323 }
324 }
325fail:
326 return count;
327}
328
329static ssize_t amdgpu_get_pp_table(struct device *dev,
330 struct device_attribute *attr,
331 char *buf)
332{
333 struct drm_device *ddev = dev_get_drvdata(dev);
334 struct amdgpu_device *adev = ddev->dev_private;
335 char *table = NULL;
1684d3ba 336 int size;
f3898ea1 337
cd4d7464 338 if (adev->powerplay.pp_funcs->get_pp_table)
f3898ea1
EH
339 size = amdgpu_dpm_get_pp_table(adev, &table);
340 else
341 return 0;
342
343 if (size >= PAGE_SIZE)
344 size = PAGE_SIZE - 1;
345
1684d3ba 346 memcpy(buf, table, size);
f3898ea1
EH
347
348 return size;
349}
350
351static ssize_t amdgpu_set_pp_table(struct device *dev,
352 struct device_attribute *attr,
353 const char *buf,
354 size_t count)
355{
356 struct drm_device *ddev = dev_get_drvdata(dev);
357 struct amdgpu_device *adev = ddev->dev_private;
358
cd4d7464 359 if (adev->powerplay.pp_funcs->set_pp_table)
f3898ea1
EH
360 amdgpu_dpm_set_pp_table(adev, buf, count);
361
362 return count;
363}
364
365static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
366 struct device_attribute *attr,
367 char *buf)
368{
369 struct drm_device *ddev = dev_get_drvdata(dev);
370 struct amdgpu_device *adev = ddev->dev_private;
f3898ea1 371
cd4d7464
RZ
372 if (adev->powerplay.pp_funcs->print_clock_levels)
373 return amdgpu_dpm_print_clock_levels(adev, PP_SCLK, buf);
374 else
375 return snprintf(buf, PAGE_SIZE, "\n");
f3898ea1
EH
376}
377
378static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
379 struct device_attribute *attr,
380 const char *buf,
381 size_t count)
382{
383 struct drm_device *ddev = dev_get_drvdata(dev);
384 struct amdgpu_device *adev = ddev->dev_private;
385 int ret;
386 long level;
5632708f
EH
387 uint32_t i, mask = 0;
388 char sub_str[2];
f3898ea1 389
14b33074
EH
390 for (i = 0; i < strlen(buf); i++) {
391 if (*(buf + i) == '\n')
392 continue;
5632708f
EH
393 sub_str[0] = *(buf + i);
394 sub_str[1] = '\0';
395 ret = kstrtol(sub_str, 0, &level);
f3898ea1 396
5632708f
EH
397 if (ret) {
398 count = -EINVAL;
399 goto fail;
400 }
401 mask |= 1 << level;
f3898ea1
EH
402 }
403
cd4d7464 404 if (adev->powerplay.pp_funcs->force_clock_level)
5632708f 405 amdgpu_dpm_force_clock_level(adev, PP_SCLK, mask);
cd4d7464 406
f3898ea1
EH
407fail:
408 return count;
409}
410
411static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
412 struct device_attribute *attr,
413 char *buf)
414{
415 struct drm_device *ddev = dev_get_drvdata(dev);
416 struct amdgpu_device *adev = ddev->dev_private;
f3898ea1 417
cd4d7464
RZ
418 if (adev->powerplay.pp_funcs->print_clock_levels)
419 return amdgpu_dpm_print_clock_levels(adev, PP_MCLK, buf);
420 else
421 return snprintf(buf, PAGE_SIZE, "\n");
f3898ea1
EH
422}
423
424static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
425 struct device_attribute *attr,
426 const char *buf,
427 size_t count)
428{
429 struct drm_device *ddev = dev_get_drvdata(dev);
430 struct amdgpu_device *adev = ddev->dev_private;
431 int ret;
432 long level;
5632708f
EH
433 uint32_t i, mask = 0;
434 char sub_str[2];
f3898ea1 435
14b33074
EH
436 for (i = 0; i < strlen(buf); i++) {
437 if (*(buf + i) == '\n')
438 continue;
5632708f
EH
439 sub_str[0] = *(buf + i);
440 sub_str[1] = '\0';
441 ret = kstrtol(sub_str, 0, &level);
f3898ea1 442
5632708f
EH
443 if (ret) {
444 count = -EINVAL;
445 goto fail;
446 }
447 mask |= 1 << level;
f3898ea1 448 }
cd4d7464 449 if (adev->powerplay.pp_funcs->force_clock_level)
5632708f 450 amdgpu_dpm_force_clock_level(adev, PP_MCLK, mask);
cd4d7464 451
f3898ea1
EH
452fail:
453 return count;
454}
455
456static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
457 struct device_attribute *attr,
458 char *buf)
459{
460 struct drm_device *ddev = dev_get_drvdata(dev);
461 struct amdgpu_device *adev = ddev->dev_private;
f3898ea1 462
cd4d7464
RZ
463 if (adev->powerplay.pp_funcs->print_clock_levels)
464 return amdgpu_dpm_print_clock_levels(adev, PP_PCIE, buf);
465 else
466 return snprintf(buf, PAGE_SIZE, "\n");
f3898ea1
EH
467}
468
469static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
470 struct device_attribute *attr,
471 const char *buf,
472 size_t count)
473{
474 struct drm_device *ddev = dev_get_drvdata(dev);
475 struct amdgpu_device *adev = ddev->dev_private;
476 int ret;
477 long level;
5632708f
EH
478 uint32_t i, mask = 0;
479 char sub_str[2];
f3898ea1 480
14b33074
EH
481 for (i = 0; i < strlen(buf); i++) {
482 if (*(buf + i) == '\n')
483 continue;
5632708f
EH
484 sub_str[0] = *(buf + i);
485 sub_str[1] = '\0';
486 ret = kstrtol(sub_str, 0, &level);
f3898ea1 487
5632708f
EH
488 if (ret) {
489 count = -EINVAL;
490 goto fail;
491 }
492 mask |= 1 << level;
f3898ea1 493 }
cd4d7464 494 if (adev->powerplay.pp_funcs->force_clock_level)
5632708f 495 amdgpu_dpm_force_clock_level(adev, PP_PCIE, mask);
cd4d7464 496
f3898ea1
EH
497fail:
498 return count;
499}
500
428bafa8
EH
501static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
502 struct device_attribute *attr,
503 char *buf)
504{
505 struct drm_device *ddev = dev_get_drvdata(dev);
506 struct amdgpu_device *adev = ddev->dev_private;
507 uint32_t value = 0;
508
cd4d7464 509 if (adev->powerplay.pp_funcs->get_sclk_od)
428bafa8
EH
510 value = amdgpu_dpm_get_sclk_od(adev);
511
512 return snprintf(buf, PAGE_SIZE, "%d\n", value);
513}
514
515static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
516 struct device_attribute *attr,
517 const char *buf,
518 size_t count)
519{
520 struct drm_device *ddev = dev_get_drvdata(dev);
521 struct amdgpu_device *adev = ddev->dev_private;
522 int ret;
523 long int value;
524
525 ret = kstrtol(buf, 0, &value);
526
527 if (ret) {
528 count = -EINVAL;
529 goto fail;
530 }
cd4d7464
RZ
531 if (adev->powerplay.pp_funcs->set_sclk_od)
532 amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
428bafa8 533
8b2e574d 534 if (adev->pp_enabled) {
df1e6394 535 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL, NULL);
cd4d7464 536 } else {
8b2e574d
EH
537 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
538 amdgpu_pm_compute_clocks(adev);
539 }
428bafa8
EH
540
541fail:
542 return count;
543}
544
f2bdc05f
EH
545static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
546 struct device_attribute *attr,
547 char *buf)
548{
549 struct drm_device *ddev = dev_get_drvdata(dev);
550 struct amdgpu_device *adev = ddev->dev_private;
551 uint32_t value = 0;
552
cd4d7464 553 if (adev->powerplay.pp_funcs->get_mclk_od)
f2bdc05f 554 value = amdgpu_dpm_get_mclk_od(adev);
f2bdc05f
EH
555
556 return snprintf(buf, PAGE_SIZE, "%d\n", value);
557}
558
559static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
560 struct device_attribute *attr,
561 const char *buf,
562 size_t count)
563{
564 struct drm_device *ddev = dev_get_drvdata(dev);
565 struct amdgpu_device *adev = ddev->dev_private;
566 int ret;
567 long int value;
568
569 ret = kstrtol(buf, 0, &value);
570
571 if (ret) {
572 count = -EINVAL;
573 goto fail;
574 }
cd4d7464
RZ
575 if (adev->powerplay.pp_funcs->set_mclk_od)
576 amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
f2bdc05f
EH
577
578 if (adev->pp_enabled) {
df1e6394 579 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_READJUST_POWER_STATE, NULL, NULL);
cd4d7464 580 } else {
f2bdc05f
EH
581 adev->pm.dpm.current_ps = adev->pm.dpm.boot_ps;
582 amdgpu_pm_compute_clocks(adev);
583 }
584
585fail:
586 return count;
587}
588
34bb2734
EH
589static ssize_t amdgpu_get_pp_power_profile(struct device *dev,
590 char *buf, struct amd_pp_profile *query)
591{
592 struct drm_device *ddev = dev_get_drvdata(dev);
593 struct amdgpu_device *adev = ddev->dev_private;
cd4d7464 594 int ret = 0xff;
34bb2734 595
cd4d7464 596 if (adev->powerplay.pp_funcs->get_power_profile_state)
34bb2734
EH
597 ret = amdgpu_dpm_get_power_profile_state(
598 adev, query);
34bb2734
EH
599
600 if (ret)
601 return ret;
602
603 return snprintf(buf, PAGE_SIZE,
604 "%d %d %d %d %d\n",
605 query->min_sclk / 100,
606 query->min_mclk / 100,
607 query->activity_threshold,
608 query->up_hyst,
609 query->down_hyst);
610}
611
612static ssize_t amdgpu_get_pp_gfx_power_profile(struct device *dev,
613 struct device_attribute *attr,
614 char *buf)
615{
616 struct amd_pp_profile query = {0};
617
618 query.type = AMD_PP_GFX_PROFILE;
619
620 return amdgpu_get_pp_power_profile(dev, buf, &query);
621}
622
623static ssize_t amdgpu_get_pp_compute_power_profile(struct device *dev,
624 struct device_attribute *attr,
625 char *buf)
626{
627 struct amd_pp_profile query = {0};
628
629 query.type = AMD_PP_COMPUTE_PROFILE;
630
631 return amdgpu_get_pp_power_profile(dev, buf, &query);
632}
633
634static ssize_t amdgpu_set_pp_power_profile(struct device *dev,
635 const char *buf,
636 size_t count,
637 struct amd_pp_profile *request)
638{
639 struct drm_device *ddev = dev_get_drvdata(dev);
640 struct amdgpu_device *adev = ddev->dev_private;
641 uint32_t loop = 0;
642 char *sub_str, buf_cpy[128], *tmp_str;
643 const char delimiter[3] = {' ', '\n', '\0'};
644 long int value;
cd4d7464 645 int ret = 0xff;
34bb2734
EH
646
647 if (strncmp("reset", buf, strlen("reset")) == 0) {
cd4d7464 648 if (adev->powerplay.pp_funcs->reset_power_profile_state)
34bb2734
EH
649 ret = amdgpu_dpm_reset_power_profile_state(
650 adev, request);
34bb2734
EH
651 if (ret) {
652 count = -EINVAL;
653 goto fail;
654 }
655 return count;
656 }
657
658 if (strncmp("set", buf, strlen("set")) == 0) {
cd4d7464 659 if (adev->powerplay.pp_funcs->set_power_profile_state)
34bb2734
EH
660 ret = amdgpu_dpm_set_power_profile_state(
661 adev, request);
cd4d7464 662
34bb2734
EH
663 if (ret) {
664 count = -EINVAL;
665 goto fail;
666 }
667 return count;
668 }
669
670 if (count + 1 >= 128) {
671 count = -EINVAL;
672 goto fail;
673 }
674
675 memcpy(buf_cpy, buf, count + 1);
676 tmp_str = buf_cpy;
677
678 while (tmp_str[0]) {
679 sub_str = strsep(&tmp_str, delimiter);
680 ret = kstrtol(sub_str, 0, &value);
681 if (ret) {
682 count = -EINVAL;
683 goto fail;
684 }
685
686 switch (loop) {
687 case 0:
688 /* input unit MHz convert to dpm table unit 10KHz*/
689 request->min_sclk = (uint32_t)value * 100;
690 break;
691 case 1:
692 /* input unit MHz convert to dpm table unit 10KHz*/
693 request->min_mclk = (uint32_t)value * 100;
694 break;
695 case 2:
696 request->activity_threshold = (uint16_t)value;
697 break;
698 case 3:
699 request->up_hyst = (uint8_t)value;
700 break;
701 case 4:
702 request->down_hyst = (uint8_t)value;
703 break;
704 default:
705 break;
706 }
707
708 loop++;
709 }
cd4d7464
RZ
710 if (adev->powerplay.pp_funcs->set_power_profile_state)
711 ret = amdgpu_dpm_set_power_profile_state(adev, request);
34bb2734
EH
712
713 if (ret)
714 count = -EINVAL;
715
716fail:
717 return count;
718}
719
720static ssize_t amdgpu_set_pp_gfx_power_profile(struct device *dev,
721 struct device_attribute *attr,
722 const char *buf,
723 size_t count)
724{
725 struct amd_pp_profile request = {0};
726
727 request.type = AMD_PP_GFX_PROFILE;
728
729 return amdgpu_set_pp_power_profile(dev, buf, count, &request);
730}
731
732static ssize_t amdgpu_set_pp_compute_power_profile(struct device *dev,
733 struct device_attribute *attr,
734 const char *buf,
735 size_t count)
736{
737 struct amd_pp_profile request = {0};
738
739 request.type = AMD_PP_COMPUTE_PROFILE;
740
741 return amdgpu_set_pp_power_profile(dev, buf, count, &request);
742}
743
d38ceaf9
AD
744static DEVICE_ATTR(power_dpm_state, S_IRUGO | S_IWUSR, amdgpu_get_dpm_state, amdgpu_set_dpm_state);
745static DEVICE_ATTR(power_dpm_force_performance_level, S_IRUGO | S_IWUSR,
746 amdgpu_get_dpm_forced_performance_level,
747 amdgpu_set_dpm_forced_performance_level);
f3898ea1
EH
748static DEVICE_ATTR(pp_num_states, S_IRUGO, amdgpu_get_pp_num_states, NULL);
749static DEVICE_ATTR(pp_cur_state, S_IRUGO, amdgpu_get_pp_cur_state, NULL);
750static DEVICE_ATTR(pp_force_state, S_IRUGO | S_IWUSR,
751 amdgpu_get_pp_force_state,
752 amdgpu_set_pp_force_state);
753static DEVICE_ATTR(pp_table, S_IRUGO | S_IWUSR,
754 amdgpu_get_pp_table,
755 amdgpu_set_pp_table);
756static DEVICE_ATTR(pp_dpm_sclk, S_IRUGO | S_IWUSR,
757 amdgpu_get_pp_dpm_sclk,
758 amdgpu_set_pp_dpm_sclk);
759static DEVICE_ATTR(pp_dpm_mclk, S_IRUGO | S_IWUSR,
760 amdgpu_get_pp_dpm_mclk,
761 amdgpu_set_pp_dpm_mclk);
762static DEVICE_ATTR(pp_dpm_pcie, S_IRUGO | S_IWUSR,
763 amdgpu_get_pp_dpm_pcie,
764 amdgpu_set_pp_dpm_pcie);
428bafa8
EH
765static DEVICE_ATTR(pp_sclk_od, S_IRUGO | S_IWUSR,
766 amdgpu_get_pp_sclk_od,
767 amdgpu_set_pp_sclk_od);
f2bdc05f
EH
768static DEVICE_ATTR(pp_mclk_od, S_IRUGO | S_IWUSR,
769 amdgpu_get_pp_mclk_od,
770 amdgpu_set_pp_mclk_od);
34bb2734
EH
771static DEVICE_ATTR(pp_gfx_power_profile, S_IRUGO | S_IWUSR,
772 amdgpu_get_pp_gfx_power_profile,
773 amdgpu_set_pp_gfx_power_profile);
774static DEVICE_ATTR(pp_compute_power_profile, S_IRUGO | S_IWUSR,
775 amdgpu_get_pp_compute_power_profile,
776 amdgpu_set_pp_compute_power_profile);
d38ceaf9
AD
777
778static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
779 struct device_attribute *attr,
780 char *buf)
781{
782 struct amdgpu_device *adev = dev_get_drvdata(dev);
0c67df48 783 struct drm_device *ddev = adev->ddev;
d38ceaf9
AD
784 int temp;
785
0c67df48
AD
786 /* Can't get temperature when the card is off */
787 if ((adev->flags & AMD_IS_PX) &&
788 (ddev->switch_power_state != DRM_SWITCH_POWER_ON))
789 return -EINVAL;
790
cd4d7464 791 if (!adev->powerplay.pp_funcs->get_temperature)
d38ceaf9 792 temp = 0;
8804b8d5
RZ
793 else
794 temp = amdgpu_dpm_get_temperature(adev);
d38ceaf9
AD
795
796 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
797}
798
799static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
800 struct device_attribute *attr,
801 char *buf)
802{
803 struct amdgpu_device *adev = dev_get_drvdata(dev);
804 int hyst = to_sensor_dev_attr(attr)->index;
805 int temp;
806
807 if (hyst)
808 temp = adev->pm.dpm.thermal.min_temp;
809 else
810 temp = adev->pm.dpm.thermal.max_temp;
811
812 return snprintf(buf, PAGE_SIZE, "%d\n", temp);
813}
814
815static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
816 struct device_attribute *attr,
817 char *buf)
818{
819 struct amdgpu_device *adev = dev_get_drvdata(dev);
820 u32 pwm_mode = 0;
821
cd4d7464 822 if (!adev->powerplay.pp_funcs->get_fan_control_mode)
8804b8d5
RZ
823 return -EINVAL;
824
825 pwm_mode = amdgpu_dpm_get_fan_control_mode(adev);
d38ceaf9 826
aad22ca4 827 return sprintf(buf, "%i\n", pwm_mode);
d38ceaf9
AD
828}
829
830static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
831 struct device_attribute *attr,
832 const char *buf,
833 size_t count)
834{
835 struct amdgpu_device *adev = dev_get_drvdata(dev);
836 int err;
837 int value;
838
cd4d7464 839 if (!adev->powerplay.pp_funcs->set_fan_control_mode)
d38ceaf9
AD
840 return -EINVAL;
841
842 err = kstrtoint(buf, 10, &value);
843 if (err)
844 return err;
845
aad22ca4 846 amdgpu_dpm_set_fan_control_mode(adev, value);
d38ceaf9
AD
847
848 return count;
849}
850
851static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
852 struct device_attribute *attr,
853 char *buf)
854{
855 return sprintf(buf, "%i\n", 0);
856}
857
858static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
859 struct device_attribute *attr,
860 char *buf)
861{
862 return sprintf(buf, "%i\n", 255);
863}
864
865static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
866 struct device_attribute *attr,
867 const char *buf, size_t count)
868{
869 struct amdgpu_device *adev = dev_get_drvdata(dev);
870 int err;
871 u32 value;
872
873 err = kstrtou32(buf, 10, &value);
874 if (err)
875 return err;
876
877 value = (value * 100) / 255;
878
cd4d7464
RZ
879 if (adev->powerplay.pp_funcs->set_fan_speed_percent) {
880 err = amdgpu_dpm_set_fan_speed_percent(adev, value);
881 if (err)
882 return err;
883 }
d38ceaf9
AD
884
885 return count;
886}
887
888static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
889 struct device_attribute *attr,
890 char *buf)
891{
892 struct amdgpu_device *adev = dev_get_drvdata(dev);
893 int err;
cd4d7464 894 u32 speed = 0;
d38ceaf9 895
cd4d7464
RZ
896 if (adev->powerplay.pp_funcs->get_fan_speed_percent) {
897 err = amdgpu_dpm_get_fan_speed_percent(adev, &speed);
898 if (err)
899 return err;
900 }
d38ceaf9
AD
901
902 speed = (speed * 255) / 100;
903
904 return sprintf(buf, "%i\n", speed);
905}
906
81c1514b
GI
907static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
908 struct device_attribute *attr,
909 char *buf)
910{
911 struct amdgpu_device *adev = dev_get_drvdata(dev);
912 int err;
cd4d7464 913 u32 speed = 0;
81c1514b 914
cd4d7464
RZ
915 if (adev->powerplay.pp_funcs->get_fan_speed_rpm) {
916 err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
917 if (err)
918 return err;
919 }
81c1514b
GI
920
921 return sprintf(buf, "%i\n", speed);
922}
923
d38ceaf9
AD
924static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, 0);
925static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
926static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
927static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
928static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
929static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
930static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
81c1514b 931static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
d38ceaf9
AD
932
933static struct attribute *hwmon_attributes[] = {
934 &sensor_dev_attr_temp1_input.dev_attr.attr,
935 &sensor_dev_attr_temp1_crit.dev_attr.attr,
936 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
937 &sensor_dev_attr_pwm1.dev_attr.attr,
938 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
939 &sensor_dev_attr_pwm1_min.dev_attr.attr,
940 &sensor_dev_attr_pwm1_max.dev_attr.attr,
81c1514b 941 &sensor_dev_attr_fan1_input.dev_attr.attr,
d38ceaf9
AD
942 NULL
943};
944
945static umode_t hwmon_attributes_visible(struct kobject *kobj,
946 struct attribute *attr, int index)
947{
cc29ec87 948 struct device *dev = kobj_to_dev(kobj);
d38ceaf9
AD
949 struct amdgpu_device *adev = dev_get_drvdata(dev);
950 umode_t effective_mode = attr->mode;
951
1b5708ff 952 /* Skip limit attributes if DPM is not enabled */
d38ceaf9
AD
953 if (!adev->pm.dpm_enabled &&
954 (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
27100735
AD
955 attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
956 attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
957 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
958 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
959 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
d38ceaf9
AD
960 return 0;
961
e61710c5 962 if (adev->pp_enabled)
8804b8d5
RZ
963 return effective_mode;
964
d38ceaf9
AD
965 /* Skip fan attributes if fan is not present */
966 if (adev->pm.no_fan &&
967 (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
968 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
969 attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
970 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
971 return 0;
972
973 /* mask fan attributes if we have no bindings for this asic to expose */
cd4d7464 974 if ((!adev->powerplay.pp_funcs->get_fan_speed_percent &&
d38ceaf9 975 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
cd4d7464 976 (!adev->powerplay.pp_funcs->get_fan_control_mode &&
d38ceaf9
AD
977 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
978 effective_mode &= ~S_IRUGO;
979
cd4d7464 980 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
d38ceaf9 981 attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
cd4d7464 982 (!adev->powerplay.pp_funcs->set_fan_control_mode &&
d38ceaf9
AD
983 attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
984 effective_mode &= ~S_IWUSR;
985
986 /* hide max/min values if we can't both query and manage the fan */
cd4d7464
RZ
987 if ((!adev->powerplay.pp_funcs->set_fan_speed_percent &&
988 !adev->powerplay.pp_funcs->get_fan_speed_percent) &&
d38ceaf9
AD
989 (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
990 attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
991 return 0;
992
81c1514b
GI
993 /* requires powerplay */
994 if (attr == &sensor_dev_attr_fan1_input.dev_attr.attr)
995 return 0;
996
d38ceaf9
AD
997 return effective_mode;
998}
999
1000static const struct attribute_group hwmon_attrgroup = {
1001 .attrs = hwmon_attributes,
1002 .is_visible = hwmon_attributes_visible,
1003};
1004
1005static const struct attribute_group *hwmon_groups[] = {
1006 &hwmon_attrgroup,
1007 NULL
1008};
1009
1010void amdgpu_dpm_thermal_work_handler(struct work_struct *work)
1011{
1012 struct amdgpu_device *adev =
1013 container_of(work, struct amdgpu_device,
1014 pm.dpm.thermal.work);
1015 /* switch to the thermal state */
3a2c788d 1016 enum amd_pm_state_type dpm_state = POWER_STATE_TYPE_INTERNAL_THERMAL;
d38ceaf9
AD
1017
1018 if (!adev->pm.dpm_enabled)
1019 return;
1020
cd4d7464 1021 if (adev->powerplay.pp_funcs->get_temperature) {
d38ceaf9
AD
1022 int temp = amdgpu_dpm_get_temperature(adev);
1023
1024 if (temp < adev->pm.dpm.thermal.min_temp)
1025 /* switch back the user state */
1026 dpm_state = adev->pm.dpm.user_state;
1027 } else {
1028 if (adev->pm.dpm.thermal.high_to_low)
1029 /* switch back the user state */
1030 dpm_state = adev->pm.dpm.user_state;
1031 }
1032 mutex_lock(&adev->pm.mutex);
1033 if (dpm_state == POWER_STATE_TYPE_INTERNAL_THERMAL)
1034 adev->pm.dpm.thermal_active = true;
1035 else
1036 adev->pm.dpm.thermal_active = false;
1037 adev->pm.dpm.state = dpm_state;
1038 mutex_unlock(&adev->pm.mutex);
1039
1040 amdgpu_pm_compute_clocks(adev);
1041}
1042
1043static struct amdgpu_ps *amdgpu_dpm_pick_power_state(struct amdgpu_device *adev,
3a2c788d 1044 enum amd_pm_state_type dpm_state)
d38ceaf9
AD
1045{
1046 int i;
1047 struct amdgpu_ps *ps;
1048 u32 ui_class;
1049 bool single_display = (adev->pm.dpm.new_active_crtc_count < 2) ?
1050 true : false;
1051
1052 /* check if the vblank period is too short to adjust the mclk */
cd4d7464 1053 if (single_display && adev->powerplay.pp_funcs->vblank_too_short) {
d38ceaf9
AD
1054 if (amdgpu_dpm_vblank_too_short(adev))
1055 single_display = false;
1056 }
1057
1058 /* certain older asics have a separare 3D performance state,
1059 * so try that first if the user selected performance
1060 */
1061 if (dpm_state == POWER_STATE_TYPE_PERFORMANCE)
1062 dpm_state = POWER_STATE_TYPE_INTERNAL_3DPERF;
1063 /* balanced states don't exist at the moment */
1064 if (dpm_state == POWER_STATE_TYPE_BALANCED)
1065 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1066
1067restart_search:
1068 /* Pick the best power state based on current conditions */
1069 for (i = 0; i < adev->pm.dpm.num_ps; i++) {
1070 ps = &adev->pm.dpm.ps[i];
1071 ui_class = ps->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK;
1072 switch (dpm_state) {
1073 /* user states */
1074 case POWER_STATE_TYPE_BATTERY:
1075 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BATTERY) {
1076 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1077 if (single_display)
1078 return ps;
1079 } else
1080 return ps;
1081 }
1082 break;
1083 case POWER_STATE_TYPE_BALANCED:
1084 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_BALANCED) {
1085 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1086 if (single_display)
1087 return ps;
1088 } else
1089 return ps;
1090 }
1091 break;
1092 case POWER_STATE_TYPE_PERFORMANCE:
1093 if (ui_class == ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE) {
1094 if (ps->caps & ATOM_PPLIB_SINGLE_DISPLAY_ONLY) {
1095 if (single_display)
1096 return ps;
1097 } else
1098 return ps;
1099 }
1100 break;
1101 /* internal states */
1102 case POWER_STATE_TYPE_INTERNAL_UVD:
1103 if (adev->pm.dpm.uvd_ps)
1104 return adev->pm.dpm.uvd_ps;
1105 else
1106 break;
1107 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1108 if (ps->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE)
1109 return ps;
1110 break;
1111 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1112 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE)
1113 return ps;
1114 break;
1115 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1116 if (ps->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE)
1117 return ps;
1118 break;
1119 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1120 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_MVC)
1121 return ps;
1122 break;
1123 case POWER_STATE_TYPE_INTERNAL_BOOT:
1124 return adev->pm.dpm.boot_ps;
1125 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1126 if (ps->class & ATOM_PPLIB_CLASSIFICATION_THERMAL)
1127 return ps;
1128 break;
1129 case POWER_STATE_TYPE_INTERNAL_ACPI:
1130 if (ps->class & ATOM_PPLIB_CLASSIFICATION_ACPI)
1131 return ps;
1132 break;
1133 case POWER_STATE_TYPE_INTERNAL_ULV:
1134 if (ps->class2 & ATOM_PPLIB_CLASSIFICATION2_ULV)
1135 return ps;
1136 break;
1137 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1138 if (ps->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE)
1139 return ps;
1140 break;
1141 default:
1142 break;
1143 }
1144 }
1145 /* use a fallback state if we didn't match */
1146 switch (dpm_state) {
1147 case POWER_STATE_TYPE_INTERNAL_UVD_SD:
1148 dpm_state = POWER_STATE_TYPE_INTERNAL_UVD_HD;
1149 goto restart_search;
1150 case POWER_STATE_TYPE_INTERNAL_UVD_HD:
1151 case POWER_STATE_TYPE_INTERNAL_UVD_HD2:
1152 case POWER_STATE_TYPE_INTERNAL_UVD_MVC:
1153 if (adev->pm.dpm.uvd_ps) {
1154 return adev->pm.dpm.uvd_ps;
1155 } else {
1156 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1157 goto restart_search;
1158 }
1159 case POWER_STATE_TYPE_INTERNAL_THERMAL:
1160 dpm_state = POWER_STATE_TYPE_INTERNAL_ACPI;
1161 goto restart_search;
1162 case POWER_STATE_TYPE_INTERNAL_ACPI:
1163 dpm_state = POWER_STATE_TYPE_BATTERY;
1164 goto restart_search;
1165 case POWER_STATE_TYPE_BATTERY:
1166 case POWER_STATE_TYPE_BALANCED:
1167 case POWER_STATE_TYPE_INTERNAL_3DPERF:
1168 dpm_state = POWER_STATE_TYPE_PERFORMANCE;
1169 goto restart_search;
1170 default:
1171 break;
1172 }
1173
1174 return NULL;
1175}
1176
1177static void amdgpu_dpm_change_power_state_locked(struct amdgpu_device *adev)
1178{
d38ceaf9 1179 struct amdgpu_ps *ps;
3a2c788d 1180 enum amd_pm_state_type dpm_state;
d38ceaf9 1181 int ret;
cd4d7464 1182 bool equal = false;
d38ceaf9
AD
1183
1184 /* if dpm init failed */
1185 if (!adev->pm.dpm_enabled)
1186 return;
1187
1188 if (adev->pm.dpm.user_state != adev->pm.dpm.state) {
1189 /* add other state override checks here */
1190 if ((!adev->pm.dpm.thermal_active) &&
1191 (!adev->pm.dpm.uvd_active))
1192 adev->pm.dpm.state = adev->pm.dpm.user_state;
1193 }
1194 dpm_state = adev->pm.dpm.state;
1195
1196 ps = amdgpu_dpm_pick_power_state(adev, dpm_state);
1197 if (ps)
1198 adev->pm.dpm.requested_ps = ps;
1199 else
1200 return;
1201
cd4d7464 1202 if (amdgpu_dpm == 1 && adev->powerplay.pp_funcs->print_power_state) {
d38ceaf9
AD
1203 printk("switching from power state:\n");
1204 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.current_ps);
1205 printk("switching to power state:\n");
1206 amdgpu_dpm_print_power_state(adev, adev->pm.dpm.requested_ps);
1207 }
1208
d38ceaf9
AD
1209 /* update whether vce is active */
1210 ps->vce_active = adev->pm.dpm.vce_active;
cd4d7464
RZ
1211 if (adev->powerplay.pp_funcs->display_configuration_changed)
1212 amdgpu_dpm_display_configuration_changed(adev);
5e876c62 1213
d38ceaf9
AD
1214 ret = amdgpu_dpm_pre_set_power_state(adev);
1215 if (ret)
a27de35c 1216 return;
d38ceaf9 1217
cd4d7464
RZ
1218 if (adev->powerplay.pp_funcs->check_state_equal) {
1219 if (0 != amdgpu_dpm_check_state_equal(adev, adev->pm.dpm.current_ps, adev->pm.dpm.requested_ps, &equal))
1220 equal = false;
1221 }
d38ceaf9 1222
5e876c62
RZ
1223 if (equal)
1224 return;
d38ceaf9 1225
d38ceaf9 1226 amdgpu_dpm_set_power_state(adev);
d38ceaf9
AD
1227 amdgpu_dpm_post_set_power_state(adev);
1228
eda1d1cf
AD
1229 adev->pm.dpm.current_active_crtcs = adev->pm.dpm.new_active_crtcs;
1230 adev->pm.dpm.current_active_crtc_count = adev->pm.dpm.new_active_crtc_count;
1231
cd4d7464 1232 if (adev->powerplay.pp_funcs->force_performance_level) {
d38ceaf9 1233 if (adev->pm.dpm.thermal_active) {
e5d03ac2 1234 enum amd_dpm_forced_level level = adev->pm.dpm.forced_level;
d38ceaf9 1235 /* force low perf level for thermal */
e5d03ac2 1236 amdgpu_dpm_force_performance_level(adev, AMD_DPM_FORCED_LEVEL_LOW);
d38ceaf9
AD
1237 /* save the user's level */
1238 adev->pm.dpm.forced_level = level;
1239 } else {
1240 /* otherwise, user selected level */
1241 amdgpu_dpm_force_performance_level(adev, adev->pm.dpm.forced_level);
1242 }
1243 }
d38ceaf9
AD
1244}
1245
1246void amdgpu_dpm_enable_uvd(struct amdgpu_device *adev, bool enable)
1247{
cd4d7464 1248 if (adev->powerplay.pp_funcs->powergate_uvd) {
e95a14a9
TSD
1249 /* enable/disable UVD */
1250 mutex_lock(&adev->pm.mutex);
d38ceaf9 1251 amdgpu_dpm_powergate_uvd(adev, !enable);
e95a14a9
TSD
1252 mutex_unlock(&adev->pm.mutex);
1253 } else {
1254 if (enable) {
d38ceaf9 1255 mutex_lock(&adev->pm.mutex);
e95a14a9
TSD
1256 adev->pm.dpm.uvd_active = true;
1257 adev->pm.dpm.state = POWER_STATE_TYPE_INTERNAL_UVD;
d38ceaf9
AD
1258 mutex_unlock(&adev->pm.mutex);
1259 } else {
e95a14a9
TSD
1260 mutex_lock(&adev->pm.mutex);
1261 adev->pm.dpm.uvd_active = false;
1262 mutex_unlock(&adev->pm.mutex);
d38ceaf9 1263 }
e95a14a9 1264 amdgpu_pm_compute_clocks(adev);
d38ceaf9
AD
1265 }
1266}
1267
1268void amdgpu_dpm_enable_vce(struct amdgpu_device *adev, bool enable)
1269{
cd4d7464 1270 if (adev->powerplay.pp_funcs->powergate_vce) {
e95a14a9
TSD
1271 /* enable/disable VCE */
1272 mutex_lock(&adev->pm.mutex);
b7a07769 1273 amdgpu_dpm_powergate_vce(adev, !enable);
e95a14a9
TSD
1274 mutex_unlock(&adev->pm.mutex);
1275 } else {
1276 if (enable) {
b7a07769 1277 mutex_lock(&adev->pm.mutex);
e95a14a9
TSD
1278 adev->pm.dpm.vce_active = true;
1279 /* XXX select vce level based on ring/task */
0d8de7ca 1280 adev->pm.dpm.vce_level = AMD_VCE_LEVEL_AC_ALL;
b7a07769 1281 mutex_unlock(&adev->pm.mutex);
beeea981
RZ
1282 amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1283 AMD_CG_STATE_UNGATE);
03a5f1df
RZ
1284 amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1285 AMD_PG_STATE_UNGATE);
1286 amdgpu_pm_compute_clocks(adev);
b7a07769 1287 } else {
beeea981
RZ
1288 amdgpu_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1289 AMD_PG_STATE_GATE);
1290 amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_VCE,
1291 AMD_CG_STATE_GATE);
e95a14a9
TSD
1292 mutex_lock(&adev->pm.mutex);
1293 adev->pm.dpm.vce_active = false;
1294 mutex_unlock(&adev->pm.mutex);
beeea981 1295 amdgpu_pm_compute_clocks(adev);
b7a07769 1296 }
beeea981 1297
b7a07769 1298 }
d38ceaf9
AD
1299}
1300
1301void amdgpu_pm_print_power_states(struct amdgpu_device *adev)
1302{
1303 int i;
1304
cd4d7464 1305 if (adev->powerplay.pp_funcs->print_power_state == NULL)
1b5708ff
RZ
1306 return;
1307
1308 for (i = 0; i < adev->pm.dpm.num_ps; i++)
d38ceaf9 1309 amdgpu_dpm_print_power_state(adev, &adev->pm.dpm.ps[i]);
1b5708ff 1310
d38ceaf9
AD
1311}
1312
1313int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
1314{
1315 int ret;
1316
c86f5ebf
AD
1317 if (adev->pm.sysfs_initialized)
1318 return 0;
1319
cd4d7464
RZ
1320 if (adev->powerplay.pp_funcs->get_temperature == NULL)
1321 return 0;
1b5708ff 1322
d38ceaf9
AD
1323 adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
1324 DRIVER_NAME, adev,
1325 hwmon_groups);
1326 if (IS_ERR(adev->pm.int_hwmon_dev)) {
1327 ret = PTR_ERR(adev->pm.int_hwmon_dev);
1328 dev_err(adev->dev,
1329 "Unable to register hwmon device: %d\n", ret);
1330 return ret;
1331 }
1332
1333 ret = device_create_file(adev->dev, &dev_attr_power_dpm_state);
1334 if (ret) {
1335 DRM_ERROR("failed to create device file for dpm state\n");
1336 return ret;
1337 }
1338 ret = device_create_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
1339 if (ret) {
1340 DRM_ERROR("failed to create device file for dpm state\n");
1341 return ret;
1342 }
f3898ea1
EH
1343
1344 if (adev->pp_enabled) {
1345 ret = device_create_file(adev->dev, &dev_attr_pp_num_states);
1346 if (ret) {
1347 DRM_ERROR("failed to create device file pp_num_states\n");
1348 return ret;
1349 }
1350 ret = device_create_file(adev->dev, &dev_attr_pp_cur_state);
1351 if (ret) {
1352 DRM_ERROR("failed to create device file pp_cur_state\n");
1353 return ret;
1354 }
1355 ret = device_create_file(adev->dev, &dev_attr_pp_force_state);
1356 if (ret) {
1357 DRM_ERROR("failed to create device file pp_force_state\n");
1358 return ret;
1359 }
1360 ret = device_create_file(adev->dev, &dev_attr_pp_table);
1361 if (ret) {
1362 DRM_ERROR("failed to create device file pp_table\n");
1363 return ret;
1364 }
f3898ea1 1365 }
c85e299f
EH
1366
1367 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_sclk);
1368 if (ret) {
1369 DRM_ERROR("failed to create device file pp_dpm_sclk\n");
1370 return ret;
1371 }
1372 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_mclk);
1373 if (ret) {
1374 DRM_ERROR("failed to create device file pp_dpm_mclk\n");
1375 return ret;
1376 }
1377 ret = device_create_file(adev->dev, &dev_attr_pp_dpm_pcie);
1378 if (ret) {
1379 DRM_ERROR("failed to create device file pp_dpm_pcie\n");
1380 return ret;
1381 }
8b2e574d
EH
1382 ret = device_create_file(adev->dev, &dev_attr_pp_sclk_od);
1383 if (ret) {
1384 DRM_ERROR("failed to create device file pp_sclk_od\n");
1385 return ret;
1386 }
f2bdc05f
EH
1387 ret = device_create_file(adev->dev, &dev_attr_pp_mclk_od);
1388 if (ret) {
1389 DRM_ERROR("failed to create device file pp_mclk_od\n");
1390 return ret;
1391 }
34bb2734
EH
1392 ret = device_create_file(adev->dev,
1393 &dev_attr_pp_gfx_power_profile);
1394 if (ret) {
1395 DRM_ERROR("failed to create device file "
1396 "pp_gfx_power_profile\n");
1397 return ret;
1398 }
1399 ret = device_create_file(adev->dev,
1400 &dev_attr_pp_compute_power_profile);
1401 if (ret) {
1402 DRM_ERROR("failed to create device file "
1403 "pp_compute_power_profile\n");
1404 return ret;
1405 }
c85e299f 1406
d38ceaf9
AD
1407 ret = amdgpu_debugfs_pm_init(adev);
1408 if (ret) {
1409 DRM_ERROR("Failed to register debugfs file for dpm!\n");
1410 return ret;
1411 }
1412
c86f5ebf
AD
1413 adev->pm.sysfs_initialized = true;
1414
d38ceaf9
AD
1415 return 0;
1416}
1417
1418void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
1419{
1420 if (adev->pm.int_hwmon_dev)
1421 hwmon_device_unregister(adev->pm.int_hwmon_dev);
1422 device_remove_file(adev->dev, &dev_attr_power_dpm_state);
1423 device_remove_file(adev->dev, &dev_attr_power_dpm_force_performance_level);
f3898ea1
EH
1424 if (adev->pp_enabled) {
1425 device_remove_file(adev->dev, &dev_attr_pp_num_states);
1426 device_remove_file(adev->dev, &dev_attr_pp_cur_state);
1427 device_remove_file(adev->dev, &dev_attr_pp_force_state);
1428 device_remove_file(adev->dev, &dev_attr_pp_table);
f3898ea1 1429 }
c85e299f
EH
1430 device_remove_file(adev->dev, &dev_attr_pp_dpm_sclk);
1431 device_remove_file(adev->dev, &dev_attr_pp_dpm_mclk);
1432 device_remove_file(adev->dev, &dev_attr_pp_dpm_pcie);
8b2e574d 1433 device_remove_file(adev->dev, &dev_attr_pp_sclk_od);
f2bdc05f 1434 device_remove_file(adev->dev, &dev_attr_pp_mclk_od);
34bb2734
EH
1435 device_remove_file(adev->dev,
1436 &dev_attr_pp_gfx_power_profile);
1437 device_remove_file(adev->dev,
1438 &dev_attr_pp_compute_power_profile);
d38ceaf9
AD
1439}
1440
1441void amdgpu_pm_compute_clocks(struct amdgpu_device *adev)
1442{
1443 struct drm_device *ddev = adev->ddev;
1444 struct drm_crtc *crtc;
1445 struct amdgpu_crtc *amdgpu_crtc;
5e876c62 1446 int i = 0;
d38ceaf9
AD
1447
1448 if (!adev->pm.dpm_enabled)
1449 return;
1450
c10c8f7c
AD
1451 if (adev->mode_info.num_crtc)
1452 amdgpu_display_bandwidth_update(adev);
1b5708ff 1453
5e876c62
RZ
1454 for (i = 0; i < AMDGPU_MAX_RINGS; i++) {
1455 struct amdgpu_ring *ring = adev->rings[i];
1456 if (ring && ring->ready)
1457 amdgpu_fence_wait_empty(ring);
1458 }
d38ceaf9 1459
5e876c62 1460 if (adev->pp_enabled) {
df1e6394 1461 amdgpu_dpm_dispatch_task(adev, AMD_PP_TASK_DISPLAY_CONFIG_CHANGE, NULL, NULL);
1b5708ff
RZ
1462 } else {
1463 mutex_lock(&adev->pm.mutex);
1464 adev->pm.dpm.new_active_crtcs = 0;
1465 adev->pm.dpm.new_active_crtc_count = 0;
1466 if (adev->mode_info.num_crtc && adev->mode_info.mode_config_initialized) {
1467 list_for_each_entry(crtc,
1468 &ddev->mode_config.crtc_list, head) {
1469 amdgpu_crtc = to_amdgpu_crtc(crtc);
1470 if (crtc->enabled) {
1471 adev->pm.dpm.new_active_crtcs |= (1 << amdgpu_crtc->crtc_id);
1472 adev->pm.dpm.new_active_crtc_count++;
1473 }
d38ceaf9
AD
1474 }
1475 }
1b5708ff
RZ
1476 /* update battery/ac status */
1477 if (power_supply_is_system_supplied() > 0)
1478 adev->pm.dpm.ac_power = true;
1479 else
1480 adev->pm.dpm.ac_power = false;
d38ceaf9 1481
1b5708ff 1482 amdgpu_dpm_change_power_state_locked(adev);
d38ceaf9 1483
1b5708ff
RZ
1484 mutex_unlock(&adev->pm.mutex);
1485 }
d38ceaf9
AD
1486}
1487
1488/*
1489 * Debugfs info
1490 */
1491#if defined(CONFIG_DEBUG_FS)
1492
3de4ec57
TSD
1493static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
1494{
cd7b0c66 1495 uint32_t value;
4f9afc9b 1496 struct pp_gpu_power query = {0};
9f8df7d7 1497 int size;
3de4ec57
TSD
1498
1499 /* sanity check PP is enabled */
1500 if (!(adev->powerplay.pp_funcs &&
1501 adev->powerplay.pp_funcs->read_sensor))
1502 return -EINVAL;
1503
1504 /* GPU Clocks */
9f8df7d7 1505 size = sizeof(value);
3de4ec57 1506 seq_printf(m, "GFX Clocks and Power:\n");
9f8df7d7 1507 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
3de4ec57 1508 seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
9f8df7d7 1509 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
3de4ec57 1510 seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
9f8df7d7 1511 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
3de4ec57 1512 seq_printf(m, "\t%u mV (VDDGFX)\n", value);
9f8df7d7 1513 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
3de4ec57 1514 seq_printf(m, "\t%u mV (VDDNB)\n", value);
9f8df7d7
TSD
1515 size = sizeof(query);
1516 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_POWER, (void *)&query, &size)) {
4f9afc9b
EH
1517 seq_printf(m, "\t%u.%u W (VDDC)\n", query.vddc_power >> 8,
1518 query.vddc_power & 0xff);
1519 seq_printf(m, "\t%u.%u W (VDDCI)\n", query.vddci_power >> 8,
1520 query.vddci_power & 0xff);
1521 seq_printf(m, "\t%u.%u W (max GPU)\n", query.max_gpu_power >> 8,
1522 query.max_gpu_power & 0xff);
1523 seq_printf(m, "\t%u.%u W (average GPU)\n", query.average_gpu_power >> 8,
1524 query.average_gpu_power & 0xff);
1525 }
9f8df7d7 1526 size = sizeof(value);
3de4ec57
TSD
1527 seq_printf(m, "\n");
1528
1529 /* GPU Temp */
9f8df7d7 1530 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
3de4ec57
TSD
1531 seq_printf(m, "GPU Temperature: %u C\n", value/1000);
1532
1533 /* GPU Load */
9f8df7d7 1534 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
3de4ec57
TSD
1535 seq_printf(m, "GPU Load: %u %%\n", value);
1536 seq_printf(m, "\n");
1537
1538 /* UVD clocks */
9f8df7d7 1539 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
3de4ec57
TSD
1540 if (!value) {
1541 seq_printf(m, "UVD: Disabled\n");
1542 } else {
1543 seq_printf(m, "UVD: Enabled\n");
9f8df7d7 1544 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
3de4ec57 1545 seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
9f8df7d7 1546 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
3de4ec57
TSD
1547 seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
1548 }
1549 }
1550 seq_printf(m, "\n");
1551
1552 /* VCE clocks */
9f8df7d7 1553 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
3de4ec57
TSD
1554 if (!value) {
1555 seq_printf(m, "VCE: Disabled\n");
1556 } else {
1557 seq_printf(m, "VCE: Enabled\n");
9f8df7d7 1558 if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
3de4ec57
TSD
1559 seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
1560 }
1561 }
1562
1563 return 0;
1564}
1565
a8503b15
HR
1566static void amdgpu_parse_cg_state(struct seq_file *m, u32 flags)
1567{
1568 int i;
1569
1570 for (i = 0; clocks[i].flag; i++)
1571 seq_printf(m, "\t%s: %s\n", clocks[i].name,
1572 (flags & clocks[i].flag) ? "On" : "Off");
1573}
1574
d38ceaf9
AD
1575static int amdgpu_debugfs_pm_info(struct seq_file *m, void *data)
1576{
1577 struct drm_info_node *node = (struct drm_info_node *) m->private;
1578 struct drm_device *dev = node->minor->dev;
1579 struct amdgpu_device *adev = dev->dev_private;
0c67df48 1580 struct drm_device *ddev = adev->ddev;
6cb2d4e4
HR
1581 u32 flags = 0;
1582
1583 amdgpu_get_clockgating_state(adev, &flags);
1584 seq_printf(m, "Clock Gating Flags Mask: 0x%x\n", flags);
a8503b15
HR
1585 amdgpu_parse_cg_state(m, flags);
1586 seq_printf(m, "\n");
d38ceaf9 1587
1b5708ff
RZ
1588 if (!adev->pm.dpm_enabled) {
1589 seq_printf(m, "dpm not enabled\n");
1590 return 0;
1591 }
0c67df48
AD
1592 if ((adev->flags & AMD_IS_PX) &&
1593 (ddev->switch_power_state != DRM_SWITCH_POWER_ON)) {
1594 seq_printf(m, "PX asic powered off\n");
1595 } else if (adev->pp_enabled) {
3de4ec57 1596 return amdgpu_debugfs_pm_info_pp(m, adev);
1b5708ff 1597 } else {
d38ceaf9 1598 mutex_lock(&adev->pm.mutex);
cd4d7464
RZ
1599 if (adev->powerplay.pp_funcs->debugfs_print_current_performance_level)
1600 adev->powerplay.pp_funcs->debugfs_print_current_performance_level(adev, m);
d38ceaf9
AD
1601 else
1602 seq_printf(m, "Debugfs support not implemented for this asic\n");
1603 mutex_unlock(&adev->pm.mutex);
1604 }
1605
1606 return 0;
1607}
1608
06ab6832 1609static const struct drm_info_list amdgpu_pm_info_list[] = {
d38ceaf9
AD
1610 {"amdgpu_pm_info", amdgpu_debugfs_pm_info, 0, NULL},
1611};
1612#endif
1613
1614static int amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
1615{
1616#if defined(CONFIG_DEBUG_FS)
1617 return amdgpu_debugfs_add_files(adev, amdgpu_pm_info_list, ARRAY_SIZE(amdgpu_pm_info_list));
1618#else
1619 return 0;
1620#endif
1621}