Commit 1b32a5ff authored by Ulf Hansson's avatar Ulf Hansson

arm64: dts: hi6220: Move the fixed_5v_hub regulator to the hikey dts

The regulator is a part of the hikey board, therefore let's move it from
the hi6220 SoC dtsi file into the hikey dts file . Let's also rename the
regulator according to the datasheet (5V_HUB) to better reflect the HW.
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
Acked-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 307ded89
...@@ -81,6 +81,16 @@ reboot-mode { ...@@ -81,6 +81,16 @@ reboot-mode {
}; };
}; };
reg_5v_hub: regulator@0 {
compatible = "regulator-fixed";
regulator-name = "5V_HUB";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
regulator-boot-on;
gpio = <&gpio0 7 0>;
regulator-always-on;
};
soc { soc {
spi0: spi@f7106000 { spi0: spi@f7106000 {
status = "ok"; status = "ok";
......
...@@ -725,20 +725,10 @@ i2c2: i2c@f7102000 { ...@@ -725,20 +725,10 @@ i2c2: i2c@f7102000 {
status = "disabled"; status = "disabled";
}; };
fixed_5v_hub: regulator@0 {
compatible = "regulator-fixed";
regulator-name = "fixed_5v_hub";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
regulator-boot-on;
gpio = <&gpio0 7 0>;
regulator-always-on;
};
usb_phy: usbphy { usb_phy: usbphy {
compatible = "hisilicon,hi6220-usb-phy"; compatible = "hisilicon,hi6220-usb-phy";
#phy-cells = <0>; #phy-cells = <0>;
phy-supply = <&fixed_5v_hub>; phy-supply = <&reg_5v_hub>;
hisilicon,peripheral-syscon = <&sys_ctrl>; hisilicon,peripheral-syscon = <&sys_ctrl>;
}; };
......
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