Skip to content

Commit 6c53709

Browse files
KarlK90Shawn Guo
authored andcommitted
ARM: dts: imx6sl: add phy-3p0-supply to usb phys
The integrated usb phys are supplied by the 3p0 regulator, which has a voltage range of 2.625V to 3.4V. Thus the min and max values are corrected and the regulator added as a proper supply for the usb phys. This fixes the following warnings during the probe of the mxs_phy driver: mxs_phy 20c9000.usbphy: supply phy-3p0 not found, using dummy regulator mxs_phy 20ca000.usbphy: supply phy-3p0 not found, using dummy regulator The 3p0 regulator handling was introduced by commit 966d731 ("usb: phy: mxs: enable regulator phy-3p0 to improve signal qualilty")`. Signed-off-by: Stefan Kerkmann <s.kerkmann@pengutronix.de> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
1 parent 92021d3 commit 6c53709

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

arch/arm/boot/dts/nxp/imx/imx6sl.dtsi

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,8 +546,8 @@
546546
reg_vdd3p0: regulator-3p0 {
547547
compatible = "fsl,anatop-regulator";
548548
regulator-name = "vdd3p0";
549-
regulator-min-microvolt = <2800000>;
550-
regulator-max-microvolt = <3150000>;
549+
regulator-min-microvolt = <2625000>;
550+
regulator-max-microvolt = <3400000>;
551551
regulator-always-on;
552552
anatop-reg-offset = <0x120>;
553553
anatop-vol-bit-shift = <8>;
@@ -640,6 +640,7 @@
640640
reg = <0x020c9000 0x1000>;
641641
interrupts = <0 44 IRQ_TYPE_LEVEL_HIGH>;
642642
clocks = <&clks IMX6SL_CLK_USBPHY1>;
643+
phy-3p0-supply = <&reg_vdd3p0>;
643644
fsl,anatop = <&anatop>;
644645
};
645646

@@ -648,6 +649,7 @@
648649
reg = <0x020ca000 0x1000>;
649650
interrupts = <0 45 IRQ_TYPE_LEVEL_HIGH>;
650651
clocks = <&clks IMX6SL_CLK_USBPHY2>;
652+
phy-3p0-supply = <&reg_vdd3p0>;
651653
fsl,anatop = <&anatop>;
652654
};
653655

0 commit comments

Comments
 (0)