Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 217973
b: refs/heads/master
c: 7eaf554
h: refs/heads/master
i:
  217971: 9bb80c3
v: v3
  • Loading branch information
Jesse Barnes authored and Chris Wilson committed Sep 8, 2010
1 parent 8e39b76 commit aa4e761
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f4433a8d5d3076775bdd1a996a47db7beb468ac0
refs/heads/master: 7eaf5547d0460027b15a297bb15d80bdd600cb41
15 changes: 12 additions & 3 deletions trunk/drivers/gpu/drm/i915/intel_dp.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,13 +754,14 @@ intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
}
}

static void ironlake_edp_panel_on (struct drm_device *dev)
/* Returns true if the panel was already on when called */
static bool ironlake_edp_panel_on (struct drm_device *dev)
{
struct drm_i915_private *dev_priv = dev->dev_private;
u32 pp;

if (I915_READ(PCH_PP_STATUS) & PP_ON)
return;
return true;

pp = I915_READ(PCH_PP_CONTROL);

Expand All @@ -780,6 +781,8 @@ static void ironlake_edp_panel_on (struct drm_device *dev)
pp |= PANEL_POWER_RESET; /* restore panel reset bit */
I915_WRITE(PCH_PP_CONTROL, pp);
POSTING_READ(PCH_PP_CONTROL);

return false;
}

static void ironlake_edp_panel_off (struct drm_device *dev)
Expand Down Expand Up @@ -860,7 +863,7 @@ static void intel_dp_prepare(struct drm_encoder *encoder)
struct drm_i915_private *dev_priv = dev->dev_private;
uint32_t dp_reg = I915_READ(intel_dp->output_reg);

if (IS_eDP(intel_dp)) {
if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) {
ironlake_edp_backlight_off(dev);
ironlake_edp_panel_on(dev);
ironlake_edp_pll_on(encoder);
Expand Down Expand Up @@ -1365,7 +1368,11 @@ ironlake_dp_detect(struct drm_connector *connector)
struct drm_encoder *encoder = intel_attached_encoder(connector);
struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
enum drm_connector_status status;
bool was_on = false;

/* Panel needs power for AUX to work */
if (IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp))
was_on = ironlake_edp_panel_on(connector->dev);
status = connector_status_disconnected;
if (intel_dp_aux_native_read(intel_dp,
0x000, intel_dp->dpcd,
Expand All @@ -1376,6 +1383,8 @@ ironlake_dp_detect(struct drm_connector *connector)
}
DRM_DEBUG_KMS("DPCD: %hx%hx%hx%hx\n", intel_dp->dpcd[0],
intel_dp->dpcd[1], intel_dp->dpcd[2], intel_dp->dpcd[3]);
if ((IS_eDP(intel_dp) || IS_PCH_eDP(intel_dp)) && !was_on)
ironlake_edp_panel_off(connector->dev);
return status;
}

Expand Down

0 comments on commit aa4e761

Please sign in to comment.