* [PATCH] tests/unigraf: Hoist static DP link rate bounds and purge eDP rate
@ 2026-08-13 18:29 Mark Yacoub
2026-08-13 21:41 ` ✓ i915.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Mark Yacoub @ 2026-08-13 18:29 UTC (permalink / raw)
To: igt-dev; +Cc: Louis Chauvet, Mark Yacoub
Currently, the link rate subtest dynamically iterates across
UNIGRAF_RATE_6_75_GHZ during its testing sweep. However, 6.75 Gbps is
structurally an exclusive eDP link rate parameter that physical external
DP sink testbeds do not natively map to. Iterating over it on external
chassis outputs reliably wastes execution cycles only to inevitably fail
a hardware constraint validation.
Additionally, the existing igt_require(max_supported_rate... validation
is currently executed at the very end of the loop, specifically after
the testbed has already triggered an expensive HPD pulse, retrained the
physical link, and rebuilt the IGT output wrapper.
This patch cleans out the test execution array, and physically hoists
the igt_dp_get_max_supported_rate() capability check completely outside
the active dynamic initialization context to serve strictly as a
zero-cost pre-flight evaluator. The subtest now cleanly skips
hardware-unsupported rate ceilings in 0.00s natively, significantly
shrinking the cumulative latency footprint of an automated CI pipeline.
---
tests/unigraf/unigraf_lt.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/tests/unigraf/unigraf_lt.c b/tests/unigraf/unigraf_lt.c
index 81e6ecd3f..c82607e14 100644
--- a/tests/unigraf/unigraf_lt.c
+++ b/tests/unigraf/unigraf_lt.c
@@ -127,13 +127,20 @@ int igt_main()
int rates[] = {UNIGRAF_RATE_1_62_GHZ,
UNIGRAF_RATE_2_7_GHZ,
UNIGRAF_RATE_5_4_GHZ,
- UNIGRAF_RATE_6_75_GHZ,
UNIGRAF_RATE_8_10_GHZ};
int current_rate;
- int max_supported_rate;
+ int max_supported_rate = 0;
+
+ output = igt_output_from_connector(&display, connector);
+ if (output)
+ max_supported_rate = igt_dp_get_max_supported_rate(drm_fd, output);
for (i = 0; i < ARRAY_SIZE(rates); i++) {
igt_dynamic_f("unigraf-dp-link-rate-%d", rates[i]) {
+ igt_require_f(max_supported_rate >= unigraf_rate_to_kbs(rates[i]),
+ "Host port physically caps below test rate bounds (Host: %d, Test: %d)\n",
+ max_supported_rate, unigraf_rate_to_kbs(rates[i]));
+
unigraf_reset();
unigraf_set_max_link_rate(rates[i]);
unigraf_hpd_pulse(1000000);
@@ -147,8 +154,6 @@ int igt_main()
init_output_and_display_pattern(&display, output);
current_rate = igt_dp_get_max_link_rate(drm_fd, output);
- max_supported_rate = igt_dp_get_max_supported_rate(drm_fd, output);
- igt_require(max_supported_rate >= unigraf_rate_to_kbs(rates[i]));
igt_assert_eq(current_rate, unigraf_rate_to_kbs(rates[i]));
}
}
--
2.55.0.691.gc56d675ccc-goog
^ permalink raw reply related [flat|nested] 4+ messages in thread
* ✓ i915.CI.BAT: success for tests/unigraf: Hoist static DP link rate bounds and purge eDP rate
2026-08-13 18:29 [PATCH] tests/unigraf: Hoist static DP link rate bounds and purge eDP rate Mark Yacoub
@ 2026-08-13 21:41 ` Patchwork
2026-08-13 22:01 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-14 1:59 ` ✓ Xe.CI.FULL: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-08-13 21:41 UTC (permalink / raw)
To: Mark Yacoub; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2144 bytes --]
== Series Details ==
Series: tests/unigraf: Hoist static DP link rate bounds and purge eDP rate
URL : https://patchwork.freedesktop.org/series/172172/
State : success
== Summary ==
CI Bug Log - changes from IGT_9055 -> IGTPW_15680
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15680/index.html
Participating hosts (37 -> 35)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15680 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_selftest@live:
- fi-tgl-1115g4: [DMESG-FAIL][1] ([i915#14808]) -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9055/fi-tgl-1115g4/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15680/fi-tgl-1115g4/igt@i915_selftest@live.html
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [DMESG-WARN][3] ([i915#13400]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9055/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15680/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9055 -> IGTPW_15680
* Linux: CI_DRM_18994 -> CI_DRM_18995
CI-20190529: 20190529
CI_DRM_18994: 12a74df2314c42325731297e95b9aafd9329a20d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18995: 1f159dc3afe658eaaea3c77d3018705de6b1a31e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15680: 90c934482f7c0c15faa078891b555f25fce835e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9055: 8484e14a094150b500aeeb9bfb0db2ee0de862ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15680/index.html
[-- Attachment #2: Type: text/html, Size: 2781 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✓ Xe.CI.BAT: success for tests/unigraf: Hoist static DP link rate bounds and purge eDP rate
2026-08-13 18:29 [PATCH] tests/unigraf: Hoist static DP link rate bounds and purge eDP rate Mark Yacoub
2026-08-13 21:41 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-08-13 22:01 ` Patchwork
2026-08-14 1:59 ` ✓ Xe.CI.FULL: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-08-13 22:01 UTC (permalink / raw)
To: Mark Yacoub; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5118 bytes --]
== Series Details ==
Series: tests/unigraf: Hoist static DP link rate bounds and purge eDP rate
URL : https://patchwork.freedesktop.org/series/172172/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9055_BAT -> XEIGTPW_15680_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_15680_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
Build changes
-------------
* IGT: IGT_9055 -> IGTPW_15680
* Linux: xe-5593-12a74df2314c42325731297e95b9aafd9329a20d -> xe-5594-1f159dc3afe658eaaea3c77d3018705de6b1a31e
IGTPW_15680: 90c934482f7c0c15faa078891b555f25fce835e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9055: 8484e14a094150b500aeeb9bfb0db2ee0de862ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5593-12a74df2314c42325731297e95b9aafd9329a20d: 12a74df2314c42325731297e95b9aafd9329a20d
xe-5594-1f159dc3afe658eaaea3c77d3018705de6b1a31e: 1f159dc3afe658eaaea3c77d3018705de6b1a31e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/index.html
[-- Attachment #2: Type: text/html, Size: 6041 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✓ Xe.CI.FULL: success for tests/unigraf: Hoist static DP link rate bounds and purge eDP rate
2026-08-13 18:29 [PATCH] tests/unigraf: Hoist static DP link rate bounds and purge eDP rate Mark Yacoub
2026-08-13 21:41 ` ✓ i915.CI.BAT: success for " Patchwork
2026-08-13 22:01 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-08-14 1:59 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-08-14 1:59 UTC (permalink / raw)
To: Mark Yacoub; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 21953 bytes --]
== Series Details ==
Series: tests/unigraf: Hoist static DP link rate bounds and purge eDP rate
URL : https://patchwork.freedesktop.org/series/172172/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9055_FULL -> XEIGTPW_15680_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15680_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#8583])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#3718] / [Intel XE#6078])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#6078])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-dp-2.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-10/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-2/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_bw@linear-tiling-2-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-10/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7358])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#4354] / [Intel XE#5870])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#8265])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4422] / [Intel XE#7442])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#3321]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][20] -> [FAIL][21] ([Intel XE#5408] / [Intel XE#6266]) +1 other test fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#301])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7351])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7179]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4141]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2352] / [Intel XE#7399])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2311]) +19 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2313]) +20 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7308])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#1503])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4298] / [Intel XE#5873])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7283]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1489]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2413])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_sharpness_filter@filter-dpms:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6503])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@kms_sharpness_filter@filter-dpms.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#8374]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8364]) +7 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd.html
* igt@xe_exec_reset@cm-multi-queue-close-execqueues:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8369])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-4/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#8378]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6964]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-2/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4733] / [Intel XE#7417])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][51] ([Intel XE#5545])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_atomic@crtc-invalid-params-fence:
- shard-bmg: [SKIP][52] ([Intel XE#8589]) -> [PASS][53] +5 other tests pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-5/igt@kms_atomic@crtc-invalid-params-fence.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@kms_atomic@crtc-invalid-params-fence.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-bmg: [DMESG-FAIL][54] ([Intel XE#7774]) -> [PASS][55] +1 other test pass
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-9/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][56] ([Intel XE#301]) -> [PASS][57] +1 other test pass
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][58] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][59] +1 other test pass
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][60] ([Intel XE#8399]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][62] ([Intel XE#6569]) -> [PASS][63] +1 other test pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][64] ([Intel XE#8589]) -> [SKIP][65] ([Intel XE#2313])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][66] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][67] ([Intel XE#2426] / [Intel XE#5848])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_exec_multi_queue@many-queues-priority:
- shard-bmg: [SKIP][68] ([Intel XE#8589]) -> [SKIP][69] ([Intel XE#8364])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9055/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-priority.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-priority.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#8583]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8583
[Intel XE#8589]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8589
Build changes
-------------
* IGT: IGT_9055 -> IGTPW_15680
* Linux: xe-5593-12a74df2314c42325731297e95b9aafd9329a20d -> xe-5594-1f159dc3afe658eaaea3c77d3018705de6b1a31e
IGTPW_15680: 90c934482f7c0c15faa078891b555f25fce835e7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9055: 8484e14a094150b500aeeb9bfb0db2ee0de862ea @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5593-12a74df2314c42325731297e95b9aafd9329a20d: 12a74df2314c42325731297e95b9aafd9329a20d
xe-5594-1f159dc3afe658eaaea3c77d3018705de6b1a31e: 1f159dc3afe658eaaea3c77d3018705de6b1a31e
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15680/index.html
[-- Attachment #2: Type: text/html, Size: 24358 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-14 2:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-13 18:29 [PATCH] tests/unigraf: Hoist static DP link rate bounds and purge eDP rate Mark Yacoub
2026-08-13 21:41 ` ✓ i915.CI.BAT: success for " Patchwork
2026-08-13 22:01 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-14 1:59 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox