Hello Maud,
On Mon, Jan 06, 2025 at 07:59:23PM +0100, Maud Spierings wrote:
Hello William,Note that for bl_power 0 is on and 4 is off. Still the behaviour you
I've once again put the patch to the test, and it seems the oops is
resolved.
I did notice something odd though, when controlling the backlight bl_power
0 means the backlight is on and controllable, 1 seems like off, but instead
sets the screen to maximum brightness and then stops listening to any value
echoed into brightness.
report sounds wrong. Quickly looking in the pwm_bl driver, I don't spot
something obvious.
The brightness is also reversed from what would be logical, so 255 is offThe backlight's operation should still be fine, its usage be independent
and 0 is maximum.
Now the little text at the top specifies that the hardware only does
inverted polarity, which I guess explains this, but I don't understand it.
of the PWM's details.
I also encountered this when I got an error to start with so I had to addThat makes me suspect the problem is on your end. If you add
PWM_POLARITY_INVERTED to my pwm-backlight definition.
PWM_POLARITY_INVERTED the result is that the pwm_bl driver still
configures duty_cycle=0 for backlight off, but you then get a constant
high output.
So with the hardware capabilities (i.e. not being able to emit a
constant low output) I think you need to not use PWM_POLARITY_INVERTED
and accept that completely off doesn't work (unless you have an
additional GPIO or regulator to disable the backlight).
But I don't understand why it isn't supported. Wouldn't supporting nonIf you only care about the mean voltage level (as is the case for a
inverted polarity be a very simple calculation? 40% negative duty cycle is
of course equal to 60% positive duty cycle, 20% N == 80% P etc. I don't see
why the hardware would specifically have to support this.
backlight), that's right. But only then. And if the hardware cannot emit
a constant low signal, this doesn't help you.
Best regards
Uwe