public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v2] lib/igt_kms: Fix commits for planes with multiple possible CRTCs
@ 2019-02-22 17:04 Nicholas Kazlauskas
  2019-02-22 17:29 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Fix commits for planes with multiple possible CRTCs (rev2) Patchwork
  0 siblings, 1 reply; 2+ messages in thread
From: Nicholas Kazlauskas @ 2019-02-22 17:04 UTC (permalink / raw)
  To: igt-dev; +Cc: Daniel Vetter

An igt_plane_t is defined per igt_pipe_t. It is treated as its
own independent resource but DRM planes can be exposed to being used on
a number of possible CRTCs - making it a shared resource.

In IGT planes with multiple possible CRTCs are added to the plane list
for each pipe that the plane supports. The internal state remains
independent in IGT so when the same plane is modified for multiple
pipes in a single commit the last pipe to modify it is the one whose
state gets fully applied.

This situation happens fairly often in practice - resetting the display
at the start of the test before a commit will reset the CRTC ID and FB
ID for each plane.

For an example, consider the
igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max test.

This test will fail for any overlay plane exposed for multiple CRTCs.

The test tries to set a framebuffer for pipe A but has all the other
pipes reset the plane state in the same commit. If there are multiple
pipes on the hardware then the last pipe will be the one to set all the
plane properties. The driver will receive a commit with no overlay
plane enabled since the last pipe set CRTC ID and FB ID to 0, disabling
the plane. The reference CRC capture will be incorrect since not all
the planes have been enabled and the subsequent CRC captures will
not match, failing the test.

The simplest (but hacky) fix to this problem is to only set the
properties for the plane for the pipe that last had it bound.

This patch introduces a global plane list on igt_display_t that keeps
track of the pipe that pipe that last called igt_plane_set_fb. The
properties for the plane will only be applied from that single pipe
when commiting the state to DRM.

No behavioral changes should be introduced by this patch for hardware
whose planes are only ever exposed one CRTC.

It would likely be best to eventually modify the igt_pipe_t plane list
to be a list of pointers to planes instead (igt_plane_t**)
instead of being the actual plane objects, but that can come later.

Many areas of the code like to make use of the backpointer to the pipe
on the plane which makes refactoring the code in that manner a little
trickier.

v2: Add igt_plane_set_fb, use igt_plane_t for global plane list (Daniel)

Cc: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
---
 lib/igt_kms.c | 102 ++++++++++++++++++++++++++++++++++++--------------
 lib/igt_kms.h |   6 ++-
 2 files changed, 78 insertions(+), 30 deletions(-)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 761bb193..810b8fe0 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1905,6 +1905,25 @@ void igt_display_require(igt_display_t *display, int drm_fd)
 	plane_resources = drmModeGetPlaneResources(display->drm_fd);
 	igt_assert(plane_resources);
 
+	display->n_planes = plane_resources->count_planes;
+	display->planes = calloc(sizeof(igt_plane_t), display->n_planes);
+	igt_assert_f(display->planes, "Failed to allocate memory for %d planes\n", display->n_planes);
+
+	for (i = 0; i < plane_resources->count_planes; ++i) {
+		igt_plane_t *plane = &display->planes[i];
+		uint32_t id = plane_resources->planes[i];
+
+		plane->drm_plane = drmModeGetPlane(display->drm_fd, id);
+		igt_assert(plane->drm_plane);
+
+		plane->type = get_drm_plane_type(display->drm_fd, id);
+		plane->values[IGT_PLANE_IN_FENCE_FD] = ~0ULL;
+
+		igt_fill_plane_props(display, plane, IGT_NUM_PLANE_PROPS,
+				     igt_plane_prop_names);
+		igt_fill_plane_format_mod(display, plane);
+	}
+
 	for_each_pipe(display, i) {
 		igt_pipe_t *pipe = &display->pipes[i];
 		igt_plane_t *plane;
@@ -1922,17 +1941,12 @@ void igt_display_require(igt_display_t *display, int drm_fd)
 		igt_fill_pipe_props(display, pipe, IGT_NUM_CRTC_PROPS, igt_crtc_prop_names);
 
 		/* count number of valid planes */
-		for (j = 0; j < plane_resources->count_planes; j++) {
-			drmModePlane *drm_plane;
-
-			drm_plane = drmModeGetPlane(display->drm_fd,
-						    plane_resources->planes[j]);
+		for (j = 0; j < display->n_planes; j++) {
+			drmModePlane *drm_plane = display->planes[j].drm_plane;
 			igt_assert(drm_plane);
 
 			if (drm_plane->possible_crtcs & (1 << i))
 				n_planes++;
-
-			drmModeFreePlane(drm_plane);
 		}
 
 		igt_assert_lt(0, n_planes);
@@ -1941,20 +1955,14 @@ void igt_display_require(igt_display_t *display, int drm_fd)
 		last_plane = n_planes - 1;
 
 		/* add the planes that can be used with that pipe */
-		for (j = 0; j < plane_resources->count_planes; j++) {
-			drmModePlane *drm_plane;
+		for (j = 0; j < display->n_planes; j++) {
+			igt_plane_t *global_plane = &display->planes[j];
+			drmModePlane *drm_plane = global_plane->drm_plane;
 
-			drm_plane = drmModeGetPlane(display->drm_fd,
-						    plane_resources->planes[j]);
-			igt_assert(drm_plane);
-
-			if (!(drm_plane->possible_crtcs & (1 << i))) {
-				drmModeFreePlane(drm_plane);
+			if (!(drm_plane->possible_crtcs & (1 << i)))
 				continue;
-			}
 
-			type = get_drm_plane_type(display->drm_fd,
-						  plane_resources->planes[j]);
+			type = global_plane->type;
 
 			if (type == DRM_PLANE_TYPE_PRIMARY && pipe->plane_primary == -1) {
 				plane = &pipe->planes[0];
@@ -1975,6 +1983,14 @@ void igt_display_require(igt_display_t *display, int drm_fd)
 			plane->pipe = pipe;
 			plane->drm_plane = drm_plane;
 			plane->values[IGT_PLANE_IN_FENCE_FD] = ~0ULL;
+			plane->ref = global_plane;
+
+			/*
+			 * HACK: point the global plane to the first pipe that
+			 * it can go on.
+			 */
+			if (!global_plane->ref)
+				igt_plane_set_pipe(plane, pipe);
 
 			igt_fill_plane_props(display, plane, IGT_NUM_PLANE_PROPS, igt_plane_prop_names);
 
@@ -2127,17 +2143,6 @@ igt_output_t *igt_output_from_connector(igt_display_t *display,
 
 static void igt_pipe_fini(igt_pipe_t *pipe)
 {
-	int i;
-
-	for (i = 0; i < pipe->n_planes; i++) {
-		igt_plane_t *plane = &pipe->planes[i];
-
-		if (plane->drm_plane) {
-			drmModeFreePlane(plane->drm_plane);
-			plane->drm_plane = NULL;
-		}
-	}
-
 	free(pipe->planes);
 	pipe->planes = NULL;
 
@@ -2163,6 +2168,15 @@ void igt_display_fini(igt_display_t *display)
 {
 	int i;
 
+	for (i = 0; i < display->n_planes; ++i) {
+		igt_plane_t *plane = &display->planes[i];
+
+		if (plane->drm_plane) {
+			drmModeFreePlane(plane->drm_plane);
+			plane->drm_plane = NULL;
+		}
+	}
+
 	for (i = 0; i < display->n_pipes; i++)
 		igt_pipe_fini(&display->pipes[i]);
 
@@ -2172,6 +2186,8 @@ void igt_display_fini(igt_display_t *display)
 	display->outputs = NULL;
 	free(display->pipes);
 	display->pipes = NULL;
+	free(display->planes);
+	display->planes = NULL;
 }
 
 static void igt_display_refresh(igt_display_t *display)
@@ -2789,6 +2805,10 @@ static int igt_pipe_commit(igt_pipe_t *pipe,
 	for (i = 0; i < pipe->n_planes; i++) {
 		igt_plane_t *plane = &pipe->planes[i];
 
+		/* skip planes that are handled by another pipe */
+		if (plane->ref->pipe != pipe)
+			continue;
+
 		ret = igt_plane_commit(plane, pipe, s, fail_on_error);
 		CHECK_RETURN(ret, fail_on_error);
 	}
@@ -3177,6 +3197,10 @@ static int igt_atomic_commit(igt_display_t *display, uint32_t flags, void *user_
 			igt_atomic_prepare_crtc_commit(pipe_obj, req);
 
 		for_each_plane_on_pipe(display, pipe, plane) {
+			/* skip planes that are handled by another pipe */
+			if (plane->ref->pipe != pipe_obj)
+				continue;
+
 			if (plane->changed)
 				igt_atomic_prepare_plane_commit(plane, pipe_obj, req);
 		}
@@ -3709,6 +3733,9 @@ void igt_plane_set_fb(igt_plane_t *plane, struct igt_fb *fb)
 		if (igt_plane_has_prop(plane, IGT_PLANE_COLOR_RANGE))
 			igt_plane_set_prop_enum(plane, IGT_PLANE_COLOR_RANGE,
 				igt_color_range_to_str(fb->color_range));
+
+		/* Hack to prioritize the plane on the pipe that last set fb */
+		igt_plane_set_pipe(plane, pipe);
 	} else {
 		igt_plane_set_size(plane, 0, 0);
 
@@ -3743,6 +3770,23 @@ void igt_plane_set_fence_fd(igt_plane_t *plane, int fence_fd)
 	igt_plane_set_prop_value(plane, IGT_PLANE_IN_FENCE_FD, fd);
 }
 
+/**
+ * igt_plane_set_pipe:
+ * @plane: Target plane pointer
+ * @pipe: The pipe to assign the plane to
+ *
+ */
+void igt_plane_set_pipe(igt_plane_t *plane, igt_pipe_t *pipe)
+{
+	/*
+	 * HACK: Point the global plane back to the local plane.
+	 * This is used to help apply the correct atomic state while
+	 * we're moving away from the single pipe per plane model.
+	 */
+	plane->ref->ref = plane;
+	plane->ref->pipe = pipe;
+}
+
 /**
  * igt_plane_set_position:
  * @plane: Plane pointer for which position is to be set
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 5755b160..e1c5c967 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -300,9 +300,10 @@ typedef enum {
 #define IGT_ROTATION_MASK \
 	(IGT_ROTATION_0 | IGT_ROTATION_90 | IGT_ROTATION_180 | IGT_ROTATION_270)
 
-typedef struct {
+typedef struct igt_plane {
 	/*< private >*/
 	igt_pipe_t *pipe;
+	struct igt_plane *ref;
 	int index;
 	/* capabilities */
 	int type;
@@ -372,8 +373,10 @@ struct igt_display {
 	int drm_fd;
 	int log_shift;
 	int n_pipes;
+	int n_planes;
 	int n_outputs;
 	igt_output_t *outputs;
+	igt_plane_t *planes;
 	igt_pipe_t *pipes;
 	bool has_cursor_plane;
 	bool is_atomic;
@@ -413,6 +416,7 @@ void igt_pipe_request_out_fence(igt_pipe_t *pipe);
 
 void igt_plane_set_fb(igt_plane_t *plane, struct igt_fb *fb);
 void igt_plane_set_fence_fd(igt_plane_t *plane, int fence_fd);
+void igt_plane_set_pipe(igt_plane_t *plane, igt_pipe_t *pipe);
 void igt_plane_set_position(igt_plane_t *plane, int x, int y);
 void igt_plane_set_size(igt_plane_t *plane, int w, int h);
 void igt_plane_set_rotation(igt_plane_t *plane, igt_rotation_t rotation);
-- 
2.17.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Fix commits for planes with multiple possible CRTCs (rev2)
  2019-02-22 17:04 [igt-dev] [PATCH i-g-t v2] lib/igt_kms: Fix commits for planes with multiple possible CRTCs Nicholas Kazlauskas
@ 2019-02-22 17:29 ` Patchwork
  0 siblings, 0 replies; 2+ messages in thread
From: Patchwork @ 2019-02-22 17:29 UTC (permalink / raw)
  To: igt-dev

== Series Details ==

Series: lib/igt_kms: Fix commits for planes with multiple possible CRTCs (rev2)
URL   : https://patchwork.freedesktop.org/series/57050/
State : failure

== Summary ==

CI Bug Log - changes from IGT_4852 -> IGTPW_2492
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_2492 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_2492, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/57050/revisions/2/mbox/

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_2492:

### IGT changes ###

#### Possible regressions ####

  * igt@debugfs_test@read_all_entries:
    - fi-ivb-3770:        PASS -> WARN
    - fi-hsw-peppy:       PASS -> WARN
    - fi-icl-u3:          NOTRUN -> WARN
    - fi-bdw-gvtdvm:      PASS -> WARN
    - fi-bxt-j4205:       PASS -> WARN
    - fi-kbl-7500u:       PASS -> WARN
    - fi-snb-2520m:       PASS -> WARN
    - fi-gdg-551:         PASS -> WARN
    - fi-icl-u2:          PASS -> WARN
    - fi-cfl-8109u:       PASS -> WARN
    - fi-pnv-d510:        PASS -> WARN
    - fi-ilk-650:         PASS -> WARN
    - fi-ivb-3520m:       PASS -> WARN
    - fi-skl-6770hq:      PASS -> WARN
    - fi-byt-n2820:       PASS -> WARN
    - fi-elk-e7500:       PASS -> WARN
    - fi-skl-6260u:       PASS -> WARN
    - fi-hsw-4770r:       PASS -> WARN
    - fi-skl-gvtdvm:      PASS -> WARN
    - fi-kbl-guc:         PASS -> WARN
    - fi-bsw-kefka:       PASS -> WARN
    - fi-kbl-x1275:       PASS -> WARN
    - fi-blb-e6850:       PASS -> WARN
    - fi-bwr-2160:        PASS -> WARN
    - fi-bdw-5557u:       PASS -> WARN
    - fi-kbl-r:           PASS -> WARN
    - fi-skl-guc:         PASS -> WARN
    - fi-kbl-7567u:       PASS -> WARN
    - fi-apl-guc:         PASS -> WARN
    - fi-kbl-8809g:       PASS -> WARN
    - fi-skl-6600u:       PASS -> WARN
    - fi-kbl-7560u:       PASS -> WARN
    - fi-cfl-8700k:       PASS -> WARN
    - fi-whl-u:           PASS -> WARN
    - fi-bsw-n3050:       PASS -> WARN
    - fi-skl-6700k2:      PASS -> WARN
    - fi-hsw-4770:        PASS -> WARN
    - fi-cfl-guc:         PASS -> WARN

  * igt@i915_pm_backlight@basic-brightness:
    - fi-kbl-7560u:       PASS -> FAIL +35

  * igt@kms_busy@basic-flip-a:
    - fi-kbl-7567u:       PASS -> FAIL +34
    - fi-apl-guc:         PASS -> FAIL +27
    - fi-whl-u:           PASS -> FAIL +35

  * igt@kms_chamelium@dp-crc-fast:
    - fi-kbl-7500u:       PASS -> FAIL +36

  * igt@kms_chamelium@hdmi-crc-fast:
    - fi-skl-6700k2:      PASS -> FAIL +34

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          PASS -> FAIL +37

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-hsw-4770r:       PASS -> FAIL +30
    - fi-pnv-d510:        PASS -> FAIL +19
    - fi-skl-6600u:       PASS -> FAIL +35
    - fi-kbl-x1275:       PASS -> FAIL +30
    - fi-cfl-8700k:       PASS -> FAIL +30

  * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
    - fi-skl-guc:         PASS -> FAIL +27

  * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
    - fi-snb-2520m:       PASS -> FAIL +24

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - fi-bsw-n3050:       PASS -> FAIL +16
    - fi-hsw-4770:        PASS -> FAIL +30

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-pnv-d510:        PASS -> CRASH
    - fi-gdg-551:         PASS -> CRASH
    - fi-bwr-2160:        PASS -> CRASH
    - fi-ivb-3520m:       PASS -> CRASH
    - fi-hsw-4770:        PASS -> CRASH
    - fi-ivb-3770:        PASS -> CRASH
    - fi-ilk-650:         PASS -> CRASH
    - fi-snb-2520m:       PASS -> CRASH
    - fi-elk-e7500:       PASS -> CRASH
    - fi-blb-e6850:       PASS -> CRASH

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u3:          NOTRUN -> FAIL +35

  * igt@kms_pipe_crc_basic@bad-source:
    - fi-cfl-8109u:       PASS -> FAIL +30
    - fi-kbl-guc:         PASS -> FAIL

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
    - fi-ivb-3770:        PASS -> FAIL +30

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-b:
    - fi-bxt-j4205:       PASS -> FAIL +30
    - fi-blb-e6850:       PASS -> FAIL +19

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a:
    - fi-ivb-3520m:       PASS -> FAIL +31

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence:
    - fi-ilk-650:         PASS -> FAIL +23
    - fi-elk-e7500:       PASS -> FAIL +19
    - fi-byt-n2820:       PASS -> FAIL +23

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b:
    - fi-bsw-kefka:       PASS -> FAIL +24
    - fi-bdw-5557u:       PASS -> FAIL +30

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b-frame-sequence:
    - fi-hsw-peppy:       PASS -> FAIL +30
    - fi-bdw-gvtdvm:      PASS -> FAIL +30
    - fi-gdg-551:         PASS -> FAIL +19

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c:
    - fi-skl-6260u:       PASS -> FAIL +30
    - fi-skl-gvtdvm:      PASS -> FAIL +30

  * igt@kms_pipe_crc_basic@read-crc-pipe-a:
    - fi-bwr-2160:        PASS -> FAIL +19

  * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
    - fi-cfl-guc:         PASS -> FAIL +27
    - fi-skl-6770hq:      PASS -> FAIL +30

  * igt@kms_psr@cursor_plane_move:
    - fi-kbl-r:           PASS -> FAIL +35

  
#### Warnings ####

  * igt@kms_busy@basic-flip-a:
    - fi-bsw-n3050:       SKIP [fdo#109271] / [fdo#109278] -> FAIL +1

  * igt@kms_busy@basic-flip-b:
    - fi-kbl-8809g:       SKIP [fdo#109271] -> FAIL +30
    - fi-kbl-guc:         SKIP [fdo#109271] / [fdo#109278] -> FAIL +2

  * igt@kms_busy@basic-flip-c:
    - fi-bwr-2160:        SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-blb-e6850:       SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-gdg-551:         SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-bsw-kefka:       SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-pnv-d510:        SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-snb-2520m:       SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-elk-e7500:       SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-ilk-650:         SKIP [fdo#109271] / [fdo#109278] -> FAIL
    - fi-byt-n2820:       SKIP [fdo#109271] / [fdo#109278] -> FAIL

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-kbl-7500u:       DMESG-WARN [fdo#102505] / [fdo#103558] / [fdo#105079] / [fdo#105602] -> FAIL

  * igt@kms_chamelium@dp-edid-read:
    - fi-icl-u2:          SKIP [fdo#109316] -> FAIL +2

  * igt@kms_chamelium@dp-hpd-fast:
    - fi-skl-6700k2:      SKIP [fdo#109271] -> FAIL +4

  * igt@kms_chamelium@vga-hpd-fast:
    - fi-icl-u2:          SKIP [fdo#109309] -> FAIL +1
    - fi-kbl-7500u:       SKIP [fdo#109271] -> FAIL +1
    - fi-kbl-7567u:       SKIP [fdo#109271] -> FAIL +4

  * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
    - fi-elk-e7500:       SKIP [fdo#109271] -> FAIL +9

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       DMESG-FAIL [fdo#102614] -> FAIL

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
    - fi-bsw-n3050:       SKIP [fdo#109271] -> FAIL +11

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-b:
    - fi-skl-guc:         SKIP [fdo#109271] -> FAIL +2
    - fi-apl-guc:         SKIP [fdo#109271] -> FAIL +2
    - fi-cfl-guc:         SKIP [fdo#109271] -> FAIL +2

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-c:
    - fi-blb-e6850:       SKIP [fdo#109271] -> FAIL +9

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c-frame-sequence:
    - fi-gdg-551:         SKIP [fdo#109271] -> FAIL +9
    - fi-pnv-d510:        SKIP [fdo#109271] -> FAIL +9

  * igt@kms_pipe_crc_basic@read-crc-pipe-c:
    - fi-kbl-guc:         SKIP [fdo#109271] -> FAIL +26
    - fi-bwr-2160:        SKIP [fdo#109271] -> FAIL +9
    - fi-byt-n2820:       SKIP [fdo#109271] -> FAIL +5

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
    - fi-bsw-kefka:       SKIP [fdo#109271] -> FAIL +5
    - fi-snb-2520m:       SKIP [fdo#109271] -> FAIL +5
    - fi-ilk-650:         SKIP [fdo#109271] -> FAIL +5

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@debugfs_test@read_all_entries:
    - {fi-icl-y}:         PASS -> WARN

  * igt@kms_busy@basic-flip-c:
    - {fi-icl-y}:         SKIP [fdo#109278] -> FAIL +2

  * igt@kms_pipe_crc_basic@bad-source:
    - {fi-icl-y}:         PASS -> FAIL

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c:
    - {fi-icl-y}:         SKIP [fdo#109527] -> FAIL +26

  
Known issues
------------

  Here are the changes found in IGTPW_2492 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-compute:
    - fi-kbl-8809g:       NOTRUN -> FAIL [fdo#108094]

  * igt@amdgpu/amd_cs_nop@sync-fork-compute0:
    - fi-icl-u3:          NOTRUN -> SKIP [fdo#109315] +17

  * igt@gem_exec_basic@gtt-bsd1:
    - fi-icl-u3:          NOTRUN -> SKIP [fdo#109276] +7

  * igt@gem_exec_parse@basic-rejected:
    - fi-icl-u3:          NOTRUN -> SKIP [fdo#109289] +1

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      PASS -> FAIL [fdo#108511]

  * igt@i915_selftest@live_contexts:
    - fi-icl-u3:          NOTRUN -> DMESG-FAIL [fdo#108569]

  * igt@kms_chamelium@hdmi-edid-read:
    - fi-icl-u3:          NOTRUN -> SKIP [fdo#109284] +8

  * igt@kms_force_connector_basic@prune-stale-modes:
    - fi-icl-u3:          NOTRUN -> SKIP [fdo#109285] +3

  
#### Possible fixes ####

  * igt@amdgpu/amd_basic@userptr:
    - fi-kbl-8809g:       DMESG-WARN [fdo#108965] -> PASS

  * igt@i915_pm_rpm@module-reload:
    - {fi-icl-y}:         INCOMPLETE [fdo#108840] -> PASS

  * igt@i915_selftest@live_evict:
    - fi-bsw-kefka:       DMESG-WARN [fdo#107709] -> PASS

  * igt@i915_selftest@live_execlists:
    - fi-apl-guc:         INCOMPLETE [fdo#103927] -> PASS

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#105079]: https://bugs.freedesktop.org/show_bug.cgi?id=105079
  [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602
  [fdo#107709]: https://bugs.freedesktop.org/show_bug.cgi?id=107709
  [fdo#108094]: https://bugs.freedesktop.org/show_bug.cgi?id=108094
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840
  [fdo#108965]: https://bugs.freedesktop.org/show_bug.cgi?id=108965
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109316]: https://bugs.freedesktop.org/show_bug.cgi?id=109316
  [fdo#109527]: https://bugs.freedesktop.org/show_bug.cgi?id=109527


Participating hosts (43 -> 40)
------------------------------

  Additional (1): fi-icl-u3 
  Missing    (4): fi-ctg-p8600 fi-ilk-m540 fi-byt-squawks fi-bdw-samus 


Build changes
-------------

    * IGT: IGT_4852 -> IGTPW_2492

  CI_DRM_5654: 30c7f283790b433aa311ef7a7d2b6b428886fb9a @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2492: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2492/
  IGT_4852: d1e352d15a6c6e1062ee60198795809435d1bb47 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2492/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-02-22 17:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-22 17:04 [igt-dev] [PATCH i-g-t v2] lib/igt_kms: Fix commits for planes with multiple possible CRTCs Nicholas Kazlauskas
2019-02-22 17:29 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_kms: Fix commits for planes with multiple possible CRTCs (rev2) Patchwork

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