summaryrefslogtreecommitdiff
path: root/tests/kms_rotation_crc.c
diff options
context:
space:
mode:
authorLyude <lyude@redhat.com>2016-12-07 19:02:04 -0500
committerLyude <lyude@redhat.com>2016-12-08 11:26:26 -0500
commit80baeb023223e7948ebfa22ebb4d3b706b4bc550 (patch)
tree5aae4d51683c3a1bb64388afb53bc595cbd0538e /tests/kms_rotation_crc.c
parent4f0866610a4300d2d740b75122ea3b92e0134c08 (diff)
igt_kms: Remove support for drivers with <1 drm_plane
We've had support for universal planes since kernel version 3.15, so there's not really a good reason to try supporting drivers that lack plane support now. As well, the current has_universal_planes logic is broken anyway as it makes the assumption that having display planes always means we have both a primary plane and a cursor plane (this isn't true on radeon/amdgpu and nouveau). So, remove this, and just check for whether or not we have a cursor plane. Signed-off-by: Lyude <lyude@redhat.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/kms_rotation_crc.c')
-rw-r--r--tests/kms_rotation_crc.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 6cc15337..796b4486 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -106,10 +106,8 @@ static void commit_crtc(data_t *data, igt_output_t *output, igt_plane_t *plane)
if (!plane->is_cursor)
igt_plane_set_position(plane, data->pos_x, data->pos_y);
- if (plane->is_primary || plane->is_cursor) {
- igt_require(data->display.has_universal_planes);
+ if (plane->is_primary || plane->is_cursor)
commit = COMMIT_UNIVERSAL;
- }
if (data->display.is_atomic)
commit = COMMIT_ATOMIC;
@@ -248,10 +246,11 @@ static void test_plane_rotation(data_t *data, enum igt_plane plane_type)
unsigned int flip_count;
int ret;
- if (plane_type == IGT_PLANE_PRIMARY || plane_type == IGT_PLANE_CURSOR) {
- igt_require(data->display.has_universal_planes);
+ if (plane_type == IGT_PLANE_PRIMARY || plane_type == IGT_PLANE_CURSOR)
commit = COMMIT_UNIVERSAL;
- }
+
+ if (plane_type == IGT_PLANE_CURSOR)
+ igt_require(display->has_cursor_plane);
if (data->display.is_atomic)
commit = COMMIT_ATOMIC;
@@ -341,10 +340,11 @@ static void test_plane_rotation_ytiled_obj(data_t *data, enum igt_plane plane_ty
plane = igt_output_get_plane(output, plane_type);
igt_require(igt_plane_supports_rotation(plane));
- if (plane_type == IGT_PLANE_PRIMARY || plane_type == IGT_PLANE_CURSOR) {
- igt_require(data->display.has_universal_planes);
+ if (plane_type == IGT_PLANE_PRIMARY || plane_type == IGT_PLANE_CURSOR)
commit = COMMIT_UNIVERSAL;
- }
+
+ if (plane_type == IGT_PLANE_CURSOR)
+ igt_require(display->has_cursor_plane);
if (data->display.is_atomic)
commit = COMMIT_ATOMIC;
@@ -408,10 +408,11 @@ static void test_plane_rotation_exhaust_fences(data_t *data, enum igt_plane plan
plane = igt_output_get_plane(output, plane_type);
igt_require(igt_plane_supports_rotation(plane));
- if (plane_type == IGT_PLANE_PRIMARY || plane_type == IGT_PLANE_CURSOR) {
- igt_require(data->display.has_universal_planes);
+ if (plane_type == IGT_PLANE_PRIMARY || plane_type == IGT_PLANE_CURSOR)
commit = COMMIT_UNIVERSAL;
- }
+
+ if (plane_type == IGT_PLANE_CURSOR)
+ igt_require(display->has_cursor_plane);
if (data->display.is_atomic)
commit = COMMIT_ATOMIC;