diff options
author | Bruno Herrera <bruherrera@gmail.com> | 2017-02-01 02:25:00 +0100 |
---|---|---|
committer | Alexandre TORGUE <alexandre.torgue@st.com> | 2017-04-03 10:28:18 +0200 |
commit | b1f81e0ccb5116abd08db0c7002b76ea3959bd2f (patch) | |
tree | fcf7dbda185c754a577676a773b5b666fd6333db /arch/arm/boot/dts/stm32f429-disco.dts | |
parent | c888cc51cf1b0dfc48643ed9f34e35b66d25878a (diff) | |
download | talos-obmc-linux-b1f81e0ccb5116abd08db0c7002b76ea3959bd2f.tar.gz talos-obmc-linux-b1f81e0ccb5116abd08db0c7002b76ea3959bd2f.zip |
ARM: dts: stm32: Enable USB HS in FS mode (embedded phy) on stm32f429-disco
This patch enables USB HS working in FS mode on stm32f429-disco
with 5V VBUS enable.
Signed-off-by: Bruno Herrera <bruherrera@gmail.com>
Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com>
Diffstat (limited to 'arch/arm/boot/dts/stm32f429-disco.dts')
-rw-r--r-- | arch/arm/boot/dts/stm32f429-disco.dts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/stm32f429-disco.dts b/arch/arm/boot/dts/stm32f429-disco.dts index 9222b9f37bc0..191fa50e34eb 100644 --- a/arch/arm/boot/dts/stm32f429-disco.dts +++ b/arch/arm/boot/dts/stm32f429-disco.dts @@ -88,6 +88,14 @@ gpios = <&gpioa 0 0>; }; }; + + /* This turns on vbus for otg for host mode (dwc2) */ + vcc5v_otg: vcc5v-otg-regulator { + compatible = "regulator-fixed"; + gpio = <&gpioc 4 0>; + regulator-name = "vcc5_host1"; + regulator-always-on; + }; }; &clk_hse { @@ -105,3 +113,11 @@ pinctrl-names = "default"; status = "okay"; }; + +&usbotg_hs { + compatible = "st,stm32f4x9-fsotg"; + dr_mode = "host"; + pinctrl-0 = <&usbotg_fs_pins_b>; + pinctrl-names = "default"; + status = "okay"; +}; |