108 lines
2.7 KiB
Diff
108 lines
2.7 KiB
Diff
From 6580db567a9eb07247e9bb633001b5a88650c2fe Mon Sep 17 00:00:00 2001
|
|
From: The-going <48602507+The-going@users.noreply.github.com>
|
|
Date: Mon, 24 Jan 2022 19:54:04 +0300
|
|
Subject: [PATCH 110/170] arm64:dts: sun50i-h5-orangepi-zero-plus2
|
|
regulator-gpio fix
|
|
|
|
---
|
|
.../sun50i-h5-orangepi-zero-plus2.dts | 58 ++++++++++++++-----
|
|
1 file changed, 45 insertions(+), 13 deletions(-)
|
|
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts b/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts
|
|
index 3e69ebde5..999fdcd96 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts
|
|
@@ -4,6 +4,7 @@
|
|
/dts-v1/;
|
|
|
|
#include "sun50i-h5.dtsi"
|
|
+#include "sun50i-h5-cpu-opp.dtsi"
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
@@ -30,33 +31,55 @@ hdmi_con_in: endpoint {
|
|
};
|
|
};
|
|
|
|
+ reg_vcc3v3: vcc3v3 {
|
|
+ compatible = "regulator-fixed";
|
|
+ regulator-name = "vcc3v3";
|
|
+ regulator-min-microvolt = <3300000>;
|
|
+ regulator-max-microvolt = <3300000>;
|
|
+ };
|
|
+
|
|
+ wifi_pwrseq: wifi_pwrseq {
|
|
+ compatible = "mmc-pwrseq-simple";
|
|
+ reset-gpios = <&pio 0 9 GPIO_ACTIVE_LOW>; /* PA9 */
|
|
+ post-power-on-delay-ms = <200>;
|
|
+ };
|
|
+
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led-0 {
|
|
label = "orangepi:green:pwr";
|
|
- gpios = <&r_pio 0 10 GPIO_ACTIVE_HIGH>;
|
|
- default-state = "on";
|
|
+ gpios = <&r_pio 0 10 GPIO_ACTIVE_HIGH>; /* PL10 */
|
|
+ linux,default-trigger = "default-on";
|
|
};
|
|
|
|
led-1 {
|
|
label = "orangepi:red:status";
|
|
- gpios = <&pio 0 17 GPIO_ACTIVE_HIGH>;
|
|
+ gpios = <&pio 0 17 GPIO_ACTIVE_HIGH>; /* PA17 */
|
|
+ linux,default-trigger = "heartbeat";
|
|
};
|
|
};
|
|
|
|
- reg_vcc3v3: vcc3v3 {
|
|
- compatible = "regulator-fixed";
|
|
- regulator-name = "vcc3v3";
|
|
- regulator-min-microvolt = <3300000>;
|
|
- regulator-max-microvolt = <3300000>;
|
|
+ reg_vdd_cpux: gpio-regulator {
|
|
+ compatible = "regulator-gpio";
|
|
+ regulator-name = "vdd-cpux";
|
|
+ regulator-type = "voltage";
|
|
+ regulator-boot-on;
|
|
+ regulator-always-on;
|
|
+ regulator-min-microvolt = <1108475>;
|
|
+ regulator-max-microvolt = <1307810>;
|
|
+ regulator-ramp-delay = <50>; /* 4ms */
|
|
+// enable-gpios = <&r_pio 0 8 GPIO_ACTIVE_HIGH>; /* PL8 */
|
|
+ gpios = <&r_pio 0 6 0>; /* PL6 */
|
|
+ enable-active-high;
|
|
+ gpios-states = <0x1>;
|
|
+ states = <1108475 0x0
|
|
+ 1307810 0x1>;
|
|
};
|
|
+};
|
|
|
|
- wifi_pwrseq: wifi_pwrseq {
|
|
- compatible = "mmc-pwrseq-simple";
|
|
- reset-gpios = <&pio 0 9 GPIO_ACTIVE_LOW>; /* PA9 */
|
|
- post-power-on-delay-ms = <200>;
|
|
- };
|
|
+&cpu0 {
|
|
+ cpu-supply = <®_vdd_cpux>;
|
|
};
|
|
|
|
&de {
|
|
@@ -149,3 +172,12 @@ &usb_otg {
|
|
&usbphy {
|
|
status = "okay";
|
|
};
|
|
+
|
|
+&usb_otg {
|
|
+ dr_mode = "otg";
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&usbphy {
|
|
+ status = "okay";
|
|
+};
|
|
--
|
|
2.35.3
|
|
|