|
@@ -9335,8 +9335,13 @@ static void intel_setup_outputs(struct drm_device *dev)
|
|
|
intel_dp_init(dev, PCH_DP_D, PORT_D);
|
|
|
} else if (IS_VALLEYVIEW(dev)) {
|
|
|
/* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
|
|
|
- if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
|
|
|
- intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
|
|
|
+ if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
|
|
|
+ intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
|
|
|
+ PORT_C);
|
|
|
+ if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
|
|
|
+ intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C,
|
|
|
+ PORT_C);
|
|
|
+ }
|
|
|
|
|
|
if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
|
|
|
intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
|