* [igt-dev] [PATCH v2 1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region
@ 2023-07-05 8:01 Alan Liu
2023-07-05 8:01 ` [igt-dev] [PATCH v2 2/2] tests/amdgpu/amd_checksum_region: Add test " Alan Liu
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Alan Liu @ 2023-07-05 8:01 UTC (permalink / raw)
To: igt-dev; +Cc: Alan Liu, Lili.Gong
Add struct drm_checksum_region and struct drm_checksum_crc as the
userspace data for using checksum_region feature.
Signed-off-by: Alan Liu <HaoPing.Liu@amd.com>
---
include/drm-uapi/drm_mode.h | 42 +++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/include/drm-uapi/drm_mode.h b/include/drm-uapi/drm_mode.h
index e4a2570a6..dec073921 100644
--- a/include/drm-uapi/drm_mode.h
+++ b/include/drm-uapi/drm_mode.h
@@ -1209,6 +1209,48 @@ struct drm_mode_rect {
__s32 y2;
};
+/**
+ * struct drm_checksum_region - The enablement and region of checksum_region
+ * @x_start: Horizontal starting coordinate of the region.
+ * @y_start: Vertical starting coordinate of the region.
+ * @x_end: Horizontal ending coordinate of the region.
+ * @y_end: Vertical ending coordinate of the region.
+ * @checksum_region_enable: To enable or disable checksum_region.
+ *
+ * Userspace uses this structure to configure the region and enablement for
+ * checksum_region. Userspace should not submit a region out of the displayable
+ * region because there is nothing to display and need protection.
+ */
+struct drm_checksum_region {
+ __u32 x_start;
+ __u32 y_start;
+ __u32 x_end;
+ __u32 y_end;
+ __u8 checksum_region_enable;
+ __u8 pad[7];
+};
+
+/**
+ * struct drm_checksum_crc - The CRC value of the corresponding checksum region.
+ * @crc_r: CRC value of red color.
+ * @crc_g: CRC value of green color.
+ * @crc_b: CRC value of blue color.
+ * @frame_count: a referenced frame count to indicate which frame the CRC values
+ * are generated at.
+ *
+ * Userspace uses this structure to retrieve the CRC values of the current
+ * checksum region. @frame_count will be reset once a new region is updated or
+ * it reaches a maximum value. Currently these CRC values are designed to
+ * be validated with pre-saved CRC values, so userspace doesn't need to concern
+ * about the algorithm used to compute the CRC.
+ */
+struct drm_checksum_crc {
+ __u32 crc_r;
+ __u32 crc_g;
+ __u32 crc_b;
+ __u32 frame_count;
+};
+
#if defined(__cplusplus)
}
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [igt-dev] [PATCH v2 2/2] tests/amdgpu/amd_checksum_region: Add test for checksum_region
2023-07-05 8:01 [igt-dev] [PATCH v2 1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region Alan Liu
@ 2023-07-05 8:01 ` Alan Liu
2023-07-05 8:40 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm-uapi/drm_mode: sync with latest uAPI changes " Patchwork
2023-07-05 9:59 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Alan Liu @ 2023-07-05 8:01 UTC (permalink / raw)
To: igt-dev; +Cc: Alan Liu, Lili.Gong
Introduce IGT of checksum_region. Checksum_region allows userspace to
set a region on display and get the CRC data accordingly via CRTC
properties: CHECKSUM_REGION and CEHCKSUM_CRC.
This IGT validates checksum region feature by testing if we can set
we can set regions successfully and check if the corresponding CRC
values are as expected.
Signed-off-by: Alan Liu <HaoPing.Liu@amd.com>
---
lib/igt_kms.c | 2 +
lib/igt_kms.h | 2 +
tests/amdgpu/amd_checksum_region.c | 623 +++++++++++++++++++++++++++++
tests/amdgpu/meson.build | 1 +
4 files changed, 628 insertions(+)
create mode 100644 tests/amdgpu/amd_checksum_region.c
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index f2b0eed57..804a71e9d 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -627,6 +627,8 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_CHECKSUM_REGION] = "CHECKSUM_REGION",
+ [IGT_CRTC_CHECKSUM_CRC] = "CHECKSUM_CRC",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 1b6988c17..80a5817e4 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -139,6 +139,8 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_CHECKSUM_REGION,
+ IGT_CRTC_CHECKSUM_CRC,
IGT_NUM_CRTC_PROPS
};
diff --git a/tests/amdgpu/amd_checksum_region.c b/tests/amdgpu/amd_checksum_region.c
new file mode 100644
index 000000000..fbdd06571
--- /dev/null
+++ b/tests/amdgpu/amd_checksum_region.c
@@ -0,0 +1,623 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright 2023 Advanced Micro Devices, Inc.
+ */
+
+#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
+#include <unistd.h>
+#include "igt.h"
+#include "igt_sysfs.h"
+
+IGT_TEST_DESCRIPTION("This IGT validates checksum region feature by testing if"
+ " we can set regions successfully and check if the corresponding CRC"
+ " values are as expected.");
+
+typedef uint64_t u64;
+typedef uint32_t u32;
+typedef uint8_t u8;
+
+#define CRTC_SET_NUM 2
+int crtc_set_num;
+
+enum roi_type {
+ ROI_TYPE_FIRST, // 100, 100, 130, 130
+ ROI_TYPE_BOTTOM, // 1060, 100, 1090, 130
+ ROI_TYPE_RIGHT, // 100, 130, 130, 160
+ ROI_TYPE_RIGHT_BOTTOM, // 1060, 130, 1090, 160
+ ROI_TYPE_NUM,
+};
+
+typedef struct drm_checksum_region roi_t;
+typedef struct drm_checksum_crc crc_t;
+
+struct data_basic {
+ struct {
+ igt_fb_t fb;
+ roi_t roi[ROI_TYPE_NUM];
+ } input;
+ struct {
+ roi_t *roi[ROI_TYPE_NUM];
+ crc_t *crc[ROI_TYPE_NUM];
+ crc_t *crc_hold[ROI_TYPE_NUM];
+ } output;
+};
+
+struct data_switching {
+ struct {
+ igt_fb_t fb[2];
+ roi_t roi_window;
+ roi_t roi_full_screen;
+ } input;
+ struct {
+ crc_t *crc_window[2];
+ crc_t *crc_full_screen[2];
+ } output;
+};
+
+typedef struct {
+ u8 crtc_id;
+ int connector_type;
+ igt_plane_t *primary;
+ igt_output_t *output;
+ igt_pipe_t *pipe;
+ igt_pipe_crc_t *pipe_crc;
+ enum pipe pipe_id;
+ void *data;
+} set_t;
+
+/* global data */
+typedef struct data {
+ struct igt_fb pattern_fb_info;
+ int fd;
+ igt_display_t display;
+ bool use_virtual_connector;
+ set_t set[CRTC_SET_NUM];
+} data_t;
+
+/* Use mode 1920x1080 */
+static drmModeModeInfo _mode = {
+ 148500,
+ 1920, 2008, 2052, 2200, 0,
+ 1080, 1084, 1089, 1125, 0,
+ 60, DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PIC_AR_16_9,
+ 0x40, "1920x1080"
+};
+
+static void wait_vblanks(int fd, int n_vblanks)
+{
+ drmVBlank vblank;
+
+ if (!n_vblanks)
+ return;
+
+ vblank.request.type = DRM_VBLANK_RELATIVE;
+ vblank.request.sequence = n_vblanks;
+ vblank.request.signal = 0;
+ drmWaitVBlank(fd, &vblank);
+}
+
+static void draw_color_roi(igt_fb_t *fb, roi_t *roi,
+ int r, int g, int b)
+{
+ cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
+
+ igt_paint_color(cr,
+ roi->x_start, roi->y_start, roi->x_end, roi->y_end,
+ r, g, b);
+ igt_put_cairo_ctx(cr);
+}
+
+/* color pattern for DP */
+static void draw_color_pattern_DP(igt_fb_t *fb)
+{
+ cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
+
+ igt_paint_color(cr, 0, 0, fb->width/2, fb->height, 100, 255, 0);
+ igt_paint_color(cr, fb->width/2, 0, fb->width, fb->height, 0, 133, 204);
+ igt_put_cairo_ctx(cr);
+}
+
+/* color pattern for HDMI */
+static void draw_color_pattern_HDMI(igt_fb_t *fb)
+{
+ cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
+
+ igt_paint_color(cr, 0, 0, fb->width/2, fb->height, 0, 200, 223);
+ igt_paint_color(cr, fb->width/2, 0, fb->width, fb->height, 223, 200, 1);
+ igt_put_cairo_ctx(cr);
+}
+
+/* prepare data and set */
+static void test_init(data_t *data)
+{
+ igt_display_t *display = &data->display;
+ set_t *set;
+ drmModeConnector *conn;
+ drmModeModeInfo *mode = &_mode;
+
+ igt_info("board has %d outputs\n", display->n_outputs);
+
+ for (int i = 0; i < display->n_outputs; i++) {
+ conn = display->outputs[i].config.connector;
+ if (conn->connection != DRM_MODE_CONNECTED)
+ continue;
+
+ if (conn->connector_type != DRM_MODE_CONNECTOR_HDMIA &&
+ conn->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
+ continue;
+
+ set = &data->set[crtc_set_num];
+ set->connector_type = conn->connector_type;
+ set->crtc_id = i;
+ set->pipe_id = i;
+ set->pipe = &display->pipes[i];
+ set->primary = igt_pipe_get_plane_type(set->pipe, DRM_PLANE_TYPE_PRIMARY);
+ set->output = &display->outputs[i];
+
+ igt_output_set_pipe(set->output, set->pipe_id);
+ igt_output_override_mode(set->output, mode);
+
+ crtc_set_num += 1;
+ if (crtc_set_num == CRTC_SET_NUM)
+ break;
+ }
+
+ igt_info("crtc_set_num = %d\n", crtc_set_num);
+}
+
+static void print_crc(crc_t *crc)
+{
+ igt_info("crc: 0x%04x 0x%04x 0x%04x, %04d\n",
+ crc->crc_r, crc->crc_g, crc->crc_b, crc->frame_count);
+}
+
+static bool roi_compare(roi_t *a, roi_t *b)
+{
+ return (a->x_start == b->x_start &&
+ a->y_start == b->y_start &&
+ a->x_end == b->x_end &&
+ a->y_end == b->y_end);
+}
+
+static bool crc_compare(crc_t *a, crc_t *b)
+{
+ return (a->crc_r == b->crc_r &&
+ a->crc_g == b->crc_g &&
+ a->crc_b == b->crc_b);
+}
+
+static void
+disable_checksum_region_from_property(data_t *data)
+{
+ set_t *set;
+ roi_t roi = {0};
+
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ igt_require(igt_pipe_obj_has_prop(set->pipe, IGT_CRTC_CHECKSUM_REGION));
+ igt_pipe_obj_replace_prop_blob(set->pipe, IGT_CRTC_CHECKSUM_REGION, &roi, sizeof(roi));
+ }
+}
+
+static void
+set_roi_from_property(igt_pipe_t *pipe, roi_t *roi)
+{
+ igt_require(igt_pipe_obj_has_prop(pipe, IGT_CRTC_CHECKSUM_REGION));
+ igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_CHECKSUM_REGION, roi, sizeof(roi_t));
+}
+
+static void
+set_roi(data_t *data, set_t *set, roi_t *roi)
+{
+ set_roi_from_property(set->pipe, roi);
+ igt_info("Set roi, x_start:%d, y_start:%d, x_end:%d, y_end: %d",
+ roi->x_start, roi->y_start, roi->x_end, roi->y_end);
+ igt_info("\t");
+}
+
+static roi_t *
+get_roi_from_property(int fd, igt_pipe_t *pipe)
+{
+ drmModePropertyBlobPtr blob;
+ u64 blob_id = igt_pipe_obj_get_prop(pipe, IGT_CRTC_CHECKSUM_REGION);
+
+ igt_require(igt_pipe_obj_has_prop(pipe, IGT_CRTC_CHECKSUM_REGION));
+
+ blob = drmModeGetPropertyBlob(fd, blob_id);
+ if (!blob)
+ return NULL;
+
+ return (roi_t *) blob->data;
+}
+
+static void
+get_roi(data_t *data, set_t *set, roi_t **roi)
+{
+ *roi = get_roi_from_property(data->display.drm_fd, set->pipe);
+ if (*roi) {
+ igt_info("get ROI from properties: ");
+ igt_info("0x%04x 0x%04x 0x%04x, 0x%04x, %d",
+ (*roi)->x_start, (*roi)->y_start,
+ (*roi)->x_end, (*roi)->y_end,
+ (*roi)->checksum_region_enable);
+ }
+ igt_info("\t");
+}
+
+static crc_t *
+get_crc_from_property(int fd, igt_pipe_t *pipe)
+{
+ drmModePropertyBlobPtr blob;
+ u64 blob_id = igt_pipe_obj_get_prop(pipe, IGT_CRTC_CHECKSUM_CRC);
+
+ igt_require(igt_pipe_obj_has_prop(pipe, IGT_CRTC_CHECKSUM_CRC));
+
+ blob = drmModeGetPropertyBlob(fd, blob_id);
+ if (!blob)
+ return NULL;
+
+ return (crc_t *) blob->data;
+}
+
+static void
+get_crc(data_t *data, set_t *set, crc_t **crc)
+{
+ *crc = get_crc_from_property(data->display.drm_fd, set->pipe);
+ if (*crc) {
+ igt_info("get CRC from properties: ");
+ igt_info("0x%04x 0x%04x 0x%04x, %04d",
+ (*crc)->crc_r, (*crc)->crc_g, (*crc)->crc_b, (*crc)->frame_count);
+ }
+ igt_info("\t");
+}
+
+static void
+test_basic_init(data_t *data, struct data_basic *_basic)
+{
+ drmModeModeInfo *mode = &_mode;
+ set_t *set;
+ struct data_basic *basic;
+
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ basic = &_basic[i];
+
+ /* init data */
+ basic->input.roi[ROI_TYPE_FIRST].x_start = 100;
+ basic->input.roi[ROI_TYPE_FIRST].y_start = 100;
+ basic->input.roi[ROI_TYPE_FIRST].x_end = 130;
+ basic->input.roi[ROI_TYPE_FIRST].y_end = 130;
+ basic->input.roi[ROI_TYPE_FIRST].checksum_region_enable = 1;
+
+ basic->input.roi[ROI_TYPE_RIGHT].x_start = 1060;
+ basic->input.roi[ROI_TYPE_RIGHT].y_start = 100;
+ basic->input.roi[ROI_TYPE_RIGHT].x_end = 1100;
+ basic->input.roi[ROI_TYPE_RIGHT].y_end = 130;
+ basic->input.roi[ROI_TYPE_RIGHT].checksum_region_enable = 1;
+
+ basic->input.roi[ROI_TYPE_BOTTOM].x_start = 100;
+ basic->input.roi[ROI_TYPE_BOTTOM].y_start = 130;
+ basic->input.roi[ROI_TYPE_BOTTOM].x_end = 130;
+ basic->input.roi[ROI_TYPE_BOTTOM].y_end = 160;
+ basic->input.roi[ROI_TYPE_BOTTOM].checksum_region_enable = 1;
+
+ basic->input.roi[ROI_TYPE_RIGHT_BOTTOM].x_start = 1060;
+ basic->input.roi[ROI_TYPE_RIGHT_BOTTOM].y_start = 130;
+ basic->input.roi[ROI_TYPE_RIGHT_BOTTOM].x_end = 1100;
+ basic->input.roi[ROI_TYPE_RIGHT_BOTTOM].y_end = 160;
+ basic->input.roi[ROI_TYPE_RIGHT_BOTTOM].checksum_region_enable = 1;
+
+ /* paint fb */
+ igt_create_fb(data->fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, 0, &basic->input.fb);
+
+ if (set->connector_type == DRM_MODE_CONNECTOR_DisplayPort)
+ draw_color_pattern_DP(&basic->input.fb);
+ else
+ draw_color_pattern_HDMI(&basic->input.fb);
+
+ igt_plane_set_fb(set->primary, &basic->input.fb);
+ }
+}
+
+static void test_basic_validate(struct data_basic *_basic)
+{
+ struct data_basic *basic;
+ roi_t *roi, *roi_return;
+ crc_t **crc, **crc_hold;
+
+ igt_info("************\n");
+ for (int i = 0; i < crtc_set_num; i++) {
+ basic = &_basic[i];
+
+ for (int type = 0; type < ROI_TYPE_NUM; type++) {
+ roi = &basic->input.roi[type];
+ roi_return = basic->output.roi[type];
+ if (!roi_compare(roi, roi_return))
+ igt_assert_f(false, "ROI values are not as expected\n");
+ }
+
+ crc = basic->output.crc;
+ if (!crc_compare(crc[ROI_TYPE_FIRST], crc[ROI_TYPE_BOTTOM]) &&
+ !crc_compare(crc[ROI_TYPE_RIGHT], crc[ROI_TYPE_RIGHT_BOTTOM]))
+ igt_assert_f(false, "CRC values are not as expected\n");
+
+ if (crc[ROI_TYPE_FIRST]->frame_count != 2 ||
+ crc[ROI_TYPE_BOTTOM]->frame_count != 2 ||
+ crc[ROI_TYPE_RIGHT]->frame_count != 2 ||
+ crc[ROI_TYPE_RIGHT_BOTTOM]->frame_count != 2)
+ igt_assert_f(false, "CRC frame_count are not as expected\n");
+
+ crc_hold = basic->output.crc_hold;
+ if (!crc_compare(crc[ROI_TYPE_FIRST], crc_hold[ROI_TYPE_FIRST]) &&
+ !crc_compare(crc[ROI_TYPE_BOTTOM], crc_hold[ROI_TYPE_BOTTOM]) &&
+ !crc_compare(crc[ROI_TYPE_RIGHT], crc_hold[ROI_TYPE_RIGHT]) &&
+ !crc_compare(crc[ROI_TYPE_RIGHT_BOTTOM], crc_hold[ROI_TYPE_RIGHT_BOTTOM]))
+ igt_assert_f(false, "CRC values are not as expected after 5 seconds\n");
+
+ }
+
+ igt_info("Test checksum_region basic passed\n");
+}
+
+static void
+test_basic_case(data_t *data, enum roi_type type, struct data_basic *basic)
+{
+ set_t *set;
+ roi_t *roi;
+ roi_t **roi_return;
+ crc_t **crc;
+
+ igt_info("\n===== start to test a crc window =====\n");
+
+ /* set roi for each CRTC */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ roi = &basic[i].input.roi[type];
+ set_roi(data, set, roi);
+ }
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); // commit new ROI
+ igt_info("\n");
+
+
+ /* get the crc for check */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ crc = &basic[i].output.crc[type];
+ get_crc(data, set, crc);
+ }
+ igt_info("\n");
+
+
+ /* sleep and get crc for check again*/
+ sleep(3);
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ crc = &basic[i].output.crc_hold[type];
+ get_crc(data, set, crc);
+ }
+ igt_info("\n");
+
+
+ /* get roi for check */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ roi_return = &basic[i].output.roi[type];
+ get_roi(data, set, roi_return);
+ }
+ igt_info("\n");
+}
+
+static void test_fini(data_t *data)
+{
+ disable_checksum_region_from_property(data);
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+}
+
+static void
+test_checksum_region_basic(data_t *data)
+{
+ struct data_basic d_basic[CRTC_SET_NUM] = {0};
+
+ /* test basic init */
+ test_basic_init(data, d_basic);
+
+ test_basic_case(data, ROI_TYPE_FIRST, d_basic);
+ test_basic_case(data, ROI_TYPE_RIGHT, d_basic);
+ test_basic_case(data, ROI_TYPE_BOTTOM, d_basic);
+ test_basic_case(data, ROI_TYPE_RIGHT_BOTTOM, d_basic);
+
+ test_basic_validate(d_basic);
+
+ test_fini(data);
+}
+
+static void
+test_switching_validate(struct data_switching *switching)
+{
+ crc_t *crc_a, *crc_b;
+
+ for (int i = 0; i < crtc_set_num; i++) {
+ crc_a = switching[i].output.crc_window[0];
+ crc_b = switching[i].output.crc_window[1];
+
+ print_crc(crc_a);
+ print_crc(crc_b);
+
+ if (!crc_compare(crc_a, crc_b))
+ igt_assert_f(false, "Window crc values should be the same\n");
+
+
+ crc_a = switching[i].output.crc_full_screen[0];
+ crc_b = switching[i].output.crc_full_screen[1];
+
+ print_crc(crc_a);
+ print_crc(crc_b);
+
+ if (crc_compare(crc_a, crc_b))
+ igt_assert_f(false, "Full screen crc values should not be the same\n");
+ }
+
+ igt_info("Test checksum_region switching passed\n");
+}
+
+static void
+test_switching_init(data_t *data, struct data_switching *_switching)
+{
+ drmModeModeInfo *mode = &_mode;
+ roi_t *roi;
+ struct data_switching *switching;
+ struct igt_fb *fb;
+
+ for (int i = 0; i < crtc_set_num; i++) {
+ switching = &_switching[i];
+
+ /* crc window roi */
+ roi = &switching->input.roi_window;
+ roi->x_start = 100;
+ roi->y_start = 100;
+ roi->x_end = 130;
+ roi->y_end = 130;
+ roi->checksum_region_enable = 1;
+
+ /* full screen roi */
+ roi = &switching->input.roi_full_screen;
+ roi->x_start = 0;
+ roi->y_start = 0;
+ roi->x_end = mode->hdisplay;
+ roi->y_end = mode->vdisplay;
+ roi->checksum_region_enable = 1;
+
+ /* paint fb with blue background, red rect */
+ fb = &switching->input.fb[0];
+ igt_create_fb(data->fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, 0, fb);
+ draw_color_roi(fb, &switching->input.roi_full_screen, 0, 0, 255);
+ draw_color_roi(fb, &switching->input.roi_window, 255, 0, 0);
+
+
+ /* paint fb with green background, red retc */
+ fb = &switching->input.fb[1];
+ igt_create_fb(data->fd, mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888, 0, fb);
+ draw_color_roi(fb, &switching->input.roi_full_screen, 0, 255, 0);
+ draw_color_roi(fb, &switching->input.roi_window, 255, 0, 0);
+ }
+}
+
+static void
+test_switching_case(data_t *data, struct data_switching *switching, bool is_window)
+{
+ set_t *set;
+ igt_fb_t *fb;
+ roi_t *roi, *roi_return;
+ crc_t **crc;
+
+ /* change pattern */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ fb = &switching[i].input.fb[0];
+ igt_plane_set_fb(set->primary, fb);
+ }
+
+ /* set crc window roi */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ roi = (is_window) ? &switching[i].input.roi_window
+ : &switching[i].input.roi_full_screen;
+ set_roi(data, set, roi);
+ }
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_info("\n");
+
+
+ /* get crc window roi and print for debug */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ get_roi(data, set, &roi_return);
+ }
+ igt_info("\n");
+
+
+ /* get the window crc */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ crc = (is_window) ? &switching[i].output.crc_window[0]
+ : &switching[i].output.crc_full_screen[0];
+ get_crc(data, set, crc);
+ }
+ igt_info("\n");
+
+
+ /* change pattern */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ fb = &switching[i].input.fb[1];
+ igt_plane_set_fb(set->primary, fb);
+ }
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+
+ /* wait 1 frame for new crc computed */
+ wait_vblanks(data->fd, 1);
+
+ /* get the window crc */
+ for (int i = 0; i < crtc_set_num; i++) {
+ set = &data->set[i];
+ crc = (is_window) ? &switching[i].output.crc_window[1]
+ : &switching[i].output.crc_full_screen[1];
+ get_crc(data, set, crc);
+ }
+ igt_info("\n");
+}
+
+static void
+test_checksum_region_switching(data_t *data)
+{
+ struct data_switching switching[CRTC_SET_NUM] = {0};
+
+ /* test basic init */
+ test_switching_init(data, switching);
+
+ /* crc_window */
+ test_switching_case(data, switching, true);
+
+ /* full screen */
+ test_switching_case(data, switching, false);
+
+ test_switching_validate(switching);
+
+ test_fini(data);
+}
+
+igt_main
+{
+ data_t data = {0};
+
+ igt_skip_on_simulation();
+
+ igt_fixture
+ {
+ data.fd = drm_open_driver_master(DRIVER_AMDGPU);
+ kmstest_set_vt_graphics_mode();
+ igt_display_require(&data.display, data.fd);
+ igt_require(data.display.is_atomic);
+ igt_display_require_output(&data.display);
+ test_init(&data);
+ }
+
+
+ igt_describe("Test basic region configuration and validate the CRC.");
+ igt_subtest("checksum-region-basic")
+ test_checksum_region_basic(&data);
+
+ igt_describe("Test switching between window region and fullscreen region and validate the CRC.");
+ igt_subtest("checksum-region-switching")
+ test_checksum_region_switching(&data);
+
+ igt_fixture
+ {
+ igt_display_fini(&data.display);
+ close(data.fd);
+ }
+}
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
index 24843de73..e2f03bb49 100644
--- a/tests/amdgpu/meson.build
+++ b/tests/amdgpu/meson.build
@@ -7,6 +7,7 @@ if libdrm_amdgpu.found()
'amd_basic',
'amd_bo',
'amd_bypass',
+ 'amd_checksum_region',
'amd_color',
'amd_cp_dma_misc',
'amd_cs_nop',
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region
2023-07-05 8:01 [igt-dev] [PATCH v2 1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region Alan Liu
2023-07-05 8:01 ` [igt-dev] [PATCH v2 2/2] tests/amdgpu/amd_checksum_region: Add test " Alan Liu
@ 2023-07-05 8:40 ` Patchwork
2023-07-05 9:59 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2023-07-05 8:40 UTC (permalink / raw)
To: Alan Liu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11995 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region
URL : https://patchwork.freedesktop.org/series/120213/
State : success
== Summary ==
CI Bug Log - changes from IGT_7370 -> IGTPW_9334
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/index.html
Participating hosts (41 -> 39)
------------------------------
Additional (2): fi-kbl-soraka bat-rpls-2
Missing (4): bat-dg1-8 bat-atsm-1 fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in IGTPW_9334 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-rpls-2: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@fbdev@info.html
* igt@fbdev@read:
- bat-rpls-2: NOTRUN -> [SKIP][3] ([i915#2582]) +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@fbdev@read.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#2190])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +3 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#4613]) +3 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#3282])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][8] ([i915#7561])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- bat-mtlp-8: [PASS][9] -> [ABORT][10] ([i915#7077] / [i915#7977] / [i915#8668])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@module-reload:
- fi-cfl-8109u: [PASS][11] -> [DMESG-FAIL][12] ([i915#8585])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-6: [PASS][14] -> [DMESG-FAIL][15] ([i915#7059])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][16] ([i915#4258] / [i915#7913])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][17] ([i915#1886] / [i915#7913])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@requests:
- bat-mtlp-6: [PASS][18] -> [DMESG-FAIL][19] ([i915#7269])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/bat-mtlp-6/igt@i915_selftest@live@requests.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-mtlp-6/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@ring_submission:
- fi-cfl-8109u: [PASS][20] -> [DMESG-WARN][21] ([i915#7634]) +31 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-cfl-8109u/igt@i915_selftest@live@ring_submission.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [PASS][22] -> [DMESG-WARN][23] ([i915#6367])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-mtlp-6/igt@i915_selftest@live@slpc.html
- bat-rpls-2: NOTRUN -> [DMESG-WARN][24] ([i915#6367])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s2idle-without-i915:
- fi-cfl-8109u: [PASS][25] -> [DMESG-WARN][26] ([i915#7634] / [i915#8585])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
- bat-rpls-2: NOTRUN -> [ABORT][27] ([i915#6687] / [i915#8668])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_addfb_basic@invalid-set-prop:
- fi-cfl-8109u: [PASS][28] -> [DMESG-WARN][29] ([i915#8585]) +75 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/fi-cfl-8109u/igt@kms_addfb_basic@invalid-set-prop.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-cfl-8109u/igt@kms_addfb_basic@invalid-set-prop.html
* igt@kms_busy@basic:
- bat-rpls-2: NOTRUN -> [SKIP][30] ([i915#1845]) +14 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@kms_busy@basic.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-rpls-2: NOTRUN -> [SKIP][31] ([i915#7828]) +7 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- fi-kbl-soraka: NOTRUN -> [SKIP][32] ([fdo#109271]) +15 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-rpls-2: NOTRUN -> [SKIP][33] ([i915#3637]) +3 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][34] ([fdo#109285])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@basic:
- bat-rpls-2: NOTRUN -> [SKIP][35] ([i915#1849])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1:
- fi-rkl-11600: [PASS][36] -> [FAIL][37] ([fdo#103375]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/fi-rkl-11600/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/fi-rkl-11600/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-1.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rpls-2: NOTRUN -> [SKIP][38] ([i915#1072]) +3 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][39] ([i915#3555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-rpls-2: NOTRUN -> [SKIP][40] ([fdo#109295] / [i915#1845] / [i915#3708])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- bat-rpls-2: NOTRUN -> [SKIP][41] ([fdo#109295] / [i915#3708]) +2 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rpls-2/igt@prime_vgem@basic-fence-read.html
#### Warnings ####
* igt@kms_psr@primary_page_flip:
- bat-rplp-1: [SKIP][42] ([i915#1072]) -> [ABORT][43] ([i915#8442] / [i915#8668])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/bat-rplp-1/igt@kms_psr@primary_page_flip.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/bat-rplp-1/igt@kms_psr@primary_page_flip.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077
[i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7634]: https://gitlab.freedesktop.org/drm/intel/issues/7634
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7370 -> IGTPW_9334
CI-20190529: 20190529
CI_DRM_13345: 52c775d5fac7e50737584ba6cf643c1166d95855 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9334: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/index.html
IGT_7370: f63ab5e7c3ddef724bebde558e36647ca65d98bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/index.html
[-- Attachment #2: Type: text/html, Size: 14461 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [v2,1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region
2023-07-05 8:01 [igt-dev] [PATCH v2 1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region Alan Liu
2023-07-05 8:01 ` [igt-dev] [PATCH v2 2/2] tests/amdgpu/amd_checksum_region: Add test " Alan Liu
2023-07-05 8:40 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm-uapi/drm_mode: sync with latest uAPI changes " Patchwork
@ 2023-07-05 9:59 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2023-07-05 9:59 UTC (permalink / raw)
To: Alan Liu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 35212 bytes --]
== Series Details ==
Series: series starting with [v2,1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region
URL : https://patchwork.freedesktop.org/series/120213/
State : success
== Summary ==
CI Bug Log - changes from IGT_7370_full -> IGTPW_9334_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_9334_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9334_full, please notify your bug team 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_9334/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9334_full:
### IGT changes ###
#### Warnings ####
* igt@gem_eio@in-flight-contexts-10ms:
- shard-snb: [FAIL][1] ([i915#7942]) -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-snb5/igt@gem_eio@in-flight-contexts-10ms.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-snb2/igt@gem_eio@in-flight-contexts-10ms.html
Known issues
------------
Here are the changes found in IGTPW_9334_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +9 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-8/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#1839])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@feature_discovery@display-3x.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#280])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-6/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-dg2: [PASS][6] -> [ABORT][7] ([i915#7975] / [i915#8213])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@gem_eio@hibernate.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-3/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-apl: [PASS][8] -> [ABORT][9] ([i915#180])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl2/igt@gem_eio@in-flight-suspend.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl3/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][10] -> [FAIL][11] ([i915#5784])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-8/igt@gem_eio@reset-stress.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-1/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@full-pulse:
- shard-dg2: [PASS][12] -> [FAIL][13] ([i915#6032])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-3/igt@gem_exec_balancer@full-pulse.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@gem_exec_balancer@full-pulse.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#4525])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_fair@basic-flow:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#3539] / [i915#4852])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [PASS][16] -> [FAIL][17] ([i915#2842]) +2 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][18] -> [FAIL][19] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][20] -> [FAIL][21] ([i915#2842])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#3281])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@gem_exec_reloc@basic-gtt-wc-active.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#3281])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#4613])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-8/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][25] -> [TIMEOUT][26] ([i915#5493])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl2/igt@gem_lmem_swapping@verify.html
* igt@gem_pwrite_snooped:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3282])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@gem_pwrite_snooped.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4079])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][30] ([fdo#109312])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-3/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4077])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-6/igt@gem_tiled_swapping@non-threaded.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#2856])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][33] -> [DMESG-WARN][34] ([i915#7061])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_dc@dc6-dpms:
- shard-tglu: [PASS][35] -> [FAIL][36] ([i915#3989] / [i915#454])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][37] ([fdo#109289])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][38] -> [SKIP][39] ([i915#1397])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-6/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][40] -> [INCOMPLETE][41] ([i915#7790])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-snb4/igt@i915_pm_rps@reset.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-snb4/igt@i915_pm_rps@reset.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#8502]) +3 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][43] ([i915#8247]) +2 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl4/igt@kms_async_flips@crc@pipe-c-dp-1.html
* igt@kms_async_flips@crc@pipe-d-dp-2:
- shard-dg2: NOTRUN -> [FAIL][44] ([i915#8247]) +3 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@kms_async_flips@crc@pipe-d-dp-2.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][45] ([fdo#111615] / [i915#5286])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][46] ([fdo#111614])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-7/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][47] -> [FAIL][48] ([i915#3743])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][49] ([fdo#110723])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4538] / [i915#5190])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#5354] / [i915#6095])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3886] / [i915#5354] / [i915#6095])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#3886]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3689] / [i915#5354]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-6/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][55] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-7/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#5354]) +3 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4087]) +3 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-apl: NOTRUN -> [SKIP][58] ([fdo#109271]) +54 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl2/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-rkl: NOTRUN -> [SKIP][59] ([fdo#111827])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#7118])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3116])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][62] ([i915#7173]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3555] / [i915#7118])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][64] -> [FAIL][65] ([i915#2346])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-snb: NOTRUN -> [SKIP][66] ([fdo#109271]) +24 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-snb4/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][67] -> [FAIL][68] ([i915#2122])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#2672])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][70] -> [FAIL][71] ([i915#6880])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3023]) +4 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5354]) +3 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#111825] / [i915#1825]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3458]) +2 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#8708]) +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][77] ([fdo#109280]) +1 similar issue
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][78] ([fdo#103375] / [i915#6121])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#5176]) +3 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#5176]) +5 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-dp-2:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5235]) +15 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-dp-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#5235]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3555]) +2 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#8623])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-dg2: [PASS][85] -> [FAIL][86] ([fdo#103375] / [i915#6121]) +4 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#2437])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#7387])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-11/igt@perf@global-sseu-config.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [FAIL][89] ([i915#5234])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-rkl: NOTRUN -> [SKIP][90] ([fdo#109315])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_tiling@set-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#7711])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-2/igt@vc4/vc4_tiling@set-bad-handle.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][92] ([i915#7742]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][94] ([i915#6268]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@kms:
- {shard-dg1}: [FAIL][96] ([i915#5784]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg1-18/igt@gem_eio@kms.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg1-15/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [FAIL][98] ([i915#2842]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [FAIL][100] ([i915#2842]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-glk: [FAIL][102] ([i915#2842]) -> [PASS][103] +2 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][104] ([i915#1397]) -> [PASS][105] +1 similar issue
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- {shard-dg1}: [SKIP][106] ([i915#1397]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][108] ([i915#1397]) -> [PASS][109] +1 similar issue
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][110] ([i915#2346]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-dg2: [FAIL][112] ([fdo#103375] / [i915#6121]) -> [PASS][113] +3 similar issues
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@c-dp1:
- shard-apl: [ABORT][114] ([i915#180]) -> [PASS][115] +1 similar issue
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-apl6/igt@kms_flip@flip-vs-suspend@c-dp1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [FAIL][116] ([fdo#103375]) -> [PASS][117] +1 similar issue
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][118] ([IGT#2]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-6/igt@kms_sysfs_edid_timing.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@kms_sysfs_edid_timing.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-tglu: [WARN][120] ([i915#2681]) -> [FAIL][121] ([i915#2681] / [i915#3591])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@kms_content_protection@content_type_change:
- shard-dg2: [SKIP][122] ([i915#3555] / [i915#7118] / [i915#7162]) -> [SKIP][123] ([i915#3555] / [i915#7118])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-12/igt@kms_content_protection@content_type_change.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-1/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][124] ([i915#3555] / [i915#7118]) -> [SKIP][125] ([i915#3555] / [i915#7118] / [i915#7162])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-dg2-8/igt@kms_content_protection@type1.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-dg2-12/igt@kms_content_protection@type1.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][126] ([fdo#110189] / [i915#3955]) -> [SKIP][127] ([i915#3955])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7370/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7942]: https://gitlab.freedesktop.org/drm/intel/issues/7942
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7370 -> IGTPW_9334
CI-20190529: 20190529
CI_DRM_13345: 52c775d5fac7e50737584ba6cf643c1166d95855 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9334: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/index.html
IGT_7370: f63ab5e7c3ddef724bebde558e36647ca65d98bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9334/index.html
[-- Attachment #2: Type: text/html, Size: 39479 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-05 9:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-05 8:01 [igt-dev] [PATCH v2 1/2] drm-uapi/drm_mode: sync with latest uAPI changes for checksum_region Alan Liu
2023-07-05 8:01 ` [igt-dev] [PATCH v2 2/2] tests/amdgpu/amd_checksum_region: Add test " Alan Liu
2023-07-05 8:40 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [v2,1/2] drm-uapi/drm_mode: sync with latest uAPI changes " Patchwork
2023-07-05 9:59 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox