diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 10:48:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 10:48:01 -0400 |
commit | 9e9a928eed8796a0a1aaed7e0b676db86ba84594 (patch) | |
tree | 9e07bbfec8f1bf7efd767e4170b04ea1848218ff /drivers/gpu/drm/radeon/radeon_device.c | |
parent | d2cfd3105094f593bc1fbd0b042a7752ddf08691 (diff) | |
parent | 0a4ae727d6aa459247b027387edb6ff99f657792 (diff) |
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux
Pull drm fixes from Dave Airlie:
"All fairly small: radeon stability and a panic path fix.
Mostly radeon fixes, suspend/resume fix, stability on the CIK
chipsets, along with a locking check avoidance patch for panic times
regression"
* 'drm-fixes' of git://people.freedesktop.org/~airlied/linux:
drm/radeon: use the CP DMA on CIK
drm/radeon: sync page table updates
drm/radeon: fix vm buffer size estimation
drm/crtc-helper: skip locking checks in panicking path
drm/radeon/dpm: resume fixes for some systems
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_device.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c index 14671406212f..2cd144c378d6 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c | |||
@@ -1558,6 +1558,10 @@ int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon) | |||
1558 | 1558 | ||
1559 | drm_kms_helper_poll_enable(dev); | 1559 | drm_kms_helper_poll_enable(dev); |
1560 | 1560 | ||
1561 | /* set the power state here in case we are a PX system or headless */ | ||
1562 | if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) | ||
1563 | radeon_pm_compute_clocks(rdev); | ||
1564 | |||
1561 | if (fbcon) { | 1565 | if (fbcon) { |
1562 | radeon_fbdev_set_suspend(rdev, 0); | 1566 | radeon_fbdev_set_suspend(rdev, 0); |
1563 | console_unlock(); | 1567 | console_unlock(); |