Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1713737

[PATCH 3/7] ARM: dts: stm32: Add USB HS support for STM32F746 MCU

From Amelie Delaunay <amelie.delaunay@st.com>
Newsgroups linux.kernel
Subject [PATCH 3/7] ARM: dts: stm32: Add USB HS support for STM32F746 MCU
Date 2017-08-17 11:40 +0200
Message-ID <ufprs-2VP-29@gated-at.bofh.it> (permalink)
References <ufprr-2VP-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


This patch adds the USB pins and nodes for USB HS core on STM32F746 SoC.

Signed-off-by: Amelie Delaunay <amelie.delaunay@st.com>
---
 arch/arm/boot/dts/stm32f746.dtsi | 49 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/arch/arm/boot/dts/stm32f746.dtsi b/arch/arm/boot/dts/stm32f746.dtsi
index 5633860..fcfe5a6 100644
--- a/arch/arm/boot/dts/stm32f746.dtsi
+++ b/arch/arm/boot/dts/stm32f746.dtsi
@@ -379,6 +379,46 @@
 					bias-disable;
 				};
 			};
+
+			usbotg_hs_pins_a: usbotg_hs@0 {
+				pins {
+					pinmux = <STM32F746_PH4_FUNC_OTG_HS_ULPI_NXT>,
+						 <STM32F746_PI11_FUNC_OTG_HS_ULPI_DIR>,
+						 <STM32F746_PC0_FUNC_OTG_HS_ULPI_STP>,
+						 <STM32F746_PA5_FUNC_OTG_HS_ULPI_CK>,
+						 <STM32F746_PA3_FUNC_OTG_HS_ULPI_D0>,
+						 <STM32F746_PB0_FUNC_OTG_HS_ULPI_D1>,
+						 <STM32F746_PB1_FUNC_OTG_HS_ULPI_D2>,
+						 <STM32F746_PB10_FUNC_OTG_HS_ULPI_D3>,
+						 <STM32F746_PB11_FUNC_OTG_HS_ULPI_D4>,
+						 <STM32F746_PB12_FUNC_OTG_HS_ULPI_D5>,
+						 <STM32F746_PB13_FUNC_OTG_HS_ULPI_D6>,
+						 <STM32F746_PB5_FUNC_OTG_HS_ULPI_D7>;
+					bias-disable;
+					drive-push-pull;
+					slew-rate = <2>;
+				};
+			};
+
+			usbotg_hs_pins_b: usbotg_hs@1 {
+				pins {
+					pinmux = <STM32F746_PH4_FUNC_OTG_HS_ULPI_NXT>,
+						 <STM32F746_PC2_FUNC_OTG_HS_ULPI_DIR>,
+						 <STM32F746_PC0_FUNC_OTG_HS_ULPI_STP>,
+						 <STM32F746_PA5_FUNC_OTG_HS_ULPI_CK>,
+						 <STM32F746_PA3_FUNC_OTG_HS_ULPI_D0>,
+						 <STM32F746_PB0_FUNC_OTG_HS_ULPI_D1>,
+						 <STM32F746_PB1_FUNC_OTG_HS_ULPI_D2>,
+						 <STM32F746_PB10_FUNC_OTG_HS_ULPI_D3>,
+						 <STM32F746_PB11_FUNC_OTG_HS_ULPI_D4>,
+						 <STM32F746_PB12_FUNC_OTG_HS_ULPI_D5>,
+						 <STM32F746_PB13_FUNC_OTG_HS_ULPI_D6>,
+						 <STM32F746_PB5_FUNC_OTG_HS_ULPI_D7>;
+					bias-disable;
+					drive-push-pull;
+					slew-rate = <2>;
+				};
+			};
 		};
 
 		crc: crc@40023000 {
@@ -431,6 +471,15 @@
 			st,mem2mem;
 			status = "disabled";
 		};
+
+		usbotg_hs: usb@40040000 {
+			compatible = "st,stm32f7xx-hsotg";
+			reg = <0x40040000 0x40000>;
+			interrupts = <77>;
+			clocks = <&rcc 0 STM32F7_AHB1_CLOCK(OTGHS)>;
+			clock-names = "otg";
+			status = "disabled";
+		};
 	};
 };
 
-- 
2.7.4

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/7] Add support for USB OTG on STM32F7xx Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200
  [PATCH 2/7] usb: dwc2: add support for STM32F7xx USB OTG HS Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200
  [PATCH 6/7] ARM: dts: stm32: Add USB FS support for STM32F746 MCU Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200
    Re: [PATCH 6/7] ARM: dts: stm32: Add USB FS support for STM32F746 MCU Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2017-08-17 12:50 +0200
      Re: [PATCH 6/7] ARM: dts: stm32: Add USB FS support for STM32F746 MCU Amelie DELAUNAY <amelie.delaunay@st.com> - 2017-08-17 16:00 +0200
  [PATCH 7/7] ARM: dts: stm32: Enable USB FS on stm32f746-disco Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200
  [PATCH 4/7] ARM: dts: stm32: Enable USB HS on stm32746g-eval Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200
    Re: [PATCH 4/7] ARM: dts: stm32: Enable USB HS on stm32746g-eval Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> - 2017-08-17 12:50 +0200
      Re: [PATCH 4/7] ARM: dts: stm32: Enable USB HS on stm32746g-eval Amelie DELAUNAY <amelie.delaunay@st.com> - 2017-08-17 16:00 +0200
  [PATCH 1/7] dt-bindings: usb: Document the STM32F7xx DWC2 USB OTG HS core binding Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200
    Re: [PATCH 1/7] dt-bindings: usb: Document the STM32F7xx DWC2 USB  OTG HS core binding Rob Herring <robh@kernel.org> - 2017-08-22 04:20 +0200
  [PATCH 3/7] ARM: dts: stm32: Add USB HS support for STM32F746 MCU Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200
  [PATCH 5/7] ARM: dts: stm32: Enable USB HS on stm32f746-disco Amelie Delaunay <amelie.delaunay@st.com> - 2017-08-17 11:40 +0200

csiph-web