* [PATCH i-g-t 1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range
@ 2024-08-07 6:33 Tim Huang
2024-08-07 6:33 ` [PATCH i-g-t 2/2] lib/amdgpu: add GFX1152 to GFX1150 family Tim Huang
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Tim Huang @ 2024-08-07 6:33 UTC (permalink / raw)
To: igt-dev; +Cc: vitaly.prosyak, alexander.deucher, jie1zhan, Tim Huang
GFX1150 IDs range from 01 to 64 and GFX1151 IDs
range from 192 to 255.
Signed-off-by: Tim Huang <tim.huang@amd.com>
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
---
lib/amdgpu/amdgpu_asic_addr.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/amdgpu/amdgpu_asic_addr.h b/lib/amdgpu/amdgpu_asic_addr.h
index 0ecb0b803..3829b0306 100644
--- a/lib/amdgpu/amdgpu_asic_addr.h
+++ b/lib/amdgpu/amdgpu_asic_addr.h
@@ -107,8 +107,8 @@
#define AMDGPU_GFX1102_RANGE 0x10, 0x20 //# 16 <= x < 32
#define AMDGPU_GFX1103_R1_RANGE 0x01, 0x80 //# 1 <= x < 128
#define AMDGPU_GFX1103_R2_RANGE 0x80, 0xFF //# 128 <= x < max
-#define AMDGPU_GFX1150_RANGE 0x01, 0xc0 //# 01 <= x < c0
-#define AMDGPU_GFX1151_RANGE 0xc1, 0xFF //# c1 <= x < 255
+#define AMDGPU_GFX1150_RANGE 0x01, 0x40 //# 01 <= x < 64
+#define AMDGPU_GFX1151_RANGE 0xc0, 0xFF //# 192 <= x < 255
#define AMDGPU_GFX1200_RANGE 0x01, 0xFF //# 01 <= x < 255
#define AMDGPU_EXPAND_FIX(x) x
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH i-g-t 2/2] lib/amdgpu: add GFX1152 to GFX1150 family 2024-08-07 6:33 [PATCH i-g-t 1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Tim Huang @ 2024-08-07 6:33 ` Tim Huang 2024-08-07 8:51 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Tim Huang @ 2024-08-07 6:33 UTC (permalink / raw) To: igt-dev; +Cc: vitaly.prosyak, alexander.deucher, jie1zhan, Tim Huang Add GFX1152 to the amdgpu supported chip list. Signed-off-by: Tim Huang <tim.huang@amd.com> Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com> --- lib/amdgpu/amd_family.h | 1 + lib/amdgpu/amd_ip_blocks.c | 1 + lib/amdgpu/amdgpu_asic_addr.h | 2 ++ 3 files changed, 4 insertions(+) diff --git a/lib/amdgpu/amd_family.h b/lib/amdgpu/amd_family.h index 4a5731dbf..54b0ae1d8 100644 --- a/lib/amdgpu/amd_family.h +++ b/lib/amdgpu/amd_family.h @@ -106,6 +106,7 @@ enum radeon_family { CHIP_GFX1103_R2, CHIP_GFX1150, CHIP_GFX1151, + CHIP_GFX1152, CHIP_GFX1200, CHIP_LAST, }; diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c index f675b97dd..131251615 100644 --- a/lib/amdgpu/amd_ip_blocks.c +++ b/lib/amdgpu/amd_ip_blocks.c @@ -735,6 +735,7 @@ int setup_amdgpu_ip_blocks(uint32_t major, uint32_t minor, struct amdgpu_gpu_inf case FAMILY_GFX1150: identify_chip(GFX1150); identify_chip(GFX1151); + identify_chip(GFX1152); break; case FAMILY_GFX1200: identify_chip(GFX1200); diff --git a/lib/amdgpu/amdgpu_asic_addr.h b/lib/amdgpu/amdgpu_asic_addr.h index 3829b0306..d5579ce4c 100644 --- a/lib/amdgpu/amdgpu_asic_addr.h +++ b/lib/amdgpu/amdgpu_asic_addr.h @@ -109,6 +109,7 @@ #define AMDGPU_GFX1103_R2_RANGE 0x80, 0xFF //# 128 <= x < max #define AMDGPU_GFX1150_RANGE 0x01, 0x40 //# 01 <= x < 64 #define AMDGPU_GFX1151_RANGE 0xc0, 0xFF //# 192 <= x < 255 +#define AMDGPU_GFX1152_RANGE 0x40, 0x50 //# 64 <= x < 80 #define AMDGPU_GFX1200_RANGE 0x01, 0xFF //# 01 <= x < 255 #define AMDGPU_EXPAND_FIX(x) x @@ -175,6 +176,7 @@ #define ASICREV_IS_GFX1103_R2(r) ASICREV_IS(r, GFX1103_R2) #define ASICREV_IS_GFX1150(r) ASICREV_IS(r, GFX1150) #define ASICREV_IS_GFX1151(r) ASICREV_IS(r, GFX1151) +#define ASICREV_IS_GFX1152(r) ASICREV_IS(r, GFX1152) #define ASICREV_IS_GFX1200(r) ASICREV_IS(r, GFX1200) #endif // _AMDGPU_ASIC_ADDR_H -- 2.43.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range 2024-08-07 6:33 [PATCH i-g-t 1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Tim Huang 2024-08-07 6:33 ` [PATCH i-g-t 2/2] lib/amdgpu: add GFX1152 to GFX1150 family Tim Huang @ 2024-08-07 8:51 ` Patchwork 2024-08-07 8:52 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-08-07 9:52 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-08-07 8:51 UTC (permalink / raw) To: Tim Huang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7411 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range URL : https://patchwork.freedesktop.org/series/136964/ State : success == Summary == CI Bug Log - changes from XEIGT_7960_BAT -> XEIGTPW_11538_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 8) ------------------------------ Additional (1): bat-pvc-2 Known issues ------------ Here are the changes found in XEIGTPW_11538_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][1] ([i915#6077]) +30 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#1024] / [Intel XE#782]) +5 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_dsc@dsc-basic: - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#1024] / [Intel XE#784]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#947]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#540]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@basic: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#1024] / [Intel XE#783]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#829]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#780]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_prop_blob@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#1024]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#1932]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_evict@evict-beng-small-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][11] ([Intel XE#482]) +3 other tests dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_evict@evict-beng-small-cm.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][12] ([Intel XE#1000]) +3 other tests fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_gt_freq@freq_fixed_idle: - bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#1021]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_gt_freq@freq_fixed_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#255]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][15] ([Intel XE#532]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-pvc-2: NOTRUN -> [SKIP][16] ([Intel XE#2229]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_pat@pat-index-xe2: - bat-pvc-2: NOTRUN -> [SKIP][17] ([Intel XE#977]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc@render: - bat-pvc-2: NOTRUN -> [SKIP][18] ([Intel XE#976]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html * igt@xe_pat@pat-index-xelpg: - bat-pvc-2: NOTRUN -> [SKIP][19] ([Intel XE#979]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][20] ([Intel XE#531]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1932 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947 [Intel XE#976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/976 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_7960 -> IGTPW_11538 * Linux: xe-1725-0238f4a3deb9bee747eb42098cdcfe8e4257f5cc -> xe-1728-95d4e06f97ae907e6eed6b15ac5098a43a98f4b0 IGTPW_11538: be7b5bac0cd1b975e81da1ab79538b07e80a73de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7960: 7960 xe-1725-0238f4a3deb9bee747eb42098cdcfe8e4257f5cc: 0238f4a3deb9bee747eb42098cdcfe8e4257f5cc xe-1728-95d4e06f97ae907e6eed6b15ac5098a43a98f4b0: 95d4e06f97ae907e6eed6b15ac5098a43a98f4b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/index.html [-- Attachment #2: Type: text/html, Size: 8723 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range 2024-08-07 6:33 [PATCH i-g-t 1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Tim Huang 2024-08-07 6:33 ` [PATCH i-g-t 2/2] lib/amdgpu: add GFX1152 to GFX1150 family Tim Huang 2024-08-07 8:51 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Patchwork @ 2024-08-07 8:52 ` Patchwork 2024-08-07 9:52 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-08-07 8:52 UTC (permalink / raw) To: Tim Huang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3115 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range URL : https://patchwork.freedesktop.org/series/136964/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15193 -> IGTPW_11538 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11538 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11538, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11538/index.html Participating hosts (39 -> 38) ------------------------------ Additional (1): fi-bsw-n3050 Missing (2): fi-snb-2520m fi-elk-e7500 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11538: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@module-reload: - bat-arlh-2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15193/bat-arlh-2/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11538/bat-arlh-2/igt@i915_pm_rpm@module-reload.html Known issues ------------ Here are the changes found in IGTPW_11538 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][3] +19 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11538/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@i915_selftest@live@evict: - bat-atsm-1: [PASS][4] -> [INCOMPLETE][5] ([i915#11775]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15193/bat-atsm-1/igt@i915_selftest@live@evict.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11538/bat-atsm-1/igt@i915_selftest@live@evict.html * igt@i915_selftest@live@hangcheck: - bat-arls-2: [PASS][6] -> [DMESG-WARN][7] ([i915#11349] / [i915#11378]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15193/bat-arls-2/igt@i915_selftest@live@hangcheck.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11538/bat-arls-2/igt@i915_selftest@live@hangcheck.html [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378 [i915#11775]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11775 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7960 -> IGTPW_11538 CI-20190529: 20190529 CI_DRM_15193: 95d4e06f97ae907e6eed6b15ac5098a43a98f4b0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11538: be7b5bac0cd1b975e81da1ab79538b07e80a73de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7960: 7960 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11538/index.html [-- Attachment #2: Type: text/html, Size: 3812 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range 2024-08-07 6:33 [PATCH i-g-t 1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Tim Huang ` (2 preceding siblings ...) 2024-08-07 8:52 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-08-07 9:52 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-08-07 9:52 UTC (permalink / raw) To: Tim Huang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 62694 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range URL : https://patchwork.freedesktop.org/series/136964/ State : failure == Summary == CI Bug Log - changes from XEIGT_7960_full -> XEIGTPW_11538_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11538_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11538_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11538_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1: - shard-lnl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-c-edp-1.html * igt@kms_vblank@ts-continuation-suspend: - shard-lnl: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-5/igt@kms_vblank@ts-continuation-suspend.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-8/igt@kms_vblank@ts-continuation-suspend.html #### Warnings #### * igt@kms_content_protection@atomic: - shard-dg2-set2: [FAIL][5] ([Intel XE#1178]) -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@kms_content_protection@atomic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_content_protection@atomic.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_content_protection@atomic: - {shard-bmg}: [FAIL][7] ([Intel XE#1178]) -> [INCOMPLETE][8] +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-5/igt@kms_content_protection@atomic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-3/igt@kms_content_protection@atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - {shard-bmg}: [PASS][9] -> [DMESG-WARN][10] +4 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - {shard-bmg}: [FAIL][11] ([Intel XE#2141]) -> [FAIL][12] +2 other tests fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_pm_rpm@i2c: - {shard-bmg}: [PASS][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-1/igt@kms_pm_rpm@i2c.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-6/igt@kms_pm_rpm@i2c.html * igt@xe_evict@evict-beng-mixed-threads-large: - {shard-bmg}: [PASS][15] -> [INCOMPLETE][16] +2 other tests incomplete [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-8/igt@xe_evict@evict-beng-mixed-threads-large.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-8/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-cm-threads-large: - {shard-bmg}: NOTRUN -> [TIMEOUT][17] +1 other test timeout [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-1/igt@xe_evict@evict-cm-threads-large.html Known issues ------------ Here are the changes found in XEIGTPW_11538_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1: - shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#1426]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-b-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#1659]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1407]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1201] / [Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_frames@dp-crc-single: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#373]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-8/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#455]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@kms_cursor_crc@cursor-random-32x32.html - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1424]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#323]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-set2: [PASS][32] -> [INCOMPLETE][33] ([Intel XE#1195]) +1 other test incomplete [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg2-set2: [PASS][34] -> [FAIL][35] ([Intel XE#886]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@kms_flip@plain-flip-ts-check-interruptible.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#651]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-lnl: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#2050]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#656]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1158]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#653]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3: - shard-lnl: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#324]) +1 other test dmesg-warn [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#498]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-edp-1.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#870]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#1430]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@i2c: - shard-dg2-set2: [PASS][49] -> [FAIL][50] ([Intel XE#2389]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@kms_pm_rpm@i2c.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@kms_pm_rpm@i2c.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#1489]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1128]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#929]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#362]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#771] / [Intel XE#899]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4: - shard-dg2-set2: [PASS][57] -> [FAIL][58] ([Intel XE#899]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-4.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#2028]) +1 other test fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-1/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#2443]) +1 other test fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-7/igt@kms_vrr@flip-basic.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-6/igt@kms_vrr@flip-basic.html * igt@xe_evict@evict-beng-cm-threads-large: - shard-dg2-set2: [PASS][63] -> [INCOMPLETE][64] ([Intel XE#1473] / [Intel XE#392]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_evict@evict-beng-cm-threads-large.html * igt@xe_exec_basic@multigpu-once-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1392]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-2/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#1069]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-3/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#2229]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#979]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@s4-multiple-execs: - shard-lnl: [PASS][70] -> [ABORT][71] ([Intel XE#1358] / [Intel XE#1794]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-7/igt@xe_pm@s4-multiple-execs.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [PASS][72] -> [DMESG-WARN][73] ([Intel XE#2019] / [Intel XE#2280]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-invalid-query: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#944]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#944]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][76] ([Intel XE#1760]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-lnl: [FAIL][77] ([Intel XE#827]) -> [PASS][78] +1 other test pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-6/igt@kms_async_flips@alternate-sync-async-flip.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][79] ([Intel XE#911]) -> [PASS][80] +3 other tests pass [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: [FAIL][81] ([Intel XE#1426]) -> [PASS][82] +1 other test pass [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][83] ([Intel XE#1195]) -> [PASS][84] +1 other test pass [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-4.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_atomic_transition@plane-all-transition-nonblocking@pipe-b-dp-4.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-lnl: [FAIL][85] ([Intel XE#1659]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3: - {shard-bmg}: [FAIL][87] ([Intel XE#2436]) -> [PASS][88] +1 other test pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-hdmi-a-3.html * igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3: - {shard-bmg}: [DMESG-WARN][89] -> [PASS][90] +8 other tests pass [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate@bc-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [INCOMPLETE][91] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_flip@flip-vs-suspend@d-dp4.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_hdr@invalid-hdr: - {shard-bmg}: [SKIP][93] ([Intel XE#1503]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-1/igt@kms_hdr@invalid-hdr.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-3/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [INCOMPLETE][95] -> [PASS][96] +1 other test pass [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_plane_cursor@viewport.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][97] ([Intel XE#361]) -> [PASS][98] +1 other test pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_backlight@basic-brightness: - shard-lnl: [SKIP][99] ([Intel XE#870]) -> [PASS][100] +1 other test pass [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-4/igt@kms_pm_backlight@basic-brightness.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [FAIL][101] ([Intel XE#899]) -> [PASS][102] +2 other tests pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html * igt@xe_evict@evict-cm-threads-large: - shard-dg2-set2: [INCOMPLETE][103] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@xe_evict@evict-cm-threads-large.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_evict@evict-cm-threads-large.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [TIMEOUT][105] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@xe_evict@evict-threads-large.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@xe_evict@evict-threads-large.html * igt@xe_exec_compute_mode@once-rebind: - shard-dg2-set2: [FAIL][107] ([Intel XE#1069]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@xe_exec_compute_mode@once-rebind.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-436/igt@xe_exec_compute_mode@once-rebind.html * igt@xe_exec_reset@parallel-gt-reset: - {shard-bmg}: [TIMEOUT][109] -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-3/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_live_ktest@xe_dma_buf: - shard-dg2-set2: [SKIP][111] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-466/igt@xe_live_ktest@xe_dma_buf.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate: - shard-dg2-set2: [SKIP][113] ([Intel XE#1192]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@xe_live_ktest@xe_migrate.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@xe_live_ktest@xe_migrate.html * igt@xe_oa@mmio-triggered-reports: - {shard-bmg}: [FAIL][115] -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-bmg-2/igt@xe_oa@mmio-triggered-reports.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-bmg-2/igt@xe_oa@mmio-triggered-reports.html - shard-lnl: [FAIL][117] ([Intel XE#2249]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-8/igt@xe_oa@mmio-triggered-reports.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: [DMESG-WARN][119] ([Intel XE#2019]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@xe_pm@s4-basic-exec.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [ABORT][121] ([Intel XE#1794]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-5/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][123] ([Intel XE#958]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][125] ([Intel XE#1201] / [Intel XE#623]) -> [SKIP][126] ([Intel XE#623]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg2-set2: [SKIP][127] ([Intel XE#316]) -> [SKIP][128] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_big_fb@linear-32bpp-rotate-90.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][130] ([Intel XE#316]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][131] ([Intel XE#610]) -> [SKIP][132] ([Intel XE#1201] / [Intel XE#610]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: [SKIP][133] ([Intel XE#1124]) -> [SKIP][134] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][135] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][136] ([Intel XE#1124]) +8 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][138] ([Intel XE#346]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-466/igt@kms_big_joiner@basic.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_big_joiner@basic.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][139] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][140] ([Intel XE#2191]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][142] ([Intel XE#367]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: [SKIP][143] ([Intel XE#367]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][145] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][147] ([Intel XE#1252]) -> [SKIP][148] ([Intel XE#1201] / [Intel XE#1252]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4: - shard-dg2-set2: [SKIP][149] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][150] ([Intel XE#787]) +69 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][152] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [SKIP][153] ([Intel XE#787]) -> [SKIP][154] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][155] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][156] ([Intel XE#1252]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: [SKIP][157] ([Intel XE#306]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#306]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][160] ([Intel XE#373]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][161] ([Intel XE#373]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][163] ([Intel XE#308]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#308]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][166] ([Intel XE#308]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [SKIP][167] ([Intel XE#323]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#323]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][169] ([Intel XE#455]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][171] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][172] ([Intel XE#455]) +15 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][173] ([Intel XE#701]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#701]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_feature_discovery@chamelium.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][175] ([Intel XE#1195] / [Intel XE#1551] / [Intel XE#2049]) -> [DMESG-WARN][176] ([Intel XE#1551]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][177] ([Intel XE#651]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#651]) +23 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][179] ([Intel XE#658]) -> [SKIP][180] ([Intel XE#1201] / [Intel XE#658]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][182] ([Intel XE#651]) +25 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][183] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][184] ([Intel XE#653]) +27 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][185] ([Intel XE#653]) -> [SKIP][186] ([Intel XE#1201] / [Intel XE#653]) +24 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][187] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][188] ([Intel XE#455] / [Intel XE#498]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6: - shard-dg2-set2: [SKIP][189] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][190] ([Intel XE#498]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][191] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][192] ([Intel XE#2318]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][193] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][194] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-6.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-6.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][196] ([Intel XE#870]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][197] ([Intel XE#1122]) -> [SKIP][198] ([Intel XE#1122] / [Intel XE#1201]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][199] ([Intel XE#1489]) -> [SKIP][200] ([Intel XE#1201] / [Intel XE#1489]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][201] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][202] ([Intel XE#1489]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][203] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][204] ([Intel XE#1122]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][206] ([Intel XE#929]) +6 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][207] ([Intel XE#929]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_psr@psr2-sprite-plane-move.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_psr@psr2-sprite-plane-move.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][209] ([Intel XE#327]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#327]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_rotation_crc@primary-rotation-90.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][211] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][212] ([Intel XE#1127]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][214] ([Intel XE#327]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-270.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][215] ([Intel XE#1729]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#362]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][217] ([Intel XE#2168]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#2168]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@kms_vrr@cmrr.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@kms_vrr@cmrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][219] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][220] ([Intel XE#756]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][221] ([Intel XE#1123]) -> [SKIP][222] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: [SKIP][223] ([Intel XE#1123] / [Intel XE#1201]) -> [SKIP][224] ([Intel XE#1123]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfd.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][225] ([Intel XE#1126]) -> [SKIP][226] ([Intel XE#1126] / [Intel XE#1201]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][227] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][228] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [INCOMPLETE][229] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][230] ([Intel XE#1195] / [Intel XE#1473]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][232] ([Intel XE#288]) +19 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@xe_exec_fault_mode@once-rebind-imm.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: [SKIP][233] ([Intel XE#288]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#288]) +20 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][235] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][236] ([Intel XE#2360]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][237] ([Intel XE#255]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#255]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@xe_huc_copy@huc_copy.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-436/igt@xe_huc_copy@huc_copy.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: [SKIP][239] ([Intel XE#1201] / [Intel XE#2207]) -> [SKIP][240] ([Intel XE#2207]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@xe_oa@non-privileged-access-vaddr.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][241] ([Intel XE#2207]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#2207]) +5 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][243] ([Intel XE#1201] / [Intel XE#1337]) -> [SKIP][244] ([Intel XE#1337]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][245] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) -> [SKIP][246] ([Intel XE#2284] / [Intel XE#366]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][247] ([Intel XE#1551] / [Intel XE#569]) -> [INCOMPLETE][248] ([Intel XE#1195] / [Intel XE#1358] / [Intel XE#1551] / [Intel XE#569]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@xe_pm@s3-basic-exec.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-436/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#579]) -> [SKIP][250] ([Intel XE#579]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-435/igt@xe_pm@vram-d3cold-threshold.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: [SKIP][251] ([Intel XE#944]) -> [SKIP][252] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-432/igt@xe_query@multigpu-query-mem-usage.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-433/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][253] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][254] ([Intel XE#944]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7960/shard-dg2-436/igt@xe_query@multigpu-query-oa-units.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019 [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2357]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2357 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2382 [Intel XE#2389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2389 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2429 [Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7960 -> IGTPW_11538 * Linux: xe-1725-0238f4a3deb9bee747eb42098cdcfe8e4257f5cc -> xe-1728-95d4e06f97ae907e6eed6b15ac5098a43a98f4b0 IGTPW_11538: be7b5bac0cd1b975e81da1ab79538b07e80a73de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7960: 7960 xe-1725-0238f4a3deb9bee747eb42098cdcfe8e4257f5cc: 0238f4a3deb9bee747eb42098cdcfe8e4257f5cc xe-1728-95d4e06f97ae907e6eed6b15ac5098a43a98f4b0: 95d4e06f97ae907e6eed6b15ac5098a43a98f4b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11538/index.html [-- Attachment #2: Type: text/html, Size: 79850 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-08-07 9:52 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-08-07 6:33 [PATCH i-g-t 1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Tim Huang 2024-08-07 6:33 ` [PATCH i-g-t 2/2] lib/amdgpu: add GFX1152 to GFX1150 family Tim Huang 2024-08-07 8:51 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] lib/amdgpu: correct the GFX1150 and GFX1151 IDs range Patchwork 2024-08-07 8:52 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-08-07 9:52 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox