[igt-dev] [PATCH i-g-t] tests/kms_atomic_transition:reduce execution time
Nidhi Gupta
nidhi1.gupta at intel.com
Wed Dec 9 13:36:25 UTC 2020
kms_atomic_transition test is taking minimum of
69.5s time to execute on CI. To reduce the execution
time this patch will add the change which will run
the test on 1 HDR plane, 1 SDR UV plane, 1 SDR Y plane
and skip the rest of the planes.
Signed-off-by: Nidhi Gupta <nidhi1.gupta at intel.com>
---
tests/kms_atomic_transition.c | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/tests/kms_atomic_transition.c b/tests/kms_atomic_transition.c
index a71bbe10..856378e6 100644
--- a/tests/kms_atomic_transition.c
+++ b/tests/kms_atomic_transition.c
@@ -205,6 +205,33 @@ static void set_sprite_wh(igt_display_t *display, enum pipe pipe,
#define is_atomic_check_plane_size_errno(errno) \
(errno == -EINVAL)
+static bool skip_plane(igt_display_t *display, igt_plane_t *plane)
+{
+ int index = plane->index;
+
+ if (!is_i915_device(display->drm_fd))
+ return false;
+
+ if (plane->type == DRM_PLANE_TYPE_CURSOR)
+ return false;
+
+ if (plane->type == DRM_PLANE_TYPE_PRIMARY)
+ return false;
+
+ if (intel_gen(intel_get_drm_devid(display->drm_fd)) < 11)
+ return false;
+
+ /*
+ * Test 1 HDR plane, 1 SDR UV plane, 1 SDR Y plane.
+ *
+ * Kernel registers planes in the hardware Z order:
+ * 0,1,2 HDR planes
+ * 3,4 SDR UV planes
+ * 5,6 SDR Y planes
+ */
+ return index != 0 && index != 3 && index != 5;
+}
+
static void setup_parms(igt_display_t *display, enum pipe pipe,
const drmModeModeInfo *mode,
struct igt_fb *primary_fb,
@@ -230,8 +257,12 @@ static void setup_parms(igt_display_t *display, enum pipe pipe,
cursor_height = mode->vdisplay;
for_each_plane_on_pipe(display, pipe, plane) {
+
int i = plane->index;
+ if (skip_plane(display, plane))
+ continue;
+
if (plane->type == DRM_PLANE_TYPE_PRIMARY) {
parms[i].fb = primary_fb;
parms[i].width = mode->hdisplay;
--
2.26.2
More information about the igt-dev
mailing list