[Intel-gfx] [PATCH i-g-t] tests/kms_cursor_crc: Test non-square cursors on IVB+

ville.syrjala at linux.intel.com ville.syrjala at linux.intel.com
Thu Jun 1 18:53:24 UTC 2017


From: Ville Syrjälä <ville.syrjala at linux.intel.com>

IVB+ have the cursor "FBC" feature, meaning they support a
somewhat limited form of non-square cursors. Let's test that.

Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
 tests/kms_cursor_crc.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 206f85268c9e..0940752b8c40 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -416,7 +416,13 @@ static bool has_nonsquare_cursors(uint32_t devid)
 	 * Test non-square cursors a bit on the platforms
 	 * that support such things.
 	 */
-	return devid == PCI_CHIP_845_G || devid == PCI_CHIP_I865_G;
+	if (devid == PCI_CHIP_845_G || devid == PCI_CHIP_I865_G)
+		return true;
+
+	if (IS_VALLEYVIEW(devid) || IS_CHERRYVIEW(devid))
+		return false;
+
+	return intel_gen(devid) >= 7;
 }
 
 static void test_cursor_size(data_t *data)
-- 
2.10.2



More information about the Intel-gfx mailing list