diff mbox

[5/7] drm/i915: Support fused off pipe C configurations

Message ID 1386251782-21176-6-git-send-email-damien.lespiau@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Lespiau, Damien Dec. 5, 2013, 1:56 p.m. UTC
Starting from IVB, pipe C can be fused off. We have yet to see such
configuration in the wild though (ie not tested).

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
---
 drivers/gpu/drm/i915/i915_dma.c | 4 ++++
 drivers/gpu/drm/i915/i915_reg.h | 1 +
 2 files changed, 5 insertions(+)
diff mbox

Patch

diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index 88bc0c2..3af79e3 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -1480,6 +1480,10 @@  static void intel_device_info_runtime_init(struct drm_device *dev)
 			DRM_DEBUG_DRIVER("Display fused off, disabling\n");
 			info->num_planes = 0;
 		}
+		if (fuse_strap & IVB_PIPE_C_DISABLE) {
+			DRM_DEBUG_DRIVER("Pipe C fused off, disabling\n");
+			info->num_planes = 2;
+		}
 	}
 }
 
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index 5a0cd52..9e127b2 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -4118,6 +4118,7 @@ 
 #define  ILK_INTERNAL_GRAPHICS_DISABLE	(1 << 31)
 #define  ILK_INTERNAL_DISPLAY_DISABLE	(1 << 30)
 #define  ILK_DISPLAY_DEBUG_DISABLE	(1 << 29)
+#define  IVB_PIPE_C_DISABLE		(1 << 28)
 #define  ILK_HDCP_DISABLE		(1 << 25)
 #define  ILK_eDP_A_DISABLE		(1 << 24)
 #define  HSW_CDCLK_LIMIT		(1 << 24)