aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/intel_display.c
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni.dodonov@intel.com>2012-05-09 14:37:27 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2012-05-19 16:39:50 -0400
commit0e72a5b55e706dafa3402611f6f9e082a810673d (patch)
treeb775c7008399636f9028572ec989480a1b6a381e /drivers/gpu/drm/i915/intel_display.c
parente615efe4b879de87ef6a4192d7e5b0bd0d2e1518 (diff)
drm/i915: detect digital outputs on Haswell
Digital port detection on Haswell is indicated by the presence of a bit in DDI_BUF_CTL for port A, and by a different register for ports B, C and D. So we check for those bits during the initialization time and let the hdmi function know about those. Note that this bit does not indicates whether the output is DP or HDMI. However, the DDI buffers can be programmed in a way that is shared between DP/HDMI and FDI/HDMI except for PORT E. So for now, we detect those digital outputs as being HDMI, but proper DP support is still pending. Note that DDI A can only drive eDP, so we do not handle it here for hdmi initialization. v2: simplify Haswell handling logic v3: use generic function for handling digital outputs. Signed-off-by: Eugeni Dodonov <eugeni.dodonov@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_display.c')
-rw-r--r--drivers/gpu/drm/i915/intel_display.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index f1bb2e2ec173..1a06f97e73f8 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -6474,7 +6474,26 @@ static void intel_setup_outputs(struct drm_device *dev)
6474 6474
6475 intel_crt_init(dev); 6475 intel_crt_init(dev);
6476 6476
6477 if (HAS_PCH_SPLIT(dev)) { 6477 if (IS_HASWELL(dev)) {
6478 int found;
6479
6480 /* Haswell uses DDI functions to detect digital outputs */
6481 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
6482 /* DDI A only supports eDP */
6483 if (found)
6484 intel_ddi_init(dev, PORT_A);
6485
6486 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
6487 * register */
6488 found = I915_READ(SFUSE_STRAP);
6489
6490 if (found & SFUSE_STRAP_DDIB_DETECTED)
6491 intel_ddi_init(dev, PORT_B);
6492 if (found & SFUSE_STRAP_DDIC_DETECTED)
6493 intel_ddi_init(dev, PORT_C);
6494 if (found & SFUSE_STRAP_DDID_DETECTED)
6495 intel_ddi_init(dev, PORT_D);
6496 } else if (HAS_PCH_SPLIT(dev)) {
6478 int found; 6497 int found;
6479 6498
6480 if (I915_READ(HDMIB) & PORT_DETECTED) { 6499 if (I915_READ(HDMIB) & PORT_DETECTED) {