2 * Permission is hereby granted, free of charge, to any person obtaining a
3 * copy of this software and associated documentation files (the "Software"),
4 * to deal in the Software without restriction, including without limitation
5 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 * and/or sell copies of the Software, and to permit persons to whom the
7 * Software is furnished to do so, subject to the following conditions:
9 * The above copyright notice and this permission notice shall be included in
10 * all copies or substantial portions of the Software.
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
16 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
17 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
18 * OTHER DEALINGS IN THE SOFTWARE.
20 * Authors: Rafał Miłecki <zajec5@gmail.com>
21 * Alex Deucher <alexdeucher@gmail.com>
27 #include <linux/power_supply.h>
28 #include <linux/hwmon.h>
29 #include <linux/hwmon-sysfs.h>
31 #define RADEON_IDLE_LOOP_MS 100
32 #define RADEON_RECLOCK_DELAY_MS 200
33 #define RADEON_WAIT_VBLANK_TIMEOUT 200
35 static const char *radeon_pm_state_type_name
[5] = {
43 static void radeon_dynpm_idle_work_handler(struct work_struct
*work
);
44 static int radeon_debugfs_pm_init(struct radeon_device
*rdev
);
45 static bool radeon_pm_in_vbl(struct radeon_device
*rdev
);
46 static bool radeon_pm_debug_check_in_vbl(struct radeon_device
*rdev
, bool finish
);
47 static void radeon_pm_update_profile(struct radeon_device
*rdev
);
48 static void radeon_pm_set_clocks(struct radeon_device
*rdev
);
50 int radeon_pm_get_type_index(struct radeon_device
*rdev
,
51 enum radeon_pm_state_type ps_type
,
55 int found_instance
= -1;
57 for (i
= 0; i
< rdev
->pm
.num_power_states
; i
++) {
58 if (rdev
->pm
.power_state
[i
].type
== ps_type
) {
60 if (found_instance
== instance
)
64 /* return default if no match */
65 return rdev
->pm
.default_power_state_index
;
68 void radeon_pm_acpi_event_handler(struct radeon_device
*rdev
)
70 if ((rdev
->pm
.pm_method
== PM_METHOD_DPM
) && rdev
->pm
.dpm_enabled
) {
71 mutex_lock(&rdev
->pm
.mutex
);
72 if (power_supply_is_system_supplied() > 0)
73 rdev
->pm
.dpm
.ac_power
= true;
75 rdev
->pm
.dpm
.ac_power
= false;
76 if (rdev
->family
== CHIP_ARUBA
) {
77 if (rdev
->asic
->dpm
.enable_bapm
)
78 radeon_dpm_enable_bapm(rdev
, rdev
->pm
.dpm
.ac_power
);
80 mutex_unlock(&rdev
->pm
.mutex
);
81 } else if (rdev
->pm
.pm_method
== PM_METHOD_PROFILE
) {
82 if (rdev
->pm
.profile
== PM_PROFILE_AUTO
) {
83 mutex_lock(&rdev
->pm
.mutex
);
84 radeon_pm_update_profile(rdev
);
85 radeon_pm_set_clocks(rdev
);
86 mutex_unlock(&rdev
->pm
.mutex
);
91 static void radeon_pm_update_profile(struct radeon_device
*rdev
)
93 switch (rdev
->pm
.profile
) {
94 case PM_PROFILE_DEFAULT
:
95 rdev
->pm
.profile_index
= PM_PROFILE_DEFAULT_IDX
;
98 if (power_supply_is_system_supplied() > 0) {
99 if (rdev
->pm
.active_crtc_count
> 1)
100 rdev
->pm
.profile_index
= PM_PROFILE_HIGH_MH_IDX
;
102 rdev
->pm
.profile_index
= PM_PROFILE_HIGH_SH_IDX
;
104 if (rdev
->pm
.active_crtc_count
> 1)
105 rdev
->pm
.profile_index
= PM_PROFILE_MID_MH_IDX
;
107 rdev
->pm
.profile_index
= PM_PROFILE_MID_SH_IDX
;
111 if (rdev
->pm
.active_crtc_count
> 1)
112 rdev
->pm
.profile_index
= PM_PROFILE_LOW_MH_IDX
;
114 rdev
->pm
.profile_index
= PM_PROFILE_LOW_SH_IDX
;
117 if (rdev
->pm
.active_crtc_count
> 1)
118 rdev
->pm
.profile_index
= PM_PROFILE_MID_MH_IDX
;
120 rdev
->pm
.profile_index
= PM_PROFILE_MID_SH_IDX
;
122 case PM_PROFILE_HIGH
:
123 if (rdev
->pm
.active_crtc_count
> 1)
124 rdev
->pm
.profile_index
= PM_PROFILE_HIGH_MH_IDX
;
126 rdev
->pm
.profile_index
= PM_PROFILE_HIGH_SH_IDX
;
130 if (rdev
->pm
.active_crtc_count
== 0) {
131 rdev
->pm
.requested_power_state_index
=
132 rdev
->pm
.profiles
[rdev
->pm
.profile_index
].dpms_off_ps_idx
;
133 rdev
->pm
.requested_clock_mode_index
=
134 rdev
->pm
.profiles
[rdev
->pm
.profile_index
].dpms_off_cm_idx
;
136 rdev
->pm
.requested_power_state_index
=
137 rdev
->pm
.profiles
[rdev
->pm
.profile_index
].dpms_on_ps_idx
;
138 rdev
->pm
.requested_clock_mode_index
=
139 rdev
->pm
.profiles
[rdev
->pm
.profile_index
].dpms_on_cm_idx
;
143 static void radeon_unmap_vram_bos(struct radeon_device
*rdev
)
145 struct radeon_bo
*bo
, *n
;
147 if (list_empty(&rdev
->gem
.objects
))
150 list_for_each_entry_safe(bo
, n
, &rdev
->gem
.objects
, list
) {
151 if (bo
->tbo
.mem
.mem_type
== TTM_PL_VRAM
)
152 ttm_bo_unmap_virtual(&bo
->tbo
);
156 static void radeon_sync_with_vblank(struct radeon_device
*rdev
)
158 if (rdev
->pm
.active_crtcs
) {
159 rdev
->pm
.vblank_sync
= false;
161 rdev
->irq
.vblank_queue
, rdev
->pm
.vblank_sync
,
162 msecs_to_jiffies(RADEON_WAIT_VBLANK_TIMEOUT
));
166 static void radeon_set_power_state(struct radeon_device
*rdev
)
169 bool misc_after
= false;
171 if ((rdev
->pm
.requested_clock_mode_index
== rdev
->pm
.current_clock_mode_index
) &&
172 (rdev
->pm
.requested_power_state_index
== rdev
->pm
.current_power_state_index
))
175 if (radeon_gui_idle(rdev
)) {
176 sclk
= rdev
->pm
.power_state
[rdev
->pm
.requested_power_state_index
].
177 clock_info
[rdev
->pm
.requested_clock_mode_index
].sclk
;
178 if (sclk
> rdev
->pm
.default_sclk
)
179 sclk
= rdev
->pm
.default_sclk
;
181 /* starting with BTC, there is one state that is used for both
182 * MH and SH. Difference is that we always use the high clock index for
185 if ((rdev
->pm
.pm_method
== PM_METHOD_PROFILE
) &&
186 (rdev
->family
>= CHIP_BARTS
) &&
187 rdev
->pm
.active_crtc_count
&&
188 ((rdev
->pm
.profile_index
== PM_PROFILE_MID_MH_IDX
) ||
189 (rdev
->pm
.profile_index
== PM_PROFILE_LOW_MH_IDX
)))
190 mclk
= rdev
->pm
.power_state
[rdev
->pm
.requested_power_state_index
].
191 clock_info
[rdev
->pm
.profiles
[PM_PROFILE_HIGH_MH_IDX
].dpms_on_cm_idx
].mclk
;
193 mclk
= rdev
->pm
.power_state
[rdev
->pm
.requested_power_state_index
].
194 clock_info
[rdev
->pm
.requested_clock_mode_index
].mclk
;
196 if (mclk
> rdev
->pm
.default_mclk
)
197 mclk
= rdev
->pm
.default_mclk
;
199 /* upvolt before raising clocks, downvolt after lowering clocks */
200 if (sclk
< rdev
->pm
.current_sclk
)
203 radeon_sync_with_vblank(rdev
);
205 if (rdev
->pm
.pm_method
== PM_METHOD_DYNPM
) {
206 if (!radeon_pm_in_vbl(rdev
))
210 radeon_pm_prepare(rdev
);
213 /* voltage, pcie lanes, etc.*/
214 radeon_pm_misc(rdev
);
216 /* set engine clock */
217 if (sclk
!= rdev
->pm
.current_sclk
) {
218 radeon_pm_debug_check_in_vbl(rdev
, false);
219 radeon_set_engine_clock(rdev
, sclk
);
220 radeon_pm_debug_check_in_vbl(rdev
, true);
221 rdev
->pm
.current_sclk
= sclk
;
222 DRM_DEBUG_DRIVER("Setting: e: %d\n", sclk
);
225 /* set memory clock */
226 if (rdev
->asic
->pm
.set_memory_clock
&& (mclk
!= rdev
->pm
.current_mclk
)) {
227 radeon_pm_debug_check_in_vbl(rdev
, false);
228 radeon_set_memory_clock(rdev
, mclk
);
229 radeon_pm_debug_check_in_vbl(rdev
, true);
230 rdev
->pm
.current_mclk
= mclk
;
231 DRM_DEBUG_DRIVER("Setting: m: %d\n", mclk
);
235 /* voltage, pcie lanes, etc.*/
236 radeon_pm_misc(rdev
);
238 radeon_pm_finish(rdev
);
240 rdev
->pm
.current_power_state_index
= rdev
->pm
.requested_power_state_index
;
241 rdev
->pm
.current_clock_mode_index
= rdev
->pm
.requested_clock_mode_index
;
243 DRM_DEBUG_DRIVER("pm: GUI not idle!!!\n");
246 static void radeon_pm_set_clocks(struct radeon_device
*rdev
)
250 /* no need to take locks, etc. if nothing's going to change */
251 if ((rdev
->pm
.requested_clock_mode_index
== rdev
->pm
.current_clock_mode_index
) &&
252 (rdev
->pm
.requested_power_state_index
== rdev
->pm
.current_power_state_index
))
255 mutex_lock(&rdev
->ddev
->struct_mutex
);
256 down_write(&rdev
->pm
.mclk_lock
);
257 mutex_lock(&rdev
->ring_lock
);
259 /* wait for the rings to drain */
260 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++) {
261 struct radeon_ring
*ring
= &rdev
->ring
[i
];
265 r
= radeon_fence_wait_empty(rdev
, i
);
267 /* needs a GPU reset dont reset here */
268 mutex_unlock(&rdev
->ring_lock
);
269 up_write(&rdev
->pm
.mclk_lock
);
270 mutex_unlock(&rdev
->ddev
->struct_mutex
);
275 radeon_unmap_vram_bos(rdev
);
277 if (rdev
->irq
.installed
) {
278 for (i
= 0; i
< rdev
->num_crtc
; i
++) {
279 if (rdev
->pm
.active_crtcs
& (1 << i
)) {
280 rdev
->pm
.req_vblank
|= (1 << i
);
281 drm_vblank_get(rdev
->ddev
, i
);
286 radeon_set_power_state(rdev
);
288 if (rdev
->irq
.installed
) {
289 for (i
= 0; i
< rdev
->num_crtc
; i
++) {
290 if (rdev
->pm
.req_vblank
& (1 << i
)) {
291 rdev
->pm
.req_vblank
&= ~(1 << i
);
292 drm_vblank_put(rdev
->ddev
, i
);
297 /* update display watermarks based on new power state */
298 radeon_update_bandwidth_info(rdev
);
299 if (rdev
->pm
.active_crtc_count
)
300 radeon_bandwidth_update(rdev
);
302 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_NONE
;
304 mutex_unlock(&rdev
->ring_lock
);
305 up_write(&rdev
->pm
.mclk_lock
);
306 mutex_unlock(&rdev
->ddev
->struct_mutex
);
309 static void radeon_pm_print_states(struct radeon_device
*rdev
)
312 struct radeon_power_state
*power_state
;
313 struct radeon_pm_clock_info
*clock_info
;
315 DRM_DEBUG_DRIVER("%d Power State(s)\n", rdev
->pm
.num_power_states
);
316 for (i
= 0; i
< rdev
->pm
.num_power_states
; i
++) {
317 power_state
= &rdev
->pm
.power_state
[i
];
318 DRM_DEBUG_DRIVER("State %d: %s\n", i
,
319 radeon_pm_state_type_name
[power_state
->type
]);
320 if (i
== rdev
->pm
.default_power_state_index
)
321 DRM_DEBUG_DRIVER("\tDefault");
322 if ((rdev
->flags
& RADEON_IS_PCIE
) && !(rdev
->flags
& RADEON_IS_IGP
))
323 DRM_DEBUG_DRIVER("\t%d PCIE Lanes\n", power_state
->pcie_lanes
);
324 if (power_state
->flags
& RADEON_PM_STATE_SINGLE_DISPLAY_ONLY
)
325 DRM_DEBUG_DRIVER("\tSingle display only\n");
326 DRM_DEBUG_DRIVER("\t%d Clock Mode(s)\n", power_state
->num_clock_modes
);
327 for (j
= 0; j
< power_state
->num_clock_modes
; j
++) {
328 clock_info
= &(power_state
->clock_info
[j
]);
329 if (rdev
->flags
& RADEON_IS_IGP
)
330 DRM_DEBUG_DRIVER("\t\t%d e: %d\n",
332 clock_info
->sclk
* 10);
334 DRM_DEBUG_DRIVER("\t\t%d e: %d\tm: %d\tv: %d\n",
336 clock_info
->sclk
* 10,
337 clock_info
->mclk
* 10,
338 clock_info
->voltage
.voltage
);
343 static ssize_t
radeon_get_pm_profile(struct device
*dev
,
344 struct device_attribute
*attr
,
347 struct drm_device
*ddev
= dev_get_drvdata(dev
);
348 struct radeon_device
*rdev
= ddev
->dev_private
;
349 int cp
= rdev
->pm
.profile
;
351 return snprintf(buf
, PAGE_SIZE
, "%s\n",
352 (cp
== PM_PROFILE_AUTO
) ? "auto" :
353 (cp
== PM_PROFILE_LOW
) ? "low" :
354 (cp
== PM_PROFILE_MID
) ? "mid" :
355 (cp
== PM_PROFILE_HIGH
) ? "high" : "default");
358 static ssize_t
radeon_set_pm_profile(struct device
*dev
,
359 struct device_attribute
*attr
,
363 struct drm_device
*ddev
= dev_get_drvdata(dev
);
364 struct radeon_device
*rdev
= ddev
->dev_private
;
366 /* Can't set profile when the card is off */
367 if ((rdev
->flags
& RADEON_IS_PX
) &&
368 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
))
371 mutex_lock(&rdev
->pm
.mutex
);
372 if (rdev
->pm
.pm_method
== PM_METHOD_PROFILE
) {
373 if (strncmp("default", buf
, strlen("default")) == 0)
374 rdev
->pm
.profile
= PM_PROFILE_DEFAULT
;
375 else if (strncmp("auto", buf
, strlen("auto")) == 0)
376 rdev
->pm
.profile
= PM_PROFILE_AUTO
;
377 else if (strncmp("low", buf
, strlen("low")) == 0)
378 rdev
->pm
.profile
= PM_PROFILE_LOW
;
379 else if (strncmp("mid", buf
, strlen("mid")) == 0)
380 rdev
->pm
.profile
= PM_PROFILE_MID
;
381 else if (strncmp("high", buf
, strlen("high")) == 0)
382 rdev
->pm
.profile
= PM_PROFILE_HIGH
;
387 radeon_pm_update_profile(rdev
);
388 radeon_pm_set_clocks(rdev
);
393 mutex_unlock(&rdev
->pm
.mutex
);
398 static ssize_t
radeon_get_pm_method(struct device
*dev
,
399 struct device_attribute
*attr
,
402 struct drm_device
*ddev
= dev_get_drvdata(dev
);
403 struct radeon_device
*rdev
= ddev
->dev_private
;
404 int pm
= rdev
->pm
.pm_method
;
406 return snprintf(buf
, PAGE_SIZE
, "%s\n",
407 (pm
== PM_METHOD_DYNPM
) ? "dynpm" :
408 (pm
== PM_METHOD_PROFILE
) ? "profile" : "dpm");
411 static ssize_t
radeon_set_pm_method(struct device
*dev
,
412 struct device_attribute
*attr
,
416 struct drm_device
*ddev
= dev_get_drvdata(dev
);
417 struct radeon_device
*rdev
= ddev
->dev_private
;
419 /* Can't set method when the card is off */
420 if ((rdev
->flags
& RADEON_IS_PX
) &&
421 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
)) {
426 /* we don't support the legacy modes with dpm */
427 if (rdev
->pm
.pm_method
== PM_METHOD_DPM
) {
432 if (strncmp("dynpm", buf
, strlen("dynpm")) == 0) {
433 mutex_lock(&rdev
->pm
.mutex
);
434 rdev
->pm
.pm_method
= PM_METHOD_DYNPM
;
435 rdev
->pm
.dynpm_state
= DYNPM_STATE_PAUSED
;
436 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_DEFAULT
;
437 mutex_unlock(&rdev
->pm
.mutex
);
438 } else if (strncmp("profile", buf
, strlen("profile")) == 0) {
439 mutex_lock(&rdev
->pm
.mutex
);
441 rdev
->pm
.dynpm_state
= DYNPM_STATE_DISABLED
;
442 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_NONE
;
443 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
444 mutex_unlock(&rdev
->pm
.mutex
);
445 cancel_delayed_work_sync(&rdev
->pm
.dynpm_idle_work
);
450 radeon_pm_compute_clocks(rdev
);
455 static ssize_t
radeon_get_dpm_state(struct device
*dev
,
456 struct device_attribute
*attr
,
459 struct drm_device
*ddev
= dev_get_drvdata(dev
);
460 struct radeon_device
*rdev
= ddev
->dev_private
;
461 enum radeon_pm_state_type pm
= rdev
->pm
.dpm
.user_state
;
463 if ((rdev
->flags
& RADEON_IS_PX
) &&
464 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
))
465 return snprintf(buf
, PAGE_SIZE
, "off\n");
467 return snprintf(buf
, PAGE_SIZE
, "%s\n",
468 (pm
== POWER_STATE_TYPE_BATTERY
) ? "battery" :
469 (pm
== POWER_STATE_TYPE_BALANCED
) ? "balanced" : "performance");
472 static ssize_t
radeon_set_dpm_state(struct device
*dev
,
473 struct device_attribute
*attr
,
477 struct drm_device
*ddev
= dev_get_drvdata(dev
);
478 struct radeon_device
*rdev
= ddev
->dev_private
;
480 /* Can't set dpm state when the card is off */
481 if ((rdev
->flags
& RADEON_IS_PX
) &&
482 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
))
485 mutex_lock(&rdev
->pm
.mutex
);
486 if (strncmp("battery", buf
, strlen("battery")) == 0)
487 rdev
->pm
.dpm
.user_state
= POWER_STATE_TYPE_BATTERY
;
488 else if (strncmp("balanced", buf
, strlen("balanced")) == 0)
489 rdev
->pm
.dpm
.user_state
= POWER_STATE_TYPE_BALANCED
;
490 else if (strncmp("performance", buf
, strlen("performance")) == 0)
491 rdev
->pm
.dpm
.user_state
= POWER_STATE_TYPE_PERFORMANCE
;
493 mutex_unlock(&rdev
->pm
.mutex
);
497 mutex_unlock(&rdev
->pm
.mutex
);
498 radeon_pm_compute_clocks(rdev
);
503 static ssize_t
radeon_get_dpm_forced_performance_level(struct device
*dev
,
504 struct device_attribute
*attr
,
507 struct drm_device
*ddev
= dev_get_drvdata(dev
);
508 struct radeon_device
*rdev
= ddev
->dev_private
;
509 enum radeon_dpm_forced_level level
= rdev
->pm
.dpm
.forced_level
;
511 if ((rdev
->flags
& RADEON_IS_PX
) &&
512 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
))
513 return snprintf(buf
, PAGE_SIZE
, "off\n");
515 return snprintf(buf
, PAGE_SIZE
, "%s\n",
516 (level
== RADEON_DPM_FORCED_LEVEL_AUTO
) ? "auto" :
517 (level
== RADEON_DPM_FORCED_LEVEL_LOW
) ? "low" : "high");
520 static ssize_t
radeon_set_dpm_forced_performance_level(struct device
*dev
,
521 struct device_attribute
*attr
,
525 struct drm_device
*ddev
= dev_get_drvdata(dev
);
526 struct radeon_device
*rdev
= ddev
->dev_private
;
527 enum radeon_dpm_forced_level level
;
530 /* Can't force performance level when the card is off */
531 if ((rdev
->flags
& RADEON_IS_PX
) &&
532 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
))
535 mutex_lock(&rdev
->pm
.mutex
);
536 if (strncmp("low", buf
, strlen("low")) == 0) {
537 level
= RADEON_DPM_FORCED_LEVEL_LOW
;
538 } else if (strncmp("high", buf
, strlen("high")) == 0) {
539 level
= RADEON_DPM_FORCED_LEVEL_HIGH
;
540 } else if (strncmp("auto", buf
, strlen("auto")) == 0) {
541 level
= RADEON_DPM_FORCED_LEVEL_AUTO
;
546 if (rdev
->asic
->dpm
.force_performance_level
) {
547 if (rdev
->pm
.dpm
.thermal_active
) {
551 ret
= radeon_dpm_force_performance_level(rdev
, level
);
556 mutex_unlock(&rdev
->pm
.mutex
);
561 static DEVICE_ATTR(power_profile
, S_IRUGO
| S_IWUSR
, radeon_get_pm_profile
, radeon_set_pm_profile
);
562 static DEVICE_ATTR(power_method
, S_IRUGO
| S_IWUSR
, radeon_get_pm_method
, radeon_set_pm_method
);
563 static DEVICE_ATTR(power_dpm_state
, S_IRUGO
| S_IWUSR
, radeon_get_dpm_state
, radeon_set_dpm_state
);
564 static DEVICE_ATTR(power_dpm_force_performance_level
, S_IRUGO
| S_IWUSR
,
565 radeon_get_dpm_forced_performance_level
,
566 radeon_set_dpm_forced_performance_level
);
568 static ssize_t
radeon_hwmon_show_temp(struct device
*dev
,
569 struct device_attribute
*attr
,
572 struct radeon_device
*rdev
= dev_get_drvdata(dev
);
573 struct drm_device
*ddev
= rdev
->ddev
;
576 /* Can't get temperature when the card is off */
577 if ((rdev
->flags
& RADEON_IS_PX
) &&
578 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
))
581 if (rdev
->asic
->pm
.get_temperature
)
582 temp
= radeon_get_temperature(rdev
);
586 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp
);
589 static ssize_t
radeon_hwmon_show_temp_thresh(struct device
*dev
,
590 struct device_attribute
*attr
,
593 struct radeon_device
*rdev
= dev_get_drvdata(dev
);
594 int hyst
= to_sensor_dev_attr(attr
)->index
;
598 temp
= rdev
->pm
.dpm
.thermal
.min_temp
;
600 temp
= rdev
->pm
.dpm
.thermal
.max_temp
;
602 return snprintf(buf
, PAGE_SIZE
, "%d\n", temp
);
605 static SENSOR_DEVICE_ATTR(temp1_input
, S_IRUGO
, radeon_hwmon_show_temp
, NULL
, 0);
606 static SENSOR_DEVICE_ATTR(temp1_crit
, S_IRUGO
, radeon_hwmon_show_temp_thresh
, NULL
, 0);
607 static SENSOR_DEVICE_ATTR(temp1_crit_hyst
, S_IRUGO
, radeon_hwmon_show_temp_thresh
, NULL
, 1);
609 static struct attribute
*hwmon_attributes
[] = {
610 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
611 &sensor_dev_attr_temp1_crit
.dev_attr
.attr
,
612 &sensor_dev_attr_temp1_crit_hyst
.dev_attr
.attr
,
616 static umode_t
hwmon_attributes_visible(struct kobject
*kobj
,
617 struct attribute
*attr
, int index
)
619 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
620 struct radeon_device
*rdev
= dev_get_drvdata(dev
);
622 /* Skip limit attributes if DPM is not enabled */
623 if (rdev
->pm
.pm_method
!= PM_METHOD_DPM
&&
624 (attr
== &sensor_dev_attr_temp1_crit
.dev_attr
.attr
||
625 attr
== &sensor_dev_attr_temp1_crit_hyst
.dev_attr
.attr
))
631 static const struct attribute_group hwmon_attrgroup
= {
632 .attrs
= hwmon_attributes
,
633 .is_visible
= hwmon_attributes_visible
,
636 static const struct attribute_group
*hwmon_groups
[] = {
641 static int radeon_hwmon_init(struct radeon_device
*rdev
)
645 switch (rdev
->pm
.int_thermal_type
) {
646 case THERMAL_TYPE_RV6XX
:
647 case THERMAL_TYPE_RV770
:
648 case THERMAL_TYPE_EVERGREEN
:
649 case THERMAL_TYPE_NI
:
650 case THERMAL_TYPE_SUMO
:
651 case THERMAL_TYPE_SI
:
652 case THERMAL_TYPE_CI
:
653 case THERMAL_TYPE_KV
:
654 if (rdev
->asic
->pm
.get_temperature
== NULL
)
656 rdev
->pm
.int_hwmon_dev
= hwmon_device_register_with_groups(rdev
->dev
,
659 if (IS_ERR(rdev
->pm
.int_hwmon_dev
)) {
660 err
= PTR_ERR(rdev
->pm
.int_hwmon_dev
);
662 "Unable to register hwmon device: %d\n", err
);
672 static void radeon_hwmon_fini(struct radeon_device
*rdev
)
674 if (rdev
->pm
.int_hwmon_dev
)
675 hwmon_device_unregister(rdev
->pm
.int_hwmon_dev
);
678 static void radeon_dpm_thermal_work_handler(struct work_struct
*work
)
680 struct radeon_device
*rdev
=
681 container_of(work
, struct radeon_device
,
682 pm
.dpm
.thermal
.work
);
683 /* switch to the thermal state */
684 enum radeon_pm_state_type dpm_state
= POWER_STATE_TYPE_INTERNAL_THERMAL
;
686 if (!rdev
->pm
.dpm_enabled
)
689 if (rdev
->asic
->pm
.get_temperature
) {
690 int temp
= radeon_get_temperature(rdev
);
692 if (temp
< rdev
->pm
.dpm
.thermal
.min_temp
)
693 /* switch back the user state */
694 dpm_state
= rdev
->pm
.dpm
.user_state
;
696 if (rdev
->pm
.dpm
.thermal
.high_to_low
)
697 /* switch back the user state */
698 dpm_state
= rdev
->pm
.dpm
.user_state
;
700 mutex_lock(&rdev
->pm
.mutex
);
701 if (dpm_state
== POWER_STATE_TYPE_INTERNAL_THERMAL
)
702 rdev
->pm
.dpm
.thermal_active
= true;
704 rdev
->pm
.dpm
.thermal_active
= false;
705 rdev
->pm
.dpm
.state
= dpm_state
;
706 mutex_unlock(&rdev
->pm
.mutex
);
708 radeon_pm_compute_clocks(rdev
);
711 static struct radeon_ps
*radeon_dpm_pick_power_state(struct radeon_device
*rdev
,
712 enum radeon_pm_state_type dpm_state
)
715 struct radeon_ps
*ps
;
717 bool single_display
= (rdev
->pm
.dpm
.new_active_crtc_count
< 2) ?
720 /* check if the vblank period is too short to adjust the mclk */
721 if (single_display
&& rdev
->asic
->dpm
.vblank_too_short
) {
722 if (radeon_dpm_vblank_too_short(rdev
))
723 single_display
= false;
726 /* certain older asics have a separare 3D performance state,
727 * so try that first if the user selected performance
729 if (dpm_state
== POWER_STATE_TYPE_PERFORMANCE
)
730 dpm_state
= POWER_STATE_TYPE_INTERNAL_3DPERF
;
731 /* balanced states don't exist at the moment */
732 if (dpm_state
== POWER_STATE_TYPE_BALANCED
)
733 dpm_state
= POWER_STATE_TYPE_PERFORMANCE
;
736 /* Pick the best power state based on current conditions */
737 for (i
= 0; i
< rdev
->pm
.dpm
.num_ps
; i
++) {
738 ps
= &rdev
->pm
.dpm
.ps
[i
];
739 ui_class
= ps
->class & ATOM_PPLIB_CLASSIFICATION_UI_MASK
;
742 case POWER_STATE_TYPE_BATTERY
:
743 if (ui_class
== ATOM_PPLIB_CLASSIFICATION_UI_BATTERY
) {
744 if (ps
->caps
& ATOM_PPLIB_SINGLE_DISPLAY_ONLY
) {
751 case POWER_STATE_TYPE_BALANCED
:
752 if (ui_class
== ATOM_PPLIB_CLASSIFICATION_UI_BALANCED
) {
753 if (ps
->caps
& ATOM_PPLIB_SINGLE_DISPLAY_ONLY
) {
760 case POWER_STATE_TYPE_PERFORMANCE
:
761 if (ui_class
== ATOM_PPLIB_CLASSIFICATION_UI_PERFORMANCE
) {
762 if (ps
->caps
& ATOM_PPLIB_SINGLE_DISPLAY_ONLY
) {
769 /* internal states */
770 case POWER_STATE_TYPE_INTERNAL_UVD
:
771 if (rdev
->pm
.dpm
.uvd_ps
)
772 return rdev
->pm
.dpm
.uvd_ps
;
775 case POWER_STATE_TYPE_INTERNAL_UVD_SD
:
776 if (ps
->class & ATOM_PPLIB_CLASSIFICATION_SDSTATE
)
779 case POWER_STATE_TYPE_INTERNAL_UVD_HD
:
780 if (ps
->class & ATOM_PPLIB_CLASSIFICATION_HDSTATE
)
783 case POWER_STATE_TYPE_INTERNAL_UVD_HD2
:
784 if (ps
->class & ATOM_PPLIB_CLASSIFICATION_HD2STATE
)
787 case POWER_STATE_TYPE_INTERNAL_UVD_MVC
:
788 if (ps
->class2
& ATOM_PPLIB_CLASSIFICATION2_MVC
)
791 case POWER_STATE_TYPE_INTERNAL_BOOT
:
792 return rdev
->pm
.dpm
.boot_ps
;
793 case POWER_STATE_TYPE_INTERNAL_THERMAL
:
794 if (ps
->class & ATOM_PPLIB_CLASSIFICATION_THERMAL
)
797 case POWER_STATE_TYPE_INTERNAL_ACPI
:
798 if (ps
->class & ATOM_PPLIB_CLASSIFICATION_ACPI
)
801 case POWER_STATE_TYPE_INTERNAL_ULV
:
802 if (ps
->class2
& ATOM_PPLIB_CLASSIFICATION2_ULV
)
805 case POWER_STATE_TYPE_INTERNAL_3DPERF
:
806 if (ps
->class & ATOM_PPLIB_CLASSIFICATION_3DPERFORMANCE
)
813 /* use a fallback state if we didn't match */
815 case POWER_STATE_TYPE_INTERNAL_UVD_SD
:
816 dpm_state
= POWER_STATE_TYPE_INTERNAL_UVD_HD
;
818 case POWER_STATE_TYPE_INTERNAL_UVD_HD
:
819 case POWER_STATE_TYPE_INTERNAL_UVD_HD2
:
820 case POWER_STATE_TYPE_INTERNAL_UVD_MVC
:
821 if (rdev
->pm
.dpm
.uvd_ps
) {
822 return rdev
->pm
.dpm
.uvd_ps
;
824 dpm_state
= POWER_STATE_TYPE_PERFORMANCE
;
827 case POWER_STATE_TYPE_INTERNAL_THERMAL
:
828 dpm_state
= POWER_STATE_TYPE_INTERNAL_ACPI
;
830 case POWER_STATE_TYPE_INTERNAL_ACPI
:
831 dpm_state
= POWER_STATE_TYPE_BATTERY
;
833 case POWER_STATE_TYPE_BATTERY
:
834 case POWER_STATE_TYPE_BALANCED
:
835 case POWER_STATE_TYPE_INTERNAL_3DPERF
:
836 dpm_state
= POWER_STATE_TYPE_PERFORMANCE
;
845 static void radeon_dpm_change_power_state_locked(struct radeon_device
*rdev
)
848 struct radeon_ps
*ps
;
849 enum radeon_pm_state_type dpm_state
;
852 /* if dpm init failed */
853 if (!rdev
->pm
.dpm_enabled
)
856 if (rdev
->pm
.dpm
.user_state
!= rdev
->pm
.dpm
.state
) {
857 /* add other state override checks here */
858 if ((!rdev
->pm
.dpm
.thermal_active
) &&
859 (!rdev
->pm
.dpm
.uvd_active
))
860 rdev
->pm
.dpm
.state
= rdev
->pm
.dpm
.user_state
;
862 dpm_state
= rdev
->pm
.dpm
.state
;
864 ps
= radeon_dpm_pick_power_state(rdev
, dpm_state
);
866 rdev
->pm
.dpm
.requested_ps
= ps
;
870 /* no need to reprogram if nothing changed unless we are on BTC+ */
871 if (rdev
->pm
.dpm
.current_ps
== rdev
->pm
.dpm
.requested_ps
) {
872 /* vce just modifies an existing state so force a change */
873 if (ps
->vce_active
!= rdev
->pm
.dpm
.vce_active
)
875 if ((rdev
->family
< CHIP_BARTS
) || (rdev
->flags
& RADEON_IS_IGP
)) {
876 /* for pre-BTC and APUs if the num crtcs changed but state is the same,
877 * all we need to do is update the display configuration.
879 if (rdev
->pm
.dpm
.new_active_crtcs
!= rdev
->pm
.dpm
.current_active_crtcs
) {
880 /* update display watermarks based on new power state */
881 radeon_bandwidth_update(rdev
);
882 /* update displays */
883 radeon_dpm_display_configuration_changed(rdev
);
884 rdev
->pm
.dpm
.current_active_crtcs
= rdev
->pm
.dpm
.new_active_crtcs
;
885 rdev
->pm
.dpm
.current_active_crtc_count
= rdev
->pm
.dpm
.new_active_crtc_count
;
889 /* for BTC+ if the num crtcs hasn't changed and state is the same,
890 * nothing to do, if the num crtcs is > 1 and state is the same,
891 * update display configuration.
893 if (rdev
->pm
.dpm
.new_active_crtcs
==
894 rdev
->pm
.dpm
.current_active_crtcs
) {
897 if ((rdev
->pm
.dpm
.current_active_crtc_count
> 1) &&
898 (rdev
->pm
.dpm
.new_active_crtc_count
> 1)) {
899 /* update display watermarks based on new power state */
900 radeon_bandwidth_update(rdev
);
901 /* update displays */
902 radeon_dpm_display_configuration_changed(rdev
);
903 rdev
->pm
.dpm
.current_active_crtcs
= rdev
->pm
.dpm
.new_active_crtcs
;
904 rdev
->pm
.dpm
.current_active_crtc_count
= rdev
->pm
.dpm
.new_active_crtc_count
;
912 if (radeon_dpm
== 1) {
913 printk("switching from power state:\n");
914 radeon_dpm_print_power_state(rdev
, rdev
->pm
.dpm
.current_ps
);
915 printk("switching to power state:\n");
916 radeon_dpm_print_power_state(rdev
, rdev
->pm
.dpm
.requested_ps
);
919 mutex_lock(&rdev
->ddev
->struct_mutex
);
920 down_write(&rdev
->pm
.mclk_lock
);
921 mutex_lock(&rdev
->ring_lock
);
923 /* update whether vce is active */
924 ps
->vce_active
= rdev
->pm
.dpm
.vce_active
;
926 ret
= radeon_dpm_pre_set_power_state(rdev
);
930 /* update display watermarks based on new power state */
931 radeon_bandwidth_update(rdev
);
932 /* update displays */
933 radeon_dpm_display_configuration_changed(rdev
);
935 rdev
->pm
.dpm
.current_active_crtcs
= rdev
->pm
.dpm
.new_active_crtcs
;
936 rdev
->pm
.dpm
.current_active_crtc_count
= rdev
->pm
.dpm
.new_active_crtc_count
;
938 /* wait for the rings to drain */
939 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++) {
940 struct radeon_ring
*ring
= &rdev
->ring
[i
];
942 radeon_fence_wait_empty(rdev
, i
);
945 /* program the new power state */
946 radeon_dpm_set_power_state(rdev
);
948 /* update current power state */
949 rdev
->pm
.dpm
.current_ps
= rdev
->pm
.dpm
.requested_ps
;
951 radeon_dpm_post_set_power_state(rdev
);
953 if (rdev
->asic
->dpm
.force_performance_level
) {
954 if (rdev
->pm
.dpm
.thermal_active
) {
955 enum radeon_dpm_forced_level level
= rdev
->pm
.dpm
.forced_level
;
956 /* force low perf level for thermal */
957 radeon_dpm_force_performance_level(rdev
, RADEON_DPM_FORCED_LEVEL_LOW
);
958 /* save the user's level */
959 rdev
->pm
.dpm
.forced_level
= level
;
961 /* otherwise, user selected level */
962 radeon_dpm_force_performance_level(rdev
, rdev
->pm
.dpm
.forced_level
);
967 mutex_unlock(&rdev
->ring_lock
);
968 up_write(&rdev
->pm
.mclk_lock
);
969 mutex_unlock(&rdev
->ddev
->struct_mutex
);
972 void radeon_dpm_enable_uvd(struct radeon_device
*rdev
, bool enable
)
974 enum radeon_pm_state_type dpm_state
;
976 if (rdev
->asic
->dpm
.powergate_uvd
) {
977 mutex_lock(&rdev
->pm
.mutex
);
978 /* don't powergate anything if we
979 have active but pause streams */
980 enable
|= rdev
->pm
.dpm
.sd
> 0;
981 enable
|= rdev
->pm
.dpm
.hd
> 0;
982 /* enable/disable UVD */
983 radeon_dpm_powergate_uvd(rdev
, !enable
);
984 mutex_unlock(&rdev
->pm
.mutex
);
987 mutex_lock(&rdev
->pm
.mutex
);
988 rdev
->pm
.dpm
.uvd_active
= true;
989 /* disable this for now */
991 if ((rdev
->pm
.dpm
.sd
== 1) && (rdev
->pm
.dpm
.hd
== 0))
992 dpm_state
= POWER_STATE_TYPE_INTERNAL_UVD_SD
;
993 else if ((rdev
->pm
.dpm
.sd
== 2) && (rdev
->pm
.dpm
.hd
== 0))
994 dpm_state
= POWER_STATE_TYPE_INTERNAL_UVD_HD
;
995 else if ((rdev
->pm
.dpm
.sd
== 0) && (rdev
->pm
.dpm
.hd
== 1))
996 dpm_state
= POWER_STATE_TYPE_INTERNAL_UVD_HD
;
997 else if ((rdev
->pm
.dpm
.sd
== 0) && (rdev
->pm
.dpm
.hd
== 2))
998 dpm_state
= POWER_STATE_TYPE_INTERNAL_UVD_HD2
;
1001 dpm_state
= POWER_STATE_TYPE_INTERNAL_UVD
;
1002 rdev
->pm
.dpm
.state
= dpm_state
;
1003 mutex_unlock(&rdev
->pm
.mutex
);
1005 mutex_lock(&rdev
->pm
.mutex
);
1006 rdev
->pm
.dpm
.uvd_active
= false;
1007 mutex_unlock(&rdev
->pm
.mutex
);
1010 radeon_pm_compute_clocks(rdev
);
1014 void radeon_dpm_enable_vce(struct radeon_device
*rdev
, bool enable
)
1017 mutex_lock(&rdev
->pm
.mutex
);
1018 rdev
->pm
.dpm
.vce_active
= true;
1019 /* XXX select vce level based on ring/task */
1020 rdev
->pm
.dpm
.vce_level
= RADEON_VCE_LEVEL_AC_ALL
;
1021 mutex_unlock(&rdev
->pm
.mutex
);
1023 mutex_lock(&rdev
->pm
.mutex
);
1024 rdev
->pm
.dpm
.vce_active
= false;
1025 mutex_unlock(&rdev
->pm
.mutex
);
1028 radeon_pm_compute_clocks(rdev
);
1031 static void radeon_pm_suspend_old(struct radeon_device
*rdev
)
1033 mutex_lock(&rdev
->pm
.mutex
);
1034 if (rdev
->pm
.pm_method
== PM_METHOD_DYNPM
) {
1035 if (rdev
->pm
.dynpm_state
== DYNPM_STATE_ACTIVE
)
1036 rdev
->pm
.dynpm_state
= DYNPM_STATE_SUSPENDED
;
1038 mutex_unlock(&rdev
->pm
.mutex
);
1040 cancel_delayed_work_sync(&rdev
->pm
.dynpm_idle_work
);
1043 static void radeon_pm_suspend_dpm(struct radeon_device
*rdev
)
1045 mutex_lock(&rdev
->pm
.mutex
);
1047 radeon_dpm_disable(rdev
);
1048 /* reset the power state */
1049 rdev
->pm
.dpm
.current_ps
= rdev
->pm
.dpm
.requested_ps
= rdev
->pm
.dpm
.boot_ps
;
1050 rdev
->pm
.dpm_enabled
= false;
1051 mutex_unlock(&rdev
->pm
.mutex
);
1054 void radeon_pm_suspend(struct radeon_device
*rdev
)
1056 if (rdev
->pm
.pm_method
== PM_METHOD_DPM
)
1057 radeon_pm_suspend_dpm(rdev
);
1059 radeon_pm_suspend_old(rdev
);
1062 static void radeon_pm_resume_old(struct radeon_device
*rdev
)
1064 /* set up the default clocks if the MC ucode is loaded */
1065 if ((rdev
->family
>= CHIP_BARTS
) &&
1066 (rdev
->family
<= CHIP_CAYMAN
) &&
1068 if (rdev
->pm
.default_vddc
)
1069 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddc
,
1070 SET_VOLTAGE_TYPE_ASIC_VDDC
);
1071 if (rdev
->pm
.default_vddci
)
1072 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddci
,
1073 SET_VOLTAGE_TYPE_ASIC_VDDCI
);
1074 if (rdev
->pm
.default_sclk
)
1075 radeon_set_engine_clock(rdev
, rdev
->pm
.default_sclk
);
1076 if (rdev
->pm
.default_mclk
)
1077 radeon_set_memory_clock(rdev
, rdev
->pm
.default_mclk
);
1079 /* asic init will reset the default power state */
1080 mutex_lock(&rdev
->pm
.mutex
);
1081 rdev
->pm
.current_power_state_index
= rdev
->pm
.default_power_state_index
;
1082 rdev
->pm
.current_clock_mode_index
= 0;
1083 rdev
->pm
.current_sclk
= rdev
->pm
.default_sclk
;
1084 rdev
->pm
.current_mclk
= rdev
->pm
.default_mclk
;
1085 if (rdev
->pm
.power_state
) {
1086 rdev
->pm
.current_vddc
= rdev
->pm
.power_state
[rdev
->pm
.default_power_state_index
].clock_info
[0].voltage
.voltage
;
1087 rdev
->pm
.current_vddci
= rdev
->pm
.power_state
[rdev
->pm
.default_power_state_index
].clock_info
[0].voltage
.vddci
;
1089 if (rdev
->pm
.pm_method
== PM_METHOD_DYNPM
1090 && rdev
->pm
.dynpm_state
== DYNPM_STATE_SUSPENDED
) {
1091 rdev
->pm
.dynpm_state
= DYNPM_STATE_ACTIVE
;
1092 schedule_delayed_work(&rdev
->pm
.dynpm_idle_work
,
1093 msecs_to_jiffies(RADEON_IDLE_LOOP_MS
));
1095 mutex_unlock(&rdev
->pm
.mutex
);
1096 radeon_pm_compute_clocks(rdev
);
1099 static void radeon_pm_resume_dpm(struct radeon_device
*rdev
)
1103 /* asic init will reset to the boot state */
1104 mutex_lock(&rdev
->pm
.mutex
);
1105 rdev
->pm
.dpm
.current_ps
= rdev
->pm
.dpm
.requested_ps
= rdev
->pm
.dpm
.boot_ps
;
1106 radeon_dpm_setup_asic(rdev
);
1107 ret
= radeon_dpm_enable(rdev
);
1108 mutex_unlock(&rdev
->pm
.mutex
);
1110 goto dpm_resume_fail
;
1111 rdev
->pm
.dpm_enabled
= true;
1115 DRM_ERROR("radeon: dpm resume failed\n");
1116 if ((rdev
->family
>= CHIP_BARTS
) &&
1117 (rdev
->family
<= CHIP_CAYMAN
) &&
1119 if (rdev
->pm
.default_vddc
)
1120 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddc
,
1121 SET_VOLTAGE_TYPE_ASIC_VDDC
);
1122 if (rdev
->pm
.default_vddci
)
1123 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddci
,
1124 SET_VOLTAGE_TYPE_ASIC_VDDCI
);
1125 if (rdev
->pm
.default_sclk
)
1126 radeon_set_engine_clock(rdev
, rdev
->pm
.default_sclk
);
1127 if (rdev
->pm
.default_mclk
)
1128 radeon_set_memory_clock(rdev
, rdev
->pm
.default_mclk
);
1132 void radeon_pm_resume(struct radeon_device
*rdev
)
1134 if (rdev
->pm
.pm_method
== PM_METHOD_DPM
)
1135 radeon_pm_resume_dpm(rdev
);
1137 radeon_pm_resume_old(rdev
);
1140 static int radeon_pm_init_old(struct radeon_device
*rdev
)
1144 rdev
->pm
.profile
= PM_PROFILE_DEFAULT
;
1145 rdev
->pm
.dynpm_state
= DYNPM_STATE_DISABLED
;
1146 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_NONE
;
1147 rdev
->pm
.dynpm_can_upclock
= true;
1148 rdev
->pm
.dynpm_can_downclock
= true;
1149 rdev
->pm
.default_sclk
= rdev
->clock
.default_sclk
;
1150 rdev
->pm
.default_mclk
= rdev
->clock
.default_mclk
;
1151 rdev
->pm
.current_sclk
= rdev
->clock
.default_sclk
;
1152 rdev
->pm
.current_mclk
= rdev
->clock
.default_mclk
;
1153 rdev
->pm
.int_thermal_type
= THERMAL_TYPE_NONE
;
1156 if (rdev
->is_atom_bios
)
1157 radeon_atombios_get_power_modes(rdev
);
1159 radeon_combios_get_power_modes(rdev
);
1160 radeon_pm_print_states(rdev
);
1161 radeon_pm_init_profile(rdev
);
1162 /* set up the default clocks if the MC ucode is loaded */
1163 if ((rdev
->family
>= CHIP_BARTS
) &&
1164 (rdev
->family
<= CHIP_CAYMAN
) &&
1166 if (rdev
->pm
.default_vddc
)
1167 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddc
,
1168 SET_VOLTAGE_TYPE_ASIC_VDDC
);
1169 if (rdev
->pm
.default_vddci
)
1170 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddci
,
1171 SET_VOLTAGE_TYPE_ASIC_VDDCI
);
1172 if (rdev
->pm
.default_sclk
)
1173 radeon_set_engine_clock(rdev
, rdev
->pm
.default_sclk
);
1174 if (rdev
->pm
.default_mclk
)
1175 radeon_set_memory_clock(rdev
, rdev
->pm
.default_mclk
);
1179 /* set up the internal thermal sensor if applicable */
1180 ret
= radeon_hwmon_init(rdev
);
1184 INIT_DELAYED_WORK(&rdev
->pm
.dynpm_idle_work
, radeon_dynpm_idle_work_handler
);
1186 if (rdev
->pm
.num_power_states
> 1) {
1187 /* where's the best place to put these? */
1188 ret
= device_create_file(rdev
->dev
, &dev_attr_power_profile
);
1190 DRM_ERROR("failed to create device file for power profile\n");
1191 ret
= device_create_file(rdev
->dev
, &dev_attr_power_method
);
1193 DRM_ERROR("failed to create device file for power method\n");
1195 if (radeon_debugfs_pm_init(rdev
)) {
1196 DRM_ERROR("Failed to register debugfs file for PM!\n");
1199 DRM_INFO("radeon: power management initialized\n");
1205 static void radeon_dpm_print_power_states(struct radeon_device
*rdev
)
1209 for (i
= 0; i
< rdev
->pm
.dpm
.num_ps
; i
++) {
1210 printk("== power state %d ==\n", i
);
1211 radeon_dpm_print_power_state(rdev
, &rdev
->pm
.dpm
.ps
[i
]);
1215 static int radeon_pm_init_dpm(struct radeon_device
*rdev
)
1219 /* default to balanced state */
1220 rdev
->pm
.dpm
.state
= POWER_STATE_TYPE_BALANCED
;
1221 rdev
->pm
.dpm
.user_state
= POWER_STATE_TYPE_BALANCED
;
1222 rdev
->pm
.dpm
.forced_level
= RADEON_DPM_FORCED_LEVEL_AUTO
;
1223 rdev
->pm
.default_sclk
= rdev
->clock
.default_sclk
;
1224 rdev
->pm
.default_mclk
= rdev
->clock
.default_mclk
;
1225 rdev
->pm
.current_sclk
= rdev
->clock
.default_sclk
;
1226 rdev
->pm
.current_mclk
= rdev
->clock
.default_mclk
;
1227 rdev
->pm
.int_thermal_type
= THERMAL_TYPE_NONE
;
1229 if (rdev
->bios
&& rdev
->is_atom_bios
)
1230 radeon_atombios_get_power_modes(rdev
);
1234 /* set up the internal thermal sensor if applicable */
1235 ret
= radeon_hwmon_init(rdev
);
1239 INIT_WORK(&rdev
->pm
.dpm
.thermal
.work
, radeon_dpm_thermal_work_handler
);
1240 mutex_lock(&rdev
->pm
.mutex
);
1241 radeon_dpm_init(rdev
);
1242 rdev
->pm
.dpm
.current_ps
= rdev
->pm
.dpm
.requested_ps
= rdev
->pm
.dpm
.boot_ps
;
1243 if (radeon_dpm
== 1)
1244 radeon_dpm_print_power_states(rdev
);
1245 radeon_dpm_setup_asic(rdev
);
1246 ret
= radeon_dpm_enable(rdev
);
1247 mutex_unlock(&rdev
->pm
.mutex
);
1250 rdev
->pm
.dpm_enabled
= true;
1252 ret
= device_create_file(rdev
->dev
, &dev_attr_power_dpm_state
);
1254 DRM_ERROR("failed to create device file for dpm state\n");
1255 ret
= device_create_file(rdev
->dev
, &dev_attr_power_dpm_force_performance_level
);
1257 DRM_ERROR("failed to create device file for dpm state\n");
1258 /* XXX: these are noops for dpm but are here for backwards compat */
1259 ret
= device_create_file(rdev
->dev
, &dev_attr_power_profile
);
1261 DRM_ERROR("failed to create device file for power profile\n");
1262 ret
= device_create_file(rdev
->dev
, &dev_attr_power_method
);
1264 DRM_ERROR("failed to create device file for power method\n");
1266 if (radeon_debugfs_pm_init(rdev
)) {
1267 DRM_ERROR("Failed to register debugfs file for dpm!\n");
1270 DRM_INFO("radeon: dpm initialized\n");
1275 rdev
->pm
.dpm_enabled
= false;
1276 if ((rdev
->family
>= CHIP_BARTS
) &&
1277 (rdev
->family
<= CHIP_CAYMAN
) &&
1279 if (rdev
->pm
.default_vddc
)
1280 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddc
,
1281 SET_VOLTAGE_TYPE_ASIC_VDDC
);
1282 if (rdev
->pm
.default_vddci
)
1283 radeon_atom_set_voltage(rdev
, rdev
->pm
.default_vddci
,
1284 SET_VOLTAGE_TYPE_ASIC_VDDCI
);
1285 if (rdev
->pm
.default_sclk
)
1286 radeon_set_engine_clock(rdev
, rdev
->pm
.default_sclk
);
1287 if (rdev
->pm
.default_mclk
)
1288 radeon_set_memory_clock(rdev
, rdev
->pm
.default_mclk
);
1290 DRM_ERROR("radeon: dpm initialization failed\n");
1294 int radeon_pm_init(struct radeon_device
*rdev
)
1296 /* enable dpm on rv6xx+ */
1297 switch (rdev
->family
) {
1310 /* DPM requires the RLC, RV770+ dGPU requires SMC */
1312 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
1313 else if ((rdev
->family
>= CHIP_RV770
) &&
1314 (!(rdev
->flags
& RADEON_IS_IGP
)) &&
1316 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
1317 else if (radeon_dpm
== 1)
1318 rdev
->pm
.pm_method
= PM_METHOD_DPM
;
1320 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
1344 /* DPM requires the RLC, RV770+ dGPU requires SMC */
1346 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
1347 else if ((rdev
->family
>= CHIP_RV770
) &&
1348 (!(rdev
->flags
& RADEON_IS_IGP
)) &&
1350 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
1351 else if (radeon_dpm
== 0)
1352 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
1354 rdev
->pm
.pm_method
= PM_METHOD_DPM
;
1357 /* default to profile method */
1358 rdev
->pm
.pm_method
= PM_METHOD_PROFILE
;
1362 if (rdev
->pm
.pm_method
== PM_METHOD_DPM
)
1363 return radeon_pm_init_dpm(rdev
);
1365 return radeon_pm_init_old(rdev
);
1368 int radeon_pm_late_init(struct radeon_device
*rdev
)
1372 if (rdev
->pm
.pm_method
== PM_METHOD_DPM
) {
1373 mutex_lock(&rdev
->pm
.mutex
);
1374 ret
= radeon_dpm_late_enable(rdev
);
1375 mutex_unlock(&rdev
->pm
.mutex
);
1380 static void radeon_pm_fini_old(struct radeon_device
*rdev
)
1382 if (rdev
->pm
.num_power_states
> 1) {
1383 mutex_lock(&rdev
->pm
.mutex
);
1384 if (rdev
->pm
.pm_method
== PM_METHOD_PROFILE
) {
1385 rdev
->pm
.profile
= PM_PROFILE_DEFAULT
;
1386 radeon_pm_update_profile(rdev
);
1387 radeon_pm_set_clocks(rdev
);
1388 } else if (rdev
->pm
.pm_method
== PM_METHOD_DYNPM
) {
1389 /* reset default clocks */
1390 rdev
->pm
.dynpm_state
= DYNPM_STATE_DISABLED
;
1391 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_DEFAULT
;
1392 radeon_pm_set_clocks(rdev
);
1394 mutex_unlock(&rdev
->pm
.mutex
);
1396 cancel_delayed_work_sync(&rdev
->pm
.dynpm_idle_work
);
1398 device_remove_file(rdev
->dev
, &dev_attr_power_profile
);
1399 device_remove_file(rdev
->dev
, &dev_attr_power_method
);
1402 radeon_hwmon_fini(rdev
);
1404 if (rdev
->pm
.power_state
)
1405 kfree(rdev
->pm
.power_state
);
1408 static void radeon_pm_fini_dpm(struct radeon_device
*rdev
)
1410 if (rdev
->pm
.num_power_states
> 1) {
1411 mutex_lock(&rdev
->pm
.mutex
);
1412 radeon_dpm_disable(rdev
);
1413 mutex_unlock(&rdev
->pm
.mutex
);
1415 device_remove_file(rdev
->dev
, &dev_attr_power_dpm_state
);
1416 device_remove_file(rdev
->dev
, &dev_attr_power_dpm_force_performance_level
);
1417 /* XXX backwards compat */
1418 device_remove_file(rdev
->dev
, &dev_attr_power_profile
);
1419 device_remove_file(rdev
->dev
, &dev_attr_power_method
);
1421 radeon_dpm_fini(rdev
);
1423 radeon_hwmon_fini(rdev
);
1425 if (rdev
->pm
.power_state
)
1426 kfree(rdev
->pm
.power_state
);
1429 void radeon_pm_fini(struct radeon_device
*rdev
)
1431 if (rdev
->pm
.pm_method
== PM_METHOD_DPM
)
1432 radeon_pm_fini_dpm(rdev
);
1434 radeon_pm_fini_old(rdev
);
1437 static void radeon_pm_compute_clocks_old(struct radeon_device
*rdev
)
1439 struct drm_device
*ddev
= rdev
->ddev
;
1440 struct drm_crtc
*crtc
;
1441 struct radeon_crtc
*radeon_crtc
;
1443 if (rdev
->pm
.num_power_states
< 2)
1446 mutex_lock(&rdev
->pm
.mutex
);
1448 rdev
->pm
.active_crtcs
= 0;
1449 rdev
->pm
.active_crtc_count
= 0;
1450 if (rdev
->num_crtc
&& rdev
->mode_info
.mode_config_initialized
) {
1451 list_for_each_entry(crtc
,
1452 &ddev
->mode_config
.crtc_list
, head
) {
1453 radeon_crtc
= to_radeon_crtc(crtc
);
1454 if (radeon_crtc
->enabled
) {
1455 rdev
->pm
.active_crtcs
|= (1 << radeon_crtc
->crtc_id
);
1456 rdev
->pm
.active_crtc_count
++;
1461 if (rdev
->pm
.pm_method
== PM_METHOD_PROFILE
) {
1462 radeon_pm_update_profile(rdev
);
1463 radeon_pm_set_clocks(rdev
);
1464 } else if (rdev
->pm
.pm_method
== PM_METHOD_DYNPM
) {
1465 if (rdev
->pm
.dynpm_state
!= DYNPM_STATE_DISABLED
) {
1466 if (rdev
->pm
.active_crtc_count
> 1) {
1467 if (rdev
->pm
.dynpm_state
== DYNPM_STATE_ACTIVE
) {
1468 cancel_delayed_work(&rdev
->pm
.dynpm_idle_work
);
1470 rdev
->pm
.dynpm_state
= DYNPM_STATE_PAUSED
;
1471 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_DEFAULT
;
1472 radeon_pm_get_dynpm_state(rdev
);
1473 radeon_pm_set_clocks(rdev
);
1475 DRM_DEBUG_DRIVER("radeon: dynamic power management deactivated\n");
1477 } else if (rdev
->pm
.active_crtc_count
== 1) {
1478 /* TODO: Increase clocks if needed for current mode */
1480 if (rdev
->pm
.dynpm_state
== DYNPM_STATE_MINIMUM
) {
1481 rdev
->pm
.dynpm_state
= DYNPM_STATE_ACTIVE
;
1482 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_UPCLOCK
;
1483 radeon_pm_get_dynpm_state(rdev
);
1484 radeon_pm_set_clocks(rdev
);
1486 schedule_delayed_work(&rdev
->pm
.dynpm_idle_work
,
1487 msecs_to_jiffies(RADEON_IDLE_LOOP_MS
));
1488 } else if (rdev
->pm
.dynpm_state
== DYNPM_STATE_PAUSED
) {
1489 rdev
->pm
.dynpm_state
= DYNPM_STATE_ACTIVE
;
1490 schedule_delayed_work(&rdev
->pm
.dynpm_idle_work
,
1491 msecs_to_jiffies(RADEON_IDLE_LOOP_MS
));
1492 DRM_DEBUG_DRIVER("radeon: dynamic power management activated\n");
1494 } else { /* count == 0 */
1495 if (rdev
->pm
.dynpm_state
!= DYNPM_STATE_MINIMUM
) {
1496 cancel_delayed_work(&rdev
->pm
.dynpm_idle_work
);
1498 rdev
->pm
.dynpm_state
= DYNPM_STATE_MINIMUM
;
1499 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_MINIMUM
;
1500 radeon_pm_get_dynpm_state(rdev
);
1501 radeon_pm_set_clocks(rdev
);
1507 mutex_unlock(&rdev
->pm
.mutex
);
1510 static void radeon_pm_compute_clocks_dpm(struct radeon_device
*rdev
)
1512 struct drm_device
*ddev
= rdev
->ddev
;
1513 struct drm_crtc
*crtc
;
1514 struct radeon_crtc
*radeon_crtc
;
1516 if (!rdev
->pm
.dpm_enabled
)
1519 mutex_lock(&rdev
->pm
.mutex
);
1521 /* update active crtc counts */
1522 rdev
->pm
.dpm
.new_active_crtcs
= 0;
1523 rdev
->pm
.dpm
.new_active_crtc_count
= 0;
1524 if (rdev
->num_crtc
&& rdev
->mode_info
.mode_config_initialized
) {
1525 list_for_each_entry(crtc
,
1526 &ddev
->mode_config
.crtc_list
, head
) {
1527 radeon_crtc
= to_radeon_crtc(crtc
);
1528 if (crtc
->enabled
) {
1529 rdev
->pm
.dpm
.new_active_crtcs
|= (1 << radeon_crtc
->crtc_id
);
1530 rdev
->pm
.dpm
.new_active_crtc_count
++;
1535 /* update battery/ac status */
1536 if (power_supply_is_system_supplied() > 0)
1537 rdev
->pm
.dpm
.ac_power
= true;
1539 rdev
->pm
.dpm
.ac_power
= false;
1541 radeon_dpm_change_power_state_locked(rdev
);
1543 mutex_unlock(&rdev
->pm
.mutex
);
1547 void radeon_pm_compute_clocks(struct radeon_device
*rdev
)
1549 if (rdev
->pm
.pm_method
== PM_METHOD_DPM
)
1550 radeon_pm_compute_clocks_dpm(rdev
);
1552 radeon_pm_compute_clocks_old(rdev
);
1555 static bool radeon_pm_in_vbl(struct radeon_device
*rdev
)
1557 int crtc
, vpos
, hpos
, vbl_status
;
1560 /* Iterate over all active crtc's. All crtc's must be in vblank,
1561 * otherwise return in_vbl == false.
1563 for (crtc
= 0; (crtc
< rdev
->num_crtc
) && in_vbl
; crtc
++) {
1564 if (rdev
->pm
.active_crtcs
& (1 << crtc
)) {
1565 vbl_status
= radeon_get_crtc_scanoutpos(rdev
->ddev
, crtc
, 0, &vpos
, &hpos
, NULL
, NULL
);
1566 if ((vbl_status
& DRM_SCANOUTPOS_VALID
) &&
1567 !(vbl_status
& DRM_SCANOUTPOS_INVBL
))
1575 static bool radeon_pm_debug_check_in_vbl(struct radeon_device
*rdev
, bool finish
)
1578 bool in_vbl
= radeon_pm_in_vbl(rdev
);
1580 if (in_vbl
== false)
1581 DRM_DEBUG_DRIVER("not in vbl for pm change %08x at %s\n", stat_crtc
,
1582 finish
? "exit" : "entry");
1586 static void radeon_dynpm_idle_work_handler(struct work_struct
*work
)
1588 struct radeon_device
*rdev
;
1590 rdev
= container_of(work
, struct radeon_device
,
1591 pm
.dynpm_idle_work
.work
);
1593 resched
= ttm_bo_lock_delayed_workqueue(&rdev
->mman
.bdev
);
1594 mutex_lock(&rdev
->pm
.mutex
);
1595 if (rdev
->pm
.dynpm_state
== DYNPM_STATE_ACTIVE
) {
1596 int not_processed
= 0;
1599 for (i
= 0; i
< RADEON_NUM_RINGS
; ++i
) {
1600 struct radeon_ring
*ring
= &rdev
->ring
[i
];
1603 not_processed
+= radeon_fence_count_emitted(rdev
, i
);
1604 if (not_processed
>= 3)
1609 if (not_processed
>= 3) { /* should upclock */
1610 if (rdev
->pm
.dynpm_planned_action
== DYNPM_ACTION_DOWNCLOCK
) {
1611 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_NONE
;
1612 } else if (rdev
->pm
.dynpm_planned_action
== DYNPM_ACTION_NONE
&&
1613 rdev
->pm
.dynpm_can_upclock
) {
1614 rdev
->pm
.dynpm_planned_action
=
1615 DYNPM_ACTION_UPCLOCK
;
1616 rdev
->pm
.dynpm_action_timeout
= jiffies
+
1617 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS
);
1619 } else if (not_processed
== 0) { /* should downclock */
1620 if (rdev
->pm
.dynpm_planned_action
== DYNPM_ACTION_UPCLOCK
) {
1621 rdev
->pm
.dynpm_planned_action
= DYNPM_ACTION_NONE
;
1622 } else if (rdev
->pm
.dynpm_planned_action
== DYNPM_ACTION_NONE
&&
1623 rdev
->pm
.dynpm_can_downclock
) {
1624 rdev
->pm
.dynpm_planned_action
=
1625 DYNPM_ACTION_DOWNCLOCK
;
1626 rdev
->pm
.dynpm_action_timeout
= jiffies
+
1627 msecs_to_jiffies(RADEON_RECLOCK_DELAY_MS
);
1631 /* Note, radeon_pm_set_clocks is called with static_switch set
1632 * to false since we want to wait for vbl to avoid flicker.
1634 if (rdev
->pm
.dynpm_planned_action
!= DYNPM_ACTION_NONE
&&
1635 jiffies
> rdev
->pm
.dynpm_action_timeout
) {
1636 radeon_pm_get_dynpm_state(rdev
);
1637 radeon_pm_set_clocks(rdev
);
1640 schedule_delayed_work(&rdev
->pm
.dynpm_idle_work
,
1641 msecs_to_jiffies(RADEON_IDLE_LOOP_MS
));
1643 mutex_unlock(&rdev
->pm
.mutex
);
1644 ttm_bo_unlock_delayed_workqueue(&rdev
->mman
.bdev
, resched
);
1650 #if defined(CONFIG_DEBUG_FS)
1652 static int radeon_debugfs_pm_info(struct seq_file
*m
, void *data
)
1654 struct drm_info_node
*node
= (struct drm_info_node
*) m
->private;
1655 struct drm_device
*dev
= node
->minor
->dev
;
1656 struct radeon_device
*rdev
= dev
->dev_private
;
1657 struct drm_device
*ddev
= rdev
->ddev
;
1659 if ((rdev
->flags
& RADEON_IS_PX
) &&
1660 (ddev
->switch_power_state
!= DRM_SWITCH_POWER_ON
)) {
1661 seq_printf(m
, "PX asic powered off\n");
1662 } else if (rdev
->pm
.dpm_enabled
) {
1663 mutex_lock(&rdev
->pm
.mutex
);
1664 if (rdev
->asic
->dpm
.debugfs_print_current_performance_level
)
1665 radeon_dpm_debugfs_print_current_performance_level(rdev
, m
);
1667 seq_printf(m
, "Debugfs support not implemented for this asic\n");
1668 mutex_unlock(&rdev
->pm
.mutex
);
1670 seq_printf(m
, "default engine clock: %u0 kHz\n", rdev
->pm
.default_sclk
);
1671 /* radeon_get_engine_clock is not reliable on APUs so just print the current clock */
1672 if ((rdev
->family
>= CHIP_PALM
) && (rdev
->flags
& RADEON_IS_IGP
))
1673 seq_printf(m
, "current engine clock: %u0 kHz\n", rdev
->pm
.current_sclk
);
1675 seq_printf(m
, "current engine clock: %u0 kHz\n", radeon_get_engine_clock(rdev
));
1676 seq_printf(m
, "default memory clock: %u0 kHz\n", rdev
->pm
.default_mclk
);
1677 if (rdev
->asic
->pm
.get_memory_clock
)
1678 seq_printf(m
, "current memory clock: %u0 kHz\n", radeon_get_memory_clock(rdev
));
1679 if (rdev
->pm
.current_vddc
)
1680 seq_printf(m
, "voltage: %u mV\n", rdev
->pm
.current_vddc
);
1681 if (rdev
->asic
->pm
.get_pcie_lanes
)
1682 seq_printf(m
, "PCIE lanes: %d\n", radeon_get_pcie_lanes(rdev
));
1688 static struct drm_info_list radeon_pm_info_list
[] = {
1689 {"radeon_pm_info", radeon_debugfs_pm_info
, 0, NULL
},
1693 static int radeon_debugfs_pm_init(struct radeon_device
*rdev
)
1695 #if defined(CONFIG_DEBUG_FS)
1696 return radeon_debugfs_add_files(rdev
, radeon_pm_info_list
, ARRAY_SIZE(radeon_pm_info_list
));