* [igt PATCH 0/4] add support for testing clone output configs
@ 2013-08-05 11:45 Imre Deak
2013-08-05 11:45 ` [igt PATCH 1/4] lib: shorten DP/eDP connector names Imre Deak
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Imre Deak @ 2013-08-05 11:45 UTC (permalink / raw)
To: intel-gfx
Based on irc discussions with Chris/Daniel we needed a new test case
that iterates through all clone output configurations, so this patchset
adds one.
I tested it on ilk, ivb, hsw. One case triggered a DP link training error
on ilk. Got some HW state readout/check WARNS on others. On my hsw
desktop some hdmi+dp configurations fail, although they seem to be
valid. Also here enabling hdmi sometimes ends up outputting something on
the dp connector, so perhaps it's some sort of hdmi vs. dp physical port
sharing that Ville told me about, but I haven't figured yet out the
exact reason for any of these.
Note that this will take a while to run especially if you have 3
displays connected...
Imre Deak (4):
lib: shorten DP/eDP connector names
lib: handle SIGSEGV similarly to other error signals
lib: add subtest extra command line option handling
tests: add kms_setmode
lib/drmtest.c | 91 ++++++-
lib/drmtest.h | 6 +
tests/.gitignore | 1 +
tests/Makefile.am | 1 +
tests/kms_setmode.c | 739 ++++++++++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 825 insertions(+), 13 deletions(-)
create mode 100644 tests/kms_setmode.c
--
1.8.3.2
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt PATCH 1/4] lib: shorten DP/eDP connector names 2013-08-05 11:45 [igt PATCH 0/4] add support for testing clone output configs Imre Deak @ 2013-08-05 11:45 ` Imre Deak 2013-08-05 11:45 ` [igt PATCH 2/4] lib: handle SIGSEGV similarly to other error signals Imre Deak ` (2 subsequent siblings) 3 siblings, 0 replies; 10+ messages in thread From: Imre Deak @ 2013-08-05 11:45 UTC (permalink / raw) To: intel-gfx Signed-off-by: Imre Deak <imre.deak@intel.com> --- lib/drmtest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/drmtest.c b/lib/drmtest.c index e599af7..d51f708 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -1254,11 +1254,11 @@ struct type_name connector_type_names[] = { { DRM_MODE_CONNECTOR_LVDS, "LVDS" }, { DRM_MODE_CONNECTOR_Component, "component" }, { DRM_MODE_CONNECTOR_9PinDIN, "9-pin DIN" }, - { DRM_MODE_CONNECTOR_DisplayPort, "DisplayPort" }, + { DRM_MODE_CONNECTOR_DisplayPort, "DP" }, { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" }, { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" }, { DRM_MODE_CONNECTOR_TV, "TV" }, - { DRM_MODE_CONNECTOR_eDP, "Embedded DisplayPort" }, + { DRM_MODE_CONNECTOR_eDP, "eDP" }, }; type_name_fn(connector_type) -- 1.8.3.2 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt PATCH 2/4] lib: handle SIGSEGV similarly to other error signals 2013-08-05 11:45 [igt PATCH 0/4] add support for testing clone output configs Imre Deak 2013-08-05 11:45 ` [igt PATCH 1/4] lib: shorten DP/eDP connector names Imre Deak @ 2013-08-05 11:45 ` Imre Deak 2013-08-05 11:45 ` [igt PATCH 3/4] lib: add subtest extra command line option handling Imre Deak 2013-08-05 11:45 ` [igt PATCH 4/4] tests: add kms_setmode Imre Deak 3 siblings, 0 replies; 10+ messages in thread From: Imre Deak @ 2013-08-05 11:45 UTC (permalink / raw) To: intel-gfx Signed-off-by: Imre Deak <imre.deak@intel.com> --- lib/drmtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/drmtest.c b/lib/drmtest.c index d51f708..afbaa35 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -1309,7 +1309,7 @@ static int exit_handler_count; static bool exit_handler_disabled; static sigset_t saved_sig_mask; static const int handled_signals[] = - { SIGINT, SIGHUP, SIGTERM, SIGQUIT, SIGPIPE, SIGABRT }; + { SIGINT, SIGHUP, SIGTERM, SIGQUIT, SIGPIPE, SIGABRT, SIGSEGV }; static int install_sig_handler(int sig_num, sighandler_t handler) { -- 1.8.3.2 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt PATCH 3/4] lib: add subtest extra command line option handling 2013-08-05 11:45 [igt PATCH 0/4] add support for testing clone output configs Imre Deak 2013-08-05 11:45 ` [igt PATCH 1/4] lib: shorten DP/eDP connector names Imre Deak 2013-08-05 11:45 ` [igt PATCH 2/4] lib: handle SIGSEGV similarly to other error signals Imre Deak @ 2013-08-05 11:45 ` Imre Deak 2013-08-06 9:09 ` Daniel Vetter 2013-08-05 11:45 ` [igt PATCH 4/4] tests: add kms_setmode Imre Deak 3 siblings, 1 reply; 10+ messages in thread From: Imre Deak @ 2013-08-05 11:45 UTC (permalink / raw) To: intel-gfx At the moment any command line option handling done by tests will interfere with the option handling of the subtest interface. To fix this add a new version of the subtest_init function accepting optional short and long command line options. Merge these together with the subtest interface's own long options and handle both together in the same getopt_long call. Signed-off-by: Imre Deak <imre.deak@intel.com> --- lib/drmtest.c | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++------- lib/drmtest.h | 6 +++++ 2 files changed, 81 insertions(+), 10 deletions(-) diff --git a/lib/drmtest.c b/lib/drmtest.c index afbaa35..7a68091 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -657,7 +657,21 @@ void drmtest_stop_signal_helper(void) static bool list_subtests = false; static char *run_single_subtest = NULL; -void drmtest_subtest_init(int argc, char **argv) +static void print_usage(const char *command_str, const char *help_str, + bool output_on_stderr) +{ + FILE *f = output_on_stderr ? stderr : stdout; + + fprintf(f, "Usage: %s [OPTIONS]\n" + " --list-subtests\n" + " --run-subtest <pattern>\n" + "%s\n", command_str, help_str); +} + +int drmtest_subtest_init_parse_opts(int argc, char **argv, const char *opts, + struct option *long_opts, + const char *help_str, + drmtest_opt_handler_t opt_handler) { int c, option_index = 0; static struct option long_options[] = { @@ -665,24 +679,75 @@ void drmtest_subtest_init(int argc, char **argv) {"run-subtest", 1, 0, 'r'}, {NULL, 0, 0, 0,} }; + struct option help_opt = + {"help", 0, 0, 'h'}; + const char *command_str; + char *short_opts; + struct option *combined_opts; + int extra_opts; + int all_opts; + int ret = 0; + + command_str = argv[0]; + if (strrchr(command_str, '/')) + command_str = strrchr(command_str, '/') + 1; + + all_opts = 0; + while (long_opts && long_opts[all_opts].name) + all_opts++; + extra_opts = all_opts; + if (help_str) + all_opts++; + all_opts += ARRAY_SIZE(long_options); + + combined_opts = malloc(all_opts * sizeof(*combined_opts)); + memcpy(combined_opts, long_opts, extra_opts * sizeof(*combined_opts)); + if (help_str) { + combined_opts[extra_opts] = help_opt; + extra_opts++; + } + memcpy(&combined_opts[extra_opts], long_options, + ARRAY_SIZE(long_options) * sizeof(*combined_opts)); - /* supress getopt errors about unknown options */ - opterr = 0; - /* restrict the option parsing to long option names to avoid collisions - * with options the test declares */ - while((c = getopt_long(argc, argv, "", - long_options, &option_index)) != -1) { + ret = asprintf(&short_opts, "%s%s", + opts ? opts : "", help_str ? "h" : ""); + assert(ret >= 0); + + while ((c = getopt_long(argc, argv, short_opts, combined_opts, + &option_index)) != -1) { switch(c) { case 'l': - list_subtests = true; - goto out; + if (!run_single_subtest) + list_subtests = true; + break; case 'r': - run_single_subtest = strdup(optarg); + if (!list_subtests) + run_single_subtest = strdup(optarg); + break; + case '?': + case 'h': + print_usage(command_str, help_str, c == '?'); + ret = c == '?' ? -2 : -1; goto out; + default: + ret = opt_handler(c, option_index); + if (ret) + goto out; } } out: + return ret; +} + +void drmtest_subtest_init(int argc, char **argv) +{ + /* supress getopt errors about unknown options */ + opterr = 0; + + (void)drmtest_subtest_init_parse_opts(argc, argv, NULL, NULL, NULL, + NULL); + /* reset opt parsing */ optind = 1; } diff --git a/lib/drmtest.h b/lib/drmtest.h index 172bed5..5ca7e2e 100644 --- a/lib/drmtest.h +++ b/lib/drmtest.h @@ -94,6 +94,12 @@ void drmtest_progress(const char *header, uint64_t i, uint64_t total); /* subtest infrastructure */ void drmtest_subtest_init(int argc, char **argv); +typedef int (*drmtest_opt_handler_t)(int opt, int opt_index); +struct option; +int drmtest_subtest_init_parse_opts(int argc, char **argv, const char *opts, + struct option *long_opts, + const char *help_str, + drmtest_opt_handler_t opt_handler); bool drmtest_run_subtest(const char *subtest_name); bool drmtest_only_list_subtests(void); -- 1.8.3.2 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt PATCH 3/4] lib: add subtest extra command line option handling 2013-08-05 11:45 ` [igt PATCH 3/4] lib: add subtest extra command line option handling Imre Deak @ 2013-08-06 9:09 ` Daniel Vetter 2013-08-16 11:07 ` Imre Deak 0 siblings, 1 reply; 10+ messages in thread From: Daniel Vetter @ 2013-08-06 9:09 UTC (permalink / raw) To: Imre Deak; +Cc: intel-gfx On Mon, Aug 05, 2013 at 02:45:25PM +0300, Imre Deak wrote: > At the moment any command line option handling done by tests will > interfere with the option handling of the subtest interface. To fix this > add a new version of the subtest_init function accepting optional short > and long command line options. Merge these together with the subtest > interface's own long options and handle both together in the same > getopt_long call. > > Signed-off-by: Imre Deak <imre.deak@intel.com> Hm, I've thought that getopt would filter the passed-in argv/argc arrays and we could run a second getopt afterwards without too much interfence (maybe we need to reset a few global getop state variables). But I'm not sure since I've never tried it out. Am I wrong? -Daniel > --- > lib/drmtest.c | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++------- > lib/drmtest.h | 6 +++++ > 2 files changed, 81 insertions(+), 10 deletions(-) > > diff --git a/lib/drmtest.c b/lib/drmtest.c > index afbaa35..7a68091 100644 > --- a/lib/drmtest.c > +++ b/lib/drmtest.c > @@ -657,7 +657,21 @@ void drmtest_stop_signal_helper(void) > static bool list_subtests = false; > static char *run_single_subtest = NULL; > > -void drmtest_subtest_init(int argc, char **argv) > +static void print_usage(const char *command_str, const char *help_str, > + bool output_on_stderr) > +{ > + FILE *f = output_on_stderr ? stderr : stdout; > + > + fprintf(f, "Usage: %s [OPTIONS]\n" > + " --list-subtests\n" > + " --run-subtest <pattern>\n" > + "%s\n", command_str, help_str); > +} > + > +int drmtest_subtest_init_parse_opts(int argc, char **argv, const char *opts, > + struct option *long_opts, > + const char *help_str, > + drmtest_opt_handler_t opt_handler) > { > int c, option_index = 0; > static struct option long_options[] = { > @@ -665,24 +679,75 @@ void drmtest_subtest_init(int argc, char **argv) > {"run-subtest", 1, 0, 'r'}, > {NULL, 0, 0, 0,} > }; > + struct option help_opt = > + {"help", 0, 0, 'h'}; > + const char *command_str; > + char *short_opts; > + struct option *combined_opts; > + int extra_opts; > + int all_opts; > + int ret = 0; > + > + command_str = argv[0]; > + if (strrchr(command_str, '/')) > + command_str = strrchr(command_str, '/') + 1; > + > + all_opts = 0; > + while (long_opts && long_opts[all_opts].name) > + all_opts++; > + extra_opts = all_opts; > + if (help_str) > + all_opts++; > + all_opts += ARRAY_SIZE(long_options); > + > + combined_opts = malloc(all_opts * sizeof(*combined_opts)); > + memcpy(combined_opts, long_opts, extra_opts * sizeof(*combined_opts)); > + if (help_str) { > + combined_opts[extra_opts] = help_opt; > + extra_opts++; > + } > + memcpy(&combined_opts[extra_opts], long_options, > + ARRAY_SIZE(long_options) * sizeof(*combined_opts)); > > - /* supress getopt errors about unknown options */ > - opterr = 0; > - /* restrict the option parsing to long option names to avoid collisions > - * with options the test declares */ > - while((c = getopt_long(argc, argv, "", > - long_options, &option_index)) != -1) { > + ret = asprintf(&short_opts, "%s%s", > + opts ? opts : "", help_str ? "h" : ""); > + assert(ret >= 0); > + > + while ((c = getopt_long(argc, argv, short_opts, combined_opts, > + &option_index)) != -1) { > switch(c) { > case 'l': > - list_subtests = true; > - goto out; > + if (!run_single_subtest) > + list_subtests = true; > + break; > case 'r': > - run_single_subtest = strdup(optarg); > + if (!list_subtests) > + run_single_subtest = strdup(optarg); > + break; > + case '?': > + case 'h': > + print_usage(command_str, help_str, c == '?'); > + ret = c == '?' ? -2 : -1; > goto out; > + default: > + ret = opt_handler(c, option_index); > + if (ret) > + goto out; > } > } > > out: > + return ret; > +} > + > +void drmtest_subtest_init(int argc, char **argv) > +{ > + /* supress getopt errors about unknown options */ > + opterr = 0; > + > + (void)drmtest_subtest_init_parse_opts(argc, argv, NULL, NULL, NULL, > + NULL); > + > /* reset opt parsing */ > optind = 1; > } > diff --git a/lib/drmtest.h b/lib/drmtest.h > index 172bed5..5ca7e2e 100644 > --- a/lib/drmtest.h > +++ b/lib/drmtest.h > @@ -94,6 +94,12 @@ void drmtest_progress(const char *header, uint64_t i, uint64_t total); > > /* subtest infrastructure */ > void drmtest_subtest_init(int argc, char **argv); > +typedef int (*drmtest_opt_handler_t)(int opt, int opt_index); > +struct option; > +int drmtest_subtest_init_parse_opts(int argc, char **argv, const char *opts, > + struct option *long_opts, > + const char *help_str, > + drmtest_opt_handler_t opt_handler); > bool drmtest_run_subtest(const char *subtest_name); > bool drmtest_only_list_subtests(void); > > -- > 1.8.3.2 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt PATCH 3/4] lib: add subtest extra command line option handling 2013-08-06 9:09 ` Daniel Vetter @ 2013-08-16 11:07 ` Imre Deak 2013-08-16 12:09 ` Daniel Vetter 0 siblings, 1 reply; 10+ messages in thread From: Imre Deak @ 2013-08-16 11:07 UTC (permalink / raw) To: Daniel Vetter; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 6054 bytes --] On Tue, 2013-08-06 at 11:09 +0200, Daniel Vetter wrote: > On Mon, Aug 05, 2013 at 02:45:25PM +0300, Imre Deak wrote: > > At the moment any command line option handling done by tests will > > interfere with the option handling of the subtest interface. To fix this > > add a new version of the subtest_init function accepting optional short > > and long command line options. Merge these together with the subtest > > interface's own long options and handle both together in the same > > getopt_long call. > > > > Signed-off-by: Imre Deak <imre.deak@intel.com> > > Hm, I've thought that getopt would filter the passed-in argv/argc arrays > and we could run a second getopt afterwards without too much interfence > (maybe we need to reset a few global getop state variables). But I'm not > sure since I've never tried it out. Am I wrong? Afaics getopt itself can't handle the long options (which we already have for subtests), it'll try to parse each character of the long option as a short one. We could still do the scanning twice by always using getopt_long, but there I don't like the fact that we would have to set opterr=0 and silently ignore invalid options. Also I thought that later we could add a check for clashing test case/subtest options and that's not possible by scanning twice. --Imre > -Daniel > > > --- > > lib/drmtest.c | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++------- > > lib/drmtest.h | 6 +++++ > > 2 files changed, 81 insertions(+), 10 deletions(-) > > > > diff --git a/lib/drmtest.c b/lib/drmtest.c > > index afbaa35..7a68091 100644 > > --- a/lib/drmtest.c > > +++ b/lib/drmtest.c > > @@ -657,7 +657,21 @@ void drmtest_stop_signal_helper(void) > > static bool list_subtests = false; > > static char *run_single_subtest = NULL; > > > > -void drmtest_subtest_init(int argc, char **argv) > > +static void print_usage(const char *command_str, const char *help_str, > > + bool output_on_stderr) > > +{ > > + FILE *f = output_on_stderr ? stderr : stdout; > > + > > + fprintf(f, "Usage: %s [OPTIONS]\n" > > + " --list-subtests\n" > > + " --run-subtest <pattern>\n" > > + "%s\n", command_str, help_str); > > +} > > + > > +int drmtest_subtest_init_parse_opts(int argc, char **argv, const char *opts, > > + struct option *long_opts, > > + const char *help_str, > > + drmtest_opt_handler_t opt_handler) > > { > > int c, option_index = 0; > > static struct option long_options[] = { > > @@ -665,24 +679,75 @@ void drmtest_subtest_init(int argc, char **argv) > > {"run-subtest", 1, 0, 'r'}, > > {NULL, 0, 0, 0,} > > }; > > + struct option help_opt = > > + {"help", 0, 0, 'h'}; > > + const char *command_str; > > + char *short_opts; > > + struct option *combined_opts; > > + int extra_opts; > > + int all_opts; > > + int ret = 0; > > + > > + command_str = argv[0]; > > + if (strrchr(command_str, '/')) > > + command_str = strrchr(command_str, '/') + 1; > > + > > + all_opts = 0; > > + while (long_opts && long_opts[all_opts].name) > > + all_opts++; > > + extra_opts = all_opts; > > + if (help_str) > > + all_opts++; > > + all_opts += ARRAY_SIZE(long_options); > > + > > + combined_opts = malloc(all_opts * sizeof(*combined_opts)); > > + memcpy(combined_opts, long_opts, extra_opts * sizeof(*combined_opts)); > > + if (help_str) { > > + combined_opts[extra_opts] = help_opt; > > + extra_opts++; > > + } > > + memcpy(&combined_opts[extra_opts], long_options, > > + ARRAY_SIZE(long_options) * sizeof(*combined_opts)); > > > > - /* supress getopt errors about unknown options */ > > - opterr = 0; > > - /* restrict the option parsing to long option names to avoid collisions > > - * with options the test declares */ > > - while((c = getopt_long(argc, argv, "", > > - long_options, &option_index)) != -1) { > > + ret = asprintf(&short_opts, "%s%s", > > + opts ? opts : "", help_str ? "h" : ""); > > + assert(ret >= 0); > > + > > + while ((c = getopt_long(argc, argv, short_opts, combined_opts, > > + &option_index)) != -1) { > > switch(c) { > > case 'l': > > - list_subtests = true; > > - goto out; > > + if (!run_single_subtest) > > + list_subtests = true; > > + break; > > case 'r': > > - run_single_subtest = strdup(optarg); > > + if (!list_subtests) > > + run_single_subtest = strdup(optarg); > > + break; > > + case '?': > > + case 'h': > > + print_usage(command_str, help_str, c == '?'); > > + ret = c == '?' ? -2 : -1; > > goto out; > > + default: > > + ret = opt_handler(c, option_index); > > + if (ret) > > + goto out; > > } > > } > > > > out: > > + return ret; > > +} > > + > > +void drmtest_subtest_init(int argc, char **argv) > > +{ > > + /* supress getopt errors about unknown options */ > > + opterr = 0; > > + > > + (void)drmtest_subtest_init_parse_opts(argc, argv, NULL, NULL, NULL, > > + NULL); > > + > > /* reset opt parsing */ > > optind = 1; > > } > > diff --git a/lib/drmtest.h b/lib/drmtest.h > > index 172bed5..5ca7e2e 100644 > > --- a/lib/drmtest.h > > +++ b/lib/drmtest.h > > @@ -94,6 +94,12 @@ void drmtest_progress(const char *header, uint64_t i, uint64_t total); > > > > /* subtest infrastructure */ > > void drmtest_subtest_init(int argc, char **argv); > > +typedef int (*drmtest_opt_handler_t)(int opt, int opt_index); > > +struct option; > > +int drmtest_subtest_init_parse_opts(int argc, char **argv, const char *opts, > > + struct option *long_opts, > > + const char *help_str, > > + drmtest_opt_handler_t opt_handler); > > bool drmtest_run_subtest(const char *subtest_name); > > bool drmtest_only_list_subtests(void); > > > > -- > > 1.8.3.2 > > > > _______________________________________________ > > Intel-gfx mailing list > > Intel-gfx@lists.freedesktop.org > > http://lists.freedesktop.org/mailman/listinfo/intel-gfx > [-- Attachment #1.2: This is a digitally signed message part --] [-- Type: application/pgp-signature, Size: 490 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt PATCH 3/4] lib: add subtest extra command line option handling 2013-08-16 11:07 ` Imre Deak @ 2013-08-16 12:09 ` Daniel Vetter 0 siblings, 0 replies; 10+ messages in thread From: Daniel Vetter @ 2013-08-16 12:09 UTC (permalink / raw) To: Imre Deak; +Cc: intel-gfx On Fri, Aug 16, 2013 at 02:07:07PM +0300, Imre Deak wrote: > On Tue, 2013-08-06 at 11:09 +0200, Daniel Vetter wrote: > > On Mon, Aug 05, 2013 at 02:45:25PM +0300, Imre Deak wrote: > > > At the moment any command line option handling done by tests will > > > interfere with the option handling of the subtest interface. To fix this > > > add a new version of the subtest_init function accepting optional short > > > and long command line options. Merge these together with the subtest > > > interface's own long options and handle both together in the same > > > getopt_long call. > > > > > > Signed-off-by: Imre Deak <imre.deak@intel.com> > > > > Hm, I've thought that getopt would filter the passed-in argv/argc arrays > > and we could run a second getopt afterwards without too much interfence > > (maybe we need to reset a few global getop state variables). But I'm not > > sure since I've never tried it out. Am I wrong? > > Afaics getopt itself can't handle the long options (which we already > have for subtests), it'll try to parse each character of the long option > as a short one. > > We could still do the scanning twice by always using getopt_long, but > there I don't like the fact that we would have to set opterr=0 and > silently ignore invalid options. Also I thought that later we could add > a check for clashing test case/subtest options and that's not possible > by scanning twice. Hm, just scanning with getopt_long twice was actually my idea. It's a bit ugly that we then can't check for unknown options. But since you have all already solved I think we could just move ahead with your patch here. So please push. Cheers, Daniel -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt PATCH 4/4] tests: add kms_setmode 2013-08-05 11:45 [igt PATCH 0/4] add support for testing clone output configs Imre Deak ` (2 preceding siblings ...) 2013-08-05 11:45 ` [igt PATCH 3/4] lib: add subtest extra command line option handling Imre Deak @ 2013-08-05 11:45 ` Imre Deak 2013-08-06 9:23 ` Daniel Vetter 3 siblings, 1 reply; 10+ messages in thread From: Imre Deak @ 2013-08-05 11:45 UTC (permalink / raw) To: intel-gfx Iterate through all valid/invalid crtc/connector combinations. At the moment only clone configurations are tested as the single output cases are tested already by testdisplay. Also from combinations where all connectors are on the same crtc (clone-single-crtc) only those are tested that are invalid, as I haven't found any machine that supports these (have to be GT2 with dvo and vga output). For configurations with one crtc per connector the FBs are per-crtc atm. Signed-off-by: Imre Deak <imre.deak@intel.com> --- tests/.gitignore | 1 + tests/Makefile.am | 1 + tests/kms_setmode.c | 739 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 741 insertions(+) create mode 100644 tests/kms_setmode.c diff --git a/tests/.gitignore b/tests/.gitignore index 451ab2d..8303526 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -90,6 +90,7 @@ getstats getversion kms_flip kms_render +kms_setmode prime_nv_api prime_nv_pcopy prime_nv_test diff --git a/tests/Makefile.am b/tests/Makefile.am index a59c25f..36caa2a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -39,6 +39,7 @@ TESTS_progs_M = \ gem_write_read_ring_switch \ kms_flip \ kms_render \ + kms_setmode \ $(NOUVEAU_TESTS_M) \ prime_self_import \ $(NULL) diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c new file mode 100644 index 0000000..8a1973d --- /dev/null +++ b/tests/kms_setmode.c @@ -0,0 +1,739 @@ +/* + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + * + * Authors: + * Imre Deak <imre.deak@intel.com> + */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include <assert.h> +#include <cairo.h> +#include <errno.h> +#include <stdint.h> +#include <unistd.h> +#include <string.h> +#include <getopt.h> +#include <sys/time.h> + +#include "drm_fourcc.h" +#include "drmtest.h" +#include "intel_bufmgr.h" +#include "intel_batchbuffer.h" +#include "intel_gpu_tools.h" + +#define MAX_CONNECTORS 10 +#define MAX_CRTCS 3 + +/* max combinations with repetitions */ +#define MAX_COMBINATION_COUNT \ + (MAX_CONNECTORS * MAX_CONNECTORS * MAX_CONNECTORS) +#define MAX_COMBINATION_ELEMS MAX_CRTCS + +static int drm_fd; +static int filter_test_id; +static bool dry_run; + +const drmModeModeInfo mode_640_480 = { + .name = "640x480", + .vrefresh = 60, + .clock = 25200, + + .hdisplay = 640, + .hsync_start = 656, + .hsync_end = 752, + .htotal = 800, + + .vdisplay = 480, + .vsync_start = 490, + .vsync_end = 492, + .vtotal = 525, + + .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC, +}; + +enum test_flags { + TEST_INVALID = 0x01, + TEST_CLONE = 0x02, + TEST_SINGLE_CRTC_CLONE = 0x04, + TEST_EXCLUSIVE_CRTC_CLONE = 0x08, +}; + +struct test_config { + const char *name; + enum test_flags flags; + drmModeRes *resources; +}; + +struct connector_config { + drmModeConnector *connector; + int crtc_idx; + bool connected; + drmModeModeInfo default_mode; +}; + +struct crtc_config { + int crtc_idx; + int crtc_id; + int pipe_id; + int connector_count; + struct connector_config *cconfs; + struct kmstest_fb fb_info; + drmModeModeInfo mode; +}; + +static bool drm_mode_equal(drmModeModeInfo *m1, drmModeModeInfo *m2) +{ +#define COMP(x) do { if (m1->x != m2->x) return false; } while (0) + COMP(vrefresh); + COMP(clock); + COMP(hdisplay); + COMP(hsync_start); + COMP(hsync_end); + COMP(htotal); + COMP(vdisplay); + COMP(vsync_start); + COMP(vsync_end); + COMP(vtotal); + COMP(flags); + + return true; +} + +static bool connector_supports_mode(drmModeConnector *connector, + drmModeModeInfo *mode) +{ + int i; + + for (i = 0; i < connector->count_modes; i++) + if (drm_mode_equal(&connector->modes[i], mode)) + return true; + + return false; +} + +static bool crtc_supports_mode(struct crtc_config *crtc, drmModeModeInfo *mode) +{ + int i; + + for (i = 0; i < crtc->connector_count; i++) { + if (!connector_supports_mode(crtc->cconfs[i].connector, mode)) + return false; + } + + return true; +} + +static int paint_fb(struct kmstest_fb *fb, const char *test_name, + const char **crtc_str, int crtc_count, int current_crtc_idx) +{ + double x, y; + cairo_t *cr; + int i; + + cr = kmstest_get_cairo_ctx(drm_fd, fb); + if (!cr) + return -1; + + kmstest_paint_test_pattern(cr, fb->width, fb->height); + + cairo_select_font_face(cr, "Helvetica", CAIRO_FONT_SLANT_NORMAL, + CAIRO_FONT_WEIGHT_NORMAL); + cairo_move_to(cr, fb->width / 2, fb->height / 2); + cairo_set_font_size(cr, 24); + kmstest_cairo_printf_line(cr, align_hcenter, 40, "%s", test_name); + + cairo_get_current_point(cr, &x, &y); + cairo_move_to(cr, 60, y); + + for (i = 0; i < crtc_count; i++) { + if (i == current_crtc_idx) { + cairo_get_current_point(cr, &x, &y); + cairo_move_to(cr, x - 20, y); + kmstest_cairo_printf_line(cr, align_right, 20, "X"); + cairo_move_to(cr, x, y); + } + kmstest_cairo_printf_line(cr, align_left, 20, "%s", + crtc_str[i]); + } + + return 0; +} + +static void create_fb_for_crtc(struct crtc_config *crtc, + struct kmstest_fb *fb_info) +{ + int width; + int height; + int bpp; + int depth; + bool enable_tiling; + int fb_id; + + bpp = 32; + depth = 24; + width = crtc->mode.hdisplay; + height = crtc->mode.vdisplay; + enable_tiling = false; + fb_id = kmstest_create_fb(drm_fd, width, height, bpp, depth, + enable_tiling, fb_info); + assert(fb_id > 0); +} + +static void get_mode_for_crtc(struct crtc_config *crtc, + drmModeModeInfo *mode_ret) +{ + drmModeModeInfo mode; + int i; + + /* + * First try to select a default mode that is supported by all + * connectors. + */ + for (i = 0; i < crtc->connector_count; i++) { + mode = crtc->cconfs[i].default_mode; + if (crtc_supports_mode(crtc, &mode)) + goto found; + } + + /* + * Then just fall back to find any that is supported by all + * connectors. + */ + for (i = 0; i < crtc->cconfs[0].connector->count_modes; i++) { + mode = crtc->cconfs[0].connector->modes[i]; + if (crtc_supports_mode(crtc, &mode)) + goto found; + } + + /* + * If none is found then just pick the default mode of the first + * connector and hope the other connectors can support it by scaling + * etc. + */ + mode = crtc->cconfs[0].default_mode; +found: + *mode_ret = mode; +} + +static int get_encoder_idx(drmModeRes *resources, drmModeEncoder *encoder) +{ + int i; + + for (i = 0; i < resources->count_encoders; i++) + if (resources->encoders[i] == encoder->encoder_id) + return i; + assert(0); +} + +static void get_crtc_config_str(struct crtc_config *crtc, char *buf, + size_t buf_size) +{ + int pos; + int i; + + pos = snprintf(buf, buf_size, + "CRTC[%d] [Pipe %s] Mode: %s@%dHz Connectors: ", + crtc->crtc_id, kmstest_pipe_str(crtc->pipe_id), + crtc->mode.name, crtc->mode.vrefresh); + if (pos > buf_size) + return; + for (i = 0; i < crtc->connector_count; i++) { + drmModeConnector *connector = crtc->cconfs[i].connector; + + pos += snprintf(&buf[pos], buf_size - pos, + "%s%s-%d[%d]%s", i ? ", " : "", + kmstest_connector_type_str(connector->connector_type), + connector->connector_type_id, connector->connector_id, + crtc->cconfs[i].connected ? "" : " (NC)"); + if (pos > buf_size) + return; + } +} + +static void setup_crtcs(drmModeRes *resources, struct connector_config *cconf, + int connector_count, struct crtc_config *crtcs, + int *crtc_count_ret, bool *config_valid_ret) +{ + struct crtc_config *crtc; + int crtc_count; + bool config_valid; + int i; + + i = 0; + crtc_count = 0; + crtc = crtcs; + config_valid = true; + + while (i < connector_count) { + drmModeCrtc *drm_crtc; + unsigned long encoder_mask; + int j; + + assert(crtc_count < MAX_CRTCS); + + crtc->crtc_idx = cconf[i].crtc_idx; + drm_crtc = drmModeGetCrtc(drm_fd, + resources->crtcs[crtc->crtc_idx]); + crtc->crtc_id = drm_crtc->crtc_id; + drmModeFreeCrtc(drm_crtc); + crtc->pipe_id = kmstest_get_pipe_from_crtc_id(drm_fd, + crtc->crtc_id); + + crtc->connector_count = 1; + for (j = i + 1; j < connector_count; j++) + if (cconf[j].crtc_idx == crtc->crtc_idx) + crtc->connector_count++; + + crtc->cconfs = malloc(sizeof(*crtc->cconfs) * + crtc->connector_count); + assert(crtc->cconfs); + + encoder_mask = 0; + for (j = 0; j < crtc->connector_count; j++) { + drmModeConnector *connector; + drmModeEncoder *encoder; + + crtc->cconfs[j] = cconf[i + j]; + connector = cconf[i + j].connector; + + /* Intel connectors have only a single encoder */ + assert(connector->count_encoders == 1); + encoder = drmModeGetEncoder(drm_fd, + connector->encoders[0]); + assert(encoder); + + config_valid &= !!(encoder->possible_crtcs & + (1 << crtc->crtc_idx)); + + encoder_mask |= 1 << get_encoder_idx(resources, + encoder); + config_valid &= !(encoder_mask & + ~encoder->possible_clones); + + drmModeFreeEncoder(encoder); + } + get_mode_for_crtc(crtc, &crtc->mode); + create_fb_for_crtc(crtc, &crtc->fb_info); + + i += crtc->connector_count; + crtc_count++; + crtc++; + } + + *crtc_count_ret = crtc_count; + *config_valid_ret = config_valid; +} + +static void cleanup_crtcs(struct crtc_config *crtcs, int crtc_count) +{ + int i; + + for (i = 0; i < crtc_count; i++) { + free(crtcs[i].cconfs); + } +} + +static uint32_t *get_connector_ids(struct crtc_config *crtc) +{ + uint32_t *ids; + int i; + + ids = malloc(sizeof(*ids) * crtc->connector_count); + assert(ids); + for (i = 0; i < crtc->connector_count; i++) + ids[i] = crtc->cconfs[i].connector->connector_id; + + return ids; +} + +static void test_crtc_config(const struct test_config *tconf, + struct crtc_config *crtcs, int crtc_count) +{ + char str_buf[MAX_CRTCS][1024]; + const char *crtc_strs[MAX_CRTCS]; + struct crtc_config *crtc; + static int test_id; + bool config_failed = false; + bool connector_connected = false; + int ret = 0; + int i; + + test_id++; + + if (filter_test_id && filter_test_id != test_id) + return; + + printf(" Test id#%d CRTC count %d\n", test_id, crtc_count); + + for (i = 0; i < crtc_count; i++) { + get_crtc_config_str(&crtcs[i], str_buf[i], sizeof(str_buf[i])); + crtc_strs[i] = &str_buf[i][0]; + } + + if (dry_run) { + for (i = 0; i < crtc_count; i++) + printf(" %s\n", crtc_strs[i]); + return; + } + + for (i = 0; i < crtc_count; i++) { + uint32_t *ids; + int j; + + crtc = &crtcs[i]; + + printf(" %s\n", crtc_strs[i]); + + create_fb_for_crtc(crtc, &crtc->fb_info); + paint_fb(&crtc->fb_info, tconf->name, crtc_strs, crtc_count, i); + + ids = get_connector_ids(crtc); + ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, + crtc->fb_info.fb_id, 0, 0, ids, + crtc->connector_count, &crtc->mode); + free(ids); + + if (ret < 0) { + assert(errno == EINVAL); + config_failed = true; + } + + for (j = 0; j < crtc->connector_count; j++) + connector_connected |= crtc->cconfs[j].connected; + } + + assert(config_failed == !!(tconf->flags & TEST_INVALID)); + + if (ret == 0 && connector_connected && !(tconf->flags & TEST_INVALID)) + sleep(5); + + for (i = 0; i < crtc_count; i++) { + if (crtcs[i].fb_info.fb_id) { + drmModeSetCrtc(drm_fd, crtcs[i].crtc_id, 0, 0, 0, NULL, + 0, NULL); + drmModeRmFB(drm_fd, crtcs[i].fb_info.fb_id); + crtcs[i].fb_info.fb_id = 0; + } + } + + return; +} + +static void test_one_combination(const struct test_config *tconf, + struct connector_config *cconfs, + int connector_count) +{ + struct crtc_config crtcs[MAX_CRTCS]; + int crtc_count; + bool config_valid; + + setup_crtcs(tconf->resources, cconfs, connector_count, crtcs, + &crtc_count, &config_valid); + + if (config_valid == !(tconf->flags & TEST_INVALID)) + test_crtc_config(tconf, crtcs, crtc_count); + + cleanup_crtcs(crtcs, crtc_count); +} + +static int assign_crtc_to_connectors(const struct test_config *tconf, + int *crtc_idxs, int connector_count, + struct connector_config *cconfs) +{ + unsigned long crtc_idx_mask; + int i; + + crtc_idx_mask = 0; + for (i = 0; i < connector_count; i++) { + int crtc_idx = crtc_idxs[i]; + + if ((tconf->flags & TEST_SINGLE_CRTC_CLONE) && + crtc_idx_mask & ~(1 << crtc_idx)) + return -1; + + if ((tconf->flags & TEST_EXCLUSIVE_CRTC_CLONE) && + crtc_idx_mask & (1 << crtc_idx)) + return -1; + + crtc_idx_mask |= 1 << crtc_idx; + + cconfs[i].crtc_idx = crtc_idx; + } + + return 0; +} + +static int get_one_connector(drmModeRes *resources, int connector_id, + struct connector_config *cconf) +{ + drmModeConnector *connector; + drmModeModeInfo mode; + + connector = drmModeGetConnector(drm_fd, connector_id); + assert(connector); + cconf->connector = connector; + + cconf->connected = connector->connection == DRM_MODE_CONNECTED; + + /* + * For DP/eDP we need a connected sink, since mode setting depends + * on successful link training and retrieved DPCD parameters. + */ + switch (connector->connector_type) { + case DRM_MODE_CONNECTOR_DisplayPort: + case DRM_MODE_CONNECTOR_eDP: + if (!cconf->connected) { + drmModeFreeConnector(connector); + return -1; + } + } + + if (cconf->connected) { + if (kmstest_get_connector_default_mode(drm_fd, connector, + &mode) < 0) + mode = mode_640_480; + } else { + mode = mode_640_480; + } + + cconf->default_mode = mode; + + return 0; +} + +static int get_connectors(drmModeRes *resources, int *connector_idxs, + int connector_count, struct connector_config *cconfs) +{ + int i; + + for (i = 0; i < connector_count; i++) { + int connector_idx; + int connector_id; + + connector_idx = connector_idxs[i]; + assert(connector_idx < resources->count_connectors); + connector_id = resources->connectors[connector_idx]; + + if (get_one_connector(resources, connector_id, &cconfs[i]) < 0) + goto err; + + } + + return 0; + +err: + while (i--) + drmModeFreeConnector(cconfs[i].connector); + + return -1; +} + +static void free_connectors(struct connector_config *cconfs, + int connector_count) +{ + int i; + + for (i = 0; i < connector_count; i++) + drmModeFreeConnector(cconfs[i].connector); +} + +struct combination { + int elems[MAX_COMBINATION_ELEMS]; +}; + +struct combination_set { + int count; + struct combination items[MAX_COMBINATION_COUNT]; +}; + +/* + * Get all possible selection of k elements from n elements with or without + * repetitions. + */ +static void iterate_combinations(int n, int k, bool allow_repetitions, + int depth, int base, struct combination *comb, + struct combination_set *set) +{ + int v; + + if (!k) { + assert(set->count < ARRAY_SIZE(set->items)); + set->items[set->count++] = *comb; + return; + } + + for (v = base; v < n; v++) { + comb->elems[depth] = v; + iterate_combinations(n, k - 1, allow_repetitions, + depth + 1, allow_repetitions ? 0 : v + 1, + comb, set); + } + +} + +static void get_combinations(int n, int k, bool allow_repetitions, + struct combination_set *set) +{ + struct combination comb; + + assert(k <= ARRAY_SIZE(set->items[0].elems)); + set->count = 0; + iterate_combinations(n, k, allow_repetitions, 0, 0, &comb, set); +} + +static void test_combinations(const struct test_config *tconf, + int connector_count) +{ + struct combination_set connector_combs; + struct combination_set crtc_combs; + struct connector_config *cconfs; + int i; + + get_combinations(tconf->resources->count_connectors, connector_count, + false, &connector_combs); + get_combinations(tconf->resources->count_crtcs, connector_count, + true, &crtc_combs); + + printf("Testing: %s %d connector combinations\n", tconf->name, + connector_count); + for (i = 0; i < connector_combs.count; i++) { + int *connector_idxs; + int ret; + int j; + + cconfs = malloc(sizeof(*cconfs) * connector_count); + assert(cconfs); + + connector_idxs = &connector_combs.items[i].elems[0]; + ret = get_connectors(tconf->resources, connector_idxs, + connector_count, cconfs); + if (ret < 0) + goto free_cconfs; + + for (j = 0; j < crtc_combs.count; j++) { + int *crtc_idxs = &crtc_combs.items[j].elems[0]; + ret = assign_crtc_to_connectors(tconf, crtc_idxs, + connector_count, + cconfs); + if (ret < 0) + continue; + + test_one_combination(tconf, cconfs, connector_count); + } + + free_connectors(cconfs, connector_count); +free_cconfs: + free(cconfs); + } +} + +static void run_test(const struct test_config *tconf) +{ + int connector_num; + + connector_num = tconf->flags & TEST_CLONE ? 2 : 1; + for (; connector_num <= tconf->resources->count_crtcs; connector_num++) + test_combinations(tconf, connector_num); +} + +static int opt_handler(int opt, int opt_index) +{ + switch (opt) { + case 'd': + dry_run = true; + break; + case 't': + filter_test_id = atoi(optarg); + break; + default: + assert(0); + } + + return 0; +} + +int main(int argc, char **argv) +{ + const struct { + enum test_flags flags; + const char *name; + } tests[] = { + { TEST_INVALID | TEST_CLONE | TEST_SINGLE_CRTC_CLONE, + "invalid-clone-single-crtc" }, + { TEST_INVALID | TEST_CLONE | TEST_EXCLUSIVE_CRTC_CLONE, + "invalid-clone-exclusive-crtc" }, + { TEST_CLONE | TEST_EXCLUSIVE_CRTC_CLONE, + "clone-exclusive-crtc" }, + }; + const char *help_str = + " -d\t\tDon't run any test, only print what would be done.\n" + " -t <test id>\tRun only the test with this id."; + drmModeRes *resources; + int i; + int ret; + + ret = drmtest_subtest_init_parse_opts(argc, argv, "dt:", NULL, + help_str, opt_handler); + if (ret < 0) + return ret == -2 ? 0 : ret; + + drmtest_skip_on_simulation(); + + if (dry_run && filter_test_id) { + fprintf(stderr, "only one of -d and -t is accepted\n"); + exit(1); + } + + if (dry_run && drmtest_only_list_subtests()) { + fprintf(stderr, + "only one of -d and --list-subtests is accepted\n"); + exit(1); + } + + if (drmtest_only_list_subtests()) { + for (i = 0; i < ARRAY_SIZE(tests); i++) + drmtest_run_subtest(tests[i].name); + return 0; + } + + drm_fd = drm_open_any(); + do_or_die(drmtest_set_vt_graphics_mode()); + + resources = drmModeGetResources(drm_fd); + assert(resources); + + for (i = 0; i < ARRAY_SIZE(tests); i++) { + if (drmtest_run_subtest(tests[i].name)) { + struct test_config tconf = { + .flags = tests[i].flags, + .name = tests[i].name, + .resources = resources, + }; + run_test(&tconf); + } + } + + drmModeFreeResources(resources); + + close(drm_fd); + + return 0; +} -- 1.8.3.2 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt PATCH 4/4] tests: add kms_setmode 2013-08-05 11:45 ` [igt PATCH 4/4] tests: add kms_setmode Imre Deak @ 2013-08-06 9:23 ` Daniel Vetter 2013-08-16 11:23 ` Imre Deak 0 siblings, 1 reply; 10+ messages in thread From: Daniel Vetter @ 2013-08-06 9:23 UTC (permalink / raw) To: Imre Deak; +Cc: intel-gfx On Mon, Aug 05, 2013 at 02:45:26PM +0300, Imre Deak wrote: > Iterate through all valid/invalid crtc/connector combinations. At the > moment only clone configurations are tested as the single output cases > are tested already by testdisplay. Also from combinations where all > connectors are on the same crtc (clone-single-crtc) only those are > tested that are invalid, as I haven't found any machine that supports > these (have to be GT2 with dvo and vga output). > > For configurations with one crtc per connector the FBs are per-crtc atm. > > Signed-off-by: Imre Deak <imre.deak@intel.com> lgtm. Please push as soon as we've figured out what to do with patch 3. I wonder whether we shouldn't change our DP code a bit and force the port into normal mode (with some conservative link training values) even when link training fails. Contrary to fdi links I think the pixels would still flow and so would allow us to exercise more codepaths. But that's for another time I guess. Depending upon how the kms_ tests shape up we might want to extract a bit more code from here, but again we can do that later. Thanks, Daniel > --- > tests/.gitignore | 1 + > tests/Makefile.am | 1 + > tests/kms_setmode.c | 739 ++++++++++++++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 741 insertions(+) > create mode 100644 tests/kms_setmode.c > > diff --git a/tests/.gitignore b/tests/.gitignore > index 451ab2d..8303526 100644 > --- a/tests/.gitignore > +++ b/tests/.gitignore > @@ -90,6 +90,7 @@ getstats > getversion > kms_flip > kms_render > +kms_setmode > prime_nv_api > prime_nv_pcopy > prime_nv_test > diff --git a/tests/Makefile.am b/tests/Makefile.am > index a59c25f..36caa2a 100644 > --- a/tests/Makefile.am > +++ b/tests/Makefile.am > @@ -39,6 +39,7 @@ TESTS_progs_M = \ > gem_write_read_ring_switch \ > kms_flip \ > kms_render \ > + kms_setmode \ > $(NOUVEAU_TESTS_M) \ > prime_self_import \ > $(NULL) > diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c > new file mode 100644 > index 0000000..8a1973d > --- /dev/null > +++ b/tests/kms_setmode.c > @@ -0,0 +1,739 @@ > +/* > + * Permission is hereby granted, free of charge, to any person obtaining a > + * copy of this software and associated documentation files (the "Software"), > + * to deal in the Software without restriction, including without limitation > + * the rights to use, copy, modify, merge, publish, distribute, sublicense, > + * and/or sell copies of the Software, and to permit persons to whom the > + * Software is furnished to do so, subject to the following conditions: > + * > + * The above copyright notice and this permission notice shall be included in > + * all copies or substantial portions of the Software. > + * > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR > + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, > + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE > + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER > + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING > + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS > + * IN THE SOFTWARE. > + * > + * Authors: > + * Imre Deak <imre.deak@intel.com> > + */ > +#ifdef HAVE_CONFIG_H > +#include "config.h" > +#endif > + > +#include <assert.h> > +#include <cairo.h> > +#include <errno.h> > +#include <stdint.h> > +#include <unistd.h> > +#include <string.h> > +#include <getopt.h> > +#include <sys/time.h> > + > +#include "drm_fourcc.h" > +#include "drmtest.h" > +#include "intel_bufmgr.h" > +#include "intel_batchbuffer.h" > +#include "intel_gpu_tools.h" > + > +#define MAX_CONNECTORS 10 > +#define MAX_CRTCS 3 > + > +/* max combinations with repetitions */ > +#define MAX_COMBINATION_COUNT \ > + (MAX_CONNECTORS * MAX_CONNECTORS * MAX_CONNECTORS) > +#define MAX_COMBINATION_ELEMS MAX_CRTCS > + > +static int drm_fd; > +static int filter_test_id; > +static bool dry_run; > + > +const drmModeModeInfo mode_640_480 = { > + .name = "640x480", > + .vrefresh = 60, > + .clock = 25200, > + > + .hdisplay = 640, > + .hsync_start = 656, > + .hsync_end = 752, > + .htotal = 800, > + > + .vdisplay = 480, > + .vsync_start = 490, > + .vsync_end = 492, > + .vtotal = 525, > + > + .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC, > +}; > + > +enum test_flags { > + TEST_INVALID = 0x01, > + TEST_CLONE = 0x02, > + TEST_SINGLE_CRTC_CLONE = 0x04, > + TEST_EXCLUSIVE_CRTC_CLONE = 0x08, > +}; > + > +struct test_config { > + const char *name; > + enum test_flags flags; > + drmModeRes *resources; > +}; > + > +struct connector_config { > + drmModeConnector *connector; > + int crtc_idx; > + bool connected; > + drmModeModeInfo default_mode; > +}; > + > +struct crtc_config { > + int crtc_idx; > + int crtc_id; > + int pipe_id; > + int connector_count; > + struct connector_config *cconfs; > + struct kmstest_fb fb_info; > + drmModeModeInfo mode; > +}; > + > +static bool drm_mode_equal(drmModeModeInfo *m1, drmModeModeInfo *m2) > +{ > +#define COMP(x) do { if (m1->x != m2->x) return false; } while (0) > + COMP(vrefresh); > + COMP(clock); > + COMP(hdisplay); > + COMP(hsync_start); > + COMP(hsync_end); > + COMP(htotal); > + COMP(vdisplay); > + COMP(vsync_start); > + COMP(vsync_end); > + COMP(vtotal); > + COMP(flags); > + > + return true; > +} > + > +static bool connector_supports_mode(drmModeConnector *connector, > + drmModeModeInfo *mode) > +{ > + int i; > + > + for (i = 0; i < connector->count_modes; i++) > + if (drm_mode_equal(&connector->modes[i], mode)) > + return true; > + > + return false; > +} > + > +static bool crtc_supports_mode(struct crtc_config *crtc, drmModeModeInfo *mode) > +{ > + int i; > + > + for (i = 0; i < crtc->connector_count; i++) { > + if (!connector_supports_mode(crtc->cconfs[i].connector, mode)) > + return false; > + } > + > + return true; > +} > + > +static int paint_fb(struct kmstest_fb *fb, const char *test_name, > + const char **crtc_str, int crtc_count, int current_crtc_idx) > +{ > + double x, y; > + cairo_t *cr; > + int i; > + > + cr = kmstest_get_cairo_ctx(drm_fd, fb); > + if (!cr) > + return -1; > + > + kmstest_paint_test_pattern(cr, fb->width, fb->height); > + > + cairo_select_font_face(cr, "Helvetica", CAIRO_FONT_SLANT_NORMAL, > + CAIRO_FONT_WEIGHT_NORMAL); > + cairo_move_to(cr, fb->width / 2, fb->height / 2); > + cairo_set_font_size(cr, 24); > + kmstest_cairo_printf_line(cr, align_hcenter, 40, "%s", test_name); > + > + cairo_get_current_point(cr, &x, &y); > + cairo_move_to(cr, 60, y); > + > + for (i = 0; i < crtc_count; i++) { > + if (i == current_crtc_idx) { > + cairo_get_current_point(cr, &x, &y); > + cairo_move_to(cr, x - 20, y); > + kmstest_cairo_printf_line(cr, align_right, 20, "X"); > + cairo_move_to(cr, x, y); > + } > + kmstest_cairo_printf_line(cr, align_left, 20, "%s", > + crtc_str[i]); > + } > + > + return 0; > +} > + > +static void create_fb_for_crtc(struct crtc_config *crtc, > + struct kmstest_fb *fb_info) > +{ > + int width; > + int height; > + int bpp; > + int depth; > + bool enable_tiling; > + int fb_id; > + > + bpp = 32; > + depth = 24; > + width = crtc->mode.hdisplay; > + height = crtc->mode.vdisplay; > + enable_tiling = false; > + fb_id = kmstest_create_fb(drm_fd, width, height, bpp, depth, > + enable_tiling, fb_info); > + assert(fb_id > 0); > +} > + > +static void get_mode_for_crtc(struct crtc_config *crtc, > + drmModeModeInfo *mode_ret) > +{ > + drmModeModeInfo mode; > + int i; > + > + /* > + * First try to select a default mode that is supported by all > + * connectors. > + */ > + for (i = 0; i < crtc->connector_count; i++) { > + mode = crtc->cconfs[i].default_mode; > + if (crtc_supports_mode(crtc, &mode)) > + goto found; > + } > + > + /* > + * Then just fall back to find any that is supported by all > + * connectors. > + */ > + for (i = 0; i < crtc->cconfs[0].connector->count_modes; i++) { > + mode = crtc->cconfs[0].connector->modes[i]; > + if (crtc_supports_mode(crtc, &mode)) > + goto found; > + } > + > + /* > + * If none is found then just pick the default mode of the first > + * connector and hope the other connectors can support it by scaling > + * etc. > + */ > + mode = crtc->cconfs[0].default_mode; > +found: > + *mode_ret = mode; > +} > + > +static int get_encoder_idx(drmModeRes *resources, drmModeEncoder *encoder) > +{ > + int i; > + > + for (i = 0; i < resources->count_encoders; i++) > + if (resources->encoders[i] == encoder->encoder_id) > + return i; > + assert(0); > +} > + > +static void get_crtc_config_str(struct crtc_config *crtc, char *buf, > + size_t buf_size) > +{ > + int pos; > + int i; > + > + pos = snprintf(buf, buf_size, > + "CRTC[%d] [Pipe %s] Mode: %s@%dHz Connectors: ", > + crtc->crtc_id, kmstest_pipe_str(crtc->pipe_id), > + crtc->mode.name, crtc->mode.vrefresh); > + if (pos > buf_size) > + return; > + for (i = 0; i < crtc->connector_count; i++) { > + drmModeConnector *connector = crtc->cconfs[i].connector; > + > + pos += snprintf(&buf[pos], buf_size - pos, > + "%s%s-%d[%d]%s", i ? ", " : "", > + kmstest_connector_type_str(connector->connector_type), > + connector->connector_type_id, connector->connector_id, > + crtc->cconfs[i].connected ? "" : " (NC)"); > + if (pos > buf_size) > + return; > + } > +} > + > +static void setup_crtcs(drmModeRes *resources, struct connector_config *cconf, > + int connector_count, struct crtc_config *crtcs, > + int *crtc_count_ret, bool *config_valid_ret) > +{ > + struct crtc_config *crtc; > + int crtc_count; > + bool config_valid; > + int i; > + > + i = 0; > + crtc_count = 0; > + crtc = crtcs; > + config_valid = true; > + > + while (i < connector_count) { > + drmModeCrtc *drm_crtc; > + unsigned long encoder_mask; > + int j; > + > + assert(crtc_count < MAX_CRTCS); > + > + crtc->crtc_idx = cconf[i].crtc_idx; > + drm_crtc = drmModeGetCrtc(drm_fd, > + resources->crtcs[crtc->crtc_idx]); > + crtc->crtc_id = drm_crtc->crtc_id; > + drmModeFreeCrtc(drm_crtc); > + crtc->pipe_id = kmstest_get_pipe_from_crtc_id(drm_fd, > + crtc->crtc_id); > + > + crtc->connector_count = 1; > + for (j = i + 1; j < connector_count; j++) > + if (cconf[j].crtc_idx == crtc->crtc_idx) > + crtc->connector_count++; > + > + crtc->cconfs = malloc(sizeof(*crtc->cconfs) * > + crtc->connector_count); > + assert(crtc->cconfs); > + > + encoder_mask = 0; > + for (j = 0; j < crtc->connector_count; j++) { > + drmModeConnector *connector; > + drmModeEncoder *encoder; > + > + crtc->cconfs[j] = cconf[i + j]; > + connector = cconf[i + j].connector; > + > + /* Intel connectors have only a single encoder */ > + assert(connector->count_encoders == 1); > + encoder = drmModeGetEncoder(drm_fd, > + connector->encoders[0]); > + assert(encoder); > + > + config_valid &= !!(encoder->possible_crtcs & > + (1 << crtc->crtc_idx)); > + > + encoder_mask |= 1 << get_encoder_idx(resources, > + encoder); > + config_valid &= !(encoder_mask & > + ~encoder->possible_clones); > + > + drmModeFreeEncoder(encoder); > + } > + get_mode_for_crtc(crtc, &crtc->mode); > + create_fb_for_crtc(crtc, &crtc->fb_info); > + > + i += crtc->connector_count; > + crtc_count++; > + crtc++; > + } > + > + *crtc_count_ret = crtc_count; > + *config_valid_ret = config_valid; > +} > + > +static void cleanup_crtcs(struct crtc_config *crtcs, int crtc_count) > +{ > + int i; > + > + for (i = 0; i < crtc_count; i++) { > + free(crtcs[i].cconfs); > + } > +} > + > +static uint32_t *get_connector_ids(struct crtc_config *crtc) > +{ > + uint32_t *ids; > + int i; > + > + ids = malloc(sizeof(*ids) * crtc->connector_count); > + assert(ids); > + for (i = 0; i < crtc->connector_count; i++) > + ids[i] = crtc->cconfs[i].connector->connector_id; > + > + return ids; > +} > + > +static void test_crtc_config(const struct test_config *tconf, > + struct crtc_config *crtcs, int crtc_count) > +{ > + char str_buf[MAX_CRTCS][1024]; > + const char *crtc_strs[MAX_CRTCS]; > + struct crtc_config *crtc; > + static int test_id; > + bool config_failed = false; > + bool connector_connected = false; > + int ret = 0; > + int i; > + > + test_id++; > + > + if (filter_test_id && filter_test_id != test_id) > + return; > + > + printf(" Test id#%d CRTC count %d\n", test_id, crtc_count); > + > + for (i = 0; i < crtc_count; i++) { > + get_crtc_config_str(&crtcs[i], str_buf[i], sizeof(str_buf[i])); > + crtc_strs[i] = &str_buf[i][0]; > + } > + > + if (dry_run) { > + for (i = 0; i < crtc_count; i++) > + printf(" %s\n", crtc_strs[i]); > + return; > + } > + > + for (i = 0; i < crtc_count; i++) { > + uint32_t *ids; > + int j; > + > + crtc = &crtcs[i]; > + > + printf(" %s\n", crtc_strs[i]); > + > + create_fb_for_crtc(crtc, &crtc->fb_info); > + paint_fb(&crtc->fb_info, tconf->name, crtc_strs, crtc_count, i); > + > + ids = get_connector_ids(crtc); > + ret = drmModeSetCrtc(drm_fd, crtc->crtc_id, > + crtc->fb_info.fb_id, 0, 0, ids, > + crtc->connector_count, &crtc->mode); > + free(ids); > + > + if (ret < 0) { > + assert(errno == EINVAL); > + config_failed = true; > + } > + > + for (j = 0; j < crtc->connector_count; j++) > + connector_connected |= crtc->cconfs[j].connected; > + } > + > + assert(config_failed == !!(tconf->flags & TEST_INVALID)); > + > + if (ret == 0 && connector_connected && !(tconf->flags & TEST_INVALID)) > + sleep(5); > + > + for (i = 0; i < crtc_count; i++) { > + if (crtcs[i].fb_info.fb_id) { > + drmModeSetCrtc(drm_fd, crtcs[i].crtc_id, 0, 0, 0, NULL, > + 0, NULL); > + drmModeRmFB(drm_fd, crtcs[i].fb_info.fb_id); > + crtcs[i].fb_info.fb_id = 0; > + } > + } > + > + return; > +} > + > +static void test_one_combination(const struct test_config *tconf, > + struct connector_config *cconfs, > + int connector_count) > +{ > + struct crtc_config crtcs[MAX_CRTCS]; > + int crtc_count; > + bool config_valid; > + > + setup_crtcs(tconf->resources, cconfs, connector_count, crtcs, > + &crtc_count, &config_valid); > + > + if (config_valid == !(tconf->flags & TEST_INVALID)) > + test_crtc_config(tconf, crtcs, crtc_count); > + > + cleanup_crtcs(crtcs, crtc_count); > +} > + > +static int assign_crtc_to_connectors(const struct test_config *tconf, > + int *crtc_idxs, int connector_count, > + struct connector_config *cconfs) > +{ > + unsigned long crtc_idx_mask; > + int i; > + > + crtc_idx_mask = 0; > + for (i = 0; i < connector_count; i++) { > + int crtc_idx = crtc_idxs[i]; > + > + if ((tconf->flags & TEST_SINGLE_CRTC_CLONE) && > + crtc_idx_mask & ~(1 << crtc_idx)) > + return -1; > + > + if ((tconf->flags & TEST_EXCLUSIVE_CRTC_CLONE) && > + crtc_idx_mask & (1 << crtc_idx)) > + return -1; > + > + crtc_idx_mask |= 1 << crtc_idx; > + > + cconfs[i].crtc_idx = crtc_idx; > + } > + > + return 0; > +} > + > +static int get_one_connector(drmModeRes *resources, int connector_id, > + struct connector_config *cconf) > +{ > + drmModeConnector *connector; > + drmModeModeInfo mode; > + > + connector = drmModeGetConnector(drm_fd, connector_id); > + assert(connector); > + cconf->connector = connector; > + > + cconf->connected = connector->connection == DRM_MODE_CONNECTED; > + > + /* > + * For DP/eDP we need a connected sink, since mode setting depends > + * on successful link training and retrieved DPCD parameters. > + */ > + switch (connector->connector_type) { > + case DRM_MODE_CONNECTOR_DisplayPort: > + case DRM_MODE_CONNECTOR_eDP: > + if (!cconf->connected) { > + drmModeFreeConnector(connector); > + return -1; > + } > + } > + > + if (cconf->connected) { > + if (kmstest_get_connector_default_mode(drm_fd, connector, > + &mode) < 0) > + mode = mode_640_480; > + } else { > + mode = mode_640_480; > + } > + > + cconf->default_mode = mode; > + > + return 0; > +} > + > +static int get_connectors(drmModeRes *resources, int *connector_idxs, > + int connector_count, struct connector_config *cconfs) > +{ > + int i; > + > + for (i = 0; i < connector_count; i++) { > + int connector_idx; > + int connector_id; > + > + connector_idx = connector_idxs[i]; > + assert(connector_idx < resources->count_connectors); > + connector_id = resources->connectors[connector_idx]; > + > + if (get_one_connector(resources, connector_id, &cconfs[i]) < 0) > + goto err; > + > + } > + > + return 0; > + > +err: > + while (i--) > + drmModeFreeConnector(cconfs[i].connector); > + > + return -1; > +} > + > +static void free_connectors(struct connector_config *cconfs, > + int connector_count) > +{ > + int i; > + > + for (i = 0; i < connector_count; i++) > + drmModeFreeConnector(cconfs[i].connector); > +} > + > +struct combination { > + int elems[MAX_COMBINATION_ELEMS]; > +}; > + > +struct combination_set { > + int count; > + struct combination items[MAX_COMBINATION_COUNT]; > +}; > + > +/* > + * Get all possible selection of k elements from n elements with or without > + * repetitions. > + */ > +static void iterate_combinations(int n, int k, bool allow_repetitions, > + int depth, int base, struct combination *comb, > + struct combination_set *set) > +{ > + int v; > + > + if (!k) { > + assert(set->count < ARRAY_SIZE(set->items)); > + set->items[set->count++] = *comb; > + return; > + } > + > + for (v = base; v < n; v++) { > + comb->elems[depth] = v; > + iterate_combinations(n, k - 1, allow_repetitions, > + depth + 1, allow_repetitions ? 0 : v + 1, > + comb, set); > + } > + > +} > + > +static void get_combinations(int n, int k, bool allow_repetitions, > + struct combination_set *set) > +{ > + struct combination comb; > + > + assert(k <= ARRAY_SIZE(set->items[0].elems)); > + set->count = 0; > + iterate_combinations(n, k, allow_repetitions, 0, 0, &comb, set); > +} > + > +static void test_combinations(const struct test_config *tconf, > + int connector_count) > +{ > + struct combination_set connector_combs; > + struct combination_set crtc_combs; > + struct connector_config *cconfs; > + int i; > + > + get_combinations(tconf->resources->count_connectors, connector_count, > + false, &connector_combs); > + get_combinations(tconf->resources->count_crtcs, connector_count, > + true, &crtc_combs); > + > + printf("Testing: %s %d connector combinations\n", tconf->name, > + connector_count); > + for (i = 0; i < connector_combs.count; i++) { > + int *connector_idxs; > + int ret; > + int j; > + > + cconfs = malloc(sizeof(*cconfs) * connector_count); > + assert(cconfs); > + > + connector_idxs = &connector_combs.items[i].elems[0]; > + ret = get_connectors(tconf->resources, connector_idxs, > + connector_count, cconfs); > + if (ret < 0) > + goto free_cconfs; > + > + for (j = 0; j < crtc_combs.count; j++) { > + int *crtc_idxs = &crtc_combs.items[j].elems[0]; > + ret = assign_crtc_to_connectors(tconf, crtc_idxs, > + connector_count, > + cconfs); > + if (ret < 0) > + continue; > + > + test_one_combination(tconf, cconfs, connector_count); > + } > + > + free_connectors(cconfs, connector_count); > +free_cconfs: > + free(cconfs); > + } > +} > + > +static void run_test(const struct test_config *tconf) > +{ > + int connector_num; > + > + connector_num = tconf->flags & TEST_CLONE ? 2 : 1; > + for (; connector_num <= tconf->resources->count_crtcs; connector_num++) > + test_combinations(tconf, connector_num); > +} > + > +static int opt_handler(int opt, int opt_index) > +{ > + switch (opt) { > + case 'd': > + dry_run = true; > + break; > + case 't': > + filter_test_id = atoi(optarg); > + break; > + default: > + assert(0); > + } > + > + return 0; > +} > + > +int main(int argc, char **argv) > +{ > + const struct { > + enum test_flags flags; > + const char *name; > + } tests[] = { > + { TEST_INVALID | TEST_CLONE | TEST_SINGLE_CRTC_CLONE, > + "invalid-clone-single-crtc" }, > + { TEST_INVALID | TEST_CLONE | TEST_EXCLUSIVE_CRTC_CLONE, > + "invalid-clone-exclusive-crtc" }, > + { TEST_CLONE | TEST_EXCLUSIVE_CRTC_CLONE, > + "clone-exclusive-crtc" }, > + }; > + const char *help_str = > + " -d\t\tDon't run any test, only print what would be done.\n" > + " -t <test id>\tRun only the test with this id."; > + drmModeRes *resources; > + int i; > + int ret; > + > + ret = drmtest_subtest_init_parse_opts(argc, argv, "dt:", NULL, > + help_str, opt_handler); > + if (ret < 0) > + return ret == -2 ? 0 : ret; > + > + drmtest_skip_on_simulation(); > + > + if (dry_run && filter_test_id) { > + fprintf(stderr, "only one of -d and -t is accepted\n"); > + exit(1); > + } > + > + if (dry_run && drmtest_only_list_subtests()) { > + fprintf(stderr, > + "only one of -d and --list-subtests is accepted\n"); > + exit(1); > + } > + > + if (drmtest_only_list_subtests()) { > + for (i = 0; i < ARRAY_SIZE(tests); i++) > + drmtest_run_subtest(tests[i].name); > + return 0; > + } > + > + drm_fd = drm_open_any(); > + do_or_die(drmtest_set_vt_graphics_mode()); > + > + resources = drmModeGetResources(drm_fd); > + assert(resources); > + > + for (i = 0; i < ARRAY_SIZE(tests); i++) { > + if (drmtest_run_subtest(tests[i].name)) { > + struct test_config tconf = { > + .flags = tests[i].flags, > + .name = tests[i].name, > + .resources = resources, > + }; > + run_test(&tconf); > + } > + } > + > + drmModeFreeResources(resources); > + > + close(drm_fd); > + > + return 0; > +} > -- > 1.8.3.2 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt PATCH 4/4] tests: add kms_setmode 2013-08-06 9:23 ` Daniel Vetter @ 2013-08-16 11:23 ` Imre Deak 0 siblings, 0 replies; 10+ messages in thread From: Imre Deak @ 2013-08-16 11:23 UTC (permalink / raw) To: Daniel Vetter; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 1472 bytes --] On Tue, 2013-08-06 at 11:23 +0200, Daniel Vetter wrote: > On Mon, Aug 05, 2013 at 02:45:26PM +0300, Imre Deak wrote: > > Iterate through all valid/invalid crtc/connector combinations. At the > > moment only clone configurations are tested as the single output cases > > are tested already by testdisplay. Also from combinations where all > > connectors are on the same crtc (clone-single-crtc) only those are > > tested that are invalid, as I haven't found any machine that supports > > these (have to be GT2 with dvo and vga output). > > > > For configurations with one crtc per connector the FBs are per-crtc atm. > > > > Signed-off-by: Imre Deak <imre.deak@intel.com> > > lgtm. Please push as soon as we've figured out what to do with patch 3. > > I wonder whether we shouldn't change our DP code a bit and force the > port into normal mode (with some conservative link training values) even > when link training fails. Contrary to fdi links I think the pixels would > still flow and so would allow us to exercise more codepaths. But that's > for another time I guess. Yes, for testing purposes allowing the pipe to be on even on disconnected DP would be nice. The same for other disconnected connectors worked out quite well for me w/o all the required displays. > Depending upon how the kms_ tests shape up we might want to extract a bit > more code from here, but again we can do that later. Yep, agreed as a next step. --Imre [-- Attachment #1.2: This is a digitally signed message part --] [-- Type: application/pgp-signature, Size: 490 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-08-16 12:09 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-08-05 11:45 [igt PATCH 0/4] add support for testing clone output configs Imre Deak 2013-08-05 11:45 ` [igt PATCH 1/4] lib: shorten DP/eDP connector names Imre Deak 2013-08-05 11:45 ` [igt PATCH 2/4] lib: handle SIGSEGV similarly to other error signals Imre Deak 2013-08-05 11:45 ` [igt PATCH 3/4] lib: add subtest extra command line option handling Imre Deak 2013-08-06 9:09 ` Daniel Vetter 2013-08-16 11:07 ` Imre Deak 2013-08-16 12:09 ` Daniel Vetter 2013-08-05 11:45 ` [igt PATCH 4/4] tests: add kms_setmode Imre Deak 2013-08-06 9:23 ` Daniel Vetter 2013-08-16 11:23 ` Imre Deak
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).