* [igt-dev] [PATCH i-g-t] tests/gem_blits: Don't test Y Tile for newer GPUs
@ 2023-01-18 13:42 Nirmoy Das
2023-01-18 13:43 ` Das, Nirmoy
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Nirmoy Das @ 2023-01-18 13:42 UTC (permalink / raw)
To: igt-dev; +Cc: Nirmoy Das
From: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Legacy Y Tile is no longer supported on newer GPUs.
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Co-developed-by: Nirmoy Das <nirmoy.das@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
---
tests/i915/gem_blits.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/tests/i915/gem_blits.c b/tests/i915/gem_blits.c
index d9296cf2d..577eb6bfc 100644
--- a/tests/i915/gem_blits.c
+++ b/tests/i915/gem_blits.c
@@ -793,6 +793,7 @@ igt_main
igt_subtest("basic") {
struct buffer *src, *dst;
unsigned int x, y;
+ int devid = intel_get_drm_devid(device.fd);
for (unsigned int height = 1; height <= 16; height <<= 2) {
for (unsigned int y0 = ZERO; y0 <= (height > 2 ? BELOW : ZERO); y0++) {
@@ -808,12 +809,28 @@ igt_main
for (unsigned int src_tiling = I915_TILING_NONE;
src_tiling <= (device.gen >= 6 ? I915_TILING_Y : I915_TILING_X);
src_tiling++) {
+
+ /*
+ * Legacy Y Tile is not supported on newer GPUs so skip that.
+ * Probably need more generic solution to detect and skip unsupported formats.
+ */
+ if (intel_graphics_ver(devid) >= IP_VER(12, 60) && (src_tiling == I915_TILING_Y))
+ continue;
+
buffer_set_tiling(&device, src, src_tiling);
x = start_at(width, x0);
for (unsigned int dst_tiling = I915_TILING_NONE;
dst_tiling <= (device.gen >= 6 ? I915_TILING_Y : I915_TILING_X);
dst_tiling++) {
+
+ /*
+ * Legacy Y Tile is not supported on newer GPUs so skip that.
+ * Probably need more generic solution to detect and skip unsupported formats.
+ */
+ if (intel_graphics_ver(devid) >= IP_VER(12, 60) && (dst_tiling == I915_TILING_Y))
+ continue;
+
buffer_set_tiling(&device, dst, dst_tiling);
for (enum mode down = CPU; down <= WC; down++) {
--
2.39.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/gem_blits: Don't test Y Tile for newer GPUs 2023-01-18 13:42 [igt-dev] [PATCH i-g-t] tests/gem_blits: Don't test Y Tile for newer GPUs Nirmoy Das @ 2023-01-18 13:43 ` Das, Nirmoy 2023-01-18 14:12 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-19 15:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Das, Nirmoy @ 2023-01-18 13:43 UTC (permalink / raw) To: Nirmoy Das, igt-dev Once we have https://patchwork.freedesktop.org/series/113003/, I think this can be improved. Nirmoy On 1/18/2023 2:42 PM, Nirmoy Das wrote: > From: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > > Legacy Y Tile is no longer supported on newer GPUs. > > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Co-developed-by: Nirmoy Das <nirmoy.das@intel.com> > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > --- > tests/i915/gem_blits.c | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > diff --git a/tests/i915/gem_blits.c b/tests/i915/gem_blits.c > index d9296cf2d..577eb6bfc 100644 > --- a/tests/i915/gem_blits.c > +++ b/tests/i915/gem_blits.c > @@ -793,6 +793,7 @@ igt_main > igt_subtest("basic") { > struct buffer *src, *dst; > unsigned int x, y; > + int devid = intel_get_drm_devid(device.fd); > > for (unsigned int height = 1; height <= 16; height <<= 2) { > for (unsigned int y0 = ZERO; y0 <= (height > 2 ? BELOW : ZERO); y0++) { > @@ -808,12 +809,28 @@ igt_main > for (unsigned int src_tiling = I915_TILING_NONE; > src_tiling <= (device.gen >= 6 ? I915_TILING_Y : I915_TILING_X); > src_tiling++) { > + > + /* > + * Legacy Y Tile is not supported on newer GPUs so skip that. > + * Probably need more generic solution to detect and skip unsupported formats. > + */ > + if (intel_graphics_ver(devid) >= IP_VER(12, 60) && (src_tiling == I915_TILING_Y)) > + continue; > + > buffer_set_tiling(&device, src, src_tiling); > > x = start_at(width, x0); > for (unsigned int dst_tiling = I915_TILING_NONE; > dst_tiling <= (device.gen >= 6 ? I915_TILING_Y : I915_TILING_X); > dst_tiling++) { > + > + /* > + * Legacy Y Tile is not supported on newer GPUs so skip that. > + * Probably need more generic solution to detect and skip unsupported formats. > + */ > + if (intel_graphics_ver(devid) >= IP_VER(12, 60) && (dst_tiling == I915_TILING_Y)) > + continue; > + > buffer_set_tiling(&device, dst, dst_tiling); > > for (enum mode down = CPU; down <= WC; down++) { ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_blits: Don't test Y Tile for newer GPUs 2023-01-18 13:42 [igt-dev] [PATCH i-g-t] tests/gem_blits: Don't test Y Tile for newer GPUs Nirmoy Das 2023-01-18 13:43 ` Das, Nirmoy @ 2023-01-18 14:12 ` Patchwork 2023-01-19 15:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-18 14:12 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3086 bytes --] == Series Details == Series: tests/gem_blits: Don't test Y Tile for newer GPUs URL : https://patchwork.freedesktop.org/series/113027/ State : success == Summary == CI Bug Log - changes from CI_DRM_12599 -> IGTPW_8363 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8363 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#7828]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/fi-rkl-11600/igt@kms_chamelium_hpd@common-hpd-after-suspend.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][2] ([i915#7229]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_selftest@live@slpc: - {bat-rplp-1}: [DMESG-FAIL][4] ([i915#6367]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/bat-rplp-1/igt@i915_selftest@live@slpc.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/bat-rplp-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][6] ([i915#4817]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7121 -> IGTPW_8363 CI-20190529: 20190529 CI_DRM_12599: 52aad5ad870672dc91502248cb7c76202d02dafc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8363: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/index.html IGT_7121: aa16e81259f59734230d441905b9d0f605e4a4b5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/index.html [-- Attachment #2: Type: text/html, Size: 3506 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/gem_blits: Don't test Y Tile for newer GPUs 2023-01-18 13:42 [igt-dev] [PATCH i-g-t] tests/gem_blits: Don't test Y Tile for newer GPUs Nirmoy Das 2023-01-18 13:43 ` Das, Nirmoy 2023-01-18 14:12 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-01-19 15:47 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-19 15:47 UTC (permalink / raw) To: Das, Nirmoy; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 26885 bytes --] == Series Details == Series: tests/gem_blits: Don't test Y Tile for newer GPUs URL : https://patchwork.freedesktop.org/series/113027/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12599_full -> IGTPW_8363_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8363_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8363_full, please notify your bug team 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_8363/index.html Participating hosts (13 -> 9) ------------------------------ Missing (4): shard-rkl0 pig-kbl-iris pig-glk-j5005 pig-skl-6260u Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8363_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-glk: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gem_contexts: - {shard-rkl}: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-1/igt@i915_selftest@live@gem_contexts.html Known issues ------------ Here are the changes found in IGTPW_8363_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-apl: [PASS][4] -> [DMESG-WARN][5] ([i915#180]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-apl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_shared@q-smoketest-all: - shard-glk: [PASS][6] -> [DMESG-WARN][7] ([i915#118]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-glk6/igt@gem_ctx_shared@q-smoketest-all.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk3/igt@gem_ctx_shared@q-smoketest-all.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2846]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-glk9/igt@gem_exec_fair@basic-deadline.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][10] -> [FAIL][11] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_userptr_blits@access-control: - shard-glk: NOTRUN -> [SKIP][14] ([fdo#109271]) +27 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk6/igt@gem_userptr_blits@access-control.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#3886]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk4/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-apl: [PASS][16] -> [FAIL][17] ([i915#2346]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271]) +42 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#658]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#658]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@runner@aborted: - shard-apl: NOTRUN -> [FAIL][21] ([i915#180] / [i915#4312]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl6/igt@runner@aborted.html #### Possible fixes #### * igt@fbdev@eof: - {shard-rkl}: [SKIP][22] ([i915#2582]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-4/igt@fbdev@eof.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@fbdev@eof.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-rkl}: [FAIL][24] ([i915#6268]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][26] ([i915#6252]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-4/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][28] ([fdo#103375]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-2/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][30] ([i915#5784]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-dg1-17/igt@gem_eio@unwedge-stress.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][32] ([i915#2842]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][34] ([i915#2842]) -> [PASS][35] +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-cpu-read: - {shard-rkl}: [SKIP][36] ([i915#3281]) -> [PASS][37] +8 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-3/igt@gem_exec_reloc@basic-cpu-read.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_partial_pwrite_pread@write-uncached: - {shard-rkl}: [SKIP][38] ([i915#3282]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-4/igt@gem_partial_pwrite_pread@write-uncached.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-5/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-apl: [INCOMPLETE][40] ([i915#7708]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gen9_exec_parse@shadow-peek: - {shard-rkl}: [SKIP][42] ([i915#2527]) -> [PASS][43] +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][44] ([fdo#109271]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-rkl}: [SKIP][46] ([i915#1397]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-3/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][48] ([i915#1397]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@i2c: - {shard-rkl}: [SKIP][50] ([fdo#109308]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-4/igt@i915_pm_rpm@i2c.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@i915_pm_rpm@i2c.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - {shard-tglu}: [SKIP][52] ([i915#1845] / [i915#7651]) -> [PASS][53] +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - {shard-tglu}: [SKIP][54] ([i915#7651]) -> [PASS][55] +6 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-tglu-6/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-tglu-3/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - {shard-rkl}: [SKIP][56] ([i915#1849] / [i915#4098]) -> [PASS][57] +12 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - {shard-tglu}: [SKIP][58] ([i915#1849]) -> [PASS][59] +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_plane@plane-position-covered@pipe-a-planes: - {shard-tglu}: [SKIP][60] ([i915#1849] / [i915#3558]) -> [PASS][61] +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-tglu-6/igt@kms_plane@plane-position-covered@pipe-a-planes.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-tglu-7/igt@kms_plane@plane-position-covered@pipe-a-planes.html * igt@kms_plane@plane-position-hole@pipe-b-planes: - {shard-rkl}: [SKIP][62] ([i915#1849]) -> [PASS][63] +3 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-4/igt@kms_plane@plane-position-hole@pipe-b-planes.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@kms_plane@plane-position-hole@pipe-b-planes.html * igt@kms_psr@cursor_mmap_gtt: - {shard-rkl}: [SKIP][64] ([i915#1072]) -> [PASS][65] +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-2/igt@kms_psr@cursor_mmap_gtt.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_vblank@pipe-a-ts-continuation-modeset: - shard-snb: [SKIP][66] ([fdo#109271]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-snb4/igt@kms_vblank@pipe-a-ts-continuation-modeset.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-snb7/igt@kms_vblank@pipe-a-ts-continuation-modeset.html * igt@kms_vblank@pipe-b-query-idle: - {shard-rkl}: [SKIP][68] ([i915#1845] / [i915#4098]) -> [PASS][69] +22 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-4/igt@kms_vblank@pipe-b-query-idle.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@kms_vblank@pipe-b-query-idle.html * igt@perf@gen12-unprivileged-single-ctx-counters: - {shard-rkl}: [SKIP][70] ([fdo#109289]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-5/igt@perf@gen12-unprivileged-single-ctx-counters.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-4/igt@perf@gen12-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason: - shard-glk: [FAIL][72] -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-glk1/igt@perf@non-zero-reason.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk1/igt@perf@non-zero-reason.html * igt@perf@stress-open-close: - shard-glk: [INCOMPLETE][74] ([i915#5213]) -> [PASS][75] [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-glk7/igt@perf@stress-open-close.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-glk6/igt@perf@stress-open-close.html * igt@prime_vgem@basic-fence-flip: - {shard-rkl}: [SKIP][76] ([fdo#109295] / [i915#3708] / [i915#4098]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12599/shard-rkl-1/igt@prime_vgem@basic-fence-flip.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [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#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4778]: https://gitlab.freedesktop.org/drm/intel/issues/4778 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [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#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7678]: https://gitlab.freedesktop.org/drm/intel/issues/7678 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708 [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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7121 -> IGTPW_8363 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12599: 52aad5ad870672dc91502248cb7c76202d02dafc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8363: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/index.html IGT_7121: aa16e81259f59734230d441905b9d0f605e4a4b5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8363/index.html [-- Attachment #2: Type: text/html, Size: 21708 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-01-19 15:47 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-18 13:42 [igt-dev] [PATCH i-g-t] tests/gem_blits: Don't test Y Tile for newer GPUs Nirmoy Das 2023-01-18 13:43 ` Das, Nirmoy 2023-01-18 14:12 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-19 15:47 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox