diff options
| author | Amelie Delaunay <[email protected]> | 2022-10-14 16:15:02 +0200 |
|---|---|---|
| committer | Alexandre Torgue <[email protected]> | 2022-10-24 11:50:15 +0200 |
| commit | 4a47f0f3e936496fcf7961ee99a412b06a97ff33 (patch) | |
| tree | 66943e17ef37385a87c0167f1debc43539c2e445 | |
| parent | f54271ff0c694876ed34081f562579b5c25aad88 (diff) | |
ARM: dts: stm32: add UBSH EHCI and OHCI support on stm32mp131
This patch adds USB Host EHCI and OHCI support on stm32mp131.
Signed-off-by: Amelie Delaunay <[email protected]>
Signed-off-by: Fabrice Gasnier <[email protected]>
Signed-off-by: Alexandre Torgue <[email protected]>
| -rw-r--r-- | arch/arm/boot/dts/stm32mp131.dtsi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/stm32mp131.dtsi b/arch/arm/boot/dts/stm32mp131.dtsi index 4610af17d554..a72170b59d7e 100644 --- a/arch/arm/boot/dts/stm32mp131.dtsi +++ b/arch/arm/boot/dts/stm32mp131.dtsi @@ -444,6 +444,25 @@ status = "disabled"; }; + usbh_ohci: usb@5800c000 { + compatible = "generic-ohci"; + reg = <0x5800c000 0x1000>; + clocks = <&usbphyc>, <&rcc USBH>; + resets = <&rcc USBH_R>; + interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>; + status = "disabled"; + }; + + usbh_ehci: usb@5800d000 { + compatible = "generic-ehci"; + reg = <0x5800d000 0x1000>; + clocks = <&usbphyc>, <&rcc USBH>; + resets = <&rcc USBH_R>; + interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>; + companion = <&usbh_ohci>; + status = "disabled"; + }; + iwdg2: watchdog@5a002000 { compatible = "st,stm32mp1-iwdg"; reg = <0x5a002000 0x400>; |