Skip to content

Commit

Permalink
ARM: dts: imx6qdl-vicut1/vicutgo: Add backlight_led node
Browse files Browse the repository at this point in the history
backlight_led is the dimmable backlight for the rubber border on the case. It
is also used to highlight the power- and some other buttons.

MX6QDL_PAD_SD4_DAT1__PWM3_OUT is also assigned as output for pwm3. Since
we need pwm3 for the backlight, we're forced to disable user space hardware
revision detection. The bootloader will have to supply this information
(i.e. through device tree).

Signed-off-by: David Jander <david@protonic.nl>
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
  • Loading branch information
yope authored and Shawn Guo committed Apr 6, 2022
1 parent 156a722 commit 98efa52
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 25 deletions.
24 changes: 11 additions & 13 deletions arch/arm/boot/dts/imx6dl-victgo.dts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@
enable-gpios = <&gpio4 28 GPIO_ACTIVE_HIGH>;
};

backlight_led: backlight_led {
compatible = "pwm-backlight";
pwms = <&pwm3 0 5000000 0>;
brightness-levels = <0 16 64 255>;
num-interpolated-steps = <16>;
default-brightness-level = <48>;
power-supply = <&reg_3v3>;
};

connector {
compatible = "composite-video-connector";
label = "Composite0";
Expand Down Expand Up @@ -392,8 +401,8 @@
&gpio2 {
gpio-line-names =
"", "", "", "", "", "", "", "",
"REV_ID0", "REV_ID1", "REV_ID2", "REV_ID3", "REV_ID4",
"BOARD_ID0", "BOARD_ID1", "BOARD_ID2",
"", "LED_PWM", "", "", "",
"", "", "",
"", "", "", "", "", "", "ISB_IN1", "ON_SWITCH",
"POWER_LED", "", "", "", "", "", "", "";
};
Expand Down Expand Up @@ -778,17 +787,6 @@
/* ITU656_nPDN */
MX6QDL_PAD_CSI0_DATA_EN__GPIO5_IO20 0x1b0b0

/* HW revision detect */
/* REV_ID0 */
MX6QDL_PAD_SD4_DAT0__GPIO2_IO08 0x1b0b0
/* REV_ID1 is shared with PWM3 */
/* REV_ID2 */
MX6QDL_PAD_SD4_DAT2__GPIO2_IO10 0x1b0b0
/* REV_ID3 */
MX6QDL_PAD_SD4_DAT3__GPIO2_IO11 0x1b0b0
/* REV_ID4 */
MX6QDL_PAD_SD4_DAT4__GPIO2_IO12 0x1b0b0

/* New in HW revision 1 */
/* ON1_FB */
MX6QDL_PAD_EIM_D20__GPIO3_IO20 0x100b0
Expand Down
33 changes: 21 additions & 12 deletions arch/arm/boot/dts/imx6qdl-vicut1.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@
enable-gpios = <&gpio4 28 GPIO_ACTIVE_HIGH>;
};

backlight_led: backlight_led {
compatible = "pwm-backlight";
pwms = <&pwm3 0 5000000 0>;
brightness-levels = <0 16 64 255>;
num-interpolated-steps = <16>;
default-brightness-level = <48>;
power-supply = <&reg_3v3>;
};

connector {
compatible = "composite-video-connector";
label = "Composite0";
Expand Down Expand Up @@ -448,6 +457,12 @@
status = "okay";
};

&pwm3 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_pwm3>;
status = "okay";
};

&ssi1 {
#sound-dai-cells = <0>;
fsl,mode = "ac97-slave";
Expand Down Expand Up @@ -669,18 +684,6 @@
/* ITU656_nPDN */
MX6QDL_PAD_CSI0_DATA_EN__GPIO5_IO20 0x1b0b0

/* HW revision detect */
/* REV_ID0 */
MX6QDL_PAD_SD4_DAT0__GPIO2_IO08 0x1b0b0
/* REV_ID1 */
MX6QDL_PAD_SD4_DAT1__GPIO2_IO09 0x1b0b0
/* REV_ID2 */
MX6QDL_PAD_SD4_DAT2__GPIO2_IO10 0x1b0b0
/* REV_ID3 */
MX6QDL_PAD_SD4_DAT3__GPIO2_IO11 0x1b0b0
/* REV_ID4 */
MX6QDL_PAD_SD4_DAT4__GPIO2_IO12 0x1b0b0

/* New in HW revision 1 */
/* ON1_FB */
MX6QDL_PAD_EIM_D20__GPIO3_IO20 0x100b0
Expand Down Expand Up @@ -738,6 +741,12 @@
>;
};

pinctrl_pwm3: pwm3grp {
fsl,pins = <
MX6QDL_PAD_SD4_DAT1__PWM3_OUT 0x1b0b0
>;
};

/* YaCO AUX Uart */
pinctrl_uart1: uart1grp {
fsl,pins = <
Expand Down

0 comments on commit 98efa52

Please sign in to comment.