diff options
author | Maxime Coquelin <mcoquelin.stm32@gmail.com> | 2016-02-23 19:11:42 +0300 |
---|---|---|
committer | Maxime Coquelin <mcoquelin.stm32@gmail.com> | 2016-02-25 12:41:16 +0300 |
commit | c8cc1b727f989a46cb8823ae3c152b7e69aed028 (patch) | |
tree | 71eafcedefa4ac317f133ad78ca655b537caa17e /arch/arm/boot/dts/stm32429i-eval.dts | |
parent | a985b66ae55838897234f69cab737e17e75c7420 (diff) | |
download | linux-c8cc1b727f989a46cb8823ae3c152b7e69aed028.tar.xz |
ARM: dts: stm32429i-eval: Add USB HS host mode support
This patch adds USB HS support in host mode only.
This port supports OTG mode, but the device more is not working
properly as of now.
Once the device mode fixed, the node will be updated to support OTG.
Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Diffstat (limited to 'arch/arm/boot/dts/stm32429i-eval.dts')
-rw-r--r-- | arch/arm/boot/dts/stm32429i-eval.dts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/stm32429i-eval.dts b/arch/arm/boot/dts/stm32429i-eval.dts index 1ae57fad12d3..76a10d3b0e05 100644 --- a/arch/arm/boot/dts/stm32429i-eval.dts +++ b/arch/arm/boot/dts/stm32429i-eval.dts @@ -81,6 +81,13 @@ gpios = <&gpiog 12 1>; }; }; + + usbotg_hs_phy: usbphy { + #phy-cells = <0>; + compatible = "usb-nop-xceiv"; + clocks = <&rcc 0 30>; + clock-names = "main_clk"; + }; }; &clk_hse { @@ -92,3 +99,12 @@ pinctrl-names = "default"; status = "okay"; }; + +&usbotg_hs { + dr_mode = "host"; + phys = <&usbotg_hs_phy>; + phy-names = "usb2-phy"; + pinctrl-0 = <&usbotg_hs_pins_a>; + pinctrl-names = "default"; + status = "okay"; +}; |