[PATCH 7/7] drm/i915/dp: Limit brightness level to 20

Kandpal, Suraj suraj.kandpal at intel.com
Thu Apr 4 10:15:17 UTC 2024



> -----Original Message-----
> From: Jani Nikula <jani.nikula at linux.intel.com>
> Sent: Thursday, April 4, 2024 2:34 PM
> To: Kandpal, Suraj <suraj.kandpal at intel.com>; intel-gfx at lists.freedesktop.org
> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah at intel.com>; Shankar,
> Uma <uma.shankar at intel.com>; Nautiyal, Ankit K
> <ankit.k.nautiyal at intel.com>; Murthy, Arun R <arun.r.murthy at intel.com>;
> Syrjala, Ville <ville.syrjala at intel.com>; Kumar, Naveen1
> <naveen1.kumar at intel.com>; sebastian.wick at redhat.com; Kandpal, Suraj
> <suraj.kandpal at intel.com>
> Subject: Re: [PATCH 7/7] drm/i915/dp: Limit brightness level to 20
> 
> On Thu, 04 Apr 2024, Suraj Kandpal <suraj.kandpal at intel.com> wrote:
> > Limit minimum brightness to 20 when using aux based brightness control
> > to avoid letting the screen going completely blank.
> 
> Why "20"? What does it mean? Why don't we have this in the VBT like for
> PWM backlight?

That makes sense. I used 20nits as that's where I felt the minimum amount of brightness looked okay.
But yes I could use the minimum brightness that we save in intel_panel ->backlight structure

Regards,
Suraj Kandpal
> 
> >
> > Signed-off-by: Suraj Kandpal <suraj.kandpal at intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c | 3 +++
> >  1 file changed, 3 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c
> > b/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c
> > index 20dd5a6a0f3f..b54ea7e46954 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp_aux_backlight.c
> > @@ -211,6 +211,9 @@ intel_dp_aux_hdr_set_aux_backlight(const struct
> drm_connector_state *conn_state,
> >  	struct intel_dp *intel_dp = enc_to_intel_dp(connector->encoder);
> >  	u8 buf[4] = {};
> >
> > +	if (level < 20)
> > +		level = 20;
> > +
> >  	buf[0] = level & 0xFF;
> >  	buf[1] = (level & 0xFF00) >> 8;
> 
> --
> Jani Nikula, Intel


More information about the Intel-gfx mailing list