* [igt-dev] [PATCH i-g-t v2 0/3] check dsc hardware capability
@ 2023-05-30 14:43 Swati Sharma
2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Swati Sharma @ 2023-05-30 14:43 UTC (permalink / raw)
To: igt-dev
Instead of assuming dsc is supported gen11+, lets use has_dsc
flag in i915_capability to check h/w support.
Swati Sharma (3):
tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink
tests: s/check_dsc_on_connector/is_dsc_supported_by_sink
tests: add igt_is_dsc_supported_by_source()
lib/igt_dsc.c | 29 ++++++++++++++++++++++++++---
lib/igt_dsc.h | 3 ++-
tests/i915/kms_dsc.c | 4 ++--
tests/i915/kms_dsc_helper.c | 14 ++++++++++++--
tests/i915/kms_dsc_helper.h | 3 ++-
tests/i915/kms_psr2_sf.c | 2 +-
tests/kms_invalid_mode.c | 5 ++---
7 files changed, 47 insertions(+), 13 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink 2023-05-30 14:43 [igt-dev] [PATCH i-g-t v2 0/3] check dsc hardware capability Swati Sharma @ 2023-05-30 14:43 ` Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink Swati Sharma ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-05-30 14:43 UTC (permalink / raw) To: igt-dev Rename helper. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_dsc.c | 6 +++--- lib/igt_dsc.h | 2 +- tests/i915/kms_dsc_helper.c | 2 +- tests/kms_invalid_mode.c | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c index 9e1ab9b1..6cbd8bae 100644 --- a/lib/igt_dsc.c +++ b/lib/igt_dsc.c @@ -42,13 +42,13 @@ static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_n } /* - * igt_is_dsc_supported: + * igt_is_dsc_supported_by_sink: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use * - * Returns: True if DSC is supported for the given connector, false otherwise. + * Returns: True if DSC is supported for the given connector/sink, false otherwise. */ -bool igt_is_dsc_supported(int drmfd, char *connector_name) +bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name) { return check_dsc_debugfs(drmfd, connector_name, "DSC_Sink_Support: yes"); } diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h index 9608aad4..241fc0ac 100644 --- a/lib/igt_dsc.h +++ b/lib/igt_dsc.h @@ -9,7 +9,7 @@ #include "igt_fb.h" #include "igt_kms.h" -bool igt_is_dsc_supported(int drmfd, char *connector_name); +bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name); bool igt_is_fec_supported(int drmfd, char *connector_name); bool igt_is_dsc_enabled(int drmfd, char *connector_name); bool igt_is_force_dsc_enabled(int drmfd, char *connector_name); diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c index 02d1a484..1adf920b 100644 --- a/tests/i915/kms_dsc_helper.c +++ b/tests/i915/kms_dsc_helper.c @@ -55,7 +55,7 @@ void kms_dsc_exit_handler(int sig) bool check_dsc_on_connector(int drmfd, igt_output_t *output) { - if (!igt_is_dsc_supported(drmfd, output->name)) { + if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) { igt_debug("DSC not supported on connector %s\n", output->name); return false; diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c index ec048305..63da3a1c 100644 --- a/tests/kms_invalid_mode.c +++ b/tests/kms_invalid_mode.c @@ -61,7 +61,7 @@ can_bigjoiner(data_t *data) igt_debug("Platform supports uncompressed bigjoiner\n"); return true; } else if (intel_display_ver(devid) >= 11) { - return igt_is_dsc_supported(data->drm_fd, data->output->name); + return igt_is_dsc_supported_by_sink(data->drm_fd, data->output->name); } return false; -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink 2023-05-30 14:43 [igt-dev] [PATCH i-g-t v2 0/3] check dsc hardware capability Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma @ 2023-05-30 14:43 ` Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-05-30 14:43 UTC (permalink / raw) To: igt-dev Rename function. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/i915/kms_dsc.c | 2 +- tests/i915/kms_dsc_helper.c | 2 +- tests/i915/kms_dsc_helper.h | 2 +- tests/i915/kms_psr2_sf.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index 3ce28f84..d142fae2 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -227,7 +227,7 @@ static void test_dsc(data_t *data, enum dsc_test_type test_type, int bpc, data->output = output; data->pipe = pipe; - if (!check_dsc_on_connector(data->drm_fd, data->output)) + if (!is_dsc_supported_by_sink(data->drm_fd, data->output)) continue; if (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver, diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c index 1adf920b..c90d833d 100644 --- a/tests/i915/kms_dsc_helper.c +++ b/tests/i915/kms_dsc_helper.c @@ -53,7 +53,7 @@ void kms_dsc_exit_handler(int sig) restore_force_dsc_en(); } -bool check_dsc_on_connector(int drmfd, igt_output_t *output) +bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output) { if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) { igt_debug("DSC not supported on connector %s\n", diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h index 198f5afa..f66191c7 100644 --- a/tests/i915/kms_dsc_helper.h +++ b/tests/i915/kms_dsc_helper.h @@ -26,7 +26,7 @@ void force_dsc_enable_bpc(int drmfd, igt_output_t *output, int input_bpc); void save_force_dsc_en(int drmfd, igt_output_t *output); void restore_force_dsc_en(void); void kms_dsc_exit_handler(int sig); -bool check_dsc_on_connector(int drmfd, igt_output_t *output); +bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output); bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe); bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc); void force_dsc_output_format(int drmfd, igt_output_t *output, diff --git a/tests/i915/kms_psr2_sf.c b/tests/i915/kms_psr2_sf.c index 4cf98644..ffc41f98 100644 --- a/tests/i915/kms_psr2_sf.c +++ b/tests/i915/kms_psr2_sf.c @@ -934,7 +934,7 @@ igt_main pipes[n_pipes] = data.pipe; outputs[n_pipes] = data.output; - if (check_dsc_on_connector(data.drm_fd, data.output)) + if (is_dsc_supported_by_sink(data.drm_fd, data.output)) coexist_features[n_pipes] |= FEATURE_DSC; n_pipes++; -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v2 3/3] tests: add igt_is_dsc_supported_by_source() 2023-05-30 14:43 [igt-dev] [PATCH i-g-t v2 0/3] check dsc hardware capability Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink Swati Sharma @ 2023-05-30 14:43 ` Swati Sharma 2023-05-30 17:03 ` Kamil Konieczny 2023-05-30 19:51 ` [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability Patchwork 2023-05-31 20:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 1 reply; 7+ messages in thread From: Swati Sharma @ 2023-05-30 14:43 UTC (permalink / raw) To: igt-dev Instead of assuming dsc is supported on gen11+ platforms, lets use has_dsc flag in i915_capability to check hardware support. v2: -moved changes to lib (Ankit) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_dsc.c | 23 +++++++++++++++++++++++ lib/igt_dsc.h | 1 + tests/i915/kms_dsc.c | 2 +- tests/i915/kms_dsc_helper.c | 10 ++++++++++ tests/i915/kms_dsc_helper.h | 1 + tests/kms_invalid_mode.c | 3 +-- 6 files changed, 37 insertions(+), 3 deletions(-) diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c index 6cbd8bae..e24abc8f 100644 --- a/lib/igt_dsc.c +++ b/lib/igt_dsc.c @@ -8,6 +8,7 @@ #include <string.h> #include "igt_dsc.h" #include "igt_sysfs.h" +#include "igt_core.h" static bool check_dsc_debugfs(int drmfd, char *connector_name, const char *check_str) { @@ -41,6 +42,28 @@ static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_n return ret; } +/* + * igt_is_dsc_supported_by_source: + * @drmfd: A drm file descriptor + * + * Returns: True if DSC is supported by source, false otherwise. + */ +bool igt_is_dsc_supported_by_source(int drmfd) +{ + char buf[4096]; + int dir, res; + + dir = igt_debugfs_dir(drmfd); + igt_assert(dir >= 0); + + res = igt_debugfs_simple_read(dir, "i915_capabilities", + buf, sizeof(buf)); + igt_require(res > 0); + close(dir); + + return strstr(buf, "has_dsc: yes"); +} + /* * igt_is_dsc_supported_by_sink: * @drmfd: A drm file descriptor diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h index 241fc0ac..b58743b5 100644 --- a/lib/igt_dsc.h +++ b/lib/igt_dsc.h @@ -9,6 +9,7 @@ #include "igt_fb.h" #include "igt_kms.h" +bool igt_is_dsc_supported_by_source(int drmfd); bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name); bool igt_is_fec_supported(int drmfd, char *connector_name); bool igt_is_dsc_enabled(int drmfd, char *connector_name); diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c index d142fae2..b46c4449 100644 --- a/tests/i915/kms_dsc.c +++ b/tests/i915/kms_dsc.c @@ -265,7 +265,7 @@ igt_main igt_install_exit_handler(kms_dsc_exit_handler); igt_display_require(&data.display, data.drm_fd); igt_display_require_output(&data.display); - igt_require(data.disp_ver >= 11); + igt_require(is_dsc_supported_by_source(data.drm_fd)); } igt_describe("Tests basic display stream compression functionality if supported " diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c index c90d833d..61f76dde 100644 --- a/tests/i915/kms_dsc_helper.c +++ b/tests/i915/kms_dsc_helper.c @@ -53,6 +53,16 @@ void kms_dsc_exit_handler(int sig) restore_force_dsc_en(); } +bool is_dsc_supported_by_source(int drmfd) +{ + if (!igt_is_dsc_supported_by_source(drmfd)) { + igt_debug("DSC not supported by source\n"); + return false; + } + + return true; +} + bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output) { if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) { diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h index f66191c7..2109bd76 100644 --- a/tests/i915/kms_dsc_helper.h +++ b/tests/i915/kms_dsc_helper.h @@ -27,6 +27,7 @@ void save_force_dsc_en(int drmfd, igt_output_t *output); void restore_force_dsc_en(void); void kms_dsc_exit_handler(int sig); bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output); +bool is_dsc_supported_by_source(int drmfd); bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe); bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc); void force_dsc_output_format(int drmfd, igt_output_t *output, diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c index 63da3a1c..e4ab65f2 100644 --- a/tests/kms_invalid_mode.c +++ b/tests/kms_invalid_mode.c @@ -60,9 +60,8 @@ can_bigjoiner(data_t *data) if (intel_display_ver(devid) > 12) { igt_debug("Platform supports uncompressed bigjoiner\n"); return true; - } else if (intel_display_ver(devid) >= 11) { + } else if (igt_is_dsc_supported_by_source(data->drm_fd)) return igt_is_dsc_supported_by_sink(data->drm_fd, data->output->name); - } return false; } -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 3/3] tests: add igt_is_dsc_supported_by_source() 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma @ 2023-05-30 17:03 ` Kamil Konieczny 0 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-05-30 17:03 UTC (permalink / raw) To: igt-dev Hi Swati, On 2023-05-30 at 20:13:58 +0530, Swati Sharma wrote: > Instead of assuming dsc is supported on gen11+ platforms, > lets use has_dsc flag in i915_capability to check hardware > support. > > v2: -moved changes to lib (Ankit) > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_dsc.c | 23 +++++++++++++++++++++++ > lib/igt_dsc.h | 1 + > tests/i915/kms_dsc.c | 2 +- > tests/i915/kms_dsc_helper.c | 10 ++++++++++ > tests/i915/kms_dsc_helper.h | 1 + > tests/kms_invalid_mode.c | 3 +-- > 6 files changed, 37 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c > index 6cbd8bae..e24abc8f 100644 > --- a/lib/igt_dsc.c > +++ b/lib/igt_dsc.c > @@ -8,6 +8,7 @@ > #include <string.h> > #include "igt_dsc.h" > #include "igt_sysfs.h" > +#include "igt_core.h" ---------------- ^ Keep includes in alphabetical order. > > static bool check_dsc_debugfs(int drmfd, char *connector_name, const char *check_str) > { > @@ -41,6 +42,28 @@ static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_n > return ret; > } > > +/* > + * igt_is_dsc_supported_by_source: > + * @drmfd: A drm file descriptor > + * > + * Returns: True if DSC is supported by source, false otherwise. > + */ > +bool igt_is_dsc_supported_by_source(int drmfd) > +{ > + char buf[4096]; > + int dir, res; > + > + dir = igt_debugfs_dir(drmfd); > + igt_assert(dir >= 0); > + > + res = igt_debugfs_simple_read(dir, "i915_capabilities", > + buf, sizeof(buf)); > + igt_require(res > 0); ------- ^ Please do not use this in lib functions if possible. > + close(dir); > + > + return strstr(buf, "has_dsc: yes"); Better: return res > 0 ? strstr(buf, "has_dsc: yes") : 0; Regards, Kamil > +} > + > /* > * igt_is_dsc_supported_by_sink: > * @drmfd: A drm file descriptor > diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h > index 241fc0ac..b58743b5 100644 > --- a/lib/igt_dsc.h > +++ b/lib/igt_dsc.h > @@ -9,6 +9,7 @@ > #include "igt_fb.h" > #include "igt_kms.h" > > +bool igt_is_dsc_supported_by_source(int drmfd); > bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name); > bool igt_is_fec_supported(int drmfd, char *connector_name); > bool igt_is_dsc_enabled(int drmfd, char *connector_name); > diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c > index d142fae2..b46c4449 100644 > --- a/tests/i915/kms_dsc.c > +++ b/tests/i915/kms_dsc.c > @@ -265,7 +265,7 @@ igt_main > igt_install_exit_handler(kms_dsc_exit_handler); > igt_display_require(&data.display, data.drm_fd); > igt_display_require_output(&data.display); > - igt_require(data.disp_ver >= 11); > + igt_require(is_dsc_supported_by_source(data.drm_fd)); > } > > igt_describe("Tests basic display stream compression functionality if supported " > diff --git a/tests/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c > index c90d833d..61f76dde 100644 > --- a/tests/i915/kms_dsc_helper.c > +++ b/tests/i915/kms_dsc_helper.c > @@ -53,6 +53,16 @@ void kms_dsc_exit_handler(int sig) > restore_force_dsc_en(); > } > > +bool is_dsc_supported_by_source(int drmfd) > +{ > + if (!igt_is_dsc_supported_by_source(drmfd)) { > + igt_debug("DSC not supported by source\n"); > + return false; > + } > + > + return true; > +} > + > bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output) > { > if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) { > diff --git a/tests/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h > index f66191c7..2109bd76 100644 > --- a/tests/i915/kms_dsc_helper.h > +++ b/tests/i915/kms_dsc_helper.h > @@ -27,6 +27,7 @@ void save_force_dsc_en(int drmfd, igt_output_t *output); > void restore_force_dsc_en(void); > void kms_dsc_exit_handler(int sig); > bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output); > +bool is_dsc_supported_by_source(int drmfd); > bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe); > bool check_gen11_bpc_constraint(int drmfd, igt_output_t *output, int input_bpc); > void force_dsc_output_format(int drmfd, igt_output_t *output, > diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c > index 63da3a1c..e4ab65f2 100644 > --- a/tests/kms_invalid_mode.c > +++ b/tests/kms_invalid_mode.c > @@ -60,9 +60,8 @@ can_bigjoiner(data_t *data) > if (intel_display_ver(devid) > 12) { > igt_debug("Platform supports uncompressed bigjoiner\n"); > return true; > - } else if (intel_display_ver(devid) >= 11) { > + } else if (igt_is_dsc_supported_by_source(data->drm_fd)) > return igt_is_dsc_supported_by_sink(data->drm_fd, data->output->name); > - } > > return false; > } > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability 2023-05-30 14:43 [igt-dev] [PATCH i-g-t v2 0/3] check dsc hardware capability Swati Sharma ` (2 preceding siblings ...) 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma @ 2023-05-30 19:51 ` Patchwork 2023-05-31 20:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-05-30 19:51 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6313 bytes --] == Series Details == Series: check dsc hardware capability URL : https://patchwork.freedesktop.org/series/118570/ State : success == Summary == CI Bug Log - changes from IGT_7311 -> IGTPW_9073 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/index.html Participating hosts (36 -> 37) ------------------------------ Additional (1): bat-mtlp-6 Known issues ------------ Here are the changes found in IGTPW_9073 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][1] ([i915#7077]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][2] -> [ABORT][3] ([i915#4983] / [i915#7913]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/bat-rpls-2/igt@i915_selftest@live@requests.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#1845] / [i915#5354]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live@gt_mocs: - {bat-mtlp-8}: [DMESG-FAIL][5] ([i915#7059]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - {bat-mtlp-8}: [DMESG-FAIL][7] ([i915#8497]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/bat-mtlp-8/igt@i915_selftest@live@requests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - {bat-mtlp-8}: [DMESG-WARN][9] ([i915#6367]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/bat-mtlp-8/igt@i915_selftest@live@slpc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [FAIL][11] ([i915#7932]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html #### Warnings #### * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: [ABORT][13] ([i915#4579] / [i915#8260]) -> [SKIP][14] ([i915#3555] / [i915#4579]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/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). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [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#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8189]: https://gitlab.freedesktop.org/drm/intel/issues/8189 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7311 -> IGTPW_9073 CI-20190529: 20190529 CI_DRM_13200: 0ae4ee2c735979030a0219218081eee661606921 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9073: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/index.html IGT_7311: c031030f39aff973330668a5a2f1593408da78ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/index.html [-- Attachment #2: Type: text/html, Size: 5600 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for check dsc hardware capability 2023-05-30 14:43 [igt-dev] [PATCH i-g-t v2 0/3] check dsc hardware capability Swati Sharma ` (3 preceding siblings ...) 2023-05-30 19:51 ` [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability Patchwork @ 2023-05-31 20:53 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-05-31 20:53 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16910 bytes --] == Series Details == Series: check dsc hardware capability URL : https://patchwork.freedesktop.org/series/118570/ State : success == Summary == CI Bug Log - changes from IGT_7311_full -> IGTPW_9073_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_9073_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9073_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/index.html Participating hosts (7 -> 8) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9073_full: ### IGT changes ### #### Warnings #### * igt@kms_hdmi_inject@inject-audio: - shard-snb: [SKIP][1] ([fdo#109271]) -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-snb7/igt@kms_hdmi_inject@inject-audio.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-snb2/igt@kms_hdmi_inject@inject-audio.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_capture@pi@vcs0: - {shard-tglu}: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-tglu-7/igt@gem_exec_capture@pi@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-tglu-9/igt@gem_exec_capture@pi@vcs0.html New tests --------- New tests have been introduced between IGT_7311_full and IGTPW_9073_full: ### New IGT tests (1) ### * igt@kms_flip@flip-vs-panning-vs-hang@b-hdmi-a1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9073_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@massive: - shard-apl: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl2/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][7] ([i915#2658]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_userptr_blits@access-control: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271]) +60 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk9/igt@gem_userptr_blits@access-control.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][9] -> [SKIP][10] ([fdo#109271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1937] / [i915#4579]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl7/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk5/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271]) +44 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl6/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4579]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271]) +19 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4579]) +3 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4579]) +10 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-snb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b-vga-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#658]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#658]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2437]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk7/igt@kms_writeback@writeback-invalid-parameters.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - {shard-dg1}: [ABORT][22] ([i915#6333] / [i915#7461] / [i915#8234]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-dg1-17/igt@gem_barrier_race@remote-request@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-dg1-18/igt@gem_barrier_race@remote-request@rcs0.html - shard-glk: [ABORT][24] ([i915#7461] / [i915#8211]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-glk8/igt@gem_barrier_race@remote-request@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][26] ([i915#6268]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_suspend@basic-s3@smem: - shard-apl: [ABORT][28] ([i915#180] / [i915#8213]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-apl2/igt@gem_exec_suspend@basic-s3@smem.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl7/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-rkl}: [SKIP][30] ([i915#1937] / [i915#4579]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-rkl-3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-lpsp: - {shard-rkl}: [SKIP][32] ([i915#1397]) -> [PASS][33] +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-dg1}: [SKIP][34] ([i915#1397]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][36] ([i915#2346]) -> [PASS][37] +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7311/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.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 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [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#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [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#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [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#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6333]: https://gitlab.freedesktop.org/drm/intel/issues/6333 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [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#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [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#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8217]: https://gitlab.freedesktop.org/drm/intel/issues/8217 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8272]: https://gitlab.freedesktop.org/drm/intel/issues/8272 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7311 -> IGTPW_9073 CI-20190529: 20190529 CI_DRM_13200: 0ae4ee2c735979030a0219218081eee661606921 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9073: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/index.html IGT_7311: c031030f39aff973330668a5a2f1593408da78ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9073/index.html [-- Attachment #2: Type: text/html, Size: 14008 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-05-31 20:53 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-30 14:43 [igt-dev] [PATCH i-g-t v2 0/3] check dsc hardware capability Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 1/3] tests: s/igt_is_dsc_supported/igt_is_dsc_supported_by_sink Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 2/3] tests: s/check_dsc_on_connector/is_dsc_supported_by_sink Swati Sharma 2023-05-30 14:43 ` [igt-dev] [PATCH i-g-t v2 3/3] tests: add igt_is_dsc_supported_by_source() Swati Sharma 2023-05-30 17:03 ` Kamil Konieczny 2023-05-30 19:51 ` [igt-dev] ✓ Fi.CI.BAT: success for check dsc hardware capability Patchwork 2023-05-31 20:53 ` [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