* [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery
@ 2026-06-13 19:59 Swati Sharma
2026-06-13 20:40 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Swati Sharma @ 2026-06-13 19:59 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Add display feature discovery subtests for HDR, VRR and DSC.
HDR requires:
- IGT_CONNECTOR_MAX_BPC with max bpc >= 10
- IGT_CONNECTOR_HDR_OUTPUT_METADATA
- EDID HDR capability via igt_is_panel_hdr()
VRR checks connector vrr_capable support.
DSC checks sink support via igt_is_dsc_supported_by_sink().
Assisted-by: GitHub Copilot:Claude Opus 4.6
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_feature_discovery.c | 75 +++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)
diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c
index 28ec89c55..07a0c5e16 100644
--- a/tests/kms_feature_discovery.c
+++ b/tests/kms_feature_discovery.c
@@ -36,6 +36,7 @@
#ifdef HAVE_CHAMELIUM
#include "igt_chamelium.h"
#endif
+#include "igt_hdr.h"
#include "igt_kms.h"
#include "igt_psr.h"
#include "igt_sysfs.h"
@@ -63,6 +64,18 @@
* SUBTEST: dp-mst
* Description: Make sure that we have DP-MST configuration.
*
+ * SUBTEST: hdr
+ * Description: Make sure that we have at least one HDR-capable panel.
+ * Mega feature: HDR
+ *
+ * SUBTEST: vrr
+ * Description: Make sure that we have at least one VRR-capable panel.
+ * Mega feature: VRR
+ *
+ * SUBTEST: dsc
+ * Description: Make sure that we have at least one DSC-capable sink.
+ * Mega feature: DSC
+ *
* arg[1].values: 1, 2, 3, 4
*/
@@ -174,5 +187,67 @@ int igt_main() {
}
igt_require_f(ret == 0, "No DP-MST configuration found.\n");
}
+
+ igt_describe("Make sure that we have at least one HDR-capable panel.");
+ igt_subtest("hdr") {
+ igt_output_t *output;
+ bool found = false;
+
+ for_each_connected_output(&display, output) {
+ if (!igt_output_has_prop(output, IGT_CONNECTOR_MAX_BPC))
+ continue;
+
+ if (igt_get_output_max_bpc(output) < 10)
+ continue;
+
+ if (!igt_output_has_prop(output,
+ IGT_CONNECTOR_HDR_OUTPUT_METADATA))
+ continue;
+
+ if (!igt_is_panel_hdr(fd, output))
+ continue;
+
+ found = true;
+ break;
+ }
+
+ igt_require_f(found,
+ "No HDR-capable panel found with max bpc, HDR metadata, and EDID HDR support.\n");
+ }
+
+ igt_describe("Make sure that we have at least one VRR-capable panel.");
+ igt_subtest("vrr") {
+ igt_output_t *output;
+ bool found = false;
+
+ for_each_connected_output(&display, output) {
+ if (!igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE))
+ continue;
+
+ if (!igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE))
+ continue;
+
+ found = true;
+ break;
+ }
+
+ igt_require_f(found, "No VRR-capable panel found.\n");
+ }
+
+ igt_describe("Make sure that we have at least one DSC-capable sink.");
+ igt_subtest("dsc") {
+ igt_output_t *output;
+ bool found = false;
+
+ for_each_connected_output(&display, output) {
+ if (!igt_is_dsc_supported_by_sink(fd, output->name))
+ continue;
+
+ found = true;
+ break;
+ }
+
+ igt_require_f(found, "No DSC-capable sink found.\n");
+ }
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ Xe.CI.BAT: success for tests/kms_feature_discovery: add HDR, VRR and DSC discovery 2026-06-13 19:59 [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery Swati Sharma @ 2026-06-13 20:40 ` Patchwork 2026-06-13 20:55 ` ✗ i915.CI.BAT: failure " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-06-13 20:40 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 994 bytes --] == Series Details == Series: tests/kms_feature_discovery: add HDR, VRR and DSC discovery URL : https://patchwork.freedesktop.org/series/168477/ State : success == Summary == CI Bug Log - changes from XEIGT_8962_BAT -> XEIGTPW_15361_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8962 -> IGTPW_15361 * Linux: xe-5248-536f4e1338749a805ec4a7b82b1444dae2c6fe4d -> xe-5253-5fc0f82c971ea3b4e1c58602c0be573a802a8670 IGTPW_15361: 15361 IGT_8962: 8962 xe-5248-536f4e1338749a805ec4a7b82b1444dae2c6fe4d: 536f4e1338749a805ec4a7b82b1444dae2c6fe4d xe-5253-5fc0f82c971ea3b4e1c58602c0be573a802a8670: 5fc0f82c971ea3b4e1c58602c0be573a802a8670 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/index.html [-- Attachment #2: Type: text/html, Size: 1553 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for tests/kms_feature_discovery: add HDR, VRR and DSC discovery 2026-06-13 19:59 [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery Swati Sharma 2026-06-13 20:40 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-06-13 20:55 ` Patchwork 2026-06-13 21:47 ` ✗ Xe.CI.FULL: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-06-13 20:55 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1851 bytes --] == Series Details == Series: tests/kms_feature_discovery: add HDR, VRR and DSC discovery URL : https://patchwork.freedesktop.org/series/168477/ State : failure == Summary == CI Bug Log - changes from IGT_8962 -> IGTPW_15361 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15361 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15361, 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_15361/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15361: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-arlh-3: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8962/bat-arlh-3/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15361/bat-arlh-3/igt@i915_selftest@live.html Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8962 -> IGTPW_15361 * Linux: CI_DRM_18670 -> CI_DRM_18675 CI-20190529: 20190529 CI_DRM_18670: 536f4e1338749a805ec4a7b82b1444dae2c6fe4d @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18675: 5fc0f82c971ea3b4e1c58602c0be573a802a8670 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15361: 15361 IGT_8962: 8962 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15361/index.html [-- Attachment #2: Type: text/html, Size: 2468 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_feature_discovery: add HDR, VRR and DSC discovery 2026-06-13 19:59 [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery Swati Sharma 2026-06-13 20:40 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-06-13 20:55 ` ✗ i915.CI.BAT: failure " Patchwork @ 2026-06-13 21:47 ` Patchwork 2026-06-15 3:35 ` [PATCH i-g-t] " Reddy Guddati, Santhosh 2026-06-15 10:06 ` Kamil Konieczny 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-06-13 21:47 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 43929 bytes --] == Series Details == Series: tests/kms_feature_discovery: add HDR, VRR and DSC discovery URL : https://patchwork.freedesktop.org/series/168477/ State : failure == Summary == CI Bug Log - changes from XEIGT_8962_FULL -> XEIGTPW_15361_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15361_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15361_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15361_FULL: ### IGT changes ### #### Possible regressions #### * {igt@kms_feature_discovery@dsc} (NEW): - shard-lnl: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@vrr (NEW): - shard-bmg: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-2/igt@kms_feature_discovery@vrr.html New tests --------- New tests have been introduced between XEIGT_8962_FULL and XEIGTPW_15361_FULL: ### New IGT tests (3) ### * igt@kms_feature_discovery@dsc: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@hdr: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0] s * igt@kms_feature_discovery@vrr: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_15361_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-lnl: [PASS][4] -> [ABORT][5] ([Intel XE#4760]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7059] / [Intel XE#7085]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#7059] / [Intel XE#7085]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#7676]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7679]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2724] / [Intel XE#7449]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#7008]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-75: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2325] / [Intel XE#7358]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-1/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#306] / [Intel XE#7358]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6507]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#307] / [Intel XE#6974]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#7642]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2320]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-1/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1424]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#4354] / [Intel XE#5882]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#8265]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#8265]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1421]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: NOTRUN -> [FAIL][34] ([Intel XE#301]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7178] / [Intel XE#7351]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1397] / [Intel XE#7385]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2311]) +16 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrshdr-shrfb-scaledprimary: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6312]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-6/igt@kms_frontbuffer_tracking@drrshdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656] / [Intel XE#7905]) +15 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4141]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#6312] / [Intel XE#651]) +5 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7905]) +19 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2313]) +23 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7061]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7865]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#7308]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1503] / [Intel XE#7915]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7915]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes@pipe-a-edp-1-xrgb2101010.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7283]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7283]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4608]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#4608] / [Intel XE#7304]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1489]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1406]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_psr@fbc-pr-sprite-blt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#7345]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-primary-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1406] / [Intel XE#4609]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1127] / [Intel XE#5813]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#3904] / [Intel XE#7342]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-7/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1435]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6503]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@xe_eudebug@multigpu-basic-client-many: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#7636]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-3/igt@xe_eudebug@multigpu-basic-client-many.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7636]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-6/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt@xe_eudebug_sriov@deny-sriov: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4518] / [Intel XE#7404]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][78] -> [INCOMPLETE][79] ([Intel XE#6321]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#6540] / [Intel XE#688]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@xe_evict@evict-cm-threads-small-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][81] ([Intel XE#6321]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_balancer@once-cm-parallel-rebind: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#7482]) +9 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@xe_exec_balancer@once-cm-parallel-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1392]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_fault_mode@many-multi-queue-rebind-imm: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7136]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@xe_exec_fault_mode@many-multi-queue-rebind-imm.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#7136]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch.html * igt@xe_exec_multi_queue@many-execs-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#6874]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#6874]) +12 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-3/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-close-fd-smem.html * igt@xe_exec_reset@multi-queue-cat-error: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#7866]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@xe_exec_reset@multi-queue-cat-error.html * igt@xe_exec_threads@threads-multi-queue-cm-basic: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7138]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-cm-basic.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7138]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-4/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#560] / [Intel XE#7321] / [Intel XE#7453]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@xe_media_fill@media-fill.html * igt@xe_multigpu_svm@mgpu-latency-prefetch: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#6964]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@xe_multigpu_svm@mgpu-latency-prefetch.html * igt@xe_page_reclaim@prl-invalidate-full: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#7793]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@xe_page_reclaim@prl-invalidate-full.html - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#7793]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-4/igt@xe_page_reclaim@prl-invalidate-full.html * igt@xe_pat@pat-sw-hw-suspend: - shard-bmg: NOTRUN -> [FAIL][97] ([Intel XE#7695]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-2/igt@xe_pat@pat-sw-hw-suspend.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1948]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s3-vm-bind-userptr: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-1/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-1/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-invalid-extension: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#944]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#7174]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-5/igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [PASS][103] -> [DMESG-WARN][104] ([Intel XE#6627] / [Intel XE#7419]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-8/igt@xe_survivability@runtime-survivability.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-7/igt@xe_survivability@runtime-survivability.html #### Possible fixes #### * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-lnl: [ABORT][105] ([Intel XE#4760]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][107] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][108] +1 other test pass [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][109] ([Intel XE#7571]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][111] ([Intel XE#7915]) -> [PASS][112] +1 other test pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-2/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-3/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][113] ([Intel XE#7340]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][115] ([Intel XE#6361]) -> [PASS][116] +2 other tests pass [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][117] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][118] +1 other test pass [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-lnl-2/igt@kms_vrr@flipline.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@kms_vrr@flipline.html * igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random: - shard-bmg: [FAIL][119] ([Intel XE#7992]) -> [PASS][120] +3 other tests pass [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-4/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-9/igt@xe_sriov_auto_provisioning@exclusive-ranges@numvfs-random.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0: - shard-bmg: [FAIL][121] -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt1-vcs0.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][123] ([Intel XE#3544] / [Intel XE#7916]) -> [SKIP][124] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][125] ([Intel XE#7916]) -> [SKIP][126] ([Intel XE#7915]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-6/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][127] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][128] ([Intel XE#1729] / [Intel XE#7424]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind: - shard-lnl: [ABORT][129] ([Intel XE#8007]) -> [SKIP][130] ([Intel XE#7136]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8962/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [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#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7404 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8962 -> IGTPW_15361 * Linux: xe-5248-536f4e1338749a805ec4a7b82b1444dae2c6fe4d -> xe-5253-5fc0f82c971ea3b4e1c58602c0be573a802a8670 IGTPW_15361: 15361 IGT_8962: 8962 xe-5248-536f4e1338749a805ec4a7b82b1444dae2c6fe4d: 536f4e1338749a805ec4a7b82b1444dae2c6fe4d xe-5253-5fc0f82c971ea3b4e1c58602c0be573a802a8670: 5fc0f82c971ea3b4e1c58602c0be573a802a8670 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15361/index.html [-- Attachment #2: Type: text/html, Size: 49980 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery 2026-06-13 19:59 [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery Swati Sharma ` (2 preceding siblings ...) 2026-06-13 21:47 ` ✗ Xe.CI.FULL: " Patchwork @ 2026-06-15 3:35 ` Reddy Guddati, Santhosh 2026-07-08 19:35 ` Sharma, Swati2 2026-06-15 10:06 ` Kamil Konieczny 4 siblings, 1 reply; 8+ messages in thread From: Reddy Guddati, Santhosh @ 2026-06-15 3:35 UTC (permalink / raw) To: igt-dev Hi Swati, On 14-06-2026 01:29, Swati Sharma wrote: > Add display feature discovery subtests for HDR, VRR and DSC. > > HDR requires: > - IGT_CONNECTOR_MAX_BPC with max bpc >= 10 > - IGT_CONNECTOR_HDR_OUTPUT_METADATA > - EDID HDR capability via igt_is_panel_hdr() > > VRR checks connector vrr_capable support. > DSC checks sink support via igt_is_dsc_supported_by_sink(). Would it be good to consider the feature discovery check for HDCP as well in this patch. Regards, Santhosh> > Assisted-by: GitHub Copilot:Claude Opus 4.6 > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/kms_feature_discovery.c | 75 +++++++++++++++++++++++++++++++++++ > 1 file changed, 75 insertions(+) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c > index 28ec89c55..07a0c5e16 100644 > --- a/tests/kms_feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -36,6 +36,7 @@ > #ifdef HAVE_CHAMELIUM > #include "igt_chamelium.h" > #endif > +#include "igt_hdr.h" > #include "igt_kms.h" > #include "igt_psr.h" > #include "igt_sysfs.h" > @@ -63,6 +64,18 @@ > * SUBTEST: dp-mst > * Description: Make sure that we have DP-MST configuration. > * > + * SUBTEST: hdr > + * Description: Make sure that we have at least one HDR-capable panel. > + * Mega feature: HDR > + * > + * SUBTEST: vrr > + * Description: Make sure that we have at least one VRR-capable panel. > + * Mega feature: VRR > + * > + * SUBTEST: dsc > + * Description: Make sure that we have at least one DSC-capable sink. > + * Mega feature: DSC > + * > * arg[1].values: 1, 2, 3, 4 > */ > > @@ -174,5 +187,67 @@ int igt_main() { > } > igt_require_f(ret == 0, "No DP-MST configuration found.\n"); > } > + > + igt_describe("Make sure that we have at least one HDR-capable panel."); > + igt_subtest("hdr") { > + igt_output_t *output; > + bool found = false; > + > + for_each_connected_output(&display, output) { > + if (!igt_output_has_prop(output, IGT_CONNECTOR_MAX_BPC)) > + continue; > + > + if (igt_get_output_max_bpc(output) < 10) > + continue; > + > + if (!igt_output_has_prop(output, > + IGT_CONNECTOR_HDR_OUTPUT_METADATA)) > + continue; > + > + if (!igt_is_panel_hdr(fd, output)) > + continue; > + > + found = true; > + break; > + } > + > + igt_require_f(found, > + "No HDR-capable panel found with max bpc, HDR metadata, and EDID HDR support.\n"); > + } > + > + igt_describe("Make sure that we have at least one VRR-capable panel."); > + igt_subtest("vrr") { > + igt_output_t *output; > + bool found = false; > + > + for_each_connected_output(&display, output) { > + if (!igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) > + continue; > + > + if (!igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) > + continue; > + > + found = true; > + break; > + } > + > + igt_require_f(found, "No VRR-capable panel found.\n"); > + } > + > + igt_describe("Make sure that we have at least one DSC-capable sink."); > + igt_subtest("dsc") { > + igt_output_t *output; > + bool found = false; > + > + for_each_connected_output(&display, output) { > + if (!igt_is_dsc_supported_by_sink(fd, output->name)) > + continue; > + > + found = true; > + break; > + } > + > + igt_require_f(found, "No DSC-capable sink found.\n"); > + } > } > } ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery 2026-06-15 3:35 ` [PATCH i-g-t] " Reddy Guddati, Santhosh @ 2026-07-08 19:35 ` Sharma, Swati2 0 siblings, 0 replies; 8+ messages in thread From: Sharma, Swati2 @ 2026-07-08 19:35 UTC (permalink / raw) To: Reddy Guddati, Santhosh, igt-dev Hi Santosh On 15-06-2026 09:05 am, Reddy Guddati, Santhosh wrote: > Hi Swati, > > On 14-06-2026 01:29, Swati Sharma wrote: >> Add display feature discovery subtests for HDR, VRR and DSC. >> >> HDR requires: >> - IGT_CONNECTOR_MAX_BPC with max bpc >= 10 >> - IGT_CONNECTOR_HDR_OUTPUT_METADATA >> - EDID HDR capability via igt_is_panel_hdr() >> >> VRR checks connector vrr_capable support. >> DSC checks sink support via igt_is_dsc_supported_by_sink(). > > Would it be good to consider the feature discovery check for HDCP as > well in this patch. Yes, but prior to that we need lib for HDCP. > > Regards, > Santhosh> >> Assisted-by: GitHub Copilot:Claude Opus 4.6 >> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> >> --- >> tests/kms_feature_discovery.c | 75 +++++++++++++++++++++++++++++++++++ >> 1 file changed, 75 insertions(+) >> >> diff --git a/tests/kms_feature_discovery.c >> b/tests/kms_feature_discovery.c >> index 28ec89c55..07a0c5e16 100644 >> --- a/tests/kms_feature_discovery.c >> +++ b/tests/kms_feature_discovery.c >> @@ -36,6 +36,7 @@ >> #ifdef HAVE_CHAMELIUM >> #include "igt_chamelium.h" >> #endif >> +#include "igt_hdr.h" >> #include "igt_kms.h" >> #include "igt_psr.h" >> #include "igt_sysfs.h" >> @@ -63,6 +64,18 @@ >> * SUBTEST: dp-mst >> * Description: Make sure that we have DP-MST configuration. >> * >> + * SUBTEST: hdr >> + * Description: Make sure that we have at least one HDR-capable panel. >> + * Mega feature: HDR >> + * >> + * SUBTEST: vrr >> + * Description: Make sure that we have at least one VRR-capable panel. >> + * Mega feature: VRR >> + * >> + * SUBTEST: dsc >> + * Description: Make sure that we have at least one DSC-capable sink. >> + * Mega feature: DSC >> + * >> * arg[1].values: 1, 2, 3, 4 >> */ >> @@ -174,5 +187,67 @@ int igt_main() { >> } >> igt_require_f(ret == 0, "No DP-MST configuration >> found.\n"); >> } >> + >> + igt_describe("Make sure that we have at least one >> HDR-capable panel."); >> + igt_subtest("hdr") { >> + igt_output_t *output; >> + bool found = false; >> + >> + for_each_connected_output(&display, output) { >> + if (!igt_output_has_prop(output, >> IGT_CONNECTOR_MAX_BPC)) >> + continue; >> + >> + if (igt_get_output_max_bpc(output) < 10) >> + continue; >> + >> + if (!igt_output_has_prop(output, >> + IGT_CONNECTOR_HDR_OUTPUT_METADATA)) >> + continue; >> + >> + if (!igt_is_panel_hdr(fd, output)) >> + continue; >> + >> + found = true; >> + break; >> + } >> + >> + igt_require_f(found, >> + "No HDR-capable panel found with max bpc, HDR >> metadata, and EDID HDR support.\n"); >> + } >> + >> + igt_describe("Make sure that we have at least one >> VRR-capable panel."); >> + igt_subtest("vrr") { >> + igt_output_t *output; >> + bool found = false; >> + >> + for_each_connected_output(&display, output) { >> + if (!igt_output_has_prop(output, >> IGT_CONNECTOR_VRR_CAPABLE)) >> + continue; >> + >> + if (!igt_output_get_prop(output, >> IGT_CONNECTOR_VRR_CAPABLE)) >> + continue; >> + >> + found = true; >> + break; >> + } >> + >> + igt_require_f(found, "No VRR-capable panel found.\n"); >> + } >> + >> + igt_describe("Make sure that we have at least one >> DSC-capable sink."); >> + igt_subtest("dsc") { >> + igt_output_t *output; >> + bool found = false; >> + >> + for_each_connected_output(&display, output) { >> + if (!igt_is_dsc_supported_by_sink(fd, output->name)) >> + continue; >> + >> + found = true; >> + break; >> + } >> + >> + igt_require_f(found, "No DSC-capable sink found.\n"); >> + } >> } >> } > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery 2026-06-13 19:59 [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery Swati Sharma ` (3 preceding siblings ...) 2026-06-15 3:35 ` [PATCH i-g-t] " Reddy Guddati, Santhosh @ 2026-06-15 10:06 ` Kamil Konieczny 2026-07-09 6:24 ` Sharma, Swati2 4 siblings, 1 reply; 8+ messages in thread From: Kamil Konieczny @ 2026-06-15 10:06 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev Hi Swati, On 2026-06-14 at 01:29:01 +0530, Swati Sharma wrote: > Add display feature discovery subtests for HDR, VRR and DSC. > > HDR requires: > - IGT_CONNECTOR_MAX_BPC with max bpc >= 10 > - IGT_CONNECTOR_HDR_OUTPUT_METADATA > - EDID HDR capability via igt_is_panel_hdr() > > VRR checks connector vrr_capable support. > DSC checks sink support via igt_is_dsc_supported_by_sink(). > > Assisted-by: GitHub Copilot:Claude Opus 4.6 > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/kms_feature_discovery.c | 75 +++++++++++++++++++++++++++++++++++ > 1 file changed, 75 insertions(+) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c > index 28ec89c55..07a0c5e16 100644 > --- a/tests/kms_feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -36,6 +36,7 @@ > #ifdef HAVE_CHAMELIUM > #include "igt_chamelium.h" > #endif > +#include "igt_hdr.h" > #include "igt_kms.h" > #include "igt_psr.h" > #include "igt_sysfs.h" > @@ -63,6 +64,18 @@ > * SUBTEST: dp-mst > * Description: Make sure that we have DP-MST configuration. > * > + * SUBTEST: hdr > + * Description: Make sure that we have at least one HDR-capable panel. > + * Mega feature: HDR > + * > + * SUBTEST: vrr > + * Description: Make sure that we have at least one VRR-capable panel. > + * Mega feature: VRR > + * > + * SUBTEST: dsc > + * Description: Make sure that we have at least one DSC-capable sink. > + * Mega feature: DSC What about adding panel- and sink- prefixes to tests names? For example: * SUBTEST: panel-hdr * SUBTEST: panel-vrr * SUBTEST: sink-dsc Up to you, maybe in separate patch? > + * > * arg[1].values: 1, 2, 3, 4 > */ > > @@ -174,5 +187,67 @@ int igt_main() { > } > igt_require_f(ret == 0, "No DP-MST configuration found.\n"); > } > + > + igt_describe("Make sure that we have at least one HDR-capable panel."); > + igt_subtest("hdr") { > + igt_output_t *output; > + bool found = false; Could you add a counter for how many outputs were checked? Maybe in a separate patch, not this one. Something like: int ocnt = 0; > + > + for_each_connected_output(&display, output) { ++ocnt; > + if (!igt_output_has_prop(output, IGT_CONNECTOR_MAX_BPC)) > + continue; > + > + if (igt_get_output_max_bpc(output) < 10) > + continue; > + > + if (!igt_output_has_prop(output, > + IGT_CONNECTOR_HDR_OUTPUT_METADATA)) > + continue; > + > + if (!igt_is_panel_hdr(fd, output)) > + continue; > + > + found = true; > + break; > + } > + > + igt_require_f(found, > + "No HDR-capable panel found with max bpc, HDR metadata, and EDID HDR support.\n"); And here print ocnt, like: "No HDR-capable panel found with max bpc, HDR metadata, and EDID HDR support, checked %d outputs.\n", ocnt); > + } > + > + igt_describe("Make sure that we have at least one VRR-capable panel."); > + igt_subtest("vrr") { > + igt_output_t *output; > + bool found = false; > + > + for_each_connected_output(&display, output) { > + if (!igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) > + continue; > + > + if (!igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) > + continue; > + > + found = true; > + break; > + } > + > + igt_require_f(found, "No VRR-capable panel found.\n"); Same here. > + } > + > + igt_describe("Make sure that we have at least one DSC-capable sink."); > + igt_subtest("dsc") { > + igt_output_t *output; > + bool found = false; > + > + for_each_connected_output(&display, output) { > + if (!igt_is_dsc_supported_by_sink(fd, output->name)) > + continue; > + > + found = true; > + break; > + } > + > + igt_require_f(found, "No DSC-capable sink found.\n"); Same here. Regards, Kamil > + } > } > } > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery 2026-06-15 10:06 ` Kamil Konieczny @ 2026-07-09 6:24 ` Sharma, Swati2 0 siblings, 0 replies; 8+ messages in thread From: Sharma, Swati2 @ 2026-07-09 6:24 UTC (permalink / raw) To: Kamil Konieczny, igt-dev Hi Kamil On 15-06-2026 03:36 pm, Kamil Konieczny wrote: > Hi Swati, > On 2026-06-14 at 01:29:01 +0530, Swati Sharma wrote: >> Add display feature discovery subtests for HDR, VRR and DSC. >> >> HDR requires: >> - IGT_CONNECTOR_MAX_BPC with max bpc >= 10 >> - IGT_CONNECTOR_HDR_OUTPUT_METADATA >> - EDID HDR capability via igt_is_panel_hdr() >> >> VRR checks connector vrr_capable support. >> DSC checks sink support via igt_is_dsc_supported_by_sink(). >> >> Assisted-by: GitHub Copilot:Claude Opus 4.6 >> Signed-off-by: Swati Sharma<swati2.sharma@intel.com> >> --- >> tests/kms_feature_discovery.c | 75 +++++++++++++++++++++++++++++++++++ >> 1 file changed, 75 insertions(+) >> >> diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c >> index 28ec89c55..07a0c5e16 100644 >> --- a/tests/kms_feature_discovery.c >> +++ b/tests/kms_feature_discovery.c >> @@ -36,6 +36,7 @@ >> #ifdef HAVE_CHAMELIUM >> #include "igt_chamelium.h" >> #endif >> +#include "igt_hdr.h" >> #include "igt_kms.h" >> #include "igt_psr.h" >> #include "igt_sysfs.h" >> @@ -63,6 +64,18 @@ >> * SUBTEST: dp-mst >> * Description: Make sure that we have DP-MST configuration. >> * >> + * SUBTEST: hdr >> + * Description: Make sure that we have at least one HDR-capable panel. >> + * Mega feature: HDR >> + * >> + * SUBTEST: vrr >> + * Description: Make sure that we have at least one VRR-capable panel. >> + * Mega feature: VRR >> + * >> + * SUBTEST: dsc >> + * Description: Make sure that we have at least one DSC-capable sink. >> + * Mega feature: DSC > What about adding panel- and sink- prefixes to tests names? > For example: > > * SUBTEST: panel-hdr > * SUBTEST: panel-vrr > * SUBTEST: sink-dsc > > Up to you, maybe in separate patch? I guess panel- / sink- not required. Other tests are like psr/psr2, etc. >> + * >> * arg[1].values: 1, 2, 3, 4 >> */ >> >> @@ -174,5 +187,67 @@ int igt_main() { >> } >> igt_require_f(ret == 0, "No DP-MST configuration found.\n"); >> } >> + >> + igt_describe("Make sure that we have at least one HDR-capable panel."); >> + igt_subtest("hdr") { >> + igt_output_t *output; >> + bool found = false; > Could you add a counter for how many outputs were checked? > Maybe in a separate patch, not this one. > > Something like: > > int ocnt = 0; > >> + >> + for_each_connected_output(&display, output) { > ++ocnt; > >> + if (!igt_output_has_prop(output, IGT_CONNECTOR_MAX_BPC)) >> + continue; >> + >> + if (igt_get_output_max_bpc(output) < 10) >> + continue; >> + >> + if (!igt_output_has_prop(output, >> + IGT_CONNECTOR_HDR_OUTPUT_METADATA)) >> + continue; >> + >> + if (!igt_is_panel_hdr(fd, output)) >> + continue; >> + >> + found = true; >> + break; >> + } >> + >> + igt_require_f(found, >> + "No HDR-capable panel found with max bpc, HDR metadata, and EDID HDR support.\n"); > And here print ocnt, like: > "No HDR-capable panel found with max bpc, HDR metadata, and EDID HDR support, checked %d outputs.\n", ocnt); Sure, will do in next rev > >> + } >> + >> + igt_describe("Make sure that we have at least one VRR-capable panel."); >> + igt_subtest("vrr") { >> + igt_output_t *output; >> + bool found = false; >> + >> + for_each_connected_output(&display, output) { >> + if (!igt_output_has_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) >> + continue; >> + >> + if (!igt_output_get_prop(output, IGT_CONNECTOR_VRR_CAPABLE)) >> + continue; >> + >> + found = true; >> + break; >> + } >> + >> + igt_require_f(found, "No VRR-capable panel found.\n"); > Same here. > >> + } >> + >> + igt_describe("Make sure that we have at least one DSC-capable sink."); >> + igt_subtest("dsc") { >> + igt_output_t *output; >> + bool found = false; >> + >> + for_each_connected_output(&display, output) { >> + if (!igt_is_dsc_supported_by_sink(fd, output->name)) >> + continue; >> + >> + found = true; >> + break; >> + } >> + >> + igt_require_f(found, "No DSC-capable sink found.\n"); > Same here. > > Regards, > Kamil > >> + } >> } >> } >> -- >> 2.25.1 >> ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-07-09 6:25 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-13 19:59 [PATCH i-g-t] tests/kms_feature_discovery: add HDR, VRR and DSC discovery Swati Sharma 2026-06-13 20:40 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-06-13 20:55 ` ✗ i915.CI.BAT: failure " Patchwork 2026-06-13 21:47 ` ✗ Xe.CI.FULL: " Patchwork 2026-06-15 3:35 ` [PATCH i-g-t] " Reddy Guddati, Santhosh 2026-07-08 19:35 ` Sharma, Swati2 2026-06-15 10:06 ` Kamil Konieczny 2026-07-09 6:24 ` Sharma, Swati2
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox