Commit c603327e authored by Aren Moynihan's avatar Aren Moynihan Committed by Jernej Skrabec

arm64: dts: allwinner: pinephone: add multicolor LED node

The red, green, and blue LEDs currently in the device tree represent a
single RGB LED on the front of the PinePhone.
Signed-off-by: default avatarAren Moynihan <aren@peacevolution.org>
Acked-by: default avatarJernej Skrabec <jernej.skrabec@gmail.com>
Link: https://lore.kernel.org/r/20240317004116.1473967-2-aren@peacevolution.orgSigned-off-by: default avatarJernej Skrabec <jernej.skrabec@gmail.com>
parent 943e6cdc
...@@ -39,21 +39,21 @@ chosen { ...@@ -39,21 +39,21 @@ chosen {
leds { leds {
compatible = "gpio-leds"; compatible = "gpio-leds";
led-0 { led0: led-0 {
function = LED_FUNCTION_INDICATOR; function = LED_FUNCTION_INDICATOR;
color = <LED_COLOR_ID_BLUE>; color = <LED_COLOR_ID_BLUE>;
gpios = <&pio 3 20 GPIO_ACTIVE_HIGH>; /* PD20 */ gpios = <&pio 3 20 GPIO_ACTIVE_HIGH>; /* PD20 */
retain-state-suspended; retain-state-suspended;
}; };
led-1 { led1: led-1 {
function = LED_FUNCTION_INDICATOR; function = LED_FUNCTION_INDICATOR;
color = <LED_COLOR_ID_GREEN>; color = <LED_COLOR_ID_GREEN>;
gpios = <&pio 3 18 GPIO_ACTIVE_HIGH>; /* PD18 */ gpios = <&pio 3 18 GPIO_ACTIVE_HIGH>; /* PD18 */
retain-state-suspended; retain-state-suspended;
}; };
led-2 { led2: led-2 {
function = LED_FUNCTION_INDICATOR; function = LED_FUNCTION_INDICATOR;
color = <LED_COLOR_ID_RED>; color = <LED_COLOR_ID_RED>;
gpios = <&pio 3 19 GPIO_ACTIVE_HIGH>; /* PD19 */ gpios = <&pio 3 19 GPIO_ACTIVE_HIGH>; /* PD19 */
...@@ -61,6 +61,13 @@ led-2 { ...@@ -61,6 +61,13 @@ led-2 {
}; };
}; };
multi-led {
compatible = "leds-group-multicolor";
color = <LED_COLOR_ID_RGB>;
function = LED_FUNCTION_INDICATOR;
leds = <&led0>, <&led1>, <&led2>;
};
reg_ps: ps-regulator { reg_ps: ps-regulator {
compatible = "regulator-fixed"; compatible = "regulator-fixed";
regulator-name = "ps"; regulator-name = "ps";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment