* [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table
@ 2025-11-13 7:05 Xin Wang
2025-11-13 7:57 ` ✗ Xe.CI.BAT: failure for " Patchwork
` (13 more replies)
0 siblings, 14 replies; 29+ messages in thread
From: Xin Wang @ 2025-11-13 7:05 UTC (permalink / raw)
To: igt-dev; +Cc: Xin Wang, Matthew Auld
Added a helper function to read and parse PAT entries from the
debugfs file, including decoding of PAT fields and reserved entry
info.
Updates the pat_index_all test to utilize the parsed PAT table for
more accurate detection of hardware-reserved PAT indices on Gen20+
devices, and prints detailed PAT entry information for debugging.
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
tests/intel/xe_pat.c | 118 ++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 116 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 59dfb6b11..36d429c97 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -77,6 +77,96 @@ static void userptr_coh_none(int fd)
xe_vm_destroy(fd, vm);
}
+#define BITS_TO(n) (n >= sizeof(long) * 8 ? ~0 : (1UL << (n)) - 1)
+#define BITMASK(high, low) (uint32_t)(BITS_TO(high+1) & ~BITS_TO(low))
+#define FIELD_GET(val, high, low) (((val) & (BITMASK(high, low))) >> (low))
+#define FIELD_GET_BIT(val, n) FIELD_GET(val, n, n)
+
+#define XE_NO_PROMOTE(val) FIELD_GET_BIT(val, 10)
+#define XE_COMP_EN(val) FIELD_GET_BIT(val, 9)
+#define XE_L3_CLOS(val) FIELD_GET(val, 7, 6)
+#define XE_L3_POLICY(val) FIELD_GET(val, 5, 4)
+#define XE_L4_POLICY(val) FIELD_GET(val, 3, 2)
+#define XE_COH_MODE(val) FIELD_GET(val, 1, 0)
+
+#define XE_PAT_MAX_ENTRIES 32
+
+struct xe_pat_table_entry {
+ uint32_t pat;
+ bool reserved;
+};
+
+/**
+ * xe_read_pat_table - Helper function to read PAT (Page Attribute Table) entries
+ * from a debugfs file
+ *
+ * @drm_fd: DRM device fd to use with igt_debugfs_open
+ * @debugfs_name: filename under device debugfs (e.g. "gt0/pat")
+ * @xe_pat_table: Pointer to an array where the read PAT entries will be stored
+ * @max_entries: Maximum number of PAT entries to read into the table
+ *
+ * Returns: The number of PAT entries successfully read, or a negative error
+ * code on failure (-EINVAL if debugfs_name is NULL, -ENOENT or -errno otherwise)
+ */
+static int32_t xe_read_pat_table(int drm_fd, const char *debugfs_name,
+ struct xe_pat_table_entry *xe_pat_table, uint8_t max_entries)
+{
+ char *line = NULL;
+ size_t len = 0;
+ ssize_t read;
+ int32_t parsed = 0;
+ int fd;
+ FILE *f = NULL;
+
+ if (!debugfs_name)
+ return -EINVAL;
+
+ fd = igt_debugfs_open(drm_fd, debugfs_name, O_RDONLY);
+ if (fd < 0)
+ return -ENOENT;
+ f = fdopen(fd, "r");
+ if (!f) {
+ close(fd);
+ return -errno;
+ }
+
+ while ((read = getline(&line, &len, f)) != -1) {
+ char *p, *s;
+ const char *patterns[] = {"]", "=", "[", ",", "]", "("};
+ bool found_all = true;
+ uint32_t hv = 0;
+
+ /* search the pattern: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
+ if (strncmp(line, "PAT[", 4) != 0)
+ continue;
+
+ s = line + 4;
+ for (int i = 0; i < ARRAY_SIZE(patterns); i++) {
+ p = strchr(s, patterns[i][0]);
+ if (!p) {
+ found_all = false;
+ break;
+ }
+ s = p;
+ }
+
+ if (!found_all)
+ continue;
+
+ if (sscanf(s, "(%x", &hv) == 1) {
+ if (xe_pat_table && parsed < max_entries) {
+ xe_pat_table[parsed].pat = hv;
+ xe_pat_table[parsed++].reserved = strchr(s, '*') != NULL;
+ }
+ }
+ }
+
+ free(line);
+ fclose(f);
+
+ return parsed;
+}
+
/**
* SUBTEST: pat-index-all
* Test category: functionality test
@@ -86,6 +176,7 @@ static void pat_index_all(int fd)
{
uint16_t dev_id = intel_get_drm_devid(fd);
size_t size = xe_get_default_alignment(fd);
+ struct xe_pat_table_entry xe_pat_table[XE_PAT_MAX_ENTRIES] = {0};
uint32_t vm, bo;
uint8_t pat_index;
@@ -114,10 +205,33 @@ static void pat_index_all(int fd)
igt_assert(intel_get_max_pat_index(fd));
+ if (intel_gen(dev_id) >= 20) {
+ /* Read and decode the PAT entries from debugfs */
+ int32_t pat_entries = xe_read_pat_table(fd, "gt0/pat", xe_pat_table, XE_PAT_MAX_ENTRIES);
+ igt_assert(pat_entries > 0 && pat_entries <= XE_PAT_MAX_ENTRIES);
+
+ for (int i = 0; i < pat_entries; i++) {
+ uint32_t pat = xe_pat_table[i].pat;
+ igt_debug("PAT[%2d] = [ %u, %u, %u, %u, %u, %u] (%#8x)%s\n", i,
+ XE_NO_PROMOTE(pat),
+ XE_COMP_EN(pat),
+ XE_L3_CLOS(pat),
+ XE_L3_POLICY(pat),
+ XE_L4_POLICY(pat),
+ XE_COH_MODE(pat),
+ pat,
+ xe_pat_table[i].reserved ? " *" : "");
+ }
+ igt_assert(pat_entries == intel_get_max_pat_index(fd) + 1);
+ }
+
for (pat_index = 0; pat_index <= intel_get_max_pat_index(fd);
pat_index++) {
- if (intel_get_device_info(dev_id)->graphics_ver >= 20 &&
- pat_index >= 16 && pat_index <= 19) { /* hw reserved */
+
+ bool hw_reserved = intel_gen(dev_id) >= 20 ?
+ xe_pat_table[pat_index].reserved : false;
+
+ if (hw_reserved) {
igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x40000,
size, DRM_XE_VM_BIND_OP_MAP, 0, NULL, 0, 0,
pat_index, 0),
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
* ✗ Xe.CI.BAT: failure for tests/intel/xe_pat: add helper funtion to read PAT table
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
@ 2025-11-13 7:57 ` Patchwork
2025-11-13 14:33 ` ✓ Xe.CI.Full: success " Patchwork
` (12 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-11-13 7:57 UTC (permalink / raw)
To: Wang, X; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2438 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table
URL : https://patchwork.freedesktop.org/series/157481/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8622_BAT -> XEIGTPW_14048_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14048_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14048_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14048_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_module_load@load:
- bat-dg2-oem2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/bat-dg2-oem2/igt@xe_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/bat-dg2-oem2/igt@xe_module_load@load.html
* igt@xe_pat@pat-index-all:
- bat-ptl-vm: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/bat-ptl-vm/igt@xe_pat@pat-index-all.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/bat-ptl-vm/igt@xe_pat@pat-index-all.html
Known issues
------------
Here are the changes found in XEIGTPW_14048_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@b-edp1:
- bat-adlp-7: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#4543]) +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* IGT: IGT_8622 -> IGTPW_14048
IGTPW_14048: 14048
IGT_8622: 8622
xe-4096-2395af7950abb996316c9ee00f68a639fb6eb1c0: 2395af7950abb996316c9ee00f68a639fb6eb1c0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/index.html
[-- Attachment #2: Type: text/html, Size: 3082 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✓ Xe.CI.Full: success for tests/intel/xe_pat: add helper funtion to read PAT table
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
2025-11-13 7:57 ` ✗ Xe.CI.BAT: failure for " Patchwork
@ 2025-11-13 14:33 ` Patchwork
2025-11-13 20:55 ` ✓ i915.CI.BAT: " Patchwork
` (11 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-11-13 14:33 UTC (permalink / raw)
To: Wang, X; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 70522 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8622_FULL -> XEIGTPW_14048_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Known issues
------------
Here are the changes found in XEIGTPW_14048_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#5993]) +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#3658])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#607])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#610])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +12 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2191])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +5 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#367]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#367]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2669]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652] / [Intel XE#787]) +22 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +18 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +76 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3113])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2724]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2325])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-433/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#306])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252]) +12 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +6 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#6507])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1178]) +4 other tests fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_content_protection@atomic.html
- shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#307])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#307])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2390])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2341])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1188]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@kms_content_protection@uevent.html
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@kms_content_protection@uevent.html
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1188]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2320]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#308])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2321])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1424]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2291]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][50] -> [FAIL][51] ([Intel XE#1475])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1508])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4354])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4331])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2244])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#776])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-464/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1138])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2316]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-panning@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#4842]) +1 other test incomplete
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning@bd-hdmi-a6-dp4.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-435/igt@kms_flip@2x-flip-vs-panning@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2316]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#301])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][68] -> [INCOMPLETE][69] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1397] / [Intel XE#1745]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1401] / [Intel XE#1745])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2293]) +6 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#352])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +20 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2311]) +34 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#6313]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#5390]) +20 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#5427])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#6312])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2312]) +13 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#651]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#6312]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#653]) +19 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2313]) +33 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2350])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#656]) +22 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1470])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1503])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2925]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@kms_joiner@basic-max-non-joiner.html
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2925])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_joiner@basic-max-non-joiner.html
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#6590])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2925] / [Intel XE#2927]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-466/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2927])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#599]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2393]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#4596])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#5021])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2763]) +9 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +7 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#870])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_pm_backlight@basic-brightness.html
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#870])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][105] ([Intel XE#2029])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1439] / [Intel XE#3141])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1406] / [Intel XE#4608]) +7 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-432/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1406] / [Intel XE#2387])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1122] / [Intel XE#1406]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1406]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1406] / [Intel XE#4609])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_psr@psr-basic.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [FAIL][119] ([Intel XE#4689])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#3414]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#3414] / [Intel XE#3904])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2413])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1435]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#6503]) +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_sharpness_filter@invalid-plane-with-filter.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#455]) +17 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2168])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][128] ([Intel XE#6390]) +1 other test fail
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1499]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#6599])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#6010])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-466/igt@xe_configfs@survivability-mode.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2504])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@invalid-sampling-rate:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#5626])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-464/igt@xe_eu_stall@invalid-sampling-rate.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#4837]) +15 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#4837]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-466/igt@xe_eudebug_online@interrupt-other-debuggable.html
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#4837]) +7 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_evict@evict-beng-large-cm:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#688]) +6 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@xe_evict@evict-beng-large-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][138] ([Intel XE#6321]) +1 other test incomplete
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1392]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2322]) +9 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#288]) +23 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2360])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#5007])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#5007])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#4943]) +14 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@process-many-large-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#4943]) +37 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#4915]) +280 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-464/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#5893])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2833])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2459] / [Intel XE#2596])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#512])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@xe_mmap@small-bar.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177]) -> ([PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [SKIP][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203]) ([Intel XE#378])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-3/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-1/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-1/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-7/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-5/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-7/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-2/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-7/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-7/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-2/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-5/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-5/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-2/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-3/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-3/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-4/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-4/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-4/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-4/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-8/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-8/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-8/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-8/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-1/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-1/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-7/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-3/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-4/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_module_load@load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#3573]) +10 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#1420])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2236])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#2284] / [Intel XE#366])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3hot-i2c:
- shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#5742])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][209] ([Intel XE#2284]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#584])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#4733]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#4733]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][214] ([Intel XE#944]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#944]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@xe_query@multigpu-query-topology.html
- shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#944])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#4130])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#4351])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-436/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#4351])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
* igt@xe_survivability@i2c-functionality:
- shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#6529])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-433/igt@xe_survivability@i2c-functionality.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][221] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][223] ([Intel XE#3862]) -> [PASS][224] +1 other test pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][225] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][226] +1 other test pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][227] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][229] ([Intel XE#2291]) -> [PASS][230] +1 other test pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][231] ([Intel XE#1340]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [SKIP][233] ([Intel XE#2316]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][235] ([Intel XE#301]) -> [PASS][236] +1 other test pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][237] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][239] ([Intel XE#1503]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][241] ([Intel XE#718]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][243] ([Intel XE#4459]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [SKIP][245] ([Intel XE#1499]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_vrr@negative-basic.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-4/igt@kms_vrr@negative-basic.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][247] ([Intel XE#5625]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_intel_bb@blit-simple:
- shard-dg2-set2: [INCOMPLETE][249] ([Intel XE#2594]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-464/igt@xe_intel_bb@blit-simple.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-466/igt@xe_intel_bb@blit-simple.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0:
- shard-lnl: [FAIL][251] ([Intel XE#6251]) -> [PASS][252] +1 other test pass
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][253] ([Intel XE#5937]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][255] ([Intel XE#2341]) -> [FAIL][256] ([Intel XE#1178])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_content_protection@srm.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][257] ([Intel XE#2312]) -> [SKIP][258] ([Intel XE#2311]) +6 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][259] ([Intel XE#5390]) -> [SKIP][260] ([Intel XE#2312]) +5 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][261] ([Intel XE#2312]) -> [SKIP][262] ([Intel XE#5390]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][263] ([Intel XE#2311]) -> [SKIP][264] ([Intel XE#2312]) +8 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][265] ([Intel XE#2312]) -> [SKIP][266] ([Intel XE#2313]) +8 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][267] ([Intel XE#2313]) -> [SKIP][268] ([Intel XE#2312]) +8 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][269] ([Intel XE#362]) -> [FAIL][270] ([Intel XE#1729])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][271] ([Intel XE#2426]) -> [SKIP][272] ([Intel XE#2509])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8622/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6313
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6590
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8622 -> IGTPW_14048
IGTPW_14048: 14048
IGT_8622: 8622
xe-4096-2395af7950abb996316c9ee00f68a639fb6eb1c0: 2395af7950abb996316c9ee00f68a639fb6eb1c0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14048/index.html
[-- Attachment #2: Type: text/html, Size: 81484 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
2025-11-13 7:57 ` ✗ Xe.CI.BAT: failure for " Patchwork
2025-11-13 14:33 ` ✓ Xe.CI.Full: success " Patchwork
@ 2025-11-13 20:55 ` Patchwork
2025-11-13 21:40 ` [PATCH] " Wang, X
` (10 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-11-13 20:55 UTC (permalink / raw)
To: Wang, X; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8011 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from IGT_8622 -> IGTPW_14048
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/index.html
Participating hosts (44 -> 44)
------------------------------
Additional (1): bat-atsm-1
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14048 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#1849] / [i915#2582])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@fbdev@info.html
* igt@fbdev@read:
- bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#2582]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@fbdev@read.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4077]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/bat-dg2-8/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-dg2-8/igt@i915_selftest@live.html
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][9] ([i915#12061] / [i915#14204])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][10] ([i915#14204])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@i915_selftest@live@mman.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-atsm-1: NOTRUN -> [DMESG-FAIL][15] ([i915#12061])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6077]) +37 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#6078]) +22 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#6093]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][19] -> [FAIL][20] ([i915#14867])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-atsm-1: NOTRUN -> [SKIP][21] ([i915#1836]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][22] ([i915#7357])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][23] ([i915#6094])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][24] +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][25] ([i915#12061]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/bat-mtlp-8/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-mtlp-8/igt@i915_selftest@live.html
- bat-jsl-1: [DMESG-FAIL][27] ([i915#15281]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/bat-jsl-1/igt@i915_selftest@live.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-jsl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][29] ([i915#12061]) -> [PASS][30] +1 other test pass
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/bat-arls-5/igt@i915_selftest@live@workarounds.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#15281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15281
[i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6094
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7357]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7357
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8622 -> IGTPW_14048
CI-20190529: 20190529
CI_DRM_17537: 2395af7950abb996316c9ee00f68a639fb6eb1c0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14048: 14048
IGT_8622: 8622
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/index.html
[-- Attachment #2: Type: text/html, Size: 9711 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* RE: [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (2 preceding siblings ...)
2025-11-13 20:55 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-11-13 21:40 ` Wang, X
2025-11-13 22:12 ` ✓ i915.CI.Full: success for " Patchwork
` (9 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Wang, X @ 2025-11-13 21:40 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: Auld, Matthew
The test is failed with VF . The gt0/pat is not existing on SRIOV VF tests,
I planned to add a pat_swcfg debugfs file in KMD side to print out PAT table for both VF / PF.
> -----Original Message-----
> From: Wang, X <x.wang@intel.com>
> Sent: Wednesday, November 12, 2025 23:05
> To: igt-dev@lists.freedesktop.org
> Cc: Wang, X <x.wang@intel.com>; Auld, Matthew <matthew.auld@intel.com>
> Subject: [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table
>
> Added a helper function to read and parse PAT entries from the debugfs file,
> including decoding of PAT fields and reserved entry info.
>
> Updates the pat_index_all test to utilize the parsed PAT table for more
> accurate detection of hardware-reserved PAT indices on Gen20+ devices, and
> prints detailed PAT entry information for debugging.
>
> CC: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Xin Wang <x.wang@intel.com>
> ---
> tests/intel/xe_pat.c | 118 ++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 116 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c index
> 59dfb6b11..36d429c97 100644
> --- a/tests/intel/xe_pat.c
> +++ b/tests/intel/xe_pat.c
> @@ -77,6 +77,96 @@ static void userptr_coh_none(int fd)
> xe_vm_destroy(fd, vm);
> }
>
> +#define BITS_TO(n) (n >= sizeof(long) * 8 ? ~0 : (1UL << (n)) - 1)
> +#define BITMASK(high, low) (uint32_t)(BITS_TO(high+1) & ~BITS_TO(low))
> +#define FIELD_GET(val, high, low) (((val) & (BITMASK(high, low))) >>
> (low))
> +#define FIELD_GET_BIT(val, n) FIELD_GET(val, n, n)
> +
> +#define XE_NO_PROMOTE(val) FIELD_GET_BIT(val, 10)
> +#define XE_COMP_EN(val) FIELD_GET_BIT(val, 9)
> +#define XE_L3_CLOS(val) FIELD_GET(val, 7, 6)
> +#define XE_L3_POLICY(val) FIELD_GET(val, 5, 4)
> +#define XE_L4_POLICY(val) FIELD_GET(val, 3, 2)
> +#define XE_COH_MODE(val) FIELD_GET(val, 1, 0)
> +
> +#define XE_PAT_MAX_ENTRIES 32
> +
> +struct xe_pat_table_entry {
> + uint32_t pat;
> + bool reserved;
> +};
> +
> +/**
> + * xe_read_pat_table - Helper function to read PAT (Page Attribute
> +Table) entries
> + * from a debugfs file
> + *
> + * @drm_fd: DRM device fd to use with igt_debugfs_open
> + * @debugfs_name: filename under device debugfs (e.g. "gt0/pat")
> + * @xe_pat_table: Pointer to an array where the read PAT entries will
> +be stored
> + * @max_entries: Maximum number of PAT entries to read into the table
> + *
> + * Returns: The number of PAT entries successfully read, or a negative error
> + * code on failure (-EINVAL if debugfs_name is NULL, -ENOENT or -errno
> otherwise)
> + */
> +static int32_t xe_read_pat_table(int drm_fd, const char *debugfs_name,
> + struct xe_pat_table_entry *xe_pat_table,
> uint8_t max_entries) {
> + char *line = NULL;
> + size_t len = 0;
> + ssize_t read;
> + int32_t parsed = 0;
> + int fd;
> + FILE *f = NULL;
> +
> + if (!debugfs_name)
> + return -EINVAL;
> +
> + fd = igt_debugfs_open(drm_fd, debugfs_name, O_RDONLY);
> + if (fd < 0)
> + return -ENOENT;
> + f = fdopen(fd, "r");
> + if (!f) {
> + close(fd);
> + return -errno;
> + }
> +
> + while ((read = getline(&line, &len, f)) != -1) {
> + char *p, *s;
> + const char *patterns[] = {"]", "=", "[", ",", "]", "("};
> + bool found_all = true;
> + uint32_t hv = 0;
> +
> + /* search the pattern: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
> + if (strncmp(line, "PAT[", 4) != 0)
> + continue;
> +
> + s = line + 4;
> + for (int i = 0; i < ARRAY_SIZE(patterns); i++) {
> + p = strchr(s, patterns[i][0]);
> + if (!p) {
> + found_all = false;
> + break;
> + }
> + s = p;
> + }
> +
> + if (!found_all)
> + continue;
> +
> + if (sscanf(s, "(%x", &hv) == 1) {
> + if (xe_pat_table && parsed < max_entries) {
> + xe_pat_table[parsed].pat = hv;
> + xe_pat_table[parsed++].reserved = strchr(s,
> '*') != NULL;
> + }
> + }
> + }
> +
> + free(line);
> + fclose(f);
> +
> + return parsed;
> +}
> +
> /**
> * SUBTEST: pat-index-all
> * Test category: functionality test
> @@ -86,6 +176,7 @@ static void pat_index_all(int fd) {
> uint16_t dev_id = intel_get_drm_devid(fd);
> size_t size = xe_get_default_alignment(fd);
> + struct xe_pat_table_entry xe_pat_table[XE_PAT_MAX_ENTRIES] = {0};
> uint32_t vm, bo;
> uint8_t pat_index;
>
> @@ -114,10 +205,33 @@ static void pat_index_all(int fd)
>
> igt_assert(intel_get_max_pat_index(fd));
>
> + if (intel_gen(dev_id) >= 20) {
> + /* Read and decode the PAT entries from debugfs */
> + int32_t pat_entries = xe_read_pat_table(fd, "gt0/pat",
> xe_pat_table, XE_PAT_MAX_ENTRIES);
> + igt_assert(pat_entries > 0 && pat_entries <=
> XE_PAT_MAX_ENTRIES);
> +
> + for (int i = 0; i < pat_entries; i++) {
> + uint32_t pat = xe_pat_table[i].pat;
> + igt_debug("PAT[%2d] = [ %u, %u, %u, %u, %u, %u]
> (%#8x)%s\n", i,
> + XE_NO_PROMOTE(pat),
> + XE_COMP_EN(pat),
> + XE_L3_CLOS(pat),
> + XE_L3_POLICY(pat),
> + XE_L4_POLICY(pat),
> + XE_COH_MODE(pat),
> + pat,
> + xe_pat_table[i].reserved ? " *" : "");
> + }
> + igt_assert(pat_entries == intel_get_max_pat_index(fd) + 1);
> + }
> +
> for (pat_index = 0; pat_index <= intel_get_max_pat_index(fd);
> pat_index++) {
> - if (intel_get_device_info(dev_id)->graphics_ver >= 20 &&
> - pat_index >= 16 && pat_index <= 19) { /* hw reserved */
> +
> + bool hw_reserved = intel_gen(dev_id) >= 20 ?
> + xe_pat_table[pat_index].reserved : false;
> +
> + if (hw_reserved) {
> igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0,
> 0x40000,
> size,
> DRM_XE_VM_BIND_OP_MAP, 0, NULL, 0, 0,
> pat_index, 0),
> --
> 2.43.0
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/xe_pat: add helper funtion to read PAT table
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (3 preceding siblings ...)
2025-11-13 21:40 ` [PATCH] " Wang, X
@ 2025-11-13 22:12 ` Patchwork
2025-12-06 1:12 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
` (8 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-11-13 22:12 UTC (permalink / raw)
To: Wang, X; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 187959 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from IGT_8622_full -> IGTPW_14048_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between IGT_8622_full and IGTPW_14048_full:
### New IGT tests (21) ###
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [8.12] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [7.04] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [7.10] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [7.18] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [9.93] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [9.49] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [9.55] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [9.52] s
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_14048_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@api_intel_bb@crc32.html
* igt@fbdev@unaligned-write:
- shard-rkl: [PASS][2] -> [SKIP][3] ([i915#14544] / [i915#2582])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@fbdev@unaligned-write.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@fbdev@unaligned-write.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#7697])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#3936])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#13008])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#7697]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#6335])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_eio@hibernate:
- shard-dg2: [PASS][13] -> [ABORT][14] ([i915#7975])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-3/igt@gem_eio@hibernate.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-10/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#4771])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4036])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#4525]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#4525])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][20] ([i915#6334]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#4812]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#3281]) +11 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-active:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#3281]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#3281]) +11 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3281]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4537] / [i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4860])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4613]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#4613]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@gem_lmem_swapping@parallel-multi.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4613]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#4613]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][33] ([i915#4613]) +6 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk2/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][34] -> [TIMEOUT][35] ([i915#5493]) +1 other test timeout
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3282]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#284])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gem_media_vme.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4083])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@basic-read-write:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4077]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@gem_mmap_gtt@basic-read-write.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4077])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@gem_mmap_gtt@basic-read-write.html
* igt@gem_mmap_gtt@basic-small-copy-xy:
- shard-rkl: [PASS][41] -> [DMESG-WARN][42] ([i915#12964]) +11 other tests dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@gem_mmap_gtt@basic-small-copy-xy.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@gem_mmap_gtt@basic-small-copy-xy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3282])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3282]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@gem_pread@self.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: [PASS][47] -> [TIMEOUT][48] ([i915#12964]) +1 other test timeout
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#13398])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: [PASS][50] -> [TIMEOUT][51] ([i915#12917] / [i915#12964]) +1 other test timeout
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [TIMEOUT][53] ([i915#12917] / [i915#12964])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#5190] / [i915#8428])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#8411]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#3297]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#3297] / [i915#3323])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3281] / [i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-5/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg2: NOTRUN -> [SKIP][61] +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][62] +9 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#2527]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gen9_exec_parse@allowed-all.html
- shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#2527] / [i915#2856]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#2856])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-9/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#2527]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#11527]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-3/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_module_load@load:
- shard-dg1: ([PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93]) -> ([PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [SKIP][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117]) ([i915#14785])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-18/igt@i915_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-14/igt@i915_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-12/igt@i915_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-16/igt@i915_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-19/igt@i915_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-12/igt@i915_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-18/igt@i915_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-14/igt@i915_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-17/igt@i915_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-13/igt@i915_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-15/igt@i915_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-16/igt@i915_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-12/igt@i915_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-16/igt@i915_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-18/igt@i915_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-19/igt@i915_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-15/igt@i915_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-13/igt@i915_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-15/igt@i915_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-17/igt@i915_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-17/igt@i915_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-19/igt@i915_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-14/igt@i915_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-12/igt@i915_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-13/igt@i915_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-16/igt@i915_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-14/igt@i915_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@i915_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-14/igt@i915_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-14/igt@i915_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-13/igt@i915_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@i915_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-16/igt@i915_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-15/igt@i915_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@i915_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-13/igt@i915_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-15/igt@i915_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@i915_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-12/igt@i915_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-14/igt@i915_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-12/igt@i915_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@i915_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-12/igt@i915_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-16/igt@i915_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@i915_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@i915_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-15/igt@i915_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@i915_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@i915_module_load@load.html
- shard-mtlp: ([PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141]) -> ([PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [SKIP][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165]) ([i915#14785])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-8/igt@i915_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-2/igt@i915_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-6/igt@i915_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-4/igt@i915_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-5/igt@i915_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-3/igt@i915_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-2/igt@i915_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-6/igt@i915_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-5/igt@i915_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-2/igt@i915_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-8/igt@i915_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-4/igt@i915_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-7/igt@i915_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-3/igt@i915_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-6/igt@i915_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-5/igt@i915_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-2/igt@i915_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-8/igt@i915_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-7/igt@i915_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-4/igt@i915_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-4/igt@i915_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-3/igt@i915_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-7/igt@i915_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-8/igt@i915_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@i915_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@i915_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-3/igt@i915_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@i915_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@i915_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@i915_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@i915_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@i915_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@i915_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@i915_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-3/igt@i915_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-3/igt@i915_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@i915_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@i915_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@i915_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@i915_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@i915_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@i915_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@i915_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@i915_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@i915_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@i915_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@i915_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@i915_module_load@load.html
- shard-rkl: ([PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190]) -> ([PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [SKIP][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214]) ([i915#14544] / [i915#14785])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@i915_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@i915_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@i915_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@i915_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@i915_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@i915_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@i915_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@i915_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@i915_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@i915_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@i915_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@i915_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@i915_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@i915_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@i915_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@i915_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@i915_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@i915_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@i915_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@i915_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@i915_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@i915_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@i915_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@i915_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@i915_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@i915_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@i915_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@i915_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@i915_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@i915_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@i915_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@i915_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@i915_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@i915_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@i915_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@i915_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-4/igt@i915_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-4/igt@i915_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@i915_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_module_load@load.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#6412])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_module_load@resize-bar.html
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#6412])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#8399])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#8399]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][219] ([i915#13790] / [i915#2681]) +1 other test warn
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][220] -> [INCOMPLETE][221] ([i915#13729] / [i915#13821])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-snb6/igt@i915_pm_rps@reset.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb5/igt@i915_pm_rps@reset.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#6245])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][223] ([i915#4817] / [i915#7443])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#6645])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [PASS][225] -> [INCOMPLETE][226] ([i915#4817]) +1 other test incomplete
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@i915_suspend@debugfs-reader.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#4817])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk6/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#7707])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#4212])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#12454] / [i915#12712])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12761])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#12761] / [i915#14995])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][233] -> [FAIL][234] ([i915#14857]) +1 other test fail
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][235] ([i915#1769])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#1769] / [i915#3555])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#5286]) +5 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-mtlp: [PASS][238] -> [FAIL][239] ([i915#12469] / [i915#5138])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#4538] / [i915#5286])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#5286]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#5286]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][243] -> [FAIL][244] ([i915#5138])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#3638]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#5190])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#4538] / [i915#5190]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#6187])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][249] +12 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#4538])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#10307] / [i915#10434] / [i915#6095])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#12313])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#12313])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14098] / [i915#6095]) +45 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#6095]) +29 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#10307] / [i915#6095]) +133 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#6095]) +59 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#12805])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12796]) +1 other test incomplete
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#6095]) +11 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#12313]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#12313])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#6095]) +43 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#6095]) +49 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#6095]) +91 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#3742])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3742])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#11151] / [i915#7828]) +6 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#11151] / [i915#7828]) +8 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#11151] / [i915#7828]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#11151] / [i915#7828])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#11151] / [i915#7828]) +6 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#11151] / [i915#14544] / [i915#7828])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#11151] / [i915#7828]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#2575])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color@degamma:
- shard-rkl: [PASS][276] -> [SKIP][277] ([i915#12655] / [i915#14544])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_color@degamma.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_color@degamma.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][279] ([i915#7173])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#6944] / [i915#9424])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#3116]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#3116] / [i915#3299])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#3116] / [i915#3299])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#3299])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#13049])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-1/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#13049]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: [PASS][288] -> [FAIL][289] ([i915#13566]) +1 other test fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-10/igt@kms_cursor_crc@cursor-random-64x21.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-9/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#3555]) +2 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#3555]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3555])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8814]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#11190] / [i915#14544])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#4103])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-rkl: [PASS][296] -> [SKIP][297] ([i915#11190] / [i915#14544])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-rkl: [PASS][298] -> [FAIL][299] ([i915#15277])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
- shard-tglu-1: [PASS][300] -> [FAIL][301] ([i915#15277])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg1: NOTRUN -> [SKIP][302] +7 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [PASS][303] -> [FAIL][304] ([i915#2346])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#9067])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#4103])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#4213])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#13691])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#1769] / [i915#3555] / [i915#3804])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#3804])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#13748])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#8812])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#14544]) +19 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#3840]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#3840])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#3840]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#3555] / [i915#3840])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#3840])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][319] ([i915#9878])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#4854])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#4854])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#1839])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#1839])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_feature_discovery@display-3x.html
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#1839])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#3637] / [i915#9934]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#9934]) +5 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#8381])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#14544] / [i915#9934])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#3637] / [i915#9934]) +3 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [PASS][330] -> [TIMEOUT][331] ([i915#14033] / [i915#14350])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][332] -> [TIMEOUT][333] ([i915#14033])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][334] ([i915#3637] / [i915#9934]) +7 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#9934]) +5 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-rkl: [PASS][336] -> [SKIP][337] ([i915#14544] / [i915#3637]) +6 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_flip@dpms-off-confusion-interruptible.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1:
- shard-mtlp: [PASS][338] -> [FAIL][339] ([i915#14600]) +1 other test fail
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html
* igt@kms_flip@flip-vs-fences-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [DMESG-WARN][340] ([i915#12964]) +3 other tests dmesg-warn
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_flip@flip-vs-fences-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#14544] / [i915#3637]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][342] -> [INCOMPLETE][343] ([i915#6113]) +1 other test incomplete
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-snb: [PASS][344] -> [FAIL][345] ([i915#14600]) +1 other test fail
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-snb4/igt@kms_flip@wf_vblank-ts-check.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb1/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#3555] / [i915#8810] / [i915#8813])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#8810] / [i915#8813])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#2672] / [i915#8813]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/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][350] ([i915#2587] / [i915#2672]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#2587] / [i915#2672] / [i915#3555])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#2672]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#14544] / [i915#3555]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#2672]) +3 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#2672] / [i915#3555]) +3 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#2672] / [i915#3555]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#2587] / [i915#2672]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#2672] / [i915#3555]) +3 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-glk10: NOTRUN -> [SKIP][360] +116 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
- shard-rkl: [PASS][361] -> [SKIP][362] ([i915#14544] / [i915#3555])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#2672] / [i915#3555]) +2 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#2587] / [i915#2672]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#8708]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#14544] / [i915#1849] / [i915#5354]) +8 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#1825]) +20 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#5354]) +9 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite:
- shard-rkl: [PASS][369] -> [SKIP][370] ([i915#14544] / [i915#1849] / [i915#5354]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][371] ([i915#10056])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk5/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][372] ([i915#5439])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#15102]) +7 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#15104]) +2 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][375] +77 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#10433] / [i915#15102] / [i915#3458])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][377] +54 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#1825]) +26 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#10055])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#9766])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#15102]) +18 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#15104]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][383] ([i915#15102]) +25 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#15102] / [i915#3458]) +6 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#15102] / [i915#3023]) +12 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#15102] / [i915#3458]) +3 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#8708]) +3 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#8708]) +6 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][389] ([i915#3555] / [i915#8228]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#3555] / [i915#8228]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@zero-clock:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#14544] / [i915#3555] / [i915#8826])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_invalid_mode@zero-clock.html
* igt@kms_invalid_mode@zero-hdisplay:
- shard-rkl: [PASS][392] -> [SKIP][393] ([i915#14544] / [i915#3555] / [i915#8826])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@kms_invalid_mode@zero-hdisplay.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_invalid_mode@zero-hdisplay.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#10656] / [i915#14544])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][395] ([i915#12388])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][396] ([i915#12394])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][397] ([i915#12394])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#15283])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][399] ([i915#12339])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@kms_joiner@basic-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][400] ([i915#12339])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][401] ([i915#10656])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][402] ([i915#12339])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][403] ([i915#12339])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#4816])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][405] +43 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][406] ([i915#12756] / [i915#13409] / [i915#13476])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][407] ([i915#13409] / [i915#13476])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-xtiled:
- shard-rkl: [PASS][408] -> [SKIP][409] ([i915#14544]) +32 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-mtlp: NOTRUN -> [SKIP][410] ([i915#14712])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-rkl: NOTRUN -> [ABORT][411] ([i915#15132]) +1 other test abort
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-rkl: NOTRUN -> [SKIP][412] ([i915#14544] / [i915#7294])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][413] ([i915#10647] / [i915#12169])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][414] ([i915#10647]) +1 other test fail
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-mtlp: NOTRUN -> [SKIP][415] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][416] ([i915#11614] / [i915#3582]) +3 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-mtlp: NOTRUN -> [SKIP][417] ([i915#13958])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][418] ([i915#14259])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][419] ([i915#9809]) +1 other test skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][420] ([i915#13046] / [i915#5354] / [i915#9423])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-rkl: NOTRUN -> [SKIP][421] ([i915#14544] / [i915#8152])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][422] ([i915#12247] / [i915#14544])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][423] ([i915#12247] / [i915#14544] / [i915#8152])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-rkl: [PASS][424] -> [SKIP][425] ([i915#14544] / [i915#6953] / [i915#8152])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- shard-rkl: [PASS][426] -> [SKIP][427] ([i915#12247] / [i915#14544]) +2 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-rkl: [PASS][428] -> [SKIP][429] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-rkl: [PASS][430] -> [SKIP][431] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- shard-rkl: [PASS][432] -> [SKIP][433] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][434] ([i915#5354])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][435] ([i915#9812])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][436] -> [SKIP][437] ([i915#13441] / [i915#14544])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_pm_dc@dc5-dpms-negative.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][438] ([i915#3828])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@kms_pm_dc@dc5-retention-flops.html
- shard-mtlp: NOTRUN -> [SKIP][439] ([i915#3828])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][440] ([i915#9295])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][441] ([i915#4281])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][442] ([i915#15073])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][443] ([i915#15073])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][444] ([i915#15073]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][445] -> [SKIP][446] ([i915#15073])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][447] ([i915#6524])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][448] ([i915#6524])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][449] ([i915#11520]) +4 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][450] ([i915#11520]) +7 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][451] ([i915#11520]) +1 other test skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][452] ([i915#11520]) +2 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][453] ([i915#11520]) +3 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][454] ([i915#11520]) +8 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][455] ([i915#12316]) +4 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][456] ([i915#11520]) +11 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][457] ([i915#11520] / [i915#14544]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][458] ([i915#11520]) +4 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][459] ([i915#9683])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][460] ([i915#9688]) +11 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-pr-suspend:
- shard-rkl: NOTRUN -> [SKIP][461] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][462] ([i915#1072] / [i915#9732]) +7 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-10/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][463] +315 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk2/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg1: NOTRUN -> [SKIP][464] ([i915#1072] / [i915#4423] / [i915#9732])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][465] ([i915#9732]) +17 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-5/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][466] ([i915#1072] / [i915#9732]) +13 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html
- shard-tglu-1: NOTRUN -> [SKIP][467] ([i915#9732]) +11 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][468] ([i915#1072] / [i915#9732]) +2 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-12/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][469] ([i915#9685])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][470] ([i915#4235])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][471] ([i915#12755]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][472] ([i915#12755] / [i915#5190])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][473] -> [FAIL][474] ([i915#15106]) +2 other tests fail
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-snb7/igt@kms_setmode@basic.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb5/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][475] -> [FAIL][476] ([i915#15106]) +2 other tests fail
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][477] ([i915#3555] / [i915#8809] / [i915#8823])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-formats:
- shard-tglu-1: NOTRUN -> [SKIP][478] ([i915#15232]) +1 other test skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-tglu: NOTRUN -> [SKIP][479] ([i915#15232]) +3 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@kms_sharpness_filter@filter-tap:
- shard-dg2: NOTRUN -> [SKIP][480] ([i915#15232])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-mtlp: NOTRUN -> [SKIP][481] ([i915#15232]) +1 other test skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- shard-rkl: NOTRUN -> [SKIP][482] ([i915#15232])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
* igt@kms_vblank@wait-idle-hang:
- shard-dg1: [PASS][483] -> [DMESG-WARN][484] ([i915#4423]) +4 other tests dmesg-warn
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-13/igt@kms_vblank@wait-idle-hang.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@kms_vblank@wait-idle-hang.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][485] ([i915#3555]) +3 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-8/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][486] ([i915#9906])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][487] ([i915#2437])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-5/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][488] ([i915#2437])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][489] ([i915#2437])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-glk8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][490] ([i915#2437] / [i915#9412])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu-1: NOTRUN -> [SKIP][491] ([i915#2437] / [i915#9412])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle:
- shard-tglu: NOTRUN -> [SKIP][492] ([i915#2575]) +1 other test skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-9/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html
- shard-mtlp: NOTRUN -> [SKIP][493] ([i915#15241])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html
* igt@panthor/panthor_group@group_create:
- shard-rkl: NOTRUN -> [SKIP][494] ([i915#15265])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@panthor/panthor_group@group_create.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][495] ([i915#7387])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-7/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][496] ([i915#2434])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-4/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][497] -> [FAIL][498] ([i915#4349]) +10 other tests fail
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@event-wait:
- shard-mtlp: NOTRUN -> [SKIP][499] ([i915#8807])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@perf_pmu@event-wait.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][500] ([i915#3555] / [i915#8807])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-8/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][501] ([i915#8516])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [PASS][502] -> [FAIL][503] ([i915#4349]) +4 other tests fail
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg1: [PASS][504] -> [FAIL][505] ([i915#4349]) +3 other tests fail
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-14/igt@perf_pmu@render-node-busy-idle@vcs1.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][506] ([i915#3708] / [i915#4077])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][507] ([i915#3291] / [i915#3708])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][508] ([i915#3708])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][509] ([i915#3708])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7:
- shard-tglu-1: NOTRUN -> [FAIL][510] ([i915#12910]) +9 other tests fail
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html
* igt@tools_test@sysfs_l3_parity:
- shard-mtlp: NOTRUN -> [SKIP][511] ([i915#4818])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-mtlp-6/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@drm_read@empty-block:
- shard-rkl: [DMESG-WARN][512] ([i915#12964]) -> [PASS][513] +11 other tests pass
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@drm_read@empty-block.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@drm_read@empty-block.html
* igt@fbdev@info:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#1849] / [i915#2582]) -> [PASS][515]
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@fbdev@info.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@fbdev@info.html
* igt@fbdev@write:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#2582]) -> [PASS][517]
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@fbdev@write.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@fbdev@write.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][518] ([i915#13356]) -> [PASS][519]
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-1/igt@gem_ccs@suspend-resume.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][520] ([i915#12392]) -> [PASS][521]
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][522] ([i915#13356]) -> [PASS][523] +2 other tests pass
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][524] ([i915#11713]) -> [PASS][525]
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-3/igt@gem_exec_big@single.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_whisper@basic-queues-priority:
- shard-rkl: [DMESG-WARN][526] ([i915#12917] / [i915#12964]) -> [PASS][527]
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@gem_exec_whisper@basic-queues-priority.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@gem_exec_whisper@basic-queues-priority.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: [TIMEOUT][528] ([i915#12917] / [i915#12964]) -> [PASS][529] +1 other test pass
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@i915_module_load@load:
- shard-tglu: ([PASS][530], [PASS][531], [PASS][532], [PASS][533], [PASS][534], [PASS][535], [PASS][536], [PASS][537], [PASS][538], [PASS][539], [PASS][540], [PASS][541], [PASS][542], [PASS][543], [PASS][544], [PASS][545], [PASS][546], [PASS][547], [SKIP][548], [PASS][549], [PASS][550], [PASS][551]) ([i915#14785]) -> ([PASS][552], [PASS][553], [PASS][554], [PASS][555], [PASS][556], [PASS][557], [PASS][558], [PASS][559], [PASS][560], [PASS][561], [PASS][562], [PASS][563], [PASS][564], [PASS][565], [PASS][566], [PASS][567], [PASS][568], [PASS][569], [PASS][570], [PASS][571], [PASS][572], [PASS][573])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-6/igt@i915_module_load@load.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-8/igt@i915_module_load@load.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-8/igt@i915_module_load@load.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-4/igt@i915_module_load@load.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-4/igt@i915_module_load@load.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-10/igt@i915_module_load@load.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-9/igt@i915_module_load@load.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-5/igt@i915_module_load@load.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-8/igt@i915_module_load@load.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-9/igt@i915_module_load@load.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-3/igt@i915_module_load@load.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-7/igt@i915_module_load@load.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-9/igt@i915_module_load@load.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-10/igt@i915_module_load@load.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-3/igt@i915_module_load@load.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-6/igt@i915_module_load@load.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-3/igt@i915_module_load@load.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-2/igt@i915_module_load@load.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-7/igt@i915_module_load@load.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-2/igt@i915_module_load@load.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-6/igt@i915_module_load@load.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-10/igt@i915_module_load@load.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-7/igt@i915_module_load@load.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-9/igt@i915_module_load@load.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@i915_module_load@load.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-7/igt@i915_module_load@load.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@i915_module_load@load.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@i915_module_load@load.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@i915_module_load@load.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-8/igt@i915_module_load@load.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@i915_module_load@load.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-4/igt@i915_module_load@load.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@i915_module_load@load.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@i915_module_load@load.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-3/igt@i915_module_load@load.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@i915_module_load@load.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-9/igt@i915_module_load@load.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@i915_module_load@load.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-2/igt@i915_module_load@load.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-8/igt@i915_module_load@load.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-10/igt@i915_module_load@load.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-5/igt@i915_module_load@load.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-2/igt@i915_module_load@load.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-5/igt@i915_module_load@load.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [SKIP][574] ([i915#13328]) -> [PASS][575]
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [DMESG-FAIL][576] ([i915#12964]) -> [PASS][577] +1 other test pass
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@i915_selftest@live@gt_pm.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@i915_selftest@live@gt_pm.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: [DMESG-WARN][578] ([i915#14545]) -> [PASS][579]
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][580] ([i915#4817]) -> [PASS][581]
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@i915_suspend@fence-restore-tiled2untiled.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-rkl: [SKIP][582] ([i915#14544]) -> [PASS][583] +35 other tests pass
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_async_flips@test-cursor-atomic.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [ABORT][584] ([i915#15132]) -> [PASS][585]
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-rkl: [ABORT][586] ([i915#12796] / [i915#15132]) -> [PASS][587]
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_color@ctm-0-75:
- shard-rkl: [SKIP][588] ([i915#12655] / [i915#14544]) -> [PASS][589] +1 other test pass
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_color@ctm-0-75.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_color@ctm-0-75.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [FAIL][590] ([i915#13566]) -> [PASS][591] +7 other tests pass
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][592] ([i915#13566]) -> [PASS][593] +1 other test pass
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_fbcon_fbt@fbc:
- shard-rkl: [SKIP][594] ([i915#14544] / [i915#14561]) -> [PASS][595]
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][596] ([i915#14033]) -> [PASS][597] +1 other test pass
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-tglu: [FAIL][598] ([i915#10826]) -> [PASS][599] +1 other test pass
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-tglu-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-tglu-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: [SKIP][600] ([i915#14544] / [i915#3637]) -> [PASS][601] +3 other tests pass
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-rkl: [SKIP][602] ([i915#14544] / [i915#3555]) -> [PASS][603] +4 other tests pass
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][604] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][605] +6 other tests pass
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [SKIP][606] ([i915#3555] / [i915#8228]) -> [PASS][607] +4 other tests pass
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-rkl: [SKIP][608] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][609]
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_invalid_mode@clock-too-high.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [SKIP][610] ([i915#10656] / [i915#12388]) -> [PASS][611]
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_lease@master-vs-lease:
- shard-dg1: [DMESG-WARN][612] ([i915#4423]) -> [PASS][613] +1 other test pass
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-19/igt@kms_lease@master-vs-lease.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-15/igt@kms_lease@master-vs-lease.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- shard-rkl: [SKIP][614] ([i915#11190] / [i915#14544]) -> [PASS][615] +2 other tests pass
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_pipe_crc_basic@hang-read-crc.html
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-4/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-rkl: [SKIP][616] ([i915#14544] / [i915#8825]) -> [PASS][617]
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping.html
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_alpha_blend@constant-alpha-min:
- shard-rkl: [SKIP][618] ([i915#14544] / [i915#7294]) -> [PASS][619]
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-min.html
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_plane_alpha_blend@constant-alpha-min.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-rkl: [SKIP][620] ([i915#14544] / [i915#3555] / [i915#8152]) -> [PASS][621]
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-rkl: [SKIP][622] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][623] +4 other tests pass
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- shard-rkl: [SKIP][624] ([i915#14544] / [i915#8152]) -> [PASS][625] +1 other test pass
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-rkl: [SKIP][626] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][627]
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- shard-rkl: [SKIP][628] ([i915#12247] / [i915#14544]) -> [PASS][629] +4 other tests pass
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-rkl: [SKIP][630] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][631]
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: [SKIP][632] ([i915#14544] / [i915#1849]) -> [PASS][633]
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_pm_rpm@cursor.html
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][634] ([i915#15073]) -> [PASS][635]
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][636] ([i915#15073]) -> [PASS][637]
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_properties@crtc-properties-legacy:
- shard-rkl: [SKIP][638] ([i915#11521] / [i915#14544]) -> [PASS][639]
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_properties@crtc-properties-legacy.html
* igt@perf@polling-small-buf:
- shard-rkl: [FAIL][640] ([i915#14550]) -> [PASS][641]
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@perf@polling-small-buf.html
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@perf@polling-small-buf.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][642] ([i915#8411]) -> [SKIP][643] ([i915#14544] / [i915#8411])
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@api_intel_bb@object-reloc-keep-cache.html
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][644] ([i915#14544] / [i915#3281]) -> [SKIP][645] ([i915#3281]) +7 other tests skip
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: [SKIP][646] ([i915#280]) -> [SKIP][647] ([i915#14544] / [i915#280])
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gem_ctx_sseu@engines.html
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][648] ([i915#14544] / [i915#4525]) -> [SKIP][649] ([i915#4525]) +1 other test skip
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: [SKIP][650] ([i915#4525]) -> [SKIP][651] ([i915#14544] / [i915#4525])
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: [SKIP][652] ([i915#3281]) -> [SKIP][653] ([i915#14544] / [i915#3281]) +6 other tests skip
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read.html
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][654] ([i915#14544] / [i915#4613]) -> [SKIP][655] ([i915#4613]) +3 other tests skip
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][656] ([i915#4613]) -> [SKIP][657] ([i915#14544] / [i915#4613]) +2 other tests skip
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@gem_lmem_swapping@verify.html
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_lmem_swapping@verify.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-rkl: [SKIP][658] ([i915#3282]) -> [SKIP][659] ([i915#14544] / [i915#3282])
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gem_partial_pwrite_pread@write-uncached.html
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pxp@create-regular-context-2:
- shard-rkl: [TIMEOUT][660] ([i915#12917] / [i915#12964]) -> [SKIP][661] ([i915#4270]) +1 other test skip
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@gem_pxp@create-regular-context-2.html
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: [SKIP][662] ([i915#14544] / [i915#4270]) -> [TIMEOUT][663] ([i915#12964])
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_pxp@fail-invalid-protected-context.html
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: [TIMEOUT][664] ([i915#12917] / [i915#12964]) -> [SKIP][665] ([i915#14544] / [i915#4270])
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_tiled_pread_pwrite:
- shard-rkl: [SKIP][666] ([i915#14544] / [i915#3282]) -> [SKIP][667] ([i915#3282]) +3 other tests skip
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_tiled_pread_pwrite.html
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][668] ([i915#14544] / [i915#3297]) -> [SKIP][669] ([i915#3297]) +4 other tests skip
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][670] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][671] ([i915#3297] / [i915#3323])
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: [SKIP][672] ([i915#3297]) -> [SKIP][673] ([i915#14544] / [i915#3297])
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][674] ([i915#3281] / [i915#3297]) -> [SKIP][675] ([i915#14544] / [i915#3281] / [i915#3297])
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gem_userptr_blits@relocations.html
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-rkl: [SKIP][676] ([i915#2527]) -> [SKIP][677] ([i915#14544] / [i915#2527])
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][678] ([i915#14544] / [i915#2527]) -> [SKIP][679] ([i915#2527]) +3 other tests skip
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][680] ([i915#8399]) -> [SKIP][681] ([i915#14544] / [i915#8399])
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: [SKIP][682] ([i915#14544] / [i915#6590]) -> [SKIP][683] ([i915#6590]) +1 other test skip
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html
[683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: [SKIP][684] ([i915#14544]) -> [SKIP][685] +13 other tests skip
[684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][686] ([i915#7984]) -> [SKIP][687] ([i915#14544] / [i915#7984])
[686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@i915_power@sanity.html
[687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][688] ([i915#14544] / [i915#6245]) -> [SKIP][689] ([i915#6245])
[688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@i915_query@hwconfig_table.html
[689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@i915_query@hwconfig_table.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][690] ([i915#14544]) -> [SKIP][691] ([i915#1769] / [i915#3555])
[690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][692] ([i915#5286]) -> [SKIP][693] ([i915#14544]) +2 other tests skip
[692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][694] ([i915#14544]) -> [SKIP][695] ([i915#5286]) +2 other tests skip
[694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: [SKIP][696] ([i915#14544]) -> [SKIP][697] ([i915#3638]) +2 other tests skip
[696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
[697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg1: [SKIP][698] ([i915#3638]) -> [SKIP][699] ([i915#3638] / [i915#4423])
[698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-12/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][700] ([i915#3638]) -> [SKIP][701] ([i915#14544]) +1 other test skip
[700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][702] ([i915#6095]) -> [SKIP][703] ([i915#14098] / [i915#6095]) +5 other tests skip
[702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2.html
[703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs:
- shard-rkl: [SKIP][704] ([i915#14544]) -> [SKIP][705] ([i915#14098] / [i915#6095]) +10 other tests skip
[704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
[705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][706] ([i915#14098] / [i915#6095]) -> [SKIP][707] ([i915#6095]) +2 other tests skip
[706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html
[707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][708] ([i915#12805]) -> [SKIP][709] ([i915#14544])
[708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg1: [SKIP][710] ([i915#12805] / [i915#4423]) -> [SKIP][711] ([i915#12805])
[710]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][712] ([i915#14098] / [i915#6095]) -> [SKIP][713] ([i915#14544]) +5 other tests skip
[712]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
[713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][714] ([i915#12313]) -> [SKIP][715] ([i915#14544]) +1 other test skip
[714]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][716] ([i915#6095]) -> [SKIP][717] ([i915#4423] / [i915#6095]) +1 other test skip
[716]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html
[717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][718] ([i915#14544]) -> [SKIP][719] ([i915#12313])
[718]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][720] ([i915#14544] / [i915#3742]) -> [SKIP][721] ([i915#3742])
[720]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_cdclk@mode-transition.html
[721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][722] ([i915#11151] / [i915#7828]) -> [SKIP][723] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[722]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
[723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][724] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][725] ([i915#11151] / [i915#7828]) +7 other tests skip
[724]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][726] ([i915#7118] / [i915#9424]) -> [FAIL][727] ([i915#7173])
[726]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
[727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: [SKIP][728] ([i915#9424]) -> [SKIP][729] ([i915#14544])
[728]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@kms_content_protection@content-type-change.html
[729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][730] ([i915#9433]) -> [SKIP][731] ([i915#9424])
[730]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][732] ([i915#14544]) -> [SKIP][733] ([i915#7118] / [i915#9424])
[732]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_content_protection@type1.html
[733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][734] ([i915#14544]) -> [SKIP][735] ([i915#13049]) +1 other test skip
[734]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: [SKIP][736] ([i915#13049]) -> [SKIP][737] ([i915#14544])
[736]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
[737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: [SKIP][738] -> [SKIP][739] ([i915#14544]) +5 other tests skip
[738]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[739]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-dg1: [SKIP][740] -> [SKIP][741] ([i915#4423])
[740]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-15/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[741]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-16/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][742] ([i915#14544]) -> [SKIP][743] ([i915#4103])
[742]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[743]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][744] ([i915#14544]) -> [SKIP][745] ([i915#9723])
[744]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[745]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][746] ([i915#13748]) -> [SKIP][747] ([i915#14544])
[746]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_dp_link_training@uhbr-sst.html
[747]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][748] ([i915#14544]) -> [SKIP][749] ([i915#3555] / [i915#3840])
[748]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
[749]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [DMESG-WARN][750] ([i915#12964]) -> [ABORT][751] ([i915#15132])
[750]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html
[751]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][752] ([i915#9337]) -> [SKIP][753] ([i915#14544] / [i915#9337])
[752]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
[753]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-rkl: [SKIP][754] ([i915#9934]) -> [SKIP][755] ([i915#14544] / [i915#9934]) +2 other tests skip
[754]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_flip@2x-dpms-vs-vblank-race.html
[755]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: [SKIP][756] ([i915#14544] / [i915#9934]) -> [SKIP][757] ([i915#9934]) +5 other tests skip
[756]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check.html
[757]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: [SKIP][758] ([i915#2672] / [i915#3555]) -> [SKIP][759] ([i915#14544] / [i915#3555]) +1 other test skip
[758]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[759]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][760] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][761] ([i915#1825]) +27 other tests skip
[760]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[761]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][762] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][763] ([i915#5439])
[762]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[763]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: [SKIP][764] ([i915#15102]) -> [SKIP][765] ([i915#14544])
[764]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
[765]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][766] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][767] ([i915#15102] / [i915#3023]) +13 other tests skip
[766]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[767]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][768] ([i915#4423] / [i915#8708]) -> [SKIP][769] ([i915#8708])
[768]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[769]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][770] ([i915#8708]) -> [SKIP][771] ([i915#4423] / [i915#8708])
[770]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[771]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][772] ([i915#1825]) -> [SKIP][773] ([i915#14544] / [i915#1849] / [i915#5354]) +23 other tests skip
[772]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[773]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2: [SKIP][774] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][775] ([i915#15102] / [i915#3458]) +1 other test skip
[774]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[775]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][776] ([i915#15102] / [i915#3023]) -> [SKIP][777] ([i915#14544] / [i915#1849] / [i915#5354]) +9 other tests skip
[776]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
[777]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: [SKIP][778] ([i915#14544]) -> [SKIP][779] ([i915#15102])
[778]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
[779]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][780] ([i915#15102] / [i915#3458]) -> [SKIP][781] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[780]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[781]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][782] ([i915#3555] / [i915#8228]) -> [SKIP][783] ([i915#14544])
[782]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_hdr@bpc-switch.html
[783]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][784] ([i915#1187] / [i915#12713]) -> [SKIP][785] ([i915#12713])
[784]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[785]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [SKIP][786] ([i915#14544]) -> [SKIP][787] ([i915#3555] / [i915#8228]) +2 other tests skip
[786]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
[787]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: [SKIP][788] ([i915#10656] / [i915#14544]) -> [SKIP][789] ([i915#10656])
[788]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
[789]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][790] ([i915#13522]) -> [SKIP][791] ([i915#13522] / [i915#14544])
[790]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[791]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][792] ([i915#1839] / [i915#4816]) -> [SKIP][793] ([i915#4816])
[792]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[793]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][794] ([i915#14544]) -> [SKIP][795] ([i915#13958])
[794]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
[795]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][796] ([i915#14544] / [i915#6953] / [i915#8152]) -> [SKIP][797] ([i915#6953])
[796]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
[797]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-rkl: [SKIP][798] ([i915#12247]) -> [SKIP][799] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip
[798]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[799]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a:
- shard-rkl: [SKIP][800] ([i915#12247]) -> [SKIP][801] ([i915#12247] / [i915#14544])
[800]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
[801]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][802] ([i915#9340]) -> [SKIP][803] ([i915#3828])
[802]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
[803]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: [SKIP][804] ([i915#8430]) -> [SKIP][805] ([i915#14544] / [i915#8430])
[804]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
[805]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][806] ([i915#14544] / [i915#15073]) -> [SKIP][807] ([i915#15073])
[806]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
[807]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][808] ([i915#14544] / [i915#6524]) -> [SKIP][809] ([i915#6524]) +1 other test skip
[808]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
[809]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][810] ([i915#11520]) -> [SKIP][811] ([i915#11520] / [i915#14544]) +2 other tests skip
[810]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[811]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][812] ([i915#11520] / [i915#14544]) -> [SKIP][813] ([i915#11520]) +4 other tests skip
[812]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[813]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][814] ([i915#14544] / [i915#9683]) -> [SKIP][815] ([i915#9683])
[814]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
[815]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-dg1: [SKIP][816] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][817] ([i915#1072] / [i915#9732])
[816]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-19/igt@kms_psr@fbc-pr-sprite-blt.html
[817]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-15/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@pr-dpms:
- shard-dg1: [SKIP][818] ([i915#1072] / [i915#9732]) -> [SKIP][819] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip
[818]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-18/igt@kms_psr@pr-dpms.html
[819]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-13/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][820] ([i915#1072] / [i915#9732]) -> [SKIP][821] ([i915#1072] / [i915#14544] / [i915#9732]) +13 other tests skip
[820]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-4/igt@kms_psr@psr-sprite-plane-move.html
[821]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][822] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][823] ([i915#1072] / [i915#9732]) +16 other tests skip
[822]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
[823]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][824] ([i915#5289]) -> [SKIP][825] ([i915#14544])
[824]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[825]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][826] ([i915#14544]) -> [SKIP][827] ([i915#5289]) +1 other test skip
[826]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[827]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][828] ([i915#14544]) -> [SKIP][829] ([i915#3555])
[828]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
[829]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_sharpness_filter@filter-modifiers:
- shard-rkl: [SKIP][830] ([i915#14544]) -> [SKIP][831] ([i915#15232]) +1 other test skip
[830]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_sharpness_filter@filter-modifiers.html
[831]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_sharpness_filter@filter-modifiers.html
* igt@kms_sharpness_filter@filter-tap:
- shard-rkl: [SKIP][832] ([i915#15232]) -> [SKIP][833] ([i915#14544]) +1 other test skip
[832]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_sharpness_filter@filter-tap.html
[833]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][834] ([i915#14544]) -> [SKIP][835] ([i915#8623])
[834]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
[835]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][836] ([i915#8623]) -> [SKIP][837] ([i915#14544])
[836]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[837]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: [SKIP][838] ([i915#15243] / [i915#3555]) -> [SKIP][839] ([i915#14544])
[838]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@kms_vrr@flip-dpms.html
[839]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][840] ([i915#14544]) -> [SKIP][841] ([i915#15243] / [i915#3555])
[840]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_vrr@flipline.html
[841]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-5/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: [SKIP][842] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][843] ([i915#2437] / [i915#9412])
[842]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[843]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: [SKIP][844] ([i915#14544] / [i915#2437]) -> [SKIP][845] ([i915#2437])
[844]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@kms_writeback@writeback-fb-id.html
[845]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: [SKIP][846] ([i915#2437]) -> [SKIP][847] ([i915#2437] / [i915#4423])
[846]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html
[847]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-dg1-19/igt@kms_writeback@writeback-fb-id.html
* igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle:
- shard-rkl: [SKIP][848] ([i915#15265]) -> [SKIP][849] ([i915#14544] / [i915#15265])
[848]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-2/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html
[849]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@panthor/panthor_gem@bo_mmap_offset_invalid_handle.html
* igt@panthor/panthor_vm@vm_bind:
- shard-rkl: [SKIP][850] ([i915#14544] / [i915#15265]) -> [SKIP][851] ([i915#15265])
[850]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@panthor/panthor_vm@vm_bind.html
[851]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-2/igt@panthor/panthor_vm@vm_bind.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][852] ([i915#3708]) -> [SKIP][853] ([i915#14544] / [i915#3708])
[852]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
[853]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][854] ([i915#14544] / [i915#9917]) -> [SKIP][855] ([i915#9917])
[854]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8622/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[855]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12469
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14550
[i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14785]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14785
[i915#14857]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14857
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15232]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15232
[i915#15241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15241
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15265]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15265
[i915#15277]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15277
[i915#15283]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15283
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8622 -> IGTPW_14048
CI-20190529: 20190529
CI_DRM_17537: 2395af7950abb996316c9ee00f68a639fb6eb1c0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14048: 14048
IGT_8622: 8622
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14048/index.html
[-- Attachment #2: Type: text/html, Size: 249505 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (4 preceding siblings ...)
2025-11-13 22:12 ` ✓ i915.CI.Full: success for " Patchwork
@ 2025-12-06 1:12 ` Xin Wang
2025-12-06 1:12 ` [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
` (2 more replies)
2025-12-06 1:57 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev2) Patchwork
` (7 subsequent siblings)
13 siblings, 3 replies; 29+ messages in thread
From: Xin Wang @ 2025-12-06 1:12 UTC (permalink / raw)
To: igt-dev; +Cc: shuicheng.lin, alex.zuo, Xin Wang, Matthew Auld
Parse the PAT software configuration from gt0/pat_sw_config instead
of relying on hard-coded indices.
Expose xe_get_pat_entries() so tests can grab the PAT table.
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
lib/intel_pat.c | 126 ++++++++++++++++++++++++++++++++++++++++++------
lib/intel_pat.h | 9 ++++
2 files changed, 120 insertions(+), 15 deletions(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index e3588110a..2d204e652 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -6,6 +6,7 @@
#include "intel_pat.h"
#include "igt.h"
+#include "igt_core.h"
struct intel_pat_cache {
uint8_t uc; /* UC + COH_NONE */
@@ -13,27 +14,112 @@ struct intel_pat_cache {
uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/
uint8_t max_index;
+ struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
+ uint32_t pat_mode;
+ uint32_t pat_ats;
};
+/**
+ * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration
+ * from debugfs
+ *
+ * @drm_fd: DRM device fd to use with igt_debugfs_open
+ * @xe_pat_cache: Pointer to a struct that will receive the parsed PAT configuration
+ *
+ * Returns: The number of PAT entries successfully read on success, or a negative error
+ * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
+ */
+static int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache)
+{
+ char *line = NULL;
+ size_t line_len = 0;
+ ssize_t nread;
+ int32_t parsed = 0;
+ int dbgfs_fd;
+ FILE *dbgfs_file = NULL;
+
+ dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config", O_RDONLY);
+ if (dbgfs_fd < 0)
+ return -ENOENT;
+ dbgfs_file = fdopen(dbgfs_fd, "r");
+ if (!dbgfs_file) {
+ close(dbgfs_fd);
+ return -errno;
+ }
+
+ memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
+ while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
+ uint32_t value = 0;
+ char *p = NULL;
+
+ /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
+ if (strncmp(line, "PAT[", 4) == 0) {
+ bool is_reserved;
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1) {
+ if (parsed < XE_PAT_MAX_ENTRIES) {
+ is_reserved = strchr(line, '*') != NULL;
+ xe_pat_cache->entries[parsed].pat = value;
+ xe_pat_cache->entries[parsed].rsvd = is_reserved;
+ xe_pat_cache->max_index = parsed;
+ parsed++;
+
+ igt_debug("Parsed PAT entry %d: 0x%08x%s\n",
+ parsed - 1, value,
+ is_reserved ? " (reserved)" : "");
+ } else {
+ igt_warn("Too many PAT entries, line ignored: %s\n", line);
+ }
+ } else {
+ igt_warn("Failed to parse PAT entry line: %s\n", line);
+ }
+ } else if (strncmp(line, "PAT_MODE", 8) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_mode = value;
+ } else if (strncmp(line, "PAT_ATS", 7) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_ats = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wt = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wb = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc_comp = value;
+ }
+ }
+
+ free(line);
+ fclose(dbgfs_file);
+
+ return parsed;
+}
+
static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
{
uint16_t dev_id = intel_get_drm_devid(fd);
- if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
- pat->uc = 3;
- pat->wb = 2;
- pat->max_index = 31;
- } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
- intel_get_device_info(dev_id)->graphics_ver == 20) {
- pat->uc = 3;
- pat->wt = 15; /* Compressed + WB-transient */
- pat->wb = 2;
- pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
- pat->max_index = 31;
-
- /* Wa_16023588340: CLOS3 entries at end of table are unusable */
- if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
- pat->max_index -= 4;
+ if (intel_gen(dev_id) >= 20) {
+ /* Cache parsed PAT config per device to avoid re-reading debugfs on every call */
+ static __thread struct intel_pat_cache intel_pat_cache;
+ static __thread uint16_t cached_devid;
+ if (cached_devid != dev_id) {
+ int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
+ igt_require(ret > 0);
+ cached_devid = dev_id;
+ }
+ *pat = intel_pat_cache;
} else if (IS_METEORLAKE(dev_id)) {
pat->uc = 2;
pat->wt = 1;
@@ -96,3 +182,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
intel_get_pat_idx(fd, &pat);
return pat.wb;
}
+
+uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table)
+{
+ struct intel_pat_cache pat = {};
+ intel_get_pat_idx(fd, &pat);
+
+ memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) * sizeof(struct xe_pat_entry));
+
+ return pat.max_index + 1;
+}
diff --git a/lib/intel_pat.h b/lib/intel_pat.h
index eb48cbc65..1d6c4f1ad 100644
--- a/lib/intel_pat.h
+++ b/lib/intel_pat.h
@@ -6,9 +6,16 @@
#ifndef INTEL_PAT_H
#define INTEL_PAT_H
+#include <stdbool.h>
#include <stdint.h>
#define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */
+#define XE_PAT_MAX_ENTRIES 32
+
+struct xe_pat_entry {
+ uint32_t pat;
+ bool rsvd;
+};
uint8_t intel_get_max_pat_index(int fd);
@@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
uint8_t intel_get_pat_idx_uc_comp(int fd);
+uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table);
+
#endif /* INTEL_PAT_H */
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser
2025-12-06 1:12 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
@ 2025-12-06 1:12 ` Xin Wang
2025-12-08 16:48 ` Matthew Auld
2025-12-10 5:24 ` [PATCH v3 " Xin Wang
2025-12-06 18:48 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Lin, Shuicheng
2025-12-10 5:23 ` [PATCH v3 " Xin Wang
2 siblings, 2 replies; 29+ messages in thread
From: Xin Wang @ 2025-12-06 1:12 UTC (permalink / raw)
To: igt-dev; +Cc: shuicheng.lin, alex.zuo, Xin Wang, Matthew Auld
Pull in the Xe PAT table parsed by lib/intel_pat so Gen20+ tests
use the driver-provided entries instead of hard-coded reservations.
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
tests/intel/xe_pat.c | 38 ++++++++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 59dfb6b11..b911e9cbf 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -77,6 +77,18 @@ static void userptr_coh_none(int fd)
xe_vm_destroy(fd, vm);
}
+#define BITS_TO(n) (n >= sizeof(long) * 8 ? ~0 : (1UL << (n)) - 1)
+#define BITMASK(high, low) (uint32_t)(BITS_TO(high+1) & ~BITS_TO(low))
+#define FIELD_GET(val, high, low) (((val) & (BITMASK(high, low))) >> (low))
+#define FIELD_GET_BIT(val, n) FIELD_GET(val, n, n)
+
+#define XE_NO_PROMOTE(val) FIELD_GET_BIT(val, 10)
+#define XE_COMP_EN(val) FIELD_GET_BIT(val, 9)
+#define XE_L3_CLOS(val) FIELD_GET(val, 7, 6)
+#define XE_L3_POLICY(val) FIELD_GET(val, 5, 4)
+#define XE_L4_POLICY(val) FIELD_GET(val, 3, 2)
+#define XE_COH_MODE(val) FIELD_GET(val, 1, 0)
+
/**
* SUBTEST: pat-index-all
* Test category: functionality test
@@ -86,6 +98,7 @@ static void pat_index_all(int fd)
{
uint16_t dev_id = intel_get_drm_devid(fd);
size_t size = xe_get_default_alignment(fd);
+ struct xe_pat_entry xe_pat_table[XE_PAT_MAX_ENTRIES] = {0};
uint32_t vm, bo;
uint8_t pat_index;
@@ -114,10 +127,31 @@ static void pat_index_all(int fd)
igt_assert(intel_get_max_pat_index(fd));
+ if (intel_gen(dev_id) >= 20) {
+ /* Get the Xe PAT entries from debugfs */
+ uint8_t pat_entries = xe_get_pat_entries(fd, xe_pat_table);
+
+ for (int i = 0; i < pat_entries; i++) {
+ uint32_t pat = xe_pat_table[i].pat;
+ igt_debug("PAT[%2d] = [ %u, %u, %u, %u, %u, %u] (%#8x)%s\n", i,
+ XE_NO_PROMOTE(pat),
+ XE_COMP_EN(pat),
+ XE_L3_CLOS(pat),
+ XE_L3_POLICY(pat),
+ XE_L4_POLICY(pat),
+ XE_COH_MODE(pat),
+ pat,
+ xe_pat_table[i].rsvd ? " *" : "");
+ }
+ }
+
for (pat_index = 0; pat_index <= intel_get_max_pat_index(fd);
pat_index++) {
- if (intel_get_device_info(dev_id)->graphics_ver >= 20 &&
- pat_index >= 16 && pat_index <= 19) { /* hw reserved */
+
+ bool hw_reserved = intel_gen(dev_id) >= 20 ?
+ xe_pat_table[pat_index].rsvd : false;
+
+ if (hw_reserved) {
igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x40000,
size, DRM_XE_VM_BIND_OP_MAP, 0, NULL, 0, 0,
pat_index, 0),
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (5 preceding siblings ...)
2025-12-06 1:12 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
@ 2025-12-06 1:57 ` Patchwork
2025-12-06 2:05 ` ✓ i915.CI.BAT: " Patchwork
` (6 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-06 1:57 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1766 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8658_BAT -> XEIGTPW_14168_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14168_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/bat-dg2-oem2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [FAIL][3] ([Intel XE#6519]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/bat-dg2-oem2/igt@xe_waitfence@engine.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/bat-dg2-oem2/igt@xe_waitfence@engine.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519
Build changes
-------------
* IGT: IGT_8658 -> IGTPW_14168
IGTPW_14168: 14168
IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4203-db6505187efb9c255df1dd6e78c00d95fadfef79: db6505187efb9c255df1dd6e78c00d95fadfef79
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/index.html
[-- Attachment #2: Type: text/html, Size: 2362 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (6 preceding siblings ...)
2025-12-06 1:57 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev2) Patchwork
@ 2025-12-06 2:05 ` Patchwork
2025-12-06 13:36 ` ✗ Xe.CI.Full: failure " Patchwork
` (5 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-06 2:05 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3783 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from IGT_8658 -> IGTPW_14168
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14168 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/bat-mtlp-8/igt@i915_selftest@live.html
- bat-jsl-1: [DMESG-FAIL][5] ([i915#15281]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-jsl-1/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/bat-jsl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/bat-dg2-11/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][11] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][12] ([i915#12061] / [i915#13929])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-atsm-1/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][13] ([i915#14204]) -> [DMESG-FAIL][14] ([i915#13929])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-atsm-1/igt@i915_selftest@live@mman.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#15281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15281
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8658 -> IGTPW_14168
CI-20190529: 20190529
CI_DRM_17642: db6505187efb9c255df1dd6e78c00d95fadfef79 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14168: 14168
IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/index.html
[-- Attachment #2: Type: text/html, Size: 5021 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (7 preceding siblings ...)
2025-12-06 2:05 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-12-06 13:36 ` Patchwork
2025-12-07 4:24 ` ✗ i915.CI.Full: " Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-06 13:36 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 51436 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
URL : https://patchwork.freedesktop.org/series/157481/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8658_FULL -> XEIGTPW_14168_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14168_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14168_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14168_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [PASS][3] -> [WARN][4] +1 other test warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [PASS][5] -> [WARN][6] +1 other test warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports-read@oag-0:
- shard-bmg: [PASS][7] -> [SKIP][8] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_oa@mmio-triggered-reports-read@oag-0.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_oa@mmio-triggered-reports-read@oag-0.html
* igt@xe_oa@unprivileged-single-ctx-counters@oag-0:
- shard-lnl: [PASS][9] -> [SKIP][10] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-4/igt@xe_oa@unprivileged-single-ctx-counters@oag-0.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-1/igt@xe_oa@unprivileged-single-ctx-counters@oag-0.html
Known issues
------------
Here are the changes found in XEIGTPW_14168_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#607])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +12 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#787]) +13 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#306])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-464/igt@kms_chamelium_color@ctm-0-75.html
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2325])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +9 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#373])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6704]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec.html
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#6704])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-432/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec.html
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#6704])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-3/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#307])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2390]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#1178]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2341])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][38] -> [FAIL][39] ([Intel XE#5299])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1340])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][42] -> [FAIL][43] ([Intel XE#4367])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4331])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-435/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fb_coherency@memset-crc:
- shard-bmg: NOTRUN -> [CRASH][46] ([Intel XE#6706]) +1 other test crash
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@kms_fb_coherency@memset-crc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4422])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1138])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-433/igt@kms_flip@flip-vs-suspend-interruptible.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-lnl: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#2049] / [Intel XE#5736]) +1 other test incomplete
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2311]) +26 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#651]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4141]) +14 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#651]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#653]) +9 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2313]) +31 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#656]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#3374] / [Intel XE#3544])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [ABORT][63] ([Intel XE#6740]) +1 other test abort
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2486])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5624])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#5624])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-436/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2938])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#870]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#870])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-435/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2391])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#718])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2392])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#908])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1439] / [Intel XE#836])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2330])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#1127])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#3414])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#3414] / [Intel XE#3904])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2413])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_sharpness_filter@filter-modifiers:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#6503]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@kms_sharpness_filter@filter-modifiers.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1499])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@kms_vrr@flip-basic.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#6599])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#6360])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#6010])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-432/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-page-copy-1:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#5300])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@xe_copy_basic@mem-page-copy-1.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4837])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-5/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_eudebug@discovery-race-vmbind:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4837]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@xe_eudebug@discovery-race-vmbind.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4837] / [Intel XE#6665]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#4837] / [Intel XE#6665])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#4837] / [Intel XE#6665])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-1/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#5793])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2322]) +9 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#288]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#5007])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4943]) +21 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-malloc-fork-read-after:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#4915]) +51 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-execqueues-malloc-fork-read-after.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#6281])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: NOTRUN -> [ABORT][106] ([Intel XE#5466])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_gt_freq@freq_fixed_idle:
- shard-dg2-set2: [PASS][107] -> [FAIL][108] ([Intel XE#6407])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-464/igt@xe_gt_freq@freq_fixed_idle.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2833])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2229])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-435/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135]) -> ([PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [SKIP][161]) ([Intel XE#2457])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-6/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-6/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-6/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-4/igt@xe_module_load@load.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2284] / [Intel XE#366])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3hot-i2c:
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#5742])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-5/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2284]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
- shard-lnl: [PASS][165] -> [FAIL][166] ([Intel XE#6251])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#4733])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-8/igt@xe_pxp@pxp-optout.html
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#4733])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-434/igt@xe_pxp@pxp-optout.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#944]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [FAIL][170] ([Intel XE#5993]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][172] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][174] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][176] ([Intel XE#5299]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][178] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a:
- shard-bmg: [INCOMPLETE][180] ([Intel XE#5545]) -> [PASS][181] +1 other test pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][182] ([Intel XE#718]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][184] ([Intel XE#2142]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch:
- shard-bmg: [WARN][186] ([Intel XE#5786]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html
* igt@xe_pm_residency@idle-residency:
- shard-dg2-set2: [FAIL][188] ([Intel XE#6362]) -> [PASS][189] +1 other test pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-464/igt@xe_pm_residency@idle-residency.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-436/igt@xe_pm_residency@idle-residency.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0:
- shard-lnl: [FAIL][190] ([Intel XE#6251]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][192] ([Intel XE#6569]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [FAIL][194] ([Intel XE#5993] / [Intel XE#6676]) -> [FAIL][195] ([Intel XE#6676])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][197] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][198] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [INCOMPLETE][199] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][200] ([Intel XE#1729]) -> [SKIP][201] ([Intel XE#2426])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [SKIP][202] ([Intel XE#362]) -> [FAIL][203] ([Intel XE#1729])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4367
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5736
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6362
[Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
[Intel XE#6706]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6706
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8658 -> IGTPW_14168
IGTPW_14168: 14168
IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4203-db6505187efb9c255df1dd6e78c00d95fadfef79: db6505187efb9c255df1dd6e78c00d95fadfef79
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14168/index.html
[-- Attachment #2: Type: text/html, Size: 59129 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-06 1:12 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
2025-12-06 1:12 ` [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
@ 2025-12-06 18:48 ` Lin, Shuicheng
2025-12-08 18:37 ` Wang, X
2025-12-08 19:25 ` Wang, X
2025-12-10 5:23 ` [PATCH v3 " Xin Wang
2 siblings, 2 replies; 29+ messages in thread
From: Lin, Shuicheng @ 2025-12-06 18:48 UTC (permalink / raw)
To: Wang, X, igt-dev@lists.freedesktop.org; +Cc: Zuo, Alex, Auld, Matthew
On Fri, Dec 5, 2025 5:13 PM X Wang wrote:
> Parse the PAT software configuration from gt0/pat_sw_config instead of
> relying on hard-coded indices.
So the lib is not compatible with previous kernel that doesn't have sw config.
Should we keep the hard-code as fall back?
>
> Expose xe_get_pat_entries() so tests can grab the PAT table.
>
> CC: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Xin Wang <x.wang@intel.com>
> ---
> lib/intel_pat.c | 126 ++++++++++++++++++++++++++++++++++++++++++-
> -----
> lib/intel_pat.h | 9 ++++
> 2 files changed, 120 insertions(+), 15 deletions(-)
>
> diff --git a/lib/intel_pat.c b/lib/intel_pat.c index e3588110a..2d204e652
> 100644
> --- a/lib/intel_pat.c
> +++ b/lib/intel_pat.c
> @@ -6,6 +6,7 @@
> #include "intel_pat.h"
>
> #include "igt.h"
> +#include "igt_core.h"
>
> struct intel_pat_cache {
> uint8_t uc; /* UC + COH_NONE */
> @@ -13,27 +14,112 @@ struct intel_pat_cache {
> uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
> uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and
> later*/
> uint8_t max_index;
> + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
> + uint32_t pat_mode;
> + uint32_t pat_ats;
> };
>
> +/**
> + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table)
> +software configuration
> + * from debugfs
> + *
> + * @drm_fd: DRM device fd to use with igt_debugfs_open
> + * @xe_pat_cache: Pointer to a struct that will receive the parsed PAT
> +configuration
> + *
> + * Returns: The number of PAT entries successfully read on success, or a
> negative error
> + * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
> + */
> +static int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache
> +*xe_pat_cache) {
> + char *line = NULL;
> + size_t line_len = 0;
> + ssize_t nread;
> + int32_t parsed = 0;
> + int dbgfs_fd;
> + FILE *dbgfs_file = NULL;
> +
> + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config",
> O_RDONLY);
> + if (dbgfs_fd < 0)
> + return -ENOENT;
> + dbgfs_file = fdopen(dbgfs_fd, "r");
> + if (!dbgfs_file) {
> + close(dbgfs_fd);
> + return -errno;
> + }
> +
> + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
> + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
> + uint32_t value = 0;
> + char *p = NULL;
> +
> + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
> + if (strncmp(line, "PAT[", 4) == 0) {
> + bool is_reserved;
> + p = strstr(line, "(");
> + if (p && sscanf(p, "(%x", &value) == 1) {
> + if (parsed < XE_PAT_MAX_ENTRIES) {
> + is_reserved = strchr(line, '*') != NULL;
> + xe_pat_cache->entries[parsed].pat =
> value;
> + xe_pat_cache->entries[parsed].rsvd =
> is_reserved;
> + xe_pat_cache->max_index = parsed;
> + parsed++;
> +
> + igt_debug("Parsed PAT entry %d:
> 0x%08x%s\n",
> + parsed - 1, value,
> + is_reserved ? " (reserved)" :
> "");
> + } else {
> + igt_warn("Too many PAT entries, line
> ignored: %s\n", line);
> + }
> + } else {
> + igt_warn("Failed to parse PAT entry
> line: %s\n", line);
> + }
> + } else if (strncmp(line, "PAT_MODE", 8) == 0) {
> + p = strstr(line, "(");
> + if (p && sscanf(p, "(%x", &value) == 1)
> + xe_pat_cache->pat_mode = value;
> + } else if (strncmp(line, "PAT_ATS", 7) == 0) {
> + p = strstr(line, "(");
> + if (p && sscanf(p, "(%x", &value) == 1)
> + xe_pat_cache->pat_ats = value;
> + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
> + p = strstr(line, "=");
> + if (p && sscanf(p, "= %d", &value) == 1)
> + xe_pat_cache->uc = value;
> + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
> + p = strstr(line, "=");
> + if (p && sscanf(p, "= %d", &value) == 1)
> + xe_pat_cache->wt = value;
> + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
> + p = strstr(line, "=");
> + if (p && sscanf(p, "= %d", &value) == 1)
> + xe_pat_cache->wb = value;
> + } else if (strncmp(line,
> "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
> + p = strstr(line, "=");
> + if (p && sscanf(p, "= %d", &value) == 1)
> + xe_pat_cache->uc_comp = value;
> + }
What will fall into the else here?
Shuicheng
> + }
> +
> + free(line);
> + fclose(dbgfs_file);
> +
> + return parsed;
> +}
> +
> static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) {
> uint16_t dev_id = intel_get_drm_devid(fd);
>
> - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
> - pat->uc = 3;
> - pat->wb = 2;
> - pat->max_index = 31;
> - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
> - intel_get_device_info(dev_id)->graphics_ver == 20) {
> - pat->uc = 3;
> - pat->wt = 15; /* Compressed + WB-transient */
> - pat->wb = 2;
> - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
> - pat->max_index = 31;
> -
> - /* Wa_16023588340: CLOS3 entries at end of table are
> unusable */
> - if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
> - pat->max_index -= 4;
> + if (intel_gen(dev_id) >= 20) {
> + /* Cache parsed PAT config per device to avoid re-reading
> debugfs on every call */
> + static __thread struct intel_pat_cache intel_pat_cache;
> + static __thread uint16_t cached_devid;
> + if (cached_devid != dev_id) {
> + int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
> + igt_require(ret > 0);
> + cached_devid = dev_id;
> + }
> + *pat = intel_pat_cache;
> } else if (IS_METEORLAKE(dev_id)) {
> pat->uc = 2;
> pat->wt = 1;
> @@ -96,3 +182,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
> intel_get_pat_idx(fd, &pat);
> return pat.wb;
> }
> +
> +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table) {
> + struct intel_pat_cache pat = {};
> + intel_get_pat_idx(fd, &pat);
> +
> + memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) * sizeof(struct
> +xe_pat_entry));
> +
> + return pat.max_index + 1;
> +}
> diff --git a/lib/intel_pat.h b/lib/intel_pat.h index eb48cbc65..1d6c4f1ad
> 100644
> --- a/lib/intel_pat.h
> +++ b/lib/intel_pat.h
> @@ -6,9 +6,16 @@
> #ifndef INTEL_PAT_H
> #define INTEL_PAT_H
>
> +#include <stdbool.h>
> #include <stdint.h>
>
> #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better
> */
> +#define XE_PAT_MAX_ENTRIES 32
> +
> +struct xe_pat_entry {
> + uint32_t pat;
> + bool rsvd;
> +};
>
> uint8_t intel_get_max_pat_index(int fd);
>
> @@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
>
> uint8_t intel_get_pat_idx_uc_comp(int fd);
>
> +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table);
> +
> #endif /* INTEL_PAT_H */
> --
> 2.43.0
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (8 preceding siblings ...)
2025-12-06 13:36 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-12-07 4:24 ` Patchwork
2025-12-10 9:21 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev4) Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-07 4:24 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 137709 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev2)
URL : https://patchwork.freedesktop.org/series/157481/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8658_full -> IGTPW_14168_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14168_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14168_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_14168/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14168_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-mtlp: [PASS][1] -> [FAIL][2] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-3/igt@kms_plane@plane-panning-bottom-right-suspend.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
New tests
---------
New tests have been introduced between IGT_8658_full and IGTPW_14168_full:
### New IGT tests (2) ###
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [2.07, 2.20] s
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [2.05, 2.19] s
Known issues
------------
Here are the changes found in IGTPW_14168_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-glk: NOTRUN -> [DMESG-WARN][6] ([i915#15095]) +1 other test dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk6/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#6335])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#280])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#280])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#4771])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#4771])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#4525])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#4525])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_big@single:
- shard-tglu-1: NOTRUN -> [ABORT][19] ([i915#11713])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#6334]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-17/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@gem_exec_fence@submit.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-15/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-1/igt@gem_exec_flush@basic-wb-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-14/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@secure-non-master:
- shard-rkl: NOTRUN -> [SKIP][25] +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3281]) +13 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3281])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-range:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#14544] / [i915#3281])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +13 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4860])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4860])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-17/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#2190])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][34] ([i915#2190])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#4613] / [i915#7582])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-glk: NOTRUN -> [SKIP][36] ([i915#4613]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4613])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#12193]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4565]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4077]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@gem_mmap_gtt@zero-extend.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4077]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@gem_mmap_gtt@zero-extend.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4077]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-8/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][48] ([i915#2658])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk8/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][49] ([i915#2658])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-snb6/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][50] ([i915#2658]) +1 other test warn
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-4/igt@gem_pread@exhaustion.html
* igt@gem_pread@self:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3282])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@gem_pread@self.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@gem_pread@snoop.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_readwrite@read-write:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@gem_readwrite@read-write.html
* igt@gem_readwrite@write-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-7/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-5/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-glk10: NOTRUN -> [SKIP][60] +59 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk10/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4079])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#3323])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#14544] / [i915#3297]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][67] ([i915#13356] / [i915#14586])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk8/igt@gem_workarounds@suspend-resume.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][68] -> [ABORT][69] ([i915#15152])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#14123])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@i915_drm_fdinfo@all-busy-check-all.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#14123])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#11527]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#11527]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#14073]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#14118])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-hang.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#14118])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: NOTRUN -> [DMESG-WARN][82] ([i915#13029] / [i915#14545])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][83] -> [ABORT][84] ([i915#15342])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][85] -> [ABORT][86] ([i915#15386])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#8399])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][88] ([i915#13790] / [i915#2681]) +1 other test warn
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#5723])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][90] -> [DMESG-FAIL][91] ([i915#12061]) +1 other test dmesg-fail
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [PASS][92] -> [ABORT][93] ([i915#15140])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#4817]) +1 other test incomplete
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk1/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4212]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#12454] / [i915#12712])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#12454] / [i915#12712])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#12454] / [i915#12712])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][100] ([i915#1769])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][101] ([i915#1769])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#5286]) +7 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#5286])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5286]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3638]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][109] +12 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-mtlp: [PASS][110] -> [FAIL][111] ([i915#5138]) +1 other test fail
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-7/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
- shard-mtlp: NOTRUN -> [SKIP][114] +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-4/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-17/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#6095]) +135 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#14098] / [i915#6095]) +39 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#6095]) +114 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#12313]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#12313]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#12313])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#6095]) +6 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#6095]) +64 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][126] +384 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +68 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#6095]) +26 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: NOTRUN -> [INCOMPLETE][129] ([i915#12796]) +1 other test incomplete
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#6095]) +24 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#12313])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#13783]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-4/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][141] -> [SKIP][142] ([i915#12655] / [i915#3555])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@kms_color@deep-color.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#9979])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-7/igt@kms_color@deep-color.html
* igt@kms_colorop@plane-xr24-xr24-bt2020_oetf:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#15343]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-1/igt@kms_colorop@plane-xr24-xr24-bt2020_oetf.html
* igt@kms_colorop@plane-xr24-xr24-srgb_eotf-srgb_inv_eotf-srgb_eotf:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#15343]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_colorop@plane-xr24-xr24-srgb_eotf-srgb_inv_eotf-srgb_eotf.html
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#15343]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_colorop@plane-xr24-xr24-srgb_eotf-srgb_inv_eotf-srgb_eotf.html
* igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#15343]) +6 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf.html
* igt@kms_colorop@plane-xr30-xr30-pq_125_eotf:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#15343]) +10 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@kms_colorop@plane-xr30-xr30-pq_125_eotf.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#3116] / [i915#3299])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#15330])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [FAIL][154] ([i915#7173]) +1 other test fail
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3555]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#13049]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#3555]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [PASS][160] -> [FAIL][161] ([i915#13566]) +1 other test fail
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][162] -> [FAIL][163] ([i915#13566]) +3 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][164] ([i915#13566]) +2 other tests fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#3555]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#13049]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-dg1: [PASS][168] -> [DMESG-WARN][169] ([i915#4423])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-128x128.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][171] ([i915#12358] / [i915#14152] / [i915#7882])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][172] ([i915#12358] / [i915#14152])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#13046] / [i915#5354]) +5 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#14544]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#9067])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#4103])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#9723])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#1769] / [i915#3555] / [i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#3804])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#1257])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#13749]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#13707])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#13707])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#3840])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fb_coherency@memset-crc:
- shard-glk: NOTRUN -> [CRASH][188] ([i915#15351]) +1 other test crash
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk1/igt@kms_fb_coherency@memset-crc.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#1839]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-14/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#1839])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@kms_feature_discovery@display-4x.html
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#1839]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3637] / [i915#9934]) +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#9934]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#14544] / [i915#9934]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#9934]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +5 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#9934]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#8381])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][200] ([i915#12745] / [i915#4839])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk10/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][201] ([i915#12745])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#2587] / [i915#2672]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#14544] / [i915#2672] / [i915#3555])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#14544] / [i915#2672])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#2672]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/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-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672] / [i915#3555])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#2672]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672] / [i915#3555])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +3 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#1825])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#1825])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][220] +25 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#10055])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#15102])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][223] +101 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#15104]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#15102]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#10433] / [i915#15102] / [i915#3458])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +14 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#1825]) +14 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#15102]) +24 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#9766])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#9766])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#9766])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15102]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#15104]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#15104])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#15102]) +6 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#15102] / [i915#3023]) +9 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#15102] / [i915#3458]) +11 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#5354]) +16 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][240] +69 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#8708]) +12 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15102] / [i915#3458]) +10 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#12713])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8228])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-15/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#12394])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#15283])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#13522])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#4816])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#4816])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#1839] / [i915#4816])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [INCOMPLETE][255] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][256] ([i915#14712])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#14712])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#14712])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#13026]) +1 other test incomplete
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][260] ([i915#10647] / [i915#12177])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][261] ([i915#10647]) +1 other test fail
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#3555]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#13958])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#13958]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-8/igt@kms_plane_multiple@2x-tiling-y.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#13958])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#13958])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#14259])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#14259])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-15/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#14259])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-7/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#15329]) +4 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#5354])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-19/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#9812])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#3828])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#15128])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#4281])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][276] -> [SKIP][277] ([i915#9340])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#3828])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][279] -> [SKIP][280] ([i915#14544] / [i915#15073])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#15073])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#15073])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15073])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#15073])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#6524])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#6524] / [i915#6805])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-6/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#6524])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][288] ([i915#11520]) +10 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#11520])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#11520]) +7 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#9808])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12316]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#11520]) +7 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][294] ([i915#11520]) +3 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-snb5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#11520]) +7 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-16/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#11520]) +7 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-glk10: NOTRUN -> [SKIP][297] ([i915#11520]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#9683])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#9688]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-8/igt@kms_psr@fbc-psr-cursor-mmap-cpu@edp-1.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#9732]) +25 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#9732]) +6 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +16 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@kms_psr@psr-cursor-render.html
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#14544] / [i915#9732])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +7 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#1072] / [i915#9732]) +13 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-13/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#5289])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#12755])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12755])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][310] ([i915#13179]) +1 other test abort
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8809])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-7/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#8623])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [PASS][313] -> [INCOMPLETE][314] ([i915#12276]) +1 other test incomplete
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][315] ([i915#12276]) +1 other test incomplete
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9906]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#9906])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@kms_vrr@flip-basic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#9906]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#9906])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#9906])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#2437])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-9/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#2437] / [i915#9412])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#2437] / [i915#9412])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][324] ([i915#2437]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-glk6/igt@kms_writeback@writeback-fb-id.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#2435])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-idle-check-all:
- shard-dg2: NOTRUN -> [FAIL][326] ([i915#4349]) +2 other tests fail
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@perf_pmu@busy-idle-check-all.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [PASS][327] -> [FAIL][328] ([i915#4349]) +4 other tests fail
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][329] +12 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#8516])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-6/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#14121]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@prime_mmap@test_aperture_limit.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#3708])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#3708]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-7/igt@prime_vgem@fence-read-hang.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#3708])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][335] ([i915#12910])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [ABORT][336] ([i915#15131]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-1/igt@gem_eio@in-flight-suspend.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@gem_eio@in-flight-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [INCOMPLETE][338] ([i915#13356]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [DMESG-FAIL][340] ([i915#12061]) -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-8/igt@i915_selftest@live@workarounds.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][342] ([i915#5956]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [FAIL][344] ([i915#13566]) -> [PASS][345] +3 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [FAIL][346] ([i915#13566]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][348] ([i915#3555]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-mtlp: [FAIL][350] ([i915#10826]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race.html
* igt@kms_flip@dpms-vs-vblank-race@d-edp1:
- shard-mtlp: [FAIL][352] -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race@d-edp1.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race@d-edp1.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2: [FAIL][354] ([i915#6880]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][356] ([i915#3555] / [i915#8228]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [SKIP][358] ([i915#3555] / [i915#8228]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers:
- shard-dg1: [DMESG-WARN][360] ([i915#4423]) -> [PASS][361] +2 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-17/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][362] ([i915#15073]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][364] ([i915#3555] / [i915#9906]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@kms_vrr@negative-basic.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-11/igt@kms_vrr@negative-basic.html
* igt@perf@polling@0-rcs0:
- shard-tglu: [FAIL][366] ([i915#10538]) -> [PASS][367] +1 other test pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-3/igt@perf@polling@0-rcs0.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-tglu-5/igt@perf@polling@0-rcs0.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][368] ([i915#14544] / [i915#8411]) -> [SKIP][369] ([i915#8411])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][370] ([i915#11078]) -> [SKIP][371] ([i915#11078] / [i915#14544])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@device_reset@cold-reset-bound.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][372] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][373] ([i915#3555] / [i915#9323])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][374] ([i915#14544] / [i915#7697]) -> [SKIP][375] ([i915#7697])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][376] ([i915#14544] / [i915#4525]) -> [SKIP][377] ([i915#4525])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [SKIP][378] ([i915#14544] / [i915#3281]) -> [SKIP][379] ([i915#3281]) +4 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [SKIP][380] ([i915#3281]) -> [SKIP][381] ([i915#14544] / [i915#3281]) +2 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-active.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][382] ([i915#14544] / [i915#3282]) -> [SKIP][383] ([i915#3282]) +7 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][384] ([i915#3282]) -> [SKIP][385] ([i915#14544] / [i915#3282]) +2 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@gem_partial_pwrite_pread@write-display.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][386] ([i915#13717] / [i915#14544]) -> [SKIP][387] ([i915#13717]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][388] ([i915#14544] / [i915#3297]) -> [SKIP][389] ([i915#3297])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][390] ([i915#3297]) -> [SKIP][391] ([i915#14544] / [i915#3297])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: [SKIP][392] ([i915#2527]) -> [SKIP][393] ([i915#14544] / [i915#2527]) +2 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@gen9_exec_parse@allowed-single.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][394] ([i915#14544] / [i915#2527]) -> [SKIP][395] ([i915#2527]) +2 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][396] ([i915#6412]) -> [SKIP][397] ([i915#14544] / [i915#6412])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@i915_module_load@resize-bar.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@i915_module_load@resize-bar.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][398] ([i915#14544] / [i915#5286]) -> [SKIP][399] ([i915#5286]) +3 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][400] ([i915#5286]) -> [SKIP][401] ([i915#14544] / [i915#5286]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][402] ([i915#14544] / [i915#3638]) -> [SKIP][403] ([i915#3638]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][404] ([i915#3638]) -> [SKIP][405] ([i915#14544] / [i915#3638]) +2 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][406] ([i915#14544]) -> [SKIP][407] +17 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][408] -> [SKIP][409] ([i915#14544]) +12 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: [SKIP][410] ([i915#4538]) -> [SKIP][411] ([i915#4423] / [i915#4538])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][412] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][413] ([i915#14098] / [i915#6095]) +9 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][414] ([i915#12313]) -> [SKIP][415] ([i915#12313] / [i915#14544]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][416] ([i915#14544] / [i915#6095]) -> [SKIP][417] ([i915#6095]) +3 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][418] ([i915#14098] / [i915#6095]) -> [SKIP][419] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][420] ([i915#6095]) -> [SKIP][421] ([i915#14544] / [i915#6095]) +3 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][422] ([i915#12805] / [i915#14544]) -> [SKIP][423] ([i915#12805])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-rkl: [SKIP][424] ([i915#11151] / [i915#7828]) -> [SKIP][425] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-rkl: [SKIP][426] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][427] ([i915#11151] / [i915#7828]) +4 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_colorop@plane-xr24-xr24-pq_125_inv_eotf:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#15343]) -> [SKIP][429] ([i915#15343]) +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_colorop@plane-xr24-xr24-pq_125_inv_eotf.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_colorop@plane-xr24-xr24-pq_125_inv_eotf.html
* igt@kms_colorop@plane-xr30-xr30-pq_125_eotf-pq_125_inv_eotf:
- shard-rkl: [SKIP][430] ([i915#15343]) -> [SKIP][431] ([i915#14544] / [i915#15343]) +3 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@kms_colorop@plane-xr30-xr30-pq_125_eotf-pq_125_inv_eotf.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_colorop@plane-xr30-xr30-pq_125_eotf-pq_125_inv_eotf.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#15330]) -> [SKIP][433] ([i915#15330])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_content_protection@dp-mst-suspend-resume.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#3116]) -> [SKIP][435] ([i915#3116])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][436] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][437] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-1/igt@kms_content_protection@legacy.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][438] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][439] ([i915#6944] / [i915#7118] / [i915#9424])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@kms_content_protection@type1.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#3555]) -> [SKIP][441] ([i915#3555]) +2 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][442] ([i915#13049] / [i915#14544]) -> [SKIP][443] ([i915#13049]) +1 other test skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][444] ([i915#13691] / [i915#14544]) -> [SKIP][445] ([i915#13691])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-rkl: [SKIP][446] ([i915#1257]) -> [SKIP][447] ([i915#1257] / [i915#14544])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_dp_aux_dev.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][448] ([i915#13748] / [i915#14544]) -> [SKIP][449] ([i915#13748])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][451] ([i915#3555] / [i915#3840])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][452] ([i915#658]) -> [SKIP][453] ([i915#14544] / [i915#658])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_feature_discovery@psr2.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#9934]) -> [SKIP][455] ([i915#9934]) +4 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-rkl: [SKIP][456] ([i915#9934]) -> [SKIP][457] ([i915#14544] / [i915#9934]) +3 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][458] ([i915#2672] / [i915#3555]) -> [SKIP][459] ([i915#14544] / [i915#2672] / [i915#3555])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][460] ([i915#2672]) -> [SKIP][461] ([i915#14544] / [i915#2672])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][463] ([i915#2672] / [i915#3555]) +2 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#2672]) -> [SKIP][465] ([i915#2672]) +2 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#15102]) -> [SKIP][467] ([i915#15102]) +1 other test skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#1825]) -> [SKIP][469] ([i915#1825]) +29 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][470] ([i915#4423] / [i915#8708]) -> [SKIP][471] ([i915#8708])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][472] ([i915#1825]) -> [SKIP][473] ([i915#14544] / [i915#1825]) +16 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][474] ([i915#5439]) -> [SKIP][475] ([i915#14544] / [i915#5439])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][476] ([i915#15102] / [i915#3458]) -> [SKIP][477] ([i915#10433] / [i915#15102] / [i915#3458])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][478] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][479] ([i915#15102] / [i915#3458]) +2 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg1: [SKIP][480] ([i915#15102] / [i915#3458]) -> [SKIP][481] ([i915#15102] / [i915#3458] / [i915#4423])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-rte.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][483] ([i915#15102] / [i915#3023]) +7 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: [SKIP][484] ([i915#15102] / [i915#3023]) -> [SKIP][485] ([i915#14544] / [i915#15102] / [i915#3023]) +12 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][486] ([i915#1187] / [i915#12713]) -> [SKIP][487] ([i915#12713])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][488] ([i915#12339] / [i915#14544]) -> [SKIP][489] ([i915#12339])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: [SKIP][490] ([i915#12394] / [i915#14544]) -> [SKIP][491] ([i915#12394])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][492] ([i915#12339]) -> [SKIP][493] ([i915#12339] / [i915#14544])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#6301]) -> [SKIP][495] ([i915#6301])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#14712]) -> [SKIP][497] ([i915#14712])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][498] ([i915#14259]) -> [SKIP][499] ([i915#14259] / [i915#14544])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: [SKIP][500] ([i915#15329]) -> [SKIP][501] ([i915#14544] / [i915#15329]) +6 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][502] ([i915#15329] / [i915#3555]) -> [SKIP][503] ([i915#14544] / [i915#15329] / [i915#3555])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#5354]) -> [SKIP][505] ([i915#5354])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][506] ([i915#14544] / [i915#15073]) -> [SKIP][507] ([i915#15073])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@d3hot:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#6524]) -> [SKIP][509] ([i915#6524])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_prime@d3hot.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][510] ([i915#11520] / [i915#14544]) -> [SKIP][511] ([i915#11520]) +6 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][512] ([i915#11520]) -> [SKIP][513] ([i915#11520] / [i915#14544]) +4 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#9683]) -> [SKIP][515] ([i915#9683])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][516] ([i915#1072] / [i915#9732]) -> [SKIP][517] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: [SKIP][518] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][519] ([i915#1072] / [i915#9732]) +13 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-3/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: [SKIP][520] ([i915#9685]) -> [SKIP][521] ([i915#14544] / [i915#9685])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#5289]) -> [SKIP][523] ([i915#5289]) +1 other test skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][524] ([i915#8623]) -> [SKIP][525] ([i915#14544] / [i915#8623])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][526] ([i915#11920] / [i915#14544]) -> [SKIP][527] ([i915#11920])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_vrr@lobf.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-5/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: [SKIP][528] ([i915#2437] / [i915#9412]) -> [SKIP][529] ([i915#14544] / [i915#2437] / [i915#9412])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: [SKIP][530] ([i915#2437]) -> [SKIP][531] ([i915#14544] / [i915#2437])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][532] ([i915#2434]) -> [SKIP][533] ([i915#14544] / [i915#2434])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@perf@mi-rpc.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][534] ([i915#2433]) -> [SKIP][535] ([i915#14544] / [i915#2433])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][536] ([i915#8516]) -> [SKIP][537] ([i915#14544] / [i915#8516])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][539] ([i915#3291] / [i915#3708])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@prime_vgem@basic-read.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-8/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][540] ([i915#3708]) -> [SKIP][541] ([i915#14544] / [i915#3708])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
[i915#15283]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15283
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15343
[i915#15351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15351
[i915#15386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15386
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8658 -> IGTPW_14168
CI-20190529: 20190529
CI_DRM_17642: db6505187efb9c255df1dd6e78c00d95fadfef79 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14168: 14168
IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14168/index.html
[-- Attachment #2: Type: text/html, Size: 187562 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser
2025-12-06 1:12 ` [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
@ 2025-12-08 16:48 ` Matthew Auld
2025-12-10 5:24 ` [PATCH v3 " Xin Wang
1 sibling, 0 replies; 29+ messages in thread
From: Matthew Auld @ 2025-12-08 16:48 UTC (permalink / raw)
To: Xin Wang, igt-dev; +Cc: shuicheng.lin, alex.zuo
On 06/12/2025 01:12, Xin Wang wrote:
> Pull in the Xe PAT table parsed by lib/intel_pat so Gen20+ tests
Nit: s/Gen20/graphics vesion 20+/ or just xe2+. We stopped using the
"gen" terminology on modern hw, and moved to the ip version stuff.
> use the driver-provided entries instead of hard-coded reservations.
>
> CC: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Xin Wang <x.wang@intel.com>
> ---
> tests/intel/xe_pat.c | 38 ++++++++++++++++++++++++++++++++++++--
> 1 file changed, 36 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
> index 59dfb6b11..b911e9cbf 100644
> --- a/tests/intel/xe_pat.c
> +++ b/tests/intel/xe_pat.c
> @@ -77,6 +77,18 @@ static void userptr_coh_none(int fd)
> xe_vm_destroy(fd, vm);
> }
>
> +#define BITS_TO(n) (n >= sizeof(long) * 8 ? ~0 : (1UL << (n)) - 1)
> +#define BITMASK(high, low) (uint32_t)(BITS_TO(high+1) & ~BITS_TO(low))
> +#define FIELD_GET(val, high, low) (((val) & (BITMASK(high, low))) >> (low))
> +#define FIELD_GET_BIT(val, n) FIELD_GET(val, n, n)
> +
> +#define XE_NO_PROMOTE(val) FIELD_GET_BIT(val, 10)
> +#define XE_COMP_EN(val) FIELD_GET_BIT(val, 9)
> +#define XE_L3_CLOS(val) FIELD_GET(val, 7, 6)
> +#define XE_L3_POLICY(val) FIELD_GET(val, 5, 4)
> +#define XE_L4_POLICY(val) FIELD_GET(val, 3, 2)
> +#define XE_COH_MODE(val) FIELD_GET(val, 1, 0)
> +
> /**
> * SUBTEST: pat-index-all
> * Test category: functionality test
> @@ -86,6 +98,7 @@ static void pat_index_all(int fd)
> {
> uint16_t dev_id = intel_get_drm_devid(fd);
> size_t size = xe_get_default_alignment(fd);
> + struct xe_pat_entry xe_pat_table[XE_PAT_MAX_ENTRIES] = {0};
> uint32_t vm, bo;
> uint8_t pat_index;
>
> @@ -114,10 +127,31 @@ static void pat_index_all(int fd)
>
> igt_assert(intel_get_max_pat_index(fd));
>
> + if (intel_gen(dev_id) >= 20) {
s/intel_gen/intel_graphics_ver/
> + /* Get the Xe PAT entries from debugfs */
> + uint8_t pat_entries = xe_get_pat_entries(fd, xe_pat_table);
> +
> + for (int i = 0; i < pat_entries; i++) {
> + uint32_t pat = xe_pat_table[i].pat;
> + igt_debug("PAT[%2d] = [ %u, %u, %u, %u, %u, %u] (%#8x)%s\n", i,
> + XE_NO_PROMOTE(pat),
> + XE_COMP_EN(pat),
> + XE_L3_CLOS(pat),
> + XE_L3_POLICY(pat),
> + XE_L4_POLICY(pat),
> + XE_COH_MODE(pat),
> + pat,
> + xe_pat_table[i].rsvd ? " *" : "");
> + }
> + }
> +
> for (pat_index = 0; pat_index <= intel_get_max_pat_index(fd);
> pat_index++) {
> - if (intel_get_device_info(dev_id)->graphics_ver >= 20 &&
> - pat_index >= 16 && pat_index <= 19) { /* hw reserved */
> +
> + bool hw_reserved = intel_gen(dev_id) >= 20 ?
intel_graphics_ver
Otherwise lgtm. This should make things easier to maintain going
forward. Thanks for working on this,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> + xe_pat_table[pat_index].rsvd : false;
> +
> + if (hw_reserved) {
> igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x40000,
> size, DRM_XE_VM_BIND_OP_MAP, 0, NULL, 0, 0,
> pat_index, 0),
^ permalink raw reply [flat|nested] 29+ messages in thread
* RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-06 18:48 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Lin, Shuicheng
@ 2025-12-08 18:37 ` Wang, X
2025-12-08 23:27 ` Lin, Shuicheng
2025-12-09 9:36 ` Kamil Konieczny
2025-12-08 19:25 ` Wang, X
1 sibling, 2 replies; 29+ messages in thread
From: Wang, X @ 2025-12-08 18:37 UTC (permalink / raw)
To: Lin, Shuicheng, igt-dev@lists.freedesktop.org; +Cc: Zuo, Alex, Auld, Matthew
> -----Original Message-----
> From: Lin, Shuicheng <shuicheng.lin@intel.com>
> Sent: Saturday, December 6, 2025 10:49
> To: Wang, X <x.wang@intel.com>; igt-dev@lists.freedesktop.org
> Cc: Zuo, Alex <alex.zuo@intel.com>; Auld, Matthew
> <matthew.auld@intel.com>
> Subject: RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
>
> On Fri, Dec 5, 2025 5:13 PM X Wang wrote:
> > Parse the PAT software configuration from gt0/pat_sw_config instead of
> > relying on hard-coded indices.
>
> So the lib is not compatible with previous kernel that doesn't have sw config.
> Should we keep the hard-code as fall back?
The second patch also depends on gt0/pat_sw_config . If we retain the hard-coded
values, we would need to duplicate them in the second patch as well, which would
make the code quite messy. Do we really want to go down that path?
In the current implementation, I've added igt_require(ret > 0); so that if the kernel
does not support this debugfs, IGT will report an error message to inform the user
that the kernel is not compatible.
>
> >
> > Expose xe_get_pat_entries() so tests can grab the PAT table.
> >
> > CC: Matthew Auld <matthew.auld@intel.com>
> > Signed-off-by: Xin Wang <x.wang@intel.com>
> > ---
> > lib/intel_pat.c | 126
> ++++++++++++++++++++++++++++++++++++++++++-
> > -----
> > lib/intel_pat.h | 9 ++++
> > 2 files changed, 120 insertions(+), 15 deletions(-)
> >
> > diff --git a/lib/intel_pat.c b/lib/intel_pat.c index
> > e3588110a..2d204e652
> > 100644
> > --- a/lib/intel_pat.c
> > +++ b/lib/intel_pat.c
> > @@ -6,6 +6,7 @@
> > #include "intel_pat.h"
> >
> > #include "igt.h"
> > +#include "igt_core.h"
> >
> > struct intel_pat_cache {
> > uint8_t uc; /* UC + COH_NONE */
> > @@ -13,27 +14,112 @@ struct intel_pat_cache {
> > uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
> > uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and
> later*/
> > uint8_t max_index;
> > + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
> > + uint32_t pat_mode;
> > + uint32_t pat_ats;
> > };
> >
> > +/**
> > + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table)
> > +software configuration
> > + * from debugfs
> > + *
> > + * @drm_fd: DRM device fd to use with igt_debugfs_open
> > + * @xe_pat_cache: Pointer to a struct that will receive the parsed
> > +PAT configuration
> > + *
> > + * Returns: The number of PAT entries successfully read on success,
> > +or a
> > negative error
> > + * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
> > + */
> > +static int32_t xe_get_pat_sw_config(int drm_fd, struct
> > +intel_pat_cache
> > +*xe_pat_cache) {
> > + char *line = NULL;
> > + size_t line_len = 0;
> > + ssize_t nread;
> > + int32_t parsed = 0;
> > + int dbgfs_fd;
> > + FILE *dbgfs_file = NULL;
> > +
> > + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config",
> > O_RDONLY);
> > + if (dbgfs_fd < 0)
> > + return -ENOENT;
> > + dbgfs_file = fdopen(dbgfs_fd, "r");
> > + if (!dbgfs_file) {
> > + close(dbgfs_fd);
> > + return -errno;
> > + }
> > +
> > + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
> > + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
> > + uint32_t value = 0;
> > + char *p = NULL;
> > +
> > + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
> > + if (strncmp(line, "PAT[", 4) == 0) {
> > + bool is_reserved;
> > + p = strstr(line, "(");
> > + if (p && sscanf(p, "(%x", &value) == 1) {
> > + if (parsed < XE_PAT_MAX_ENTRIES) {
> > + is_reserved = strchr(line, '*') != NULL;
> > + xe_pat_cache->entries[parsed].pat =
> > value;
> > + xe_pat_cache->entries[parsed].rsvd =
> > is_reserved;
> > + xe_pat_cache->max_index = parsed;
> > + parsed++;
> > +
> > + igt_debug("Parsed PAT entry %d:
> > 0x%08x%s\n",
> > + parsed - 1, value,
> > + is_reserved ? " (reserved)" :
> > "");
> > + } else {
> > + igt_warn("Too many PAT entries, line
> > ignored: %s\n", line);
> > + }
> > + } else {
> > + igt_warn("Failed to parse PAT entry
> > line: %s\n", line);
> > + }
> > + } else if (strncmp(line, "PAT_MODE", 8) == 0) {
> > + p = strstr(line, "(");
> > + if (p && sscanf(p, "(%x", &value) == 1)
> > + xe_pat_cache->pat_mode = value;
> > + } else if (strncmp(line, "PAT_ATS", 7) == 0) {
> > + p = strstr(line, "(");
> > + if (p && sscanf(p, "(%x", &value) == 1)
> > + xe_pat_cache->pat_ats = value;
> > + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->uc = value;
> > + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->wt = value;
> > + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->wb = value;
> > + } else if (strncmp(line,
> > "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->uc_comp = value;
> > + }
>
> What will fall into the else here?
>
> Shuicheng
>
> > + }
> > +
> > + free(line);
> > + fclose(dbgfs_file);
> > +
> > + return parsed;
> > +}
> > +
> > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) {
> > uint16_t dev_id = intel_get_drm_devid(fd);
> >
> > - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
> > - pat->uc = 3;
> > - pat->wb = 2;
> > - pat->max_index = 31;
> > - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
> > - intel_get_device_info(dev_id)->graphics_ver == 20) {
> > - pat->uc = 3;
> > - pat->wt = 15; /* Compressed + WB-transient */
> > - pat->wb = 2;
> > - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
> > - pat->max_index = 31;
> > -
> > - /* Wa_16023588340: CLOS3 entries at end of table are
> > unusable */
> > - if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
> > - pat->max_index -= 4;
> > + if (intel_gen(dev_id) >= 20) {
> > + /* Cache parsed PAT config per device to avoid re-reading
> > debugfs on every call */
> > + static __thread struct intel_pat_cache intel_pat_cache;
> > + static __thread uint16_t cached_devid;
> > + if (cached_devid != dev_id) {
> > + int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
> > + igt_require(ret > 0);
> > + cached_devid = dev_id;
> > + }
> > + *pat = intel_pat_cache;
> > } else if (IS_METEORLAKE(dev_id)) {
> > pat->uc = 2;
> > pat->wt = 1;
> > @@ -96,3 +182,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
> > intel_get_pat_idx(fd, &pat);
> > return pat.wb;
> > }
> > +
> > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table) {
> > + struct intel_pat_cache pat = {};
> > + intel_get_pat_idx(fd, &pat);
> > +
> > + memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) *
> > +sizeof(struct xe_pat_entry));
> > +
> > + return pat.max_index + 1;
> > +}
> > diff --git a/lib/intel_pat.h b/lib/intel_pat.h index
> > eb48cbc65..1d6c4f1ad
> > 100644
> > --- a/lib/intel_pat.h
> > +++ b/lib/intel_pat.h
> > @@ -6,9 +6,16 @@
> > #ifndef INTEL_PAT_H
> > #define INTEL_PAT_H
> >
> > +#include <stdbool.h>
> > #include <stdint.h>
> >
> > #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or
> > better */
> > +#define XE_PAT_MAX_ENTRIES 32
> > +
> > +struct xe_pat_entry {
> > + uint32_t pat;
> > + bool rsvd;
> > +};
> >
> > uint8_t intel_get_max_pat_index(int fd);
> >
> > @@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
> >
> > uint8_t intel_get_pat_idx_uc_comp(int fd);
> >
> > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry
> > +*xe_pat_table);
> > +
> > #endif /* INTEL_PAT_H */
> > --
> > 2.43.0
^ permalink raw reply [flat|nested] 29+ messages in thread
* RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-06 18:48 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Lin, Shuicheng
2025-12-08 18:37 ` Wang, X
@ 2025-12-08 19:25 ` Wang, X
1 sibling, 0 replies; 29+ messages in thread
From: Wang, X @ 2025-12-08 19:25 UTC (permalink / raw)
To: Lin, Shuicheng, igt-dev@lists.freedesktop.org; +Cc: Zuo, Alex, Auld, Matthew
> -----Original Message-----
> From: Lin, Shuicheng <shuicheng.lin@intel.com>
> Sent: Saturday, December 6, 2025 10:49
> To: Wang, X <x.wang@intel.com>; igt-dev@lists.freedesktop.org
> Cc: Zuo, Alex <alex.zuo@intel.com>; Auld, Matthew
> <matthew.auld@intel.com>
> Subject: RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
>
> On Fri, Dec 5, 2025 5:13 PM X Wang wrote:
> > Parse the PAT software configuration from gt0/pat_sw_config instead of
> > relying on hard-coded indices.
>
> So the lib is not compatible with previous kernel that doesn't have sw config.
> Should we keep the hard-code as fall back?
>
> >
> > Expose xe_get_pat_entries() so tests can grab the PAT table.
> >
> > CC: Matthew Auld <matthew.auld@intel.com>
> > Signed-off-by: Xin Wang <x.wang@intel.com>
> > ---
> > lib/intel_pat.c | 126
> ++++++++++++++++++++++++++++++++++++++++++-
> > -----
> > lib/intel_pat.h | 9 ++++
> > 2 files changed, 120 insertions(+), 15 deletions(-)
> >
> > diff --git a/lib/intel_pat.c b/lib/intel_pat.c index
> > e3588110a..2d204e652
> > 100644
> > --- a/lib/intel_pat.c
> > +++ b/lib/intel_pat.c
> > @@ -6,6 +6,7 @@
> > #include "intel_pat.h"
> >
> > #include "igt.h"
> > +#include "igt_core.h"
> >
> > struct intel_pat_cache {
> > uint8_t uc; /* UC + COH_NONE */
> > @@ -13,27 +14,112 @@ struct intel_pat_cache {
> > uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
> > uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and
> later*/
> > uint8_t max_index;
> > + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
> > + uint32_t pat_mode;
> > + uint32_t pat_ats;
> > };
> >
> > +/**
> > + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table)
> > +software configuration
> > + * from debugfs
> > + *
> > + * @drm_fd: DRM device fd to use with igt_debugfs_open
> > + * @xe_pat_cache: Pointer to a struct that will receive the parsed
> > +PAT configuration
> > + *
> > + * Returns: The number of PAT entries successfully read on success,
> > +or a
> > negative error
> > + * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
> > + */
> > +static int32_t xe_get_pat_sw_config(int drm_fd, struct
> > +intel_pat_cache
> > +*xe_pat_cache) {
> > + char *line = NULL;
> > + size_t line_len = 0;
> > + ssize_t nread;
> > + int32_t parsed = 0;
> > + int dbgfs_fd;
> > + FILE *dbgfs_file = NULL;
> > +
> > + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config",
> > O_RDONLY);
> > + if (dbgfs_fd < 0)
> > + return -ENOENT;
> > + dbgfs_file = fdopen(dbgfs_fd, "r");
> > + if (!dbgfs_file) {
> > + close(dbgfs_fd);
> > + return -errno;
> > + }
> > +
> > + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
> > + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
> > + uint32_t value = 0;
> > + char *p = NULL;
> > +
> > + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
> > + if (strncmp(line, "PAT[", 4) == 0) {
> > + bool is_reserved;
> > + p = strstr(line, "(");
> > + if (p && sscanf(p, "(%x", &value) == 1) {
> > + if (parsed < XE_PAT_MAX_ENTRIES) {
> > + is_reserved = strchr(line, '*') != NULL;
> > + xe_pat_cache->entries[parsed].pat =
> > value;
> > + xe_pat_cache->entries[parsed].rsvd =
> > is_reserved;
> > + xe_pat_cache->max_index = parsed;
> > + parsed++;
> > +
> > + igt_debug("Parsed PAT entry %d:
> > 0x%08x%s\n",
> > + parsed - 1, value,
> > + is_reserved ? " (reserved)" :
> > "");
> > + } else {
> > + igt_warn("Too many PAT entries, line
> > ignored: %s\n", line);
> > + }
> > + } else {
> > + igt_warn("Failed to parse PAT entry
> > line: %s\n", line);
> > + }
> > + } else if (strncmp(line, "PAT_MODE", 8) == 0) {
> > + p = strstr(line, "(");
> > + if (p && sscanf(p, "(%x", &value) == 1)
> > + xe_pat_cache->pat_mode = value;
> > + } else if (strncmp(line, "PAT_ATS", 7) == 0) {
> > + p = strstr(line, "(");
> > + if (p && sscanf(p, "(%x", &value) == 1)
> > + xe_pat_cache->pat_ats = value;
> > + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->uc = value;
> > + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->wt = value;
> > + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->wb = value;
> > + } else if (strncmp(line,
> > "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
> > + p = strstr(line, "=");
> > + if (p && sscanf(p, "= %d", &value) == 1)
> > + xe_pat_cache->uc_comp = value;
> > + }
>
> What will fall into the else here?
>
Here is the file format of the pat_sw_config , for the else path we just ignore the un-related lines.
# cat pat_sw_config
PAT table: (* = reserved entry)
PAT[ 0] = [ 0, 0, 0, 0, 3, 0 ] ( 0xc)
PAT[ 1] = [ 0, 0, 0, 0, 3, 2 ] ( 0xe)
PAT[ 2] = [ 0, 0, 0, 0, 3, 3 ] ( 0xf)
PAT[ 3] = [ 0, 0, 0, 3, 3, 0 ] ( 0x3c)
PAT[ 4] = [ 0, 0, 0, 3, 0, 2 ] ( 0x32)
PAT[ 5] = [ 0, 0, 0, 3, 3, 2 ] ( 0x3e)
PAT[ 6] = [ 1, 0, 0, 1, 3, 0 ] ( 0x41c)
PAT[ 7] = [ 0, 0, 0, 3, 0, 3 ] ( 0x33)
PAT[ 8] = [ 0, 0, 0, 3, 0, 0 ] ( 0x30)
PAT[ 9] = [ 0, 1, 0, 0, 3, 0 ] ( 0x20c)
PAT[10] = [ 0, 1, 0, 3, 0, 0 ] ( 0x230)
PAT[11] = [ 1, 1, 0, 1, 3, 0 ] ( 0x61c)
PAT[12] = [ 0, 1, 0, 3, 3, 0 ] ( 0x23c)
PAT[13] = [ 0, 0, 0, 0, 0, 0 ] ( 0x0)
PAT[14] = [ 0, 1, 0, 0, 0, 0 ] ( 0x200)
PAT[15] = [ 1, 1, 0, 1, 1, 0 ] ( 0x614)
PAT[16] = [ 0, 0, 0, 0, 0, 0 ] ( 0x0) *
PAT[17] = [ 0, 0, 0, 0, 0, 0 ] ( 0x0) *
PAT[18] = [ 0, 0, 0, 0, 0, 0 ] ( 0x0) *
PAT[19] = [ 0, 0, 0, 0, 0, 0 ] ( 0x0) *
PAT[20] = [ 0, 0, 1, 0, 3, 0 ] ( 0x4c)
PAT[21] = [ 0, 1, 1, 0, 3, 0 ] ( 0x24c)
PAT[22] = [ 0, 0, 1, 0, 3, 2 ] ( 0x4e)
PAT[23] = [ 0, 0, 1, 0, 3, 3 ] ( 0x4f)
PAT[24] = [ 0, 0, 2, 0, 3, 0 ] ( 0x8c)
PAT[25] = [ 0, 1, 2, 0, 3, 0 ] ( 0x28c)
PAT[26] = [ 0, 0, 2, 0, 3, 2 ] ( 0x8e)
PAT[27] = [ 0, 0, 2, 0, 3, 3 ] ( 0x8f)
PAT[28] = [ 0, 0, 3, 0, 3, 0 ] ( 0xcc)
PAT[29] = [ 0, 1, 3, 0, 3, 0 ] ( 0x2cc)
PAT[30] = [ 0, 0, 3, 0, 3, 2 ] ( 0xce)
PAT[31] = [ 0, 0, 3, 0, 3, 3 ] ( 0xcf)
Page Table Access:
PTA_MODE= [ 0, 0, 0, 0, 3, 0 ] ( 0xc)
PCIe ATS/PASID:
PAT_ATS = [ 0, 0, 0, 0, 3, 3 ] ( 0xf)
Cache Level:
IDX[XE_CACHE_NONE] = 3
IDX[XE_CACHE_WT] = 15
IDX[XE_CACHE_WB] = 2
IDX[XE_CACHE_NONE_COMPRESSION] = 12
Xin
> Shuicheng
>
> > + }
> > +
> > + free(line);
> > + fclose(dbgfs_file);
> > +
> > + return parsed;
> > +}
> > +
> > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) {
> > uint16_t dev_id = intel_get_drm_devid(fd);
> >
> > - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
> > - pat->uc = 3;
> > - pat->wb = 2;
> > - pat->max_index = 31;
> > - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
> > - intel_get_device_info(dev_id)->graphics_ver == 20) {
> > - pat->uc = 3;
> > - pat->wt = 15; /* Compressed + WB-transient */
> > - pat->wb = 2;
> > - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
> > - pat->max_index = 31;
> > -
> > - /* Wa_16023588340: CLOS3 entries at end of table are
> > unusable */
> > - if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
> > - pat->max_index -= 4;
> > + if (intel_gen(dev_id) >= 20) {
> > + /* Cache parsed PAT config per device to avoid re-reading
> > debugfs on every call */
> > + static __thread struct intel_pat_cache intel_pat_cache;
> > + static __thread uint16_t cached_devid;
> > + if (cached_devid != dev_id) {
> > + int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
> > + igt_require(ret > 0);
> > + cached_devid = dev_id;
> > + }
> > + *pat = intel_pat_cache;
> > } else if (IS_METEORLAKE(dev_id)) {
> > pat->uc = 2;
> > pat->wt = 1;
> > @@ -96,3 +182,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
> > intel_get_pat_idx(fd, &pat);
> > return pat.wb;
> > }
> > +
> > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table) {
> > + struct intel_pat_cache pat = {};
> > + intel_get_pat_idx(fd, &pat);
> > +
> > + memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) *
> > +sizeof(struct xe_pat_entry));
> > +
> > + return pat.max_index + 1;
> > +}
> > diff --git a/lib/intel_pat.h b/lib/intel_pat.h index
> > eb48cbc65..1d6c4f1ad
> > 100644
> > --- a/lib/intel_pat.h
> > +++ b/lib/intel_pat.h
> > @@ -6,9 +6,16 @@
> > #ifndef INTEL_PAT_H
> > #define INTEL_PAT_H
> >
> > +#include <stdbool.h>
> > #include <stdint.h>
> >
> > #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or
> > better */
> > +#define XE_PAT_MAX_ENTRIES 32
> > +
> > +struct xe_pat_entry {
> > + uint32_t pat;
> > + bool rsvd;
> > +};
> >
> > uint8_t intel_get_max_pat_index(int fd);
> >
> > @@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
> >
> > uint8_t intel_get_pat_idx_uc_comp(int fd);
> >
> > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry
> > +*xe_pat_table);
> > +
> > #endif /* INTEL_PAT_H */
> > --
> > 2.43.0
^ permalink raw reply [flat|nested] 29+ messages in thread
* RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-08 18:37 ` Wang, X
@ 2025-12-08 23:27 ` Lin, Shuicheng
2025-12-09 9:36 ` Kamil Konieczny
1 sibling, 0 replies; 29+ messages in thread
From: Lin, Shuicheng @ 2025-12-08 23:27 UTC (permalink / raw)
To: Wang, X, igt-dev@lists.freedesktop.org; +Cc: Zuo, Alex, Auld, Matthew
On Mon, Dec 8, 2025 10:38 AM X Wang wrote:
> > -----Original Message-----
> > From: Lin, Shuicheng <shuicheng.lin@intel.com>
> > Sent: Saturday, December 6, 2025 10:49
> > To: Wang, X <x.wang@intel.com>; igt-dev@lists.freedesktop.org
> > Cc: Zuo, Alex <alex.zuo@intel.com>; Auld, Matthew
> > <matthew.auld@intel.com>
> > Subject: RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from
> > debugfs
> >
> > On Fri, Dec 5, 2025 5:13 PM X Wang wrote:
> > > Parse the PAT software configuration from gt0/pat_sw_config instead
> > > of relying on hard-coded indices.
> >
> > So the lib is not compatible with previous kernel that doesn't have sw config.
> > Should we keep the hard-code as fall back?
>
> The second patch also depends on gt0/pat_sw_config . If we retain the hard-
> coded values, we would need to duplicate them in the second patch as well,
> which would make the code quite messy. Do we really want to go down that
> path?
>
> In the current implementation, I've added igt_require(ret > 0); so that if the
> kernel does not support this debugfs, IGT will report an error message to
> inform the user that the kernel is not compatible.
As it is for test, if it is not easy to be backwards compatible, I am OK with it.
Thanks for the explanation.
Shuicheng
>
> >
> > >
> > > Expose xe_get_pat_entries() so tests can grab the PAT table.
> > >
> > > CC: Matthew Auld <matthew.auld@intel.com>
> > > Signed-off-by: Xin Wang <x.wang@intel.com>
> > > ---
> > > lib/intel_pat.c | 126
> > ++++++++++++++++++++++++++++++++++++++++++-
> > > -----
> > > lib/intel_pat.h | 9 ++++
> > > 2 files changed, 120 insertions(+), 15 deletions(-)
> > >
> > > diff --git a/lib/intel_pat.c b/lib/intel_pat.c index
> > > e3588110a..2d204e652
> > > 100644
> > > --- a/lib/intel_pat.c
> > > +++ b/lib/intel_pat.c
> > > @@ -6,6 +6,7 @@
> > > #include "intel_pat.h"
> > >
> > > #include "igt.h"
> > > +#include "igt_core.h"
> > >
> > > struct intel_pat_cache {
> > > uint8_t uc; /* UC + COH_NONE */
> > > @@ -13,27 +14,112 @@ struct intel_pat_cache {
> > > uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
> > > uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and
> > later*/
> > > uint8_t max_index;
> > > + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
> > > + uint32_t pat_mode;
> > > + uint32_t pat_ats;
> > > };
> > >
> > > +/**
> > > + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table)
> > > +software configuration
> > > + * from debugfs
> > > + *
> > > + * @drm_fd: DRM device fd to use with igt_debugfs_open
> > > + * @xe_pat_cache: Pointer to a struct that will receive the parsed
> > > +PAT configuration
> > > + *
> > > + * Returns: The number of PAT entries successfully read on success,
> > > +or a
> > > negative error
> > > + * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
> > > + */
> > > +static int32_t xe_get_pat_sw_config(int drm_fd, struct
> > > +intel_pat_cache
> > > +*xe_pat_cache) {
> > > + char *line = NULL;
> > > + size_t line_len = 0;
> > > + ssize_t nread;
> > > + int32_t parsed = 0;
> > > + int dbgfs_fd;
> > > + FILE *dbgfs_file = NULL;
> > > +
> > > + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config",
> > > O_RDONLY);
> > > + if (dbgfs_fd < 0)
> > > + return -ENOENT;
> > > + dbgfs_file = fdopen(dbgfs_fd, "r");
> > > + if (!dbgfs_file) {
> > > + close(dbgfs_fd);
> > > + return -errno;
> > > + }
> > > +
> > > + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
> > > + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
> > > + uint32_t value = 0;
> > > + char *p = NULL;
> > > +
> > > + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
> > > + if (strncmp(line, "PAT[", 4) == 0) {
> > > + bool is_reserved;
> > > + p = strstr(line, "(");
> > > + if (p && sscanf(p, "(%x", &value) == 1) {
> > > + if (parsed < XE_PAT_MAX_ENTRIES) {
> > > + is_reserved = strchr(line, '*') != NULL;
> > > + xe_pat_cache->entries[parsed].pat =
> > > value;
> > > + xe_pat_cache->entries[parsed].rsvd =
> > > is_reserved;
> > > + xe_pat_cache->max_index = parsed;
> > > + parsed++;
> > > +
> > > + igt_debug("Parsed PAT entry %d:
> > > 0x%08x%s\n",
> > > + parsed - 1, value,
> > > + is_reserved ? " (reserved)" :
> > > "");
> > > + } else {
> > > + igt_warn("Too many PAT entries, line
> > > ignored: %s\n", line);
> > > + }
> > > + } else {
> > > + igt_warn("Failed to parse PAT entry
> > > line: %s\n", line);
> > > + }
> > > + } else if (strncmp(line, "PAT_MODE", 8) == 0) {
> > > + p = strstr(line, "(");
> > > + if (p && sscanf(p, "(%x", &value) == 1)
> > > + xe_pat_cache->pat_mode = value;
> > > + } else if (strncmp(line, "PAT_ATS", 7) == 0) {
> > > + p = strstr(line, "(");
> > > + if (p && sscanf(p, "(%x", &value) == 1)
> > > + xe_pat_cache->pat_ats = value;
> > > + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->uc = value;
> > > + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->wt = value;
> > > + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->wb = value;
> > > + } else if (strncmp(line,
> > > "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->uc_comp = value;
> > > + }
> >
> > What will fall into the else here?
> >
> > Shuicheng
> >
> > > + }
> > > +
> > > + free(line);
> > > + fclose(dbgfs_file);
> > > +
> > > + return parsed;
> > > +}
> > > +
> > > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) {
> > > uint16_t dev_id = intel_get_drm_devid(fd);
> > >
> > > - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
> > > - pat->uc = 3;
> > > - pat->wb = 2;
> > > - pat->max_index = 31;
> > > - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
> > > - intel_get_device_info(dev_id)->graphics_ver == 20) {
> > > - pat->uc = 3;
> > > - pat->wt = 15; /* Compressed + WB-transient */
> > > - pat->wb = 2;
> > > - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
> > > - pat->max_index = 31;
> > > -
> > > - /* Wa_16023588340: CLOS3 entries at end of table are
> > > unusable */
> > > - if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
> > > - pat->max_index -= 4;
> > > + if (intel_gen(dev_id) >= 20) {
> > > + /* Cache parsed PAT config per device to avoid re-reading
> > > debugfs on every call */
> > > + static __thread struct intel_pat_cache intel_pat_cache;
> > > + static __thread uint16_t cached_devid;
> > > + if (cached_devid != dev_id) {
> > > + int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
> > > + igt_require(ret > 0);
> > > + cached_devid = dev_id;
> > > + }
> > > + *pat = intel_pat_cache;
> > > } else if (IS_METEORLAKE(dev_id)) {
> > > pat->uc = 2;
> > > pat->wt = 1;
> > > @@ -96,3 +182,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
> > > intel_get_pat_idx(fd, &pat);
> > > return pat.wb;
> > > }
> > > +
> > > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table) {
> > > + struct intel_pat_cache pat = {};
> > > + intel_get_pat_idx(fd, &pat);
> > > +
> > > + memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) *
> > > +sizeof(struct xe_pat_entry));
> > > +
> > > + return pat.max_index + 1;
> > > +}
> > > diff --git a/lib/intel_pat.h b/lib/intel_pat.h index
> > > eb48cbc65..1d6c4f1ad
> > > 100644
> > > --- a/lib/intel_pat.h
> > > +++ b/lib/intel_pat.h
> > > @@ -6,9 +6,16 @@
> > > #ifndef INTEL_PAT_H
> > > #define INTEL_PAT_H
> > >
> > > +#include <stdbool.h>
> > > #include <stdint.h>
> > >
> > > #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way
> > > or better */
> > > +#define XE_PAT_MAX_ENTRIES 32
> > > +
> > > +struct xe_pat_entry {
> > > + uint32_t pat;
> > > + bool rsvd;
> > > +};
> > >
> > > uint8_t intel_get_max_pat_index(int fd);
> > >
> > > @@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
> > >
> > > uint8_t intel_get_pat_idx_uc_comp(int fd);
> > >
> > > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry
> > > +*xe_pat_table);
> > > +
> > > #endif /* INTEL_PAT_H */
> > > --
> > > 2.43.0
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-08 18:37 ` Wang, X
2025-12-08 23:27 ` Lin, Shuicheng
@ 2025-12-09 9:36 ` Kamil Konieczny
2025-12-09 16:41 ` Wang, X
1 sibling, 1 reply; 29+ messages in thread
From: Kamil Konieczny @ 2025-12-09 9:36 UTC (permalink / raw)
To: Wang, X
Cc: Lin, Shuicheng, igt-dev@lists.freedesktop.org, Zuo, Alex,
Auld, Matthew
Hi Wang,,
On 2025-12-08 at 18:37:52 +0000, Wang, X wrote:
>
>
> > -----Original Message-----
> > From: Lin, Shuicheng <shuicheng.lin@intel.com>
> > Sent: Saturday, December 6, 2025 10:49
> > To: Wang, X <x.wang@intel.com>; igt-dev@lists.freedesktop.org
> > Cc: Zuo, Alex <alex.zuo@intel.com>; Auld, Matthew
> > <matthew.auld@intel.com>
> > Subject: RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
> >
> > On Fri, Dec 5, 2025 5:13 PM X Wang wrote:
> > > Parse the PAT software configuration from gt0/pat_sw_config instead of
> > > relying on hard-coded indices.
> >
> > So the lib is not compatible with previous kernel that doesn't have sw config.
> > Should we keep the hard-code as fall back?
>
> The second patch also depends on gt0/pat_sw_config . If we retain the hard-coded
> values, we would need to duplicate them in the second patch as well, which would
> make the code quite messy. Do we really want to go down that path?
>
> In the current implementation, I've added igt_require(ret > 0); so that if the kernel
Please use igt_require_f(ret > 0, "explanation of skip\n");
so later on it will be easy to spot why test skipped.
> does not support this debugfs, IGT will report an error message to inform the user
> that the kernel is not compatible.
>
> >
> > >
> > > Expose xe_get_pat_entries() so tests can grab the PAT table.
> > >
> > > CC: Matthew Auld <matthew.auld@intel.com>
> > > Signed-off-by: Xin Wang <x.wang@intel.com>
> > > ---
> > > lib/intel_pat.c | 126
> > ++++++++++++++++++++++++++++++++++++++++++-
> > > -----
> > > lib/intel_pat.h | 9 ++++
> > > 2 files changed, 120 insertions(+), 15 deletions(-)
> > >
> > > diff --git a/lib/intel_pat.c b/lib/intel_pat.c index
> > > e3588110a..2d204e652
> > > 100644
> > > --- a/lib/intel_pat.c
> > > +++ b/lib/intel_pat.c
> > > @@ -6,6 +6,7 @@
> > > #include "intel_pat.h"
> > >
> > > #include "igt.h"
> > > +#include "igt_core.h"
Both of this should be before "intel_pat.h", keep it
in alphabetical order.
> > >
> > > struct intel_pat_cache {
> > > uint8_t uc; /* UC + COH_NONE */
> > > @@ -13,27 +14,112 @@ struct intel_pat_cache {
> > > uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
> > > uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and
> > later*/
> > > uint8_t max_index;
> > > + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
> > > + uint32_t pat_mode;
> > > + uint32_t pat_ats;
> > > };
> > >
> > > +/**
> > > + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table)
> > > +software configuration
> > > + * from debugfs
> > > + *
> > > + * @drm_fd: DRM device fd to use with igt_debugfs_open
> > > + * @xe_pat_cache: Pointer to a struct that will receive the parsed
> > > +PAT configuration
> > > + *
> > > + * Returns: The number of PAT entries successfully read on success,
> > > +or a
> > > negative error
> > > + * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
> > > + */
> > > +static int32_t xe_get_pat_sw_config(int drm_fd, struct
> > > +intel_pat_cache
> > > +*xe_pat_cache) {
> > > + char *line = NULL;
> > > + size_t line_len = 0;
> > > + ssize_t nread;
> > > + int32_t parsed = 0;
> > > + int dbgfs_fd;
> > > + FILE *dbgfs_file = NULL;
> > > +
> > > + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config",
> > > O_RDONLY);
> > > + if (dbgfs_fd < 0)
> > > + return -ENOENT;
> > > + dbgfs_file = fdopen(dbgfs_fd, "r");
> > > + if (!dbgfs_file) {
> > > + close(dbgfs_fd);
> > > + return -errno;
> > > + }
> > > +
> > > + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
> > > + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
> > > + uint32_t value = 0;
> > > + char *p = NULL;
> > > +
> > > + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
> > > + if (strncmp(line, "PAT[", 4) == 0) {
> > > + bool is_reserved;
> > > + p = strstr(line, "(");
> > > + if (p && sscanf(p, "(%x", &value) == 1) {
> > > + if (parsed < XE_PAT_MAX_ENTRIES) {
> > > + is_reserved = strchr(line, '*') != NULL;
> > > + xe_pat_cache->entries[parsed].pat =
> > > value;
> > > + xe_pat_cache->entries[parsed].rsvd =
> > > is_reserved;
> > > + xe_pat_cache->max_index = parsed;
> > > + parsed++;
> > > +
> > > + igt_debug("Parsed PAT entry %d:
> > > 0x%08x%s\n",
> > > + parsed - 1, value,
> > > + is_reserved ? " (reserved)" :
> > > "");
> > > + } else {
> > > + igt_warn("Too many PAT entries, line
> > > ignored: %s\n", line);
> > > + }
> > > + } else {
> > > + igt_warn("Failed to parse PAT entry
> > > line: %s\n", line);
> > > + }
> > > + } else if (strncmp(line, "PAT_MODE", 8) == 0) {
> > > + p = strstr(line, "(");
> > > + if (p && sscanf(p, "(%x", &value) == 1)
> > > + xe_pat_cache->pat_mode = value;
> > > + } else if (strncmp(line, "PAT_ATS", 7) == 0) {
> > > + p = strstr(line, "(");
> > > + if (p && sscanf(p, "(%x", &value) == 1)
> > > + xe_pat_cache->pat_ats = value;
> > > + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->uc = value;
> > > + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->wt = value;
> > > + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->wb = value;
> > > + } else if (strncmp(line,
> > > "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
> > > + p = strstr(line, "=");
> > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > + xe_pat_cache->uc_comp = value;
> > > + }
> >
> > What will fall into the else here?
> >
> > Shuicheng
> >
> > > + }
> > > +
> > > + free(line);
> > > + fclose(dbgfs_file);
> > > +
> > > + return parsed;
> > > +}
> > > +
> > > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) {
> > > uint16_t dev_id = intel_get_drm_devid(fd);
> > >
> > > - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
> > > - pat->uc = 3;
> > > - pat->wb = 2;
> > > - pat->max_index = 31;
> > > - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
> > > - intel_get_device_info(dev_id)->graphics_ver == 20) {
> > > - pat->uc = 3;
> > > - pat->wt = 15; /* Compressed + WB-transient */
> > > - pat->wb = 2;
> > > - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
> > > - pat->max_index = 31;
> > > -
> > > - /* Wa_16023588340: CLOS3 entries at end of table are
> > > unusable */
> > > - if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
> > > - pat->max_index -= 4;
> > > + if (intel_gen(dev_id) >= 20) {
> > > + /* Cache parsed PAT config per device to avoid re-reading
> > > debugfs on every call */
> > > + static __thread struct intel_pat_cache intel_pat_cache;
> > > + static __thread uint16_t cached_devid;
> > > + if (cached_devid != dev_id) {
> > > + int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
> > > + igt_require(ret > 0);
> > > + cached_devid = dev_id;
> > > + }
> > > + *pat = intel_pat_cache;
> > > } else if (IS_METEORLAKE(dev_id)) {
> > > pat->uc = 2;
> > > pat->wt = 1;
> > > @@ -96,3 +182,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
> > > intel_get_pat_idx(fd, &pat);
> > > return pat.wb;
> > > }
> > > +
> > > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table) {
> > > + struct intel_pat_cache pat = {};
> > > + intel_get_pat_idx(fd, &pat);
> > > +
> > > + memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) *
> > > +sizeof(struct xe_pat_entry));
> > > +
> > > + return pat.max_index + 1;
> > > +}
> > > diff --git a/lib/intel_pat.h b/lib/intel_pat.h index
> > > eb48cbc65..1d6c4f1ad
> > > 100644
> > > --- a/lib/intel_pat.h
> > > +++ b/lib/intel_pat.h
> > > @@ -6,9 +6,16 @@
> > > #ifndef INTEL_PAT_H
> > > #define INTEL_PAT_H
> > >
> > > +#include <stdbool.h>
> > > #include <stdint.h>
> > >
> > > #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or
> > > better */
> > > +#define XE_PAT_MAX_ENTRIES 32
Looks a little to small?
Regards,
Kamil
> > > +
> > > +struct xe_pat_entry {
> > > + uint32_t pat;
> > > + bool rsvd;
> > > +};
> > >
> > > uint8_t intel_get_max_pat_index(int fd);
> > >
> > > @@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
> > >
> > > uint8_t intel_get_pat_idx_uc_comp(int fd);
> > >
> > > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry
> > > +*xe_pat_table);
> > > +
> > > #endif /* INTEL_PAT_H */
> > > --
> > > 2.43.0
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-09 9:36 ` Kamil Konieczny
@ 2025-12-09 16:41 ` Wang, X
0 siblings, 0 replies; 29+ messages in thread
From: Wang, X @ 2025-12-09 16:41 UTC (permalink / raw)
To: Kamil Konieczny
Cc: Lin, Shuicheng, igt-dev@lists.freedesktop.org, Zuo, Alex,
Auld, Matthew
Hi Kamil,
> -----Original Message-----
> From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Sent: Tuesday, December 9, 2025 01:37
> To: Wang, X <x.wang@intel.com>
> Cc: Lin, Shuicheng <shuicheng.lin@intel.com>; igt-dev@lists.freedesktop.org;
> Zuo, Alex <alex.zuo@intel.com>; Auld, Matthew <matthew.auld@intel.com>
> Subject: Re: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs
>
> Hi Wang,,
> On 2025-12-08 at 18:37:52 +0000, Wang, X wrote:
> >
> >
> > > -----Original Message-----
> > > From: Lin, Shuicheng <shuicheng.lin@intel.com>
> > > Sent: Saturday, December 6, 2025 10:49
> > > To: Wang, X <x.wang@intel.com>; igt-dev@lists.freedesktop.org
> > > Cc: Zuo, Alex <alex.zuo@intel.com>; Auld, Matthew
> > > <matthew.auld@intel.com>
> > > Subject: RE: [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from
> > > debugfs
> > >
> > > On Fri, Dec 5, 2025 5:13 PM X Wang wrote:
> > > > Parse the PAT software configuration from gt0/pat_sw_config
> > > > instead of relying on hard-coded indices.
> > >
> > > So the lib is not compatible with previous kernel that doesn't have sw
> config.
> > > Should we keep the hard-code as fall back?
> >
> > The second patch also depends on gt0/pat_sw_config . If we retain the
> > hard-coded values, we would need to duplicate them in the second patch
> > as well, which would make the code quite messy. Do we really want to go
> down that path?
> >
> > In the current implementation, I've added igt_require(ret > 0); so
> > that if the kernel
>
> Please use igt_require_f(ret > 0, "explanation of skip\n");
>
> so later on it will be easy to spot why test skipped.
Thanks for pointing this out, I will change this part in next version.
>
> > does not support this debugfs, IGT will report an error message to
> > inform the user that the kernel is not compatible.
> >
> > >
> > > >
> > > > Expose xe_get_pat_entries() so tests can grab the PAT table.
> > > >
> > > > CC: Matthew Auld <matthew.auld@intel.com>
> > > > Signed-off-by: Xin Wang <x.wang@intel.com>
> > > > ---
> > > > lib/intel_pat.c | 126
> > > ++++++++++++++++++++++++++++++++++++++++++-
> > > > -----
> > > > lib/intel_pat.h | 9 ++++
> > > > 2 files changed, 120 insertions(+), 15 deletions(-)
> > > >
> > > > diff --git a/lib/intel_pat.c b/lib/intel_pat.c index
> > > > e3588110a..2d204e652
> > > > 100644
> > > > --- a/lib/intel_pat.c
> > > > +++ b/lib/intel_pat.c
> > > > @@ -6,6 +6,7 @@
> > > > #include "intel_pat.h"
> > > >
> > > > #include "igt.h"
> > > > +#include "igt_core.h"
>
> Both of this should be before "intel_pat.h", keep it in alphabetical order.
OK
>
> > > >
> > > > struct intel_pat_cache {
> > > > uint8_t uc; /* UC + COH_NONE */
> > > > @@ -13,27 +14,112 @@ struct intel_pat_cache {
> > > > uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
> > > > uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and
> > > later*/
> > > > uint8_t max_index;
> > > > + struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
> > > > + uint32_t pat_mode;
> > > > + uint32_t pat_ats;
> > > > };
> > > >
> > > > +/**
> > > > + * xe_get_pat_sw_config - Helper to read PAT (Page Attribute
> > > > +Table) software configuration
> > > > + * from debugfs
> > > > + *
> > > > + * @drm_fd: DRM device fd to use with igt_debugfs_open
> > > > + * @xe_pat_cache: Pointer to a struct that will receive the
> > > > +parsed PAT configuration
> > > > + *
> > > > + * Returns: The number of PAT entries successfully read on
> > > > +success, or a
> > > > negative error
> > > > + * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
> > > > + */
> > > > +static int32_t xe_get_pat_sw_config(int drm_fd, struct
> > > > +intel_pat_cache
> > > > +*xe_pat_cache) {
> > > > + char *line = NULL;
> > > > + size_t line_len = 0;
> > > > + ssize_t nread;
> > > > + int32_t parsed = 0;
> > > > + int dbgfs_fd;
> > > > + FILE *dbgfs_file = NULL;
> > > > +
> > > > + dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config",
> > > > O_RDONLY);
> > > > + if (dbgfs_fd < 0)
> > > > + return -ENOENT;
> > > > + dbgfs_file = fdopen(dbgfs_fd, "r");
> > > > + if (!dbgfs_file) {
> > > > + close(dbgfs_fd);
> > > > + return -errno;
> > > > + }
> > > > +
> > > > + memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
> > > > + while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
> > > > + uint32_t value = 0;
> > > > + char *p = NULL;
> > > > +
> > > > + /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
> > > > + if (strncmp(line, "PAT[", 4) == 0) {
> > > > + bool is_reserved;
> > > > + p = strstr(line, "(");
> > > > + if (p && sscanf(p, "(%x", &value) == 1) {
> > > > + if (parsed < XE_PAT_MAX_ENTRIES) {
> > > > + is_reserved = strchr(line, '*') != NULL;
> > > > + xe_pat_cache->entries[parsed].pat =
> > > > value;
> > > > + xe_pat_cache->entries[parsed].rsvd =
> > > > is_reserved;
> > > > + xe_pat_cache->max_index = parsed;
> > > > + parsed++;
> > > > +
> > > > + igt_debug("Parsed PAT entry %d:
> > > > 0x%08x%s\n",
> > > > + parsed - 1, value,
> > > > + is_reserved ? " (reserved)" :
> > > > "");
> > > > + } else {
> > > > + igt_warn("Too many PAT entries, line
> > > > ignored: %s\n", line);
> > > > + }
> > > > + } else {
> > > > + igt_warn("Failed to parse PAT entry
> > > > line: %s\n", line);
> > > > + }
> > > > + } else if (strncmp(line, "PAT_MODE", 8) == 0) {
> > > > + p = strstr(line, "(");
> > > > + if (p && sscanf(p, "(%x", &value) == 1)
> > > > + xe_pat_cache->pat_mode = value;
> > > > + } else if (strncmp(line, "PAT_ATS", 7) == 0) {
> > > > + p = strstr(line, "(");
> > > > + if (p && sscanf(p, "(%x", &value) == 1)
> > > > + xe_pat_cache->pat_ats = value;
> > > > + } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
> > > > + p = strstr(line, "=");
> > > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > > + xe_pat_cache->uc = value;
> > > > + } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
> > > > + p = strstr(line, "=");
> > > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > > + xe_pat_cache->wt = value;
> > > > + } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
> > > > + p = strstr(line, "=");
> > > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > > + xe_pat_cache->wb = value;
> > > > + } else if (strncmp(line,
> > > > "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
> > > > + p = strstr(line, "=");
> > > > + if (p && sscanf(p, "= %d", &value) == 1)
> > > > + xe_pat_cache->uc_comp = value;
> > > > + }
> > >
> > > What will fall into the else here?
> > >
> > > Shuicheng
> > >
> > > > + }
> > > > +
> > > > + free(line);
> > > > + fclose(dbgfs_file);
> > > > +
> > > > + return parsed;
> > > > +}
> > > > +
> > > > static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat) {
> > > > uint16_t dev_id = intel_get_drm_devid(fd);
> > > >
> > > > - if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
> > > > - pat->uc = 3;
> > > > - pat->wb = 2;
> > > > - pat->max_index = 31;
> > > > - } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
> > > > - intel_get_device_info(dev_id)->graphics_ver == 20) {
> > > > - pat->uc = 3;
> > > > - pat->wt = 15; /* Compressed + WB-transient */
> > > > - pat->wb = 2;
> > > > - pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
> > > > - pat->max_index = 31;
> > > > -
> > > > - /* Wa_16023588340: CLOS3 entries at end of table are
> > > > unusable */
> > > > - if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
> > > > - pat->max_index -= 4;
> > > > + if (intel_gen(dev_id) >= 20) {
> > > > + /* Cache parsed PAT config per device to avoid re-reading
> > > > debugfs on every call */
> > > > + static __thread struct intel_pat_cache intel_pat_cache;
> > > > + static __thread uint16_t cached_devid;
> > > > + if (cached_devid != dev_id) {
> > > > + int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
> > > > + igt_require(ret > 0);
> > > > + cached_devid = dev_id;
> > > > + }
> > > > + *pat = intel_pat_cache;
> > > > } else if (IS_METEORLAKE(dev_id)) {
> > > > pat->uc = 2;
> > > > pat->wt = 1;
> > > > @@ -96,3 +182,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
> > > > intel_get_pat_idx(fd, &pat);
> > > > return pat.wb;
> > > > }
> > > > +
> > > > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table) {
> > > > + struct intel_pat_cache pat = {};
> > > > + intel_get_pat_idx(fd, &pat);
> > > > +
> > > > + memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) *
> > > > +sizeof(struct xe_pat_entry));
> > > > +
> > > > + return pat.max_index + 1;
> > > > +}
> > > > diff --git a/lib/intel_pat.h b/lib/intel_pat.h index
> > > > eb48cbc65..1d6c4f1ad
> > > > 100644
> > > > --- a/lib/intel_pat.h
> > > > +++ b/lib/intel_pat.h
> > > > @@ -6,9 +6,16 @@
> > > > #ifndef INTEL_PAT_H
> > > > #define INTEL_PAT_H
> > > >
> > > > +#include <stdbool.h>
> > > > #include <stdint.h>
> > > >
> > > > #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way
> > > > or better */
> > > > +#define XE_PAT_MAX_ENTRIES 32
>
> Looks a little to small?
According to the bspec, Xe2/3 platforms are limited to 32 PAT entries. If future platforms require more, we can increase the limit to 64 or higher as needed.
Xin
>
> Regards,
> Kamil
>
> > > > +
> > > > +struct xe_pat_entry {
> > > > + uint32_t pat;
> > > > + bool rsvd;
> > > > +};
> > > >
> > > > uint8_t intel_get_max_pat_index(int fd);
> > > >
> > > > @@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
> > > >
> > > > uint8_t intel_get_pat_idx_uc_comp(int fd);
> > > >
> > > > +uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry
> > > > +*xe_pat_table);
> > > > +
> > > > #endif /* INTEL_PAT_H */
> > > > --
> > > > 2.43.0
> >
^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH v3 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-06 1:12 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
2025-12-06 1:12 ` [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
2025-12-06 18:48 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Lin, Shuicheng
@ 2025-12-10 5:23 ` Xin Wang
2025-12-11 7:27 ` [PATCH v4 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
2 siblings, 1 reply; 29+ messages in thread
From: Xin Wang @ 2025-12-10 5:23 UTC (permalink / raw)
To: igt-dev; +Cc: alex.zuo, Xin Wang, Shuicheng Lin, Kamil Konieczny, Matthew Auld
Parse the PAT software configuration from gt0/pat_sw_config instead
of relying on hard-coded indices.
Expose xe_get_pat_entries() so tests can grab the PAT table.
V2: (Kamil)
- Show a detailed skip info when opening the debugfs file fails.
CC: Shuicheng Lin <shuicheng.lin@intel.com>
CC: Kamil Konieczny <kamil.konieczny@intel.com>
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
lib/intel_pat.c | 127 ++++++++++++++++++++++++++++++++++++++++++------
lib/intel_pat.h | 9 ++++
2 files changed, 120 insertions(+), 16 deletions(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index e3588110a..4aee16f39 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -3,9 +3,9 @@
* Copyright © 2023 Intel Corporation
*/
+#include "igt.h"
#include "intel_pat.h"
-#include "igt.h"
struct intel_pat_cache {
uint8_t uc; /* UC + COH_NONE */
@@ -13,27 +13,112 @@ struct intel_pat_cache {
uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/
uint8_t max_index;
+ struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
+ uint32_t pat_mode;
+ uint32_t pat_ats;
};
+/**
+ * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration
+ * from debugfs
+ *
+ * @drm_fd: DRM device fd to use with igt_debugfs_open
+ * @xe_pat_cache: Pointer to a struct that will receive the parsed PAT configuration
+ *
+ * Returns: The number of PAT entries successfully read on success, or a negative error
+ * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
+ */
+static int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache)
+{
+ char *line = NULL;
+ size_t line_len = 0;
+ ssize_t nread;
+ int32_t parsed = 0;
+ int dbgfs_fd;
+ FILE *dbgfs_file = NULL;
+
+ dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config", O_RDONLY);
+ if (dbgfs_fd < 0)
+ return -ENOENT;
+ dbgfs_file = fdopen(dbgfs_fd, "r");
+ if (!dbgfs_file) {
+ close(dbgfs_fd);
+ return -errno;
+ }
+
+ memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
+ while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
+ uint32_t value = 0;
+ char *p = NULL;
+
+ /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
+ if (strncmp(line, "PAT[", 4) == 0) {
+ bool is_reserved;
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1) {
+ if (parsed < XE_PAT_MAX_ENTRIES) {
+ is_reserved = strchr(line, '*') != NULL;
+ xe_pat_cache->entries[parsed].pat = value;
+ xe_pat_cache->entries[parsed].rsvd = is_reserved;
+ xe_pat_cache->max_index = parsed;
+ parsed++;
+
+ igt_debug("Parsed PAT entry %d: 0x%08x%s\n",
+ parsed - 1, value,
+ is_reserved ? " (reserved)" : "");
+ } else {
+ igt_warn("Too many PAT entries, line ignored: %s\n", line);
+ }
+ } else {
+ igt_warn("Failed to parse PAT entry line: %s\n", line);
+ }
+ } else if (strncmp(line, "PAT_MODE", 8) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_mode = value;
+ } else if (strncmp(line, "PAT_ATS", 7) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_ats = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wt = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wb = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc_comp = value;
+ }
+ }
+
+ free(line);
+ fclose(dbgfs_file);
+
+ return parsed;
+}
+
static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
{
uint16_t dev_id = intel_get_drm_devid(fd);
- if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
- pat->uc = 3;
- pat->wb = 2;
- pat->max_index = 31;
- } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
- intel_get_device_info(dev_id)->graphics_ver == 20) {
- pat->uc = 3;
- pat->wt = 15; /* Compressed + WB-transient */
- pat->wb = 2;
- pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
- pat->max_index = 31;
-
- /* Wa_16023588340: CLOS3 entries at end of table are unusable */
- if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
- pat->max_index -= 4;
+ if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) {
+ /* Cache parsed PAT config per device to avoid re-reading debugfs on every call */
+ static __thread struct intel_pat_cache intel_pat_cache;
+ static __thread uint16_t cached_devid;
+ if (cached_devid != dev_id) {
+ int ret = xe_get_pat_sw_config(fd, &intel_pat_cache);
+ igt_require_f(ret > 0, "Unable to open the pat_sw_config file in debugfs.\n");
+ cached_devid = dev_id;
+ }
+ *pat = intel_pat_cache;
} else if (IS_METEORLAKE(dev_id)) {
pat->uc = 2;
pat->wt = 1;
@@ -96,3 +181,13 @@ uint8_t intel_get_pat_idx_wb(int fd)
intel_get_pat_idx(fd, &pat);
return pat.wb;
}
+
+uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table)
+{
+ struct intel_pat_cache pat = {};
+ intel_get_pat_idx(fd, &pat);
+
+ memcpy(xe_pat_table, pat.entries, (pat.max_index + 1) * sizeof(struct xe_pat_entry));
+
+ return pat.max_index + 1;
+}
diff --git a/lib/intel_pat.h b/lib/intel_pat.h
index eb48cbc65..1d6c4f1ad 100644
--- a/lib/intel_pat.h
+++ b/lib/intel_pat.h
@@ -6,9 +6,16 @@
#ifndef INTEL_PAT_H
#define INTEL_PAT_H
+#include <stdbool.h>
#include <stdint.h>
#define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */
+#define XE_PAT_MAX_ENTRIES 32
+
+struct xe_pat_entry {
+ uint32_t pat;
+ bool rsvd;
+};
uint8_t intel_get_max_pat_index(int fd);
@@ -18,4 +25,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
uint8_t intel_get_pat_idx_uc_comp(int fd);
+uint8_t xe_get_pat_entries(int fd, struct xe_pat_entry *xe_pat_table);
+
#endif /* INTEL_PAT_H */
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v3 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser
2025-12-06 1:12 ` [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
2025-12-08 16:48 ` Matthew Auld
@ 2025-12-10 5:24 ` Xin Wang
1 sibling, 0 replies; 29+ messages in thread
From: Xin Wang @ 2025-12-10 5:24 UTC (permalink / raw)
To: igt-dev; +Cc: alex.zuo, Xin Wang, Matthew Auld
Pull in the Xe PAT table parsed by lib/intel_pat so Xe2+ tests use
the driver-provided entries instead of hard-coded reservations.
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
tests/intel/xe_pat.c | 38 ++++++++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 59dfb6b11..82891b6f7 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -77,6 +77,18 @@ static void userptr_coh_none(int fd)
xe_vm_destroy(fd, vm);
}
+#define BITS_TO(n) (n >= sizeof(long) * 8 ? ~0 : (1UL << (n)) - 1)
+#define BITMASK(high, low) (uint32_t)(BITS_TO(high+1) & ~BITS_TO(low))
+#define FIELD_GET(val, high, low) (((val) & (BITMASK(high, low))) >> (low))
+#define FIELD_GET_BIT(val, n) FIELD_GET(val, n, n)
+
+#define XE_NO_PROMOTE(val) FIELD_GET_BIT(val, 10)
+#define XE_COMP_EN(val) FIELD_GET_BIT(val, 9)
+#define XE_L3_CLOS(val) FIELD_GET(val, 7, 6)
+#define XE_L3_POLICY(val) FIELD_GET(val, 5, 4)
+#define XE_L4_POLICY(val) FIELD_GET(val, 3, 2)
+#define XE_COH_MODE(val) FIELD_GET(val, 1, 0)
+
/**
* SUBTEST: pat-index-all
* Test category: functionality test
@@ -86,6 +98,7 @@ static void pat_index_all(int fd)
{
uint16_t dev_id = intel_get_drm_devid(fd);
size_t size = xe_get_default_alignment(fd);
+ struct xe_pat_entry xe_pat_table[XE_PAT_MAX_ENTRIES] = {0};
uint32_t vm, bo;
uint8_t pat_index;
@@ -114,10 +127,31 @@ static void pat_index_all(int fd)
igt_assert(intel_get_max_pat_index(fd));
+ if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) {
+ /* Get the Xe PAT entries from debugfs */
+ uint8_t pat_entries = xe_get_pat_entries(fd, xe_pat_table);
+
+ for (int i = 0; i < pat_entries; i++) {
+ uint32_t pat = xe_pat_table[i].pat;
+ igt_debug("PAT[%2d] = [ %u, %u, %u, %u, %u, %u] (%#8x)%s\n", i,
+ XE_NO_PROMOTE(pat),
+ XE_COMP_EN(pat),
+ XE_L3_CLOS(pat),
+ XE_L3_POLICY(pat),
+ XE_L4_POLICY(pat),
+ XE_COH_MODE(pat),
+ pat,
+ xe_pat_table[i].rsvd ? " *" : "");
+ }
+ }
+
for (pat_index = 0; pat_index <= intel_get_max_pat_index(fd);
pat_index++) {
- if (intel_get_device_info(dev_id)->graphics_ver >= 20 &&
- pat_index >= 16 && pat_index <= 19) { /* hw reserved */
+
+ bool hw_reserved = intel_graphics_ver(dev_id) >= IP_VER(20, 0) ?
+ xe_pat_table[pat_index].rsvd : false;
+
+ if (hw_reserved) {
igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x40000,
size, DRM_XE_VM_BIND_OP_MAP, 0, NULL, 0, 0,
pat_index, 0),
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (9 preceding siblings ...)
2025-12-07 4:24 ` ✗ i915.CI.Full: " Patchwork
@ 2025-12-10 9:21 ` Patchwork
2025-12-10 11:05 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-10 9:21 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1089 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8662_BAT -> XEIGTPW_14179_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8662 -> IGTPW_14179
* Linux: xe-4211-12271f632915efe0c5d4171b9c0e90f57ecdfe01 -> xe-4212-46691bf8a4a5a4887c079a41007e98b037e06ffb
IGTPW_14179: 14179
IGT_8662: 9410b6926f317e8bf824502394e09ee8753ff65e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4211-12271f632915efe0c5d4171b9c0e90f57ecdfe01: 12271f632915efe0c5d4171b9c0e90f57ecdfe01
xe-4212-46691bf8a4a5a4887c079a41007e98b037e06ffb: 46691bf8a4a5a4887c079a41007e98b037e06ffb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/index.html
[-- Attachment #2: Type: text/html, Size: 1648 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (10 preceding siblings ...)
2025-12-10 9:21 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev4) Patchwork
@ 2025-12-10 11:05 ` Patchwork
2025-12-10 12:32 ` ✗ Xe.CI.Full: failure " Patchwork
2025-12-10 12:55 ` ✓ i915.CI.Full: success " Patchwork
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-10 11:05 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3004 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from IGT_8662 -> IGTPW_14179
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/index.html
Participating hosts (18 -> 13)
------------------------------
Additional (1): fi-glk-j4005
Missing (6): fi-tgl-1115g4 fi-ivb-3770 bat-rpls-4 bat-adls-6 bat-dg2-13 bat-dg2-11
Known issues
------------
Here are the changes found in IGTPW_14179 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/fi-glk-j4005/igt@gem_lmem_swapping@verify-random.html
* igt@i915_selftest@live:
- fi-glk-j4005: NOTRUN -> [ABORT][3] ([i915#15399]) +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/fi-glk-j4005/igt@i915_selftest@live.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-glk-j4005: NOTRUN -> [SKIP][4] +11 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
#### Warnings ####
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][5] ([i915#13929]) -> [DMESG-FAIL][6] ([i915#14204])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8662/bat-atsm-1/igt@i915_selftest@live@mman.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#15399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15399
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8662 -> IGTPW_14179
* Linux: CI_DRM_17650 -> CI_DRM_17651
CI-20190529: 20190529
CI_DRM_17650: 12271f632915efe0c5d4171b9c0e90f57ecdfe01 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17651: 46691bf8a4a5a4887c079a41007e98b037e06ffb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14179: 14179
IGT_8662: 9410b6926f317e8bf824502394e09ee8753ff65e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/index.html
[-- Attachment #2: Type: text/html, Size: 3726 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (11 preceding siblings ...)
2025-12-10 11:05 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-12-10 12:32 ` Patchwork
2025-12-10 12:55 ` ✓ i915.CI.Full: success " Patchwork
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-10 12:32 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 42417 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
URL : https://patchwork.freedesktop.org/series/157481/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8662_FULL -> XEIGTPW_14179_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14179_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14179_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 2)
------------------------------
Missing (2): shard-dg2-set2 shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14179_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_rmfb@rmfb-ioctl:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-6/igt@kms_rmfb@rmfb-ioctl.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@kms_rmfb@rmfb-ioctl.html
* {igt@xe_oa@mmio-triggered-reports@oam-3} (NEW):
- shard-bmg: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@xe_oa@mmio-triggered-reports@oam-3.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-bmg: [PASS][4] -> [WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters.html
- shard-lnl: [PASS][6] -> [WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-2/igt@xe_oa@unprivileged-single-ctx-counters.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_oa@unprivileged-single-ctx-counters@oag-0:
- shard-bmg: [PASS][8] -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters@oag-0.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@xe_oa@unprivileged-single-ctx-counters@oag-0.html
- shard-lnl: [PASS][10] -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-2/igt@xe_oa@unprivileged-single-ctx-counters@oag-0.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters@oag-0.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_oa@mmio-triggered-reports-read@oam-2}:
- shard-lnl: [PASS][12] -> [SKIP][13] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-5/igt@xe_oa@mmio-triggered-reports-read@oam-2.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-4/igt@xe_oa@mmio-triggered-reports-read@oam-2.html
* {igt@xe_oa@mmio-triggered-reports-read@oam-3}:
- shard-bmg: [PASS][14] -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-1/igt@xe_oa@mmio-triggered-reports-read@oam-3.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@xe_oa@mmio-triggered-reports-read@oam-3.html
New tests
---------
New tests have been introduced between XEIGT_8662_FULL and XEIGTPW_14179_FULL:
### New IGT tests (1) ###
* igt@xe_oa@mmio-triggered-reports@oam-3:
- Statuses : 1 skip(s)
- Exec time: [3.77] s
Known issues
------------
Here are the changes found in XEIGTPW_14179_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2233])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-lnl: NOTRUN -> [FAIL][17] ([Intel XE#6676]) +2 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +6 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +11 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#607])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#610])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2191])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3432])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +13 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2724])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2325]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +5 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1178]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#3278])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2390])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2320]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2321])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1424])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#309])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#323])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2286])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4210])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4331])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2244]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2244])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1421]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1397] / [Intel XE#1745])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1397])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2293]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [FAIL][53] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#651]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +24 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4141]) +16 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#6312])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#656]) +10 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2313]) +27 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_hdr@bpc-switch:
- shard-bmg: NOTRUN -> [ABORT][61] ([Intel XE#6740]) +3 other tests abort
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-8/igt@kms_hdr@bpc-switch.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#5021])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1406] / [Intel XE#1489]) +8 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#2893])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1406]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-4/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#4609])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-lnl: [PASS][71] -> [SKIP][72] ([Intel XE#1406] / [Intel XE#4692])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [FAIL][73] ([Intel XE#4689])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2330])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2413])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][77] -> [FAIL][78] ([Intel XE#4459]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1499])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-6/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2168])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#2142]) +1 other test fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug@basic-client-th:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4837]) +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-6/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6665] / [Intel XE#6681])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#4837] / [Intel XE#6665])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html
* igt@xe_evict@evict-beng-cm-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#688]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-8/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][88] ([Intel XE#6321]) +1 other test incomplete
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2322]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1392]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#4943]) +21 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@many-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4943]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-1/igt@xe_exec_system_allocator@many-mmap-huge-nomemset.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2459] / [Intel XE#2596])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-6/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2457])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-8/igt@xe_module_load@force-load.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#5694])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@xe_pm@d3cold-i2c.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
- shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#6251]) +2 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4733]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#944]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#944])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_survivability@i2c-functionality:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6529])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@xe_survivability@i2c-functionality.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][103] ([Intel XE#4665]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][105] ([Intel XE#4633]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [FAIL][107] ([Intel XE#4367]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][109] ([Intel XE#3321]) -> [PASS][110] +1 other test pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [FAIL][111] ([Intel XE#5099]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-6/igt@kms_pm_rpm@i2c.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-bmg: [SKIP][113] ([Intel XE#6693]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch:
- shard-bmg: [SKIP][115] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][116] +2 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html
* igt@xe_exec_system_allocator@process-many-stride-mmap:
- shard-bmg: [ABORT][117] ([Intel XE#3970]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-4/igt@xe_exec_system_allocator@process-many-stride-mmap.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@xe_exec_system_allocator@process-many-stride-mmap.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-remap-dontunmap-eocheck:
- shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [PASS][120] +24 other tests pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-large-mmap-remap-dontunmap-eocheck.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-mmap-remap-dontunmap-eocheck.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [FAIL][121] ([Intel XE#6251]) -> [PASS][122] +1 other test pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50.html
#### Warnings ####
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-bmg: [SKIP][123] ([Intel XE#6703]) -> [SKIP][124] ([Intel XE#2887])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#2252])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#4141]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [SKIP][130] ([Intel XE#2313])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][131] ([Intel XE#3544]) -> [SKIP][132] ([Intel XE#3374] / [Intel XE#3544])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#2501])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][135] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][136] ([Intel XE#1406] / [Intel XE#1489])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: [SKIP][137] ([Intel XE#1406] / [Intel XE#6703]) -> [SKIP][138] ([Intel XE#1406] / [Intel XE#2414])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@xe_exec_basic@multigpu-once-null:
- shard-bmg: [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#2322])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset:
- shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#4943]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8662/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4367
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
[Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5099]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5099
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8662 -> IGTPW_14179
* Linux: xe-4211-12271f632915efe0c5d4171b9c0e90f57ecdfe01 -> xe-4212-46691bf8a4a5a4887c079a41007e98b037e06ffb
IGTPW_14179: 14179
IGT_8662: 9410b6926f317e8bf824502394e09ee8753ff65e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4211-12271f632915efe0c5d4171b9c0e90f57ecdfe01: 12271f632915efe0c5d4171b9c0e90f57ecdfe01
xe-4212-46691bf8a4a5a4887c079a41007e98b037e06ffb: 46691bf8a4a5a4887c079a41007e98b037e06ffb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14179/index.html
[-- Attachment #2: Type: text/html, Size: 48490 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
` (12 preceding siblings ...)
2025-12-10 12:32 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-12-10 12:55 ` Patchwork
13 siblings, 0 replies; 29+ messages in thread
From: Patchwork @ 2025-12-10 12:55 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 180908 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: add helper funtion to read PAT table (rev4)
URL : https://patchwork.freedesktop.org/series/157481/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17651_full -> IGTPW_14179_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_17651_full and IGTPW_14179_full:
### New IGT tests (2) ###
* igt@i915_selftest@getfb2-accept-nv12:
- Statuses :
- Exec time: [None] s
* igt@i915_selftest@timeline-wait-before-signal:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_14179_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#14544] / [i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2: [PASS][3] -> [FAIL][4] ([i915#15400])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@core_setmaster@master-drop-set-root.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@core_setmaster@master-drop-set-root.html
* igt@fbdev@nullptr:
- shard-dg2: [PASS][5] -> [SKIP][6] ([i915#2582]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@fbdev@nullptr.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@fbdev@nullptr.html
* igt@fbdev@unaligned-write:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#2582])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@fbdev@unaligned-write.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-massive:
- shard-dg2: [PASS][13] -> [SKIP][14] ([i915#15400] / [i915#2575]) +93 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@gem_create@create-massive.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_create@create-massive.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@legacy-engines-hang:
- shard-snb: NOTRUN -> [SKIP][16] ([i915#1099])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hang.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-16/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-5/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4812])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4036])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-15/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4036])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-3/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-5/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +6 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-6/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][35] ([i915#13196] / [i915#13356]) +1 other test incomplete
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk1/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4613])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-glk: NOTRUN -> [SKIP][39] ([i915#4613])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk6/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#14544] / [i915#4613])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_lmem_swapping@verify.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4083])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4077]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4083]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-16/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3282])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3282]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3282])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#3282])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_pread@display.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4270]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#13398])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#5190] / [i915#8428]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#8411])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][56] ([i915#13809])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4079]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4880])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][62] ([i915#13356])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk8/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][63] +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#2856])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#2527]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#2527])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#11527]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@busy-hang@rcs0:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#14073]) +13 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@i915_drm_fdinfo@busy-hang@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#14118])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][72] -> [ABORT][73] ([i915#15342])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][74] -> [ABORT][75] ([i915#15342] / [i915#15386])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [PASS][76] -> [ABORT][77] ([i915#15342])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#8399])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#6590]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#6590]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#6590]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#6590]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#14498])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [PASS][84] -> [INCOMPLETE][85] ([i915#13356])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][86] -> [SKIP][87] ([i915#7984])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-mtlp-5/igt@i915_power@sanity.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@i915_power@sanity.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg1: [PASS][88] -> [DMESG-WARN][89] ([i915#4391] / [i915#4423])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-12/igt@i915_suspend@basic-s3-without-i915.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6645])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][91] ([i915#4817]) +1 other test incomplete
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk9/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4212])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-dg1: [PASS][93] -> [DMESG-WARN][94] ([i915#4423])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#9531])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#1769] / [i915#3555])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#5286]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][98] +9 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5286])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#5286]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#5286]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][102] -> [FAIL][103] ([i915#5138])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#3638]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#3638]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5190]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#15400] / [i915#5190]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][108] +9 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#14544] / [i915#6095]) +11 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#6095]) +34 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#10307] / [i915#6095]) +97 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#6095]) +24 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#12313]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14098] / [i915#6095]) +39 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#12805])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#12805])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#6095]) +16 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#6095]) +108 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#12313])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#6095]) +61 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6095]) +34 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#12313]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#3742])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3742])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-14/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-glk: NOTRUN -> [SKIP][130] +206 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +5 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@kms_content_protection@atomic-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-2/igt@kms_content_protection@atomic-dpms.html
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#6944] / [i915#7116] / [i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-19/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#15330])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#7118] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8063] / [i915#9433])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#13049]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#13049]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3555]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][146] -> [FAIL][147] ([i915#13566]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [PASS][149] -> [FAIL][150] ([i915#13566])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][151] ([i915#13566])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#15400]) +51 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#13049])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#13049])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#13049])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#9809]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#4103] / [i915#4213]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#4103])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#13046] / [i915#5354])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#14544]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][161] ([i915#2346])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#4103])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#4213])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#4103])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#13691])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#13749])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#13748])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#3840])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#9337])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#4881])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3637] / [i915#9934])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#9934]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3637] / [i915#9934]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#9934]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-glk10: NOTRUN -> [INCOMPLETE][181] ([i915#12745] / [i915#4839])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][182] ([i915#4839])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3637] / [i915#9934]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#9934]) +4 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#2672] / [i915#3555]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-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:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672]) +7 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672] / [i915#3555])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#8813])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/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-spr-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8708]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#5354]) +13 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#15102]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#15102]) +18 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][202] +109 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#15104]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8708]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][206] +28 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][207] +12 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#1825]) +18 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#15102] / [i915#3458]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#10055])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#15102]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#14544] / [i915#15102]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#15102] / [i915#3023]) +11 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#15102] / [i915#3458]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-glk10: NOTRUN -> [SKIP][215] +29 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8708]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#1825]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][218] +49 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#1825]) +11 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#15102]) +13 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-8/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#12388])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#10656] / [i915#14544])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#10656])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#1839])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#6301])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][229] ([i915#12178])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][230] ([i915#7862]) +1 other test fail
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#13958])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#13958])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-12/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#13958])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#13958])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-5/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#13958])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15400] / [i915#9423])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#14544] / [i915#15329]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#15329]) +4 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#15329]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: [PASS][240] -> [SKIP][241] ([i915#15400] / [i915#9423]) +7 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#9812])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#3828])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][244] ([i915#9295])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#4077]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#15073])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#15073])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#15403])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [PASS][249] -> [INCOMPLETE][250] ([i915#14419])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#6524])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#6524])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prop_blob@blob-prop-validate:
- shard-dg2: [PASS][253] -> [SKIP][254] ([i915#15400]) +158 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_prop_blob@blob-prop-validate.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_prop_blob@blob-prop-validate.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#11520]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9808]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][257] ([i915#11520])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk10/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#11520]) +5 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#12316]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][260] ([i915#11520]) +4 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#11520] / [i915#14544]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#11520]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#11520]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][264] ([i915#11520])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-snb4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#11520]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#9683])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#4348])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#9732]) +8 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#9688]) +6 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +9 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@kms_psr@psr-primary-mmap-cpu.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#9732]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-6/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +11 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_psr@psr2-sprite-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +7 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#12755])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#4235])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-7/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#5289])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#5289])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#5289])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#12755])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][281] ([i915#13179]) +1 other test abort
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#9906])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-3/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#9906])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flipline:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#15243] / [i915#3555])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#9906])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#7387])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-4/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [FAIL][287] ([i915#14433])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-glk6/igt@perf_pmu@module-unload.html
* igt@prime_mmap@test_reprime:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#15400] / [i915#2575]) +20 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@prime_mmap@test_reprime.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3708] / [i915#4077])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#3291] / [i915#3708]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#3708])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#9917])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][293] ([i915#12910])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#9917])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@tools_test@tools_test:
- shard-dg2: [PASS][295] -> [FAIL][296] ([i915#15408])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@tools_test@tools_test.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@tools_test@tools_test.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-user:
- shard-dg2: [FAIL][297] ([i915#15400]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@core_setmaster@master-drop-set-user.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@core_setmaster@master-drop-set-user.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][299] ([i915#15342]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live@objects:
- shard-dg2: [FAIL][301] ([i915#15405] / [i915#15406]) -> [PASS][302] +20 other tests pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_selftest@live@objects.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@i915_selftest@live@objects.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg2: [WARN][303] ([i915#15400]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][305] ([i915#4817]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][307] ([i915#5956]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-tglu: [ABORT][309] ([i915#14849] / [i915#14871]) -> [PASS][310] +1 other test pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: [INCOMPLETE][311] ([i915#12796]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][313] ([i915#13566]) -> [PASS][314] +9 other tests pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-tglu-7/igt@kms_cursor_crc@cursor-random-128x42.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [FAIL][315] ([i915#13566]) -> [PASS][316] +4 other tests pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_dirtyfb@default-dirtyfb-ioctl:
- shard-dg2: [SKIP][317] -> [PASS][318] +28 other tests pass
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: [SKIP][319] ([i915#13749]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-sst.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][321] ([i915#14033]) -> [PASS][322] +1 other test pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-snb: [INCOMPLETE][323] ([i915#12314] / [i915#12745] / [i915#4839]) -> [PASS][324] +1 other test pass
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_getfb@getfb-reject-nv12:
- shard-dg2: [SKIP][325] ([i915#15400]) -> [PASS][326] +131 other tests pass
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_getfb@getfb-reject-nv12.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_getfb@getfb-reject-nv12.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-dg2: [SKIP][327] ([i915#9423]) -> [PASS][328] +10 other tests pass
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][329] ([i915#15073]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][331] ([i915#14544] / [i915#15073]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][333] ([i915#14419]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [ABORT][335] ([i915#15132]) -> [PASS][336] +2 other tests pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-suspend.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@prime_busy@before:
- shard-dg2: [SKIP][337] ([i915#2575]) -> [PASS][338] +107 other tests pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@prime_busy@before.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@prime_busy@before.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][339] ([i915#8411]) -> [SKIP][340] ([i915#14544] / [i915#8411])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: [SKIP][341] ([i915#13008] / [i915#14544]) -> [SKIP][342] ([i915#13008])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][343] ([i915#13356]) -> [SKIP][344] ([i915#15400] / [i915#2575])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: [SKIP][345] ([i915#2575]) -> [SKIP][346] ([i915#7697]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_param@invalid-param-set:
- shard-dg2: [SKIP][347] ([i915#2575]) -> [SKIP][348] ([i915#15400] / [i915#2575]) +67 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_ctx_param@invalid-param-set.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_ctx_param@invalid-param-set.html
* igt@gem_ctx_persistence@hang:
- shard-dg2: [SKIP][349] ([i915#8555]) -> [SKIP][350] ([i915#15400] / [i915#2575])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@gem_ctx_persistence@hang.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: [SKIP][351] ([i915#2575]) -> [SKIP][352] ([i915#8555]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: [SKIP][353] ([i915#2575]) -> [SKIP][354] ([i915#280])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_ctx_sseu@engines.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: [SKIP][355] ([i915#2575]) -> [SKIP][356] ([i915#4812]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: [SKIP][357] ([i915#2575]) -> [SKIP][358] ([i915#4036])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: [SKIP][359] ([i915#14544] / [i915#4525]) -> [SKIP][360] ([i915#4525])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][361] ([i915#4525]) -> [SKIP][362] ([i915#14544] / [i915#4525]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][363] ([i915#14544] / [i915#6344]) -> [SKIP][364] ([i915#6344])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: [SKIP][365] ([i915#2575]) -> [SKIP][366] ([i915#3539])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: [SKIP][367] ([i915#3539] / [i915#4852]) -> [SKIP][368] ([i915#15400] / [i915#2575]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: [SKIP][369] ([i915#2575]) -> [SKIP][370] ([i915#3539] / [i915#4852])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_exec_flush@basic-uc-rw-default.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: [SKIP][371] ([i915#2575]) -> [SKIP][372] ([i915#5107])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: [SKIP][373] ([i915#2575]) -> [SKIP][374] ([i915#3281]) +14 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_exec_reloc@basic-active.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: [SKIP][375] ([i915#3281]) -> [SKIP][376] ([i915#15400] / [i915#2575]) +10 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@gem_exec_reloc@basic-gtt.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][377] ([i915#14544] / [i915#3281]) -> [SKIP][378] ([i915#3281])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-1/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][379] ([i915#3281]) -> [SKIP][380] ([i915#14544] / [i915#3281]) +3 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: [SKIP][381] ([i915#2575]) -> [SKIP][382] ([i915#4537] / [i915#4812]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: [SKIP][383] ([i915#2575]) -> [SKIP][384] ([i915#4860])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@basic:
- shard-rkl: [SKIP][385] ([i915#14544] / [i915#4613]) -> [SKIP][386] ([i915#4613])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_lmem_swapping@basic.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@massive:
- shard-rkl: [SKIP][387] ([i915#4613]) -> [SKIP][388] ([i915#14544] / [i915#4613]) +2 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@gem_lmem_swapping@massive.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_lmem_swapping@massive.html
* igt@gem_media_vme:
- shard-dg2: [SKIP][389] ([i915#2575]) -> [SKIP][390] ([i915#284])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_media_vme.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@gem_media_vme.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: [SKIP][391] ([i915#4077]) -> [SKIP][392] ([i915#15400] / [i915#2575]) +11 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: [SKIP][393] ([i915#2575]) -> [SKIP][394] ([i915#4077]) +10 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_mmap_gtt@hang.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-10/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][395] ([i915#13427]) -> [ABORT][396] ([i915#14809]) +1 other test abort
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: [SKIP][397] ([i915#2575]) -> [SKIP][398] ([i915#4083]) +7 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_mmap_wc@fault-concurrent.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: [SKIP][399] ([i915#4083]) -> [SKIP][400] ([i915#15400] / [i915#2575]) +2 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@gem_mmap_wc@invalid-flags.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: [SKIP][401] ([i915#3282]) -> [SKIP][402] ([i915#15400] / [i915#2575]) +2 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@bench:
- shard-rkl: [SKIP][403] ([i915#14544] / [i915#3282]) -> [SKIP][404] ([i915#3282]) +2 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_pread@bench.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@gem_pread@bench.html
* igt@gem_pread@exhaustion:
- shard-rkl: [SKIP][405] ([i915#3282]) -> [SKIP][406] ([i915#14544] / [i915#3282])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-8/igt@gem_pread@exhaustion.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: [SKIP][407] ([i915#2575]) -> [SKIP][408] ([i915#3282]) +3 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_pread@snoop.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@gem_pread@snoop.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: [SKIP][409] ([i915#2575]) -> [SKIP][410] ([i915#4270]) +3 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: [SKIP][411] ([i915#4270]) -> [SKIP][412] ([i915#15400] / [i915#2575]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-dg2: [SKIP][413] ([i915#2575] / [i915#5190]) -> [SKIP][414] ([i915#15400] / [i915#2575] / [i915#5190]) +3 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: [SKIP][415] ([i915#2575] / [i915#5190]) -> [SKIP][416] ([i915#5190] / [i915#8428]) +5 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-linear.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: [SKIP][417] ([i915#5190] / [i915#8428]) -> [SKIP][418] ([i915#15400] / [i915#2575] / [i915#5190]) +3 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: [SKIP][419] ([i915#2575]) -> [SKIP][420] ([i915#4079]) +1 other test skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: [SKIP][421] ([i915#4885]) -> [SKIP][422] ([i915#15400] / [i915#2575])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][423] ([i915#3297]) -> [SKIP][424] ([i915#14544] / [i915#3297]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][426] ([i915#3297] / [i915#3323])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: [SKIP][427] ([i915#3297]) -> [SKIP][428] ([i915#15400] / [i915#2575]) +2 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@gem_userptr_blits@dmabuf-unsync.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: [SKIP][429] ([i915#2575]) -> [SKIP][430] ([i915#3297] / [i915#4880])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: [SKIP][431] ([i915#2575]) -> [SKIP][432] ([i915#3297]) +2 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gem_userptr_blits@readonly-unsync.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: [SKIP][433] ([i915#3297] / [i915#4958]) -> [SKIP][434] ([i915#15400] / [i915#2575])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][435] ([i915#14544] / [i915#3297]) -> [SKIP][436] ([i915#3297]) +2 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen3_render_mixed_blits:
- shard-dg2: [SKIP][437] ([i915#2575]) -> [SKIP][438] +2 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gen3_render_mixed_blits.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@gen3_render_mixed_blits.html
* igt@gen7_exec_parse@basic-allocation:
- shard-dg2: [SKIP][439] -> [SKIP][440] ([i915#15400] / [i915#2575])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@gen7_exec_parse@basic-allocation.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gen7_exec_parse@basic-allocation.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: [SKIP][441] ([i915#2856]) -> [SKIP][442] ([i915#15400] / [i915#2575]) +2 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-8/igt@gen9_exec_parse@bb-start-far.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#2527]) -> [SKIP][444] ([i915#2527]) +1 other test skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: [SKIP][445] ([i915#2527]) -> [SKIP][446] ([i915#14544] / [i915#2527]) +2 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-3/igt@gen9_exec_parse@shadow-peek.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: [SKIP][447] ([i915#2575]) -> [SKIP][448] ([i915#2856]) +3 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: [SKIP][449] ([i915#14123]) -> [SKIP][450] ([i915#15400])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy:
- shard-dg2: [SKIP][451] ([i915#15400]) -> [SKIP][452] ([i915#14073]) +1 other test skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_drm_fdinfo@busy.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@i915_drm_fdinfo@busy.html
* igt@i915_drm_fdinfo@busy-check-all:
- shard-dg2: [SKIP][453] ([i915#15400]) -> [SKIP][454] ([i915#11527])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_drm_fdinfo@busy-check-all.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@i915_drm_fdinfo@busy-check-all.html
* igt@i915_drm_fdinfo@busy-idle-check-all:
- shard-dg2: [SKIP][455] ([i915#11527]) -> [SKIP][456] ([i915#15400])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@i915_drm_fdinfo@busy-idle-check-all.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@i915_drm_fdinfo@busy-idle-check-all.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: [SKIP][457] ([i915#15400]) -> [SKIP][458] ([i915#14118])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_drm_fdinfo@virtual-busy.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-dg2: [SKIP][459] ([i915#14118]) -> [SKIP][460] ([i915#15400])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-hang.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [SKIP][461] ([i915#15400]) -> [DMESG-WARN][462] ([i915#14545])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_module_load@resize-bar.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#8399]) -> [SKIP][464] ([i915#8399])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: [SKIP][465] ([i915#2575]) -> [SKIP][466] ([i915#11681] / [i915#6621])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: [SKIP][467] ([i915#4387]) -> [SKIP][468] ([i915#15400] / [i915#2575])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][469] ([i915#14544] / [i915#7984]) -> [SKIP][470] ([i915#7984])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@i915_power@sanity.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@i915_power@sanity.html
* igt@i915_selftest@live:
- shard-dg2: [FAIL][471] ([i915#15405] / [i915#15406]) -> [ABORT][472] ([i915#15399]) +1 other test abort
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_selftest@live.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [FAIL][473] ([i915#15405] / [i915#15406]) -> [DMESG-FAIL][474] ([i915#12061])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@i915_selftest@live@workarounds.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: [INCOMPLETE][475] ([i915#4817]) -> [INCOMPLETE][476] ([i915#4817] / [i915#7443])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][477] ([i915#7707]) -> [SKIP][478] ([i915#14544] / [i915#7707])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: [SKIP][479] ([i915#15400]) -> [SKIP][480] ([i915#4212])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: [SKIP][481] ([i915#4215]) -> [SKIP][482] ([i915#4215] / [i915#4423])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: [SKIP][483] ([i915#5190]) -> [SKIP][484] ([i915#4215] / [i915#5190])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: [SKIP][485] ([i915#4212]) -> [SKIP][486] ([i915#15400]) +2 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: [SKIP][487] ([i915#9531]) -> [SKIP][488] ([i915#15400])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: [SKIP][489] ([i915#1769] / [i915#3555]) -> [SKIP][490] ([i915#15400])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#5286]) -> [SKIP][492] ([i915#5286]) +2 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][493] ([i915#5286]) -> [SKIP][494] ([i915#14544] / [i915#5286]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#3638]) -> [SKIP][496] ([i915#3638])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: [SKIP][497] ([i915#5190]) -> [SKIP][498] ([i915#15400] / [i915#5190]) +6 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: [SKIP][499] ([i915#4538] / [i915#5190]) -> [SKIP][500] ([i915#15400] / [i915#5190]) +7 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: [SKIP][501] ([i915#5190]) -> [SKIP][502] ([i915#4538] / [i915#5190]) +14 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: [SKIP][503] ([i915#10307] / [i915#6095]) -> [SKIP][504] ([i915#15400]) +8 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][505] ([i915#14098] / [i915#6095]) -> [SKIP][506] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-dg2: [SKIP][507] -> [SKIP][508] ([i915#10307] / [i915#6095]) +11 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][509] ([i915#12313]) -> [SKIP][510] ([i915#15400])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][511] -> [SKIP][512] ([i915#12313]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][513] -> [SKIP][514] ([i915#12805]) +1 other test skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2: [SKIP][515] -> [SKIP][516] ([i915#6095])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][517] ([i915#6095]) -> [SKIP][518] ([i915#15400])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: [SKIP][519] ([i915#12313] / [i915#4423]) -> [SKIP][520] ([i915#12313])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][521] ([i915#12313] / [i915#14544]) -> [SKIP][522] ([i915#12313])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][523] ([i915#6095]) -> [SKIP][524] ([i915#14544] / [i915#6095]) +5 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][525] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][526] ([i915#14098] / [i915#6095]) +7 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][527] ([i915#14544] / [i915#6095]) -> [SKIP][528] ([i915#6095]) +7 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: [SKIP][529] ([i915#13781]) -> [SKIP][530] ([i915#15400])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@kms_cdclk@mode-transition.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: [SKIP][531] -> [SKIP][532] ([i915#13784])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_cdclk@mode-transition-all-outputs.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: [SKIP][533] ([i915#15400]) -> [SKIP][534] +5 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_chamelium_color@ctm-negative.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: [SKIP][535] ([i915#15400]) -> [SKIP][536] ([i915#11151] / [i915#7828]) +6 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: [SKIP][537] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][538] ([i915#11151] / [i915#7828]) +4 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg2: [SKIP][539] ([i915#11151] / [i915#7828]) -> [SKIP][540] ([i915#15400]) +5 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@kms_chamelium_frames@dp-frame-dump.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-rkl: [SKIP][541] ([i915#11151] / [i915#7828]) -> [SKIP][542] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-4/igt@kms_chamelium_frames@vga-frame-dump.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg1: [SKIP][543] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][544] ([i915#11151] / [i915#7828])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][545] ([i915#15400]) -> [SKIP][546] ([i915#6944] / [i915#7118] / [i915#9424]) +2 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: [SKIP][547] ([i915#15400]) -> [SKIP][548] ([i915#3299])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: [SKIP][549] ([i915#14544] / [i915#3116]) -> [SKIP][550] ([i915#3116])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][551] ([i915#3116]) -> [SKIP][552] ([i915#14544] / [i915#3116])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: [SKIP][553] ([i915#3299]) -> [SKIP][554] ([i915#15400])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: [SKIP][555] ([i915#6944] / [i915#9424]) -> [SKIP][556] ([i915#15400])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-8/igt@kms_content_protection@mei-interface.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_content_protection@mei-interface.html
- shard-dg1: [SKIP][557] ([i915#9433]) -> [SKIP][558] ([i915#6944] / [i915#9424])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][559] ([i915#6944] / [i915#7118]) -> [SKIP][560] ([i915#14544] / [i915#6944] / [i915#7118])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-2/igt@kms_content_protection@srm.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: [SKIP][561] ([i915#6944]) -> [SKIP][562] ([i915#14544] / [i915#6944])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-8/igt@kms_content_protection@suspend-resume.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][563] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][564] ([i915#6944] / [i915#7118] / [i915#9424])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_content_protection@type1.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][565] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][566] ([i915#15400])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@kms_content_protection@uevent.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: [SKIP][567] ([i915#13049]) -> [SKIP][568] ([i915#13049] / [i915#4423])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: [SKIP][569] ([i915#15400]) -> [SKIP][570] ([i915#13049])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][571] ([i915#14544] / [i915#3555]) -> [SKIP][572] ([i915#3555]) +1 other test skip
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: [SKIP][573] ([i915#3555]) -> [SKIP][574] ([i915#15400]) +1 other test skip
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-rkl: [SKIP][575] -> [SKIP][576] ([i915#14544]) +11 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: [SKIP][577] ([i915#13046] / [i915#5354]) -> [SKIP][578] ([i915#15400]) +4 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: [SKIP][579] ([i915#4103] / [i915#4213]) -> [SKIP][580] ([i915#15400]) +1 other test skip
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: [SKIP][581] ([i915#15400]) -> [SKIP][582] ([i915#13046] / [i915#5354]) +2 other tests skip
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][583] ([i915#9067]) -> [SKIP][584] ([i915#15400])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: [SKIP][585] ([i915#15400]) -> [SKIP][586] ([i915#4103] / [i915#4213])
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][587] -> [SKIP][588] ([i915#9833])
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: [SKIP][589] ([i915#3840]) -> [SKIP][590] ([i915#15400])
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: [SKIP][591] -> [SKIP][592] ([i915#3555] / [i915#3840]) +1 other test skip
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
- shard-rkl: [SKIP][593] ([i915#3555] / [i915#3840]) -> [SKIP][594] ([i915#14544] / [i915#3555] / [i915#3840]) +1 other test skip
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: [SKIP][595] -> [SKIP][596] ([i915#3469])
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_fbcon_fbt@psr-suspend.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: [SKIP][597] ([i915#15400]) -> [SKIP][598] ([i915#4854])
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_feature_discovery@chamelium.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: [SKIP][599] ([i915#15400]) -> [SKIP][600] ([i915#1839])
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_feature_discovery@display-2x.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
- shard-rkl: [SKIP][601] ([i915#14544] / [i915#1839]) -> [SKIP][602] ([i915#1839])
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: [SKIP][603] ([i915#15400]) -> [SKIP][604] ([i915#658])
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_feature_discovery@psr1.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@kms_feature_discovery@psr1.html
- shard-rkl: [SKIP][605] ([i915#14544] / [i915#658]) -> [SKIP][606] ([i915#658])
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_feature_discovery@psr1.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][607] ([i915#658]) -> [SKIP][608] ([i915#14544] / [i915#658])
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@kms_feature_discovery@psr2.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: [SKIP][609] ([i915#15400]) -> [SKIP][610] ([i915#9934]) +10 other tests skip
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-10/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][611] ([i915#9934]) -> [SKIP][612] ([i915#14544] / [i915#9934]) +1 other test skip
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-dg2: [SKIP][613] ([i915#9934]) -> [SKIP][614] ([i915#15400]) +6 other tests skip
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-dg1: [SKIP][615] ([i915#9934]) -> [SKIP][616] ([i915#4423] / [i915#9934])
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-18/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-18/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-rkl: [SKIP][617] ([i915#14544] / [i915#9934]) -> [SKIP][618] ([i915#9934]) +3 other tests skip
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [FAIL][619] ([i915#13027]) -> [SKIP][620] ([i915#15400])
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: [SKIP][621] ([i915#15400]) -> [SKIP][622] ([i915#8381])
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_flip@flip-vs-fences.html
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][623] ([i915#2672]) -> [SKIP][624] ([i915#14544] / [i915#2672]) +1 other test skip
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][625] ([i915#2672] / [i915#3555]) -> [SKIP][626] ([i915#15400]) +1 other test skip
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][627] ([i915#14544] / [i915#2672]) -> [SKIP][628] ([i915#2672]) +2 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][629] -> [SKIP][630] ([i915#2672] / [i915#3555]) +2 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: [SKIP][631] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][632] ([i915#15400] / [i915#5190]) +2 other tests skip
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][633] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][634] ([i915#2672] / [i915#3555]) +2 other tests skip
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][635] ([i915#2672] / [i915#3555]) -> [SKIP][636] ([i915#14544] / [i915#2672] / [i915#3555]) +1 other test skip
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: [SKIP][637] ([i915#5190]) -> [SKIP][638] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: [SKIP][639] -> [SKIP][640] ([i915#15400]) +61 other tests skip
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: [SKIP][641] ([i915#8708]) -> [SKIP][642] ([i915#15400]) +15 other tests skip
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: [SKIP][643] -> [SKIP][644] ([i915#5354]) +27 other tests skip
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][645] ([i915#5439]) -> [SKIP][646] ([i915#14544] / [i915#5439])
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][647] -> [SKIP][648] ([i915#15104]) +1 other test skip
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][649] ([i915#15102]) -> [SKIP][650] ([i915#15400]) +1 other test skip
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][651] ([i915#15102] / [i915#3458]) -> [SKIP][652] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][653] ([i915#14544]) -> [SKIP][654] +12 other tests skip
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][655] ([i915#1825]) -> [SKIP][656] ([i915#14544] / [i915#1825]) +12 other tests skip
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][657] -> [SKIP][658] ([i915#8708]) +16 other tests skip
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][659] ([i915#5354]) -> [SKIP][660] ([i915#15400]) +18 other tests skip
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-dg1: [SKIP][661] ([i915#4423]) -> [SKIP][662]
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][663] ([i915#14544] / [i915#1825]) -> [SKIP][664] ([i915#1825]) +9 other tests skip
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][665] -> [SKIP][666] ([i915#15102]) +2 other tests skip
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][667] ([i915#15104]) -> [SKIP][668] ([i915#15400]) +1 other test skip
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][669] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][670] ([i915#15102] / [i915#3458])
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][671] ([i915#15102] / [i915#3023]) -> [SKIP][672] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][673] -> [SKIP][674] ([i915#15102] / [i915#3458]) +17 other tests skip
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/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: [SKIP][675] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][676] ([i915#15102] / [i915#3023]) +14 other tests skip
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][677] ([i915#15102] / [i915#3458]) -> [SKIP][678] ([i915#15400]) +17 other tests skip
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][679] ([i915#3555] / [i915#8228]) -> [SKIP][680] ([i915#15400])
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][681] ([i915#15400]) -> [SKIP][682] ([i915#3555] / [i915#8228]) +2 other tests skip
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: [SKIP][683] ([i915#10656]) -> [SKIP][684] ([i915#15400]) +1 other test skip
[683]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-4/igt@kms_joiner@basic-force-ultra-joiner.html
[684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: [SKIP][685] ([i915#10656] / [i915#12388]) -> [SKIP][686] ([i915#10656] / [i915#12388] / [i915#4423])
[685]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: [SKIP][687] ([i915#15400]) -> [SKIP][688] ([i915#6301])
[687]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_panel_fitting@legacy.html
[688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][689] ([i915#14544] / [i915#14712]) -> [SKIP][690] ([i915#14712])
[689]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-dg2: [SKIP][691] -> [SKIP][692] ([i915#14712])
[691]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-dg2: [SKIP][693] ([i915#13958]) -> [SKIP][694] ([i915#15400])
[693]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-8/igt@kms_plane_multiple@2x-tiling-y.html
[694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2: [SKIP][695] ([i915#15400]) -> [SKIP][696] ([i915#13958])
[695]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-yf.html
[696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: [SKIP][697] ([i915#15400]) -> [SKIP][698] ([i915#14259])
[697]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html
[698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-dg2: [SKIP][699] ([i915#9423]) -> [SKIP][700] ([i915#15400] / [i915#9423]) +1 other test skip
[699]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][701] ([i915#14544] / [i915#15329]) -> [SKIP][702] ([i915#15329]) +7 other tests skip
[701]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: [SKIP][703] ([i915#12343]) -> [SKIP][704] ([i915#15400])
[703]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_pm_backlight@brightness-with-dpms.html
[704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: [SKIP][705] ([i915#14544] / [i915#3828]) -> [SKIP][706] ([i915#3828])
[705]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
[706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: [SKIP][707] ([i915#14104]) -> [SKIP][708] ([i915#15400])
[707]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html
[708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2: [SKIP][709] ([i915#15400]) -> [SKIP][710] ([i915#4077]) +1 other test skip
[709]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_pm_rpm@cursor-dpms.html
[710]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [SKIP][711] ([i915#15073]) -> [SKIP][712] ([i915#15400]) +2 other tests skip
[711]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
[712]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-dg2: [SKIP][713] ([i915#15400]) -> [SKIP][714] ([i915#15403])
[713]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_pm_rpm@package-g7.html
[714]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][715] ([i915#11520] / [i915#14544]) -> [SKIP][716] ([i915#11520]) +5 other tests skip
[715]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[716]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][717] ([i915#11520]) -> [SKIP][718] ([i915#11520] / [i915#14544]) +2 other tests skip
[717]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[718]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: [SKIP][719] ([i915#11520]) -> [SKIP][720] ([i915#15400]) +8 other tests skip
[719]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
[720]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: [SKIP][721] -> [SKIP][722] ([i915#11520]) +10 other tests skip
[721]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[722]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: [SKIP][723] ([i915#9683]) -> [SKIP][724] ([i915#15400])
[723]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[724]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: [SKIP][725] -> [SKIP][726] ([i915#9683])
[725]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_psr2_su@page_flip-nv12.html
[726]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: [SKIP][727] ([i915#14544] / [i915#9683]) -> [SKIP][728] ([i915#9683])
[727]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
[728]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: [SKIP][729] -> [SKIP][730] ([i915#1072] / [i915#9732]) +22 other tests skip
[729]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html
[730]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][731] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][732] ([i915#1072] / [i915#9732]) +10 other tests skip
[731]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
[732]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: [SKIP][733] ([i915#1072] / [i915#9732]) -> [SKIP][734] ([i915#15400]) +21 other tests skip
[733]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-1/igt@kms_psr@psr-cursor-render.html
[734]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][735] ([i915#1072] / [i915#9732]) -> [SKIP][736] ([i915#1072] / [i915#14544] / [i915#9732]) +12 other tests skip
[735]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-8/igt@kms_psr@psr-sprite-plane-move.html
[736]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: [SKIP][737] ([i915#9685]) -> [SKIP][738] ([i915#15400])
[737]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[738]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][739] ([i915#5190]) -> [SKIP][740] ([i915#12755] / [i915#5190])
[739]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[740]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: [SKIP][741] ([i915#12755]) -> [SKIP][742] ([i915#15400])
[741]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-270.html
[742]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: [SKIP][743] ([i915#15400]) -> [SKIP][744] ([i915#12755]) +1 other test skip
[743]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html
[744]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: [SKIP][745] ([i915#15400]) -> [SKIP][746] ([i915#3555]) +4 other tests skip
[745]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-none.html
[746]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: [SKIP][747] ([i915#15400]) -> [SKIP][748] ([i915#9906]) +2 other tests skip
[747]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-virtual.html
[748]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: [SKIP][749] ([i915#8516]) -> [SKIP][750] ([i915#15400])
[749]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-3/igt@perf_pmu@rc6-all-gts.html
[750]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: [SKIP][751] ([i915#3291] / [i915#3708]) -> [SKIP][752] ([i915#15400] / [i915#2575])
[751]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-7/igt@prime_vgem@basic-fence-read.html
[752]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-11/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-dg2: [SKIP][753] ([i915#2575]) -> [SKIP][754] ([i915#3291] / [i915#3708])
[753]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@prime_vgem@basic-read.html
[754]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: [SKIP][755] ([i915#2575]) -> [SKIP][756] ([i915#3708] / [i915#4077])
[755]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@prime_vgem@coherency-gtt.html
[756]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-3/igt@prime_vgem@coherency-gtt.html
- shard-rkl: [SKIP][757] ([i915#14544] / [i915#3708]) -> [SKIP][758] ([i915#3708]) +1 other test skip
[757]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[758]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: [SKIP][759] ([i915#2575]) -> [SKIP][760] ([i915#3708]) +2 other tests skip
[759]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@prime_vgem@fence-write-hang.html
[760]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-4/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][761] ([i915#14544] / [i915#9917]) -> [SKIP][762] ([i915#9917])
[761]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
[762]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][763] ([i915#9917]) -> [SKIP][764] ([i915#14544] / [i915#9917])
[763]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[764]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: [SKIP][765] ([i915#2575] / [i915#4818]) -> [SKIP][766] ([i915#4818])
[765]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17651/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
[766]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/shard-dg2-7/igt@tools_test@sysfs_l3_parity.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14104
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14849
[i915#14871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14871
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15386
[i915#15399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15399
[i915#15400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15400
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15405]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15405
[i915#15406]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15406
[i915#15408]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15408
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8662 -> IGTPW_14179
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17651: 46691bf8a4a5a4887c079a41007e98b037e06ffb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14179: 14179
IGT_8662: 9410b6926f317e8bf824502394e09ee8753ff65e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14179/index.html
[-- Attachment #2: Type: text/html, Size: 250627 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH v4 0/2] tests/intel/xe_pat: add helper funtion to read PAT table
2025-12-10 5:23 ` [PATCH v3 " Xin Wang
@ 2025-12-11 7:27 ` Xin Wang
2025-12-11 7:27 ` [PATCH v4 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
2025-12-11 7:27 ` [PATCH v4 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
0 siblings, 2 replies; 29+ messages in thread
From: Xin Wang @ 2025-12-11 7:27 UTC (permalink / raw)
To: igt-dev; +Cc: alex.zuo, Xin Wang
Xin Wang (2):
lib/intel_pat: read Xe PAT config from debugfs
tests/intel/xe_pat: sync with Xe PAT debugfs parser
lib/intel_pat.c | 113 ++++++++++++++++++++++++++++++++++---------
lib/intel_pat.h | 20 ++++++++
lib/xe/xe_query.c | 4 ++
lib/xe/xe_query.h | 4 ++
tests/intel/xe_pat.c | 38 ++++++++++++++-
5 files changed, 154 insertions(+), 25 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH v4 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-11 7:27 ` [PATCH v4 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
@ 2025-12-11 7:27 ` Xin Wang
2025-12-11 7:27 ` [PATCH v4 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
1 sibling, 0 replies; 29+ messages in thread
From: Xin Wang @ 2025-12-11 7:27 UTC (permalink / raw)
To: igt-dev
Cc: alex.zuo, Xin Wang, Shuicheng Lin, Kamil Konieczny, Matt Roper,
Matthew Auld
Parse the PAT software configuration from gt0/pat_sw_config instead
of relying on hard-coded indices.
V2: (Kamil)
- Show a detailed skip info when opening the debugfs file fails.
V3:
- Save the Xe PAT software configuration into the xe_dev structure
to prevent scenarios where certain test cases drop root privileges
after execution begins, which could block access to debugfs.
CC: Shuicheng Lin <shuicheng.lin@intel.com>
CC: Kamil Konieczny <kamil.konieczny@intel.com>
CC: Matt Roper <matthew.d.roper@intel.com>
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
lib/intel_pat.c | 113 ++++++++++++++++++++++++++++++++++++----------
lib/intel_pat.h | 20 ++++++++
lib/xe/xe_query.c | 4 ++
lib/xe/xe_query.h | 4 ++
4 files changed, 118 insertions(+), 23 deletions(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index e3588110a..4c6ce31db 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -3,37 +3,104 @@
* Copyright © 2023 Intel Corporation
*/
+#include "igt.h"
#include "intel_pat.h"
+#include "xe/xe_query.h"
+
+/**
+ * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration
+ * from debugfs
+ *
+ * @drm_fd: DRM device fd to use with igt_debugfs_open
+ * @xe_pat_cache: Pointer to a struct that will receive the parsed PAT configuration
+ *
+ * Returns: The number of PAT entries successfully read on success, or a negative error
+ * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
+ */
+int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache)
+{
+ char *line = NULL;
+ size_t line_len = 0;
+ ssize_t nread;
+ int32_t parsed = 0;
+ int dbgfs_fd;
+ FILE *dbgfs_file = NULL;
+
+ dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config", O_RDONLY);
+ if (dbgfs_fd < 0)
+ return -ENOENT;
+ dbgfs_file = fdopen(dbgfs_fd, "r");
+ if (!dbgfs_file) {
+ close(dbgfs_fd);
+ return -errno;
+ }
-#include "igt.h"
+ memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
+ while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
+ uint32_t value = 0;
+ char *p = NULL;
+
+ /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
+ if (strncmp(line, "PAT[", 4) == 0) {
+ bool is_reserved;
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1) {
+ if (parsed < XE_PAT_MAX_ENTRIES) {
+ is_reserved = strchr(line, '*') != NULL;
+ xe_pat_cache->entries[parsed].pat = value;
+ xe_pat_cache->entries[parsed].rsvd = is_reserved;
+ xe_pat_cache->max_index = parsed;
+ parsed++;
+
+ igt_debug("Parsed PAT entry %d: 0x%08x%s\n",
+ parsed - 1, value,
+ is_reserved ? " (reserved)" : "");
+ } else {
+ igt_warn("Too many PAT entries, line ignored: %s\n", line);
+ }
+ } else {
+ igt_warn("Failed to parse PAT entry line: %s\n", line);
+ }
+ } else if (strncmp(line, "PAT_MODE", 8) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_mode = value;
+ } else if (strncmp(line, "PAT_ATS", 7) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_ats = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wt = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wb = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc_comp = value;
+ }
+ }
+
+ free(line);
+ fclose(dbgfs_file);
-struct intel_pat_cache {
- uint8_t uc; /* UC + COH_NONE */
- uint8_t wt; /* WT + COH_NONE */
- uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
- uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/
- uint8_t max_index;
-};
+ return parsed;
+}
static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
{
uint16_t dev_id = intel_get_drm_devid(fd);
- if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
- pat->uc = 3;
- pat->wb = 2;
- pat->max_index = 31;
- } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
- intel_get_device_info(dev_id)->graphics_ver == 20) {
- pat->uc = 3;
- pat->wt = 15; /* Compressed + WB-transient */
- pat->wb = 2;
- pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
- pat->max_index = 31;
-
- /* Wa_16023588340: CLOS3 entries at end of table are unusable */
- if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
- pat->max_index -= 4;
+ if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) {
+ struct xe_device *xe_dev = xe_device_get(fd);
+ *pat = xe_dev->pat_sw_config;
} else if (IS_METEORLAKE(dev_id)) {
pat->uc = 2;
pat->wt = 1;
diff --git a/lib/intel_pat.h b/lib/intel_pat.h
index eb48cbc65..e9ade2e2e 100644
--- a/lib/intel_pat.h
+++ b/lib/intel_pat.h
@@ -6,9 +6,27 @@
#ifndef INTEL_PAT_H
#define INTEL_PAT_H
+#include <stdbool.h>
#include <stdint.h>
#define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */
+#define XE_PAT_MAX_ENTRIES 32
+
+struct xe_pat_entry {
+ uint32_t pat;
+ bool rsvd;
+};
+
+struct intel_pat_cache {
+ uint8_t uc; /* UC + COH_NONE */
+ uint8_t wt; /* WT + COH_NONE */
+ uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
+ uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/
+ uint8_t max_index;
+ struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
+ uint32_t pat_mode;
+ uint32_t pat_ats;
+};
uint8_t intel_get_max_pat_index(int fd);
@@ -18,4 +36,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
uint8_t intel_get_pat_idx_uc_comp(int fd);
+int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache);
+
#endif /* INTEL_PAT_H */
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 53af86a99..ba4ca8aac 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -408,6 +408,10 @@ struct xe_device *xe_device_get(int fd)
xe_dev->default_alignment = __mem_default_alignment(xe_dev->mem_regions);
xe_dev->has_vram = __mem_has_vram(xe_dev->mem_regions);
+ /* Populate PAT software configuration */
+ igt_require_f(xe_get_pat_sw_config(fd, &xe_dev->pat_sw_config) > 0,
+ "Unable to open the pat_sw_config file in debugfs.\n");
+
/* We may get here from multiple threads, use first cached xe_dev */
pthread_mutex_lock(&cache.cache_mutex);
prev = find_in_cache_unlocked(fd);
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index 6a97d384a..8cf947a52 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -12,6 +12,7 @@
#include <stdint.h>
#include <xe_drm.h>
+#include "intel_pat.h"
#include "igt_aux.h"
#include "igt_list.h"
#include "igt_sizes.h"
@@ -74,6 +75,9 @@ struct xe_device {
/** @dev_id: Device id of xe device */
uint16_t dev_id;
+
+ /** @pat_sw_config: Xe PAT software configuration */
+ struct intel_pat_cache pat_sw_config;
};
#define xe_for_each_engine(__fd, __hwe) \
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v4 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser
2025-12-11 7:27 ` [PATCH v4 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
2025-12-11 7:27 ` [PATCH v4 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
@ 2025-12-11 7:27 ` Xin Wang
1 sibling, 0 replies; 29+ messages in thread
From: Xin Wang @ 2025-12-11 7:27 UTC (permalink / raw)
To: igt-dev; +Cc: alex.zuo, Xin Wang, Matthew Auld
Pull in the Xe PAT table parsed by lib/intel_pat so Xe2+ tests use
the driver-provided entries instead of hard-coded reservations.
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
tests/intel/xe_pat.c | 38 ++++++++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 59dfb6b11..ef517e5f4 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -77,6 +77,18 @@ static void userptr_coh_none(int fd)
xe_vm_destroy(fd, vm);
}
+#define BITS_TO(n) (n >= sizeof(long) * 8 ? ~0 : (1UL << (n)) - 1)
+#define BITMASK(high, low) (uint32_t)(BITS_TO(high+1) & ~BITS_TO(low))
+#define FIELD_GET(val, high, low) (((val) & (BITMASK(high, low))) >> (low))
+#define FIELD_GET_BIT(val, n) FIELD_GET(val, n, n)
+
+#define XE_NO_PROMOTE(val) FIELD_GET_BIT(val, 10)
+#define XE_COMP_EN(val) FIELD_GET_BIT(val, 9)
+#define XE_L3_CLOS(val) FIELD_GET(val, 7, 6)
+#define XE_L3_POLICY(val) FIELD_GET(val, 5, 4)
+#define XE_L4_POLICY(val) FIELD_GET(val, 3, 2)
+#define XE_COH_MODE(val) FIELD_GET(val, 1, 0)
+
/**
* SUBTEST: pat-index-all
* Test category: functionality test
@@ -86,6 +98,7 @@ static void pat_index_all(int fd)
{
uint16_t dev_id = intel_get_drm_devid(fd);
size_t size = xe_get_default_alignment(fd);
+ struct xe_pat_entry *xe_pat_table;
uint32_t vm, bo;
uint8_t pat_index;
@@ -114,10 +127,31 @@ static void pat_index_all(int fd)
igt_assert(intel_get_max_pat_index(fd));
+ if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) {
+ /* Get the Xe PAT software configuration from the cached xe_dev structure */
+ struct xe_device *xe_dev = xe_device_get(fd);
+ xe_pat_table = xe_dev->pat_sw_config.entries;
+ for (int i = 0; i < xe_dev->pat_sw_config.max_index + 1; i++) {
+ uint32_t pat = xe_pat_table[i].pat;
+ igt_debug("PAT[%2d] = [ %u, %u, %u, %u, %u, %u] (%#8x)%s\n", i,
+ XE_NO_PROMOTE(pat),
+ XE_COMP_EN(pat),
+ XE_L3_CLOS(pat),
+ XE_L3_POLICY(pat),
+ XE_L4_POLICY(pat),
+ XE_COH_MODE(pat),
+ pat,
+ xe_pat_table[i].rsvd ? " *" : "");
+ }
+ }
+
for (pat_index = 0; pat_index <= intel_get_max_pat_index(fd);
pat_index++) {
- if (intel_get_device_info(dev_id)->graphics_ver >= 20 &&
- pat_index >= 16 && pat_index <= 19) { /* hw reserved */
+
+ bool hw_reserved = intel_graphics_ver(dev_id) >= IP_VER(20, 0) ?
+ xe_pat_table[pat_index].rsvd : false;
+
+ if (hw_reserved) {
igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x40000,
size, DRM_XE_VM_BIND_OP_MAP, 0, NULL, 0, 0,
pat_index, 0),
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
* [PATCH v4 1/2] lib/intel_pat: read Xe PAT config from debugfs
2025-12-11 7:31 [PATCH v4 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
@ 2025-12-11 7:31 ` Xin Wang
0 siblings, 0 replies; 29+ messages in thread
From: Xin Wang @ 2025-12-11 7:31 UTC (permalink / raw)
To: igt-dev
Cc: alex.zuo, Xin Wang, Shuicheng Lin, Kamil Konieczny, Matt Roper,
Matthew Auld
Parse the PAT software configuration from gt0/pat_sw_config instead
of relying on hard-coded indices.
V2: (Kamil)
- Show a detailed skip info when opening the debugfs file fails.
V3:
- Save the Xe PAT software configuration into the xe_dev structure
to prevent scenarios where certain test cases drop root privileges
after execution begins, which could block access to debugfs.
CC: Shuicheng Lin <shuicheng.lin@intel.com>
CC: Kamil Konieczny <kamil.konieczny@intel.com>
CC: Matt Roper <matthew.d.roper@intel.com>
CC: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
lib/intel_pat.c | 113 ++++++++++++++++++++++++++++++++++++----------
lib/intel_pat.h | 20 ++++++++
lib/xe/xe_query.c | 4 ++
lib/xe/xe_query.h | 4 ++
4 files changed, 118 insertions(+), 23 deletions(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index e3588110a..4c6ce31db 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -3,37 +3,104 @@
* Copyright © 2023 Intel Corporation
*/
+#include "igt.h"
#include "intel_pat.h"
+#include "xe/xe_query.h"
+
+/**
+ * xe_get_pat_sw_config - Helper to read PAT (Page Attribute Table) software configuration
+ * from debugfs
+ *
+ * @drm_fd: DRM device fd to use with igt_debugfs_open
+ * @xe_pat_cache: Pointer to a struct that will receive the parsed PAT configuration
+ *
+ * Returns: The number of PAT entries successfully read on success, or a negative error
+ * code on failure (-ENOENT if debugfs is missing, -errno otherwise)
+ */
+int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache)
+{
+ char *line = NULL;
+ size_t line_len = 0;
+ ssize_t nread;
+ int32_t parsed = 0;
+ int dbgfs_fd;
+ FILE *dbgfs_file = NULL;
+
+ dbgfs_fd = igt_debugfs_open(drm_fd, "gt0/pat_sw_config", O_RDONLY);
+ if (dbgfs_fd < 0)
+ return -ENOENT;
+ dbgfs_file = fdopen(dbgfs_fd, "r");
+ if (!dbgfs_file) {
+ close(dbgfs_fd);
+ return -errno;
+ }
-#include "igt.h"
+ memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
+ while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
+ uint32_t value = 0;
+ char *p = NULL;
+
+ /* Expect patterns like: PAT[ 0] = [ 0, 0, 0, 0, 0 ] ( 0x0) */
+ if (strncmp(line, "PAT[", 4) == 0) {
+ bool is_reserved;
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1) {
+ if (parsed < XE_PAT_MAX_ENTRIES) {
+ is_reserved = strchr(line, '*') != NULL;
+ xe_pat_cache->entries[parsed].pat = value;
+ xe_pat_cache->entries[parsed].rsvd = is_reserved;
+ xe_pat_cache->max_index = parsed;
+ parsed++;
+
+ igt_debug("Parsed PAT entry %d: 0x%08x%s\n",
+ parsed - 1, value,
+ is_reserved ? " (reserved)" : "");
+ } else {
+ igt_warn("Too many PAT entries, line ignored: %s\n", line);
+ }
+ } else {
+ igt_warn("Failed to parse PAT entry line: %s\n", line);
+ }
+ } else if (strncmp(line, "PAT_MODE", 8) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_mode = value;
+ } else if (strncmp(line, "PAT_ATS", 7) == 0) {
+ p = strstr(line, "(");
+ if (p && sscanf(p, "(%x", &value) == 1)
+ xe_pat_cache->pat_ats = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE]", 18) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WT]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wt = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_WB]", 16) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->wb = value;
+ } else if (strncmp(line, "IDX[XE_CACHE_NONE_COMPRESSION]", 28) == 0) {
+ p = strstr(line, "=");
+ if (p && sscanf(p, "= %d", &value) == 1)
+ xe_pat_cache->uc_comp = value;
+ }
+ }
+
+ free(line);
+ fclose(dbgfs_file);
-struct intel_pat_cache {
- uint8_t uc; /* UC + COH_NONE */
- uint8_t wt; /* WT + COH_NONE */
- uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
- uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/
- uint8_t max_index;
-};
+ return parsed;
+}
static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
{
uint16_t dev_id = intel_get_drm_devid(fd);
- if (intel_graphics_ver(dev_id) == IP_VER(35, 11)) {
- pat->uc = 3;
- pat->wb = 2;
- pat->max_index = 31;
- } else if (intel_get_device_info(dev_id)->graphics_ver == 30 ||
- intel_get_device_info(dev_id)->graphics_ver == 20) {
- pat->uc = 3;
- pat->wt = 15; /* Compressed + WB-transient */
- pat->wb = 2;
- pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
- pat->max_index = 31;
-
- /* Wa_16023588340: CLOS3 entries at end of table are unusable */
- if (intel_graphics_ver(dev_id) == IP_VER(20, 1))
- pat->max_index -= 4;
+ if (intel_graphics_ver(dev_id) >= IP_VER(20, 0)) {
+ struct xe_device *xe_dev = xe_device_get(fd);
+ *pat = xe_dev->pat_sw_config;
} else if (IS_METEORLAKE(dev_id)) {
pat->uc = 2;
pat->wt = 1;
diff --git a/lib/intel_pat.h b/lib/intel_pat.h
index eb48cbc65..e9ade2e2e 100644
--- a/lib/intel_pat.h
+++ b/lib/intel_pat.h
@@ -6,9 +6,27 @@
#ifndef INTEL_PAT_H
#define INTEL_PAT_H
+#include <stdbool.h>
#include <stdint.h>
#define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */
+#define XE_PAT_MAX_ENTRIES 32
+
+struct xe_pat_entry {
+ uint32_t pat;
+ bool rsvd;
+};
+
+struct intel_pat_cache {
+ uint8_t uc; /* UC + COH_NONE */
+ uint8_t wt; /* WT + COH_NONE */
+ uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
+ uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/
+ uint8_t max_index;
+ struct xe_pat_entry entries[XE_PAT_MAX_ENTRIES];
+ uint32_t pat_mode;
+ uint32_t pat_ats;
+};
uint8_t intel_get_max_pat_index(int fd);
@@ -18,4 +36,6 @@ uint8_t intel_get_pat_idx_wb(int fd);
uint8_t intel_get_pat_idx_uc_comp(int fd);
+int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache);
+
#endif /* INTEL_PAT_H */
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 53af86a99..ba4ca8aac 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -408,6 +408,10 @@ struct xe_device *xe_device_get(int fd)
xe_dev->default_alignment = __mem_default_alignment(xe_dev->mem_regions);
xe_dev->has_vram = __mem_has_vram(xe_dev->mem_regions);
+ /* Populate PAT software configuration */
+ igt_require_f(xe_get_pat_sw_config(fd, &xe_dev->pat_sw_config) > 0,
+ "Unable to open the pat_sw_config file in debugfs.\n");
+
/* We may get here from multiple threads, use first cached xe_dev */
pthread_mutex_lock(&cache.cache_mutex);
prev = find_in_cache_unlocked(fd);
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index 6a97d384a..8cf947a52 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -12,6 +12,7 @@
#include <stdint.h>
#include <xe_drm.h>
+#include "intel_pat.h"
#include "igt_aux.h"
#include "igt_list.h"
#include "igt_sizes.h"
@@ -74,6 +75,9 @@ struct xe_device {
/** @dev_id: Device id of xe device */
uint16_t dev_id;
+
+ /** @pat_sw_config: Xe PAT software configuration */
+ struct intel_pat_cache pat_sw_config;
};
#define xe_for_each_engine(__fd, __hwe) \
--
2.43.0
^ permalink raw reply related [flat|nested] 29+ messages in thread
end of thread, other threads:[~2025-12-11 7:31 UTC | newest]
Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-13 7:05 [PATCH] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
2025-11-13 7:57 ` ✗ Xe.CI.BAT: failure for " Patchwork
2025-11-13 14:33 ` ✓ Xe.CI.Full: success " Patchwork
2025-11-13 20:55 ` ✓ i915.CI.BAT: " Patchwork
2025-11-13 21:40 ` [PATCH] " Wang, X
2025-11-13 22:12 ` ✓ i915.CI.Full: success for " Patchwork
2025-12-06 1:12 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
2025-12-06 1:12 ` [PATCH v2 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
2025-12-08 16:48 ` Matthew Auld
2025-12-10 5:24 ` [PATCH v3 " Xin Wang
2025-12-06 18:48 ` [PATCH v2 1/2] lib/intel_pat: read Xe PAT config from debugfs Lin, Shuicheng
2025-12-08 18:37 ` Wang, X
2025-12-08 23:27 ` Lin, Shuicheng
2025-12-09 9:36 ` Kamil Konieczny
2025-12-09 16:41 ` Wang, X
2025-12-08 19:25 ` Wang, X
2025-12-10 5:23 ` [PATCH v3 " Xin Wang
2025-12-11 7:27 ` [PATCH v4 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
2025-12-11 7:27 ` [PATCH v4 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
2025-12-11 7:27 ` [PATCH v4 2/2] tests/intel/xe_pat: sync with Xe PAT debugfs parser Xin Wang
2025-12-06 1:57 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev2) Patchwork
2025-12-06 2:05 ` ✓ i915.CI.BAT: " Patchwork
2025-12-06 13:36 ` ✗ Xe.CI.Full: failure " Patchwork
2025-12-07 4:24 ` ✗ i915.CI.Full: " Patchwork
2025-12-10 9:21 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pat: add helper funtion to read PAT table (rev4) Patchwork
2025-12-10 11:05 ` ✓ i915.CI.BAT: " Patchwork
2025-12-10 12:32 ` ✗ Xe.CI.Full: failure " Patchwork
2025-12-10 12:55 ` ✓ i915.CI.Full: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2025-12-11 7:31 [PATCH v4 0/2] tests/intel/xe_pat: add helper funtion to read PAT table Xin Wang
2025-12-11 7:31 ` [PATCH v4 1/2] lib/intel_pat: read Xe PAT config from debugfs Xin Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).