|
@@ -21,6 +21,10 @@
|
|
|
ethernet2 = &dp3;
|
|
|
ethernet3 = &dp2;
|
|
|
label-mac-device = &dp6_syn;
|
|
|
+ led-boot = &led_system_blue;
|
|
|
+ led-failsafe = &led_system_red;
|
|
|
+ led-running = &led_system_green;
|
|
|
+ led-upgrade = &led_system_blue;
|
|
|
};
|
|
|
|
|
|
chosen {
|
|
@@ -78,6 +82,13 @@
|
|
|
bias-pull-up;
|
|
|
};
|
|
|
};
|
|
|
+
|
|
|
+ i2c_3_pins: i2c-3-state {
|
|
|
+ pins = "gpio46", "gpio47";
|
|
|
+ function = "blsp2_i2c";
|
|
|
+ drive-strength = <8>;
|
|
|
+ bias-disable;
|
|
|
+ };
|
|
|
};
|
|
|
|
|
|
&blsp1_uart5 {
|
|
@@ -303,3 +314,41 @@
|
|
|
|
|
|
qcom,ath11k-calibration-variant = "prpl-Haze";
|
|
|
};
|
|
|
+
|
|
|
+&blsp1_i2c3{
|
|
|
+ pinctrl-0 = <&i2c_3_pins>;
|
|
|
+ pinctrl-names = "default";
|
|
|
+ status = "okay";
|
|
|
+
|
|
|
+ led-controller@30 {
|
|
|
+ compatible = "ti,lp5562";
|
|
|
+ reg = <0x30>;
|
|
|
+ clock-mode = /bits/ 8 <2>;
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <0>;
|
|
|
+
|
|
|
+ led_system_red: chan@0 {
|
|
|
+ chan-name = "red";
|
|
|
+ led-cur = /bits/ 8 <0x20>;
|
|
|
+ max-cur = /bits/ 8 <0x60>;
|
|
|
+ color = <LED_COLOR_ID_RED>;
|
|
|
+ reg = <0>;
|
|
|
+ };
|
|
|
+
|
|
|
+ led_system_green: chan@1 {
|
|
|
+ chan-name = "green";
|
|
|
+ led-cur = /bits/ 8 <0x20>;
|
|
|
+ max-cur = /bits/ 8 <0x60>;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ reg = <1>;
|
|
|
+ };
|
|
|
+
|
|
|
+ led_system_blue: chan@2 {
|
|
|
+ chan-name = "blue";
|
|
|
+ led-cur = /bits/ 8 <0x20>;
|
|
|
+ max-cur = /bits/ 8 <0x60>;
|
|
|
+ color = <LED_COLOR_ID_BLUE>;
|
|
|
+ reg = <2>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|