* [PATCH] drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12
@ 2024-02-19 5:52 Ankit Nautiyal
2024-02-19 6:59 ` ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ankit Nautiyal @ 2024-02-19 5:52 UTC (permalink / raw)
To: intel-gfx; +Cc: ville.syrjala
For Earlier platforms, the Pipe source size is 12-bits so
max pipe source width and height is 4096. For newer platforms it is
13-bits so theoretically max height is 8192, but maximum width
supported on a single pipe is 5120, beyond which we need to use
bigjoiner.
Currently we are using max scaler source size to make sure that the
pipe source size is programmed within limits, before using scaler.
This creates a problem, for MTL where scaler source size is 4096, but
max pipe source width can be 5120.
Update the check to use the aforementioned limits.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
drivers/gpu/drm/i915/display/skl_scaler.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index 8a934bada624..36342142efaa 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -115,6 +115,7 @@ skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
int pipe_src_h = drm_rect_height(&crtc_state->pipe_src);
int min_src_w, min_src_h, min_dst_w, min_dst_h;
int max_src_w, max_src_h, max_dst_w, max_dst_h;
+ int max_pipe_src_w, max_pipe_src_h;
/*
* Src coordinates are already rotated by 270 degrees for
@@ -212,11 +213,21 @@ skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
/*
* The pipe scaler does not use all the bits of PIPESRC, at least
* on the earlier platforms. So even when we're scaling a plane
- * the *pipe* source size must not be too large. For simplicity
- * we assume the limits match the scaler source size limits. Might
- * not be 100% accurate on all platforms, but good enough for now.
+ * the *pipe* source size must not be too large.
+ *
+ * For Earlier platforms, the Pipe source size is 12-bits so
+ * max pipe src width and height is 4096. For newer platforms it is 13-bits.
+ * Theoretically maximum pipe src height supported on a single pipe is 8192,
+ * but maximum pipe src width supported on a single pipe is 5120.
*/
- if (pipe_src_w > max_src_w || pipe_src_h > max_src_h) {
+ if (DISPLAY_VER(dev_priv) < 12) {
+ max_pipe_src_w = 4096;
+ max_pipe_src_h = 4096;
+ } else {
+ max_pipe_src_w = 5120;
+ max_pipe_src_h = 8192;
+ }
+ if (pipe_src_w > max_pipe_src_w || pipe_src_h > max_pipe_src_h) {
drm_dbg_kms(&dev_priv->drm,
"scaler_user index %u.%u: pipe src size %ux%u "
"is out of scaler range\n",
--
2.40.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Fi.CI.BAT: success for drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 2024-02-19 5:52 [PATCH] drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 Ankit Nautiyal @ 2024-02-19 6:59 ` Patchwork 2024-02-19 8:27 ` ✓ Fi.CI.IGT: " Patchwork 2024-03-05 15:26 ` [PATCH] " Ville Syrjälä 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-02-19 6:59 UTC (permalink / raw) To: Ankit Nautiyal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 1880 bytes --] == Series Details == Series: drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 URL : https://patchwork.freedesktop.org/series/130061/ State : success == Summary == CI Bug Log - changes from CI_DRM_14288 -> Patchwork_130061v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/index.html Participating hosts (34 -> 33) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_130061v1 that come from known issues: ### CI changes ### ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#10137]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/fi-bsw-nick/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/fi-bsw-nick/igt@i915_selftest@live@execlists.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10234]: https://gitlab.freedesktop.org/drm/intel/issues/10234 Build changes ------------- * Linux: CI_DRM_14288 -> Patchwork_130061v1 CI-20190529: 20190529 CI_DRM_14288: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7716: 7716 Patchwork_130061v1: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits cc6f631b76c6 drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/index.html [-- Attachment #2: Type: text/html, Size: 2419 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Fi.CI.IGT: success for drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 2024-02-19 5:52 [PATCH] drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 Ankit Nautiyal 2024-02-19 6:59 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-02-19 8:27 ` Patchwork 2024-03-05 15:26 ` [PATCH] " Ville Syrjälä 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-02-19 8:27 UTC (permalink / raw) To: Ankit Nautiyal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 60701 bytes --] == Series Details == Series: drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 URL : https://patchwork.freedesktop.org/series/130061/ State : success == Summary == CI Bug Log - changes from CI_DRM_14288_full -> Patchwork_130061v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ Additional (1): shard-glk-0 Missing (1): pig-kbl-iris New tests --------- New tests have been introduced between CI_DRM_14288_full and Patchwork_130061v1_full: ### New IGT tests (19) ### * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.31] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.20] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.32] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.20] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.30] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [3.20] s * igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [16.54] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@d-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [0.93] s * igt@kms_flip@modeset-vs-vblank-race-interruptible@d-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [2.95] s * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a3: - Statuses : 1 pass(s) - Exec time: [7.93] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.01] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.02] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.02] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.02] s * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.14] s * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.11] s Known issues ------------ Here are the changes found in Patchwork_130061v1_full that come from known issues: ### CI changes ### #### Issues hit #### * boot: - shard-snb: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) -> ([PASS][26], [PASS][27], [PASS][28], [FAIL][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50]) ([i915#8293]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/boot.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/boot.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/boot.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/boot.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/boot.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb2/boot.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb2/boot.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb2/boot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb2/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb4/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb4/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb4/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb4/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb5/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb5/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb5/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb5/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb6/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb6/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb6/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb6/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb6/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb1/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb1/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb1/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb1/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb2/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb2/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb2/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb2/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb2/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb2/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb4/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb4/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb4/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb4/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb5/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb5/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb5/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb5/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb6/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb6/boot.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb6/boot.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb6/boot.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb7/boot.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb7/boot.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb7/boot.html #### Possible fixes #### * boot: - shard-rkl: ([PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [FAIL][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74]) ([i915#8293]) -> ([PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-1/boot.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/boot.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/boot.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/boot.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/boot.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/boot.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/boot.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-7/boot.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-1/boot.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-1/boot.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-1/boot.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-1/boot.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-1/boot.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-3/boot.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/boot.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/boot.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/boot.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/boot.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/boot.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/boot.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/boot.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/boot.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/boot.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-6/boot.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-6/boot.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-7/boot.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-7/boot.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-7/boot.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-7/boot.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-7/boot.html ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#8414]) +10 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8414]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@drm_fdinfo@virtual-busy.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3936]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gem_busy@semaphore.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#109314]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8555]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@smoketest: - shard-snb: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#1099]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb7/igt@gem_ctx_persistence@smoketest.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#8555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3539] / [i915#4852]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][105] -> [FAIL][106] ([i915#2842]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4473]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][108] -> [FAIL][109] ([i915#2876]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-tglu-10/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][110] -> [FAIL][111] ([i915#2842]) +2 other tests fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4812]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gem_exec_fence@submit67.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#3281]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3281]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4860]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@verify-random: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#4613]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#284]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4077]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4077]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#4083]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4083]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pwrite@basic-exhaustion: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3282]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4270]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4270]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@new-obj: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3282]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8428]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4079]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3297]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][130] ([fdo#109289]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#2856]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#2856]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][133] -> [INCOMPLETE][134] ([i915#10137] / [i915#9849]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][135] -> [INCOMPLETE][136] ([i915#10137] / [i915#1982] / [i915#9200] / [i915#9849]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8437]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][138] ([fdo#109302]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@i915_query@query-topology-unsupported.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4215] / [i915#5190]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#8709]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#8709]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#6228]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#9531]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][144] ([fdo#111614]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][145] ([fdo#111614]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][146] -> [FAIL][147] ([i915#3743]) +1 other test fail [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5190]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][149] ([fdo#111615]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#5354] / [i915#6095]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/igt@kms_ccs@pipe-a-bad-pixel-format-y-tiled-ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#5354] / [i915#6095]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_ccs@pipe-c-ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#111827]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#111827]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7828]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@type1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#6944] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-snb: NOTRUN -> [SKIP][158] ([fdo#109271]) +43 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb4/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8814]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: [PASS][163] -> [SKIP][164] ([fdo#109271] / [fdo#111767]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#5354]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][168] ([fdo#110189] / [i915#9227]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#110189] / [i915#9723]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][170] ([fdo#109271]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-glk4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840] / [i915#9053]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#4854]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8381]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3637]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-rkl: NOTRUN -> [SKIP][177] ([fdo#111825]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#2672]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8708]) +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8708]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5354]) +39 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-snb: [PASS][183] -> [SKIP][184] ([fdo#109271]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3458]) +8 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#111767] / [i915#5354]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#1825]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][188] ([fdo#111767] / [i915#1825]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-mtlp: NOTRUN -> [SKIP][189] ([fdo#109289]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8821]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8821]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][192] ([fdo#109274] / [i915#5354] / [i915#9423]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][193] ([i915#8292]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][194] ([i915#8292]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#9423]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9423]) +9 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9423]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5235]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#5235]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5235]) +15 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#5235]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235] / [i915#9423]) +11 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#10139]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][204] -> [SKIP][205] ([i915#9519]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][206] -> [SKIP][207] ([i915#9519]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][208] ([fdo#109293] / [fdo#109506]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9683]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#4348]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#4235]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-rkl: NOTRUN -> [INCOMPLETE][212] ([i915#8875] / [i915#9569]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8809]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#2437]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2437] / [i915#9412]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3708]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#9917]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@sriov_basic@bind-unbind-vf.html * igt@v3d/v3d_perfmon@create-single-perfmon: - shard-rkl: NOTRUN -> [SKIP][218] ([fdo#109315]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-4/igt@v3d/v3d_perfmon@create-single-perfmon.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2575]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2575]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@v3d/v3d_submit_csd@bad-flag.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#7711]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#7711]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][223] ([i915#7742]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][225] ([i915#2842]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][227] ([i915#5493]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][229] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][231] ([i915#3591]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [DMESG-FAIL][233] ([i915#10010]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-4/igt@i915_selftest@live@gt_pm.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-6/igt@i915_selftest@live@gt_pm.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][235] ([i915#3743]) -> [PASS][236] +1 other test pass [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-snb: [DMESG-WARN][237] ([i915#10166]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb1/igt@kms_cursor_legacy@torture-move@pipe-a.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb4/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-snb: [SKIP][239] ([fdo#109271]) -> [PASS][240] +4 other tests pass [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-dg2: [FAIL][241] ([i915#6880]) -> [PASS][242] +1 other test pass [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][243] ([i915#9519]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][245] ([i915#9519]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][247] ([i915#9196]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][249] ([i915#4349]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][251] ([i915#9618]) -> [INCOMPLETE][252] ([i915#10137] / [i915#9618]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][253] ([i915#10131] / [i915#9820]) -> [ABORT][254] ([i915#10131]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: [FAIL][255] ([i915#3591]) -> [WARN][256] ([i915#2681]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@kms_content_protection@uevent: - shard-snb: [SKIP][257] ([fdo#109271]) -> [INCOMPLETE][258] ([i915#8816]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-snb5/igt@kms_content_protection@uevent.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-snb7/igt@kms_content_protection@uevent.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][259] ([i915#3955]) -> [SKIP][260] ([fdo#110189] / [i915#3955]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-6/igt@kms_fbcon_fbt@psr.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][261] ([i915#4816]) -> [SKIP][262] ([i915#4070] / [i915#4816]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][263] ([i915#9351]) -> [INCOMPLETE][264] ([i915#5493]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14288/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#10010]: https://gitlab.freedesktop.org/drm/intel/issues/10010 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 Build changes ------------- * Linux: CI_DRM_14288 -> Patchwork_130061v1 CI-20190529: 20190529 CI_DRM_14288: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7716: 7716 Patchwork_130061v1: cb7db7997fcacd6792fd2fd6e9e93309a408587a @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_130061v1/index.html [-- Attachment #2: Type: text/html, Size: 70979 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 2024-02-19 5:52 [PATCH] drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 Ankit Nautiyal 2024-02-19 6:59 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-02-19 8:27 ` ✓ Fi.CI.IGT: " Patchwork @ 2024-03-05 15:26 ` Ville Syrjälä 2024-03-06 12:58 ` Nautiyal, Ankit K 2 siblings, 1 reply; 5+ messages in thread From: Ville Syrjälä @ 2024-03-05 15:26 UTC (permalink / raw) To: Ankit Nautiyal; +Cc: intel-gfx On Mon, Feb 19, 2024 at 11:22:55AM +0530, Ankit Nautiyal wrote: > For Earlier platforms, the Pipe source size is 12-bits so > max pipe source width and height is 4096. For newer platforms it is > 13-bits so theoretically max height is 8192, but maximum width > supported on a single pipe is 5120, beyond which we need to use > bigjoiner. > > Currently we are using max scaler source size to make sure that the > pipe source size is programmed within limits, before using scaler. > This creates a problem, for MTL where scaler source size is 4096, but > max pipe source width can be 5120. > > Update the check to use the aforementioned limits. > > Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > --- > drivers/gpu/drm/i915/display/skl_scaler.c | 19 +++++++++++++++---- > 1 file changed, 15 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c > index 8a934bada624..36342142efaa 100644 > --- a/drivers/gpu/drm/i915/display/skl_scaler.c > +++ b/drivers/gpu/drm/i915/display/skl_scaler.c > @@ -115,6 +115,7 @@ skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach, > int pipe_src_h = drm_rect_height(&crtc_state->pipe_src); > int min_src_w, min_src_h, min_dst_w, min_dst_h; > int max_src_w, max_src_h, max_dst_w, max_dst_h; > + int max_pipe_src_w, max_pipe_src_h; > > /* > * Src coordinates are already rotated by 270 degrees for > @@ -212,11 +213,21 @@ skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach, > /* > * The pipe scaler does not use all the bits of PIPESRC, at least > * on the earlier platforms. So even when we're scaling a plane > - * the *pipe* source size must not be too large. For simplicity > - * we assume the limits match the scaler source size limits. Might > - * not be 100% accurate on all platforms, but good enough for now. > + * the *pipe* source size must not be too large. > + * > + * For Earlier platforms, the Pipe source size is 12-bits so > + * max pipe src width and height is 4096. For newer platforms it is 13-bits. > + * Theoretically maximum pipe src height supported on a single pipe is 8192, > + * but maximum pipe src width supported on a single pipe is 5120. > */ > - if (pipe_src_w > max_src_w || pipe_src_h > max_src_h) { > + if (DISPLAY_VER(dev_priv) < 12) { > + max_pipe_src_w = 4096; > + max_pipe_src_h = 4096; That doesn't seem right. Hmm. We should probably we able to just switch this to check against the max dst size instead of the max src size. > + } else { > + max_pipe_src_w = 5120; > + max_pipe_src_h = 8192; > + } > + if (pipe_src_w > max_pipe_src_w || pipe_src_h > max_pipe_src_h) { > drm_dbg_kms(&dev_priv->drm, > "scaler_user index %u.%u: pipe src size %ux%u " > "is out of scaler range\n", > -- > 2.40.1 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 2024-03-05 15:26 ` [PATCH] " Ville Syrjälä @ 2024-03-06 12:58 ` Nautiyal, Ankit K 0 siblings, 0 replies; 5+ messages in thread From: Nautiyal, Ankit K @ 2024-03-06 12:58 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx On 3/5/2024 8:56 PM, Ville Syrjälä wrote: > On Mon, Feb 19, 2024 at 11:22:55AM +0530, Ankit Nautiyal wrote: >> For Earlier platforms, the Pipe source size is 12-bits so >> max pipe source width and height is 4096. For newer platforms it is >> 13-bits so theoretically max height is 8192, but maximum width >> supported on a single pipe is 5120, beyond which we need to use >> bigjoiner. >> >> Currently we are using max scaler source size to make sure that the >> pipe source size is programmed within limits, before using scaler. >> This creates a problem, for MTL where scaler source size is 4096, but >> max pipe source width can be 5120. >> >> Update the check to use the aforementioned limits. >> >> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> >> --- >> drivers/gpu/drm/i915/display/skl_scaler.c | 19 +++++++++++++++---- >> 1 file changed, 15 insertions(+), 4 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c >> index 8a934bada624..36342142efaa 100644 >> --- a/drivers/gpu/drm/i915/display/skl_scaler.c >> +++ b/drivers/gpu/drm/i915/display/skl_scaler.c >> @@ -115,6 +115,7 @@ skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach, >> int pipe_src_h = drm_rect_height(&crtc_state->pipe_src); >> int min_src_w, min_src_h, min_dst_w, min_dst_h; >> int max_src_w, max_src_h, max_dst_w, max_dst_h; >> + int max_pipe_src_w, max_pipe_src_h; >> >> /* >> * Src coordinates are already rotated by 270 degrees for >> @@ -212,11 +213,21 @@ skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach, >> /* >> * The pipe scaler does not use all the bits of PIPESRC, at least >> * on the earlier platforms. So even when we're scaling a plane >> - * the *pipe* source size must not be too large. For simplicity >> - * we assume the limits match the scaler source size limits. Might >> - * not be 100% accurate on all platforms, but good enough for now. >> + * the *pipe* source size must not be too large. >> + * >> + * For Earlier platforms, the Pipe source size is 12-bits so >> + * max pipe src width and height is 4096. For newer platforms it is 13-bits. >> + * Theoretically maximum pipe src height supported on a single pipe is 8192, >> + * but maximum pipe src width supported on a single pipe is 5120. >> */ >> - if (pipe_src_w > max_src_w || pipe_src_h > max_src_h) { >> + if (DISPLAY_VER(dev_priv) < 12) { >> + max_pipe_src_w = 4096; >> + max_pipe_src_h = 4096; > That doesn't seem right. > > Hmm. We should probably we able to just switch this to check > against the max dst size instead of the max src size. Alright, so will change the condition to: if (pipe_src_w > max_dst_w || pipe_src_h > max_dst_h) { ... return -EINVAL; } So till ICL it will still have no difference, but for TGL,MTL we'll be checking with 8192: SKL_MAX_DST_W 4096 ; SKL_MAX_SRC_W 4096 SKL_MAX_DST_H 4096 ; SKL_MAX_SRC_H 4096 ICL_MAX_DST_W 5120 ; ICL_MAX_SRC_W 5120 ICL_MAX_DST_H 4096 ; ICL_MAX_SRC_H 4096 TGL_MAX_DST_W 8192 ; TGL_MAX_SRC_W 5120 TGL_MAX_DST_H 8192 ; TGL_MAX_SRC_H 8192 MTL_MAX_DST_W 8192 ; MTL_MAX_SRC_W 4096 MTL_MAX_DST_H 8192 ; MTL_MAX_SRC_H 8192 (Scaler + bigjoiner still needs some work, will start planning for that soon.) Thanks & Regards, Ankit > >> + } else { >> + max_pipe_src_w = 5120; >> + max_pipe_src_h = 8192; >> + } >> + if (pipe_src_w > max_pipe_src_w || pipe_src_h > max_pipe_src_h) { >> drm_dbg_kms(&dev_priv->drm, >> "scaler_user index %u.%u: pipe src size %ux%u " >> "is out of scaler range\n", >> -- >> 2.40.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-06 12:59 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-19 5:52 [PATCH] drm/i915/scaler: Update Pipe src size check for DISPLAY_VER >= 12 Ankit Nautiyal 2024-02-19 6:59 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-02-19 8:27 ` ✓ Fi.CI.IGT: " Patchwork 2024-03-05 15:26 ` [PATCH] " Ville Syrjälä 2024-03-06 12:58 ` Nautiyal, Ankit K
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.