summaryrefslogtreecommitdiff
path: root/tests/kms_universal_plane.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_universal_plane.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_universal_plane.c')
-rw-r--r--tests/kms_universal_plane.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index b06b51e6..b9e0651b 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -134,7 +134,6 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
int num_primary = 0, num_cursor = 0;
int i;
- igt_assert(data->display.has_universal_planes);
igt_skip_on(pipe >= display->n_pipes);
igt_info("Testing connector %s using pipe %s\n", igt_output_name(output),
@@ -573,8 +572,8 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
int r, g, b;
int count1, count2;
- igt_assert(data->display.has_universal_planes);
igt_skip_on(pipe >= display->n_pipes);
+ igt_require(display->has_cursor_plane);
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
@@ -783,8 +782,6 @@ igt_main
igt_require_pipe_crc();
igt_display_init(&data.display, data.drm_fd);
-
- igt_require(data.display.has_universal_planes);
}
for (int pipe = 0; pipe < I915_MAX_PIPES; pipe++)