* [igt-dev] [PATCH i-g-t v2] i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC
@ 2023-05-30 4:58 Swati Sharma
2023-05-30 16:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Swati Sharma @ 2023-05-30 4:58 UTC (permalink / raw)
To: igt-dev
Removed hard-coded PIPE_A while computing CRC.
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/i915/kms_fbcon_fbt.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/i915/kms_fbcon_fbt.c b/tests/i915/kms_fbcon_fbt.c
index 831ec867..6c557dca 100644
--- a/tests/i915/kms_fbcon_fbt.c
+++ b/tests/i915/kms_fbcon_fbt.c
@@ -39,7 +39,7 @@ IGT_TEST_DESCRIPTION("Test the relationship between fbcon and the frontbuffer "
#define MAX_CONNECTORS 32
struct drm_info {
- int fd, debugfs_fd;
+ int fd, debugfs_fd, crtc_id;
struct igt_fb fb;
drmModeResPtr res;
drmModeConnectorPtr connectors[MAX_CONNECTORS];
@@ -117,9 +117,10 @@ static bool fbc_check_cursor_blinking(struct drm_info *drm)
igt_pipe_crc_t *pipe_crc;
igt_crc_t crc[2];
bool ret;
- int i;
+ int i, pipe;
- pipe_crc = igt_pipe_crc_new(drm->fd, PIPE_A, IGT_PIPE_CRC_SOURCE_AUTO);
+ pipe = kmstest_get_pipe_from_crtc_id(drm->fd, drm->crtc_id);
+ pipe_crc = igt_pipe_crc_new(drm->fd, pipe, IGT_PIPE_CRC_SOURCE_AUTO);
igt_pipe_crc_start(pipe_crc);
igt_pipe_crc_drain(pipe_crc);
@@ -165,7 +166,6 @@ static void set_mode_for_one_screen(struct drm_info *drm,
connector_possible_fn connector_possible)
{
int i, rc;
- uint32_t crtc_id;
drmModeModeInfoPtr mode;
uint32_t buffer_id;
drmModeConnectorPtr c = NULL;
@@ -182,7 +182,7 @@ static void set_mode_for_one_screen(struct drm_info *drm,
igt_require_f(i < drm->res->count_connectors,
"No connector available\n");
- crtc_id = kmstest_find_crtc_for_connector(drm->fd, drm->res, c, 0);
+ drm->crtc_id = kmstest_find_crtc_for_connector(drm->fd, drm->res, c, 0);
buffer_id = igt_create_fb(drm->fd, mode->hdisplay, mode->vdisplay,
DRM_FORMAT_XRGB8888,
@@ -193,7 +193,7 @@ static void set_mode_for_one_screen(struct drm_info *drm,
mode->hdisplay, mode->vdisplay,
kmstest_connector_type_str(c->connector_type));
- rc = drmModeSetCrtc(drm->fd, crtc_id, buffer_id, 0, 0,
+ rc = drmModeSetCrtc(drm->fd, drm->crtc_id, buffer_id, 0, 0,
&c->connector_id, 1, mode);
igt_assert_eq(rc, 0);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC 2023-05-30 4:58 [igt-dev] [PATCH i-g-t v2] i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC Swati Sharma @ 2023-05-30 16:59 ` Patchwork 2023-05-31 12:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-06-01 5:32 ` [igt-dev] [PATCH i-g-t v2] " Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-05-30 16:59 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7396 bytes --] == Series Details == Series: i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC URL : https://patchwork.freedesktop.org/series/118537/ State : success == Summary == CI Bug Log - changes from IGT_7310 -> IGTPW_9068 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/index.html Participating hosts (38 -> 38) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_9068 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-8809g: NOTRUN -> [ABORT][1] ([i915#8298] / [i915#8299] / [i915#8397]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@reset: - bat-rpls-1: [PASS][3] -> [ABORT][4] ([i915#4983] / [i915#7461] / [i915#7981] / [i915#8347] / [i915#8384]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/bat-rpls-1/igt@i915_selftest@live@reset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-rpls-2: NOTRUN -> [DMESG-WARN][5] ([i915#6367]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/bat-rpls-2/igt@i915_selftest@live@slpc.html * igt@kms_addfb_basic@too-high: - fi-kbl-8809g: NOTRUN -> [FAIL][6] ([i915#8296]) +2 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html * igt@kms_force_connector_basic@force-connector-state: - fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][7] ([i915#8299]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@force-edid: - fi-kbl-8809g: NOTRUN -> [CRASH][8] ([i915#8299]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [PASS][9] -> [FAIL][10] ([i915#7932]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html * igt@kms_pipe_crc_basic@read-crc: - bat-adlp-9: NOTRUN -> [SKIP][11] ([i915#3546]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/bat-adlp-9/igt@kms_pipe_crc_basic@read-crc.html * igt@kms_psr@cursor_plane_move: - fi-kbl-8809g: NOTRUN -> [SKIP][12] ([fdo#109271]) +59 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html * igt@kms_setmode@basic-clone-single-crtc: - fi-kbl-8809g: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4579]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/fi-kbl-8809g/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - {bat-mtlp-6}: [ABORT][14] ([i915#8180]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/bat-mtlp-6/igt@core_hotunplug@unbind-rebind.html * igt@i915_selftest@live@mman: - bat-rpls-2: [TIMEOUT][16] ([i915#6794] / [i915#7392]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/bat-rpls-2/igt@i915_selftest@live@mman.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/bat-rpls-2/igt@i915_selftest@live@mman.html #### Warnings #### * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: [SKIP][18] ([i915#3555] / [i915#4579]) -> [ABORT][19] ([i915#4579] / [i915#8260]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.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 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8180]: https://gitlab.freedesktop.org/drm/intel/issues/8180 [i915#8189]: https://gitlab.freedesktop.org/drm/intel/issues/8189 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8296]: https://gitlab.freedesktop.org/drm/intel/issues/8296 [i915#8298]: https://gitlab.freedesktop.org/drm/intel/issues/8298 [i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8397]: https://gitlab.freedesktop.org/drm/intel/issues/8397 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7310 -> IGTPW_9068 CI-20190529: 20190529 CI_DRM_13200: 0ae4ee2c735979030a0219218081eee661606921 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9068: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/index.html IGT_7310: 2f9acfea5e3a93303f71cbda6e80ba64b8d75a4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_pipe_crc_basic@compare-crc-sanitycheck -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/index.html [-- Attachment #2: Type: text/html, Size: 8117 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC 2023-05-30 4:58 [igt-dev] [PATCH i-g-t v2] i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC Swati Sharma 2023-05-30 16:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-05-31 12:48 ` Patchwork 2023-06-01 5:32 ` [igt-dev] [PATCH i-g-t v2] " Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-05-31 12:48 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 20884 bytes --] == Series Details == Series: i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC URL : https://patchwork.freedesktop.org/series/118537/ State : success == Summary == CI Bug Log - changes from IGT_7310_full -> IGTPW_9068_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between IGT_7310_full and IGTPW_9068_full: ### New IGT tests (3) ### * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9068_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][1] -> [FAIL][2] ([i915#2846]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk8/igt@gem_exec_fair@basic-deadline.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][5] -> [ABORT][6] ([i915#5566]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl7/igt@gen9_exec_parse@allowed-single.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl4/igt@gen9_exec_parse@allowed-single.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2346]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [PASS][9] -> [ABORT][10] ([i915#180]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][11] -> [FAIL][12] ([i915#79]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2122]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][15] ([fdo#109271]) +15 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2 (NEW): - {shard-rkl}: NOTRUN -> [SKIP][16] ([i915#5176]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4579]) +10 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-vga-1.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - {shard-tglu}: [ABORT][18] ([i915#8211] / [i915#8234]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-tglu-10/igt@gem_barrier_race@remote-request@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-tglu-8/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][20] ([i915#6268]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][22] ([i915#2842]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - {shard-tglu}: [FAIL][24] ([i915#2842]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-tglu-7/igt@gem_exec_fair@basic-throttle@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-tglu-6/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - {shard-dg1}: [FAIL][26] ([i915#3591]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-rkl}: [SKIP][28] ([i915#1397]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-rkl-4/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_selftest@live@workarounds: - {shard-dg1}: [ABORT][30] ([i915#4983]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-dg1-16/igt@i915_selftest@live@workarounds.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-dg1-15/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - {shard-rkl}: [FAIL][32] ([i915#3743]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-rkl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][34] ([IGT#6] / [i915#2346]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - {shard-rkl}: [FAIL][36] ([i915#8292]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html #### Warnings #### * igt@kms_content_protection@lic: - shard-glk: [SKIP][38] ([IGT#6] / [fdo#109271] / [i915#4579]) -> [SKIP][39] ([fdo#109271] / [i915#4579]) +24 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk3/igt@kms_content_protection@lic.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk5/igt@kms_content_protection@lic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][40] ([IGT#6] / [i915#2346]) -> [FAIL][41] ([i915#2346]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: [FAIL][42] ([IGT#6] / [i915#4767]) -> [FAIL][43] ([i915#4767]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][44] ([IGT#6] / [i915#7862]) -> [FAIL][45] ([i915#7862]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-apl: [SKIP][46] ([IGT#6] / [fdo#109271]) -> [SKIP][47] ([fdo#109271]) +552 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl7/igt@kms_psr@psr2_sprite_plane_onoff.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl7/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-glk: [SKIP][48] ([IGT#6] / [fdo#109271]) -> [SKIP][49] ([fdo#109271]) +401 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk2/igt@kms_vblank@pipe-d-wait-busy-hang.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk9/igt@kms_vblank@pipe-d-wait-busy-hang.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: [SKIP][50] ([IGT#6] / [fdo#109271] / [i915#533]) -> [SKIP][51] ([fdo#109271] / [i915#533]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl4/igt@kms_vblank@pipe-d-wait-idle.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html - shard-glk: [SKIP][52] ([IGT#6] / [fdo#109271] / [i915#533]) -> [SKIP][53] ([fdo#109271] / [i915#533]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-glk7/igt@kms_vblank@pipe-d-wait-idle.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-glk1/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_vrr@flip-suspend: - shard-apl: [SKIP][54] ([IGT#6] / [fdo#109271] / [i915#4579]) -> [SKIP][55] ([fdo#109271] / [i915#4579]) +18 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7310/shard-apl4/igt@kms_vrr@flip-suspend.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/shard-apl3/igt@kms_vrr@flip-suspend.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [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#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [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#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [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#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [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#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [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#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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [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#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [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#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7310 -> IGTPW_9068 CI-20190529: 20190529 CI_DRM_13200: 0ae4ee2c735979030a0219218081eee661606921 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9068: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/index.html IGT_7310: 2f9acfea5e3a93303f71cbda6e80ba64b8d75a4d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9068/index.html [-- Attachment #2: Type: text/html, Size: 17709 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC 2023-05-30 4:58 [igt-dev] [PATCH i-g-t v2] i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC Swati Sharma 2023-05-30 16:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-05-31 12:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2023-06-01 5:32 ` Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Kamil Konieczny @ 2023-06-01 5:32 UTC (permalink / raw) To: igt-dev On 2023-05-30 at 10:28:10 +0530, Swati Sharma wrote: > Removed hard-coded PIPE_A while computing CRC. > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/i915/kms_fbcon_fbt.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/tests/i915/kms_fbcon_fbt.c b/tests/i915/kms_fbcon_fbt.c > index 831ec867..6c557dca 100644 > --- a/tests/i915/kms_fbcon_fbt.c > +++ b/tests/i915/kms_fbcon_fbt.c > @@ -39,7 +39,7 @@ IGT_TEST_DESCRIPTION("Test the relationship between fbcon and the frontbuffer " > #define MAX_CONNECTORS 32 > > struct drm_info { > - int fd, debugfs_fd; > + int fd, debugfs_fd, crtc_id; > struct igt_fb fb; > drmModeResPtr res; > drmModeConnectorPtr connectors[MAX_CONNECTORS]; > @@ -117,9 +117,10 @@ static bool fbc_check_cursor_blinking(struct drm_info *drm) > igt_pipe_crc_t *pipe_crc; > igt_crc_t crc[2]; > bool ret; > - int i; > + int i, pipe; > > - pipe_crc = igt_pipe_crc_new(drm->fd, PIPE_A, IGT_PIPE_CRC_SOURCE_AUTO); > + pipe = kmstest_get_pipe_from_crtc_id(drm->fd, drm->crtc_id); > + pipe_crc = igt_pipe_crc_new(drm->fd, pipe, IGT_PIPE_CRC_SOURCE_AUTO); > > igt_pipe_crc_start(pipe_crc); > igt_pipe_crc_drain(pipe_crc); > @@ -165,7 +166,6 @@ static void set_mode_for_one_screen(struct drm_info *drm, > connector_possible_fn connector_possible) > { > int i, rc; > - uint32_t crtc_id; > drmModeModeInfoPtr mode; > uint32_t buffer_id; > drmModeConnectorPtr c = NULL; > @@ -182,7 +182,7 @@ static void set_mode_for_one_screen(struct drm_info *drm, > igt_require_f(i < drm->res->count_connectors, > "No connector available\n"); > > - crtc_id = kmstest_find_crtc_for_connector(drm->fd, drm->res, c, 0); > + drm->crtc_id = kmstest_find_crtc_for_connector(drm->fd, drm->res, c, 0); > > buffer_id = igt_create_fb(drm->fd, mode->hdisplay, mode->vdisplay, > DRM_FORMAT_XRGB8888, > @@ -193,7 +193,7 @@ static void set_mode_for_one_screen(struct drm_info *drm, > mode->hdisplay, mode->vdisplay, > kmstest_connector_type_str(c->connector_type)); > > - rc = drmModeSetCrtc(drm->fd, crtc_id, buffer_id, 0, 0, > + rc = drmModeSetCrtc(drm->fd, drm->crtc_id, buffer_id, 0, 0, > &c->connector_id, 1, mode); > igt_assert_eq(rc, 0); > } > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-06-01 5:32 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-30 4:58 [igt-dev] [PATCH i-g-t v2] i915/kms_fbcon_fbt: remove hard-coded PIPE_A while computing CRC Swati Sharma 2023-05-30 16:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-05-31 12:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-06-01 5:32 ` [igt-dev] [PATCH i-g-t v2] " Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox