* [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
@ 2024-01-18 2:36 Hersen Wu
2024-01-18 2:36 ` [PATCH 2/3] [i-g-t] tests/amdgpu/amd_bypass: Fix psr edp r/x crc read timeout Hersen Wu
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Hersen Wu @ 2024-01-18 2:36 UTC (permalink / raw)
To: igt-dev, rodrigo.siqueira, aurabindo.pillai, alex.hung,
hamza.mahfooz, wayne.lin
Cc: Hersen Wu, markyacoub
When igt app call this debugfs, it will pass disable flag
to kernel. The flag will block psr setup and enable.
When igt read psr edp rx crc, read may be timeout.
After bootup, AMD kernel driver setup psr with dpcd 0x170 = 5.
this notify rx psr enable and let rx fw start checking crc
for rx fw internal logic. rx fw may not update crc read count
within dpcd 0x246. read count is always 0. this will lead tx
crc reading timeout.
With IGT app sequence below, rx fw crc checking for rx internal
logic is disabled. upon tx read rx crc, rx fw will check crc and
update crc count within dpcd 0x246. so IGT app can read rx crc
successfully.
expected app sequence is as below:
1. disable eDP PHY and notify eDP rx with dpcd 0x600 = 2.
2. echo 0x1 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr
3. enable eDP PHY and notify eDP rx with dpcd 0x600 = 1 but
without dpcd 0x170 = 5.
4. read crc from rx dpcd 0x270, 0x246, etc.
5. echo 0x0 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr.
this will let eDP back to normal with psr setup dpcd 0x170 = 5.
Signed-off-by: Hersen Wu <hersenxs.wu@amd.com>
---
lib/igt_amd.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_amd.h | 2 ++
2 files changed, 51 insertions(+)
diff --git a/lib/igt_amd.c b/lib/igt_amd.c
index 247a42f37..d0b53c08a 100644
--- a/lib/igt_amd.c
+++ b/lib/igt_amd.c
@@ -1153,6 +1153,55 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena
close(hpd_fd);
}
+/**
+ * igt_amd_disallow_edp_enter_psr: notify kernel skip edp psr setup and enable
+ * @drm_fd: DRM file descriptor
+ * @connector_name: The connector's name
+ * @enable: skip kernel eDP psr setup and enable -- disallow edp enter psr
+ * example usage: disallow psr
+ * echo 0x1 >
+ * /sys/kernel/debug/dri/0/eDP-1/disallow_edp_enter_psr
+ *
+ * expected IGT sequence is as below:
+ * 1. disable eDP PHY and notify eDP rx with dpcd 0x600 = 2.
+ * for example, kmstest_set_connector_dpms off will do this.
+ * 2. echo 0x1 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr
+ * 3. enable eDP PHY and notify eDP rx with dpcd 0x600 = 1 but
+ * without dpcd 0x170 = 5.
+ * for example, kmstest_set_connector_dpms on will do this.
+ * 4. read crc from rx dpcd 0x270, 0x246, etc.
+ * igt_pipe_crc_collect_crc will do this.
+ * 5. echo 0x0 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr.
+ * this will let eDP back to normal with psr setup dpcd 0x170 = 5.
+ */
+void igt_amd_disallow_edp_enter_psr(int drm_fd, char *connector_name, bool enable)
+{
+ int fd, ret, wr_len;
+ const char *allow_edp_psr = "1";
+ const char *dis_allow_edp_psr = "0";
+
+ /* if current psr is not enabled, skip this debugfs */
+ if (!igt_amd_psr_support_drv(drm_fd, connector_name, PSR_MODE_1) &&
+ !igt_amd_psr_support_drv(drm_fd, connector_name, PSR_MODE_2))
+ return;
+
+ fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
+ igt_assert(fd >= 0);
+ ret = openat(fd, DEBUGFS_DISALLOW_EDP_ENTER_PSR, O_WRONLY);
+ close(fd);
+ igt_assert(ret >= 0);
+
+ if (enable) {
+ wr_len = write(ret, allow_edp_psr, strlen(allow_edp_psr));
+ igt_assert_eq(wr_len, strlen(allow_edp_psr));
+ } else {
+ wr_len = write(ret, dis_allow_edp_psr, strlen(dis_allow_edp_psr));
+ igt_assert_eq(wr_len, strlen(dis_allow_edp_psr));
+ }
+
+ close(ret);
+}
+
static bool get_dm_capabilities(int drm_fd, char *buf, size_t size)
{
int ret, fd;
diff --git a/lib/igt_amd.h b/lib/igt_amd.h
index 254b5d37b..6780b99de 100644
--- a/lib/igt_amd.h
+++ b/lib/igt_amd.h
@@ -50,6 +50,7 @@
#define DEBUGFS_EDP_PSR_CAP "psr_capability"
#define DEBUGFS_EDP_PSR_STATE "psr_state"
#define DEBUGFS_ALLOW_EDP_HOTPLUG_DETECT "allow_edp_hotplug_detection"
+#define DEBUGFS_DISALLOW_EDP_ENTER_PSR "disallow_edp_enter_psr"
/* amdgpu DM interface entries */
#define DEBUGFS_DM_VISUAL_CONFIRM "amdgpu_dm_visual_confirm"
@@ -194,6 +195,7 @@ bool igt_amd_psr_support_drv(int drm_fd, char *connector_name, enum psr_mode mod
bool igt_amd_output_has_psr_state(int drm_fd, char *connector_name);
int igt_amd_read_psr_state(int drm_fd, char *connector_name);
void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool enable);
+void igt_amd_disallow_edp_enter_psr(int drm_fd, char *connector_name, bool enable);
/* DM interface helpers */
bool igt_amd_has_visual_confirm(int drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] [i-g-t] tests/amdgpu/amd_bypass: Fix psr edp r/x crc read timeout
2024-01-18 2:36 [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Hersen Wu
@ 2024-01-18 2:36 ` Hersen Wu
2024-01-18 2:36 ` [PATCH 3/3] [i-g-t] tests/amdgpu/amd_ilr: Fix psr edp rx " Hersen Wu
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Hersen Wu @ 2024-01-18 2:36 UTC (permalink / raw)
To: igt-dev, rodrigo.siqueira, aurabindo.pillai, alex.hung,
hamza.mahfooz, wayne.lin
Cc: Hersen Wu, markyacoub
With debugfs disallow_edp_enter_psr, disable edp psr before
tx read rx crc.
dpms off, tx write dpcd 0x600=2. this will let dpcd 0x170=0.
rx psr and crc check for rx internal logic are disabled.
with disallow_edp_enter_psr, when dpms on, kernel driver will
light up edp with dpcd 0x170=0. then tx read rx crc successfully.
Signed-off-by: Hersen Wu <hersenxs.wu@amd.com>
---
tests/amdgpu/amd_bypass.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/tests/amdgpu/amd_bypass.c b/tests/amdgpu/amd_bypass.c
index d192a30ea..d82e22ded 100644
--- a/tests/amdgpu/amd_bypass.c
+++ b/tests/amdgpu/amd_bypass.c
@@ -72,6 +72,24 @@ static void test_init(data_t *data)
data->output = igt_get_single_output_for_pipe(display, data->pipe_id);
igt_assert(data->output);
+ if (data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) {
+ kmstest_set_connector_dpms(data->output->display->drm_fd,
+ data->output->config.connector, DRM_MODE_DPMS_OFF);
+
+ /* with dmps off, tx write dpcd 0x600=2 to rx. edp rx
+ * exit psr state and stop verify crc from main link.
+ * with disabllow edp enter psr within kernel, when run
+ * dmps on to turn on display, kernel tx will not notify
+ * rx psr enable and crc checking by rx. by this, when tx
+ * want to read crc from rx, rx will check crc and response
+ * right away. timeout will not happens.
+ */
+ igt_amd_disallow_edp_enter_psr(data->drm_fd, data->output->name, true);
+
+ kmstest_set_connector_dpms(data->output->display->drm_fd,
+ data->output->config.connector, DRM_MODE_DPMS_ON);
+ }
+
data->mode = igt_output_get_mode(data->output);
igt_assert(data->mode);
@@ -370,6 +388,11 @@ static void bypass_8bpc_test(data_t *data)
igt_plane_set_fb(data->primary, NULL);
test_fini(data);
igt_remove_fb(data->drm_fd, &fb);
+
+ if (data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_eDP) {
+ /* restore allow kernel driver eDP PSR */
+ igt_amd_disallow_edp_enter_psr(data->drm_fd, data->output->name, false);
+ }
}
igt_main
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/3] [i-g-t] tests/amdgpu/amd_ilr: Fix psr edp rx crc read timeout
2024-01-18 2:36 [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Hersen Wu
2024-01-18 2:36 ` [PATCH 2/3] [i-g-t] tests/amdgpu/amd_bypass: Fix psr edp r/x crc read timeout Hersen Wu
@ 2024-01-18 2:36 ` Hersen Wu
2024-01-18 10:16 ` Lin, Wayne
2024-01-18 3:20 ` ✓ CI.xeBAT: success for series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Hersen Wu @ 2024-01-18 2:36 UTC (permalink / raw)
To: igt-dev, rodrigo.siqueira, aurabindo.pillai, alex.hung,
hamza.mahfooz, wayne.lin
Cc: Hersen Wu, markyacoub
With debugfs disallow_edp_enter_psr, disable edp
psr before tx read rx crc.
With set_all_output_pipe_to_none of test_init,
tx write dpcd 0x600=2. this will let dpcd 0x170=0.
rx psr and crc check for rx internal logic are disabled.
with disallow_edp_enter_psr, when set test patterns
are committed by igt_display_commit_atomic, kernel
driver will turn on edp with dpcd 0x170=0. then tx
read rx crc successfully.
Signed-off-by: Hersen Wu <hersenxs.wu@amd.com>
---
tests/amdgpu/amd_ilr.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/tests/amdgpu/amd_ilr.c b/tests/amdgpu/amd_ilr.c
index b2c0f294d..1f048d665 100644
--- a/tests/amdgpu/amd_ilr.c
+++ b/tests/amdgpu/amd_ilr.c
@@ -205,11 +205,32 @@ static void test_flow(data_t *data, enum sub_test option)
continue;
}
+ /* igt_amd_output_has_ilr_setting check if debugfs exist,
+ * but ilr settings could be all 0s -- not supported.
+ * need check if ilr settings values are supported.
+ */
+ igt_amd_read_ilr_setting(data->drm_fd, output->name, data->supported_ilr);
+ if (data->supported_ilr[0] == 0)
+ continue;
+
igt_info("Testing on output: %s\n", output->name);
/* Init only if display supports ilr link settings */
test_init(data, output);
+ /* with set_all_output_pipe_to_none within test_init,
+ * kernel driver tx write dpcd 0x600=2 to rx. edp rx
+ * exit psr state and stop verify crc from main link.
+ * with disabllow edp enter psr within kernel, when run
+ * set test pattern, display is turned on. kernel driver
+ * tx will not notify rx psr enable and crc checking by
+ * rx. by this, when tx want to read crc from rx, rx will
+ * check crc and response right away. timeout will not
+ * happens.
+ */
+ if (option == ILR_POLICY)
+ igt_amd_disallow_edp_enter_psr(data->drm_fd, output->name, true);
+
mode = igt_output_get_mode(output);
igt_assert(mode);
@@ -243,6 +264,10 @@ static void test_flow(data_t *data, enum sub_test option)
igt_remove_fb(data->drm_fd, &data->fb);
test_fini(data);
+
+ /* restore allow kernel driver eDP PSR */
+ if (option == ILR_POLICY)
+ igt_amd_disallow_edp_enter_psr(data->drm_fd, output->name, false);
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
2024-01-18 2:36 [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Hersen Wu
2024-01-18 2:36 ` [PATCH 2/3] [i-g-t] tests/amdgpu/amd_bypass: Fix psr edp r/x crc read timeout Hersen Wu
2024-01-18 2:36 ` [PATCH 3/3] [i-g-t] tests/amdgpu/amd_ilr: Fix psr edp rx " Hersen Wu
@ 2024-01-18 3:20 ` Patchwork
2024-01-18 3:34 ` ✓ Fi.CI.BAT: " Patchwork
2024-01-18 5:21 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-01-18 3:20 UTC (permalink / raw)
To: Hersen Wu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4544 bytes --]
== Series Details ==
Series: series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
URL : https://patchwork.freedesktop.org/series/128914/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7678_BAT -> XEIGTPW_10549_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10549_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#623])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#455])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([i915#5274])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-dg2-oem2: NOTRUN -> [FAIL][4] ([Intel XE#608])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_exec_fault_mode@many-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#288]) +32 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html
* igt@xe_huc_copy@huc_copy:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#255])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html
* igt@xe_pat@pat-index-xe2:
- bat-dg2-oem2: NOTRUN -> [SKIP][7] ([Intel XE#977])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([Intel XE#979]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@xe_pat@pat-index-xehpc.html
#### Possible fixes ####
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- bat-pvc-2: [INCOMPLETE][9] -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7678/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-pvc-2/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_threads@threads-mixed-shared-vm-basic:
- bat-dg2-oem2: [INCOMPLETE][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7678/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
Build changes
-------------
* IGT: IGT_7678 -> IGTPW_10549
* Linux: xe-639-b42f47ca5fff1d04fb8eb02d64520b3f338a495d -> xe-642-2d422dec58e0dfd61d6c9842de7f83289803dccb
IGTPW_10549: 10549
IGT_7678: 9f0b63bae98fa6164dd2262f8890a964fb1fc23d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-639-b42f47ca5fff1d04fb8eb02d64520b3f338a495d: b42f47ca5fff1d04fb8eb02d64520b3f338a495d
xe-642-2d422dec58e0dfd61d6c9842de7f83289803dccb: 2d422dec58e0dfd61d6c9842de7f83289803dccb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10549/index.html
[-- Attachment #2: Type: text/html, Size: 5307 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
2024-01-18 2:36 [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Hersen Wu
` (2 preceding siblings ...)
2024-01-18 3:20 ` ✓ CI.xeBAT: success for series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Patchwork
@ 2024-01-18 3:34 ` Patchwork
2024-01-18 5:21 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-01-18 3:34 UTC (permalink / raw)
To: Hersen Wu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4835 bytes --]
== Series Details ==
Series: series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
URL : https://patchwork.freedesktop.org/series/128914/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14135 -> IGTPW_10549
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/index.html
Participating hosts (36 -> 27)
------------------------------
Additional (1): bat-rpls-2
Missing (10): fi-bsw-n3050 fi-skl-guc fi-tgl-1115g4 fi-apl-guc fi-snb-2520m bat-adln-1 fi-elk-e7500 fi-pnv-d510 fi-bsw-nick bat-jsl-1
Known issues
------------
Here are the changes found in IGTPW_10549 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][4] ([i915#6621])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][5] ([i915#10010])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#3840] / [i915#9886])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][8] ([fdo#109285])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#5354])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#3555])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-rpls-2: NOTRUN -> [SKIP][11] ([fdo#109295] / [i915#3708]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/bat-rpls-2/igt@prime_vgem@basic-fence-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#10010]: https://gitlab.freedesktop.org/drm/intel/issues/10010
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7678 -> IGTPW_10549
CI-20190529: 20190529
CI_DRM_14135: 2d422dec58e0dfd61d6c9842de7f83289803dccb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10549: 10549
IGT_7678: 9f0b63bae98fa6164dd2262f8890a964fb1fc23d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/index.html
[-- Attachment #2: Type: text/html, Size: 5710 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
2024-01-18 2:36 [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Hersen Wu
` (3 preceding siblings ...)
2024-01-18 3:34 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-01-18 5:21 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-01-18 5:21 UTC (permalink / raw)
To: Hersen Wu; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100300 bytes --]
== Series Details ==
Series: series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
URL : https://patchwork.freedesktop.org/series/128914/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14135_full -> IGTPW_10549_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10549_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10549_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_10549/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10549_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-tglu-9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
New tests
---------
New tests have been introduced between CI_DRM_14135_full and IGTPW_10549_full:
### New IGT tests (4) ###
* igt@gem_exec_fair@basic-pace-share@rcs0:
- Statuses : 1 fail(s) 2 pass(s)
- Exec time: [4.35, 6.93] s
* igt@gem_exec_fair@basic-pace@vcs1:
- Statuses : 1 fail(s)
- Exec time: [4.42] s
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- Statuses : 1 pass(s)
- Exec time: [10.15] s
* igt@kms_atomic_transition@modeset-transition@2x-outputs:
- Statuses : 1 pass(s)
- Exec time: [9.67] s
Known issues
------------
Here are the changes found in IGTPW_10549_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#7701])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-14/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#7701])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7701])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +14 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +30 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-13/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][11] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3936])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-1/igt@gem_busy@semaphore.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@gem_caching@reads.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3555]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_create@hog-create@smem0:
- shard-mtlp: NOTRUN -> [FAIL][18] ([i915#8758])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-1/igt@gem_create@hog-create@smem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][19] -> [FAIL][20] ([i915#6268])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-many.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#1099]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb6/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#5882]) +9 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][27] ([i915#8898])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb7/igt@gem_eio@unwedge-stress.html
- shard-dg1: [PASS][28] -> [FAIL][29] ([i915#5784])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg1-19/igt@gem_eio@unwedge-stress.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [FAIL][33] ([i915#6117])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#6334]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#6334])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#6334])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#6344])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg1: NOTRUN -> [FAIL][40] ([i915#9606])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4473] / [i915#4771]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglu: NOTRUN -> [FAIL][44] ([i915#2842]) +4 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][45] -> [FAIL][46] ([i915#2842])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-tglu: [PASS][49] -> [FAIL][50] ([i915#2842])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-tglu-2/igt@gem_exec_fair@basic-throttle@rcs0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-rkl: NOTRUN -> [SKIP][52] ([fdo#109313])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-tglu: NOTRUN -> [SKIP][53] ([fdo#109313])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3711])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@secure-non-root:
- shard-rkl: NOTRUN -> [SKIP][55] ([fdo#112283]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@gem_exec_params@secure-non-root.html
- shard-dg1: NOTRUN -> [SKIP][56] ([fdo#112283]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-14/igt@gem_exec_params@secure-non-root.html
- shard-tglu: NOTRUN -> [SKIP][57] ([fdo#112283]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@gem_exec_params@secure-non-root.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([fdo#112283])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3281]) +10 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +10 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3281]) +12 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3281]) +10 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4537])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-6/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4812])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [PASS][65] -> [ABORT][66] ([i915#7975] / [i915#8213])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg1-15/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
- shard-dg2: NOTRUN -> [ABORT][67] ([i915#7975] / [i915#8213])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4860]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4860]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4860]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2190])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613] / [i915#7582])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#4613]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-9/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4565])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#4613]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk4/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@random-engines:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4613]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-6/igt@gem_lmem_swapping@random-engines.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4613]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@gem_lmem_swapping@random-engines.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8289])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4077]) +15 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@gem_mmap_gtt@coherency.html
- shard-tglu: NOTRUN -> [SKIP][80] ([fdo#111656])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-10/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4077]) +14 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4077]) +15 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4083]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-1/igt@gem_mmap_wc@write.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4083]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@gem_mmap_wc@write-read.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3282]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gem_pread@display.html
* igt@gem_pwrite_snooped:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@gem_pwrite_snooped.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3282]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@gem_pwrite_snooped.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4270]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#4270]) +6 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#4270]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4270]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4270]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271]) +236 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8428]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#8411]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4079])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4079]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-12/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4885])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@gem_softpin@evict-snoop.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4879])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][104] ([fdo#110542])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3323])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk7/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3323])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3297]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#4958])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#3297])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#3297])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#109289]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-1/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#5566])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][113] ([fdo#109271]) +147 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#2856]) +7 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#2527]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#2527]) +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#2527] / [i915#2856]) +6 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-2/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#2856]) +6 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#6227])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@i915_module_load@load.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#6412])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@i915_module_load@resize-bar.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#7178])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#6412])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@i915_module_load@resize-bar.html
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6412])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#8399]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-10/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#8399])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-tglu: NOTRUN -> [WARN][126] ([i915#2681]) +1 other test warn
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu: NOTRUN -> [FAIL][127] ([i915#3591]) +1 other test fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg1: NOTRUN -> [SKIP][128] ([fdo#109293] / [fdo#109506])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-12/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6621])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][130] ([i915#8346])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-6/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#8925])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@i915_pm_rps@thresholds-idle@gt0.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#8925]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#4387])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-2/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#8437])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#7984])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#6245])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#6245])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][138] ([fdo#109303])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][139] ([i915#9311])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@i915_selftest@mock@memory_region.html
- shard-rkl: NOTRUN -> [DMESG-WARN][140] ([i915#9311])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@i915_selftest@mock@memory_region.html
- shard-glk: NOTRUN -> [DMESG-WARN][141] ([i915#9311])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk7/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][142] -> [FAIL][143] ([i915#10031])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#4212])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#4212]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4212])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8709]) +11 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#8709]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#8709]) +7 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8709]) +11 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][151] ([i915#8247]) +3 other tests fail
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6228])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#5286]) +6 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][155] ([fdo#111615] / [i915#5286]) +8 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][156] ([fdo#111614]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#5286])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#4538] / [i915#5286]) +7 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#5138]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#111614]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][162] ([fdo#111614]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3638]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111614] / [i915#3638]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][165] ([fdo#111615]) +10 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#5190]) +14 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#4538] / [i915#5190]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][168] ([fdo#111615]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6187]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][170] ([fdo#111615])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][171] ([fdo#110723]) +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][172] ([fdo#111615]) +7 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#4538]) +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#2705])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#5354] / [i915#6095]) +67 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#5354] / [i915#6095]) +34 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf-tiled-ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#5354]) +86 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#5354] / [i915#6095]) +63 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#5354] / [i915#6095]) +49 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#5354]) +42 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3742])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3742])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_cdclk@plane-scaling.html
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3742])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4087]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-tglu: NOTRUN -> [SKIP][185] ([fdo#111827]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-mtlp: NOTRUN -> [SKIP][186] ([fdo#111827]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][187] ([fdo#111827]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-6/igt@kms_chamelium_color@degamma.html
- shard-dg1: NOTRUN -> [SKIP][188] ([fdo#111827]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-12/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][189] ([fdo#111827])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#7828]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#7828]) +11 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#7828]) +8 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#7828]) +9 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#7828]) +11 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_content_protection@atomic-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#6944])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3116] / [i915#3299])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#3299]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3116]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3299]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#7116])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8814])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3359]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3359]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#3555]) +8 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3359]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8814]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3359]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3359])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#9809])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#4103] / [i915#4213])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#4103]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#4103] / [i915#4213]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#4213])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274] / [i915#5354]) +6 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-tglu: NOTRUN -> [SKIP][216] ([fdo#109274]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][217] ([fdo#111767])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-rkl: NOTRUN -> [SKIP][218] ([fdo#111767] / [fdo#111825])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-snb: NOTRUN -> [SKIP][219] ([fdo#109271] / [fdo#111767])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#9067])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#4103]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#9723])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9723])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9723])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-13/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8827])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#8588])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#8588])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#8588])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#3555]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#1257])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8812])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3840] / [i915#9688])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#3840])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#3840])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3840] / [i915#9688])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#3840]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#3840]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#3840] / [i915#9053])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#3469])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#1839])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#1839])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-7/igt@kms_feature_discovery@display-3x.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#1839])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#1839])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#658])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#658])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109274] / [i915#3637]) +9 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-10/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][248] ([fdo#109274] / [fdo#111767])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][249] ([fdo#111767] / [i915#3637])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][250] ([fdo#111767] / [fdo#111825])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][251] ([fdo#109274] / [fdo#111767] / [i915#3637])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#8381]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][253] ([fdo#109274]) +4 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][254] ([fdo#111825] / [i915#9934]) +7 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3637]) +4 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8381])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-6/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#2672])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2672]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672]) +4 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8810])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [FAIL][265] ([i915#6880])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#1825]) +39 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#8708]) +17 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [PASS][268] -> [SKIP][269] ([fdo#109271]) +18 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#10055])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][271] ([fdo#111825]) +16 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][272] ([fdo#111825] / [i915#1825]) +52 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][273] ([fdo#111825]) +44 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#8708]) +18 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#5439])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#9766])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#10070])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#10070])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#10070])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#10070])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#3458]) +19 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#3023]) +28 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][283] ([fdo#110189]) +27 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#8708]) +5 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][285] ([fdo#109280]) +50 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#3458]) +22 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-14/igt@kms_hdr@static-swap.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-2/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][291] ([fdo#109289]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][292] ([fdo#109289]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
- shard-tglu: NOTRUN -> [SKIP][293] ([fdo#109289]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-10/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
- shard-rkl: NOTRUN -> [SKIP][294] ([fdo#109289])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-7/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][295] ([i915#7862]) +1 other test fail
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][296] ([i915#4573]) +1 other test fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#3555]) +9 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8806])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#6953])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][300] ([i915#8292])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#9423]) +7 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#9423]) +3 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#9423]) +5 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#9423]) +15 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#5176]) +13 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#5176] / [i915#9423]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#5176] / [i915#9423]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#5235]) +7 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#5235]) +7 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#5235]) +11 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#5235] / [i915#9423]) +19 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#5235]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#5235]) +8 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#9812])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-2/igt@kms_pm_backlight@fade-with-suspend.html
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#5354]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#5978])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][317] ([i915#9298])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#9685])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#9340])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#9519]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9519])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#9519]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][323] ([fdo#109293] / [fdo#109506])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#6524])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#6524])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#6524] / [i915#6805])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#9683]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#9683])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-9/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#2920])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#9683]) +3 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#9683])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][332] ([fdo#111068] / [i915#9683]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][333] ([fdo#111068] / [i915#9683]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][334] ([fdo#111068] / [i915#9683]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-13/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][335] ([fdo#109642] / [fdo#111068] / [i915#9683])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#9685])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#9685]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#4235])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#5289])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#4235]) +2 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#5289])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][342] ([fdo#111615] / [i915#5289])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#3555]) +11 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][344] ([i915#5465]) +1 other test fail
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][345] ([IGT#2])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][346] ([IGT#2] / [i915#6493])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#8623])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#8623])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][349] ([i915#9196])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#2437]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][351] ([fdo#109271] / [i915#2437]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#2437] / [i915#9412])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#2437] / [i915#9412]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][354] ([i915#2437]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@kms_writeback@writeback-invalid-parameters.html
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#2437])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#2437])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#7387])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-3/igt@perf@global-sseu-config-invalid.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#2435])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][359] ([fdo#109289] / [i915#2433]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-15/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#2433])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][361] -> [FAIL][362] ([i915#4349])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#8850])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#8850])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#8516]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-19/igt@perf_pmu@rc6-all-gts.html
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#8516])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-7/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#8516])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#3708] / [i915#4077])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#3291] / [i915#3708])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#3708])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-5/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#3708]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][372] ([fdo#109295])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-2/igt@prime_vgem@fence-write-hang.html
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#3708]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-4/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#9917])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][375] ([i915#9781])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@syncobj_timeline@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][376] ([i915#9781])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk1/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-mtlp: NOTRUN -> [SKIP][377] ([i915#2575]) +11 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-8/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@v3d/v3d_perfmon@create-two-perfmon:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#2575]) +10 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@v3d/v3d_perfmon@create-two-perfmon.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#2575]) +11 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-18/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_cl@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][380] ([fdo#109315]) +14 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@v3d/v3d_submit_cl@bad-pad.html
* igt@v3d/v3d_submit_csd@bad-pad:
- shard-tglu: NOTRUN -> [SKIP][381] ([fdo#109315] / [i915#2575]) +16 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@v3d/v3d_submit_csd@bad-pad.html
* igt@vc4/vc4_create_bo@create-bo-4096:
- shard-mtlp: NOTRUN -> [SKIP][382] ([i915#7711]) +9 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-mtlp-2/igt@vc4/vc4_create_bo@create-bo-4096.html
* igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done:
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#7711]) +10 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-14/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html
* igt@vc4/vc4_perfmon@create-two-perfmon:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#7711]) +11 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-5/igt@vc4/vc4_perfmon@create-two-perfmon.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][385] ([i915#2575]) +10 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-10/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#7711]) +11 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][387] ([i915#2846]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [FAIL][389] ([i915#2842]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-rkl-1/igt@gem_exec_fair@basic-pace@vcs0.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-glk: [ABORT][391] ([i915#9849]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [INCOMPLETE][393] ([i915#9820] / [i915#9849]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][395] ([i915#3743]) -> [PASS][396] +2 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-snb: [INCOMPLETE][397] ([i915#4839]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [SKIP][399] ([fdo#109271]) -> [PASS][400] +9 other tests pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][401] ([i915#9295]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][403] ([i915#9519]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][405] ([i915#9519]) -> [PASS][406] +3 other tests pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][407] ([i915#9196]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
#### Warnings ####
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: [SKIP][409] ([i915#4423] / [i915#4860]) -> [SKIP][410] ([i915#4860])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-y.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: [INCOMPLETE][411] ([i915#10042]) -> [WARN][412] ([i915#2658])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-glk5/igt@gem_pwrite@basic-exhaustion.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-glk9/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][413] ([i915#1982] / [i915#9849]) -> [INCOMPLETE][414] ([i915#9820] / [i915#9849])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
- shard-dg1: [SKIP][415] ([i915#4423] / [i915#5354] / [i915#6095]) -> [SKIP][416] ([i915#5354] / [i915#6095])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg1-12/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-16/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@lic:
- shard-snb: [INCOMPLETE][417] ([i915#8816]) -> [SKIP][418] ([fdo#109271]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-snb7/igt@kms_content_protection@lic.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-snb5/igt@kms_content_protection@lic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][419] ([i915#9433]) -> [SKIP][420] ([i915#9424])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][421] ([i915#3955]) -> [SKIP][422] ([fdo#110189] / [i915#3955]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14135/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10549/index.html
[-- Attachment #2: Type: text/html, Size: 109926 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH 3/3] [i-g-t] tests/amdgpu/amd_ilr: Fix psr edp rx crc read timeout
2024-01-18 2:36 ` [PATCH 3/3] [i-g-t] tests/amdgpu/amd_ilr: Fix psr edp rx " Hersen Wu
@ 2024-01-18 10:16 ` Lin, Wayne
0 siblings, 0 replies; 9+ messages in thread
From: Lin, Wayne @ 2024-01-18 10:16 UTC (permalink / raw)
To: Wu, Hersen, igt-dev@lists.freedesktop.org, Siqueira, Rodrigo,
Pillai, Aurabindo, Hung, Alex, Mahfooz, Hamza
Cc: Wu, Hersen, markyacoub@google.com
[Public]
> -----Original Message-----
> From: Hersen Wu <hersenxs.wu@amd.com>
> Sent: Thursday, January 18, 2024 10:36 AM
> To: igt-dev@lists.freedesktop.org; Siqueira, Rodrigo
> <Rodrigo.Siqueira@amd.com>; Pillai, Aurabindo
> <Aurabindo.Pillai@amd.com>; Hung, Alex <Alex.Hung@amd.com>; Mahfooz,
> Hamza <Hamza.Mahfooz@amd.com>; Lin, Wayne <Wayne.Lin@amd.com>
> Cc: markyacoub@google.com; Wu, Hersen <hersenxs.wu@amd.com>
> Subject: [PATCH 3/3] [i-g-t] tests/amdgpu/amd_ilr: Fix psr edp rx crc read
> timeout
>
> With debugfs disallow_edp_enter_psr, disable edp psr before tx read rx crc.
>
> With set_all_output_pipe_to_none of test_init, tx write dpcd 0x600=2. this
> will let dpcd 0x170=0.
> rx psr and crc check for rx internal logic are disabled.
> with disallow_edp_enter_psr, when set test patterns are committed by
> igt_display_commit_atomic, kernel driver will turn on edp with dpcd 0x170=0.
> then tx read rx crc successfully.
>
> Signed-off-by: Hersen Wu <hersenxs.wu@amd.com>
> ---
> tests/amdgpu/amd_ilr.c | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
>
> diff --git a/tests/amdgpu/amd_ilr.c b/tests/amdgpu/amd_ilr.c index
> b2c0f294d..1f048d665 100644
> --- a/tests/amdgpu/amd_ilr.c
> +++ b/tests/amdgpu/amd_ilr.c
> @@ -205,11 +205,32 @@ static void test_flow(data_t *data, enum sub_test
> option)
> continue;
> }
>
> + /* igt_amd_output_has_ilr_setting check if debugfs exist,
> + * but ilr settings could be all 0s -- not supported.
> + * need check if ilr settings values are supported.
> + */
> + igt_amd_read_ilr_setting(data->drm_fd, output->name, data-
> >supported_ilr);
> + if (data->supported_ilr[0] == 0)
> + continue;
> +
> igt_info("Testing on output: %s\n", output->name);
>
> /* Init only if display supports ilr link settings */
> test_init(data, output);
>
> + /* with set_all_output_pipe_to_none within test_init,
> + * kernel driver tx write dpcd 0x600=2 to rx. edp rx
> + * exit psr state and stop verify crc from main link.
> + * with disabllow edp enter psr within kernel, when run
Typo: disabllow
> + * set test pattern, display is turned on. kernel driver
> + * tx will not notify rx psr enable and crc checking by
> + * rx. by this, when tx want to read crc from rx, rx will
> + * check crc and response right away. timeout will not
> + * happens.
> + */
> + if (option == ILR_POLICY)
> + igt_amd_disallow_edp_enter_psr(data->drm_fd,
> output->name, true);
I think can just disable psr. Don't have to specify the option.
Other than that, lgtm. Thanks!
> +
> mode = igt_output_get_mode(output);
> igt_assert(mode);
>
> @@ -243,6 +264,10 @@ static void test_flow(data_t *data, enum sub_test
> option)
> igt_remove_fb(data->drm_fd, &data->fb);
>
> test_fini(data);
> +
> + /* restore allow kernel driver eDP PSR */
> + if (option == ILR_POLICY)
> + igt_amd_disallow_edp_enter_psr(data->drm_fd,
> output->name, false);
> }
>
> }
> --
> 2.25.1
--
Regards,
Wayne Lin
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
@ 2024-01-18 13:14 Hersen Wu
2024-01-18 15:03 ` Lin, Wayne
0 siblings, 1 reply; 9+ messages in thread
From: Hersen Wu @ 2024-01-18 13:14 UTC (permalink / raw)
To: igt-dev, rodrigo.siqueira, aurabindo.pillai, alex.hung,
hamza.mahfooz, wayne.lin
Cc: Hersen Wu, markyacoub
When igt app call this debugfs, it will pass disable flag
to kernel. The flag will block psr setup and enable.
When igt read psr edp rx crc, read may be timeout.
After bootup, AMD kernel driver setup psr with dpcd 0x170 = 5.
this notify rx psr enable and let rx fw start checking crc
for rx fw internal logic. rx fw may not update crc read count
within dpcd 0x246. read count is always 0. this will lead tx
crc reading timeout.
With IGT app sequence below, rx fw crc checking for rx internal
logic is disabled. upon tx read rx crc, rx fw will check crc and
update crc count within dpcd 0x246. so IGT app can read rx crc
successfully.
expected app sequence is as below:
1. disable eDP PHY and notify eDP rx with dpcd 0x600 = 2.
2. echo 0x1 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr
3. enable eDP PHY and notify eDP rx with dpcd 0x600 = 1 but
without dpcd 0x170 = 5.
4. read crc from rx dpcd 0x270, 0x246, etc.
5. echo 0x0 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr.
this will let eDP back to normal with psr setup dpcd 0x170 = 5.
Signed-off-by: Hersen Wu <hersenxs.wu@amd.com>
---
lib/igt_amd.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_amd.h | 2 ++
2 files changed, 51 insertions(+)
diff --git a/lib/igt_amd.c b/lib/igt_amd.c
index 247a42f37..d0b53c08a 100644
--- a/lib/igt_amd.c
+++ b/lib/igt_amd.c
@@ -1153,6 +1153,55 @@ void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool ena
close(hpd_fd);
}
+/**
+ * igt_amd_disallow_edp_enter_psr: notify kernel skip edp psr setup and enable
+ * @drm_fd: DRM file descriptor
+ * @connector_name: The connector's name
+ * @enable: skip kernel eDP psr setup and enable -- disallow edp enter psr
+ * example usage: disallow psr
+ * echo 0x1 >
+ * /sys/kernel/debug/dri/0/eDP-1/disallow_edp_enter_psr
+ *
+ * expected IGT sequence is as below:
+ * 1. disable eDP PHY and notify eDP rx with dpcd 0x600 = 2.
+ * for example, kmstest_set_connector_dpms off will do this.
+ * 2. echo 0x1 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr
+ * 3. enable eDP PHY and notify eDP rx with dpcd 0x600 = 1 but
+ * without dpcd 0x170 = 5.
+ * for example, kmstest_set_connector_dpms on will do this.
+ * 4. read crc from rx dpcd 0x270, 0x246, etc.
+ * igt_pipe_crc_collect_crc will do this.
+ * 5. echo 0x0 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr.
+ * this will let eDP back to normal with psr setup dpcd 0x170 = 5.
+ */
+void igt_amd_disallow_edp_enter_psr(int drm_fd, char *connector_name, bool enable)
+{
+ int fd, ret, wr_len;
+ const char *allow_edp_psr = "1";
+ const char *dis_allow_edp_psr = "0";
+
+ /* if current psr is not enabled, skip this debugfs */
+ if (!igt_amd_psr_support_drv(drm_fd, connector_name, PSR_MODE_1) &&
+ !igt_amd_psr_support_drv(drm_fd, connector_name, PSR_MODE_2))
+ return;
+
+ fd = igt_debugfs_connector_dir(drm_fd, connector_name, O_RDONLY);
+ igt_assert(fd >= 0);
+ ret = openat(fd, DEBUGFS_DISALLOW_EDP_ENTER_PSR, O_WRONLY);
+ close(fd);
+ igt_assert(ret >= 0);
+
+ if (enable) {
+ wr_len = write(ret, allow_edp_psr, strlen(allow_edp_psr));
+ igt_assert_eq(wr_len, strlen(allow_edp_psr));
+ } else {
+ wr_len = write(ret, dis_allow_edp_psr, strlen(dis_allow_edp_psr));
+ igt_assert_eq(wr_len, strlen(dis_allow_edp_psr));
+ }
+
+ close(ret);
+}
+
static bool get_dm_capabilities(int drm_fd, char *buf, size_t size)
{
int ret, fd;
diff --git a/lib/igt_amd.h b/lib/igt_amd.h
index 254b5d37b..6780b99de 100644
--- a/lib/igt_amd.h
+++ b/lib/igt_amd.h
@@ -50,6 +50,7 @@
#define DEBUGFS_EDP_PSR_CAP "psr_capability"
#define DEBUGFS_EDP_PSR_STATE "psr_state"
#define DEBUGFS_ALLOW_EDP_HOTPLUG_DETECT "allow_edp_hotplug_detection"
+#define DEBUGFS_DISALLOW_EDP_ENTER_PSR "disallow_edp_enter_psr"
/* amdgpu DM interface entries */
#define DEBUGFS_DM_VISUAL_CONFIRM "amdgpu_dm_visual_confirm"
@@ -194,6 +195,7 @@ bool igt_amd_psr_support_drv(int drm_fd, char *connector_name, enum psr_mode mod
bool igt_amd_output_has_psr_state(int drm_fd, char *connector_name);
int igt_amd_read_psr_state(int drm_fd, char *connector_name);
void igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool enable);
+void igt_amd_disallow_edp_enter_psr(int drm_fd, char *connector_name, bool enable);
/* DM interface helpers */
bool igt_amd_has_visual_confirm(int drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
2024-01-18 13:14 [PATCH 1/3] [i-g-t] " Hersen Wu
@ 2024-01-18 15:03 ` Lin, Wayne
0 siblings, 0 replies; 9+ messages in thread
From: Lin, Wayne @ 2024-01-18 15:03 UTC (permalink / raw)
To: Wu, Hersen, igt-dev@lists.freedesktop.org, Siqueira, Rodrigo,
Pillai, Aurabindo, Hung, Alex, Mahfooz, Hamza
Cc: Wu, Hersen, markyacoub@google.com
[Public]
Series lgtm.
Reviewed-by: Wayne Lin <wayne.lin@amd.com>
> -----Original Message-----
> From: Hersen Wu <hersenxs.wu@amd.com>
> Sent: Thursday, January 18, 2024 9:15 PM
> To: igt-dev@lists.freedesktop.org; Siqueira, Rodrigo
> <Rodrigo.Siqueira@amd.com>; Pillai, Aurabindo
> <Aurabindo.Pillai@amd.com>; Hung, Alex <Alex.Hung@amd.com>; Mahfooz,
> Hamza <Hamza.Mahfooz@amd.com>; Lin, Wayne <Wayne.Lin@amd.com>
> Cc: markyacoub@google.com; Wu, Hersen <hersenxs.wu@amd.com>
> Subject: [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr
>
> When igt app call this debugfs, it will pass disable flag to kernel. The flag will
> block psr setup and enable.
>
> When igt read psr edp rx crc, read may be timeout.
> After bootup, AMD kernel driver setup psr with dpcd 0x170 = 5.
> this notify rx psr enable and let rx fw start checking crc for rx fw internal logic.
> rx fw may not update crc read count within dpcd 0x246. read count is always
> 0. this will lead tx crc reading timeout.
>
> With IGT app sequence below, rx fw crc checking for rx internal logic is disabled.
> upon tx read rx crc, rx fw will check crc and update crc count within dpcd
> 0x246. so IGT app can read rx crc successfully.
>
> expected app sequence is as below:
> 1. disable eDP PHY and notify eDP rx with dpcd 0x600 = 2.
> 2. echo 0x1 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr
> 3. enable eDP PHY and notify eDP rx with dpcd 0x600 = 1 but
> without dpcd 0x170 = 5.
> 4. read crc from rx dpcd 0x270, 0x246, etc.
> 5. echo 0x0 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr.
> this will let eDP back to normal with psr setup dpcd 0x170 = 5.
>
> Signed-off-by: Hersen Wu <hersenxs.wu@amd.com>
> ---
> lib/igt_amd.c | 49
> +++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_amd.h | 2 ++
> 2 files changed, 51 insertions(+)
>
> diff --git a/lib/igt_amd.c b/lib/igt_amd.c index 247a42f37..d0b53c08a
> 100644
> --- a/lib/igt_amd.c
> +++ b/lib/igt_amd.c
> @@ -1153,6 +1153,55 @@ void igt_amd_allow_edp_hotplug_detect(int
> drm_fd, char *connector_name, bool ena
> close(hpd_fd);
> }
>
> +/**
> + * igt_amd_disallow_edp_enter_psr: notify kernel skip edp psr setup and
> +enable
> + * @drm_fd: DRM file descriptor
> + * @connector_name: The connector's name
> + * @enable: skip kernel eDP psr setup and enable -- disallow edp enter
> +psr
> + * example usage: disallow psr
> + * echo 0x1 >
> + * /sys/kernel/debug/dri/0/eDP-1/disallow_edp_enter_psr
> + *
> + * expected IGT sequence is as below:
> + * 1. disable eDP PHY and notify eDP rx with dpcd 0x600 = 2.
> + * for example, kmstest_set_connector_dpms off will do this.
> + * 2. echo 0x1 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr
> + * 3. enable eDP PHY and notify eDP rx with dpcd 0x600 = 1 but
> + * without dpcd 0x170 = 5.
> + * for example, kmstest_set_connector_dpms on will do this.
> + * 4. read crc from rx dpcd 0x270, 0x246, etc.
> + * igt_pipe_crc_collect_crc will do this.
> + * 5. echo 0x0 /sys/kernel/debug/dri/0/eDP-X/disallow_edp_enter_psr.
> + * this will let eDP back to normal with psr setup dpcd 0x170 = 5.
> + */
> +void igt_amd_disallow_edp_enter_psr(int drm_fd, char *connector_name,
> +bool enable) {
> + int fd, ret, wr_len;
> + const char *allow_edp_psr = "1";
> + const char *dis_allow_edp_psr = "0";
> +
> + /* if current psr is not enabled, skip this debugfs */
> + if (!igt_amd_psr_support_drv(drm_fd, connector_name,
> PSR_MODE_1) &&
> + !igt_amd_psr_support_drv(drm_fd, connector_name,
> PSR_MODE_2))
> + return;
> +
> + fd = igt_debugfs_connector_dir(drm_fd, connector_name,
> O_RDONLY);
> + igt_assert(fd >= 0);
> + ret = openat(fd, DEBUGFS_DISALLOW_EDP_ENTER_PSR, O_WRONLY);
> + close(fd);
> + igt_assert(ret >= 0);
> +
> + if (enable) {
> + wr_len = write(ret, allow_edp_psr, strlen(allow_edp_psr));
> + igt_assert_eq(wr_len, strlen(allow_edp_psr));
> + } else {
> + wr_len = write(ret, dis_allow_edp_psr,
> strlen(dis_allow_edp_psr));
> + igt_assert_eq(wr_len, strlen(dis_allow_edp_psr));
> + }
> +
> + close(ret);
> +}
> +
> static bool get_dm_capabilities(int drm_fd, char *buf, size_t size) {
> int ret, fd;
> diff --git a/lib/igt_amd.h b/lib/igt_amd.h index 254b5d37b..6780b99de
> 100644
> --- a/lib/igt_amd.h
> +++ b/lib/igt_amd.h
> @@ -50,6 +50,7 @@
> #define DEBUGFS_EDP_PSR_CAP "psr_capability"
> #define DEBUGFS_EDP_PSR_STATE "psr_state"
> #define DEBUGFS_ALLOW_EDP_HOTPLUG_DETECT
> "allow_edp_hotplug_detection"
> +#define DEBUGFS_DISALLOW_EDP_ENTER_PSR "disallow_edp_enter_psr"
>
> /* amdgpu DM interface entries */
> #define DEBUGFS_DM_VISUAL_CONFIRM "amdgpu_dm_visual_confirm"
> @@ -194,6 +195,7 @@ bool igt_amd_psr_support_drv(int drm_fd, char
> *connector_name, enum psr_mode mod bool
> igt_amd_output_has_psr_state(int drm_fd, char *connector_name); int
> igt_amd_read_psr_state(int drm_fd, char *connector_name); void
> igt_amd_allow_edp_hotplug_detect(int drm_fd, char *connector_name, bool
> enable);
> +void igt_amd_disallow_edp_enter_psr(int drm_fd, char *connector_name,
> +bool enable);
>
> /* DM interface helpers */
> bool igt_amd_has_visual_confirm(int drm_fd);
> --
> 2.25.1
--
Regards,
Wayne Lin
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-01-18 15:04 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-18 2:36 [PATCH 1/3] [i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Hersen Wu
2024-01-18 2:36 ` [PATCH 2/3] [i-g-t] tests/amdgpu/amd_bypass: Fix psr edp r/x crc read timeout Hersen Wu
2024-01-18 2:36 ` [PATCH 3/3] [i-g-t] tests/amdgpu/amd_ilr: Fix psr edp rx " Hersen Wu
2024-01-18 10:16 ` Lin, Wayne
2024-01-18 3:20 ` ✓ CI.xeBAT: success for series starting with [1/3,i-g-t] lib/igt_amd: add debugfs disallow edp enter psr Patchwork
2024-01-18 3:34 ` ✓ Fi.CI.BAT: " Patchwork
2024-01-18 5:21 ` ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-01-18 13:14 [PATCH 1/3] [i-g-t] " Hersen Wu
2024-01-18 15:03 ` Lin, Wayne
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox