* [igt-dev] [PATCH i-g-t v8] tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases @ 2018-07-27 20:48 Radhakrishna Sripada 2018-07-27 23:08 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases (rev6) Patchwork 2018-07-28 2:52 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Radhakrishna Sripada @ 2018-07-27 20:48 UTC (permalink / raw) To: igt-dev; +Cc: Anusha Srivatsa, Dhinakaran Pandiyan, Daniel Vetter From: Anusha Srivatsa <anusha.srivatsa@intel.com> Cleanup the testcases by moving the platform checks to a single function. The earlier version of the path is posted here [1] v2: Make use of the property enums to get the supported rotations v3: Move hardcodings to a single function(Ville) v4: Include the cherryview exception for reflect subtest(Maarten) v5: Rebase and move the check from CNL to ICL for reflect-x case v6: Fix the CI regression v7: rebase v8: Move the reflect-x check back to gen10(DK) [1]: https://patchwork.freedesktop.org/patch/209647/ Cc: Radhakrishna Sripada <radhakrishna.sripada@intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Daniel Vetter <daniel.vetter@intel.com> Cc: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Mika Kahola <mika.kahola@intel.com> Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com> Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> --- tests/kms_rotation_crc.c | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index 6cb5858adb0f..a65ef1e1501e 100644 --- a/tests/kms_rotation_crc.c +++ b/tests/kms_rotation_crc.c @@ -43,6 +43,7 @@ typedef struct { uint32_t override_fmt; uint64_t override_tiling; int devid; + int gen; } data_t; typedef struct { @@ -284,6 +285,17 @@ static void prepare_fbs(data_t *data, igt_output_t *output, igt_plane_set_position(plane, data->pos_x, data->pos_y); } +static void igt_check_rotation(data_t *data) +{ + if (data->rotation & (IGT_ROTATION_90 | IGT_ROTATION_270)) + igt_require(data->gen >= 9); + if (data->rotation & IGT_REFLECT_X) + igt_require(data->gen >= 10 || + (IS_CHERRYVIEW(data->devid) && (data->rotation & IGT_ROTATION_0))); + if (data->rotation & IGT_ROTATION_180) + igt_require(data->gen >= 4); +} + static void test_single_case(data_t *data, enum pipe pipe, igt_output_t *output, igt_plane_t *plane, enum rectangle_type rect, @@ -352,15 +364,18 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form igt_display_require_output(display); + igt_check_rotation(data); + for_each_pipe_with_valid_output(display, pipe, output) { igt_plane_t *plane; int i, j; - if (IS_CHERRYVIEW(data->devid) && pipe != PIPE_B) - continue; - igt_output_set_pipe(output, pipe); + if (IS_CHERRYVIEW(data->devid) && (data->rotation & IGT_REFLECT_X) && + pipe != kmstest_pipe_to_index('B')) + continue; + plane = igt_output_get_plane_type(output, plane_type); igt_require(igt_plane_has_prop(plane, IGT_PLANE_ROTATION)); @@ -521,14 +536,13 @@ igt_main }; data_t data = {}; - int gen = 0; igt_skip_on_simulation(); igt_fixture { data.gfx_fd = drm_open_driver_master(DRIVER_INTEL); data.devid = intel_get_drm_devid(data.gfx_fd); - gen = intel_gen(data.devid); + data.gen = intel_gen(data.devid); kmstest_set_vt_graphics_mode(); @@ -541,16 +555,12 @@ igt_main igt_subtest_f("%s-rotation-%s", plane_test_str(subtest->plane), rot_test_str(subtest->rot)) { - igt_require(!(subtest->rot & - (IGT_ROTATION_90 | IGT_ROTATION_270)) || - gen >= 9); data.rotation = subtest->rot; test_plane_rotation(&data, subtest->plane, false); } } igt_subtest_f("sprite-rotation-90-pos-100-0") { - igt_require(gen >= 9); data.rotation = IGT_ROTATION_90; data.pos_x = 100, data.pos_y = 0; @@ -560,7 +570,6 @@ igt_main data.pos_y = 0; igt_subtest_f("bad-pixel-format") { - igt_require(gen >= 9); data.rotation = IGT_ROTATION_90; data.override_fmt = DRM_FORMAT_RGB565; test_plane_rotation(&data, DRM_PLANE_TYPE_PRIMARY, true); @@ -568,7 +577,6 @@ igt_main data.override_fmt = 0; igt_subtest_f("bad-tiling") { - igt_require(gen >= 9); data.rotation = IGT_ROTATION_90; data.override_tiling = LOCAL_I915_FORMAT_MOD_X_TILED; test_plane_rotation(&data, DRM_PLANE_TYPE_PRIMARY, true); @@ -579,9 +587,6 @@ igt_main igt_subtest_f("primary-%s-reflect-x-%s", tiling_test_str(reflect_x->tiling), rot_test_str(reflect_x->rot)) { - igt_require(gen >= 10 || - (IS_CHERRYVIEW(data.devid) && reflect_x->rot == IGT_ROTATION_0 - && reflect_x->tiling == LOCAL_I915_FORMAT_MOD_X_TILED)); data.rotation = (IGT_REFLECT_X | reflect_x->rot); data.override_tiling = reflect_x->tiling; test_plane_rotation(&data, DRM_PLANE_TYPE_PRIMARY, false); @@ -596,7 +601,7 @@ igt_main enum pipe pipe; igt_output_t *output; - igt_require(gen >= 9); + igt_require(data.gen >= 9); igt_display_require_output(&data.display); for_each_pipe_with_valid_output(&data.display, pipe, output) { -- 2.9.3 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases (rev6) 2018-07-27 20:48 [igt-dev] [PATCH i-g-t v8] tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases Radhakrishna Sripada @ 2018-07-27 23:08 ` Patchwork 2018-07-28 2:52 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2018-07-27 23:08 UTC (permalink / raw) To: Radhakrishna Sripada; +Cc: igt-dev == Series Details == Series: tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases (rev6) URL : https://patchwork.freedesktop.org/series/40553/ State : success == Summary == = CI Bug Log - changes from CI_DRM_4562 -> IGTPW_1666 = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/40553/revisions/6/mbox/ == Known issues == Here are the changes found in IGTPW_1666 that come from known issues: === IGT changes === ==== Issues hit ==== igt@debugfs_test@read_all_entries: fi-snb-2520m: PASS -> INCOMPLETE (fdo#103713) ==== Possible fixes ==== igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: fi-ivb-3520m: FAIL (fdo#103375) -> PASS +2 {fi-bdw-samus}: DMESG-WARN -> PASS igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: {fi-cfl-8109u}: DMESG-WARN (fdo#107345) -> PASS +1 igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: {fi-cfl-8109u}: INCOMPLETE (fdo#106070) -> PASS ==== Warnings ==== {igt@kms_psr@primary_page_flip}: fi-cnl-psr: DMESG-WARN (fdo#107372) -> DMESG-FAIL (fdo#107372) {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#103713 https://bugs.freedesktop.org/show_bug.cgi?id=103713 fdo#106070 https://bugs.freedesktop.org/show_bug.cgi?id=106070 fdo#107345 https://bugs.freedesktop.org/show_bug.cgi?id=107345 fdo#107372 https://bugs.freedesktop.org/show_bug.cgi?id=107372 == Participating hosts (53 -> 46) == Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-icl-u fi-byt-clapper == Build changes == * IGT: IGT_4579 -> IGTPW_1666 CI_DRM_4562: 99bbd80f75cdcf28699ffd3c93a714ca4a89b962 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1666: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1666/ IGT_4579: a21999477545c2aed1e6a80dc93f87368614c7e5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1666/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases (rev6) 2018-07-27 20:48 [igt-dev] [PATCH i-g-t v8] tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases Radhakrishna Sripada 2018-07-27 23:08 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases (rev6) Patchwork @ 2018-07-28 2:52 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2018-07-28 2:52 UTC (permalink / raw) To: Radhakrishna Sripada; +Cc: igt-dev == Series Details == Series: tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases (rev6) URL : https://patchwork.freedesktop.org/series/40553/ State : success == Summary == = CI Bug Log - changes from IGT_4579_full -> IGTPW_1666_full = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/40553/revisions/6/mbox/ == Known issues == Here are the changes found in IGTPW_1666_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_workarounds@suspend-resume: shard-glk: PASS -> FAIL (fdo#103375) igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: shard-glk: PASS -> FAIL (fdo#105454, fdo#106509) igt@kms_cursor_legacy@all-pipes-torture-bo: shard-glk: PASS -> INCOMPLETE (fdo#103359, k.org#198133) igt@kms_draw_crc@draw-method-xrgb8888-render-xtiled: shard-glk: PASS -> FAIL (fdo#107161) igt@kms_flip@plain-flip-fb-recreate: shard-glk: PASS -> FAIL (fdo#100368) igt@kms_rotation_crc@sprite-rotation-180: shard-snb: PASS -> FAIL (fdo#103925) igt@kms_universal_plane@cursor-fb-leak-pipe-c: shard-apl: PASS -> FAIL (fdo#107241) igt@kms_vblank@pipe-c-accuracy-idle: shard-glk: PASS -> FAIL (fdo#102583) igt@perf@rc6-disable: shard-kbl: PASS -> FAIL (fdo#103179) igt@testdisplay: shard-glk: PASS -> INCOMPLETE (fdo#103359, k.org#198133, fdo#107093) ==== Possible fixes ==== igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: shard-glk: FAIL (fdo#105363) -> PASS igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: shard-snb: DMESG-WARN -> PASS igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc: shard-snb: INCOMPLETE (fdo#105411) -> SKIP igt@kms_plane_multiple@atomic-pipe-a-tiling-x: shard-snb: FAIL (fdo#103166) -> PASS igt@kms_setmode@basic: shard-apl: FAIL (fdo#99912) -> PASS igt@perf@blocking: shard-hsw: FAIL (fdo#102252) -> PASS igt@pm_rpm@gem-execbuf: shard-glk: FAIL (fdo#106539) -> PASS +3 shard-apl: FAIL (fdo#106539) -> PASS shard-kbl: FAIL (fdo#106539) -> PASS shard-hsw: FAIL (fdo#106539) -> PASS igt@pm_rpm@modeset-lpsp: shard-glk: FAIL (fdo#106539) -> SKIP +1 fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368 fdo#102252 https://bugs.freedesktop.org/show_bug.cgi?id=102252 fdo#102583 https://bugs.freedesktop.org/show_bug.cgi?id=102583 fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166 fdo#103179 https://bugs.freedesktop.org/show_bug.cgi?id=103179 fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359 fdo#103375 https://bugs.freedesktop.org/show_bug.cgi?id=103375 fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925 fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363 fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411 fdo#105454 https://bugs.freedesktop.org/show_bug.cgi?id=105454 fdo#106509 https://bugs.freedesktop.org/show_bug.cgi?id=106509 fdo#106539 https://bugs.freedesktop.org/show_bug.cgi?id=106539 fdo#107093 https://bugs.freedesktop.org/show_bug.cgi?id=107093 fdo#107161 https://bugs.freedesktop.org/show_bug.cgi?id=107161 fdo#107241 https://bugs.freedesktop.org/show_bug.cgi?id=107241 fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912 k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133 == Participating hosts (5 -> 5) == No changes in participating hosts == Build changes == * IGT: IGT_4579 -> IGTPW_1666 * Linux: CI_DRM_4560 -> CI_DRM_4562 CI_DRM_4560: b73c0ddef408783e556741ac9d3679b7d153e3e1 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_4562: 99bbd80f75cdcf28699ffd3c93a714ca4a89b962 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1666: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1666/ IGT_4579: a21999477545c2aed1e6a80dc93f87368614c7e5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1666/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-07-28 2:52 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-07-27 20:48 [igt-dev] [PATCH i-g-t v8] tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases Radhakrishna Sripada 2018-07-27 23:08 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_rotation_crc: Move platform checks to one place for non exhaust fence cases (rev6) Patchwork 2018-07-28 2:52 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).