2023-06-14 19:36:45

by Maximilian Weigand

[permalink] [raw]
Subject: [PATCH 0/3] backlight: lm3630a: add functionality to change boost converter frequency

For certain brightness settings the Pine64 PineNote exhibits quite
visible flickering of the led backlights, leading to an unpleasant user
experience. It is understood that flickering is caused by certain power
line ripples interacting with the led driver, inherent to the
specific hardware. The lm3630a led driver is able to change the boost
converter switching frequency. Among other things, changing the boost
frequency can also greatly improve visible flickering issues.

This patchset enables dts control of two frequency modifications that the
hardware is capable of: Switch from a base frequency of 500 kHz to 1
MHz, and activate a frequency shift to 560 kHz or 1.12 MHz,
respectively.

As flickering characteristics are mainly hardware dependent, this should
warrant the inclusion of two dts entries for the lm3630a led driver to
control the boost frequency of the chip on a per-device basis.

Changes were tested on a Pine64 PineNote. The following brightness
settings were found to exhibit serious flickering without either the
frequency shift or the higher boost frequency:

echo 186 > /sys/class/backlight/backlight_warm/brightness
echo 255 > /sys/class/backlight/backlight_cool/brightness

Signed-off-by: Maximilian Weigand <[email protected]>
---
Maximilian Weigand (3):
backlight: lm3630a: add support for changing the boost frequency
dt-bindings: backlight: lm3630a: add entries to control boost frequency
arm64: dts: rockchip: shift boost frequency for rk3566-pinenote backlight

.../bindings/leds/backlight/lm3630a-backlight.yaml | 12 ++++++++++++
arch/arm64/boot/dts/rockchip/rk3566-pinenote.dtsi | 1 +
drivers/video/backlight/lm3630a_bl.c | 9 ++++++++-
include/linux/platform_data/lm3630a_bl.h | 5 +++++
4 files changed, 26 insertions(+), 1 deletion(-)
---
base-commit: 858fd168a95c5b9669aac8db6c14a9aeab446375
change-id: 20230602-lm3630a_boost_frequency-bae9656ec759

Best regards,
--
Maximilian Weigand <[email protected]>



2023-06-14 19:37:30

by Maximilian Weigand

[permalink] [raw]
Subject: [PATCH 3/3] arm64: dts: rockchip: shift boost frequency for rk3566-pinenote backlight

From: Maximilian Weigand <[email protected]>

The PineNote exhibits visible flickering of its backlight for certain
brightness settings. Alleviate this by enabling a frequency shift from
500 kHz to 560 kHz for the boost converter of the led driver.

Signed-off-by: Maximilian Weigand <[email protected]>
---
arch/arm64/boot/dts/rockchip/rk3566-pinenote.dtsi | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/arm64/boot/dts/rockchip/rk3566-pinenote.dtsi b/arch/arm64/boot/dts/rockchip/rk3566-pinenote.dtsi
index 8d61f824c12d..4e4b3bbaa157 100644
--- a/arch/arm64/boot/dts/rockchip/rk3566-pinenote.dtsi
+++ b/arch/arm64/boot/dts/rockchip/rk3566-pinenote.dtsi
@@ -453,6 +453,7 @@ led-controller@36 {
pinctrl-names = "default";
#address-cells = <1>;
#size-cells = <0>;
+ ti,boost_frequency_shift;

led@0 {
reg = <0>;

--
2.39.2