rockchip: add rgb led and wlan rfkill for cyber 3588 aib

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
Tianling Shen 2024-09-25 17:35:02 +08:00
parent bc41ac2d2d
commit bff07d91b6
No known key found for this signature in database
GPG Key ID: 6850B6345C862176
2 changed files with 56 additions and 4 deletions

View File

@ -30,13 +30,25 @@
gpio-leds {
compatible = "gpio-leds";
pinctrl-names = "default";
pinctrl-0 = <&status_led_pin>;
pinctrl-0 = <&red_led_pin>, <&green_led_pin>, <&blue_led_pin>;
status_led: led-0 {
color = <LED_COLOR_ID_RED>;
function = LED_FUNCTION_STATUS;
gpios = <&gpio1 RK_PA2 GPIO_ACTIVE_HIGH>;
};
led-1 {
color = <LED_COLOR_ID_GREEN>;
function = LED_FUNCTION_STATUS;
gpios = <&gpio1 RK_PA3 GPIO_ACTIVE_HIGH>;
};
led-2 {
color = <LED_COLOR_ID_BLUE>;
function = LED_FUNCTION_STATUS;
gpios = <&gpio1 RK_PB2 GPIO_ACTIVE_HIGH>;
};
};
fan: pwm-fan {
@ -47,6 +59,13 @@
#cooling-cells = <2>;
};
rfkill-wlan {
compatible = "rfkill-gpio";
label = "rfkill-wlan";
radio-type = "wlan";
shutdown-gpios = <&gpio4 RK_PB5 GPIO_ACTIVE_HIGH>;
};
vcc12v_dcin: vcc12v-dcin-regulator {
compatible = "regulator-fixed";
regulator-name = "vcc12v_dcin";
@ -489,10 +508,17 @@
&pinctrl {
gpio-leds {
status_led_pin: status-led-pin {
red_led_pin: status-led-pin {
rockchip,pins = <1 RK_PA2 RK_FUNC_GPIO &pcfg_pull_none>;
};
green_led_pin: status-led-pin {
rockchip,pins = <1 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
};
blue_led_pin: status-led-pin {
rockchip,pins = <1 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
};
};
gmac {

View File

@ -35,13 +35,25 @@
gpio-leds {
compatible = "gpio-leds";
pinctrl-names = "default";
pinctrl-0 = <&status_led_pin>;
pinctrl-0 = <&red_led_pin>, <&green_led_pin>, <&blue_led_pin>;
status_led: led-0 {
color = <LED_COLOR_ID_RED>;
function = LED_FUNCTION_STATUS;
gpios = <&gpio1 RK_PA2 GPIO_ACTIVE_HIGH>;
};
led-1 {
color = <LED_COLOR_ID_GREEN>;
function = LED_FUNCTION_STATUS;
gpios = <&gpio1 RK_PA3 GPIO_ACTIVE_HIGH>;
};
led-2 {
color = <LED_COLOR_ID_BLUE>;
function = LED_FUNCTION_STATUS;
gpios = <&gpio1 RK_PB2 GPIO_ACTIVE_HIGH>;
};
};
fan: pwm-fan {
@ -52,6 +64,13 @@
#cooling-cells = <2>;
};
rfkill-wlan {
compatible = "rfkill-gpio";
label = "rfkill-wlan";
radio-type = "wlan";
shutdown-gpios = <&gpio4 RK_PB5 GPIO_ACTIVE_HIGH>;
};
vcc12v_dcin: vcc12v-dcin-regulator {
compatible = "regulator-fixed";
regulator-name = "vcc12v_dcin";
@ -522,10 +541,17 @@
&pinctrl {
gpio-leds {
status_led_pin: status-led-pin {
red_led_pin: status-led-pin {
rockchip,pins = <1 RK_PA2 RK_FUNC_GPIO &pcfg_pull_none>;
};
green_led_pin: status-led-pin {
rockchip,pins = <1 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
};
blue_led_pin: status-led-pin {
rockchip,pins = <1 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
};
};
gmac {