diff options
author | Fabrice Gasnier <fabrice.gasnier@foss.st.com> | 2022-10-14 16:15:04 +0200 |
---|---|---|
committer | Alexandre Torgue <alexandre.torgue@foss.st.com> | 2022-10-24 11:53:17 +0200 |
commit | 9ebf215fbae109f617d90ac1754feaeedaed2011 (patch) | |
tree | bd40227783c570cf0758162f0a25a65d93ff22bc /arch/arm/boot/dts/stm32mp135f-dk.dts | |
parent | ARM: dts: stm32: add USB OTG HS support on stm32mp131 (diff) | |
download | linux-9ebf215fbae109f617d90ac1754feaeedaed2011.tar.xz linux-9ebf215fbae109f617d90ac1754feaeedaed2011.zip |
ARM: dts: stm32: add fixed regulators to support usb on stm32mp135f-dk
Add VDD_USB and 3V3_SW regulators on stm32mp135f-dk. Temporary add them
as fixed regulators, waiting for full SCMI regulators support.
This is a precursor patch to enable USB support on STM32MP13:
- VDD_USB supplies the STM32MP13 USB internals
- 3V3_SW supplies various peripherals, including the onboard HUB.
Note: USB support requires these regulators to be enabled before
entering the kernel.
Signed-off-by: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>
Diffstat (limited to 'arch/arm/boot/dts/stm32mp135f-dk.dts')
-rw-r--r-- | arch/arm/boot/dts/stm32mp135f-dk.dts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/stm32mp135f-dk.dts b/arch/arm/boot/dts/stm32mp135f-dk.dts index a87ab067c955..edf4b3c7c434 100644 --- a/arch/arm/boot/dts/stm32mp135f-dk.dts +++ b/arch/arm/boot/dts/stm32mp135f-dk.dts @@ -59,6 +59,14 @@ }; }; + v3v3_sw: v3v3-sw { + compatible = "regulator-fixed"; + regulator-name = "v3v3_sw"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + regulator-always-on; + }; + vdd_adc: vdd-adc { compatible = "regulator-fixed"; regulator-name = "vdd_adc"; @@ -74,6 +82,14 @@ regulator-max-microvolt = <2900000>; regulator-always-on; }; + + vdd_usb: vdd-usb { + compatible = "regulator-fixed"; + regulator-name = "vdd_usb"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + regulator-always-on; + }; }; &adc_1 { |