All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/bdw: Only use 2g GGTT for 32b platforms
@ 2014-05-07  4:58 Ben Widawsky
  2014-05-07  7:42 ` Daniel Vetter
  2014-05-08  2:17 ` [PATCH] [v3] " Ben Widawsky
  0 siblings, 2 replies; 11+ messages in thread
From: Ben Widawsky @ 2014-05-07  4:58 UTC (permalink / raw)
  To: Intel GFX; +Cc: Ben Widawsky, Ben Widawsky

From: Ben Widawsky <benjamin.widawsky@linux.intel.com>

Daniel requested in the bug that I use a 3GB fallback size. Since this
is not in the spec as a valid size, I decided against it. We could
potentially add a patch to bump it to 3GB on top of this one.

This probably should be CC: stable - but I'll let the powers that be
decide that one.

v2: Change ifdef to 32b, instead of ifndef
update comment

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=76619
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
---
 drivers/gpu/drm/i915/i915_gem_gtt.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/i915/i915_gem_gtt.c b/drivers/gpu/drm/i915/i915_gem_gtt.c
index 846b6ee..d03a540 100644
--- a/drivers/gpu/drm/i915/i915_gem_gtt.c
+++ b/drivers/gpu/drm/i915/i915_gem_gtt.c
@@ -1759,6 +1759,14 @@ static inline unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
 	bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
 	if (bdw_gmch_ctl)
 		bdw_gmch_ctl = 1 << bdw_gmch_ctl;
+
+#ifdef CONFIG_32BIT
+	/* Limit 32B platforms to a 2GB GGTT
+	4 << 20 / pte size * PAGE_SIZE */
+	if (bdw_gmch_ctl > 4)
+		bdw_gmch_ctl = 4;
+#endif
+
 	return bdw_gmch_ctl << 20;
 }
 
-- 
1.9.2

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-05-20  7:55 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-07  4:58 [PATCH] drm/i915/bdw: Only use 2g GGTT for 32b platforms Ben Widawsky
2014-05-07  7:42 ` Daniel Vetter
2014-05-08  1:21   ` Ben Widawsky
2014-05-08  6:25     ` Jani Nikula
2014-05-12 16:42       ` Daniel Vetter
2014-05-08  2:17 ` [PATCH] [v3] " Ben Widawsky
2014-05-13  7:41   ` [Intel-gfx] " Jani Nikula
2014-05-19 15:13     ` Jesse Barnes
2014-05-19 22:46       ` [PATCH] " Rodrigo Vivi
2014-05-20  7:15         ` Chris Wilson
2014-05-20  7:55         ` Daniel Vetter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.