[PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam

Srinivas, Vidya vidya.srinivas at intel.com
Tue Jan 23 15:11:05 UTC 2024


Tested-by: Vidya Srinivas <vidya.srinivas at intel.com>

> -----Original Message-----
> From: igt-dev <igt-dev-bounces at lists.freedesktop.org> On Behalf Of B,
> Jeevan
> Sent: Tuesday, January 23, 2024 8:14 PM
> To: Joshi, Kunal1 <kunal1.joshi at intel.com>; igt-dev at lists.freedesktop.org
> Cc: Joshi, Kunal1 <kunal1.joshi at 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 at lists.freedesktop.org> On Behalf Of
> > Kunal Joshi
> > Sent: Tuesday, January 23, 2024 7:49 PM
> > To: igt-dev at lists.freedesktop.org
> > Cc: Joshi, Kunal1 <kunal1.joshi at 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 at intel.com>
> LGTM
> 
> Reviewed-by: Jeevan B <jeevan.b at 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



More information about the igt-dev mailing list