diff options
author | Keith Packard <keithp@keithp.com> | 2011-09-29 23:51:26 (GMT) |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-10-12 16:37:46 (GMT) |
commit | 32ce697c53f41290c3a2d3807b521b0fe4f42d2a (patch) | |
tree | 092388884c1191c19c62e191026ca3e3628bf14c /drivers/gpu | |
parent | 05ce1a4961cffd7b0c8d4b70a7c9fa341368bc48 (diff) | |
download | linux-32ce697c53f41290c3a2d3807b521b0fe4f42d2a.tar.xz |
drm/i915: No need to wait for eDP power off delay if panel is on
If the panel is powered up, there's no need to delay for the 'off'
interval when turning the panel on.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/i915/intel_dp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index f5303e1..6db2a2d 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c @@ -869,7 +869,16 @@ static void ironlake_wait_panel_off(struct intel_dp *intel_dp) { unsigned long off_time; unsigned long delay; + DRM_DEBUG_KMS("Wait for panel power off time\n"); + + if (ironlake_edp_have_panel_power(intel_dp) || + ironlake_edp_have_panel_vdd(intel_dp)) + { + DRM_DEBUG_KMS("Panel still on, no delay needed\n"); + return; + } + off_time = intel_dp->panel_off_jiffies + msecs_to_jiffies(intel_dp->panel_power_down_delay); if (time_after(jiffies, off_time)) { DRM_DEBUG_KMS("Time already passed"); |