aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2022-06-15 13:50:04 +0200
committerShawn Guo <shawnguo@kernel.org>2022-06-20 09:12:41 +0800
commite366f7f7fcf6c98298644f45c7fe6660c3e30ffc (patch)
tree6c56125157764a82d048ccb7c7795596cb49bf6a
parentARM: dts: imx6q-apalis: Add support for Toradex Ixora V1.2 carrier boards (diff)
downloadlinux-dev-e366f7f7fcf6c98298644f45c7fe6660c3e30ffc.tar.xz
linux-dev-e366f7f7fcf6c98298644f45c7fe6660c3e30ffc.zip
ARM: dts: imx6q-apalis: backlight pwm: Simplify inverted backlight
Set #pwm-cells to the default 3 to gain access to the parameter which allows inverting the PWM signal. This is useful to specify a backlight which has its highest brightness at 0. With the change to use the PWM with inverted polarity the PWM signal is inverted to how it was before this patch. This changes the meaning of the values in the brightness-levels property. I.e. the duty-cycle changes from x/255 to (255-x)/255. Keeping the brightness-levels will then have a big brightness jump from 0 to 127 duty cycle, the other 6 steps will then be barely noticeable. Change the brightness-levels to provide the same brightness-levels as before. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
-rw-r--r--arch/arm/boot/dts/imx6qdl-apalis.dtsi10
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/boot/dts/imx6qdl-apalis.dtsi b/arch/arm/boot/dts/imx6qdl-apalis.dtsi
index 4ff46ffd2300..c134e71f2a09 100644
--- a/arch/arm/boot/dts/imx6qdl-apalis.dtsi
+++ b/arch/arm/boot/dts/imx6qdl-apalis.dtsi
@@ -6,6 +6,7 @@
*/
#include <dt-bindings/gpio/gpio.h>
+#include <dt-bindings/pwm/pwm.h>
/ {
model = "Toradex Apalis iMX6Q/D Module";
@@ -19,13 +20,13 @@
backlight: backlight {
compatible = "pwm-backlight";
+ brightness-levels = <0 4 8 16 32 64 128 255>;
+ default-brightness-level = <6>;
+ enable-gpios = <&gpio3 13 GPIO_ACTIVE_HIGH>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_gpio_bl_on>;
- brightness-levels = <0 127 191 223 239 247 251 255>;
- default-brightness-level = <1>;
- enable-gpios = <&gpio3 13 GPIO_ACTIVE_HIGH>;
power-supply = <&reg_module_3v3>;
- pwms = <&pwm4 0 5000000>;
+ pwms = <&pwm4 0 5000000 PWM_POLARITY_INVERTED>;
status = "disabled";
};
@@ -776,7 +777,6 @@
};
&pwm4 {
- #pwm-cells = <2>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_pwm4>;
status = "disabled";