* [PATCH i-g-t 0/2] check modparam before enabling psr mode
@ 2024-01-23 14:18 Kunal Joshi
2024-01-23 14:18 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi
` (4 more replies)
0 siblings, 5 replies; 14+ messages in thread
From: Kunal Joshi @ 2024-01-23 14:18 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
with i915.enable_psr modparam, one can enable required psr version
i915.enable_psr = 0 PSR_1 and PSR_2 tests should skip
i915.enable_psr = 1 PSR_1 tests should run but PSR_2 tests should skip
i915.enable_psr = 2 PSR_1 and PSR_2 tests should run
fix test to check modparam before enabling through psr_debug debugfs
Kunal Joshi (2):
lib/igt_psr: add helper to check of given psr mode can be enabled
tests/intel/kms_psr: enable given psr mode only after checking
enable_psr modparam
lib/igt_psr.c | 23 +++++++++++++++++++++++
lib/igt_psr.h | 1 +
tests/intel/kms_psr.c | 12 ++++++++++++
3 files changed, 36 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled 2024-01-23 14:18 [PATCH i-g-t 0/2] check modparam before enabling psr mode Kunal Joshi @ 2024-01-23 14:18 ` Kunal Joshi 2024-01-23 14:44 ` B, Jeevan 2024-01-24 5:30 ` Modem, Bhanuprakash 2024-01-23 14:18 ` [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam Kunal Joshi ` (3 subsequent siblings) 4 siblings, 2 replies; 14+ messages in thread From: Kunal Joshi @ 2024-01-23 14:18 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Check if given psr mode can be enabled by reading enable_psr modparam Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/igt_psr.c | 23 +++++++++++++++++++++++ lib/igt_psr.h | 1 + 2 files changed, 24 insertions(+) diff --git a/lib/igt_psr.c b/lib/igt_psr.c index 663bac163..181499cf7 100644 --- a/lib/igt_psr.c +++ b/lib/igt_psr.c @@ -394,3 +394,26 @@ enum psr_mode psr_get_mode(int debugfs_fd) return PSR_DISABLED; } + +/** + * is_psr_enable_possible + * Check if given psr mode can be enabled by reading enable_psr + * modparam + * + * Returns: + * True if given psr mode can be enabled, false otherwise. + */ +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode) +{ + char *param_value; + int enable_psr; + + param_value = __igt_params_get(drm_fd, "enable_psr"); + if (!is_i915_device(drm_fd) && !param_value) { + igt_info("Failed to retrieve module parameter enable_psr\n"); + return false; + } + enable_psr = atoi(param_value); + free(param_value); + return enable_psr > mode; +} diff --git a/lib/igt_psr.h b/lib/igt_psr.h index 36711c0d4..82a4e8c5e 100644 --- a/lib/igt_psr.h +++ b/lib/igt_psr.h @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd); bool i915_psr2_sel_fetch_to_psr1(int drm_fd); void i915_psr2_sel_fetch_restore(int drm_fd); +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode); #endif -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* RE: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled 2024-01-23 14:18 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi @ 2024-01-23 14:44 ` B, Jeevan 2024-01-24 5:30 ` Modem, Bhanuprakash 1 sibling, 0 replies; 14+ messages in thread From: B, Jeevan @ 2024-01-23 14:44 UTC (permalink / raw) To: Joshi, Kunal1, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1 > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Kunal Joshi > Sent: Tuesday, January 23, 2024 7:49 PM > To: igt-dev@lists.freedesktop.org > Cc: Joshi, Kunal1 <kunal1.joshi@intel.com> > Subject: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can > be enabled > > Check if given psr mode can be enabled by reading enable_psr modparam > > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> LGTM Reviewed-by: Jeevan B <jeevan.b@intel.com> > --- > lib/igt_psr.c | 23 +++++++++++++++++++++++ lib/igt_psr.h | 1 + > 2 files changed, 24 insertions(+) > > diff --git a/lib/igt_psr.c b/lib/igt_psr.c index 663bac163..181499cf7 100644 > --- a/lib/igt_psr.c > +++ b/lib/igt_psr.c > @@ -394,3 +394,26 @@ enum psr_mode psr_get_mode(int debugfs_fd) > > return PSR_DISABLED; > } > + > +/** > + * is_psr_enable_possible > + * Check if given psr mode can be enabled by reading enable_psr > + * modparam > + * > + * Returns: > + * True if given psr mode can be enabled, false otherwise. > + */ > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode) { > + char *param_value; > + int enable_psr; > + > + param_value = __igt_params_get(drm_fd, "enable_psr"); > + if (!is_i915_device(drm_fd) && !param_value) { > + igt_info("Failed to retrieve module parameter enable_psr\n"); > + return false; > + } > + enable_psr = atoi(param_value); > + free(param_value); > + return enable_psr > mode; > +} > diff --git a/lib/igt_psr.h b/lib/igt_psr.h index 36711c0d4..82a4e8c5e 100644 > --- a/lib/igt_psr.h > +++ b/lib/igt_psr.h > @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd); > > bool i915_psr2_sel_fetch_to_psr1(int drm_fd); void > i915_psr2_sel_fetch_restore(int drm_fd); > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode); > > #endif > -- > 2.25.1 ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled 2024-01-23 14:18 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi 2024-01-23 14:44 ` B, Jeevan @ 2024-01-24 5:30 ` Modem, Bhanuprakash 1 sibling, 0 replies; 14+ messages in thread From: Modem, Bhanuprakash @ 2024-01-24 5:30 UTC (permalink / raw) To: Kunal Joshi, igt-dev Hi Kunal, On 23-01-2024 07:48 pm, Kunal Joshi wrote: > Check if given psr mode can be enabled by reading enable_psr > modparam > > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > lib/igt_psr.c | 23 +++++++++++++++++++++++ > lib/igt_psr.h | 1 + > 2 files changed, 24 insertions(+) > > diff --git a/lib/igt_psr.c b/lib/igt_psr.c > index 663bac163..181499cf7 100644 > --- a/lib/igt_psr.c > +++ b/lib/igt_psr.c > @@ -394,3 +394,26 @@ enum psr_mode psr_get_mode(int debugfs_fd) > > return PSR_DISABLED; > } > + > +/** > + * is_psr_enable_possible > + * Check if given psr mode can be enabled by reading enable_psr > + * modparam > + * > + * Returns: > + * True if given psr mode can be enabled, false otherwise. > + */ > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode) > +{ > + char *param_value; > + int enable_psr; > + > + param_value = __igt_params_get(drm_fd, "enable_psr"); > + if (!is_i915_device(drm_fd) && !param_value) { Why do we need a driver check here? > + igt_info("Failed to retrieve module parameter enable_psr\n"); > + return false; > + } > + enable_psr = atoi(param_value); It may cause a segmentation fault, if the driver is i915 & param_value == NULL. Hence, NACK to merge this patch. - Bhanu > + free(param_value); > + return enable_psr > mode; > +} > diff --git a/lib/igt_psr.h b/lib/igt_psr.h > index 36711c0d4..82a4e8c5e 100644 > --- a/lib/igt_psr.h > +++ b/lib/igt_psr.h > @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd); > > bool i915_psr2_sel_fetch_to_psr1(int drm_fd); > void i915_psr2_sel_fetch_restore(int drm_fd); > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode); > > #endif ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam 2024-01-23 14:18 [PATCH i-g-t 0/2] check modparam before enabling psr mode Kunal Joshi 2024-01-23 14:18 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi @ 2024-01-23 14:18 ` Kunal Joshi 2024-01-23 14:44 ` B, Jeevan 2024-01-23 17:22 ` ✓ Fi.CI.BAT: success for check modparam before enabling psr mode Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 14+ messages in thread From: Kunal Joshi @ 2024-01-23 14:18 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi don't enable a psr mode with psr_debug debugfs, instead check what's the modparam value for i915_enable_psr Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/intel/kms_psr.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/intel/kms_psr.c b/tests/intel/kms_psr.c index 349671b00..521d4c708 100644 --- a/tests/intel/kms_psr.c +++ b/tests/intel/kms_psr.c @@ -497,16 +497,28 @@ static void fill_render(data_t *data, const struct igt_fb *fb, static bool psr_wait_entry_if_enabled(data_t *data) { + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) + igt_skip("enable_psr modparam doesn't allow psr mode %d\n", + data->op_psr_mode); + return psr_wait_entry(data->debugfs_fd, data->op_psr_mode, data->output); } static bool psr_wait_update_if_enabled(data_t *data) { + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) + igt_skip("enable_psr modparam doesn't allow psr mode %d\n", + data->op_psr_mode); + return psr_wait_update(data->debugfs_fd, data->op_psr_mode, data->output); } static bool psr_enable_if_enabled(data_t *data) { + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) + igt_skip("enable_psr modparam doesn't allow psr mode %d\n", + data->op_psr_mode); + return psr_enable(data->drm_fd, data->debugfs_fd, data->op_psr_mode); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam 2024-01-23 14:18 ` [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam Kunal Joshi @ 2024-01-23 14:44 ` B, Jeevan 2024-01-23 15:11 ` Srinivas, Vidya 0 siblings, 1 reply; 14+ messages in thread From: B, Jeevan @ 2024-01-23 14:44 UTC (permalink / raw) To: Joshi, Kunal1, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1 > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Kunal Joshi > Sent: Tuesday, January 23, 2024 7:49 PM > To: igt-dev@lists.freedesktop.org > Cc: Joshi, Kunal1 <kunal1.joshi@intel.com> > Subject: [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after > checking enable_psr modparam > > don't enable a psr mode with psr_debug debugfs, instead check what's the > modparam value for i915_enable_psr > > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> LGTM Reviewed-by: Jeevan B <jeevan.b@intel.com> > --- > tests/intel/kms_psr.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/tests/intel/kms_psr.c b/tests/intel/kms_psr.c index > 349671b00..521d4c708 100644 > --- a/tests/intel/kms_psr.c > +++ b/tests/intel/kms_psr.c > @@ -497,16 +497,28 @@ static void fill_render(data_t *data, const struct igt_fb > *fb, > > static bool psr_wait_entry_if_enabled(data_t *data) { > + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) > + igt_skip("enable_psr modparam doesn't allow psr mode %d\n", > + data->op_psr_mode); > + > return psr_wait_entry(data->debugfs_fd, data->op_psr_mode, data- > >output); } > > static bool psr_wait_update_if_enabled(data_t *data) { > + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) > + igt_skip("enable_psr modparam doesn't allow psr mode %d\n", > + data->op_psr_mode); > + > return psr_wait_update(data->debugfs_fd, data->op_psr_mode, data- > >output); } > > static bool psr_enable_if_enabled(data_t *data) { > + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) > + igt_skip("enable_psr modparam doesn't allow psr mode %d\n", > + data->op_psr_mode); > + > return psr_enable(data->drm_fd, data->debugfs_fd, data- > >op_psr_mode); } > > -- > 2.25.1 ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam 2024-01-23 14:44 ` B, Jeevan @ 2024-01-23 15:11 ` Srinivas, Vidya 0 siblings, 0 replies; 14+ messages in thread From: Srinivas, Vidya @ 2024-01-23 15:11 UTC (permalink / raw) To: B, Jeevan, Joshi, Kunal1, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1 Tested-by: Vidya Srinivas <vidya.srinivas@intel.com> > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of B, > Jeevan > Sent: Tuesday, January 23, 2024 8:14 PM > To: Joshi, Kunal1 <kunal1.joshi@intel.com>; igt-dev@lists.freedesktop.org > Cc: Joshi, Kunal1 <kunal1.joshi@intel.com> > Subject: RE: [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only > after checking enable_psr modparam > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Kunal Joshi > > Sent: Tuesday, January 23, 2024 7:49 PM > > To: igt-dev@lists.freedesktop.org > > Cc: Joshi, Kunal1 <kunal1.joshi@intel.com> > > Subject: [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode > > only after checking enable_psr modparam > > > > don't enable a psr mode with psr_debug debugfs, instead check what's > > the modparam value for i915_enable_psr > > > > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > LGTM > > Reviewed-by: Jeevan B <jeevan.b@intel.com> > > --- > > tests/intel/kms_psr.c | 12 ++++++++++++ > > 1 file changed, 12 insertions(+) > > > > diff --git a/tests/intel/kms_psr.c b/tests/intel/kms_psr.c index > > 349671b00..521d4c708 100644 > > --- a/tests/intel/kms_psr.c > > +++ b/tests/intel/kms_psr.c > > @@ -497,16 +497,28 @@ static void fill_render(data_t *data, const > > struct igt_fb *fb, > > > > static bool psr_wait_entry_if_enabled(data_t *data) { > > + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) > > + igt_skip("enable_psr modparam doesn't allow psr mode > %d\n", > > + data->op_psr_mode); > > + > > return psr_wait_entry(data->debugfs_fd, data->op_psr_mode, data- > > >output); } > > > > static bool psr_wait_update_if_enabled(data_t *data) { > > + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) > > + igt_skip("enable_psr modparam doesn't allow psr mode > %d\n", > > + data->op_psr_mode); > > + > > return psr_wait_update(data->debugfs_fd, data->op_psr_mode, data- > > >output); } > > > > static bool psr_enable_if_enabled(data_t *data) { > > + if (!is_psr_enable_possible(data->drm_fd, data->op_psr_mode)) > > + igt_skip("enable_psr modparam doesn't allow psr mode > %d\n", > > + data->op_psr_mode); > > + > > return psr_enable(data->drm_fd, data->debugfs_fd, data- > > >op_psr_mode); } > > > > -- > > 2.25.1 ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Fi.CI.BAT: success for check modparam before enabling psr mode 2024-01-23 14:18 [PATCH i-g-t 0/2] check modparam before enabling psr mode Kunal Joshi 2024-01-23 14:18 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi 2024-01-23 14:18 ` [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam Kunal Joshi @ 2024-01-23 17:22 ` Patchwork 2024-01-23 18:11 ` ✓ CI.xeBAT: " Patchwork 2024-01-24 0:17 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-01-23 17:22 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7238 bytes --] == Series Details == Series: check modparam before enabling psr mode URL : https://patchwork.freedesktop.org/series/129092/ State : success == Summary == CI Bug Log - changes from CI_DRM_14166 -> IGTPW_10576 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/index.html Participating hosts (38 -> 38) ------------------------------ Additional (1): fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10576 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-pnv-d510: NOTRUN -> [SKIP][1] ([fdo#109271]) +28 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/fi-pnv-d510/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rps@basic-api: - bat-mtlp-6: NOTRUN -> [SKIP][3] ([i915#6621]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][4] ([i915#4212] / [i915#9792]) +8 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][5] ([i915#5190] / [i915#9792]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-mtlp-6: NOTRUN -> [SKIP][6] ([i915#9792]) +16 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-dpms: - bat-mtlp-6: NOTRUN -> [SKIP][7] ([i915#3637] / [i915#9792]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-6: NOTRUN -> [SKIP][8] ([fdo#109285] / [i915#9792]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-6: NOTRUN -> [SKIP][9] ([i915#5274] / [i915#9792]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-mtlp-6: NOTRUN -> [SKIP][10] ([i915#4342] / [i915#5354] / [i915#9792]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - bat-mtlp-6: NOTRUN -> [SKIP][11] ([i915#5354] / [i915#9792]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-6: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#8809] / [i915#9792]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-mtlp-6: NOTRUN -> [SKIP][13] ([i915#3708] / [i915#9792]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#3708] / [i915#4077]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-mtlp-6: NOTRUN -> [SKIP][15] ([i915#3708]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_hangman@error-state-basic: - bat-mtlp-6: [ABORT][16] ([i915#9414]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/bat-mtlp-6/igt@i915_hangman@error-state-basic.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-6/igt@i915_hangman@error-state-basic.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [DMESG-WARN][18] -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@hangcheck: - {bat-rpls-3}: [DMESG-WARN][20] ([i915#5591]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/bat-rpls-3/igt@i915_selftest@live@hangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/bat-rpls-3/igt@i915_selftest@live@hangcheck.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [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#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/intel/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7690 -> IGTPW_10576 CI-20190529: 20190529 CI_DRM_14166: fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10576: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/index.html IGT_7690: aa45298ff675abbe6bf8f04ae186e2388c35f03a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/index.html [-- Attachment #2: Type: text/html, Size: 8955 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ CI.xeBAT: success for check modparam before enabling psr mode 2024-01-23 14:18 [PATCH i-g-t 0/2] check modparam before enabling psr mode Kunal Joshi ` (2 preceding siblings ...) 2024-01-23 17:22 ` ✓ Fi.CI.BAT: success for check modparam before enabling psr mode Patchwork @ 2024-01-23 18:11 ` Patchwork 2024-01-24 0:17 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-01-23 18:11 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1117 bytes --] == Series Details == Series: check modparam before enabling psr mode URL : https://patchwork.freedesktop.org/series/129092/ State : success == Summary == CI Bug Log - changes from XEIGT_7690_BAT -> XEIGTPW_10576_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7690 -> IGTPW_10576 * Linux: xe-669-741c439503ee0986a7b7c5b590cbd9813b8841f6 -> xe-672-fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c IGTPW_10576: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/index.html IGT_7690: aa45298ff675abbe6bf8f04ae186e2388c35f03a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-669-741c439503ee0986a7b7c5b590cbd9813b8841f6: 741c439503ee0986a7b7c5b590cbd9813b8841f6 xe-672-fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c: fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10576/index.html [-- Attachment #2: Type: text/html, Size: 1676 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ Fi.CI.IGT: failure for check modparam before enabling psr mode 2024-01-23 14:18 [PATCH i-g-t 0/2] check modparam before enabling psr mode Kunal Joshi ` (3 preceding siblings ...) 2024-01-23 18:11 ` ✓ CI.xeBAT: " Patchwork @ 2024-01-24 0:17 ` Patchwork 4 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2024-01-24 0:17 UTC (permalink / raw) To: Kunal Joshi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84965 bytes --] == Series Details == Series: check modparam before enabling psr mode URL : https://patchwork.freedesktop.org/series/129092/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14166_full -> IGTPW_10576_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10576_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10576_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_10576/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10576_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4: - shard-dg1: [PASS][1] -> [FAIL][2] +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-16/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4.html Known issues ------------ Here are the changes found in IGTPW_10576_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit: - shard-dg2: NOTRUN -> [DMESG-WARN][6] ([i915#10140]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-10/igt@drm_fdinfo@busy@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#9364]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][16] -> [FAIL][17] ([i915#6268]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-rkl: NOTRUN -> [SKIP][18] ([fdo#109314]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-18/igt@gem_eio@kms.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-16/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#6344]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#2846]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-13/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-rkl: [PASS][30] -> [FAIL][31] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-2/igt@gem_exec_fair@basic-none-solo@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk8/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][34] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@gem_exec_fence@submit67.html - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-19/igt@gem_exec_fence@submit67.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][39] ([fdo#109283] / [i915#5107]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html - shard-tglu: NOTRUN -> [SKIP][40] ([fdo#109283]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-4/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-dg1: NOTRUN -> [SKIP][41] ([fdo#112283]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@gem_exec_params@secure-non-master.html - shard-mtlp: NOTRUN -> [SKIP][42] ([fdo#112283]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][43] ([fdo#112283]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@gem_exec_params@secure-non-root.html - shard-tglu: NOTRUN -> [SKIP][44] ([fdo#112283]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-7/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +10 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-read.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][49] ([i915#7975] / [i915#8213]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-12/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#4613]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk9/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-14/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_madvise@dontneed-before-exec: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +6 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_gtt@big-bo: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-19/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@gem_mmap_wc@bad-size.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-12/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@display: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@gem_pread@display.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-15/igt@gem_pread@display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [INCOMPLETE][67] ([i915#10042] / [i915#10137]) +1 other test incomplete [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk4/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@gem_pxp@create-regular-context-2.html - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@gem_pxp@create-regular-context-2.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-16/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@display-protected-crc: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-10/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglu: NOTRUN -> [SKIP][76] ([fdo#109312]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-4/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-7/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4958]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gen3_render_tiledy_blits: - shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109289]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][84] ([fdo#109289]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][85] ([fdo#109271]) +114 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-chained: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-3/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#6227]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][91] -> [INCOMPLETE][92] ([i915#10137] / [i915#9200] / [i915#9849]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][93] ([i915#10137] / [i915#9820] / [i915#9849]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglu: NOTRUN -> [SKIP][94] ([fdo#109289]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [PASS][95] -> [FAIL][96] ([i915#3591]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html - shard-tglu: NOTRUN -> [WARN][97] ([i915#2681]) +3 other tests warn [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][98] -> [INCOMPLETE][99] ([i915#10137] / [i915#7790]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb1/igt@i915_pm_rps@reset.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#7984]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-6/igt@i915_power@sanity.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#5190]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4212]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#8709]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#5286]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#111615] / [i915#5286]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111614]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-16/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111614]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][112] ([fdo#111614]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-180: - shard-mtlp: [PASS][113] -> [FAIL][114] ([i915#5138]) +1 other test fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-mtlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][115] -> [FAIL][116] ([i915#3743]) +2 other tests fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111615]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190]) +9 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#111615]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][121] ([fdo#110723]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111615]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#2705]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-b-bad-aux-stride-4-tiled-mtl-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +24 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@kms_ccs@pipe-b-bad-aux-stride-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5354]) +82 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +19 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y-tiled-gen12-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +15 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_ccs@pipe-c-bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-glk: NOTRUN -> [SKIP][129] ([fdo#109271]) +167 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk4/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-16/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354]) +19 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4087]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-mtlp: NOTRUN -> [SKIP][134] ([fdo#111827]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-tglu: NOTRUN -> [SKIP][135] ([fdo#111827]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#7828]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#7828]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3299]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3299]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#3299]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#7118]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-7/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3359]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#3555]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3359]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3359]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#109274] / [i915#5354]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][153] ([fdo#109274]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111825]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111767] / [fdo#111825]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274] / [fdo#111767] / [i915#5354]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#9067]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#4103] / [i915#4213]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][159] ([i915#4103]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [PASS][160] -> [DMESG-WARN][161] ([i915#1982]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-7/igt@kms_cursor_legacy@torture-move@pipe-a.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-10/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#9723]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#9833]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#8588]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#8812]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3840] / [i915#9688]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3840]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#1839]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#1839]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#9337]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#658]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-12/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][173] ([fdo#109274]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3637]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#109274] / [i915#3637]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#2587] / [i915#2672]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#2672]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8810]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#2672]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8708]) +12 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8708]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [PASS][182] -> [SKIP][183] ([fdo#109271]) +12 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#5439]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][185] ([fdo#111825]) +11 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#1825]) +11 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109280]) +18 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#5439]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][189] ([fdo#110189]) +7 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3458]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3458]) +12 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3023]) +15 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111825] / [i915#1825]) +27 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-7/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#4816]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4816]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#1839]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#6301]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#6301]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-10/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][202] ([i915#4573]) +1 other test fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk5/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#9809]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][205] ([i915#8292]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#9423]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#5176]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#9423]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9423]) +9 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9423]) +15 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#5176] / [i915#9423]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#5235] / [i915#9423]) +11 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#5235]) +7 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#9685]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#9685]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#5978]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][217] ([i915#3361]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9519]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#9519]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][220] -> [SKIP][221] ([i915#9519]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: [PASS][222] -> [SKIP][223] ([i915#9519]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#6524] / [i915#6805]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#6524]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][226] ([fdo#111068] / [i915#9683]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-9/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][227] ([fdo#111068] / [i915#9683]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#9683]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][229] ([fdo#111068] / [i915#9683]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-19/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9685]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-19/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#4235]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#4235]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][233] ([fdo#111615] / [i915#5289]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#5289]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-rkl: NOTRUN -> [DMESG-FAIL][235] ([i915#10143]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-rkl: NOTRUN -> [DMESG-WARN][236] ([i915#10143]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][237] ([i915#5465]) +3 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8823]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#8623]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8808]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#9906]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2437]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2437] / [i915#9412]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [PASS][244] -> [FAIL][245] ([i915#4349]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-13/igt@perf_pmu@busy-double-start@vecs0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-17/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@enable-race@rcs0: - shard-glk: [PASS][246] -> [DMESG-WARN][247] ([i915#118]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk5/igt@perf_pmu@enable-race@rcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk8/igt@perf_pmu@enable-race@rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-rkl: NOTRUN -> [SKIP][248] ([fdo#112283]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#8516]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][250] ([i915#8516]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#3708]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][252] ([fdo#109295] / [i915#3291] / [i915#3708]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3291] / [i915#3708]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-1/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-tglu: NOTRUN -> [SKIP][254] ([fdo#109295] / [fdo#111656]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9917]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#9917]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#9917]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][258] ([i915#9781]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk3/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][259] ([i915#9779]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-3/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][260] ([i915#9779]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk7/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@base-params: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2575]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-2/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#2575]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-14/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@single-in-sync: - shard-rkl: NOTRUN -> [SKIP][263] ([fdo#109315]) +8 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-4/igt@v3d/v3d_submit_cl@single-in-sync.html * igt@v3d/v3d_submit_cl@valid-multisync-submission: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2575]) +10 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-5/igt@v3d/v3d_submit_cl@valid-multisync-submission.html * igt@v3d/v3d_wait_bo@used-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][265] ([fdo#109315] / [i915#2575]) +6 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@v3d/v3d_wait_bo@used-bo-0ns.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#7711]) +8 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-2/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#7711]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@vc4/vc4_tiling@get-bad-flags.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#7711]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#7711]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#2575]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@fbdev@pan: - shard-snb: [FAIL][271] ([i915#4435]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb7/igt@fbdev@pan.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb2/igt@fbdev@pan.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-tglu: [ABORT][273] -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-9/igt@gem_ctx_isolation@preservation-s3@vecs0.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-6/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][275] ([i915#5784]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-13/igt@gem_eio@reset-stress.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][277] ([i915#2842]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][279] ([i915#2842]) -> [PASS][280] +1 other test pass [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][281] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@hangcheck: - shard-dg1: [ABORT][283] ([i915#9413]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-16/igt@i915_selftest@live@hangcheck.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-12/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][285] ([i915#3743]) -> [PASS][286] +1 other test pass [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-snb: [SKIP][287] ([fdo#109271]) -> [PASS][288] +10 other tests pass [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][289] ([i915#4281]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][291] ([i915#9519]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][293] ([i915#9519]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_rotation_crc@primary-rotation-270: - shard-rkl: [ABORT][295] ([i915#8875]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-270.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-mtlp: [DMESG-WARN][297] ([i915#10143]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-mtlp-4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][299] ([i915#9196]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [FAIL][301] ([i915#4349]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-mtlp-4/igt@perf_pmu@busy-double-start@rcs0.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][303] ([i915#4349]) -> [PASS][304] +3 other tests pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg1: [FAIL][305] ([i915#4349]) -> [PASS][306] +1 other test pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-13/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][307] ([i915#10137] / [i915#9408] / [i915#9618]) -> [ABORT][308] ([i915#9618]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@kms_content_protection@atomic: - shard-snb: [INCOMPLETE][309] ([i915#8816]) -> [SKIP][310] ([fdo#109271]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-snb7/igt@kms_content_protection@atomic.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-snb2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][311] ([i915#9424]) -> [SKIP][312] ([i915#9433]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-dg1-17/igt@kms_content_protection@mei-interface.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][313] ([fdo#110189] / [i915#3955]) -> [SKIP][314] ([i915#3955]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][315] ([i915#3361]) -> [FAIL][316] ([i915#9295]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][317] ([i915#4281]) -> [SKIP][318] ([i915#3361]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-tglu: [FAIL][319] ([i915#10136]) -> [DMESG-FAIL][320] ([i915#10143]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14166/shard-tglu-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/shard-tglu-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#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#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [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#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10140]: https://gitlab.freedesktop.org/drm/intel/issues/10140 [i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#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#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [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#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#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#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [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#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9413]: https://gitlab.freedesktop.org/drm/intel/issues/9413 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7690 -> IGTPW_10576 CI-20190529: 20190529 CI_DRM_14166: fc6b7c6ee7d786e6ed48425a2ce0e674906e4e5c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10576: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/index.html IGT_7690: aa45298ff675abbe6bf8f04ae186e2388c35f03a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10576/index.html [-- Attachment #2: Type: text/html, Size: 103441 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH i-g-t 0/2] check modparam before enabling psr mode
@ 2024-01-24 10:34 Kunal Joshi
2024-01-24 10:34 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi
0 siblings, 1 reply; 14+ messages in thread
From: Kunal Joshi @ 2024-01-24 10:34 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
with i915.enable_psr modparam, one can enable required psr version
i915.enable_psr = 0 PSR_1 and PSR_2 tests should skip
i915.enable_psr = 1 PSR_1 tests should run but PSR_2 tests should skip
i915.enable_psr = 2 PSR_1 and PSR_2 tests should run
fix test to check modparam before enabling through psr_debug debugfs
Kunal Joshi (2):
lib/igt_psr: add helper to check of given psr mode can be enabled
tests/intel/kms_psr: enable given psr mode only after checking
enable_psr modparam
lib/igt_psr.c | 20 ++++++++++++++++++++
lib/igt_psr.h | 1 +
tests/intel/kms_psr.c | 12 ++++++++++++
3 files changed, 33 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled 2024-01-24 10:34 [PATCH i-g-t 0/2] " Kunal Joshi @ 2024-01-24 10:34 ` Kunal Joshi 2024-01-24 11:57 ` Modem, Bhanuprakash 0 siblings, 1 reply; 14+ messages in thread From: Kunal Joshi @ 2024-01-24 10:34 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Check if given psr mode can be enabled by reading enable_psr modparam Cc: Jeevan B <jeevan.b@intel.com> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> Reviewed-by: Jeevan B <jeevan.b@intel.com> --- lib/igt_psr.c | 20 ++++++++++++++++++++ lib/igt_psr.h | 1 + 2 files changed, 21 insertions(+) diff --git a/lib/igt_psr.c b/lib/igt_psr.c index 663bac163..ac214fcfc 100644 --- a/lib/igt_psr.c +++ b/lib/igt_psr.c @@ -394,3 +394,23 @@ enum psr_mode psr_get_mode(int debugfs_fd) return PSR_DISABLED; } + +/** + * is_psr_enable_possible + * Check if given psr mode can be enabled by reading enable_psr + * modparam + * + * Returns: + * True if given psr mode can be enabled, false otherwise. + */ +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode) +{ + char *param_value; + int enable_psr; + + param_value = __igt_params_get(drm_fd, "enable_psr"); + igt_assert_f(param_value, "Could not read enable_psr modparam\n"); + enable_psr = atoi(param_value); + free(param_value); + return enable_psr > mode; +} diff --git a/lib/igt_psr.h b/lib/igt_psr.h index 36711c0d4..82a4e8c5e 100644 --- a/lib/igt_psr.h +++ b/lib/igt_psr.h @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd); bool i915_psr2_sel_fetch_to_psr1(int drm_fd); void i915_psr2_sel_fetch_restore(int drm_fd); +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode); #endif -- 2.25.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled 2024-01-24 10:34 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi @ 2024-01-24 11:57 ` Modem, Bhanuprakash 2024-01-24 12:06 ` Joshi, Kunal1 0 siblings, 1 reply; 14+ messages in thread From: Modem, Bhanuprakash @ 2024-01-24 11:57 UTC (permalink / raw) To: Kunal Joshi, igt-dev Hi Kunal, On 24-01-2024 04:04 pm, Kunal Joshi wrote: > Check if given psr mode can be enabled by reading enable_psr > modparam > > Cc: Jeevan B <jeevan.b@intel.com> > Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > Reviewed-by: Jeevan B <jeevan.b@intel.com> > --- > lib/igt_psr.c | 20 ++++++++++++++++++++ > lib/igt_psr.h | 1 + > 2 files changed, 21 insertions(+) > > diff --git a/lib/igt_psr.c b/lib/igt_psr.c > index 663bac163..ac214fcfc 100644 > --- a/lib/igt_psr.c > +++ b/lib/igt_psr.c > @@ -394,3 +394,23 @@ enum psr_mode psr_get_mode(int debugfs_fd) > > return PSR_DISABLED; > } > + > +/** > + * is_psr_enable_possible > + * Check if given psr mode can be enabled by reading enable_psr > + * modparam > + * > + * Returns: > + * True if given psr mode can be enabled, false otherwise. > + */ > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode) > +{ > + char *param_value; > + int enable_psr; > + > + param_value = __igt_params_get(drm_fd, "enable_psr"); > + igt_assert_f(param_value, "Could not read enable_psr modparam\n"); IMHO, Please don't assert here. Instead, allow the user to decide if modparam "enable_psr" is not available. - Bhanu > + enable_psr = atoi(param_value); > + free(param_value); > + return enable_psr > mode; > +} > diff --git a/lib/igt_psr.h b/lib/igt_psr.h > index 36711c0d4..82a4e8c5e 100644 > --- a/lib/igt_psr.h > +++ b/lib/igt_psr.h > @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd); > > bool i915_psr2_sel_fetch_to_psr1(int drm_fd); > void i915_psr2_sel_fetch_restore(int drm_fd); > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode); > > #endif ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled 2024-01-24 11:57 ` Modem, Bhanuprakash @ 2024-01-24 12:06 ` Joshi, Kunal1 2024-01-24 14:34 ` Modem, Bhanuprakash 0 siblings, 1 reply; 14+ messages in thread From: Joshi, Kunal1 @ 2024-01-24 12:06 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org Hell bhanu -----Original Message----- From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> Sent: Wednesday, January 24, 2024 5:28 PM To: Joshi, Kunal1 <kunal1.joshi@intel.com>; igt-dev@lists.freedesktop.org Cc: B, Jeevan <jeevan.b@intel.com> Subject: Re: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Hi Kunal, On 24-01-2024 04:04 pm, Kunal Joshi wrote: > Check if given psr mode can be enabled by reading enable_psr modparam > > Cc: Jeevan B <jeevan.b@intel.com> > Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> > Reviewed-by: Jeevan B <jeevan.b@intel.com> > --- > lib/igt_psr.c | 20 ++++++++++++++++++++ > lib/igt_psr.h | 1 + > 2 files changed, 21 insertions(+) > > diff --git a/lib/igt_psr.c b/lib/igt_psr.c index 663bac163..ac214fcfc > 100644 > --- a/lib/igt_psr.c > +++ b/lib/igt_psr.c > @@ -394,3 +394,23 @@ enum psr_mode psr_get_mode(int debugfs_fd) > > return PSR_DISABLED; > } > + > +/** > + * is_psr_enable_possible > + * Check if given psr mode can be enabled by reading enable_psr > + * modparam > + * > + * Returns: > + * True if given psr mode can be enabled, false otherwise. > + */ > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode) { > + char *param_value; > + int enable_psr; > + > + param_value = __igt_params_get(drm_fd, "enable_psr"); > + igt_assert_f(param_value, "Could not read enable_psr modparam\n"); IMHO, Please don't assert here. Instead, allow the user to decide if modparam "enable_psr" is not available. - Bhanu I think it's fine to assert since we expect enable_psr to be present, since the caller may not handle this, one less thing to worry 😊 I can see this is done similarly at many place example :- intel_pipe_output_combo_valid > + enable_psr = atoi(param_value); > + free(param_value); > + return enable_psr > mode; > +} > diff --git a/lib/igt_psr.h b/lib/igt_psr.h index 36711c0d4..82a4e8c5e > 100644 > --- a/lib/igt_psr.h > +++ b/lib/igt_psr.h > @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd); > > bool i915_psr2_sel_fetch_to_psr1(int drm_fd); > void i915_psr2_sel_fetch_restore(int drm_fd); > +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode); > > #endif[ Thanks and Regards [Kunal Joshi] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled 2024-01-24 12:06 ` Joshi, Kunal1 @ 2024-01-24 14:34 ` Modem, Bhanuprakash 0 siblings, 0 replies; 14+ messages in thread From: Modem, Bhanuprakash @ 2024-01-24 14:34 UTC (permalink / raw) To: Joshi, Kunal1, igt-dev@lists.freedesktop.org Hi Kunal, On 24-01-2024 05:36 pm, Joshi, Kunal1 wrote: > Hell bhanu > > -----Original Message----- > From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> > Sent: Wednesday, January 24, 2024 5:28 PM > To: Joshi, Kunal1 <kunal1.joshi@intel.com>; igt-dev@lists.freedesktop.org > Cc: B, Jeevan <jeevan.b@intel.com> > Subject: Re: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled > > Hi Kunal, > > On 24-01-2024 04:04 pm, Kunal Joshi wrote: >> Check if given psr mode can be enabled by reading enable_psr modparam >> >> Cc: Jeevan B <jeevan.b@intel.com> >> Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com> >> Reviewed-by: Jeevan B <jeevan.b@intel.com> >> --- >> lib/igt_psr.c | 20 ++++++++++++++++++++ >> lib/igt_psr.h | 1 + >> 2 files changed, 21 insertions(+) >> >> diff --git a/lib/igt_psr.c b/lib/igt_psr.c index 663bac163..ac214fcfc >> 100644 >> --- a/lib/igt_psr.c >> +++ b/lib/igt_psr.c >> @@ -394,3 +394,23 @@ enum psr_mode psr_get_mode(int debugfs_fd) >> >> return PSR_DISABLED; >> } >> + >> +/** >> + * is_psr_enable_possible >> + * Check if given psr mode can be enabled by reading enable_psr >> + * modparam >> + * >> + * Returns: >> + * True if given psr mode can be enabled, false otherwise. >> + */ >> +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode) { >> + char *param_value; >> + int enable_psr; >> + >> + param_value = __igt_params_get(drm_fd, "enable_psr"); >> + igt_assert_f(param_value, "Could not read enable_psr modparam\n"); > > IMHO, Please don't assert here. Instead, allow the user to decide if modparam "enable_psr" is not available. > > - Bhanu > > I think it's fine to assert since we expect enable_psr to be present, > since the caller may not handle this, one less thing to worry 😊 I am just thinking about the scenario, where the panel is capable of PSR but failed to read "enable_psr". As enable_psr is already present, I guess, we are OK with this change. Acked-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > I can see this is done similarly at many place > example :- intel_pipe_output_combo_valid Then we must review & fix them if required :-) - Bhanu > >> + enable_psr = atoi(param_value); >> + free(param_value); >> + return enable_psr > mode; >> +} >> diff --git a/lib/igt_psr.h b/lib/igt_psr.h index 36711c0d4..82a4e8c5e >> 100644 >> --- a/lib/igt_psr.h >> +++ b/lib/igt_psr.h >> @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd); >> >> bool i915_psr2_sel_fetch_to_psr1(int drm_fd); >> void i915_psr2_sel_fetch_restore(int drm_fd); >> +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode); >> >> #endif[ > Thanks and Regards > [Kunal Joshi] ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-01-24 14:35 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-23 14:18 [PATCH i-g-t 0/2] check modparam before enabling psr mode Kunal Joshi 2024-01-23 14:18 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi 2024-01-23 14:44 ` B, Jeevan 2024-01-24 5:30 ` Modem, Bhanuprakash 2024-01-23 14:18 ` [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam Kunal Joshi 2024-01-23 14:44 ` B, Jeevan 2024-01-23 15:11 ` Srinivas, Vidya 2024-01-23 17:22 ` ✓ Fi.CI.BAT: success for check modparam before enabling psr mode Patchwork 2024-01-23 18:11 ` ✓ CI.xeBAT: " Patchwork 2024-01-24 0:17 ` ✗ Fi.CI.IGT: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-01-24 10:34 [PATCH i-g-t 0/2] " Kunal Joshi 2024-01-24 10:34 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi 2024-01-24 11:57 ` Modem, Bhanuprakash 2024-01-24 12:06 ` Joshi, Kunal1 2024-01-24 14:34 ` Modem, Bhanuprakash
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox