Re: [igt-dev] [v5 i-g-t] tests/kms_busy: Limit the execution to two pipes
From: Gupta, Anshuman <hidden>
Date: 2021-05-26 08:05:31
-----Original Message----- From: Modem, Bhanuprakash <redacted> Sent: Monday, May 24, 2021 2:22 PM To: Gupta, Anshuman <redacted>; igt- dev@lists.freedesktop.org Cc: Joshi, Kunal1 <redacted>; Latvala, Petri [off-list ref]; Kunche, Kishore [off-list ref]; Shankar, Uma [off-list ref]; B S, Karthik [off-list ref] Subject: RE: [igt-dev] [v5 i-g-t] tests/kms_busy: Limit the execution to two pipesquoted
From: Gupta, Anshuman <redacted> Sent: Monday, May 24, 2021 10:24 AM To: Modem, Bhanuprakash <redacted> Cc: igt-dev@lists.freedesktop.org; Joshi, Kunal1 [off-list ref]; Latvala, Petri [off-list ref]; Kunche, Kishore [off-list ref] Subject: Re: [igt-dev] [v5 i-g-t] tests/kms_busy: Limit the execution to two pipes On 2021-04-12 at 22:27:51 +0530, Bhanuprakash Modem wrote:quoted
As all pipes are symmetric, restrict the execution to two pipes can save lot of CI time.Above statement is not correct, all pipes are not symmetric, AFAIK PIPE_A has lower power capability with DMC save/restore (low power single pipe) Which is even extend to PIPE_B on XE_LPD, which adds DMC save/restore even for PIPE_B as well (low power dual pipe). please mention the property of each pipe in commit message, so it can be known, we should not loose any validation coverage in order to save CI time. This patch doesn't choose distinct crtc's to run the test.Actually, we are not touching any crtc properties here, these tests will perform "page flip" (or) "modeset" by injecting the HANG. I am not sure that pipe's power capabilities effects flip/modeset. If it effects, we must find a way to identify distinct CRTCs, else restricting the execution to pipe A & B seems fine to me.
Above mentioned pipe properties related to power was known to me, There can be other distinct pipe properties as well. We can can't overlook any pipe power capabilities, and assume it won't impact flip or modeset. We had observed underruns from flips/modeset related test in past. In my opinion there is no harm to execute these test on distinct crtc. Thanks, Anshuman.
@Anshuman, Please suggest. And, sure I'll update the commit message in next rev. - Bhanuquoted
Thanks, Anshuman Gupta.quoted
If we want to execute on all pipes, we need to pass an extra argument "-e" indicates extended. Example: ./build/tests/kms_busy -e --r basic V2, V3: * Fix the typo in args handler (Petri) V4: * Handle clampling cleanly (Petri) * Restore lost test coverage in the previous version (Petri/Bhanu) V5: * Fix two subtest with the name "basic" (Petri) Cc: Karthik B S <redacted> Cc: Latvala Petri <redacted> Cc: Kunche Kishore <redacted> Cc: Uma Shankar <redacted> Reviewed-by: Kunal Joshi <redacted> (V3) Signed-off-by: Bhanuprakash Modem[off-list ref]quoted
quoted
--- tests/kms_busy.c | 139 ++++++++++++++++++++++++++++++----------------- 1 file changed, 89 insertions(+), 50 deletions(-)diff --git a/tests/kms_busy.c b/tests/kms_busy.c indexdf1f8e11a..095896db5 100644--- a/tests/kms_busy.c +++ b/tests/kms_busy.c@@ -30,6 +30,11 @@ IGT_TEST_DESCRIPTION("Basic check of KMS ABI with busyframebuffers."); +/* restricted pipe count */ +#define CRTC_RESTRICT_CNT 2 + +static bool all_pipes = false; + static igt_output_t * set_fb_on_crtc(igt_display_t *dpy, int pipe, struct igt_fb *fb) {@@ -287,10 +292,41 @@ static voidtest_pageflip_modeset_hang(igt_display_t*dpy, enum pipe pipe)quoted
igt_remove_fb(dpy->drm_fd, &fb); } -igt_main +static int opt_handler(int opt, int opt_index, void *data) { + switch (opt) { + case 'e': + all_pipes = true; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +const char *help_str = + " -e \tRun on all pipes. (By default subtests will run on twopipes)\n";quoted
+ +igt_main_args("e", NULL, help_str, opt_handler, NULL) { igt_display_t display = { .drm_fd = -1, .n_pipes = IGT_MAX_PIPES }; - enum pipe n; + + int crtc_count; + int i; + struct { + const char *name; + bool modeset; + bool hang_newfb; + bool reset; + } tests[] = { + { "extended-pageflip-hang-oldfb", false, false, false }, + { "extended-pageflip-hang-newfb", false, true, false }, + { "extended-modeset-hang-oldfb", true, false, false }, + { "extended-modeset-hang-newfb", true, true, false }, + { "extended-modeset-hang-oldfb-with-reset", true, false, true},quoted
quoted
+ { "extended-modeset-hang-newfb-with-reset", true, true,true },quoted
quoted
+ }; igt_fixture { int fd = drm_open_driver_master(DRIVER_INTEL);@@ -318,70 +354,73 @@ igt_main } } - for_each_pipe_static(n) igt_subtest_group { - igt_hang_t hang; - + igt_subtest_with_dynamic("basic-hang") { + enum pipe pipe; + igt_output_t *output; + int count = 0; + igt_hang_t hang = igt_allow_hang(display.drm_fd, 0, 0); errno = 0; - igt_fixture { - igt_display_require_output_on_pipe(&display, n); - } - - igt_subtest_f("basic-flip-pipe-%s", kmstest_pipe_name(n)) { - test_flip(&display, n, false); - } - igt_subtest_f("basic-modeset-pipe-%s",kmstest_pipe_name(n)) {quoted
quoted
- - test_flip(&display, n, true); - } - - igt_fixture { - hang = igt_allow_hang(display.drm_fd, 0, 0); - } + crtc_count = (all_pipes)? display.n_pipes :CRTC_RESTRICT_CNT;quoted
quoted
+ for_each_pipe_with_valid_output(&display, pipe, output) { + igt_dynamic_f("flip-pipe-%s",kmstest_pipe_name(pipe))quoted
quoted
+ test_flip(&display, pipe, false); + igt_dynamic_f("modeset-pipe-%s",kmstest_pipe_name(pipe))quoted
quoted
+ test_flip(&display, pipe, true); - igt_subtest_f("extended-pageflip-modeset-hang-oldfb-pipe-%s",quoted
quoted
- kmstest_pipe_name(n)) { - test_pageflip_modeset_hang(&display, n); + if (++count >= crtc_count) + break; } - igt_fixture - igt_require(display.is_atomic); + igt_disallow_hang(display.drm_fd, hang); + } - igt_subtest_f("extended-pageflip-hang-oldfb-pipe-%s", - kmstest_pipe_name(n)) - test_hang(&display, n, false, false); + igt_subtest_with_dynamic("extended-pageflip-modeset-hang-oldfb"){quoted
quoted
+ enum pipe pipe; + igt_output_t *output; + int count = 0; + igt_hang_t hang = igt_allow_hang(display.drm_fd, 0, 0); + errno = 0; - igt_subtest_f("extended-pageflip-hang-newfb-pipe-%s", - kmstest_pipe_name(n)) - test_hang(&display, n, false, true); + crtc_count = (all_pipes)? display.n_pipes :CRTC_RESTRICT_CNT;quoted
quoted
+ for_each_pipe_with_valid_output(&display, pipe, output) { + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) + test_pageflip_modeset_hang(&display, pipe); - igt_subtest_f("extended-modeset-hang-oldfb-pipe-%s", - kmstest_pipe_name(n)) - test_hang(&display, n, true, false); + if (++count >= crtc_count) + break; + } - igt_subtest_f("extended-modeset-hang-newfb-pipe-%s", - kmstest_pipe_name(n)) - test_hang(&display, n, true, true); + igt_disallow_hang(display.drm_fd, hang); + } - igt_subtest_f("extended-modeset-hang-oldfb-with-reset-pipe-%s",quoted
quoted
- kmstest_pipe_name(n)) { - igt_set_module_param_int(display.drm_fd,"force_reset_modeset_test", 1);quoted
+ for (i = 0; i < sizeof(tests) / sizeof (tests[0]); i++) { + igt_subtest_with_dynamic(tests[i].name) { + enum pipe pipe; + igt_output_t *output; + int count = 0; + igt_hang_t hang; + errno = 0; - test_hang(&display, n, true, false); + igt_require(display.is_atomic); + hang = igt_allow_hang(display.drm_fd, 0, 0); - igt_set_module_param_int(display.drm_fd,"force_reset_modeset_test", 0);quoted
- } + crtc_count = (all_pipes)? display.n_pipes :CRTC_RESTRICT_CNT;quoted
+ for_each_pipe_with_valid_output(&display, pipe,output) {quoted
quoted
+ igt_dynamic_f("pipe-%s",kmstest_pipe_name(pipe)) {quoted
quoted
+ if (tests[i].reset) +igt_set_module_param_int(display.drm_fd,quoted
"force_reset_modeset_test", 1);quoted
- igt_subtest_f("extended-modeset-hang-newfb-with-reset-pipe-%s",quoted
quoted
- kmstest_pipe_name(n)) { - igt_set_module_param_int(display.drm_fd,"force_reset_modeset_test", 1);quoted
+ test_hang(&display, pipe,tests[i].modeset,quoted
tests[i].hang_newfb);quoted
- test_hang(&display, n, true, true); + if (tests[i].reset) +igt_set_module_param_int(display.drm_fd,quoted
"force_reset_modeset_test", 0);quoted
+ } - igt_set_module_param_int(display.drm_fd,"force_reset_modeset_test", 0);quoted
- } + if (++count >= crtc_count) + break; + } - igt_fixture { igt_disallow_hang(display.drm_fd, hang); } } -- 2.20.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev