aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2013-11-03 00:07:32 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-11-08 12:09:51 -0500
commit4b30553d89c1477f86ef4207fe61a1effdcdacd3 (patch)
tree5c473b4fd40ca8c55ebe321c008842f33f9952b7
parent4e8058a20a199b22c12154a3df87d3307d3149e6 (diff)
drm/i915/bdw: Broadwell has 3 pipes
v2: Rebase (Paulo Zanoni) v3: Rebase on top of num_pipes having moved to intel_device_info. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> (v1) Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com> (v2) Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/gpu/drm/i915/i915_drv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 70799febb8ba..c0ab5d460692 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -338,7 +338,7 @@ static const struct intel_device_info intel_haswell_m_info = {
338 338
339static const struct intel_device_info intel_broadwell_d_info = { 339static const struct intel_device_info intel_broadwell_d_info = {
340 .is_preliminary = 1, 340 .is_preliminary = 1,
341 .gen = 8, 341 .gen = 8, .num_pipes = 3,
342 .need_gfx_hws = 1, .has_hotplug = 1, 342 .need_gfx_hws = 1, .has_hotplug = 1,
343 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, 343 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
344 .has_llc = 1, 344 .has_llc = 1,
@@ -347,7 +347,7 @@ static const struct intel_device_info intel_broadwell_d_info = {
347 347
348static const struct intel_device_info intel_broadwell_m_info = { 348static const struct intel_device_info intel_broadwell_m_info = {
349 .is_preliminary = 1, 349 .is_preliminary = 1,
350 .gen = 8, .is_mobile = 1, 350 .gen = 8, .is_mobile = 1, .num_pipes = 3,
351 .need_gfx_hws = 1, .has_hotplug = 1, 351 .need_gfx_hws = 1, .has_hotplug = 1,
352 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, 352 .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING,
353 .has_llc = 1, 353 .has_llc = 1,