lkml.org 
[lkml]   [2023]   [Mar]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2] arm64: dts: rk3399-pinephone-pro: Add internal display support
One small note...

On Mon, Mar 27, 2023 at 03:01:48PM +0200, megi xff wrote:
> Hi Javier,
>
> [...]
>
> This (1 kHz) seems to be outside of the range of recommended dimming frequency
> of SY7203: https://megous.com/dl/tmp/fb79af4023a5f102.png It's too low.
>
> The consequence is that there's a large ripple on the positive input of the
> feedback comparator https://megous.com/dl/tmp/e155900fecb0323f.png which
> will cause similar instability in backlight brightness.
>
> I've hooked up a photoresistor to a scope, and the display is indeed varying the
> brightness at 1 kHz https://megous.com/dl/tmp/09cb95c7b4b2892b.png
>
> There are two variants of SY7203 which differ by ouput regulation technique.
> One with this internal integrator, and other with direct PWM control of the
> output. My guess is that PPP uses the integrator variant.
>
> I switched PWM period to 50000 (20 kHz recommended by the datasheet and the
> flicker is gone https://megous.com/dl/tmp/31b6bfc51badde3b.png
>
> So I think higher PWM frequency will be better suited here, and this may really
> be the LED driver variant with the integrator.
>
> (Photoresistors are not that fast, but I've hooked a LED to signal generator,
> to simulate 20kHz blinking backlight, and I was still able to catch the pattern
> on the scope via a photoresistor, so it looks like this verifies that it
> would still be possible to measure some flicker at 20 kHz using this technique.
> I guess I should buy a PIN diode for the next time. :))

Experimentally SY7203 will only start up with duty cycle of 250ns or more.

So this means that default curve generated by the kernel will not work at 20 kHz
at low ranges, because cie1931 -> pwm duty cycle covnersion done by the
kernel will result in too small duty cycle at brightness < 5%, because that
translates to duty cycle of 250ns or less. In other words, kernel will generate
3124 brightness steps for PWM period of 50us, with bottom ~150 steps being
unusable and behaving weirdly (sometimes some of them work sometimes not,
depending whether the LED regulator is already running or not).

So the cie1931 curve may need a bit of a Y shift, by specifying a minimum duty
cycle usable by the hardware.

Something like these 50 brightness levels work nicely, starting from minimum
250ns and going up:

brightness-levels =
<0 250 360 470 580 690 810 949 1110 1294 1502
1737 1998 2289 2610 2964 3351 3774 4233 4731
5268 5847 6467 7133 7845 8604 9412 10271 11182
12146 13164 14239 15374 16568 17822 19140 20521
21969 23483 25068 26722 28447 30247 32121 34071
36099 38210 40400 42669 45026 47468 50000>;
default-brightness-level = <17>;

when put into backlight node.

Or if we want 100 steps, then this curve would work, too:

brightness-levels = <250 304 360 414 470 524 580 634 690 747 810 877
949 1027 1110 1199 1294 1395 1502 1616 1737 1864 1998 2140 2289
2446 2610 2783 2964 3154 3351 3559 3774 3999 4233 4477 4731 4994
5268 5552 5847 6152 6467 6795 7133 7483 7845 8219 8604 9002 9412
9835 10271 10719 11182 11656 12146 12648 13164 13695 14239 14799
15374 15963 16568 17186 17822 18474 19140 19822 20521 21236 21969
22717 23483 24267 25068 25885 26722 27575 28447 29338 30247 31173
32121 33087 34071 35077 36099 37145 38210 39292 40400 41523 42669
43839 45026 46237 47468 48722 50000>;


> > + pwm-delay-us = <10000>;

Also this doesn't seem to be documented anywhere or used in the kernel code...
So we should remove it.

kind regards,
o.

> > + };
> > +
> > gpio-keys {
> > compatible = "gpio-keys";
> > pinctrl-names = "default";

\
 
 \ /
  Last update: 2023-03-27 18:51    [W:0.078 / U:0.268 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site