public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/bdw: Broaden FBC resolution limit to 4096x4096
@ 2014-06-16 16:52 Damien Lespiau
  2014-06-16 17:11 ` Damien Lespiau
  0 siblings, 1 reply; 6+ messages in thread
From: Damien Lespiau @ 2014-06-16 16:52 UTC (permalink / raw)
  To: intel-gfx

From: Daisy Sun <daisy.sun@intel.com>

Staring from BDW, the resolution limit of FBC has increased to
4096x4096>

Issue: APDEV-2935
Otc-Tracker: VIZ-3826
Change-Id: I842f64e3cf2c0d18d29ef1bcfef3b9bb1f1764ac
Signed-off-by: Daisy Sun <daisy.sun@intel.com>
---
 drivers/gpu/drm/i915/intel_pm.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 0b088fe..8cc60fc 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -529,7 +529,10 @@ void intel_update_fbc(struct drm_device *dev)
 		goto out_disable;
 	}
 
-	if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
+	if (INTEL_INFO(dev)->gen >= 8) {
+		max_width = 4096;
+		max_height = 4096;
+	} else if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
 		max_width = 4096;
 		max_height = 2048;
 	} else {
-- 
1.8.3.1

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

end of thread, other threads:[~2014-06-16 22:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-16 16:52 [PATCH] drm/i915/bdw: Broaden FBC resolution limit to 4096x4096 Damien Lespiau
2014-06-16 17:11 ` Damien Lespiau
2014-06-16 18:15   ` Daniel Vetter
2014-06-16 20:41     ` Sun, Daisy
2014-06-16 21:49       ` Daniel Vetter
2014-06-16 22:55         ` Sun, Daisy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox