* [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms
@ 2023-11-03 20:47 Jagmeet Randhawa
2023-11-03 20:47 ` [igt-dev] [PATCH 1/1] " Jagmeet Randhawa
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jagmeet Randhawa @ 2023-11-03 20:47 UTC (permalink / raw)
Cc: igt-dev
Addressing Christoph Manszewskis comments: Added brackets to remaining else if
statements, and fixed the XE2 format issue. I ran checkpatch and
everything seems good, there was trailing white space errors but those I
believe are false positives and are inconsistent with the rest of the
code styling therefore I ignored them
Addresing Kamil Koniecznys comments: I fixed the header, and added
Dominiks r-b
Jagmeet Randhawa (1):
lib/gpgpu_fill: Add support for Xe2 platforms
lib/gpgpu_fill.c | 23 +++++++
lib/gpgpu_fill.h | 6 ++
lib/gpu_cmds.c | 61 ++++++++++++++++---
.../shaders/gpgpu/xe2lpg_gpgpu_kernel.asm | 13 ++++
lib/intel_batchbuffer.c | 4 +-
5 files changed, 96 insertions(+), 11 deletions(-)
create mode 100644 lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH 1/1] lib/gpgpu_fill: Add support for Xe2 platforms
2023-11-03 20:47 [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
@ 2023-11-03 20:47 ` Jagmeet Randhawa
2023-11-06 12:03 ` Manszewski, Christoph
2023-11-03 21:56 ` [igt-dev] ✓ CI.xeBAT: success for series starting with [1/1] " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Jagmeet Randhawa @ 2023-11-03 20:47 UTC (permalink / raw)
Cc: igt-dev
Add xe2lpg_gpgpu_fillfunc to have gpgpu_fill running on XE2
On XE2 there are a few changes to gpu command instruction lengths.
There's also no 'Media Block Write' message, thus 'Typed 2D Block
Store' message has to be used in the shader.
The shader was compiled using the following command:
iga64 -p=2 -Wall -Xprint-ldst -Xauto-deps --assemble xe2lpg_gpgpu_kernel.asm
| od -A n -v -t x4 |sed -e 's/ / 0x/g' | sed -e 's/^/\t{/' | sed -e
's/([0-9]|[a-f]|[A-F]) /\1, /g' | sed -e 's/$/ },/g' | sed -e 's/\t /\t/g'
Signed-off-by: Christoph Manszewski <christoph.manszewski@intel.com>
Signed-off-by: Jagmeet Randhawa <jagmeet.randhawa@intel.com>
Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
---
lib/gpgpu_fill.c | 23 +++++++
lib/gpgpu_fill.h | 6 ++
lib/gpu_cmds.c | 61 ++++++++++++++++---
.../shaders/gpgpu/xe2lpg_gpgpu_kernel.asm | 13 ++++
lib/intel_batchbuffer.c | 4 +-
5 files changed, 96 insertions(+), 11 deletions(-)
create mode 100644 lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
diff --git a/lib/gpgpu_fill.c b/lib/gpgpu_fill.c
index eed821872..1270c2b22 100644
--- a/lib/gpgpu_fill.c
+++ b/lib/gpgpu_fill.c
@@ -124,6 +124,18 @@ static const uint32_t xehpc_gpgpu_kernel[][4] = {
{ 0x000c0031, 0x00000004, 0x3000500c, 0x00000000 },
};
+static const uint32_t xe2lpg_gpgpu_kernel[][4] = {
+ { 0x00080061, 0x01050000, 0x00000104, 0x00000000 },
+ { 0x00000069, 0x02058220, 0x02000014, 0x00000004 },
+ { 0x00000061, 0x02150220, 0x00000064, 0x00000000 },
+ { 0x00100061, 0x04054220, 0x00000000, 0x00000000 },
+ { 0x00041a61, 0x04550220, 0x00220205, 0x00000000 },
+ { 0x00000061, 0x04754550, 0x00000000, 0x000f000f },
+ { 0x00101e61, 0x05050220, 0x00000104, 0x00000000 },
+ { 0x00132031, 0x00000000, 0xd00e0494, 0x04000000 },
+ { 0x000c0031, 0x00000004, 0x3000500c, 0x00000000 },
+};
+
/*
* This sets up the gpgpu pipeline,
*
@@ -398,3 +410,14 @@ void xehpc_gpgpu_fillfunc(int i915,
xehpc_gpgpu_kernel,
sizeof(xehpc_gpgpu_kernel));
}
+
+void xe2lpg_gpgpu_fillfunc(int i915,
+ struct intel_buf *buf,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ uint8_t color)
+{
+ __xehp_gpgpu_fillfunc(i915, buf, x, y, width, height, color,
+ xe2lpg_gpgpu_kernel,
+ sizeof(xe2lpg_gpgpu_kernel));
+}
diff --git a/lib/gpgpu_fill.h b/lib/gpgpu_fill.h
index f81cd0b53..c3b47c10a 100644
--- a/lib/gpgpu_fill.h
+++ b/lib/gpgpu_fill.h
@@ -75,4 +75,10 @@ xehpc_gpgpu_fillfunc(int i915,
unsigned int width, unsigned int height,
uint8_t color);
+void xe2lpg_gpgpu_fillfunc(int i915,
+ struct intel_buf *buf,
+ unsigned int x, unsigned int y,
+ unsigned int width, unsigned int height,
+ uint8_t color);
+
#endif /* GPGPU_FILL_H */
diff --git a/lib/gpu_cmds.c b/lib/gpu_cmds.c
index f19f93b28..ed608e95a 100644
--- a/lib/gpu_cmds.c
+++ b/lib/gpu_cmds.c
@@ -328,18 +328,45 @@ fill_binding_table(struct intel_bb *ibb, struct intel_buf *buf)
binding_table = intel_bb_ptr(ibb);
intel_bb_ptr_add(ibb, 64);
- if (intel_graphics_ver(devid) >= IP_VER(12, 50))
+ if (intel_graphics_ver(devid) >= IP_VER(20, 0)){
+ /*
+ * Up until now, SURFACEFORMAT_R8_UNROM was used regardless of the 'bpp' value.
+ * For bpp 32 this results in a surface that is 4x narrower than expected. However
+ * it worked, because the 'Media Block Read/Write' message assumes the surface width
+ * is always in units of dwords.
+ *
+ * Since Xe2 the Media Block Write message got replaced with 'Typed 2D Block
+ * Load/Store Message' which correctly interprets the surface format.
+ */
+ if (buf->bpp == 32)
+ binding_table[0] = xehp_fill_surface_state(ibb, buf,
+ SURFACEFORMAT_R8G8B8A8_UNORM,
+ 1);
+ else if (buf->bpp == 8)
+ binding_table[0] = xehp_fill_surface_state(ibb, buf,
+ SURFACEFORMAT_R8_UNORM,
+ 1);
+ else
+ igt_assert_f(false,
+ "Surface state for bpp = %u not implemented",
+ buf->bpp);
+ }
+ else if (intel_graphics_ver(devid) >= IP_VER(12, 50)){
binding_table[0] = xehp_fill_surface_state(ibb, buf,
SURFACEFORMAT_R8_UNORM, 1);
- else if (intel_graphics_ver(devid) >= IP_VER(9, 0))
+ }
+ else if (intel_graphics_ver(devid) >= IP_VER(9, 0)){
binding_table[0] = gen9_fill_surface_state(ibb, buf,
SURFACEFORMAT_R8_UNORM, 1);
- else if (intel_graphics_ver(devid) >= IP_VER(8, 0))
+ }
+ else if (intel_graphics_ver(devid) >= IP_VER(8, 0)){
binding_table[0] = gen8_fill_surface_state(ibb, buf,
SURFACEFORMAT_R8_UNORM, 1);
- else
+ }
+ else {
binding_table[0] = gen7_fill_surface_state(ibb, buf,
SURFACEFORMAT_R8_UNORM, 1);
+ }
return binding_table_offset;
}
@@ -959,8 +986,12 @@ xehp_emit_cfe_state(struct intel_bb *ibb, uint32_t threads)
void
xehp_emit_state_compute_mode(struct intel_bb *ibb)
{
- intel_bb_out(ibb, XEHP_STATE_COMPUTE_MODE);
+ uint32_t dword_length = intel_graphics_ver(ibb->devid) >= IP_VER(20, 0);
+ intel_bb_out(ibb, XEHP_STATE_COMPUTE_MODE | dword_length);
intel_bb_out(ibb, 0);
+
+ if (dword_length)
+ intel_bb_out(ibb, 0);
}
void
@@ -976,6 +1007,8 @@ xehp_emit_state_binding_table_pool_alloc(struct intel_bb *ibb)
void
xehp_emit_state_base_address(struct intel_bb *ibb)
{
+ uint32_t tmp;
+
intel_bb_out(ibb, GEN8_STATE_BASE_ADDRESS | 0x14); //dw0
/* general */
@@ -983,7 +1016,8 @@ xehp_emit_state_base_address(struct intel_bb *ibb)
intel_bb_out(ibb, 0);
/* stateless data port */
- intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY); //dw3
+ tmp = intel_graphics_ver(ibb->devid) == IP_VER(20, 0) ? 0 : BASE_ADDRESS_MODIFY;
+ intel_bb_out(ibb, 0 | tmp); //dw3
/* surface */
intel_bb_emit_reloc(ibb, ibb->handle, I915_GEM_DOMAIN_SAMPLER, //dw4-dw5
@@ -1008,7 +1042,10 @@ xehp_emit_state_base_address(struct intel_bb *ibb)
/* dynamic state buffer size */
intel_bb_out(ibb, 1 << 12 | 1); //dw13
/* indirect object buffer size */
- intel_bb_out(ibb, 0xfffff000 | 1); //dw14
+ if (intel_graphics_ver(ibb->devid) == IP_VER(20, 0)) //dw14
+ intel_bb_out(ibb, 0);
+ else
+ intel_bb_out(ibb, 0xfffff000 | 1);
/* intruction buffer size */
intel_bb_out(ibb, 1 << 12 | 1); //dw15
@@ -1030,7 +1067,7 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
struct xehp_interface_descriptor_data *pidd,
uint8_t color)
{
- uint32_t x_dim, y_dim, mask;
+ uint32_t x_dim, y_dim, mask, dword_length;
/*
* Simply do SIMD16 based dispatch, so every thread uses
@@ -1052,7 +1089,8 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
else
mask = (1 << mask) - 1;
- intel_bb_out(ibb, XEHP_COMPUTE_WALKER | 0x25);
+ dword_length = intel_graphics_ver(ibb->devid) >= IP_VER(20, 0) ? 0x26 : 0x25;
+ intel_bb_out(ibb, XEHP_COMPUTE_WALKER | dword_length);
intel_bb_out(ibb, 0); /* debug object */ //dw1
intel_bb_out(ibb, 0); /* indirect data length */ //dw2
@@ -1090,9 +1128,12 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
intel_bb_out(ibb, 0); //dw15
intel_bb_out(ibb, 0); //dw16
intel_bb_out(ibb, 0); //dw17
+
+ if (intel_graphics_ver(ibb->devid) >= IP_VER(20, 0)) //Xe2:dw18
+ intel_bb_out(ibb, 0);
/* Interface descriptor data */
- for (int i = 0; i < 8; i++) { //dw18-25
+ for (int i = 0; i < 8; i++) { //dw18-25 (Xe2:dw19-26)
intel_bb_out(ibb, ((uint32_t *) pidd)[i]);
}
diff --git a/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm b/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
new file mode 100644
index 000000000..e2ecc71f5
--- /dev/null
+++ b/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
@@ -0,0 +1,13 @@
+L0:
+ mov (4|M0) r1.0<1>:ub r1.0<0;1,0>:ub // Load r1.0-3 with color byte
+ shl (1|M0) r2.0<1>:ud r0.1<0;1,0>:ud 0x4:ud // Load r2.0-3 with tg id X << 4
+ mov (1|M0) r2.1<1>:ud r0.6<0;1,0>:ud // Load r2.4-7 with tg id Y
+
+ // payload setup
+ mov (16|M0) r4.0<1>:ud 0x0:ud // Zero out register R4
+ mov (2|M0) r4.5<1>:ud r2.0<2;2,1>:ud // Store X and Y block start (160:191 and 192:223)
+ mov (1|M0) r4.14<1>:w 0xF:w // Store X and Y block size (224:231 and 232:239)
+ mov (16|M0) r5.0<1>:ud r1.0<0;1,0>:ud // Load r5-r6 with color byte
+
+ send.tgm (16|M0) null r4 null:0 0x0 0x64000007 // Send TypedStore2DBlock to tgm port
+ send.gtwy (8|M0) null r80 null:0 0x0 0x02000000 {EOT}
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index df82ef5f5..d23c04073 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -755,7 +755,9 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid)
{
igt_fillfunc_t fill = NULL;
- if (IS_METEORLAKE(devid))
+ if (intel_graphics_ver(devid) >= IP_VER(20, 0))
+ fill = xe2lpg_gpgpu_fillfunc;
+ else if (IS_METEORLAKE(devid))
fill = xehp_gpgpu_fillfunc;
else if (intel_graphics_ver(devid) >= IP_VER(12, 60))
fill = xehpc_gpgpu_fillfunc;
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for series starting with [1/1] lib/gpgpu_fill: Add support for Xe2 platforms
2023-11-03 20:47 [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
2023-11-03 20:47 ` [igt-dev] [PATCH 1/1] " Jagmeet Randhawa
@ 2023-11-03 21:56 ` Patchwork
2023-11-03 22:01 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-11-03 21:56 UTC (permalink / raw)
To: Jagmeet Randhawa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2025 bytes --]
== Series Details ==
Series: series starting with [1/1] lib/gpgpu_fill: Add support for Xe2 platforms
URL : https://patchwork.freedesktop.org/series/125979/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7573_BAT -> XEIGTPW_10117_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10117_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7573/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10117/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
- bat-adlp-7: [FAIL][3] ([Intel XE#480]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7573/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10117/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
Build changes
-------------
* IGT: IGT_7573 -> IGTPW_10117
* Linux: xe-467-58dfdb8dc78e5668f9891c798ec3191863c1e0d2 -> xe-468-3eda14181cf05365b96272eec03df94bcfd264b5
IGTPW_10117: 10117
IGT_7573: 69485d223b256208614e9949a4a7e84bde52d5f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-467-58dfdb8dc78e5668f9891c798ec3191863c1e0d2: 58dfdb8dc78e5668f9891c798ec3191863c1e0d2
xe-468-3eda14181cf05365b96272eec03df94bcfd264b5: 3eda14181cf05365b96272eec03df94bcfd264b5
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10117/index.html
[-- Attachment #2: Type: text/html, Size: 2699 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/1] lib/gpgpu_fill: Add support for Xe2 platforms
2023-11-03 20:47 [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
2023-11-03 20:47 ` [igt-dev] [PATCH 1/1] " Jagmeet Randhawa
2023-11-03 21:56 ` [igt-dev] ✓ CI.xeBAT: success for series starting with [1/1] " Patchwork
@ 2023-11-03 22:01 ` Patchwork
2023-11-04 14:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-11-06 11:55 ` [igt-dev] [PATCH v3] " Manszewski, Christoph
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-11-03 22:01 UTC (permalink / raw)
To: Jagmeet Randhawa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9601 bytes --]
== Series Details ==
Series: series starting with [1/1] lib/gpgpu_fill: Add support for Xe2 platforms
URL : https://patchwork.freedesktop.org/series/125979/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13835 -> IGTPW_10117
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/index.html
Participating hosts (36 -> 36)
------------------------------
Additional (2): bat-dg2-9 fi-pnv-d510
Missing (2): bat-kbl-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10117 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@lmem0:
- bat-dg2-9: NOTRUN -> [INCOMPLETE][1] ([i915#9275])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- fi-hsw-4770: NOTRUN -> [SKIP][2] ([fdo#109271]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/fi-hsw-4770/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@hangcheck:
- fi-hsw-4770: NOTRUN -> [INCOMPLETE][7] ([i915#9527])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4215] / [i915#5190])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#4212]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#4212] / [i915#5608])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([fdo#109285])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#5274])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][15] ([fdo#109271]) +29 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#1072]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#4098])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#3708])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#3708] / [i915#4077]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#3291] / [i915#3708]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][21] ([i915#5334]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5:
- bat-adlp-11: [DMESG-FAIL][23] ([i915#6868]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-5.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5:
- bat-adlp-11: [FAIL][25] ([i915#9047]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5:
- bat-adlp-11: [ABORT][27] ([i915#8668]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html
* igt@vgem_basic@unload:
- fi-hsw-4770: [INCOMPLETE][29] -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/fi-hsw-4770/igt@vgem_basic@unload.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/fi-hsw-4770/igt@vgem_basic@unload.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#9047]: https://gitlab.freedesktop.org/drm/intel/issues/9047
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9527]: https://gitlab.freedesktop.org/drm/intel/issues/9527
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7573 -> IGTPW_10117
CI-20190529: 20190529
CI_DRM_13835: ca1fcd4faf444fc6d8b3cf88a17e2eb7765c1299 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10117: 10117
IGT_7573: 69485d223b256208614e9949a4a7e84bde52d5f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/index.html
[-- Attachment #2: Type: text/html, Size: 11172 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [1/1] lib/gpgpu_fill: Add support for Xe2 platforms
2023-11-03 20:47 [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
` (2 preceding siblings ...)
2023-11-03 22:01 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-11-04 14:47 ` Patchwork
2023-11-06 11:55 ` [igt-dev] [PATCH v3] " Manszewski, Christoph
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-11-04 14:47 UTC (permalink / raw)
To: Jagmeet Randhawa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100292 bytes --]
== Series Details ==
Series: series starting with [1/1] lib/gpgpu_fill: Add support for Xe2 platforms
URL : https://patchwork.freedesktop.org/series/125979/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13835_full -> IGTPW_10117_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10117_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10117_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10117/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): shard-mtlp0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10117_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-edp-1:
- shard-mtlp: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-a-edp-1.html
Known issues
------------
Here are the changes found in IGTPW_10117_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: [PASS][4] -> [SKIP][5] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#7701])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#7701])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [INCOMPLETE][8] ([i915#9408])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +5 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][11] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +20 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@gem_caching@read-writes.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#4098] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#9364])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][19] ([fdo#109314])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hang@bcs0:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#6252])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-14/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4771])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-apl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#6334])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: NOTRUN -> [FAIL][33] ([i915#2842])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
- shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#9591])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fence@parallel@ccs0:
- shard-mtlp: [PASS][37] -> [FAIL][38] ([i915#8957])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@gem_exec_fence@parallel@ccs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gem_exec_fence@parallel@ccs0.html
* igt@gem_exec_fence@parallel@vcs0:
- shard-mtlp: [PASS][39] -> [DMESG-WARN][40] ([i915#8962])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@gem_exec_fence@parallel@vcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html
* igt@gem_exec_fence@parallel@vecs0:
- shard-mtlp: [PASS][41] -> [DMESG-FAIL][42] ([i915#8962]) +2 other tests dmesg-fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@gem_exec_fence@parallel@vecs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3711])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +8 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][45] ([fdo#109283] / [i915#5107])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][46] ([fdo#112283]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_params@secure-non-root:
- shard-mtlp: NOTRUN -> [SKIP][47] ([fdo#112283])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-active:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-read-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +18 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [PASS][52] -> [SKIP][53] ([i915#3281]) +6 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-rkl: NOTRUN -> [ABORT][56] ([i915#7975] / [i915#8213])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#4613]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl7/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8289])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-7/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#284])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-2/igt@gem_mmap@bad-object.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: [PASS][67] -> [SKIP][68] ([fdo#111656])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +9 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +20 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@coherency:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@snoop:
- shard-rkl: [PASS][74] -> [SKIP][75] ([i915#3282]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_pread@snoop.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@gem_pread@snoop.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#4270])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-9/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#768]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#8411])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4885])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][88] ([fdo#109312])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][93] ([i915#3318])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg2: NOTRUN -> [SKIP][94] ([fdo#109289]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@gen7_exec_parse@chained-batch.html
- shard-dg1: NOTRUN -> [SKIP][95] ([fdo#109289])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-14/igt@gen7_exec_parse@chained-batch.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][96] ([fdo#109289]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [PASS][97] -> [SKIP][98] ([i915#2527]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@gen9_exec_parse@valid-registers.html
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#2527]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4881])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@i915_fb_tiling.html
* igt@i915_hangman@hangcheck-unterminated:
- shard-mtlp: [PASS][104] -> [ABORT][105] ([i915#9414]) +1 other test abort
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-4/igt@i915_hangman@hangcheck-unterminated.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@i915_hangman@hangcheck-unterminated.html
* igt@i915_module_load@load:
- shard-dg1: [PASS][106] -> [SKIP][107] ([i915#6227])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-17/igt@i915_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@i915_module_load@load.html
- shard-dg2: [PASS][108] -> [SKIP][109] ([i915#6227])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-6/igt@i915_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@i915_module_load@load.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#7178])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][111] ([i915#8346])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#8925]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3555] / [i915#8925]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8925])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#8925])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][116] ([fdo#109303])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-3/igt@i915_query@query-topology-known-pci-ids.html
- shard-dg2: NOTRUN -> [SKIP][117] ([fdo#109303])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@i915_query@query-topology-known-pci-ids.html
- shard-rkl: NOTRUN -> [SKIP][118] ([fdo#109303])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][119] ([fdo#109302])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@i915_query@query-topology-unsupported.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6645])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4215] / [i915#5190])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4212])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-14/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#9531])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [FAIL][129] ([i915#5138])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#5286])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][131] ([fdo#111614] / [i915#3638]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3638]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][133] ([fdo#111614]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#1845] / [i915#4098]) +28 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#111614]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190]) +23 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6187]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][138] -> [FAIL][139] ([i915#3743])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][142] ([fdo#111615])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][143] ([fdo#110723])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][144] ([fdo#111615]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#2705])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#3742])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][148] ([fdo#111827]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-14/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111827])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][150] ([fdo#111827]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@degamma:
- shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111827]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#7828]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#7828]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7828]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#7828]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@degamma@pipe-a:
- shard-rkl: [PASS][156] -> [SKIP][157] ([i915#4098]) +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_color@degamma@pipe-a.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_color@degamma@pipe-a.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6944])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3299])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3299]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][162] ([i915#7173])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#7116])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#7118]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3359])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#3359]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x256:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#4098]) +29 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8814]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3359]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3359]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg1: NOTRUN -> [SKIP][172] ([fdo#111767] / [fdo#111825])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#4103])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#4103] / [i915#4213] / [i915#5608])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3546]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274] / [i915#5354]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
- shard-dg1: NOTRUN -> [SKIP][177] ([fdo#111825]) +14 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][178] ([fdo#111767] / [i915#3546])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-apl: NOTRUN -> [SKIP][179] ([fdo#109271] / [fdo#111767]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109274] / [fdo#111767] / [i915#5354])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][181] -> [FAIL][182] ([i915#2346]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4103] / [i915#4213])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#4103])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#4213])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#9226] / [i915#9261]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#9227])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#9227])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html
* igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#9226] / [i915#9261]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8588])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8812])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#8812])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-snb: NOTRUN -> [SKIP][195] ([fdo#109271]) +5 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-snb5/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3637]) +5 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#8381]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][199] ([fdo#109274]) +8 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][200] ([fdo#111825]) +4 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3637] / [i915#4098]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8381])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#2672]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8810])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/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-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2672])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672]) +6 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +27 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#1849] / [i915#4098]) +12 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#8708]) +8 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#5354]) +46 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#1825]) +31 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8708]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#1849] / [i915#4098]) +11 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#5460])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#3458]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3458]) +24 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-rte:
- shard-tglu: NOTRUN -> [SKIP][220] ([fdo#109280]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][221] ([fdo#111825] / [i915#1825]) +21 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3023]) +13 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-17/igt@kms_hdr@static-toggle.html
* igt@kms_invalid_mode@bad-vsync-start:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#4098]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-start.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#4816])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#6301])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-top-left:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#4098] / [i915#8825])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][231] ([i915#7862]) +1 other test fail
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3582]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#8821])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8821])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8806])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555]) +15 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3555]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][238] ([i915#8292])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#4098] / [i915#8152])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#5176] / [i915#9423]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#4098] / [i915#6953] / [i915#8152])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#5235]) +15 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#5235]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#5235]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#8152]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#5235]) +4 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#5235]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1:
- shard-apl: NOTRUN -> [SKIP][249] ([fdo#109271]) +90 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#5235]) +14 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#6524] / [i915#6805]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#6524])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@kms_prime@d3hot.html
* igt@kms_properties@plane-properties-legacy:
- shard-rkl: [PASS][253] -> [SKIP][254] ([i915#1849])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_properties@plane-properties-legacy.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#658])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#658])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][257] ([fdo#109271] / [i915#658]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][258] ([fdo#111068] / [i915#658])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][259] ([fdo#111068] / [i915#658]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#658]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#1072]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_render:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#1072] / [i915#4078]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-18/igt@kms_psr@primary_render.html
* igt@kms_psr@psr2_cursor_plane_move:
- shard-tglu: NOTRUN -> [SKIP][263] ([fdo#110189])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-9/igt@kms_psr@psr2_cursor_plane_move.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#1072]) +8 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#5461] / [i915#658])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#4235])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-7/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#5289])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-15/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [PASS][268] -> [SKIP][269] ([i915#1845] / [i915#4098]) +24 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-90.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#4235]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][271] ([i915#5465]) +1 other test fail
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#4098]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8809])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][274] ([IGT#2])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#8623])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2437]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][277] ([i915#8724])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
* igt@perf@gen12-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][278] ([fdo#109289]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@perf@gen12-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#7387])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-5/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][280] ([i915#7484])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#2435])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][282] ([fdo#109289] / [i915#2433])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#2433])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][284] -> [FAIL][285] ([i915#4349])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][286] ([i915#6806])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-2/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#8516])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#8516])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][289] ([fdo#109291])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@prime_udl.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3708] / [i915#4077])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-7/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][291] ([fdo#109295] / [fdo#111656] / [i915#3708])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3708] / [i915#4077])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#3708])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#3708])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-13/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted:
- shard-mtlp: NOTRUN -> [FAIL][295] ([i915#9583])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled:
- shard-rkl: NOTRUN -> [FAIL][296] ([i915#9583])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted:
- shard-apl: NOTRUN -> [FAIL][297] ([i915#9583])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl4/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted:
- shard-dg2: NOTRUN -> [FAIL][298] ([i915#9583])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-dg2: NOTRUN -> [FAIL][299] ([i915#9582])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][300] ([fdo#109315]) +8 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#2575]) +5 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-19/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#2575]) +18 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-11/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2575]) +8 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#7711]) +6 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#7711]) +4 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@vc4/vc4_tiling@get-bad-modifier.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#7711]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-16/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#7711]) +12 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][308] ([i915#7742]) -> [PASS][309] +1 other test pass
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@pan:
- shard-rkl: [SKIP][310] ([i915#2582]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@fbdev@pan.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@fbdev@pan.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][312] ([i915#6268]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_shared@q-smoketest@vcs1:
- shard-dg2: [INCOMPLETE][314] -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg2-7/igt@gem_ctx_shared@q-smoketest@vcs1.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg2-6/igt@gem_ctx_shared@q-smoketest@vcs1.html
* igt@gem_eio@wait-wedge-10ms:
- shard-mtlp: [ABORT][316] ([i915#9414]) -> [PASS][317] +2 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@gem_eio@wait-wedge-10ms.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [SKIP][318] ([i915#9591]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][320] ([i915#2842]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [FAIL][322] ([i915#2842]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-rkl: [SKIP][324] ([fdo#109313]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][326] ([i915#3281]) -> [PASS][327] +4 other tests pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][328] ([i915#7975] / [i915#8213]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-9/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-apl: [INCOMPLETE][330] -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl6/igt@gem_mmap_gtt@cpuset-medium-copy.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl2/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_pwrite_snooped:
- shard-rkl: [SKIP][332] ([i915#3282]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@gem_pwrite_snooped.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][334] ([i915#8411]) -> [PASS][335] +1 other test pass
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][336] ([i915#2527]) -> [PASS][337] +2 other tests pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gen9_exec_parse@secure-batches.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-rkl: [WARN][338] ([i915#2681]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][340] ([i915#3743]) -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* {igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs}:
- shard-rkl: [SKIP][342] ([i915#4098]) -> [PASS][343] +10 other tests pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [SKIP][344] ([i915#1845] / [i915#4098]) -> [PASS][345] +14 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][346] ([i915#2346]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][348] ([i915#79]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-rkl: [SKIP][350] ([i915#1849] / [i915#4098]) -> [PASS][351] +9 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][352] ([i915#9519]) -> [PASS][353] +3 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][354] ([i915#9196]) -> [PASS][355] +1 other test pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][356] ([i915#9196]) -> [PASS][357] +2 other tests pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][358] ([i915#4349]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][360] ([i915#9432]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
- shard-apl: [SKIP][362] ([fdo#109271]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-apl2/igt@perf_pmu@frequency@gt0.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-apl7/igt@perf_pmu@frequency@gt0.html
- shard-glk: [SKIP][364] ([fdo#109271]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-glk2/igt@perf_pmu@frequency@gt0.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-glk8/igt@perf_pmu@frequency@gt0.html
- shard-snb: [SKIP][366] ([fdo#109271]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-snb7/igt@perf_pmu@frequency@gt0.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-snb7/igt@perf_pmu@frequency@gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][368] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
#### Warnings ####
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][370] ([i915#7957]) -> [SKIP][371] ([i915#3555]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][372] ([i915#9323]) -> [SKIP][373] ([i915#7957])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@gem_ccs@suspend-resume.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_ccs@suspend-resume.html
* igt@gem_pread@exhaustion:
- shard-rkl: [SKIP][374] ([i915#3282]) -> [WARN][375] ([i915#2658])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@gem_pread@exhaustion.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@gem_pread@exhaustion.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][376] ([i915#2532]) -> [SKIP][377] ([i915#2527])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html
* igt@kms_async_flips@crc@pipe-a-edp-1:
- shard-mtlp: [FAIL][378] ([i915#8247]) -> [DMESG-FAIL][379] ([i915#8561])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-mtlp-3/igt@kms_async_flips@crc@pipe-a-edp-1.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-mtlp-4/igt@kms_async_flips@crc@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][380] ([i915#1845] / [i915#4098]) -> [SKIP][381] ([i915#1769] / [i915#3555])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][382] ([i915#5286]) -> [SKIP][383] ([i915#4098]) +6 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][384] ([i915#4098]) -> [SKIP][385] ([i915#5286]) +6 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][386] ([fdo#111614] / [i915#3638]) -> [SKIP][387] ([i915#1845] / [i915#4098]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][388] ([i915#1845] / [i915#4098]) -> [SKIP][389] ([fdo#111614] / [i915#3638]) +2 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][390] ([i915#1845] / [i915#4098]) -> [SKIP][391] ([fdo#110723]) +5 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: [SKIP][392] ([fdo#110723]) -> [SKIP][393] ([i915#1845] / [i915#4098]) +6 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][394] ([i915#9608]) -> [SKIP][395] ([i915#3555])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_color@deep-color.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][396] ([i915#7118]) -> [SKIP][397] ([i915#1845] / [i915#4098])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_content_protection@type1.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][398] ([i915#4098]) -> [SKIP][399] ([i915#3555]) +4 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: [SKIP][400] ([i915#3359]) -> [SKIP][401] ([i915#4098])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-rkl: [SKIP][402] ([i915#1845] / [i915#4098]) -> [SKIP][403] ([fdo#111825]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][404] ([fdo#111825]) -> [SKIP][405] ([i915#1845] / [i915#4098]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: [SKIP][406] ([fdo#111767] / [fdo#111825]) -> [SKIP][407] ([i915#1845] / [i915#4098])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][408] ([i915#4103]) -> [SKIP][409] ([i915#1845] / [i915#4098])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][410] ([i915#3955]) -> [SKIP][411] ([fdo#110189] / [i915#3955])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][412] ([fdo#109285]) -> [SKIP][413] ([fdo#109285] / [i915#4098])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][414] ([i915#1849] / [i915#4098]) -> [SKIP][415] ([fdo#111825] / [i915#1825]) +23 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: [SKIP][416] ([i915#3023]) -> [SKIP][417] ([i915#1849] / [i915#4098]) +19 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][418] ([i915#1849] / [i915#4098]) -> [SKIP][419] ([fdo#111825]) +1 other test skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][420] ([fdo#111825] / [i915#1825]) -> [SKIP][421] ([i915#1849] / [i915#4098]) +39 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][422] ([i915#1849] / [i915#4098]) -> [SKIP][423] ([i915#3023]) +11 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@static-swap:
- shard-rkl: [SKIP][424] ([i915#1845] / [i915#4098]) -> [SKIP][425] ([i915#3555] / [i915#8228])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_hdr@static-swap.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][426] ([i915#4070] / [i915#4816]) -> [SKIP][427] ([i915#4816])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][428] ([i915#3555]) -> [SKIP][429] ([i915#4098]) +3 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-1/igt@kms_plane_lowres@tiling-yf.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: [SKIP][430] ([i915#4098]) -> [SKIP][431] ([i915#5289])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][432] ([i915#1845] / [i915#4098]) -> [SKIP][433] ([fdo#111615] / [i915#5289])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: [SKIP][434] ([i915#9432]) -> [FAIL][435] ([i915#6806])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13835/shard-dg1-18/igt@perf_pmu@frequency@gt0.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/shard-dg1-17/igt@perf_pmu@frequency@gt0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issue
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10117/index.html
[-- Attachment #2: Type: text/html, Size: 112798 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms
2023-11-03 20:47 [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
` (3 preceding siblings ...)
2023-11-04 14:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-11-06 11:55 ` Manszewski, Christoph
4 siblings, 0 replies; 7+ messages in thread
From: Manszewski, Christoph @ 2023-11-06 11:55 UTC (permalink / raw)
To: Jagmeet Randhawa; +Cc: igt-dev
Hi Jagmeet,
On 3.11.2023 21:47, Jagmeet Randhawa wrote:
> Addressing Christoph Manszewskis comments: Added brackets to remaining else if
> statements, and fixed the XE2 format issue. I ran checkpatch and
> everything seems good, there was trailing white space errors but those I
$ curl -s
https://patchwork.freedesktop.org/api/1.0/series/125979/revisions/1/mbox/
> a.patch
$ ./scripts/checkpatch.pl a.patch
WARNING: Prefer a maximum 75 chars per line (possible unwrapped commit
description?)
#21:
iga64 -p=2 -Wall -Xprint-ldst -Xauto-deps --assemble xe2lpg_gpgpu_kernel.asm
ERROR: space required before the open brace '{'
#99: FILE: lib/gpu_cmds.c:331:
+ if (intel_graphics_ver(devid) >= IP_VER(20, 0)){
WARNING: Block comments should align the * on each line
#101: FILE: lib/gpu_cmds.c:333:
+ /*
+ * Up until now, SURFACEFORMAT_R8_UNROM was used regardless of the
'bpp' value.
ERROR: space required before the open brace '{'
#122: FILE: lib/gpu_cmds.c:354:
+ else if (intel_graphics_ver(devid) >= IP_VER(12, 50)){
ERROR: else should follow close brace '}'
#122: FILE: lib/gpu_cmds.c:354:
+ }
+ else if (intel_graphics_ver(devid) >= IP_VER(12, 50)){
ERROR: space required before the open brace '{'
#127: FILE: lib/gpu_cmds.c:358:
+ else if (intel_graphics_ver(devid) >= IP_VER(9, 0)){
ERROR: else should follow close brace '}'
#127: FILE: lib/gpu_cmds.c:358:
+ }
+ else if (intel_graphics_ver(devid) >= IP_VER(9, 0)){
ERROR: space required before the open brace '{'
#132: FILE: lib/gpu_cmds.c:362:
+ else if (intel_graphics_ver(devid) >= IP_VER(8, 0)){
ERROR: else should follow close brace '}'
#132: FILE: lib/gpu_cmds.c:362:
+ }
+ else if (intel_graphics_ver(devid) >= IP_VER(8, 0)){
ERROR: else should follow close brace '}'
#137: FILE: lib/gpu_cmds.c:366:
+ }
+ else {
WARNING: Missing a blank line after declarations
#150: FILE: lib/gpu_cmds.c:990:
+ uint32_t dword_length = intel_graphics_ver(ibb->devid) >= IP_VER(20, 0);
+ intel_bb_out(ibb, XEHP_STATE_COMPUTE_MODE | dword_length);
ERROR: trailing whitespace
#212: FILE: lib/gpu_cmds.c:1131:
+^I$
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#223:
new file mode 100644
ERROR: code indent should use tabs where possible
#251: FILE: lib/intel_batchbuffer.c:759:
+ fill = xe2lpg_gpgpu_fillfunc;$
WARNING: please, no spaces at the start of a line
#251: FILE: lib/intel_batchbuffer.c:759:
+ fill = xe2lpg_gpgpu_fillfunc;$
Apart from the 'MAINTAINERS' file warning and maybe commit msg line
lenght, all other warnings *and especially errors* are easily fixable
and have to be fixed.
Thanks,
Christoph
> believe are false positives and are inconsistent with the rest of the
> code styling therefore I ignored them
>
> Addresing Kamil Koniecznys comments: I fixed the header, and added
> Dominiks r-b
>
> Jagmeet Randhawa (1):
> lib/gpgpu_fill: Add support for Xe2 platforms
>
> lib/gpgpu_fill.c | 23 +++++++
> lib/gpgpu_fill.h | 6 ++
> lib/gpu_cmds.c | 61 ++++++++++++++++---
> .../shaders/gpgpu/xe2lpg_gpgpu_kernel.asm | 13 ++++
> lib/intel_batchbuffer.c | 4 +-
> 5 files changed, 96 insertions(+), 11 deletions(-)
> create mode 100644 lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH 1/1] lib/gpgpu_fill: Add support for Xe2 platforms
2023-11-03 20:47 ` [igt-dev] [PATCH 1/1] " Jagmeet Randhawa
@ 2023-11-06 12:03 ` Manszewski, Christoph
0 siblings, 0 replies; 7+ messages in thread
From: Manszewski, Christoph @ 2023-11-06 12:03 UTC (permalink / raw)
To: Jagmeet Randhawa; +Cc: igt-dev
Hi Jagmeet,
On 3.11.2023 21:47, Jagmeet Randhawa wrote:
> Add xe2lpg_gpgpu_fillfunc to have gpgpu_fill running on XE2
> On XE2 there are a few changes to gpu command instruction lengths.
>
> There's also no 'Media Block Write' message, thus 'Typed 2D Block
> Store' message has to be used in the shader.
>
> The shader was compiled using the following command:
>
> iga64 -p=2 -Wall -Xprint-ldst -Xauto-deps --assemble xe2lpg_gpgpu_kernel.asm
> | od -A n -v -t x4 |sed -e 's/ / 0x/g' | sed -e 's/^/\t{/' | sed -e
> 's/([0-9]|[a-f]|[A-F]) /\1, /g' | sed -e 's/$/ },/g' | sed -e 's/\t /\t/g'
>
> Signed-off-by: Christoph Manszewski <christoph.manszewski@intel.com>
> Signed-off-by: Jagmeet Randhawa <jagmeet.randhawa@intel.com>
> Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
> ---
> lib/gpgpu_fill.c | 23 +++++++
> lib/gpgpu_fill.h | 6 ++
> lib/gpu_cmds.c | 61 ++++++++++++++++---
> .../shaders/gpgpu/xe2lpg_gpgpu_kernel.asm | 13 ++++
> lib/intel_batchbuffer.c | 4 +-
> 5 files changed, 96 insertions(+), 11 deletions(-)
> create mode 100644 lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
>
> diff --git a/lib/gpgpu_fill.c b/lib/gpgpu_fill.c
> index eed821872..1270c2b22 100644
> --- a/lib/gpgpu_fill.c
> +++ b/lib/gpgpu_fill.c
> @@ -124,6 +124,18 @@ static const uint32_t xehpc_gpgpu_kernel[][4] = {
> { 0x000c0031, 0x00000004, 0x3000500c, 0x00000000 },
> };
>
> +static const uint32_t xe2lpg_gpgpu_kernel[][4] = {
> + { 0x00080061, 0x01050000, 0x00000104, 0x00000000 },
> + { 0x00000069, 0x02058220, 0x02000014, 0x00000004 },
> + { 0x00000061, 0x02150220, 0x00000064, 0x00000000 },
> + { 0x00100061, 0x04054220, 0x00000000, 0x00000000 },
> + { 0x00041a61, 0x04550220, 0x00220205, 0x00000000 },
> + { 0x00000061, 0x04754550, 0x00000000, 0x000f000f },
> + { 0x00101e61, 0x05050220, 0x00000104, 0x00000000 },
> + { 0x00132031, 0x00000000, 0xd00e0494, 0x04000000 },
> + { 0x000c0031, 0x00000004, 0x3000500c, 0x00000000 },
> +};
> +
> /*
> * This sets up the gpgpu pipeline,
> *
> @@ -398,3 +410,14 @@ void xehpc_gpgpu_fillfunc(int i915,
> xehpc_gpgpu_kernel,
> sizeof(xehpc_gpgpu_kernel));
> }
> +
> +void xe2lpg_gpgpu_fillfunc(int i915,
> + struct intel_buf *buf,
> + unsigned int x, unsigned int y,
> + unsigned int width, unsigned int height,
> + uint8_t color)
> +{
> + __xehp_gpgpu_fillfunc(i915, buf, x, y, width, height, color,
> + xe2lpg_gpgpu_kernel,
> + sizeof(xe2lpg_gpgpu_kernel));
> +}
> diff --git a/lib/gpgpu_fill.h b/lib/gpgpu_fill.h
> index f81cd0b53..c3b47c10a 100644
> --- a/lib/gpgpu_fill.h
> +++ b/lib/gpgpu_fill.h
> @@ -75,4 +75,10 @@ xehpc_gpgpu_fillfunc(int i915,
> unsigned int width, unsigned int height,
> uint8_t color);
>
> +void xe2lpg_gpgpu_fillfunc(int i915,
> + struct intel_buf *buf,
> + unsigned int x, unsigned int y,
> + unsigned int width, unsigned int height,
> + uint8_t color);
> +
> #endif /* GPGPU_FILL_H */
> diff --git a/lib/gpu_cmds.c b/lib/gpu_cmds.c
> index f19f93b28..ed608e95a 100644
> --- a/lib/gpu_cmds.c
> +++ b/lib/gpu_cmds.c
> @@ -328,18 +328,45 @@ fill_binding_table(struct intel_bb *ibb, struct intel_buf *buf)
> binding_table = intel_bb_ptr(ibb);
> intel_bb_ptr_add(ibb, 64);
>
> - if (intel_graphics_ver(devid) >= IP_VER(12, 50))
> + if (intel_graphics_ver(devid) >= IP_VER(20, 0)){
Missing space before brace.
> + /*
> + * Up until now, SURFACEFORMAT_R8_UNROM was used regardless of the 'bpp' value.
Wrong alignment.
> + * For bpp 32 this results in a surface that is 4x narrower than expected. However
> + * it worked, because the 'Media Block Read/Write' message assumes the surface width
> + * is always in units of dwords.
> + *
> + * Since Xe2 the Media Block Write message got replaced with 'Typed 2D Block
> + * Load/Store Message' which correctly interprets the surface format.
> + */
> + if (buf->bpp == 32)
> + binding_table[0] = xehp_fill_surface_state(ibb, buf,
> + SURFACEFORMAT_R8G8B8A8_UNORM,
> + 1);
> + else if (buf->bpp == 8)
> + binding_table[0] = xehp_fill_surface_state(ibb, buf,
> + SURFACEFORMAT_R8_UNORM,
> + 1);
> + else
> + igt_assert_f(false,
> + "Surface state for bpp = %u not implemented",
> + buf->bpp);
> + }
> + else if (intel_graphics_ver(devid) >= IP_VER(12, 50)){
Closing braces should be on the same line as 'else' statement.
> binding_table[0] = xehp_fill_surface_state(ibb, buf,
> SURFACEFORMAT_R8_UNORM, 1);
> - else if (intel_graphics_ver(devid) >= IP_VER(9, 0))
> + }
> + else if (intel_graphics_ver(devid) >= IP_VER(9, 0)){
> binding_table[0] = gen9_fill_surface_state(ibb, buf,
> SURFACEFORMAT_R8_UNORM, 1);
> - else if (intel_graphics_ver(devid) >= IP_VER(8, 0))
> + }
> + else if (intel_graphics_ver(devid) >= IP_VER(8, 0)){
> binding_table[0] = gen8_fill_surface_state(ibb, buf,
> SURFACEFORMAT_R8_UNORM, 1);
> - else
> + }
> + else {
> binding_table[0] = gen7_fill_surface_state(ibb, buf,
> SURFACEFORMAT_R8_UNORM, 1);
> + }
>
> return binding_table_offset;
> }
> @@ -959,8 +986,12 @@ xehp_emit_cfe_state(struct intel_bb *ibb, uint32_t threads)
> void
> xehp_emit_state_compute_mode(struct intel_bb *ibb)
> {
> - intel_bb_out(ibb, XEHP_STATE_COMPUTE_MODE);
> + uint32_t dword_length = intel_graphics_ver(ibb->devid) >= IP_VER(20, 0);
> + intel_bb_out(ibb, XEHP_STATE_COMPUTE_MODE | dword_length);
> intel_bb_out(ibb, 0);
> +
> + if (dword_length)
> + intel_bb_out(ibb, 0);
> }
>
> void
> @@ -976,6 +1007,8 @@ xehp_emit_state_binding_table_pool_alloc(struct intel_bb *ibb)
> void
> xehp_emit_state_base_address(struct intel_bb *ibb)
> {
> + uint32_t tmp;
> +
> intel_bb_out(ibb, GEN8_STATE_BASE_ADDRESS | 0x14); //dw0
>
> /* general */
> @@ -983,7 +1016,8 @@ xehp_emit_state_base_address(struct intel_bb *ibb)
> intel_bb_out(ibb, 0);
>
> /* stateless data port */
> - intel_bb_out(ibb, 0 | BASE_ADDRESS_MODIFY); //dw3
> + tmp = intel_graphics_ver(ibb->devid) == IP_VER(20, 0) ? 0 : BASE_ADDRESS_MODIFY;
> + intel_bb_out(ibb, 0 | tmp); //dw3
>
> /* surface */
> intel_bb_emit_reloc(ibb, ibb->handle, I915_GEM_DOMAIN_SAMPLER, //dw4-dw5
> @@ -1008,7 +1042,10 @@ xehp_emit_state_base_address(struct intel_bb *ibb)
> /* dynamic state buffer size */
> intel_bb_out(ibb, 1 << 12 | 1); //dw13
> /* indirect object buffer size */
> - intel_bb_out(ibb, 0xfffff000 | 1); //dw14
> + if (intel_graphics_ver(ibb->devid) == IP_VER(20, 0)) //dw14
> + intel_bb_out(ibb, 0);
> + else
> + intel_bb_out(ibb, 0xfffff000 | 1);
> /* intruction buffer size */
> intel_bb_out(ibb, 1 << 12 | 1); //dw15
>
> @@ -1030,7 +1067,7 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
> struct xehp_interface_descriptor_data *pidd,
> uint8_t color)
> {
> - uint32_t x_dim, y_dim, mask;
> + uint32_t x_dim, y_dim, mask, dword_length;
>
> /*
> * Simply do SIMD16 based dispatch, so every thread uses
> @@ -1052,7 +1089,8 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
> else
> mask = (1 << mask) - 1;
>
> - intel_bb_out(ibb, XEHP_COMPUTE_WALKER | 0x25);
> + dword_length = intel_graphics_ver(ibb->devid) >= IP_VER(20, 0) ? 0x26 : 0x25;
> + intel_bb_out(ibb, XEHP_COMPUTE_WALKER | dword_length);
>
> intel_bb_out(ibb, 0); /* debug object */ //dw1
> intel_bb_out(ibb, 0); /* indirect data length */ //dw2
> @@ -1090,9 +1128,12 @@ xehp_emit_compute_walk(struct intel_bb *ibb,
> intel_bb_out(ibb, 0); //dw15
> intel_bb_out(ibb, 0); //dw16
> intel_bb_out(ibb, 0); //dw17
> +
This line contains non printable characters other than newline.
> + if (intel_graphics_ver(ibb->devid) >= IP_VER(20, 0)) //Xe2:dw18
> + intel_bb_out(ibb, 0);
>
> /* Interface descriptor data */
> - for (int i = 0; i < 8; i++) { //dw18-25
> + for (int i = 0; i < 8; i++) { //dw18-25 (Xe2:dw19-26)
> intel_bb_out(ibb, ((uint32_t *) pidd)[i]);
> }
>
> diff --git a/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm b/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
> new file mode 100644
> index 000000000..e2ecc71f5
> --- /dev/null
> +++ b/lib/i915/shaders/gpgpu/xe2lpg_gpgpu_kernel.asm
> @@ -0,0 +1,13 @@
> +L0:
> + mov (4|M0) r1.0<1>:ub r1.0<0;1,0>:ub // Load r1.0-3 with color byte
> + shl (1|M0) r2.0<1>:ud r0.1<0;1,0>:ud 0x4:ud // Load r2.0-3 with tg id X << 4
> + mov (1|M0) r2.1<1>:ud r0.6<0;1,0>:ud // Load r2.4-7 with tg id Y
> +
> + // payload setup
> + mov (16|M0) r4.0<1>:ud 0x0:ud // Zero out register R4
> + mov (2|M0) r4.5<1>:ud r2.0<2;2,1>:ud // Store X and Y block start (160:191 and 192:223)
> + mov (1|M0) r4.14<1>:w 0xF:w // Store X and Y block size (224:231 and 232:239)
> + mov (16|M0) r5.0<1>:ud r1.0<0;1,0>:ud // Load r5-r6 with color byte
> +
> + send.tgm (16|M0) null r4 null:0 0x0 0x64000007 // Send TypedStore2DBlock to tgm port
> + send.gtwy (8|M0) null r80 null:0 0x0 0x02000000 {EOT}
> diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
> index df82ef5f5..d23c04073 100644
> --- a/lib/intel_batchbuffer.c
> +++ b/lib/intel_batchbuffer.c
> @@ -755,7 +755,9 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid)
> {
> igt_fillfunc_t fill = NULL;
>
> - if (IS_METEORLAKE(devid))
> + if (intel_graphics_ver(devid) >= IP_VER(20, 0))
> + fill = xe2lpg_gpgpu_fillfunc;
This line uses spaces instead of tabs for indentation.
Here I pointed out some of the issues shown by checkpatcht that I asked
you to fix in my previous comment. Please revisit them and fix them.
Christoph
> + else if (IS_METEORLAKE(devid))
> fill = xehp_gpgpu_fillfunc;
> else if (intel_graphics_ver(devid) >= IP_VER(12, 60))
> fill = xehpc_gpgpu_fillfunc;
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-11-06 12:03 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-03 20:47 [igt-dev] [PATCH v3] lib/gpgpu_fill: Add support for Xe2 platforms Jagmeet Randhawa
2023-11-03 20:47 ` [igt-dev] [PATCH 1/1] " Jagmeet Randhawa
2023-11-06 12:03 ` Manszewski, Christoph
2023-11-03 21:56 ` [igt-dev] ✓ CI.xeBAT: success for series starting with [1/1] " Patchwork
2023-11-03 22:01 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-11-04 14:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-11-06 11:55 ` [igt-dev] [PATCH v3] " Manszewski, Christoph
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox