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


Groups > linux.kernel > #1741852 > unrolled thread

[PATCH 0/3] Arm: dts: stm32: remove extra compatible uart string

Started byVikas Manocha <vikas.manocha@st.com>
First post2017-09-29 01:20 +0200
Last post2017-09-29 01:20 +0200
Articles 3 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/3] Arm: dts: stm32: remove extra compatible uart string Vikas Manocha <vikas.manocha@st.com> - 2017-09-29 01:20 +0200
    [PATCH 3/3] ARM: dts: stm32h7: correct uart nodes compatible string Vikas Manocha <vikas.manocha@st.com> - 2017-09-29 01:20 +0200
    [PATCH 1/3] Arm: dts: stm32: remove extra compatible string for uart Vikas Manocha <vikas.manocha@st.com> - 2017-09-29 01:20 +0200

#1741852 — [PATCH 0/3] Arm: dts: stm32: remove extra compatible uart string

FromVikas Manocha <vikas.manocha@st.com>
Date2017-09-29 01:20 +0200
Subject[PATCH 0/3] Arm: dts: stm32: remove extra compatible uart string
Message-ID<uuQg2-6On-13@gated-at.bofh.it>
stm32 uart driver is using two compatible strings "st,stm32-usart"
& "st,stm32-uart". One can be removed safely to save some space & time.

Vikas Manocha (3):
  Arm: dts: stm32: remove extra compatible string for uart
  Arm: dts: stm32: remove extra compatible string from DT & driver
  ARM: dts: stm32h7: correct uart nodes compatible string

 Documentation/devicetree/bindings/dma/stm32-dma.txt         |  2 +-
 Documentation/devicetree/bindings/serial/st,stm32-usart.txt | 10 +++-------
 arch/arm/boot/dts/stm32f429.dtsi                            | 12 ++++++------
 arch/arm/boot/dts/stm32f746.dtsi                            | 12 ++++++------
 arch/arm/boot/dts/stm32h743.dtsi                            |  4 ++--
 drivers/tty/serial/stm32-usart.c                            |  3 ---
 6 files changed, 18 insertions(+), 25 deletions(-)

-- 
1.9.1

[toc] | [next] | [standalone]


#1741854 — [PATCH 3/3] ARM: dts: stm32h7: correct uart nodes compatible string

FromVikas Manocha <vikas.manocha@st.com>
Date2017-09-29 01:20 +0200
Subject[PATCH 3/3] ARM: dts: stm32h7: correct uart nodes compatible string
Message-ID<uuQg2-6On-27@gated-at.bofh.it>
In reply to#1741852
With this change, stm32h743 will use its own uart configuration.
Major difference between stm32f7 & stm32h7 uart configuration is FIFO
availability in stm32h7.

Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
---
 arch/arm/boot/dts/stm32h743.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/stm32h743.dtsi b/arch/arm/boot/dts/stm32h743.dtsi
index 26de315..fab637b 100644
--- a/arch/arm/boot/dts/stm32h743.dtsi
+++ b/arch/arm/boot/dts/stm32h743.dtsi
@@ -67,7 +67,7 @@
 		};
 
 		usart2: serial@40004400 {
-			compatible = "st,stm32f7-uart";
+			compatible = "st,stm32h7-uart";
 			reg = <0x40004400 0x400>;
 			interrupts = <38>;
 			status = "disabled";
@@ -99,7 +99,7 @@
 		};
 
 		usart1: serial@40011000 {
-			compatible = "st,stm32f7-uart";
+			compatible = "st,stm32h7-uart";
 			reg = <0x40011000 0x400>;
 			interrupts = <37>;
 			status = "disabled";
-- 
1.9.1

[toc] | [prev] | [next] | [standalone]


#1741858 — [PATCH 1/3] Arm: dts: stm32: remove extra compatible string for uart

FromVikas Manocha <vikas.manocha@st.com>
Date2017-09-29 01:20 +0200
Subject[PATCH 1/3] Arm: dts: stm32: remove extra compatible string for uart
Message-ID<uuQg2-6On-11@gated-at.bofh.it>
In reply to#1741852
This patch removes the extra compatibility string "st,stm32-usart" to
avoid confusion, save some time & space.

Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
---
 Documentation/devicetree/bindings/dma/stm32-dma.txt         |  2 +-
 Documentation/devicetree/bindings/serial/st,stm32-usart.txt | 10 +++-------
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/Documentation/devicetree/bindings/dma/stm32-dma.txt b/Documentation/devicetree/bindings/dma/stm32-dma.txt
index 4408af6..6f44df9 100644
--- a/Documentation/devicetree/bindings/dma/stm32-dma.txt
+++ b/Documentation/devicetree/bindings/dma/stm32-dma.txt
@@ -71,7 +71,7 @@ channel: a phandle to the DMA controller plus the following four integer cells:
 Example:
 
 	usart1: serial@40011000 {
-		compatible = "st,stm32-usart", "st,stm32-uart";
+		compatible = "st,stm32-uart";
 		reg = <0x40011000 0x400>;
 		interrupts = <37>;
 		clocks = <&clk_pclk2>;
diff --git a/Documentation/devicetree/bindings/serial/st,stm32-usart.txt b/Documentation/devicetree/bindings/serial/st,stm32-usart.txt
index 3657f9f..d150b04 100644
--- a/Documentation/devicetree/bindings/serial/st,stm32-usart.txt
+++ b/Documentation/devicetree/bindings/serial/st,stm32-usart.txt
@@ -2,14 +2,10 @@
 
 Required properties:
 - compatible: can be either:
-  - "st,stm32-usart",
   - "st,stm32-uart",
-  - "st,stm32f7-usart",
   - "st,stm32f7-uart",
-  - "st,stm32h7-usart"
   - "st,stm32h7-uart".
-  depending on whether the device supports synchronous mode
-  and is compatible with stm32(f4), stm32f7 or stm32h7.
+  depending is compatible with stm32(f4), stm32f7 or stm32h7.
 - reg: The address and length of the peripheral registers space
 - interrupts:
   - The interrupt line for the USART instance,
@@ -33,7 +29,7 @@ usart4: serial@40004c00 {
 };
 
 usart2: serial@40004400 {
-	compatible = "st,stm32-usart", "st,stm32-uart";
+	compatible = "st,stm32-uart";
 	reg = <0x40004400 0x400>;
 	interrupts = <38>;
 	clocks = <&clk_pclk1>;
@@ -43,7 +39,7 @@ usart2: serial@40004400 {
 };
 
 usart1: serial@40011000 {
-	compatible = "st,stm32-usart", "st,stm32-uart";
+	compatible = "st,stm32-uart";
 	reg = <0x40011000 0x400>;
 	interrupts = <37>;
 	clocks = <&rcc 0 164>;
-- 
1.9.1

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web