* [PATCH v3 00/12] YUV Conversion Colorop tests
@ 2026-06-23 17:57 Harry Wentland
2026-06-23 17:57 ` [PATCH v3 01/12] include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX Harry Wentland
` (15 more replies)
0 siblings, 16 replies; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev
Cc: Harry Wentland, Alex Hung, Daniel Stone, Chaitanya Kumar Borah,
Uma Shankar, Louis Chauvet, Melissa Wen, Simon Ser, Robert Mader
This kernel branch introduces a new fixed matrix colorop with
named matrices, including matrices for all YCbCr conversions
from BT.601, BT.709, and BT.2020, both limited and full range.
https://gitlab.freedesktop.org/hwentland/linux/-/tree/csc-ff-colorop
These patches add the functionality to IGT to test NV12 and
P010 buffers with the kms_colorop tests, and add corresponding
tests for the Fixed Matrix colorop to kms_colorop.
These test work on amdgpu (P010-XR30 variants) and VKMS
(NV12-XR24 variants).
On AMD HW a couple extra driver fixes are needed. They can be
found at this kernel tree:
https://gitlab.freedesktop.org/hwentland/linux/-/tree/yuv-fm-colorop
This tree can be found at:
https://gitlab.freedesktop.org/hwentland/igt-gpu-tools/-/tree/yuv-fm-colorop
Some more background on this work can be found at:
https://hwentland.github.io/2026/03/10/plane-color-pipeline-csc-3d-lut-kwin.html
v3:
- Update to use renamed Fixed Matrix colorop. Rename related functions.
Cc: Alex Hung <alex.hung@amd.com>
Cc: Daniel Stone <daniels@collabora.com>
Cc: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Cc: Louis Chauvet <louis.chauvet@bootlin.com>
Cc: Melissa Wen <mwen@igalia.com>
Cc: Simon Ser <contact@emersion.fr>
Cc: Robert Mader <robert.mader@collabora.com>
Harry Wentland (12):
include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX
lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property
tests/kms_colorop_helper: Add Fixed Matrix colorop infrastructure
tests/kms_colorop_helper: Add helpers to get encoding/range from
FIXED_MATRIX name
lib/igt_fb: Add YUV color pattern framebuffer support
lib/igt_color_encoding: Add XRGB2101010 format support
lib/igt_color: Add YUV pixel reading support
lib/igt_color: Refactor transform_pixels for input/output FBs and CSC
tests/kms_colorop: Add FIXED_MATRIX colorop tests
tests/kms_colorop: Keep CRTC active between YUV tests with temp FB
tests/kms_colorop: Add bypass transition tests
tests/kms_colorop: Increase VKMS bracket to 3 up
include/drm-uapi/drm_mode.h | 11 +
lib/igt_color.c | 242 +++++++++++++++++---
lib/igt_color.h | 6 +-
lib/igt_color_encoding.c | 1 +
lib/igt_fb.c | 41 ++++
lib/igt_fb.h | 6 +
lib/igt_kms.c | 1 +
lib/igt_kms.h | 1 +
tests/kms_colorop.c | 432 +++++++++++++++++++++++++++++-------
tests/kms_colorop_helper.c | 75 +++++++
tests/kms_colorop_helper.h | 16 +-
11 files changed, 721 insertions(+), 111 deletions(-)
--
2.54.0
^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH v3 01/12] include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 6:52 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 02/12] lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property Harry Wentland
` (14 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add DRM_COLOROP_FIXED_MATRIX to the colorop type enumeration.
Assisted-by: Claude:claude-opus-4-6
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
include/drm-uapi/drm_mode.h | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/include/drm-uapi/drm_mode.h b/include/drm-uapi/drm_mode.h
index de10ce859fdb..0924e38af09c 100644
--- a/include/drm-uapi/drm_mode.h
+++ b/include/drm-uapi/drm_mode.h
@@ -934,6 +934,17 @@ enum drm_colorop_type {
* LUT size is advertised via the SIZE property.
*/
DRM_COLOROP_3D_LUT,
+
+ /**
+ * @DRM_COLOROP_FIXED_MATRIX:
+ *
+ * enum string "Fixed Matrix"
+ *
+ * A Colorop block that performs a pre-defined matrix operation selected
+ * via the FIXED_MATRIX_TYPE enum property. The driver advertises the supported
+ * operations through this property.
+ */
+ DRM_COLOROP_FIXED_MATRIX,
};
/**
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 02/12] lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
2026-06-23 17:57 ` [PATCH v3 01/12] include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 6:56 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 03/12] tests/kms_colorop_helper: Add Fixed Matrix colorop infrastructure Harry Wentland
` (13 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add support for the Fixed Matrix colorop property:
- Add IGT_COLOROP_FIXED_MATRIX property to the colorop property enum
and names array in igt_kms
Assisted-by: Claude:claude-opus-4-6
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
lib/igt_kms.c | 1 +
lib/igt_kms.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index e82d32130666..9003b2b9e670 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -725,6 +725,7 @@ const char * const igt_colorop_prop_names[IGT_NUM_COLOROP_PROPS] = {
[IGT_COLOROP_MULTIPLIER] = "MULTIPLIER",
[IGT_COLOROP_LUT3D_INTERPOLATION] = "LUT3D_INTERPOLATION",
[IGT_COLOROP_NEXT] = "NEXT",
+ [IGT_COLOROP_FIXED_MATRIX] = "FIXED_MATRIX_TYPE",
};
const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 3df3ba86630e..1be58288e119 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -363,6 +363,7 @@ enum igt_atomic_colorop_properties {
IGT_COLOROP_MULTIPLIER,
IGT_COLOROP_LUT3D_INTERPOLATION,
IGT_COLOROP_NEXT,
+ IGT_COLOROP_FIXED_MATRIX,
IGT_NUM_COLOROP_PROPS
};
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 03/12] tests/kms_colorop_helper: Add Fixed Matrix colorop infrastructure
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
2026-06-23 17:57 ` [PATCH v3 01/12] include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX Harry Wentland
2026-06-23 17:57 ` [PATCH v3 02/12] lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 6:56 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 04/12] tests/kms_colorop_helper: Add helpers to get encoding/range from FIXED_MATRIX name Harry Wentland
` (12 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add support for Fixed Matrix colorops:
- Add KMS_COLOROP_FIXED_MATRIX type to the test colorop type enum
- Add kms_colorop_fixed_matrix_info_t struct carrying the DRM enum string
name plus encoding/range for software reference transforms
- Add can_use_colorop() handling: matches DRM_COLOROP_FIXED_MATRIX type and
verifies the specific FIXED_MATRIX enum value is supported
- Add set_colorop() handling: sets FIXED_MATRIX via single enum property
- Define four FIXED_MATRIX colorop instances: BT.709 limited/full, BT.601
limited, and BT.2020 limited
Assisted-by: Claude:claude-opus-4-6
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
tests/kms_colorop_helper.c | 45 ++++++++++++++++++++++++++++++++++++++
tests/kms_colorop_helper.h | 12 +++++++++-
2 files changed, 56 insertions(+), 1 deletion(-)
diff --git a/tests/kms_colorop_helper.c b/tests/kms_colorop_helper.c
index aaee4e567ef6..d12584c9adb1 100644
--- a/tests/kms_colorop_helper.c
+++ b/tests/kms_colorop_helper.c
@@ -200,6 +200,42 @@ kms_colorop_t kms_colorop_3dlut_17_12_rgb = {
.transform = &igt_color_3dlut_17_12_rgb,
};
+kms_colorop_t kms_colorop_bt709_limited_ycbcr_to_rgb = {
+ .type = KMS_COLOROP_FIXED_MATRIX,
+ .fixed_matrix_info = {
+ .fixed_matrix_type_name = "YCbCr 709 Limited to RGB",
+ },
+ .name = "YCbCr BT.709 Limited Range to RGB",
+ .transform = NULL,
+};
+
+kms_colorop_t kms_colorop_bt709_full_ycbcr_to_rgb = {
+ .type = KMS_COLOROP_FIXED_MATRIX,
+ .fixed_matrix_info = {
+ .fixed_matrix_type_name = "YCbCr 709 Full to RGB",
+ },
+ .name = "YCbCr BT.709 Full Range to RGB",
+ .transform = NULL,
+};
+
+kms_colorop_t kms_colorop_bt601_limited_ycbcr_to_rgb = {
+ .type = KMS_COLOROP_FIXED_MATRIX,
+ .fixed_matrix_info = {
+ .fixed_matrix_type_name = "YCbCr 601 Limited to RGB",
+ },
+ .name = "YCbCr BT.601 Limited Range to RGB",
+ .transform = NULL,
+};
+
+kms_colorop_t kms_colorop_bt2020_limited_ycbcr_to_rgb = {
+ .type = KMS_COLOROP_FIXED_MATRIX,
+ .fixed_matrix_info = {
+ .fixed_matrix_type_name = "YCbCr 2020 Limited to RGB NC",
+ },
+ .name = "YCbCr BT.2020 Limited Range to RGB",
+ .transform = NULL,
+};
+
static bool can_use_colorop(igt_display_t *display, igt_colorop_t *colorop, kms_colorop_t *desired)
{
switch (desired->type) {
@@ -218,6 +254,11 @@ static bool can_use_colorop(igt_display_t *display, igt_colorop_t *colorop, kms_
return (igt_colorop_get_prop(display, colorop, IGT_COLOROP_TYPE) == DRM_COLOROP_MULTIPLIER);
case KMS_COLOROP_LUT3D:
return (igt_colorop_get_prop(display, colorop, IGT_COLOROP_TYPE) == DRM_COLOROP_3D_LUT);
+ case KMS_COLOROP_FIXED_MATRIX:
+ if (igt_colorop_get_prop(display, colorop, IGT_COLOROP_TYPE) == DRM_COLOROP_FIXED_MATRIX &&
+ igt_colorop_try_prop_enum(colorop, IGT_COLOROP_FIXED_MATRIX, desired->fixed_matrix_info.fixed_matrix_type_name))
+ return true;
+ return false;
default:
return false;
}
@@ -362,6 +403,10 @@ static void set_colorop(igt_display_t *display, kms_colorop_t *colorop)
configure_3dlut(display, colorop, lut_size);
break;
+ case KMS_COLOROP_FIXED_MATRIX:
+ igt_colorop_set_prop_enum(colorop->colorop, IGT_COLOROP_FIXED_MATRIX,
+ colorop->fixed_matrix_info.fixed_matrix_type_name);
+ break;
default:
igt_fail(IGT_EXIT_FAILURE);
}
diff --git a/tests/kms_colorop_helper.h b/tests/kms_colorop_helper.h
index a081fa02db8e..68ae1dd05c6f 100644
--- a/tests/kms_colorop_helper.h
+++ b/tests/kms_colorop_helper.h
@@ -22,7 +22,8 @@ typedef enum kms_colorop_type {
KMS_COLOROP_CUSTOM_LUT1D,
KMS_COLOROP_CTM_3X4,
KMS_COLOROP_MULTIPLIER,
- KMS_COLOROP_LUT3D
+ KMS_COLOROP_LUT3D,
+ KMS_COLOROP_FIXED_MATRIX,
} kms_colorop_type_t;
typedef enum kms_colorop_lut1d_tf {
@@ -50,8 +51,13 @@ typedef struct kms_colorop_lut3d_info {
enum drm_colorop_lut3d_interpolation_type interpolation;
} kms_colorop_lut3d_info_t;
+typedef struct kms_colorop_fixed_matrix_info {
+ const char *fixed_matrix_type_name;
+} kms_colorop_fixed_matrix_info_t;
+
typedef struct kms_colorop {
kms_colorop_type_t type;
+ kms_colorop_fixed_matrix_info_t fixed_matrix_info;
union {
kms_colorop_enumerated_lut1d_info_t enumerated_lut1d_info;
@@ -94,6 +100,10 @@ extern kms_colorop_t kms_colorop_ctm_3x4_bt709_dec;
extern kms_colorop_t kms_colorop_multiply_125;
extern kms_colorop_t kms_colorop_multiply_inv_125;
extern kms_colorop_t kms_colorop_3dlut_17_12_rgb;
+extern kms_colorop_t kms_colorop_bt709_limited_ycbcr_to_rgb;
+extern kms_colorop_t kms_colorop_bt709_full_ycbcr_to_rgb;
+extern kms_colorop_t kms_colorop_bt601_limited_ycbcr_to_rgb;
+extern kms_colorop_t kms_colorop_bt2020_limited_ycbcr_to_rgb;
igt_colorop_t *get_color_pipeline(igt_display_t *display,
igt_plane_t *plane,
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 04/12] tests/kms_colorop_helper: Add helpers to get encoding/range from FIXED_MATRIX name
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (2 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 03/12] tests/kms_colorop_helper: Add Fixed Matrix colorop infrastructure Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:04 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 05/12] lib/igt_fb: Add YUV color pattern framebuffer support Harry Wentland
` (11 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add fixed_matrix_type_to_encoding_range() to map a FIXED_MATRIX colorop's
DRM enum string name (e.g. "YCbCr 709 Limited to RGB") to the matching
igt_color_encoding and igt_color_range. This lets the tests derive the
encoding/range needed for the software reference CSC directly from the
colorop the hardware advertises.
Assisted-by: Claude:claude-opus-4-6
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
tests/kms_colorop_helper.c | 30 ++++++++++++++++++++++++++++++
tests/kms_colorop_helper.h | 4 ++++
2 files changed, 34 insertions(+)
diff --git a/tests/kms_colorop_helper.c b/tests/kms_colorop_helper.c
index d12584c9adb1..e589fa5c99a9 100644
--- a/tests/kms_colorop_helper.c
+++ b/tests/kms_colorop_helper.c
@@ -473,3 +473,33 @@ void reset_colorops(kms_colorop_t *colorops[])
for(i = 0; colorops[i]; i++)
reset_colorop(colorops[i]);
}
+
+static const struct {
+ const char *name;
+ enum igt_color_encoding encoding;
+ enum igt_color_range range;
+} fixed_matrix_type_map[] = {
+ { "YCbCr 601 Full to RGB", IGT_COLOR_YCBCR_BT601, IGT_COLOR_YCBCR_FULL_RANGE },
+ { "YCbCr 709 Full to RGB", IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_FULL_RANGE },
+ { "YCbCr 2020 Full to RGB NC", IGT_COLOR_YCBCR_BT2020, IGT_COLOR_YCBCR_FULL_RANGE },
+ { "YCbCr 601 Limited to RGB", IGT_COLOR_YCBCR_BT601, IGT_COLOR_YCBCR_LIMITED_RANGE },
+ { "YCbCr 709 Limited to RGB", IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE },
+ { "YCbCr 2020 Limited to RGB NC", IGT_COLOR_YCBCR_BT2020, IGT_COLOR_YCBCR_LIMITED_RANGE },
+};
+
+void fixed_matrix_type_to_encoding_range(const char *fixed_matrix_type_name,
+ enum igt_color_encoding *encoding,
+ enum igt_color_range *range)
+{
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(fixed_matrix_type_map); i++) {
+ if (!strcmp(fixed_matrix_type_name, fixed_matrix_type_map[i].name)) {
+ *encoding = fixed_matrix_type_map[i].encoding;
+ *range = fixed_matrix_type_map[i].range;
+ return;
+ }
+ }
+
+ igt_assert_f(false, "Unknown Fixed Matrix type: %s\n", fixed_matrix_type_name);
+}
diff --git a/tests/kms_colorop_helper.h b/tests/kms_colorop_helper.h
index 68ae1dd05c6f..539067b5a494 100644
--- a/tests/kms_colorop_helper.h
+++ b/tests/kms_colorop_helper.h
@@ -115,4 +115,8 @@ void set_color_pipeline(igt_display_t *display,
void set_color_pipeline_bypass(igt_plane_t *plane);
void reset_colorops(kms_colorop_t *colorops[]);
+void fixed_matrix_type_to_encoding_range(const char *fixed_matrix_type_name,
+ enum igt_color_encoding *encoding,
+ enum igt_color_range *range);
+
#endif /* __KMS_COLOROP_HELPER_H__ */
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 05/12] lib/igt_fb: Add YUV color pattern framebuffer support
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (3 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 04/12] tests/kms_colorop_helper: Add helpers to get encoding/range from FIXED_MATRIX name Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:05 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 06/12] lib/igt_color_encoding: Add XRGB2101010 format support Harry Wentland
` (10 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add igt_create_color_pattern_fb_yuv() function to create test pattern
framebuffers in YUV formats. This extends the existing color pattern
functionality to support YUV testing, handling proper conversion from
RGB test patterns to YUV color spaces with correct encoding and range.
Assisted-by: Claude:claude-sonnet-4-5
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
lib/igt_fb.c | 41 +++++++++++++++++++++++++++++++++++++++++
lib/igt_fb.h | 6 ++++++
2 files changed, 47 insertions(+)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index e623b2f64d7c..6c3b9b0b9208 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -2403,6 +2403,47 @@ unsigned int igt_create_color_pattern_fb(int fd, int width, int height,
return fb_id;
}
+/**
+ * igt_create_color_pattern_fb_yuv:
+ * @fd: open drm file descriptor
+ * @width: width of the framebuffer in pixel
+ * @height: height of the framebuffer in pixel
+ * @format: drm fourcc pixel format code
+ * @modifier: tiling layout of the framebuffer
+ * @color_encoding: color encoding for YUV formats (e.g., BT.601, BT.709, BT.2020)
+ * @color_range: color range for YUV formats (limited or full range)
+ * @r: red value to use as background, 0.0 for black, 1.0 for red
+ * @g: green value to use as background, 0.0 for black, 1.0 for green
+ * @b: blue value to use as background, 0.0 for black, 1.0 for blue
+ * @fb: pointer to an #igt_fb structure
+ *
+ * This creates a framebuffer for YUV formats with the specified color encoding
+ * and range. Cairo is used to draw the background color and test pattern, with
+ * automatic RGB to YUV conversion based on the specified encoding and range.
+ *
+ * Returns:
+ * The kms id of the created framebuffer on success or a negative error code on
+ * failure.
+ */
+unsigned int igt_create_color_pattern_fb_yuv(int fd, int width, int height,
+ uint32_t format, uint64_t modifier,
+ enum igt_color_encoding color_encoding,
+ enum igt_color_range color_range,
+ double r, double g, double b,
+ struct igt_fb *fb /* out */)
+{
+ unsigned int fb_id;
+
+ fb_id = igt_create_fb_with_bo_size(fd, width, height, format, modifier,
+ color_encoding, color_range,
+ fb, 0, 0);
+ igt_assert(fb_id);
+
+ igt_paint_test_pattern_color_fb(fd, fb, r, g, b);
+
+ return fb_id;
+}
+
/**
* igt_create_image_fb:
* @drm_fd: open drm file descriptor
diff --git a/lib/igt_fb.h b/lib/igt_fb.h
index 8e5907dabed4..213e2d77795d 100644
--- a/lib/igt_fb.h
+++ b/lib/igt_fb.h
@@ -153,6 +153,12 @@ unsigned int igt_create_color_pattern_fb(int fd, int width, int height,
uint32_t format, uint64_t modifier,
double r, double g, double b,
struct igt_fb *fb /* out */);
+unsigned int igt_create_color_pattern_fb_yuv(int fd, int width, int height,
+ uint32_t format, uint64_t modifier,
+ enum igt_color_encoding color_encoding,
+ enum igt_color_range color_range,
+ double r, double g, double b,
+ struct igt_fb *fb /* out */);
unsigned int igt_create_image_fb(int drm_fd, int width, int height,
uint32_t format, uint64_t modifier,
const char *filename,
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 06/12] lib/igt_color_encoding: Add XRGB2101010 format support
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (4 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 05/12] lib/igt_fb: Add YUV color pattern framebuffer support Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:05 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 07/12] lib/igt_color: Add YUV pixel reading support Harry Wentland
` (9 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add XRGB2101010 (10-bit RGB) to the color encoding format list. This
enables proper color encoding handling for 10-bit RGB formats used in
CSC testing scenarios.
Assisted-by: Claude:claude-sonnet-4-5
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
lib/igt_color_encoding.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/igt_color_encoding.c b/lib/igt_color_encoding.c
index da56b2b10593..1d01c7eb0583 100644
--- a/lib/igt_color_encoding.c
+++ b/lib/igt_color_encoding.c
@@ -135,6 +135,7 @@ static const struct color_encoding_format {
float ofs_y, max_y, ofs_cbcr, mid_cbcr, max_cbcr;
} formats[] = {
{ DRM_FORMAT_XRGB8888, 255.f, },
+ { DRM_FORMAT_XRGB2101010, 1023.f, },
{ IGT_FORMAT_FLOAT, 1.f, },
{ DRM_FORMAT_NV12, 255.f, 16.f, 235.f, 16.f, 128.f, 240.f },
{ DRM_FORMAT_NV16, 255.f, 16.f, 235.f, 16.f, 128.f, 240.f },
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 07/12] lib/igt_color: Add YUV pixel reading support
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (5 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 06/12] lib/igt_color_encoding: Add XRGB2101010 format support Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:10 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 08/12] lib/igt_color: Refactor transform_pixels for input/output FBs and CSC Harry Wentland
` (8 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add functions to read YUV pixel values from framebuffers. Supports
NV12 and P010 formats with proper handling of:
- Multi-planar Y/UV data layout
- 8-bit and 10-bit sample depths
- Chroma subsampling
This provides the foundation for YUV color transformation testing.
Assisted-by: Claude:claude-sonnet-4-5
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
lib/igt_color.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 72 insertions(+)
diff --git a/lib/igt_color.c b/lib/igt_color.c
index 8c405275acf8..a451f5642bac 100644
--- a/lib/igt_color.c
+++ b/lib/igt_color.c
@@ -259,6 +259,78 @@ void igt_color_multiply_inv_125(igt_pixel_t *pixel)
igt_color_multiply(pixel, 1 / 125.0f);
}
+/**
+ * igt_color_extract_yuv_pixel - Extract raw Y, U, V values from YUV buffer
+ * @fb: framebuffer
+ * @x: x coordinate
+ * @y: y coordinate
+ * @y_plane: pointer to Y plane
+ * @uv_plane: pointer to UV plane
+ * @y_stride: stride of Y plane
+ * @uv_stride: stride of UV plane
+ * @out_y: output Y value (raw, not normalized)
+ * @out_u: output U value (raw, not normalized)
+ * @out_v: output V value (raw, not normalized)
+ *
+ * Extracts raw Y, U, V component values from a YUV framebuffer at the given
+ * coordinates. Handles 4:2:0 subsampling for UV components. Values are raw
+ * (not normalized) and format-specific.
+ */
+static void
+igt_color_extract_yuv_pixel(igt_fb_t *fb, int x, int y,
+ uint8_t *y_plane, uint8_t *uv_plane,
+ int y_stride, int uv_stride,
+ uint32_t *out_y, uint32_t *out_u, uint32_t *out_v)
+{
+ if (fb->drm_format == DRM_FORMAT_NV12) {
+ *out_y = y_plane[y * y_stride + x];
+ *out_u = uv_plane[(y / 2) * uv_stride + (x / 2) * 2 + 0];
+ *out_v = uv_plane[(y / 2) * uv_stride + (x / 2) * 2 + 1];
+ } else if (fb->drm_format == DRM_FORMAT_P010) {
+ uint16_t *y16 = (uint16_t *)y_plane;
+ uint16_t *uv16 = (uint16_t *)uv_plane;
+
+ *out_y = y16[y * (y_stride / 2) + x];
+ *out_u = uv16[(y / 2) * (uv_stride / 2) + (x / 2) * 2 + 0];
+ *out_v = uv16[(y / 2) * (uv_stride / 2) + (x / 2) * 2 + 1];
+ } else {
+ igt_skip("YUV pixel format support not implemented");
+ }
+}
+
+/**
+ * igt_color_yuv_to_pixel - Convert raw Y, U, V values to normalized pixel
+ * @drm_format: YUV format (NV12 or P010)
+ * @raw_y: raw Y value
+ * @raw_u: raw U value
+ * @raw_v: raw V value
+ * @pixel: output pixel structure
+ *
+ * Converts raw Y, U, V component values to a normalized igt_pixel_t structure.
+ * For NV12 (8-bit), normalizes by 255. For P010 (10-bit in upper bits),
+ * shifts and normalizes by 1023.
+ *
+ * Result: pixel->r = normalized Y, pixel->g = normalized U, pixel->b = normalized V
+ */
+static void
+igt_color_yuv_to_pixel(uint32_t drm_format, uint32_t raw_y, uint32_t raw_u,
+ uint32_t raw_v, igt_pixel_t *pixel)
+{
+ if (drm_format == DRM_FORMAT_NV12) {
+ /* Normalize 8-bit values to [0.0, 1.0] */
+ pixel->r = raw_y / 255.0f;
+ pixel->g = raw_u / 255.0f;
+ pixel->b = raw_v / 255.0f;
+ } else if (drm_format == DRM_FORMAT_P010) {
+ /* P010 uses upper 10 bits of 16-bit value */
+ pixel->r = (raw_y >> 6) / 1023.0f;
+ pixel->g = (raw_u >> 6) / 1023.0f;
+ pixel->b = (raw_v >> 6) / 1023.0f;
+ } else {
+ igt_skip("YUV pixel format support not implemented");
+ }
+}
+
static int
igt_get_lut3d_index_blue_fast(int r, int g, int b, long dim, int components)
{
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 08/12] lib/igt_color: Refactor transform_pixels for input/output FBs and CSC
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (6 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 07/12] lib/igt_color: Add YUV pixel reading support Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-06-23 17:57 ` [PATCH v3 09/12] tests/kms_colorop: Add FIXED_MATRIX colorop tests Harry Wentland
` (7 subsequent siblings)
15 siblings, 0 replies; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Refactor igt_color_transform_pixels() to accept separate input and
output framebuffers, plus optional YUV encoding/range parameters for
CSC conversion. This enables:
- Reading from YUV input (NV12/P010) and writing to RGB output
- Inline YUV-to-RGB CSC using the igt_color_encoding matrix library
- Skipping the first transform when CSC is applied (since it's done
inline via the matrix)
Update apply_transforms() in kms_colorop.c to extract encoding/range
from the first colorop when it's a FIXED_MATRIX type, and pass both input
and output FBs to the refactored function.
Also update colorop_plane_test() to create sw_transform_fb with the
output format rather than copying the input FB.
Assisted-by: Claude:claude-sonnet-4-5
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
lib/igt_color.c | 170 +++++++++++++++++++++++++++++++++++---------
lib/igt_color.h | 6 +-
tests/kms_colorop.c | 38 ++++++----
3 files changed, 166 insertions(+), 48 deletions(-)
diff --git a/lib/igt_color.c b/lib/igt_color.c
index a451f5642bac..cc425cfe5ac9 100644
--- a/lib/igt_color.c
+++ b/lib/igt_color.c
@@ -13,6 +13,7 @@
#include "drmtest.h"
#include "igt_color.h"
+#include "igt_color_encoding.h"
#include "igt_core.h"
#include "igt_x86.h"
@@ -578,58 +579,159 @@ igt_color_pixel_to_fourcc(uint32_t drm_format, igt_pixel_t *pixel)
return raw_pixel;
}
-int igt_color_transform_pixels(igt_fb_t *fb, igt_pixel_transform transforms[], int num_transforms)
+int igt_color_transform_pixels(igt_fb_t *input_fb, igt_fb_t *output_fb,
+ igt_pixel_transform transforms[],
+ int num_transforms,
+ int yuv_encoding,
+ enum igt_color_range yuv_range)
{
- uint32_t *line = NULL;
- void *map;
- char *ptr;
- int x, y, cpp = igt_drm_format_to_bpp(fb->drm_format) / 8;
- uint32_t stride = igt_fb_calc_plane_stride(fb, 0);
+ uint32_t *input_line = NULL;
+ uint32_t *output_line = NULL;
+ void *input_map, *output_map;
+ char *input_ptr, *output_ptr;
+ int x, y;
+ int input_cpp = 0;
+ int output_cpp = igt_drm_format_to_bpp(output_fb->drm_format) / 8;
+ uint32_t input_stride = 0, output_stride = igt_fb_calc_plane_stride(output_fb, 0);
+ uint8_t *y_plane = NULL, *uv_plane = NULL;
+ int y_stride = 0, uv_stride = 0;
+ bool input_is_yuv = (input_fb->drm_format == DRM_FORMAT_NV12 ||
+ input_fb->drm_format == DRM_FORMAT_P010);
+ bool output_is_yuv = (output_fb->drm_format == DRM_FORMAT_NV12 ||
+ output_fb->drm_format == DRM_FORMAT_P010);
+ struct igt_mat4 csc_matrix;
+ bool apply_csc = false;
- if (fb->num_planes != 1)
+ /* Validate framebuffer dimensions match */
+ igt_assert(input_fb->width == output_fb->width);
+ igt_assert(input_fb->height == output_fb->height);
+
+ if (input_is_yuv && yuv_encoding >= 0) {
+ apply_csc = true;
+
+ csc_matrix = igt_ycbcr_to_rgb_matrix(input_fb->drm_format,
+ output_fb->drm_format,
+ yuv_encoding, yuv_range);
+ }
+
+ /* Validate plane counts */
+ if (!input_is_yuv && input_fb->num_planes != 1)
return -EINVAL;
- ptr = igt_fb_map_buffer(fb->fd, fb);
- igt_assert(ptr);
- map = ptr;
+ if (input_is_yuv && input_fb->num_planes != 2)
+ return -EINVAL;
- /*
- * Framebuffers are often uncached, which can make byte-wise accesses
- * very slow. We copy each line of the FB into a local buffer to speed
- * up the hashing.
- */
- line = malloc(stride);
- if (!line) {
- munmap(map, fb->size);
+ if (!output_is_yuv && output_fb->num_planes != 1)
+ return -EINVAL;
+
+ if (output_is_yuv && output_fb->num_planes != 2)
+ return -EINVAL;
+
+ /* Map input buffer */
+ input_ptr = igt_fb_map_buffer(input_fb->fd, input_fb);
+ igt_assert(input_ptr);
+ input_map = input_ptr;
+
+ /* For YUV input, set up plane pointers */
+ if (input_is_yuv) {
+ y_plane = input_map;
+ y_stride = input_fb->strides[0];
+ uv_plane = y_plane + input_fb->offsets[1];
+ uv_stride = input_fb->strides[1];
+ } else {
+ input_cpp = igt_drm_format_to_bpp(input_fb->drm_format) / 8;
+ input_stride = igt_fb_calc_plane_stride(input_fb, 0);
+ }
+
+ /* Map output buffer */
+ output_ptr = igt_fb_map_buffer(output_fb->fd, output_fb);
+ igt_assert(output_ptr);
+ output_map = output_ptr;
+
+ /* Allocate line buffers for speed */
+ if (!input_is_yuv) {
+ input_line = malloc(input_stride);
+ if (!input_line) {
+ igt_fb_unmap_buffer(output_fb, output_map);
+ igt_fb_unmap_buffer(input_fb, input_map);
+ return -ENOMEM;
+ }
+ }
+
+ output_line = malloc(output_stride);
+ if (!output_line) {
+ free(input_line);
+ igt_fb_unmap_buffer(output_fb, output_map);
+ igt_fb_unmap_buffer(input_fb, input_map);
return -ENOMEM;
}
- for (y = 0; y < fb->height; y++, ptr += stride) {
+ for (y = 0; y < input_fb->height; y++) {
+ /* For RGB input, read line from input buffer */
+ if (!input_is_yuv)
+ igt_memcpy_from_wc(input_line, input_ptr + y * input_stride,
+ input_fb->width * input_cpp);
- /* get line from buffer */
- igt_memcpy_from_wc(line, ptr, fb->width * cpp);
-
- for (x = 0; x < fb->width; x++) {
- uint32_t raw_pixel = le32_to_cpu(line[x]);
+ for (x = 0; x < input_fb->width; x++) {
igt_pixel_t pixel;
int i;
+ int start_transform;
- igt_color_fourcc_to_pixel(raw_pixel, fb->drm_format, &pixel);
+ /* READ from input buffer */
+ if (input_is_yuv) {
+ uint32_t raw_y, raw_u, raw_v;
+ struct igt_vec4 yuv, rgb;
- /* run transform on pixel */
- for (i = 0; i < num_transforms; i++)
- transforms[i](&pixel);
+ /* Extract raw Y, U, V from YUV input buffer */
+ igt_color_extract_yuv_pixel(input_fb, x, y, y_plane, uv_plane,
+ y_stride, uv_stride,
+ &raw_y, &raw_u, &raw_v);
- /* write back to line */
- line[x] = cpu_to_le32(igt_color_pixel_to_fourcc(fb->drm_format, &pixel));
+ /* Convert YUV to RGB using pre-computed CSC matrix */
+ if (apply_csc) {
+ float rgb_max;
+
+ /* Matrix expects raw format values */
+ yuv.d[0] = raw_y;
+ yuv.d[1] = raw_u;
+ yuv.d[2] = raw_v;
+ yuv.d[3] = 1.0f;
+
+ rgb = igt_matrix_transform(&csc_matrix, &yuv);
+
+ rgb_max = (output_fb->drm_format == DRM_FORMAT_XRGB2101010) ? 1023.0f : 255.0f;
+
+ pixel.r = rgb.d[0] / rgb_max;
+ pixel.g = rgb.d[1] / rgb_max;
+ pixel.b = rgb.d[2] / rgb_max;
+ } else {
+ igt_color_yuv_to_pixel(input_fb->drm_format, raw_y, raw_u, raw_v, &pixel);
+ }
+ } else {
+ uint32_t raw_pixel = le32_to_cpu(input_line[x]);
+ igt_color_fourcc_to_pixel(raw_pixel, input_fb->drm_format, &pixel);
+ }
+
+ /* Transform pixel through remaining transforms */
+ /* Skip first transform if it was a CSC that we already applied */
+ start_transform = apply_csc ? 1 : 0;
+ for (i = start_transform; i < num_transforms; i++)
+ if (transforms[i])
+ transforms[i](&pixel);
+
+ /* write to output buffer */
+ output_line[x] = cpu_to_le32(igt_color_pixel_to_fourcc(output_fb->drm_format, &pixel));
}
- /* copy line back to fb buffer */
- igt_memcpy_from_wc(ptr, line, fb->width * cpp);
+ /* Copy output line to output buffer */
+ memcpy(output_ptr + y * output_stride, output_line,
+ output_fb->width * output_cpp);
}
- free(line);
- igt_fb_unmap_buffer(fb, map);
+ free(output_line);
+ free(input_line);
+ igt_fb_unmap_buffer(output_fb, output_map);
+ igt_fb_unmap_buffer(input_fb, input_map);
return 0;
}
diff --git a/lib/igt_color.h b/lib/igt_color.h
index 722446400f01..d66cfebc4191 100644
--- a/lib/igt_color.h
+++ b/lib/igt_color.h
@@ -72,7 +72,11 @@ void igt_dump_fb(igt_display_t *display, igt_fb_t *fb, const char *path_name, co
typedef void (*igt_pixel_transform)(igt_pixel_t *pixel);
-int igt_color_transform_pixels(igt_fb_t *fb, igt_pixel_transform transforms[], int num_transforms);
+int igt_color_transform_pixels(igt_fb_t *input_fb, igt_fb_t *output_fb,
+ igt_pixel_transform transforms[],
+ int num_transforms,
+ int yuv_encoding,
+ enum igt_color_range yuv_range);
/* colorop helpers */
diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
index 4db83470df22..5cf1f688832f 100644
--- a/tests/kms_colorop.c
+++ b/tests/kms_colorop.c
@@ -195,15 +195,30 @@ static bool compare_with_bracket(igt_fb_t *in, igt_fb_t *out)
#define MAX_COLOROPS 5
-static void apply_transforms(kms_colorop_t *colorops[], igt_fb_t *sw_transform_fb)
+static void apply_transforms(kms_colorop_t *colorops[], igt_fb_t *input_fb,
+ igt_fb_t *sw_transform_fb)
{
int i;
+ int yuv_encoding = -1;
+ enum igt_color_range yuv_range = IGT_COLOR_YCBCR_LIMITED_RANGE;
igt_pixel_transform transforms[MAX_COLOROPS];
for (i = 0; colorops[i]; i++)
transforms[i] = colorops[i]->transform;
- igt_color_transform_pixels(sw_transform_fb, transforms, i);
+ /* If first colorop is CSC FF, extract encoding/range for sw reference */
+ if (colorops[0] && colorops[0]->type == KMS_COLOROP_FIXED_MATRIX) {
+ enum igt_color_encoding encoding;
+ enum igt_color_range range;
+
+ fixed_matrix_type_to_encoding_range(colorops[0]->fixed_matrix_info.fixed_matrix_type_name,
+ &encoding, &range);
+ yuv_encoding = encoding;
+ yuv_range = range;
+ }
+
+ igt_color_transform_pixels(input_fb, sw_transform_fb, transforms, i,
+ yuv_encoding, yuv_range);
}
static void colorop_plane_test(igt_display_t *display,
@@ -217,7 +232,7 @@ static void colorop_plane_test(igt_display_t *display,
{
igt_colorop_t *color_pipeline = NULL;
igt_fb_t sw_transform_fb;
- igt_crc_t input_crc, output_crc;
+ igt_crc_t input_crc;
int res;
igt_fb_get_fnv1a_crc(input_fb, &input_crc);
@@ -235,18 +250,15 @@ static void colorop_plane_test(igt_display_t *display,
NULL);
igt_get_and_wait_out_fence(output);
- /* Compare input and output buffers. They should be equal here. */
- igt_fb_get_fnv1a_crc(output_fb, &output_crc);
-
- igt_assert_crc_equal(&input_crc, &output_crc);
-
- /* create sw transformed buffer */
- res = igt_copy_fb(display->drm_fd, input_fb, &sw_transform_fb);
+ /* create sw transform buffer with output format */
+ res = igt_create_fb(display->drm_fd,
+ input_fb->width, input_fb->height,
+ output_fb->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ &sw_transform_fb);
igt_assert_lte(0, res);
- igt_assert(igt_cmp_fb_pixels(input_fb, &sw_transform_fb, 0, 0));
-
- apply_transforms(colorops, &sw_transform_fb);
+ apply_transforms(colorops, input_fb, &sw_transform_fb);
if (data.dump_check)
igt_dump_fb(display, &sw_transform_fb, ".", "sw_transform");
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 09/12] tests/kms_colorop: Add FIXED_MATRIX colorop tests
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (7 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 08/12] lib/igt_color: Refactor transform_pixels for input/output FBs and CSC Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:15 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 10/12] tests/kms_colorop: Keep CRTC active between YUV tests with temp FB Harry Wentland
` (6 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add comprehensive test coverage for FIXED_MATRIX colorops for CSC:
Test cases:
- NV12 (8-bit YUV 4:2:0) CSC tests
- P010 (10-bit YUV 4:2:0) CSC tests
- BT.709, BT.601, and BT.2020 encoding tests
- Limited and full range tests
- CSC combined with additional colorops (sRGB EOTF, 3D LUT, CTM)
- Organized into separate RGB and YUV test groups
The tests verify that FIXED_MATRIX colorops correctly convert YUV input to
RGB output by comparing hardware CSC results with software reference
transformations using the igt_color_encoding matrix library.
Assisted-by: Claude:claude-sonnet-4-5
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
tests/kms_colorop.c | 256 +++++++++++++++++++++++++++++++++++---------
1 file changed, 205 insertions(+), 51 deletions(-)
diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
index 5cf1f688832f..1d30d2538574 100644
--- a/tests/kms_colorop.c
+++ b/tests/kms_colorop.c
@@ -20,50 +20,95 @@
* SUBTEST: check_plane_colorop_ids
* Description: Verify that all igt_colorop_t IDs are unique across planes
*
- * SUBTEST: plane-%s-%s
- * Description: Tests DRM colorop properties on a plane
+ * SUBTEST: plane-XR24-XR24-bypass
+ * SUBTEST: plane-XR24-XR24-srgb_eotf
+ * SUBTEST: plane-XR24-XR24-srgb_inv_eotf
+ * SUBTEST: plane-XR24-XR24-srgb_eotf-srgb_inv_eotf
+ * SUBTEST: plane-XR24-XR24-srgb_eotf-srgb_inv_eotf-srgb_eotf
+ * SUBTEST: plane-XR24-XR24-srgb_inv_eotf_lut
+ * SUBTEST: plane-XR24-XR24-srgb_inv_eotf_lut-srgb_eotf_lut
+ * SUBTEST: plane-XR24-XR24-bt2020_inv_oetf
+ * SUBTEST: plane-XR24-XR24-bt2020_oetf
+ * SUBTEST: plane-XR24-XR24-bt2020_inv_oetf-bt2020_oetf
+ * SUBTEST: plane-XR24-XR24-pq_eotf
+ * SUBTEST: plane-XR24-XR24-pq_inv_eotf
+ * SUBTEST: plane-XR24-XR24-pq_eotf-pq_inv_eotf
+ * SUBTEST: plane-XR24-XR24-pq_125_eotf
+ * SUBTEST: plane-XR24-XR24-pq_125_inv_eotf
+ * SUBTEST: plane-XR24-XR24-pq_125_eotf-pq_125_inv_eotf
+ * SUBTEST: plane-XR24-XR24-pq_125_eotf-pq_125_inv_eotf-pq_125_eotf
+ * SUBTEST: plane-XR24-XR24-gamma_2_2
+ * SUBTEST: plane-XR24-XR24-gamma_2_2-gamma_2_2_inv
+ * SUBTEST: plane-XR24-XR24-gamma_2_2-gamma_2_2_inv-gamma_2_2
+ * SUBTEST: plane-XR24-XR24-ctm_3x4_50_desat
+ * SUBTEST: plane-XR24-XR24-ctm_3x4_overdrive
+ * SUBTEST: plane-XR24-XR24-ctm_3x4_oversaturate
+ * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_enc
+ * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_dec
+ * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_enc_dec
+ * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_dec_enc
+ * SUBTEST: plane-XR24-XR24-multiply_125
+ * SUBTEST: plane-XR24-XR24-multiply_inv_125
+ * SUBTEST: plane-XR24-XR24-3dlut_17_12_rgb
+ * SUBTEST: plane-XR30-XR30-bypass
+ * SUBTEST: plane-XR30-XR30-srgb_eotf
+ * SUBTEST: plane-XR30-XR30-srgb_inv_eotf
+ * SUBTEST: plane-XR30-XR30-srgb_eotf-srgb_inv_eotf
+ * SUBTEST: plane-XR30-XR30-srgb_eotf-srgb_inv_eotf-srgb_eotf
+ * SUBTEST: plane-XR30-XR30-srgb_inv_eotf_lut
+ * SUBTEST: plane-XR30-XR30-srgb_inv_eotf_lut-srgb_eotf_lut
+ * SUBTEST: plane-XR30-XR30-bt2020_inv_oetf
+ * SUBTEST: plane-XR30-XR30-bt2020_oetf
+ * SUBTEST: plane-XR30-XR30-bt2020_inv_oetf-bt2020_oetf
+ * SUBTEST: plane-XR30-XR30-pq_eotf
+ * SUBTEST: plane-XR30-XR30-pq_inv_eotf
+ * SUBTEST: plane-XR30-XR30-pq_eotf-pq_inv_eotf
+ * SUBTEST: plane-XR30-XR30-pq_125_eotf
+ * SUBTEST: plane-XR30-XR30-pq_125_inv_eotf
+ * SUBTEST: plane-XR30-XR30-pq_125_eotf-pq_125_inv_eotf
+ * SUBTEST: plane-XR30-XR30-pq_125_eotf-pq_125_inv_eotf-pq_125_eotf
+ * SUBTEST: plane-XR30-XR30-gamma_2_2
+ * SUBTEST: plane-XR30-XR30-gamma_2_2-gamma_2_2_inv
+ * SUBTEST: plane-XR30-XR30-gamma_2_2-gamma_2_2_inv-gamma_2_2
+ * SUBTEST: plane-XR30-XR30-ctm_3x4_50_desat
+ * SUBTEST: plane-XR30-XR30-ctm_3x4_overdrive
+ * SUBTEST: plane-XR30-XR30-ctm_3x4_oversaturate
+ * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_enc
+ * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_dec
+ * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_enc_dec
+ * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_dec_enc
+ * SUBTEST: plane-XR30-XR30-multiply_125
+ * SUBTEST: plane-XR30-XR30-multiply_inv_125
+ * SUBTEST: plane-XR30-XR30-3dlut_17_12_rgb
+ * Description: Tests DRM colorop properties on RGB formats
* Driver requirement: amdgpu
* Functionality: kms_core
* Mega feature: General Display Features
* Test category: functionality test
*
- * arg[1]:
- *
- * @XR24-XR24: XRGB8888 framebuffer and writeback buffer
- * @XR30-XR30: XRGB2101010 framebuffer and writeback buffer
- *
- * arg[2]:
- *
- * @bypass: Bypass Color Pipeline
- * @srgb_eotf: sRGB EOTF
- * @srgb_inv_eotf: sRGB Inverse EOTF
- * @srgb_eotf-srgb_inv_eotf: sRGB EOTF -> sRGB Inverse EOTF
- * @srgb_eotf-srgb_inv_eotf-srgb_eotf: sRGB EOTF -> sRGB Inverse EOTF -> sRGB EOTF
- * @srgb_inv_eotf_lut: sRGB Inverse EOTF Custom LUT
- * @srgb_inv_eotf_lut-srgb_eotf_lut: sRGB Inverse EOTF Custom LUT -> sRGB EOTF Custom LUT
- * @bt2020_inv_oetf: BT.2020 Inverse OETF
- * @bt2020_oetf: BT.2020 OETF
- * @bt2020_inv_oetf-bt2020_oetf: BT.2020 Inverse OETF > BT.2020 OETF
- * @pq_eotf: PQ EOTF
- * @pq_inv_eotf: PQ Inverse EOTF
- * @pq_eotf-pq_inv_eotf: PQ EOTF -> PQ Inverse EOTF
- * @pq_125_eotf: PQ EOTF for [0.0, 125.0] optical range
- * @pq_125_inv_eotf: PQ Inverse EOTF for [0.0, 125.0] optical range
- * @pq_125_eotf-pq_125_inv_eotf: PQ EOTF -> PQ Inverse EOTF with [0.0, 125.0] optical range
- * @pq_125_eotf-pq_125_inv_eotf-pq_125_eotf: PQ EOTF -> PQ Inverse EOTF -> PQ EOTF with [0.0, 125.0] optical range
- * @gamma_2_2: Gamma 2.2
- * @gamma_2_2-gamma_2_2_inv: Gamma 2.2 -> Gamma 2.2 Inverse
- * @gamma_2_2-gamma_2_2_inv-gamma_2_2: Gamma 2.2 -> Gamma 2.2 Inverse -> Gamma 2.2
- * @ctm_3x4_50_desat: 3x4 matrix doing a 50% desaturation
- * @ctm_3x4_overdrive: 3x4 matrix overdring all values by 50%
- * @ctm_3x4_oversaturate: 3x4 matrix oversaturating values
- * @ctm_3x4_bt709_enc: BT709 encoding matrix
- * @ctm_3x4_bt709_dec: BT709 decoding matrix
- * @ctm_3x4_bt709_enc_dec: BT709 encoding matrix, followed by decoding matrix
- * @ctm_3x4_bt709_dec_enc: BT709 decoding matrix, followed by encoding matrix
- * @multiply_125: Multiplier by 125
- * @multiply_inv_125: Multiplier by inverse of 125
- * @3dlut_17_12_rgb: 3D LUT with length 17, color depth 12, and traversal order = RGB
+ * SUBTEST: plane-NV12-XR24-fm_bt709_limited
+ * SUBTEST: plane-NV12-XR24-fm_bt709_full
+ * SUBTEST: plane-NV12-XR24-fm_bt601_limited
+ * SUBTEST: plane-NV12-XR24-fm_bt2020_limited
+ * SUBTEST: plane-NV12-XR24-fm_bt709_limited-srgb_eotf
+ * SUBTEST: plane-NV12-XR24-fm_bt601_limited-srgb_eotf
+ * SUBTEST: plane-NV12-XR24-fm_bt709_limited-3dlut_17_12_rgb
+ * SUBTEST: plane-NV12-XR24-fm_bt709_limited-ctm_3x4_50_desat
+ * SUBTEST: plane-NV12-XR24-fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat
+ * SUBTEST: plane-P010-XR30-fm_bt709_limited
+ * SUBTEST: plane-P010-XR30-fm_bt709_full
+ * SUBTEST: plane-P010-XR30-fm_bt601_limited
+ * SUBTEST: plane-P010-XR30-fm_bt2020_limited
+ * SUBTEST: plane-P010-XR30-fm_bt709_limited-srgb_eotf
+ * SUBTEST: plane-P010-XR30-fm_bt601_limited-srgb_eotf
+ * SUBTEST: plane-P010-XR30-fm_bt709_limited-3dlut_17_12_rgb
+ * SUBTEST: plane-P010-XR30-fm_bt709_limited-ctm_3x4_50_desat
+ * SUBTEST: plane-P010-XR30-fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat
+ * Description: Tests DRM colorop properties on YUV formats
+ * Driver requirement: amdgpu
+ * Functionality: kms_core
+ * Mega feature: General Display Features
+ * Test category: functionality test
*
*/
@@ -371,10 +416,11 @@ static const struct option long_options[] = {
int igt_main_args("d", long_options, help_str, opt_handler, NULL)
{
+ /* RGB tests - for RGB input formats only */
struct {
kms_colorop_t *colorops[MAX_COLOROPS];
const char *name;
- } tests[] = {
+ } tests_rgb[] = {
{ { NULL }, "bypass" },
{ { &kms_colorop_srgb_eotf, NULL }, "srgb_eotf" },
{ { &kms_colorop_srgb_inv_eotf, NULL }, "srgb_inv_eotf" },
@@ -407,15 +453,42 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
{ { &kms_colorop_3dlut_17_12_rgb, NULL }, "3dlut_17_12_rgb" },
};
+ /* YUV tests - CSC FF colorop with various encoding/range combinations and optional additional colorops */
+ struct {
+ kms_colorop_t *colorops[MAX_COLOROPS];
+ const char *name;
+ } tests_yuv[] = {
+ /* CSC only tests */
+ { { &kms_colorop_bt709_limited_ycbcr_to_rgb, NULL }, "fm_bt709_limited" },
+ { { &kms_colorop_bt709_full_ycbcr_to_rgb, NULL }, "fm_bt709_full" },
+ { { &kms_colorop_bt601_limited_ycbcr_to_rgb, NULL }, "fm_bt601_limited" },
+ { { &kms_colorop_bt2020_limited_ycbcr_to_rgb, NULL }, "fm_bt2020_limited" },
+ /* CSC + additional colorops */
+ { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, NULL }, "fm_bt709_limited-srgb_eotf" },
+ { { &kms_colorop_bt601_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, NULL }, "fm_bt601_limited-srgb_eotf" },
+ { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_3dlut_17_12_rgb, NULL }, "fm_bt709_limited-3dlut_17_12_rgb" },
+ { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_ctm_3x4_50_desat, NULL }, "fm_bt709_limited-ctm_3x4_50_desat" },
+ { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, &kms_colorop_ctm_3x4_50_desat, NULL }, "fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat" },
+ };
+
struct {
__u32 fourcc_in;
__u32 fourcc_out;
const char *name;
- } formats[] = {
+ } formats_rgb[] = {
{ DRM_FORMAT_XRGB8888, DRM_FORMAT_XRGB8888, "XR24-XR24" },
{ DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB2101010, "XR30-XR30" },
};
+ struct {
+ __u32 fourcc_in;
+ __u32 fourcc_out;
+ const char *name;
+ } formats_yuv[] = {
+ { DRM_FORMAT_NV12, DRM_FORMAT_XRGB8888, "NV12-XR24" },
+ { DRM_FORMAT_P010, DRM_FORMAT_XRGB2101010, "P010-XR30" },
+ };
+
igt_display_t display;
int i, j, ret;
@@ -442,7 +515,8 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
check_plane_colorop_ids(&display);
}
- for (j = 0; j < ARRAY_SIZE(formats); j++) {
+ /* RGB format tests */
+ for (j = 0; j < ARRAY_SIZE(formats_rgb); j++) {
igt_output_t *output;
igt_plane_t *plane;
igt_fb_t input_fb, output_fb;
@@ -452,8 +526,8 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
igt_subtest_group() {
igt_fixture() {
output = kms_writeback_get_output(&display,
- formats[j].fourcc_in,
- formats[j].fourcc_out);
+ formats_rgb[j].fourcc_in,
+ formats_rgb[j].fourcc_out);
igt_require(output);
if (output->use_override_mode)
@@ -468,7 +542,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
fb_id = igt_create_color_pattern_fb(display.drm_fd,
mode.hdisplay, mode.vdisplay,
- formats[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
+ formats_rgb[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
0.2, 0.2, 0.2, &input_fb);
igt_assert(fb_id >= 0);
igt_plane_set_fb(plane, &input_fb);
@@ -478,23 +552,24 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
/* create output fb */
fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
- formats[j].fourcc_in,
+ formats_rgb[j].fourcc_out,
igt_fb_mod_to_tiling(0),
&output_fb);
igt_require(fb_id > 0);
}
- for (i = 0; i < ARRAY_SIZE(tests); i++) {
+ /* Run RGB tests */
+ for (i = 0; i < ARRAY_SIZE(tests_rgb); i++) {
igt_describe("Check color ops on a plane");
- igt_subtest_f("plane-%s-%s", formats[j].name, tests[i].name)
+ igt_subtest_f("plane-%s-%s", formats_rgb[j].name, tests_rgb[i].name)
colorop_plane_test(&display,
output,
plane,
&input_fb,
&output_fb,
- formats[j].fourcc_in,
- formats[j].fourcc_out,
- tests[i].colorops);
+ formats_rgb[j].fourcc_in,
+ formats_rgb[j].fourcc_out,
+ tests_rgb[i].colorops);
}
igt_fixture() {
@@ -506,6 +581,85 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
}
}
+ /* YUV format tests */
+ for (j = 0; j < ARRAY_SIZE(formats_yuv); j++) {
+ igt_output_t *output;
+ igt_plane_t *plane;
+ igt_fb_t output_fb;
+ unsigned int fb_id;
+ drmModeModeInfo mode;
+
+ igt_subtest_group() {
+ igt_fixture() {
+ output = kms_writeback_get_output(&display,
+ formats_yuv[j].fourcc_in,
+ formats_yuv[j].fourcc_out);
+ igt_require(output);
+
+ if (output->use_override_mode)
+ memcpy(&mode, &output->override_mode, sizeof(mode));
+ else
+ memcpy(&mode, &output->config.default_mode, sizeof(mode));
+
+ plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_assert(plane);
+ igt_require(igt_plane_has_prop(plane, IGT_PLANE_COLOR_PIPELINE));
+
+ /* create output fb */
+ fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
+ formats_yuv[j].fourcc_out,
+ igt_fb_mod_to_tiling(0),
+ &output_fb);
+ igt_require(fb_id > 0);
+ }
+
+ /* Run YUV tests - create input_fb per test with correct encoding/range */
+ for (i = 0; i < ARRAY_SIZE(tests_yuv); i++) {
+ igt_describe("Check YUV CSC colorop");
+ igt_subtest_f("plane-%s-%s", formats_yuv[j].name, tests_yuv[i].name) {
+ igt_fb_t input_fb;
+ enum igt_color_encoding encoding;
+ enum igt_color_range range;
+
+ /* Extract encoding and range from first colorop (must be CSC FF) */
+ igt_assert(tests_yuv[i].colorops[0]);
+ igt_assert(tests_yuv[i].colorops[0]->type == KMS_COLOROP_FIXED_MATRIX);
+ fixed_matrix_type_to_encoding_range(
+ tests_yuv[i].colorops[0]->fixed_matrix_info.fixed_matrix_type_name,
+ &encoding, &range);
+
+ /* Create input fb with matching encoding/range */
+ fb_id = igt_create_color_pattern_fb_yuv(display.drm_fd,
+ mode.hdisplay, mode.vdisplay,
+ formats_yuv[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
+ encoding, range,
+ 0.2, 0.2, 0.2, &input_fb);
+ igt_assert(fb_id >= 0);
+
+ if (data.dump_check)
+ igt_dump_fb(&display, &input_fb, ".", "input");
+
+ colorop_plane_test(&display,
+ output,
+ plane,
+ &input_fb,
+ &output_fb,
+ formats_yuv[j].fourcc_in,
+ formats_yuv[j].fourcc_out,
+ tests_yuv[i].colorops);
+
+ igt_remove_fb(display.drm_fd, &input_fb);
+ }
+ }
+
+ igt_fixture() {
+ igt_detach_crtc(&display, output);
+ igt_remove_fb(display.drm_fd, &output_fb);
+
+ }
+ }
+ }
+
igt_fixture() {
igt_display_fini(&display);
drm_close_driver(display.drm_fd);
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 10/12] tests/kms_colorop: Keep CRTC active between YUV tests with temp FB
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (8 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 09/12] tests/kms_colorop: Add FIXED_MATRIX colorop tests Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:19 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 11/12] tests/kms_colorop: Add bypass transition tests Harry Wentland
` (5 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Move output_fb creation to fixture and introduce temp_fb to keep the
plane/CRTC active between YUV subtests. This prevents the "framebuffer
without CRTC" error that occurred when removing input_fb caused IGT to
disable the CRTC, leaving the writeback connector detached but with FB
still set.
Each YUV test now:
- Creates input_fb with specific encoding/range
- Runs test
- Switches plane to temp_fb (commits to hardware)
- Removes input_fb safely
Assisted-by: Claude:claude-opus-4-6
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
tests/kms_colorop.c | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
index 1d30d2538574..4e8b2563ea4e 100644
--- a/tests/kms_colorop.c
+++ b/tests/kms_colorop.c
@@ -585,7 +585,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
for (j = 0; j < ARRAY_SIZE(formats_yuv); j++) {
igt_output_t *output;
igt_plane_t *plane;
- igt_fb_t output_fb;
+ igt_fb_t temp_fb, output_fb;
unsigned int fb_id;
drmModeModeInfo mode;
@@ -605,7 +605,14 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
igt_assert(plane);
igt_require(igt_plane_has_prop(plane, IGT_PLANE_COLOR_PIPELINE));
- /* create output fb */
+ /* Create temp fb to keep plane active between tests */
+ fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
+ formats_yuv[j].fourcc_in,
+ igt_fb_mod_to_tiling(0),
+ &temp_fb);
+ igt_require(fb_id > 0);
+
+ /* Create output fb shared across tests */
fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
formats_yuv[j].fourcc_out,
igt_fb_mod_to_tiling(0),
@@ -613,7 +620,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
igt_require(fb_id > 0);
}
- /* Run YUV tests - create input_fb per test with correct encoding/range */
+ /* Run YUV tests - create input_fb per test */
for (i = 0; i < ARRAY_SIZE(tests_yuv); i++) {
igt_describe("Check YUV CSC colorop");
igt_subtest_f("plane-%s-%s", formats_yuv[j].name, tests_yuv[i].name) {
@@ -648,14 +655,20 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
formats_yuv[j].fourcc_out,
tests_yuv[i].colorops);
+ /* Switch plane back to temp_fb to keep CRTC active */
+ igt_plane_set_fb(plane, &temp_fb);
+ igt_display_commit_atomic(&display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+
igt_remove_fb(display.drm_fd, &input_fb);
}
}
igt_fixture() {
igt_detach_crtc(&display, output);
+ igt_remove_fb(display.drm_fd, &temp_fb);
igt_remove_fb(display.drm_fd, &output_fb);
-
}
}
}
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 11/12] tests/kms_colorop: Add bypass transition tests
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (9 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 10/12] tests/kms_colorop: Keep CRTC active between YUV tests with temp FB Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:25 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 12/12] tests/kms_colorop: Increase VKMS bracket to 3 up Harry Wentland
` (4 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
Add tests to verify color pipeline correctly transitions to bypass state
after being configured with various colorops. This ensures no stale state
remains when switching from an active configuration back to bypass.
This also changes existing test behavior: tests no longer commit bypass
state at the end, leaving the pipeline in its configured state between
subtests.
Test approach:
- Configure pipeline with specific colorops
- Verify configured output is correct
- Transition to bypass
- Verify bypass output matches input (identity transform)
Test coverage:
* Enumerated 1D curve (srgb_eotf)
* Custom 1D LUT (srgb_inv_eotf_lut)
* CTM (ctm_3x4_50_desat)
* 3D LUT (3dlut_17_12_rgb)
* Multi-stage (srgb_eotf + ctm_3x4_50_desat)
Assisted-by: Claude:claude-sonnet-4-5
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
tests/kms_colorop.c | 127 +++++++++++++++++++++++++++++++++++++++-----
1 file changed, 115 insertions(+), 12 deletions(-)
diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
index 4e8b2563ea4e..a2784243c0f5 100644
--- a/tests/kms_colorop.c
+++ b/tests/kms_colorop.c
@@ -80,6 +80,16 @@
* SUBTEST: plane-XR30-XR30-multiply_125
* SUBTEST: plane-XR30-XR30-multiply_inv_125
* SUBTEST: plane-XR30-XR30-3dlut_17_12_rgb
+ * SUBTEST: plane-bypass-XR24-XR24-srgb_eotf
+ * SUBTEST: plane-bypass-XR24-XR24-srgb_inv_eotf_lut
+ * SUBTEST: plane-bypass-XR24-XR24-ctm_3x4_50_desat
+ * SUBTEST: plane-bypass-XR24-XR24-3dlut_17_12_rgb
+ * SUBTEST: plane-bypass-XR24-XR24-srgb_eotf-ctm_3x4_50_desat
+ * SUBTEST: plane-bypass-XR30-XR30-srgb_eotf
+ * SUBTEST: plane-bypass-XR30-XR30-srgb_inv_eotf_lut
+ * SUBTEST: plane-bypass-XR30-XR30-ctm_3x4_50_desat
+ * SUBTEST: plane-bypass-XR30-XR30-3dlut_17_12_rgb
+ * SUBTEST: plane-bypass-XR30-XR30-srgb_eotf-ctm_3x4_50_desat
* Description: Tests DRM colorop properties on RGB formats
* Driver requirement: amdgpu
* Functionality: kms_core
@@ -273,7 +283,8 @@ static void colorop_plane_test(igt_display_t *display,
igt_fb_t *output_fb,
__u32 fourcc_in,
__u32 fourcc_out,
- kms_colorop_t *colorops[])
+ kms_colorop_t *colorops[],
+ bool verify_bypass)
{
igt_colorop_t *color_pipeline = NULL;
igt_fb_t sw_transform_fb;
@@ -337,17 +348,26 @@ static void colorop_plane_test(igt_display_t *display,
/* compare sw transformed and KMS transformed FBs */
igt_assert(compare_with_bracket(&sw_transform_fb, output_fb));
- /* reset color pipeline*/
- set_color_pipeline_bypass(plane);
+ /* Test bypass transition if requested */
+ if (verify_bypass) {
+ /* reset color pipeline*/
+ set_color_pipeline_bypass(plane);
- /* Commit */
- igt_plane_set_fb(plane, input_fb);
- igt_output_set_writeback_fb(output, output_fb);
+ /* Commit */
+ igt_plane_set_fb(plane, input_fb);
+ igt_output_set_writeback_fb(output, output_fb);
- igt_display_commit_atomic(output->display,
- DRM_MODE_ATOMIC_ALLOW_MODESET,
- NULL);
- igt_get_and_wait_out_fence(output);
+ igt_display_commit_atomic(output->display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ igt_get_and_wait_out_fence(output);
+
+ if (data.dump_check)
+ igt_dump_fb(display, output_fb, ".", "bypass_output");
+
+ /* For RGB bypass, output should match input */
+ igt_assert(compare_with_bracket(input_fb, output_fb));
+ }
}
static void check_plane_colorop_ids(igt_display_t *display)
@@ -471,6 +491,20 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
{ { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, &kms_colorop_ctm_3x4_50_desat, NULL }, "fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat" },
};
+ /* Bypass transition tests - test config -> bypass -> verify identity (RGB only) */
+ struct {
+ kms_colorop_t *colorops[MAX_COLOROPS];
+ const char *name;
+ } tests_bypass_transitions_rgb[] = {
+ /* One per colorop type */
+ { { &kms_colorop_srgb_eotf, NULL }, "srgb_eotf" },
+ { { &kms_colorop_srgb_inv_eotf_lut, NULL }, "srgb_inv_eotf_lut" },
+ { { &kms_colorop_ctm_3x4_50_desat, NULL }, "ctm_3x4_50_desat" },
+ { { &kms_colorop_3dlut_17_12_rgb, NULL }, "3dlut_17_12_rgb" },
+ /* Multi-stage */
+ { { &kms_colorop_srgb_eotf, &kms_colorop_ctm_3x4_50_desat, NULL }, "srgb_eotf-ctm_3x4_50_desat" },
+ };
+
struct {
__u32 fourcc_in;
__u32 fourcc_out;
@@ -569,7 +603,75 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
&output_fb,
formats_rgb[j].fourcc_in,
formats_rgb[j].fourcc_out,
- tests_rgb[i].colorops);
+ tests_rgb[i].colorops,
+ false);
+ }
+
+ igt_fixture() {
+ igt_detach_crtc(&display, output);
+ igt_remove_fb(display.drm_fd, &input_fb);
+ igt_remove_fb(display.drm_fd, &output_fb);
+
+ }
+ }
+ }
+
+ /* Bypass transition tests - RGB formats */
+ for (j = 0; j < ARRAY_SIZE(formats_rgb); j++) {
+ igt_output_t *output;
+ igt_plane_t *plane;
+ igt_fb_t input_fb, output_fb;
+ unsigned int fb_id;
+ drmModeModeInfo mode;
+
+ igt_subtest_group() {
+ igt_fixture() {
+ output = kms_writeback_get_output(&display,
+ formats_rgb[j].fourcc_in,
+ formats_rgb[j].fourcc_out);
+ igt_require(output);
+
+ if (output->use_override_mode)
+ memcpy(&mode, &output->override_mode, sizeof(mode));
+ else
+ memcpy(&mode, &output->config.default_mode, sizeof(mode));
+
+ /* create input fb */
+ plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ igt_assert(plane);
+ igt_require(igt_plane_has_prop(plane, IGT_PLANE_COLOR_PIPELINE));
+
+ fb_id = igt_create_color_pattern_fb(display.drm_fd,
+ mode.hdisplay, mode.vdisplay,
+ formats_rgb[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
+ 0.2, 0.2, 0.2, &input_fb);
+ igt_assert(fb_id >= 0);
+ igt_plane_set_fb(plane, &input_fb);
+
+ if (data.dump_check)
+ igt_dump_fb(&display, &input_fb, ".", "input");
+
+ /* create output fb */
+ fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
+ formats_rgb[j].fourcc_out,
+ igt_fb_mod_to_tiling(0),
+ &output_fb);
+ igt_require(fb_id > 0);
+ }
+
+ /* Run bypass transition tests */
+ for (i = 0; i < ARRAY_SIZE(tests_bypass_transitions_rgb); i++) {
+ igt_describe("Test color pipeline to bypass transition");
+ igt_subtest_f("plane-bypass-%s-%s", formats_rgb[j].name, tests_bypass_transitions_rgb[i].name)
+ colorop_plane_test(&display,
+ output,
+ plane,
+ &input_fb,
+ &output_fb,
+ formats_rgb[j].fourcc_in,
+ formats_rgb[j].fourcc_out,
+ tests_bypass_transitions_rgb[i].colorops,
+ true);
}
igt_fixture() {
@@ -653,7 +755,8 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
&output_fb,
formats_yuv[j].fourcc_in,
formats_yuv[j].fourcc_out,
- tests_yuv[i].colorops);
+ tests_yuv[i].colorops,
+ false);
/* Switch plane back to temp_fb to keep CRTC active */
igt_plane_set_fb(plane, &temp_fb);
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH v3 12/12] tests/kms_colorop: Increase VKMS bracket to 3 up
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (10 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 11/12] tests/kms_colorop: Add bypass transition tests Harry Wentland
@ 2026-06-23 17:57 ` Harry Wentland
2026-07-25 7:24 ` Alex Hung
2026-06-23 18:55 ` ✓ Xe.CI.BAT: success for YUV Conversion Colorop tests (rev2) Patchwork
` (3 subsequent siblings)
15 siblings, 1 reply; 28+ messages in thread
From: Harry Wentland @ 2026-06-23 17:57 UTC (permalink / raw)
To: igt-dev; +Cc: Harry Wentland
The delta is a bit wider for tests of the CSC with other colorops.
Increase it to 3, which is still pretty tight.
Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
tests/kms_colorop.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
index a2784243c0f5..393c66de51ed 100644
--- a/tests/kms_colorop.c
+++ b/tests/kms_colorop.c
@@ -234,7 +234,7 @@ static bool compare_with_bracket(igt_fb_t *in, igt_fb_t *out)
{
/* Each driver is expected to have its own bracket, i.e., by trial and error */
if (is_vkms_device(in->fd))
- return igt_cmp_fb_pixels(in, out, 1, 1);
+ return igt_cmp_fb_pixels(in, out, 3, 1);
if (is_amdgpu_device(in->fd))
return igt_cmp_fb_pixels(in, out, 13, 13);
--
2.54.0
^ permalink raw reply related [flat|nested] 28+ messages in thread
* ✓ Xe.CI.BAT: success for YUV Conversion Colorop tests (rev2)
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (11 preceding siblings ...)
2026-06-23 17:57 ` [PATCH v3 12/12] tests/kms_colorop: Increase VKMS bracket to 3 up Harry Wentland
@ 2026-06-23 18:55 ` Patchwork
2026-06-23 19:19 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
15 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-06-23 18:55 UTC (permalink / raw)
To: Harry Wentland; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1151 bytes --]
== Series Details ==
Series: YUV Conversion Colorop tests (rev2)
URL : https://patchwork.freedesktop.org/series/164103/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8981_BAT -> XEIGTPW_15433_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8981 -> IGTPW_15433
* Linux: xe-5290-60326b17f877e12846167bf8ef83680b9875218a -> xe-5291-e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd
IGTPW_15433: e5da94fbac3be9c4b81ec2471f98a1ccf911114c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8981: 28416da6681a1afa167bdd73cdc934cb36d13133 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5290-60326b17f877e12846167bf8ef83680b9875218a: 60326b17f877e12846167bf8ef83680b9875218a
xe-5291-e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd: e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/index.html
[-- Attachment #2: Type: text/html, Size: 1710 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✓ i915.CI.BAT: success for YUV Conversion Colorop tests (rev2)
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (12 preceding siblings ...)
2026-06-23 18:55 ` ✓ Xe.CI.BAT: success for YUV Conversion Colorop tests (rev2) Patchwork
@ 2026-06-23 19:19 ` Patchwork
2026-06-24 1:27 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-06-24 5:44 ` ✗ i915.CI.Full: " Patchwork
15 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-06-23 19:19 UTC (permalink / raw)
To: Harry Wentland; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9462 bytes --]
== Series Details ==
Series: YUV Conversion Colorop tests (rev2)
URL : https://patchwork.freedesktop.org/series/164103/
State : success
== Summary ==
CI Bug Log - changes from IGT_8981 -> IGTPW_15433
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-arlh-2
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15433 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#11346] / [i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@dmabuf@all-tests.html
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11345] / [i915#11346]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#11346] / [i915#1849])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11343] / [i915#11346])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725] / [i915#4079])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#11346] / [i915#12637]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#11346] / [i915#15657])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#10209] / [i915#11346] / [i915#11681])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][10] -> [DMESG-WARN][11] ([i915#13735]) +79 other tests dmesg-warn
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8981/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@intel_hwmon@hwmon-read:
- bat-arlh-2: NOTRUN -> [SKIP][12] ([i915#11346] / [i915#11680] / [i915#7707]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][13] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][14] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [PASS][15] -> [DMESG-WARN][16] ([i915#13735] / [i915#180])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8981/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#11346]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_pipe_crc_basic@nonblocking-crc:
- bat-arlh-2: NOTRUN -> [SKIP][18] ([i915#11190] / [i915#11346]) +16 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@kms_pipe_crc_basic@nonblocking-crc.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][19] -> [DMESG-WARN][20] ([i915#13735] / [i915#15673] / [i915#180]) +52 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8981/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-primary-page-flip:
- bat-arlh-2: NOTRUN -> [SKIP][21] ([i915#11346] / [i915#15855]) +9 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][22] ([i915#10208] / [i915#11346] / [i915#8809])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10212] / [i915#11346] / [i915#11726])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][24] ([i915#10214] / [i915#11346] / [i915#11726])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][25] ([i915#10216] / [i915#11346] / [i915#11723])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/bat-arlh-2/igt@prime_vgem@basic-write.html
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11680
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#15855]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15855
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8981 -> IGTPW_15433
* Linux: CI_DRM_18709 -> CI_DRM_18711
CI-20190529: 20190529
CI_DRM_18709: 60326b17f877e12846167bf8ef83680b9875218a @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18711: e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15433: e5da94fbac3be9c4b81ec2471f98a1ccf911114c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8981: 28416da6681a1afa167bdd73cdc934cb36d13133 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/index.html
[-- Attachment #2: Type: text/html, Size: 12354 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✗ Xe.CI.FULL: failure for YUV Conversion Colorop tests (rev2)
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (13 preceding siblings ...)
2026-06-23 19:19 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-06-24 1:27 ` Patchwork
2026-06-24 5:44 ` ✗ i915.CI.Full: " Patchwork
15 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-06-24 1:27 UTC (permalink / raw)
To: Harry Wentland; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 15002 bytes --]
== Series Details ==
Series: YUV Conversion Colorop tests (rev2)
URL : https://patchwork.freedesktop.org/series/164103/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8981_FULL -> XEIGTPW_15433_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15433_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15433_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15433_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@asahi/asahi_get_params@get-params-uint32-max:
- shard-bmg: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-3/igt@asahi/asahi_get_params@get-params-uint32-max.html
Known issues
------------
Here are the changes found in XEIGTPW_15433_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-8bpp-rotate-0:
- shard-lnl: [PASS][2] -> [ABORT][3] ([Intel XE#4760])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-lnl-6/igt@kms_big_fb@linear-8bpp-rotate-0.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-lnl-6/igt@kms_big_fb@linear-8bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@linear-tiling-3-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#3432])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][8] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2321] / [Intel XE#7355])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][10] -> [FAIL][11] ([Intel XE#7571])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#8265]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#301] / [Intel XE#3149])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2311]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-4/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7061])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4141]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2313]) +7 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1489])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#6599])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-1/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7636]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#6321] / [Intel XE#8355])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2322] / [Intel XE#7372])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#8374]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-1/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html
* igt@xe_exec_multi_queue@many-execs-dyn-priority:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#8364]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-dyn-priority.html
* igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#8378]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#944])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#6569])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-bmg: [PASS][34] -> [FAIL][35] ([Intel XE#7992])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-down.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-4/igt@xe_sriov_vram@vf-access-after-resize-down.html
#### Possible fixes ####
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][36] ([Intel XE#301]) -> [PASS][37] +3 other tests pass
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][38] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][39]
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_sriov_flr@flr-basic@numvfs-1:
- shard-bmg: [FAIL][40] ([Intel XE#7992]) -> [PASS][41] +1 other test pass
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-bmg-3/igt@xe_sriov_flr@flr-basic@numvfs-1.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-3/igt@xe_sriov_flr@flr-basic@numvfs-1.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][42] ([Intel XE#6569]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][44] ([Intel XE#301]) -> [FAIL][45] ([Intel XE#301] / [Intel XE#3149])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8981/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8981 -> IGTPW_15433
* Linux: xe-5290-60326b17f877e12846167bf8ef83680b9875218a -> xe-5291-e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd
IGTPW_15433: e5da94fbac3be9c4b81ec2471f98a1ccf911114c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8981: 28416da6681a1afa167bdd73cdc934cb36d13133 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5290-60326b17f877e12846167bf8ef83680b9875218a: 60326b17f877e12846167bf8ef83680b9875218a
xe-5291-e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd: e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15433/index.html
[-- Attachment #2: Type: text/html, Size: 16930 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* ✗ i915.CI.Full: failure for YUV Conversion Colorop tests (rev2)
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
` (14 preceding siblings ...)
2026-06-24 1:27 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-06-24 5:44 ` Patchwork
15 siblings, 0 replies; 28+ messages in thread
From: Patchwork @ 2026-06-24 5:44 UTC (permalink / raw)
To: Harry Wentland; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 150101 bytes --]
== Series Details ==
Series: YUV Conversion Colorop tests (rev2)
URL : https://patchwork.freedesktop.org/series/164103/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18711_full -> IGTPW_15433_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15433_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15433_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15433_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
Known issues
------------
Here are the changes found in IGTPW_15433_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@asahi/asahi_get_params@get-params-uint32-max:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#16489])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@asahi/asahi_get_params@get-params-uint32-max.html
* igt@asahi/asahi_get_time@get-time-compare:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#2575])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@asahi/asahi_get_time@get-time-compare.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#13008])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#13356] / [i915#16348])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][17] ([i915#1099])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-snb6/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-close.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#5882]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-tglu: [PASS][23] -> [ABORT][24] ([i915#13363])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-tglu-2/igt@gem_eio@kms.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [FAIL][30] ([i915#15816])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +8 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3281])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-3/igt@gem_exec_reloc@basic-write-cpu.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-16/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk2/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4613])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#12193])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4565])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#8289])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-4/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#284])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-6/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@basic-small-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-13/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@gem_mmap_wc@write.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_pread@exhaustion:
- shard-glk10: NOTRUN -> [WARN][55] ([i915#2658])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk10/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-16/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-glk11: NOTRUN -> [SKIP][59] +86 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4079])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#14544] / [i915#3282]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4885])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][65] ([i915#13809] / [i915#16193])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk8/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@gem_userptr_blits@coherency-unsync.html
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#3323])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][72] ([i915#13356] / [i915#14586])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk9/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-5/igt@gen9_exec_parse@bb-secure.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-16/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#14118])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk: NOTRUN -> [ABORT][80] ([i915#15342]) +1 other test abort
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#6412])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#14544] / [i915#8399])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#8399]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][84] -> [FAIL][85] ([i915#12964]) +1 other test fail
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#14498])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#13356])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk8/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [PASS][88] -> [INCOMPLETE][89] ([i915#13356])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@i915_pm_rpm@system-suspend-execbuf.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#11681])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#5723])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg1: [PASS][92] -> [DMESG-WARN][93] ([i915#4391] / [i915#4423])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][94] -> [INCOMPLETE][95] ([i915#4817])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][96] -> [INCOMPLETE][97] ([i915#16182] / [i915#4817])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-glk6/igt@i915_suspend@sysfs-reader.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk1/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#7707])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#12761] / [i915#14995])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][100] -> [FAIL][101] ([i915#15662]) +1 other test fail
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][104] ([i915#1769])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#5286]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][107] +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +5 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#3638]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][112] +10 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3828]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#3828])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3828])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#12313]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#12313])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#6095]) +191 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6095]) +9 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#14544] / [i915#6095]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +59 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +80 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +63 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#6095]) +16 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][129] -> [INCOMPLETE][130] ([i915#15582]) +1 other test incomplete
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk10: NOTRUN -> [INCOMPLETE][131] ([i915#15582]) +1 other test incomplete
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +29 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#14098] / [i915#6095]) +42 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#12313])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#3742])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3742])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#16471]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_chamelium_color_pipeline@plane-lut1d.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#14544] / [i915#16471])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#16471]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#16471])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#16464] / [i915#16471]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#16471])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#16471]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-17/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#14544] / [i915#7828])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +6 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@kms_chamelium_hpd@dp-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][153] -> [SKIP][154] ([i915#12655] / [i915#3555])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-10/igt@kms_color@deep-color.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_color@deep-color.html
* igt@kms_color_pipeline@plane-lut1d:
- shard-snb: NOTRUN -> [SKIP][155] +104 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-snb1/igt@kms_color_pipeline@plane-lut1d.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#15865])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#15330])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#15330])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#15330])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#15865])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#15865]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-5/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#15865]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#15865]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@kms_content_protection@mei-interface.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8063] / [i915#9433])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#13049]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3555]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][167] ([i915#13566]) +1 other test fail
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8814]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#13049])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#13049])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#13049])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][175] ([i915#13566]) +1 other test fail
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][176] ([i915#13566]) +1 other test fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8814])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][178] ([i915#12358] / [i915#14152] / [i915#7882])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk11/igt@kms_cursor_crc@cursor-suspend.html
- shard-rkl: [PASS][179] -> [INCOMPLETE][180] ([i915#12358] / [i915#14152])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][181] ([i915#12358] / [i915#14152])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk11/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][182] ([i915#12358] / [i915#14152])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#4103])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#4103]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#4103])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#9809]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][187] ([i915#15804]) +1 other test fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#4103])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#9723])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#9723])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#9723])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3804])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev@basic:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#1257])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#13748])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#16361]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#16361]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#16361]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#16361]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#16361]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#16361]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#3469])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#658])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8381])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][207] ([i915#12745] / [i915#4839] / [i915#6113])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#12745])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#9934]) +8 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#9934]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2: [PASS][211] -> [FAIL][212] ([i915#14600]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#15643])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#15643]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#15643]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#15643]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#15672])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_force_connector_basic@force-edid:
- shard-dg1: [PASS][219] -> [ABORT][220] ([i915#4391] / [i915#4423])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-18/igt@kms_force_connector_basic@force-edid.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-13/igt@kms_force_connector_basic@force-edid.html
- shard-mtlp: [PASS][221] -> [SKIP][222] ([i915#15672])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-mtlp-4/igt@kms_force_connector_basic@force-edid.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#15104] / [i915#15990])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#15990] / [i915#8708]) +7 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#15990] / [i915#8708]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][226] +37 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#15991] / [i915#1825]) +10 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][228] +92 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#15991] / [i915#5354]) +12 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#10056])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk1/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#15989]) +21 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#15990]) +4 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#15990]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15989]) +6 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#15990] / [i915#8708]) +6 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +6 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#10055])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#15102]) +21 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#15102]) +9 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#14544]) +8 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15991]) +19 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][242] +39 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#15989]) +20 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#15989]) +6 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15989]) +9 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15991]) +14 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu:
- shard-rkl: [PASS][247] -> [SKIP][248] ([i915#15989]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary:
- shard-dg2: [PASS][249] -> [SKIP][250] ([i915#15989]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#9766])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#9766])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#15102]) +36 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3023]) +11 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][255] +103 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#14544] / [i915#1825])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#14544] / [i915#15102] / [i915#3023])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102]) +5 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15990]) +6 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#14544] / [i915#15102]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#15102]) +26 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][262] +166 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15989]) +14 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][267] ([i915#15436]) +1 other test incomplete
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-14/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#13688])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-4/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#13688])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#13688])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#13688])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-12/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#15458])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#15460])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#15459])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#15458])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#16451])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#6301])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#6301])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][280] -> [INCOMPLETE][281] ([i915#12756] / [i915#13476])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][282] ([i915#13476])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#14712])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#14712])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#15709]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#15709]) +5 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#15709])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#16386]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#16386]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#16386]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#16386]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#16386]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-14/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#15709]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#16386]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15709]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#15709]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][297] ([i915#10647] / [i915#12169])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][298] ([i915#10647]) +1 other test fail
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_cursor@overlay:
- shard-rkl: [PASS][299] -> [FAIL][300] ([i915#15912])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_plane_cursor@overlay.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128:
- shard-rkl: NOTRUN -> [FAIL][301] ([i915#15913]) +1 other test fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64:
- shard-rkl: NOTRUN -> [FAIL][302] ([i915#15912])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-64.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#13958])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#14259])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#14259])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#15329]) +14 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#15329] / [i915#3555])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#15329]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#15329] / [i915#6953])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#15329]) +3 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#12343] / [i915#9812])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-10/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#12343])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#12343])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#12343] / [i915#5354])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-12/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#12343] / [i915#5354])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#12343] / [i915#14544] / [i915#5354])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#13441])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-1/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#15073])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: [PASS][319] -> [SKIP][320] ([i915#14544] / [i915#15073])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#15073]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][322] -> [SKIP][323] ([i915#15073])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][324] -> [SKIP][325] ([i915#15073]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg1: [PASS][326] -> [SKIP][327] ([i915#15073])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#15073])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#15073]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][330] -> [INCOMPLETE][331] ([i915#14419])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-8/igt@kms_pm_rpm@system-suspend-idle.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][332] ([i915#10553])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#6524])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12316]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#11520]) +7 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-glk11: NOTRUN -> [SKIP][336] ([i915#11520]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][337] ([i915#11520]) +18 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][338] ([i915#11520]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#11520]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][340] ([i915#11520]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9808])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#11520]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#11520]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#11520]) +8 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#9683])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#9683]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-18/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#9683])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#4348])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#9732]) +18 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][351] +770 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk5/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +5 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-5/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#9688]) +8 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#4077] / [i915#9688]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#9732]) +9 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#1072] / [i915#9732]) +14 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_psr@psr2-sprite-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +7 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#15949])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][359] ([i915#15492] / [i915#16184])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk2/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#14544] / [i915#5289])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#5289])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#5289]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#5289])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#5190])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#12755] / [i915#15867] / [i915#5190])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#5289])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][367] ([i915#5289]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#12755] / [i915#15867])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#3555] / [i915#5030] / [i915#9041])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#5030]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#5030] / [i915#9041])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][372] ([i915#3555] / [i915#8809] / [i915#8823])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#3555]) +2 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#3555] / [i915#8809])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][375] ([i915#10959])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#15243] / [i915#3555])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-6/igt@kms_vrr@flip-basic.html
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#15243] / [i915#3555])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_vrr@flip-basic.html
- shard-dg1: NOTRUN -> [SKIP][378] ([i915#3555]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-18/igt@kms_vrr@flip-basic.html
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#3555]) +5 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-3/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][380] ([i915#3555] / [i915#8808]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#14544] / [i915#15243] / [i915#3555])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][382] ([i915#9906]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#9906])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#9906])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#2435])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#2433])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@module-unload:
- shard-rkl: NOTRUN -> [ABORT][387] ([i915#15778])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#8516])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#3708])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][390] ([i915#9917])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [SKIP][391] ([i915#16066]) +9 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [SKIP][392] ([i915#16066]) +8 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][393] ([i915#13029] / [i915#14545]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-tglu-10/igt@i915_module_load@reload-no-display.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-7/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rps@reset:
- shard-snb: [TIMEOUT][395] ([i915#16162]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-snb7/igt@i915_pm_rps@reset.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_selftest@live:
- shard-dg2: [DMESG-FAIL][397] ([i915#15560]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-1/igt@i915_selftest@live.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg2: [DMESG-FAIL][399] ([i915#16077]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-1/igt@i915_selftest@live@gem_contexts.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-3/igt@i915_selftest@live@gem_contexts.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [ABORT][401] ([i915#15140]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-1/igt@i915_suspend@sysfs-reader.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@small-bo:
- shard-dg1: [DMESG-WARN][403] ([i915#4423]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-14/igt@kms_addfb_basic@small-bo.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_addfb_basic@small-bo.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [INCOMPLETE][405] ([i915#12761]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][407] ([i915#12761]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-glk8/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][409] ([i915#5956]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][411] ([i915#15733] / [i915#5138]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [FAIL][413] ([i915#13566]) -> [PASS][414] +1 other test pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][415] ([i915#13566]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-rkl: [INCOMPLETE][417] ([i915#16276] / [i915#6113]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [INCOMPLETE][419] ([i915#10056]) -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][421] ([i915#15989]) -> [PASS][422] +7 other tests pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt:
- shard-glk: [SKIP][423] -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-glk5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [SKIP][425] ([i915#15725]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-8/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][427] ([i915#15073]) -> [PASS][428] +1 other test pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp-stress.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [INCOMPLETE][429] ([i915#12276]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html
* igt@perf_pmu@busy-idle-check-all@bcs0:
- shard-mtlp: [FAIL][431] ([i915#4349]) -> [PASS][432] +4 other tests pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@bcs0.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@bcs0.html
* igt@perf_pmu@interrupts-sync:
- shard-dg1: [FAIL][433] -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-14/igt@perf_pmu@interrupts-sync.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-12/igt@perf_pmu@interrupts-sync.html
#### Warnings ####
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][435] ([i915#6230]) -> [SKIP][436] ([i915#14544] / [i915#6230])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@api_intel_bb@crc32.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@asahi/asahi_get_params@get-params:
- shard-rkl: [SKIP][437] -> [SKIP][438] ([i915#16489]) +3 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@asahi/asahi_get_params@get-params.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@asahi/asahi_get_params@get-params.html
* igt@asahi/asahi_get_time@get-time-compare:
- shard-dg2: [SKIP][439] -> [SKIP][440] ([i915#16489]) +7 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-4/igt@asahi/asahi_get_time@get-time-compare.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-8/igt@asahi/asahi_get_time@get-time-compare.html
* igt@asahi/asahi_get_time@get-time-flags-1:
- shard-dg1: [SKIP][441] -> [SKIP][442] ([i915#16489]) +5 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-13/igt@asahi/asahi_get_time@get-time-flags-1.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-16/igt@asahi/asahi_get_time@get-time-flags-1.html
- shard-mtlp: [SKIP][443] -> [SKIP][444] ([i915#16489]) +6 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-mtlp-8/igt@asahi/asahi_get_time@get-time-flags-1.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-5/igt@asahi/asahi_get_time@get-time-flags-1.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][445] ([i915#3555] / [i915#9323]) -> [SKIP][446] ([i915#14544] / [i915#3555] / [i915#9323])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#4525]) -> [SKIP][448] ([i915#4525])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][449] ([i915#14544] / [i915#3281]) -> [SKIP][450] ([i915#3281]) +2 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][451] ([i915#7276]) -> [SKIP][452] ([i915#14544] / [i915#7276])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-8/igt@gem_exec_schedule@semaphore-power.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_lmem_swapping@smem-oom:
- shard-rkl: [SKIP][453] ([i915#4613]) -> [SKIP][454] ([i915#14544] / [i915#4613])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@gem_lmem_swapping@smem-oom.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][455] ([i915#14544] / [i915#284]) -> [SKIP][456] ([i915#284])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@gem_media_vme.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gem_media_vme.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: [SKIP][457] ([i915#3282]) -> [SKIP][458] ([i915#14544] / [i915#3282]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@gem_partial_pwrite_pread@write-snoop.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: [SKIP][459] ([i915#15656]) -> [SKIP][460] ([i915#14544] / [i915#15656])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@gem_tiled_pread_basic@basic.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][461] ([i915#3297]) -> [SKIP][462] ([i915#14544] / [i915#3297])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-8/igt@gem_userptr_blits@coherency-sync.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#3297]) -> [SKIP][464] ([i915#3297])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][465] ([i915#14544] / [i915#2527]) -> [SKIP][466] ([i915#2527])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][467] ([i915#11814] / [i915#15481]) -> [ABORT][468] ([i915#11814]) +1 other test abort
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-15/igt@i915_module_load@fault-injection.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-13/igt@i915_module_load@fault-injection.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: [SKIP][469] ([i915#16080] / [i915#16166]) -> [SKIP][470] ([i915#14544] / [i915#16080] / [i915#16166])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [ABORT][471] ([i915#15140]) -> [INCOMPLETE][472] ([i915#4817])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][473] ([i915#14544] / [i915#5286]) -> [SKIP][474] ([i915#5286])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: [SKIP][475] ([i915#5286]) -> [SKIP][476] ([i915#14544] / [i915#5286]) +1 other test skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#3828]) -> [SKIP][478] ([i915#3828])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][479] ([i915#3638]) -> [SKIP][480] ([i915#14544] / [i915#3638])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][481] -> [SKIP][482] ([i915#14544]) +27 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][483] ([i915#6095]) -> [SKIP][484] ([i915#14544] / [i915#6095]) +5 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][485] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][486] ([i915#14098] / [i915#6095])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][487] ([i915#12805]) -> [SKIP][488] ([i915#12805] / [i915#14544])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][489] ([i915#14098] / [i915#6095]) -> [SKIP][490] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#3742]) -> [SKIP][492] ([i915#3742])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-rkl: [SKIP][493] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][494] ([i915#11151] / [i915#7828]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_chamelium_audio@dp-audio-edid.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg1: [SKIP][495] ([i915#11151] / [i915#7828]) -> [SKIP][496] ([i915#11151] / [i915#4423] / [i915#7828])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][497] ([i915#11151] / [i915#7828]) -> [SKIP][498] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][499] ([i915#15330] / [i915#3116]) -> [SKIP][500] ([i915#14544] / [i915#15330] / [i915#3116])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: [SKIP][501] ([i915#15330]) -> [SKIP][502] ([i915#14544] / [i915#15330])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][503] ([i915#15865]) -> [SKIP][504] ([i915#14544] / [i915#15865])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-5/igt@kms_content_protection@type1.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: [SKIP][505] ([i915#13049] / [i915#3359]) -> [SKIP][506] ([i915#13049])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: [SKIP][507] ([i915#13049]) -> [SKIP][508] ([i915#13049] / [i915#3359])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][509] ([i915#3555]) -> [SKIP][510] ([i915#14544] / [i915#3555]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][511] ([i915#13049] / [i915#14544]) -> [SKIP][512] ([i915#13049])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- shard-rkl: [SKIP][513] ([i915#16361]) -> [SKIP][514] ([i915#14544] / [i915#16361]) +2 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-rkl: [SKIP][515] ([i915#9934]) -> [SKIP][516] ([i915#14544] / [i915#9934]) +2 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-3/igt@kms_flip@2x-flip-vs-fences.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: [SKIP][517] ([i915#14544] / [i915#9934]) -> [SKIP][518] ([i915#9934]) +1 other test skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#15643]) -> [SKIP][520] ([i915#15643])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][521] ([i915#1825]) -> [SKIP][522] ([i915#14544] / [i915#1825])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: [SKIP][523] ([i915#15990] / [i915#8708]) -> [SKIP][524] ([i915#15990] / [i915#4423] / [i915#8708])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][525] ([i915#15102] / [i915#3023]) -> [SKIP][526] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][527] ([i915#14544] / [i915#1825]) -> [SKIP][528] ([i915#1825])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][529] -> [SKIP][530] ([i915#4423])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][531] ([i915#14544]) -> [SKIP][532] +8 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][533] ([i915#10433] / [i915#15102]) -> [SKIP][534] ([i915#15102])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg1: [SKIP][535] ([i915#4423]) -> [SKIP][536] +1 other test skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][538] ([i915#15102] / [i915#3023])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][539] ([i915#15102]) -> [SKIP][540] ([i915#10433] / [i915#15102]) +3 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][541] ([i915#15102]) -> [SKIP][542] ([i915#14544] / [i915#15102]) +13 other tests skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][543] ([i915#14544] / [i915#15102]) -> [SKIP][544] ([i915#15102])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render:
- shard-dg1: [SKIP][545] ([i915#15102]) -> [SKIP][546] ([i915#15102] / [i915#4423])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][547] ([i915#1187] / [i915#12713]) -> [SKIP][548] ([i915#12713])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][549] ([i915#1187] / [i915#12713]) -> [SKIP][550] ([i915#12713])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][551] ([i915#15815]) -> [SKIP][552] ([i915#14544] / [i915#15815])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: [SKIP][553] ([i915#6301]) -> [SKIP][554] ([i915#4423] / [i915#6301])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-12/igt@kms_panel_fitting@atomic-fastset.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: [SKIP][555] ([i915#15709]) -> [SKIP][556] ([i915#14544] / [i915#15709]) +2 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][557] ([i915#14544] / [i915#15709]) -> [SKIP][558] ([i915#15709])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][559] ([i915#14544] / [i915#15329]) -> [SKIP][560] ([i915#15329]) +3 other tests skip
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][561] ([i915#15948]) -> [SKIP][562] ([i915#14544] / [i915#15948])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][563] ([i915#9340]) -> [SKIP][564] ([i915#3828])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][565] ([i915#14544] / [i915#15073]) -> [SKIP][566] ([i915#15073])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@d3hot:
- shard-rkl: [SKIP][567] ([i915#6524]) -> [SKIP][568] ([i915#14544] / [i915#6524])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_prime@d3hot.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][569] ([i915#11520]) -> [SKIP][570] ([i915#11520] / [i915#14544]) +3 other tests skip
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg1: [SKIP][571] ([i915#1072] / [i915#9732]) -> [SKIP][572] ([i915#1072] / [i915#4423] / [i915#9732])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-dg1-18/igt@kms_psr@fbc-pr-sprite-blt.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-dg1-17/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: [SKIP][573] ([i915#1072] / [i915#9732]) -> [SKIP][574] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-2/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-rkl: [SKIP][575] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][576] ([i915#1072] / [i915#9732]) +3 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-2/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][577] ([i915#8623]) -> [SKIP][578] ([i915#14544] / [i915#8623])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: [SKIP][579] ([i915#9906]) -> [SKIP][580] ([i915#14544] / [i915#9906])
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][581] ([i915#2434]) -> [SKIP][582] ([i915#14544] / [i915#2434])
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-5/igt@perf@mi-rpc.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-6/igt@perf@mi-rpc.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: [SKIP][583] ([i915#14544] / [i915#3708]) -> [SKIP][584] ([i915#3708])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18711/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912
[i915#15913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16077
[i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
[i915#16162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16162
[i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16193
[i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451
[i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16489]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16489
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8981 -> IGTPW_15433
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18711: e2a6e04d045a56c6dc61e1eb9e2a6d7cf86512cd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15433: e5da94fbac3be9c4b81ec2471f98a1ccf911114c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8981: 28416da6681a1afa167bdd73cdc934cb36d13133 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15433/index.html
[-- Attachment #2: Type: text/html, Size: 198132 bytes --]
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 01/12] include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX
2026-06-23 17:57 ` [PATCH v3 01/12] include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX Harry Wentland
@ 2026-07-25 6:52 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 6:52 UTC (permalink / raw)
To: Harry Wentland, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 6/23/26 11:57, Harry Wentland wrote:
> Add DRM_COLOROP_FIXED_MATRIX to the colorop type enumeration.
>
> Assisted-by: Claude:claude-opus-4-6
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> include/drm-uapi/drm_mode.h | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/include/drm-uapi/drm_mode.h b/include/drm-uapi/drm_mode.h
> index de10ce859fdb..0924e38af09c 100644
> --- a/include/drm-uapi/drm_mode.h
> +++ b/include/drm-uapi/drm_mode.h
> @@ -934,6 +934,17 @@ enum drm_colorop_type {
> * LUT size is advertised via the SIZE property.
> */
> DRM_COLOROP_3D_LUT,
> +
> + /**
> + * @DRM_COLOROP_FIXED_MATRIX:
> + *
> + * enum string "Fixed Matrix"
> + *
> + * A Colorop block that performs a pre-defined matrix operation selected
> + * via the FIXED_MATRIX_TYPE enum property. The driver advertises the supported
> + * operations through this property.
> + */
> + DRM_COLOROP_FIXED_MATRIX,
> };
>
> /**
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 02/12] lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property
2026-06-23 17:57 ` [PATCH v3 02/12] lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property Harry Wentland
@ 2026-07-25 6:56 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 6:56 UTC (permalink / raw)
To: Harry Wentland, igt-dev
On 6/23/26 11:57, Harry Wentland wrote:
> Add support for the Fixed Matrix colorop property:
> - Add IGT_COLOROP_FIXED_MATRIX property to the colorop property enum
> and names array in igt_kms
>
> Assisted-by: Claude:claude-opus-4-6
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> lib/igt_kms.c | 1 +
> lib/igt_kms.h | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index e82d32130666..9003b2b9e670 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -725,6 +725,7 @@ const char * const igt_colorop_prop_names[IGT_NUM_COLOROP_PROPS] = {
> [IGT_COLOROP_MULTIPLIER] = "MULTIPLIER",
> [IGT_COLOROP_LUT3D_INTERPOLATION] = "LUT3D_INTERPOLATION",
> [IGT_COLOROP_NEXT] = "NEXT",
> + [IGT_COLOROP_FIXED_MATRIX] = "FIXED_MATRIX_TYPE",
Should we move IGT_COLOROP_FIXED_MATRIX before NEXT?
> };
>
> const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index 3df3ba86630e..1be58288e119 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -363,6 +363,7 @@ enum igt_atomic_colorop_properties {
> IGT_COLOROP_MULTIPLIER,
> IGT_COLOROP_LUT3D_INTERPOLATION,
> IGT_COLOROP_NEXT,
> + IGT_COLOROP_FIXED_MATRIX,
Should we move IGT_COLOROP_FIXED_MATRIX before NEXT?
> IGT_NUM_COLOROP_PROPS
> };
>
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 03/12] tests/kms_colorop_helper: Add Fixed Matrix colorop infrastructure
2026-06-23 17:57 ` [PATCH v3 03/12] tests/kms_colorop_helper: Add Fixed Matrix colorop infrastructure Harry Wentland
@ 2026-07-25 6:56 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 6:56 UTC (permalink / raw)
To: Harry Wentland, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 6/23/26 11:57, Harry Wentland wrote:
> Add support for Fixed Matrix colorops:
> - Add KMS_COLOROP_FIXED_MATRIX type to the test colorop type enum
> - Add kms_colorop_fixed_matrix_info_t struct carrying the DRM enum string
> name plus encoding/range for software reference transforms
> - Add can_use_colorop() handling: matches DRM_COLOROP_FIXED_MATRIX type and
> verifies the specific FIXED_MATRIX enum value is supported
> - Add set_colorop() handling: sets FIXED_MATRIX via single enum property
> - Define four FIXED_MATRIX colorop instances: BT.709 limited/full, BT.601
> limited, and BT.2020 limited
>
> Assisted-by: Claude:claude-opus-4-6
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> tests/kms_colorop_helper.c | 45 ++++++++++++++++++++++++++++++++++++++
> tests/kms_colorop_helper.h | 12 +++++++++-
> 2 files changed, 56 insertions(+), 1 deletion(-)
>
> diff --git a/tests/kms_colorop_helper.c b/tests/kms_colorop_helper.c
> index aaee4e567ef6..d12584c9adb1 100644
> --- a/tests/kms_colorop_helper.c
> +++ b/tests/kms_colorop_helper.c
> @@ -200,6 +200,42 @@ kms_colorop_t kms_colorop_3dlut_17_12_rgb = {
> .transform = &igt_color_3dlut_17_12_rgb,
> };
>
> +kms_colorop_t kms_colorop_bt709_limited_ycbcr_to_rgb = {
> + .type = KMS_COLOROP_FIXED_MATRIX,
> + .fixed_matrix_info = {
> + .fixed_matrix_type_name = "YCbCr 709 Limited to RGB",
> + },
> + .name = "YCbCr BT.709 Limited Range to RGB",
> + .transform = NULL,
> +};
> +
> +kms_colorop_t kms_colorop_bt709_full_ycbcr_to_rgb = {
> + .type = KMS_COLOROP_FIXED_MATRIX,
> + .fixed_matrix_info = {
> + .fixed_matrix_type_name = "YCbCr 709 Full to RGB",
> + },
> + .name = "YCbCr BT.709 Full Range to RGB",
> + .transform = NULL,
> +};
> +
> +kms_colorop_t kms_colorop_bt601_limited_ycbcr_to_rgb = {
> + .type = KMS_COLOROP_FIXED_MATRIX,
> + .fixed_matrix_info = {
> + .fixed_matrix_type_name = "YCbCr 601 Limited to RGB",
> + },
> + .name = "YCbCr BT.601 Limited Range to RGB",
> + .transform = NULL,
> +};
> +
> +kms_colorop_t kms_colorop_bt2020_limited_ycbcr_to_rgb = {
> + .type = KMS_COLOROP_FIXED_MATRIX,
> + .fixed_matrix_info = {
> + .fixed_matrix_type_name = "YCbCr 2020 Limited to RGB NC",
> + },
> + .name = "YCbCr BT.2020 Limited Range to RGB",
> + .transform = NULL,
> +};
> +
> static bool can_use_colorop(igt_display_t *display, igt_colorop_t *colorop, kms_colorop_t *desired)
> {
> switch (desired->type) {
> @@ -218,6 +254,11 @@ static bool can_use_colorop(igt_display_t *display, igt_colorop_t *colorop, kms_
> return (igt_colorop_get_prop(display, colorop, IGT_COLOROP_TYPE) == DRM_COLOROP_MULTIPLIER);
> case KMS_COLOROP_LUT3D:
> return (igt_colorop_get_prop(display, colorop, IGT_COLOROP_TYPE) == DRM_COLOROP_3D_LUT);
> + case KMS_COLOROP_FIXED_MATRIX:
> + if (igt_colorop_get_prop(display, colorop, IGT_COLOROP_TYPE) == DRM_COLOROP_FIXED_MATRIX &&
> + igt_colorop_try_prop_enum(colorop, IGT_COLOROP_FIXED_MATRIX, desired->fixed_matrix_info.fixed_matrix_type_name))
> + return true;
> + return false;
> default:
> return false;
> }
> @@ -362,6 +403,10 @@ static void set_colorop(igt_display_t *display, kms_colorop_t *colorop)
>
> configure_3dlut(display, colorop, lut_size);
> break;
> + case KMS_COLOROP_FIXED_MATRIX:
> + igt_colorop_set_prop_enum(colorop->colorop, IGT_COLOROP_FIXED_MATRIX,
> + colorop->fixed_matrix_info.fixed_matrix_type_name);
> + break;
> default:
> igt_fail(IGT_EXIT_FAILURE);
> }
> diff --git a/tests/kms_colorop_helper.h b/tests/kms_colorop_helper.h
> index a081fa02db8e..68ae1dd05c6f 100644
> --- a/tests/kms_colorop_helper.h
> +++ b/tests/kms_colorop_helper.h
> @@ -22,7 +22,8 @@ typedef enum kms_colorop_type {
> KMS_COLOROP_CUSTOM_LUT1D,
> KMS_COLOROP_CTM_3X4,
> KMS_COLOROP_MULTIPLIER,
> - KMS_COLOROP_LUT3D
> + KMS_COLOROP_LUT3D,
> + KMS_COLOROP_FIXED_MATRIX,
> } kms_colorop_type_t;
>
> typedef enum kms_colorop_lut1d_tf {
> @@ -50,8 +51,13 @@ typedef struct kms_colorop_lut3d_info {
> enum drm_colorop_lut3d_interpolation_type interpolation;
> } kms_colorop_lut3d_info_t;
>
> +typedef struct kms_colorop_fixed_matrix_info {
> + const char *fixed_matrix_type_name;
> +} kms_colorop_fixed_matrix_info_t;
> +
> typedef struct kms_colorop {
> kms_colorop_type_t type;
> + kms_colorop_fixed_matrix_info_t fixed_matrix_info;
>
> union {
> kms_colorop_enumerated_lut1d_info_t enumerated_lut1d_info;
> @@ -94,6 +100,10 @@ extern kms_colorop_t kms_colorop_ctm_3x4_bt709_dec;
> extern kms_colorop_t kms_colorop_multiply_125;
> extern kms_colorop_t kms_colorop_multiply_inv_125;
> extern kms_colorop_t kms_colorop_3dlut_17_12_rgb;
> +extern kms_colorop_t kms_colorop_bt709_limited_ycbcr_to_rgb;
> +extern kms_colorop_t kms_colorop_bt709_full_ycbcr_to_rgb;
> +extern kms_colorop_t kms_colorop_bt601_limited_ycbcr_to_rgb;
> +extern kms_colorop_t kms_colorop_bt2020_limited_ycbcr_to_rgb;
>
> igt_colorop_t *get_color_pipeline(igt_display_t *display,
> igt_plane_t *plane,
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 04/12] tests/kms_colorop_helper: Add helpers to get encoding/range from FIXED_MATRIX name
2026-06-23 17:57 ` [PATCH v3 04/12] tests/kms_colorop_helper: Add helpers to get encoding/range from FIXED_MATRIX name Harry Wentland
@ 2026-07-25 7:04 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:04 UTC (permalink / raw)
To: Harry Wentland, igt-dev
On 6/23/26 11:57, Harry Wentland wrote:
> Add fixed_matrix_type_to_encoding_range() to map a FIXED_MATRIX colorop's
> DRM enum string name (e.g. "YCbCr 709 Limited to RGB") to the matching
> igt_color_encoding and igt_color_range. This lets the tests derive the
> encoding/range needed for the software reference CSC directly from the
> colorop the hardware advertises.
>
> Assisted-by: Claude:claude-opus-4-6
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> tests/kms_colorop_helper.c | 30 ++++++++++++++++++++++++++++++
> tests/kms_colorop_helper.h | 4 ++++
> 2 files changed, 34 insertions(+)
>
> diff --git a/tests/kms_colorop_helper.c b/tests/kms_colorop_helper.c
> index d12584c9adb1..e589fa5c99a9 100644
> --- a/tests/kms_colorop_helper.c
> +++ b/tests/kms_colorop_helper.c
> @@ -473,3 +473,33 @@ void reset_colorops(kms_colorop_t *colorops[])
> for(i = 0; colorops[i]; i++)
> reset_colorop(colorops[i]);
> }
> +
> +static const struct {
> + const char *name;
> + enum igt_color_encoding encoding;
> + enum igt_color_range range;
> +} fixed_matrix_type_map[] = {
> + { "YCbCr 601 Full to RGB", IGT_COLOR_YCBCR_BT601, IGT_COLOR_YCBCR_FULL_RANGE },
> + { "YCbCr 709 Full to RGB", IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_FULL_RANGE },
> + { "YCbCr 2020 Full to RGB NC", IGT_COLOR_YCBCR_BT2020, IGT_COLOR_YCBCR_FULL_RANGE },
> + { "YCbCr 601 Limited to RGB", IGT_COLOR_YCBCR_BT601, IGT_COLOR_YCBCR_LIMITED_RANGE },
> + { "YCbCr 709 Limited to RGB", IGT_COLOR_YCBCR_BT709, IGT_COLOR_YCBCR_LIMITED_RANGE },
> + { "YCbCr 2020 Limited to RGB NC", IGT_COLOR_YCBCR_BT2020, IGT_COLOR_YCBCR_LIMITED_RANGE },
> +};
> +
> +void fixed_matrix_type_to_encoding_range(const char *fixed_matrix_type_name,
> + enum igt_color_encoding *encoding,
> + enum igt_color_range *range)
> +{
> + int i;
> +
> + for (i = 0; i < ARRAY_SIZE(fixed_matrix_type_map); i++) {
> + if (!strcmp(fixed_matrix_type_name, fixed_matrix_type_map[i].name)) {
> + *encoding = fixed_matrix_type_map[i].encoding;
> + *range = fixed_matrix_type_map[i].range;
> + return;
> + }
> + }
> +
> + igt_assert_f(false, "Unknown Fixed Matrix type: %s\n", fixed_matrix_type_name);
> +}
Can "igt_color_encoding encoding" and "igt_color_range range" be
included in kms_colorop_fixed_matrix_info_t like below?
typedef struct kms_colorop_fixed_matrix_info {
const char *fixed_matrix_type_name;
+ enum igt_color_encoding encoding;
+ enum igt_color_range range;
} kms_colorop_fixed_matrix_info_t;
and
kms_colorop_t kms_colorop_bt709_full_ycbcr_to_rgb = {
.type = KMS_COLOROP_FIXED_MATRIX,
.fixed_matrix_info = {
.fixed_matrix_type_name = "YCbCr 709 Full to RGB",
+ .encoding = IGT_COLOR_YCBCR_BT709,
+ .range = IGT_COLOR_YCBCR_FULL_RANGE,
},
.name = "YCbCr BT.709 Full Range to RGB",
.transform = NULL,
};
then we don't need fixed_matrix_type_to_encoding_range()
> diff --git a/tests/kms_colorop_helper.h b/tests/kms_colorop_helper.h
> index 68ae1dd05c6f..539067b5a494 100644
> --- a/tests/kms_colorop_helper.h
> +++ b/tests/kms_colorop_helper.h
> @@ -115,4 +115,8 @@ void set_color_pipeline(igt_display_t *display,
> void set_color_pipeline_bypass(igt_plane_t *plane);
> void reset_colorops(kms_colorop_t *colorops[]);
>
> +void fixed_matrix_type_to_encoding_range(const char *fixed_matrix_type_name,
> + enum igt_color_encoding *encoding,
> + enum igt_color_range *range);
> +
> #endif /* __KMS_COLOROP_HELPER_H__ */
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 05/12] lib/igt_fb: Add YUV color pattern framebuffer support
2026-06-23 17:57 ` [PATCH v3 05/12] lib/igt_fb: Add YUV color pattern framebuffer support Harry Wentland
@ 2026-07-25 7:05 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:05 UTC (permalink / raw)
To: Harry Wentland, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 6/23/26 11:57, Harry Wentland wrote:
> Add igt_create_color_pattern_fb_yuv() function to create test pattern
> framebuffers in YUV formats. This extends the existing color pattern
> functionality to support YUV testing, handling proper conversion from
> RGB test patterns to YUV color spaces with correct encoding and range.
>
> Assisted-by: Claude:claude-sonnet-4-5
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> lib/igt_fb.c | 41 +++++++++++++++++++++++++++++++++++++++++
> lib/igt_fb.h | 6 ++++++
> 2 files changed, 47 insertions(+)
>
> diff --git a/lib/igt_fb.c b/lib/igt_fb.c
> index e623b2f64d7c..6c3b9b0b9208 100644
> --- a/lib/igt_fb.c
> +++ b/lib/igt_fb.c
> @@ -2403,6 +2403,47 @@ unsigned int igt_create_color_pattern_fb(int fd, int width, int height,
> return fb_id;
> }
>
> +/**
> + * igt_create_color_pattern_fb_yuv:
> + * @fd: open drm file descriptor
> + * @width: width of the framebuffer in pixel
> + * @height: height of the framebuffer in pixel
> + * @format: drm fourcc pixel format code
> + * @modifier: tiling layout of the framebuffer
> + * @color_encoding: color encoding for YUV formats (e.g., BT.601, BT.709, BT.2020)
> + * @color_range: color range for YUV formats (limited or full range)
> + * @r: red value to use as background, 0.0 for black, 1.0 for red
> + * @g: green value to use as background, 0.0 for black, 1.0 for green
> + * @b: blue value to use as background, 0.0 for black, 1.0 for blue
> + * @fb: pointer to an #igt_fb structure
> + *
> + * This creates a framebuffer for YUV formats with the specified color encoding
> + * and range. Cairo is used to draw the background color and test pattern, with
> + * automatic RGB to YUV conversion based on the specified encoding and range.
> + *
> + * Returns:
> + * The kms id of the created framebuffer on success or a negative error code on
> + * failure.
> + */
> +unsigned int igt_create_color_pattern_fb_yuv(int fd, int width, int height,
> + uint32_t format, uint64_t modifier,
> + enum igt_color_encoding color_encoding,
> + enum igt_color_range color_range,
> + double r, double g, double b,
> + struct igt_fb *fb /* out */)
> +{
> + unsigned int fb_id;
> +
> + fb_id = igt_create_fb_with_bo_size(fd, width, height, format, modifier,
> + color_encoding, color_range,
> + fb, 0, 0);
> + igt_assert(fb_id);
> +
> + igt_paint_test_pattern_color_fb(fd, fb, r, g, b);
> +
> + return fb_id;
> +}
> +
> /**
> * igt_create_image_fb:
> * @drm_fd: open drm file descriptor
> diff --git a/lib/igt_fb.h b/lib/igt_fb.h
> index 8e5907dabed4..213e2d77795d 100644
> --- a/lib/igt_fb.h
> +++ b/lib/igt_fb.h
> @@ -153,6 +153,12 @@ unsigned int igt_create_color_pattern_fb(int fd, int width, int height,
> uint32_t format, uint64_t modifier,
> double r, double g, double b,
> struct igt_fb *fb /* out */);
> +unsigned int igt_create_color_pattern_fb_yuv(int fd, int width, int height,
> + uint32_t format, uint64_t modifier,
> + enum igt_color_encoding color_encoding,
> + enum igt_color_range color_range,
> + double r, double g, double b,
> + struct igt_fb *fb /* out */);
> unsigned int igt_create_image_fb(int drm_fd, int width, int height,
> uint32_t format, uint64_t modifier,
> const char *filename,
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 06/12] lib/igt_color_encoding: Add XRGB2101010 format support
2026-06-23 17:57 ` [PATCH v3 06/12] lib/igt_color_encoding: Add XRGB2101010 format support Harry Wentland
@ 2026-07-25 7:05 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:05 UTC (permalink / raw)
To: Harry Wentland, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 6/23/26 11:57, Harry Wentland wrote:
> Add XRGB2101010 (10-bit RGB) to the color encoding format list. This
> enables proper color encoding handling for 10-bit RGB formats used in
> CSC testing scenarios.
>
> Assisted-by: Claude:claude-sonnet-4-5
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> lib/igt_color_encoding.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/lib/igt_color_encoding.c b/lib/igt_color_encoding.c
> index da56b2b10593..1d01c7eb0583 100644
> --- a/lib/igt_color_encoding.c
> +++ b/lib/igt_color_encoding.c
> @@ -135,6 +135,7 @@ static const struct color_encoding_format {
> float ofs_y, max_y, ofs_cbcr, mid_cbcr, max_cbcr;
> } formats[] = {
> { DRM_FORMAT_XRGB8888, 255.f, },
> + { DRM_FORMAT_XRGB2101010, 1023.f, },
> { IGT_FORMAT_FLOAT, 1.f, },
> { DRM_FORMAT_NV12, 255.f, 16.f, 235.f, 16.f, 128.f, 240.f },
> { DRM_FORMAT_NV16, 255.f, 16.f, 235.f, 16.f, 128.f, 240.f },
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 07/12] lib/igt_color: Add YUV pixel reading support
2026-06-23 17:57 ` [PATCH v3 07/12] lib/igt_color: Add YUV pixel reading support Harry Wentland
@ 2026-07-25 7:10 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:10 UTC (permalink / raw)
To: Harry Wentland, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 6/23/26 11:57, Harry Wentland wrote:
> Add functions to read YUV pixel values from framebuffers. Supports
> NV12 and P010 formats with proper handling of:
> - Multi-planar Y/UV data layout
> - 8-bit and 10-bit sample depths
> - Chroma subsampling
>
> This provides the foundation for YUV color transformation testing.
>
> Assisted-by: Claude:claude-sonnet-4-5
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> lib/igt_color.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 72 insertions(+)
>
> diff --git a/lib/igt_color.c b/lib/igt_color.c
> index 8c405275acf8..a451f5642bac 100644
> --- a/lib/igt_color.c
> +++ b/lib/igt_color.c
> @@ -259,6 +259,78 @@ void igt_color_multiply_inv_125(igt_pixel_t *pixel)
> igt_color_multiply(pixel, 1 / 125.0f);
> }
>
> +/**
> + * igt_color_extract_yuv_pixel - Extract raw Y, U, V values from YUV buffer
> + * @fb: framebuffer
> + * @x: x coordinate
> + * @y: y coordinate
> + * @y_plane: pointer to Y plane
> + * @uv_plane: pointer to UV plane
> + * @y_stride: stride of Y plane
> + * @uv_stride: stride of UV plane
> + * @out_y: output Y value (raw, not normalized)
> + * @out_u: output U value (raw, not normalized)
> + * @out_v: output V value (raw, not normalized)
> + *
> + * Extracts raw Y, U, V component values from a YUV framebuffer at the given
> + * coordinates. Handles 4:2:0 subsampling for UV components. Values are raw
> + * (not normalized) and format-specific.
> + */
> +static void
> +igt_color_extract_yuv_pixel(igt_fb_t *fb, int x, int y,
> + uint8_t *y_plane, uint8_t *uv_plane,
> + int y_stride, int uv_stride,
> + uint32_t *out_y, uint32_t *out_u, uint32_t *out_v)
> +{
> + if (fb->drm_format == DRM_FORMAT_NV12) {
> + *out_y = y_plane[y * y_stride + x];
> + *out_u = uv_plane[(y / 2) * uv_stride + (x / 2) * 2 + 0];
> + *out_v = uv_plane[(y / 2) * uv_stride + (x / 2) * 2 + 1];
> + } else if (fb->drm_format == DRM_FORMAT_P010) {
> + uint16_t *y16 = (uint16_t *)y_plane;
> + uint16_t *uv16 = (uint16_t *)uv_plane;
> +
> + *out_y = y16[y * (y_stride / 2) + x];
> + *out_u = uv16[(y / 2) * (uv_stride / 2) + (x / 2) * 2 + 0];
> + *out_v = uv16[(y / 2) * (uv_stride / 2) + (x / 2) * 2 + 1];
> + } else {
> + igt_skip("YUV pixel format support not implemented");
> + }
> +}
> +
> +/**
> + * igt_color_yuv_to_pixel - Convert raw Y, U, V values to normalized pixel
> + * @drm_format: YUV format (NV12 or P010)
> + * @raw_y: raw Y value
> + * @raw_u: raw U value
> + * @raw_v: raw V value
> + * @pixel: output pixel structure
> + *
> + * Converts raw Y, U, V component values to a normalized igt_pixel_t structure.
> + * For NV12 (8-bit), normalizes by 255. For P010 (10-bit in upper bits),
> + * shifts and normalizes by 1023.
> + *
> + * Result: pixel->r = normalized Y, pixel->g = normalized U, pixel->b = normalized V
> + */
> +static void
> +igt_color_yuv_to_pixel(uint32_t drm_format, uint32_t raw_y, uint32_t raw_u,
> + uint32_t raw_v, igt_pixel_t *pixel)
> +{
> + if (drm_format == DRM_FORMAT_NV12) {
> + /* Normalize 8-bit values to [0.0, 1.0] */
> + pixel->r = raw_y / 255.0f;
> + pixel->g = raw_u / 255.0f;
> + pixel->b = raw_v / 255.0f;
> + } else if (drm_format == DRM_FORMAT_P010) {
> + /* P010 uses upper 10 bits of 16-bit value */
> + pixel->r = (raw_y >> 6) / 1023.0f;
> + pixel->g = (raw_u >> 6) / 1023.0f;
> + pixel->b = (raw_v >> 6) / 1023.0f;
> + } else {
> + igt_skip("YUV pixel format support not implemented");
> + }
> +}
> +
> static int
> igt_get_lut3d_index_blue_fast(int r, int g, int b, long dim, int components)
> {
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 09/12] tests/kms_colorop: Add FIXED_MATRIX colorop tests
2026-06-23 17:57 ` [PATCH v3 09/12] tests/kms_colorop: Add FIXED_MATRIX colorop tests Harry Wentland
@ 2026-07-25 7:15 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:15 UTC (permalink / raw)
To: Harry Wentland, igt-dev
On 6/23/26 11:57, Harry Wentland wrote:
> Add comprehensive test coverage for FIXED_MATRIX colorops for CSC:
>
> Test cases:
> - NV12 (8-bit YUV 4:2:0) CSC tests
> - P010 (10-bit YUV 4:2:0) CSC tests
> - BT.709, BT.601, and BT.2020 encoding tests
> - Limited and full range tests
> - CSC combined with additional colorops (sRGB EOTF, 3D LUT, CTM)
> - Organized into separate RGB and YUV test groups
>
> The tests verify that FIXED_MATRIX colorops correctly convert YUV input to
> RGB output by comparing hardware CSC results with software reference
> transformations using the igt_color_encoding matrix library.
>
> Assisted-by: Claude:claude-sonnet-4-5
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> tests/kms_colorop.c | 256 +++++++++++++++++++++++++++++++++++---------
> 1 file changed, 205 insertions(+), 51 deletions(-)
>
> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
> index 5cf1f688832f..1d30d2538574 100644
> --- a/tests/kms_colorop.c
> +++ b/tests/kms_colorop.c
> @@ -20,50 +20,95 @@
> * SUBTEST: check_plane_colorop_ids
> * Description: Verify that all igt_colorop_t IDs are unique across planes
> *
> - * SUBTEST: plane-%s-%s
> - * Description: Tests DRM colorop properties on a plane
> + * SUBTEST: plane-XR24-XR24-bypass
> + * SUBTEST: plane-XR24-XR24-srgb_eotf
> + * SUBTEST: plane-XR24-XR24-srgb_inv_eotf
> + * SUBTEST: plane-XR24-XR24-srgb_eotf-srgb_inv_eotf
> + * SUBTEST: plane-XR24-XR24-srgb_eotf-srgb_inv_eotf-srgb_eotf
> + * SUBTEST: plane-XR24-XR24-srgb_inv_eotf_lut
> + * SUBTEST: plane-XR24-XR24-srgb_inv_eotf_lut-srgb_eotf_lut
> + * SUBTEST: plane-XR24-XR24-bt2020_inv_oetf
> + * SUBTEST: plane-XR24-XR24-bt2020_oetf
> + * SUBTEST: plane-XR24-XR24-bt2020_inv_oetf-bt2020_oetf
> + * SUBTEST: plane-XR24-XR24-pq_eotf
> + * SUBTEST: plane-XR24-XR24-pq_inv_eotf
> + * SUBTEST: plane-XR24-XR24-pq_eotf-pq_inv_eotf
> + * SUBTEST: plane-XR24-XR24-pq_125_eotf
> + * SUBTEST: plane-XR24-XR24-pq_125_inv_eotf
> + * SUBTEST: plane-XR24-XR24-pq_125_eotf-pq_125_inv_eotf
> + * SUBTEST: plane-XR24-XR24-pq_125_eotf-pq_125_inv_eotf-pq_125_eotf
> + * SUBTEST: plane-XR24-XR24-gamma_2_2
> + * SUBTEST: plane-XR24-XR24-gamma_2_2-gamma_2_2_inv
> + * SUBTEST: plane-XR24-XR24-gamma_2_2-gamma_2_2_inv-gamma_2_2
> + * SUBTEST: plane-XR24-XR24-ctm_3x4_50_desat
> + * SUBTEST: plane-XR24-XR24-ctm_3x4_overdrive
> + * SUBTEST: plane-XR24-XR24-ctm_3x4_oversaturate
> + * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_enc
> + * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_dec
> + * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_enc_dec
> + * SUBTEST: plane-XR24-XR24-ctm_3x4_bt709_dec_enc
> + * SUBTEST: plane-XR24-XR24-multiply_125
> + * SUBTEST: plane-XR24-XR24-multiply_inv_125
> + * SUBTEST: plane-XR24-XR24-3dlut_17_12_rgb
> + * SUBTEST: plane-XR30-XR30-bypass
> + * SUBTEST: plane-XR30-XR30-srgb_eotf
> + * SUBTEST: plane-XR30-XR30-srgb_inv_eotf
> + * SUBTEST: plane-XR30-XR30-srgb_eotf-srgb_inv_eotf
> + * SUBTEST: plane-XR30-XR30-srgb_eotf-srgb_inv_eotf-srgb_eotf
> + * SUBTEST: plane-XR30-XR30-srgb_inv_eotf_lut
> + * SUBTEST: plane-XR30-XR30-srgb_inv_eotf_lut-srgb_eotf_lut
> + * SUBTEST: plane-XR30-XR30-bt2020_inv_oetf
> + * SUBTEST: plane-XR30-XR30-bt2020_oetf
> + * SUBTEST: plane-XR30-XR30-bt2020_inv_oetf-bt2020_oetf
> + * SUBTEST: plane-XR30-XR30-pq_eotf
> + * SUBTEST: plane-XR30-XR30-pq_inv_eotf
> + * SUBTEST: plane-XR30-XR30-pq_eotf-pq_inv_eotf
> + * SUBTEST: plane-XR30-XR30-pq_125_eotf
> + * SUBTEST: plane-XR30-XR30-pq_125_inv_eotf
> + * SUBTEST: plane-XR30-XR30-pq_125_eotf-pq_125_inv_eotf
> + * SUBTEST: plane-XR30-XR30-pq_125_eotf-pq_125_inv_eotf-pq_125_eotf
> + * SUBTEST: plane-XR30-XR30-gamma_2_2
> + * SUBTEST: plane-XR30-XR30-gamma_2_2-gamma_2_2_inv
> + * SUBTEST: plane-XR30-XR30-gamma_2_2-gamma_2_2_inv-gamma_2_2
> + * SUBTEST: plane-XR30-XR30-ctm_3x4_50_desat
> + * SUBTEST: plane-XR30-XR30-ctm_3x4_overdrive
> + * SUBTEST: plane-XR30-XR30-ctm_3x4_oversaturate
> + * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_enc
> + * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_dec
> + * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_enc_dec
> + * SUBTEST: plane-XR30-XR30-ctm_3x4_bt709_dec_enc
> + * SUBTEST: plane-XR30-XR30-multiply_125
> + * SUBTEST: plane-XR30-XR30-multiply_inv_125
> + * SUBTEST: plane-XR30-XR30-3dlut_17_12_rgb
> + * Description: Tests DRM colorop properties on RGB formats
> * Driver requirement: amdgpu
> * Functionality: kms_core
> * Mega feature: General Display Features
> * Test category: functionality test
> *
> - * arg[1]:
> - *
> - * @XR24-XR24: XRGB8888 framebuffer and writeback buffer
> - * @XR30-XR30: XRGB2101010 framebuffer and writeback buffer
> - *
> - * arg[2]:
> - *
> - * @bypass: Bypass Color Pipeline
> - * @srgb_eotf: sRGB EOTF
> - * @srgb_inv_eotf: sRGB Inverse EOTF
> - * @srgb_eotf-srgb_inv_eotf: sRGB EOTF -> sRGB Inverse EOTF
> - * @srgb_eotf-srgb_inv_eotf-srgb_eotf: sRGB EOTF -> sRGB Inverse EOTF -> sRGB EOTF
> - * @srgb_inv_eotf_lut: sRGB Inverse EOTF Custom LUT
> - * @srgb_inv_eotf_lut-srgb_eotf_lut: sRGB Inverse EOTF Custom LUT -> sRGB EOTF Custom LUT
> - * @bt2020_inv_oetf: BT.2020 Inverse OETF
> - * @bt2020_oetf: BT.2020 OETF
> - * @bt2020_inv_oetf-bt2020_oetf: BT.2020 Inverse OETF > BT.2020 OETF
> - * @pq_eotf: PQ EOTF
> - * @pq_inv_eotf: PQ Inverse EOTF
> - * @pq_eotf-pq_inv_eotf: PQ EOTF -> PQ Inverse EOTF
> - * @pq_125_eotf: PQ EOTF for [0.0, 125.0] optical range
> - * @pq_125_inv_eotf: PQ Inverse EOTF for [0.0, 125.0] optical range
> - * @pq_125_eotf-pq_125_inv_eotf: PQ EOTF -> PQ Inverse EOTF with [0.0, 125.0] optical range
> - * @pq_125_eotf-pq_125_inv_eotf-pq_125_eotf: PQ EOTF -> PQ Inverse EOTF -> PQ EOTF with [0.0, 125.0] optical range
> - * @gamma_2_2: Gamma 2.2
> - * @gamma_2_2-gamma_2_2_inv: Gamma 2.2 -> Gamma 2.2 Inverse
> - * @gamma_2_2-gamma_2_2_inv-gamma_2_2: Gamma 2.2 -> Gamma 2.2 Inverse -> Gamma 2.2
> - * @ctm_3x4_50_desat: 3x4 matrix doing a 50% desaturation
> - * @ctm_3x4_overdrive: 3x4 matrix overdring all values by 50%
> - * @ctm_3x4_oversaturate: 3x4 matrix oversaturating values
> - * @ctm_3x4_bt709_enc: BT709 encoding matrix
> - * @ctm_3x4_bt709_dec: BT709 decoding matrix
> - * @ctm_3x4_bt709_enc_dec: BT709 encoding matrix, followed by decoding matrix
> - * @ctm_3x4_bt709_dec_enc: BT709 decoding matrix, followed by encoding matrix
> - * @multiply_125: Multiplier by 125
> - * @multiply_inv_125: Multiplier by inverse of 125
> - * @3dlut_17_12_rgb: 3D LUT with length 17, color depth 12, and traversal order = RGB
> + * SUBTEST: plane-NV12-XR24-fm_bt709_limited
> + * SUBTEST: plane-NV12-XR24-fm_bt709_full
> + * SUBTEST: plane-NV12-XR24-fm_bt601_limited
> + * SUBTEST: plane-NV12-XR24-fm_bt2020_limited
> + * SUBTEST: plane-NV12-XR24-fm_bt709_limited-srgb_eotf
> + * SUBTEST: plane-NV12-XR24-fm_bt601_limited-srgb_eotf
> + * SUBTEST: plane-NV12-XR24-fm_bt709_limited-3dlut_17_12_rgb
> + * SUBTEST: plane-NV12-XR24-fm_bt709_limited-ctm_3x4_50_desat
> + * SUBTEST: plane-NV12-XR24-fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat
> + * SUBTEST: plane-P010-XR30-fm_bt709_limited
> + * SUBTEST: plane-P010-XR30-fm_bt709_full
> + * SUBTEST: plane-P010-XR30-fm_bt601_limited
> + * SUBTEST: plane-P010-XR30-fm_bt2020_limited
> + * SUBTEST: plane-P010-XR30-fm_bt709_limited-srgb_eotf
> + * SUBTEST: plane-P010-XR30-fm_bt601_limited-srgb_eotf
> + * SUBTEST: plane-P010-XR30-fm_bt709_limited-3dlut_17_12_rgb
> + * SUBTEST: plane-P010-XR30-fm_bt709_limited-ctm_3x4_50_desat
> + * SUBTEST: plane-P010-XR30-fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat
> + * Description: Tests DRM colorop properties on YUV formats
> + * Driver requirement: amdgpu
> + * Functionality: kms_core
> + * Mega feature: General Display Features
> + * Test category: functionality test
> *
> */
>
> @@ -371,10 +416,11 @@ static const struct option long_options[] = {
> int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> {
>
> + /* RGB tests - for RGB input formats only */
> struct {
> kms_colorop_t *colorops[MAX_COLOROPS];
> const char *name;
> - } tests[] = {
> + } tests_rgb[] = {
> { { NULL }, "bypass" },
> { { &kms_colorop_srgb_eotf, NULL }, "srgb_eotf" },
> { { &kms_colorop_srgb_inv_eotf, NULL }, "srgb_inv_eotf" },
> @@ -407,15 +453,42 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> { { &kms_colorop_3dlut_17_12_rgb, NULL }, "3dlut_17_12_rgb" },
> };
>
> + /* YUV tests - CSC FF colorop with various encoding/range combinations and optional additional colorops */
> + struct {
> + kms_colorop_t *colorops[MAX_COLOROPS];
> + const char *name;
> + } tests_yuv[] = {
> + /* CSC only tests */
> + { { &kms_colorop_bt709_limited_ycbcr_to_rgb, NULL }, "fm_bt709_limited" },
> + { { &kms_colorop_bt709_full_ycbcr_to_rgb, NULL }, "fm_bt709_full" },
> + { { &kms_colorop_bt601_limited_ycbcr_to_rgb, NULL }, "fm_bt601_limited" },
> + { { &kms_colorop_bt2020_limited_ycbcr_to_rgb, NULL }, "fm_bt2020_limited" },
> + /* CSC + additional colorops */
> + { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, NULL }, "fm_bt709_limited-srgb_eotf" },
> + { { &kms_colorop_bt601_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, NULL }, "fm_bt601_limited-srgb_eotf" },
> + { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_3dlut_17_12_rgb, NULL }, "fm_bt709_limited-3dlut_17_12_rgb" },
> + { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_ctm_3x4_50_desat, NULL }, "fm_bt709_limited-ctm_3x4_50_desat" },
> + { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, &kms_colorop_ctm_3x4_50_desat, NULL }, "fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat" },
> + };
> +
> struct {
> __u32 fourcc_in;
> __u32 fourcc_out;
> const char *name;
> - } formats[] = {
> + } formats_rgb[] = {
> { DRM_FORMAT_XRGB8888, DRM_FORMAT_XRGB8888, "XR24-XR24" },
> { DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB2101010, "XR30-XR30" },
> };
>
> + struct {
> + __u32 fourcc_in;
> + __u32 fourcc_out;
> + const char *name;
> + } formats_yuv[] = {
> + { DRM_FORMAT_NV12, DRM_FORMAT_XRGB8888, "NV12-XR24" },
> + { DRM_FORMAT_P010, DRM_FORMAT_XRGB2101010, "P010-XR30" },
> + };
> +
> igt_display_t display;
> int i, j, ret;
>
> @@ -442,7 +515,8 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> check_plane_colorop_ids(&display);
> }
>
> - for (j = 0; j < ARRAY_SIZE(formats); j++) {
> + /* RGB format tests */
> + for (j = 0; j < ARRAY_SIZE(formats_rgb); j++) {
> igt_output_t *output;
> igt_plane_t *plane;
> igt_fb_t input_fb, output_fb;
> @@ -452,8 +526,8 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> igt_subtest_group() {
> igt_fixture() {
> output = kms_writeback_get_output(&display,
> - formats[j].fourcc_in,
> - formats[j].fourcc_out);
> + formats_rgb[j].fourcc_in,
> + formats_rgb[j].fourcc_out);
> igt_require(output);
>
> if (output->use_override_mode)
> @@ -468,7 +542,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>
> fb_id = igt_create_color_pattern_fb(display.drm_fd,
> mode.hdisplay, mode.vdisplay,
> - formats[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
> + formats_rgb[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
> 0.2, 0.2, 0.2, &input_fb);
> igt_assert(fb_id >= 0);
> igt_plane_set_fb(plane, &input_fb);
> @@ -478,23 +552,24 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
>
> /* create output fb */
> fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
> - formats[j].fourcc_in,
> + formats_rgb[j].fourcc_out,
> igt_fb_mod_to_tiling(0),
> &output_fb);
> igt_require(fb_id > 0);
> }
>
> - for (i = 0; i < ARRAY_SIZE(tests); i++) {
> + /* Run RGB tests */
> + for (i = 0; i < ARRAY_SIZE(tests_rgb); i++) {
> igt_describe("Check color ops on a plane");
> - igt_subtest_f("plane-%s-%s", formats[j].name, tests[i].name)
> + igt_subtest_f("plane-%s-%s", formats_rgb[j].name, tests_rgb[i].name)
> colorop_plane_test(&display,
> output,
> plane,
> &input_fb,
> &output_fb,
> - formats[j].fourcc_in,
> - formats[j].fourcc_out,
> - tests[i].colorops);
> + formats_rgb[j].fourcc_in,
> + formats_rgb[j].fourcc_out,
> + tests_rgb[i].colorops);
> }
>
> igt_fixture() {
> @@ -506,6 +581,85 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> }
> }
>
> + /* YUV format tests */
> + for (j = 0; j < ARRAY_SIZE(formats_yuv); j++) {
> + igt_output_t *output;
> + igt_plane_t *plane;
> + igt_fb_t output_fb;
> + unsigned int fb_id;
> + drmModeModeInfo mode;
> +
> + igt_subtest_group() {
> + igt_fixture() {
> + output = kms_writeback_get_output(&display,
> + formats_yuv[j].fourcc_in,
> + formats_yuv[j].fourcc_out);
> + igt_require(output);
> +
> + if (output->use_override_mode)
> + memcpy(&mode, &output->override_mode, sizeof(mode));
> + else
> + memcpy(&mode, &output->config.default_mode, sizeof(mode));
> +
> + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> + igt_assert(plane);
> + igt_require(igt_plane_has_prop(plane, IGT_PLANE_COLOR_PIPELINE));
> +
> + /* create output fb */
> + fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
> + formats_yuv[j].fourcc_out,
> + igt_fb_mod_to_tiling(0),
> + &output_fb);
> + igt_require(fb_id > 0);
> + }
> +
> + /* Run YUV tests - create input_fb per test with correct encoding/range */
> + for (i = 0; i < ARRAY_SIZE(tests_yuv); i++) {
> + igt_describe("Check YUV CSC colorop");
> + igt_subtest_f("plane-%s-%s", formats_yuv[j].name, tests_yuv[i].name) {
> + igt_fb_t input_fb;
> + enum igt_color_encoding encoding;
> + enum igt_color_range range;
> +
> + /* Extract encoding and range from first colorop (must be CSC FF) */
> + igt_assert(tests_yuv[i].colorops[0]);
> + igt_assert(tests_yuv[i].colorops[0]->type == KMS_COLOROP_FIXED_MATRIX);
> + fixed_matrix_type_to_encoding_range(
> + tests_yuv[i].colorops[0]->fixed_matrix_info.fixed_matrix_type_name,
> + &encoding, &range);
above fixed_matrix_type_to_encoding_range() may need changing according
according to patch 4; otherwise
Reviewed-by: Alex Hung <alex.hung@amd.com>
> +
> + /* Create input fb with matching encoding/range */
> + fb_id = igt_create_color_pattern_fb_yuv(display.drm_fd,
> + mode.hdisplay, mode.vdisplay,
> + formats_yuv[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
> + encoding, range,
> + 0.2, 0.2, 0.2, &input_fb);
> + igt_assert(fb_id >= 0);
> +
> + if (data.dump_check)
> + igt_dump_fb(&display, &input_fb, ".", "input");
> +
> + colorop_plane_test(&display,
> + output,
> + plane,
> + &input_fb,
> + &output_fb,
> + formats_yuv[j].fourcc_in,
> + formats_yuv[j].fourcc_out,
> + tests_yuv[i].colorops);
> +
> + igt_remove_fb(display.drm_fd, &input_fb);
> + }
> + }
> +
> + igt_fixture() {
> + igt_detach_crtc(&display, output);
> + igt_remove_fb(display.drm_fd, &output_fb);
> +
> + }
> + }
> + }
> +
> igt_fixture() {
> igt_display_fini(&display);
> drm_close_driver(display.drm_fd);
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 10/12] tests/kms_colorop: Keep CRTC active between YUV tests with temp FB
2026-06-23 17:57 ` [PATCH v3 10/12] tests/kms_colorop: Keep CRTC active between YUV tests with temp FB Harry Wentland
@ 2026-07-25 7:19 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:19 UTC (permalink / raw)
To: Harry Wentland, igt-dev
This can be squashed with the previous patch.
On 6/23/26 11:57, Harry Wentland wrote:
> Move output_fb creation to fixture and introduce temp_fb to keep the
> plane/CRTC active between YUV subtests. This prevents the "framebuffer
> without CRTC" error that occurred when removing input_fb caused IGT to
> disable the CRTC, leaving the writeback connector detached but with FB
> still set.
>
> Each YUV test now:
> - Creates input_fb with specific encoding/range
> - Runs test
> - Switches plane to temp_fb (commits to hardware)
> - Removes input_fb safely
>
> Assisted-by: Claude:claude-opus-4-6
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> tests/kms_colorop.c | 21 +++++++++++++++++----
> 1 file changed, 17 insertions(+), 4 deletions(-)
>
> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
> index 1d30d2538574..4e8b2563ea4e 100644
> --- a/tests/kms_colorop.c
> +++ b/tests/kms_colorop.c
> @@ -585,7 +585,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> for (j = 0; j < ARRAY_SIZE(formats_yuv); j++) {
> igt_output_t *output;
> igt_plane_t *plane;
> - igt_fb_t output_fb;
> + igt_fb_t temp_fb, output_fb;
> unsigned int fb_id;
> drmModeModeInfo mode;
>
> @@ -605,7 +605,14 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> igt_assert(plane);
> igt_require(igt_plane_has_prop(plane, IGT_PLANE_COLOR_PIPELINE));
>
> - /* create output fb */
> + /* Create temp fb to keep plane active between tests */
> + fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
> + formats_yuv[j].fourcc_in,
> + igt_fb_mod_to_tiling(0),
> + &temp_fb);
> + igt_require(fb_id > 0);
> +
> + /* Create output fb shared across tests */
> fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
> formats_yuv[j].fourcc_out,
> igt_fb_mod_to_tiling(0),
> @@ -613,7 +620,7 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> igt_require(fb_id > 0);
> }
>
> - /* Run YUV tests - create input_fb per test with correct encoding/range */
> + /* Run YUV tests - create input_fb per test */
> for (i = 0; i < ARRAY_SIZE(tests_yuv); i++) {
> igt_describe("Check YUV CSC colorop");
> igt_subtest_f("plane-%s-%s", formats_yuv[j].name, tests_yuv[i].name) {
> @@ -648,14 +655,20 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> formats_yuv[j].fourcc_out,
> tests_yuv[i].colorops);
>
> + /* Switch plane back to temp_fb to keep CRTC active */
> + igt_plane_set_fb(plane, &temp_fb);
> + igt_display_commit_atomic(&display,
> + DRM_MODE_ATOMIC_ALLOW_MODESET,
> + NULL);
> +
> igt_remove_fb(display.drm_fd, &input_fb);
> }
> }
>
> igt_fixture() {
> igt_detach_crtc(&display, output);
> + igt_remove_fb(display.drm_fd, &temp_fb);
> igt_remove_fb(display.drm_fd, &output_fb);
> -
> }
> }
> }
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 12/12] tests/kms_colorop: Increase VKMS bracket to 3 up
2026-06-23 17:57 ` [PATCH v3 12/12] tests/kms_colorop: Increase VKMS bracket to 3 up Harry Wentland
@ 2026-07-25 7:24 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:24 UTC (permalink / raw)
To: Harry Wentland, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 6/23/26 11:57, Harry Wentland wrote:
> The delta is a bit wider for tests of the CSC with other colorops.
>
> Increase it to 3, which is still pretty tight.
>
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> tests/kms_colorop.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
> index a2784243c0f5..393c66de51ed 100644
> --- a/tests/kms_colorop.c
> +++ b/tests/kms_colorop.c
> @@ -234,7 +234,7 @@ static bool compare_with_bracket(igt_fb_t *in, igt_fb_t *out)
> {
> /* Each driver is expected to have its own bracket, i.e., by trial and error */
> if (is_vkms_device(in->fd))
> - return igt_cmp_fb_pixels(in, out, 1, 1);
> + return igt_cmp_fb_pixels(in, out, 3, 1);
>
> if (is_amdgpu_device(in->fd))
> return igt_cmp_fb_pixels(in, out, 13, 13);
^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH v3 11/12] tests/kms_colorop: Add bypass transition tests
2026-06-23 17:57 ` [PATCH v3 11/12] tests/kms_colorop: Add bypass transition tests Harry Wentland
@ 2026-07-25 7:25 ` Alex Hung
0 siblings, 0 replies; 28+ messages in thread
From: Alex Hung @ 2026-07-25 7:25 UTC (permalink / raw)
To: Harry Wentland, igt-dev
Reviewed-by: Alex Hung <alex.hung@amd.com>
On 6/23/26 11:57, Harry Wentland wrote:
> Add tests to verify color pipeline correctly transitions to bypass state
> after being configured with various colorops. This ensures no stale state
> remains when switching from an active configuration back to bypass.
>
> This also changes existing test behavior: tests no longer commit bypass
> state at the end, leaving the pipeline in its configured state between
> subtests.
>
> Test approach:
> - Configure pipeline with specific colorops
> - Verify configured output is correct
> - Transition to bypass
> - Verify bypass output matches input (identity transform)
>
> Test coverage:
> * Enumerated 1D curve (srgb_eotf)
> * Custom 1D LUT (srgb_inv_eotf_lut)
> * CTM (ctm_3x4_50_desat)
> * 3D LUT (3dlut_17_12_rgb)
> * Multi-stage (srgb_eotf + ctm_3x4_50_desat)
>
> Assisted-by: Claude:claude-sonnet-4-5
> Signed-off-by: Harry Wentland <harry.wentland@amd.com>
> ---
> tests/kms_colorop.c | 127 +++++++++++++++++++++++++++++++++++++++-----
> 1 file changed, 115 insertions(+), 12 deletions(-)
>
> diff --git a/tests/kms_colorop.c b/tests/kms_colorop.c
> index 4e8b2563ea4e..a2784243c0f5 100644
> --- a/tests/kms_colorop.c
> +++ b/tests/kms_colorop.c
> @@ -80,6 +80,16 @@
> * SUBTEST: plane-XR30-XR30-multiply_125
> * SUBTEST: plane-XR30-XR30-multiply_inv_125
> * SUBTEST: plane-XR30-XR30-3dlut_17_12_rgb
> + * SUBTEST: plane-bypass-XR24-XR24-srgb_eotf
> + * SUBTEST: plane-bypass-XR24-XR24-srgb_inv_eotf_lut
> + * SUBTEST: plane-bypass-XR24-XR24-ctm_3x4_50_desat
> + * SUBTEST: plane-bypass-XR24-XR24-3dlut_17_12_rgb
> + * SUBTEST: plane-bypass-XR24-XR24-srgb_eotf-ctm_3x4_50_desat
> + * SUBTEST: plane-bypass-XR30-XR30-srgb_eotf
> + * SUBTEST: plane-bypass-XR30-XR30-srgb_inv_eotf_lut
> + * SUBTEST: plane-bypass-XR30-XR30-ctm_3x4_50_desat
> + * SUBTEST: plane-bypass-XR30-XR30-3dlut_17_12_rgb
> + * SUBTEST: plane-bypass-XR30-XR30-srgb_eotf-ctm_3x4_50_desat
> * Description: Tests DRM colorop properties on RGB formats
> * Driver requirement: amdgpu
> * Functionality: kms_core
> @@ -273,7 +283,8 @@ static void colorop_plane_test(igt_display_t *display,
> igt_fb_t *output_fb,
> __u32 fourcc_in,
> __u32 fourcc_out,
> - kms_colorop_t *colorops[])
> + kms_colorop_t *colorops[],
> + bool verify_bypass)
> {
> igt_colorop_t *color_pipeline = NULL;
> igt_fb_t sw_transform_fb;
> @@ -337,17 +348,26 @@ static void colorop_plane_test(igt_display_t *display,
> /* compare sw transformed and KMS transformed FBs */
> igt_assert(compare_with_bracket(&sw_transform_fb, output_fb));
>
> - /* reset color pipeline*/
> - set_color_pipeline_bypass(plane);
> + /* Test bypass transition if requested */
> + if (verify_bypass) {
> + /* reset color pipeline*/
> + set_color_pipeline_bypass(plane);
>
> - /* Commit */
> - igt_plane_set_fb(plane, input_fb);
> - igt_output_set_writeback_fb(output, output_fb);
> + /* Commit */
> + igt_plane_set_fb(plane, input_fb);
> + igt_output_set_writeback_fb(output, output_fb);
>
> - igt_display_commit_atomic(output->display,
> - DRM_MODE_ATOMIC_ALLOW_MODESET,
> - NULL);
> - igt_get_and_wait_out_fence(output);
> + igt_display_commit_atomic(output->display,
> + DRM_MODE_ATOMIC_ALLOW_MODESET,
> + NULL);
> + igt_get_and_wait_out_fence(output);
> +
> + if (data.dump_check)
> + igt_dump_fb(display, output_fb, ".", "bypass_output");
> +
> + /* For RGB bypass, output should match input */
> + igt_assert(compare_with_bracket(input_fb, output_fb));
> + }
> }
>
> static void check_plane_colorop_ids(igt_display_t *display)
> @@ -471,6 +491,20 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> { { &kms_colorop_bt709_limited_ycbcr_to_rgb, &kms_colorop_srgb_eotf, &kms_colorop_ctm_3x4_50_desat, NULL }, "fm_bt709_limited-srgb_eotf-ctm_3x4_50_desat" },
> };
>
> + /* Bypass transition tests - test config -> bypass -> verify identity (RGB only) */
> + struct {
> + kms_colorop_t *colorops[MAX_COLOROPS];
> + const char *name;
> + } tests_bypass_transitions_rgb[] = {
> + /* One per colorop type */
> + { { &kms_colorop_srgb_eotf, NULL }, "srgb_eotf" },
> + { { &kms_colorop_srgb_inv_eotf_lut, NULL }, "srgb_inv_eotf_lut" },
> + { { &kms_colorop_ctm_3x4_50_desat, NULL }, "ctm_3x4_50_desat" },
> + { { &kms_colorop_3dlut_17_12_rgb, NULL }, "3dlut_17_12_rgb" },
> + /* Multi-stage */
> + { { &kms_colorop_srgb_eotf, &kms_colorop_ctm_3x4_50_desat, NULL }, "srgb_eotf-ctm_3x4_50_desat" },
> + };
> +
> struct {
> __u32 fourcc_in;
> __u32 fourcc_out;
> @@ -569,7 +603,75 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> &output_fb,
> formats_rgb[j].fourcc_in,
> formats_rgb[j].fourcc_out,
> - tests_rgb[i].colorops);
> + tests_rgb[i].colorops,
> + false);
> + }
> +
> + igt_fixture() {
> + igt_detach_crtc(&display, output);
> + igt_remove_fb(display.drm_fd, &input_fb);
> + igt_remove_fb(display.drm_fd, &output_fb);
> +
> + }
> + }
> + }
> +
> + /* Bypass transition tests - RGB formats */
> + for (j = 0; j < ARRAY_SIZE(formats_rgb); j++) {
> + igt_output_t *output;
> + igt_plane_t *plane;
> + igt_fb_t input_fb, output_fb;
> + unsigned int fb_id;
> + drmModeModeInfo mode;
> +
> + igt_subtest_group() {
> + igt_fixture() {
> + output = kms_writeback_get_output(&display,
> + formats_rgb[j].fourcc_in,
> + formats_rgb[j].fourcc_out);
> + igt_require(output);
> +
> + if (output->use_override_mode)
> + memcpy(&mode, &output->override_mode, sizeof(mode));
> + else
> + memcpy(&mode, &output->config.default_mode, sizeof(mode));
> +
> + /* create input fb */
> + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> + igt_assert(plane);
> + igt_require(igt_plane_has_prop(plane, IGT_PLANE_COLOR_PIPELINE));
> +
> + fb_id = igt_create_color_pattern_fb(display.drm_fd,
> + mode.hdisplay, mode.vdisplay,
> + formats_rgb[j].fourcc_in, DRM_FORMAT_MOD_LINEAR,
> + 0.2, 0.2, 0.2, &input_fb);
> + igt_assert(fb_id >= 0);
> + igt_plane_set_fb(plane, &input_fb);
> +
> + if (data.dump_check)
> + igt_dump_fb(&display, &input_fb, ".", "input");
> +
> + /* create output fb */
> + fb_id = igt_create_fb(display.drm_fd, mode.hdisplay, mode.vdisplay,
> + formats_rgb[j].fourcc_out,
> + igt_fb_mod_to_tiling(0),
> + &output_fb);
> + igt_require(fb_id > 0);
> + }
> +
> + /* Run bypass transition tests */
> + for (i = 0; i < ARRAY_SIZE(tests_bypass_transitions_rgb); i++) {
> + igt_describe("Test color pipeline to bypass transition");
> + igt_subtest_f("plane-bypass-%s-%s", formats_rgb[j].name, tests_bypass_transitions_rgb[i].name)
> + colorop_plane_test(&display,
> + output,
> + plane,
> + &input_fb,
> + &output_fb,
> + formats_rgb[j].fourcc_in,
> + formats_rgb[j].fourcc_out,
> + tests_bypass_transitions_rgb[i].colorops,
> + true);
> }
>
> igt_fixture() {
> @@ -653,7 +755,8 @@ int igt_main_args("d", long_options, help_str, opt_handler, NULL)
> &output_fb,
> formats_yuv[j].fourcc_in,
> formats_yuv[j].fourcc_out,
> - tests_yuv[i].colorops);
> + tests_yuv[i].colorops,
> + false);
>
> /* Switch plane back to temp_fb to keep CRTC active */
> igt_plane_set_fb(plane, &temp_fb);
^ permalink raw reply [flat|nested] 28+ messages in thread
end of thread, other threads:[~2026-07-25 7:25 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-23 17:57 [PATCH v3 00/12] YUV Conversion Colorop tests Harry Wentland
2026-06-23 17:57 ` [PATCH v3 01/12] include/drm-uapi: Add DRM_COLOROP_FIXED_MATRIX Harry Wentland
2026-07-25 6:52 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 02/12] lib/igt_kms: Add IGT_COLOROP_FIXED_MATRIX property Harry Wentland
2026-07-25 6:56 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 03/12] tests/kms_colorop_helper: Add Fixed Matrix colorop infrastructure Harry Wentland
2026-07-25 6:56 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 04/12] tests/kms_colorop_helper: Add helpers to get encoding/range from FIXED_MATRIX name Harry Wentland
2026-07-25 7:04 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 05/12] lib/igt_fb: Add YUV color pattern framebuffer support Harry Wentland
2026-07-25 7:05 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 06/12] lib/igt_color_encoding: Add XRGB2101010 format support Harry Wentland
2026-07-25 7:05 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 07/12] lib/igt_color: Add YUV pixel reading support Harry Wentland
2026-07-25 7:10 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 08/12] lib/igt_color: Refactor transform_pixels for input/output FBs and CSC Harry Wentland
2026-06-23 17:57 ` [PATCH v3 09/12] tests/kms_colorop: Add FIXED_MATRIX colorop tests Harry Wentland
2026-07-25 7:15 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 10/12] tests/kms_colorop: Keep CRTC active between YUV tests with temp FB Harry Wentland
2026-07-25 7:19 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 11/12] tests/kms_colorop: Add bypass transition tests Harry Wentland
2026-07-25 7:25 ` Alex Hung
2026-06-23 17:57 ` [PATCH v3 12/12] tests/kms_colorop: Increase VKMS bracket to 3 up Harry Wentland
2026-07-25 7:24 ` Alex Hung
2026-06-23 18:55 ` ✓ Xe.CI.BAT: success for YUV Conversion Colorop tests (rev2) Patchwork
2026-06-23 19:19 ` ✓ i915.CI.BAT: " Patchwork
2026-06-24 1:27 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-06-24 5:44 ` ✗ i915.CI.Full: " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.