soc.lore.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/4] Add clock node and phandles for M10V platform
@ 2021-11-15  9:30 Sugaya Taichi
  2021-11-15  9:30 ` [PATCH v2 1/4] ARM: dts: milbeaut: add a clock node for M10V Sugaya Taichi
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Sugaya Taichi @ 2021-11-15  9:30 UTC (permalink / raw)
  To: Rob Herring, Arnd Bergmann
  Cc: soc, devicetree, linux-kernel, orito.takao, sugaya.taichi,
	Masami Hiramatsu, Jassi Brar

This series add a clock node of Milbeaut driver and clock phandles
to clock consumer nodes.

Changes:
from v1
 -fix wrong property name "clock" to "clocks"
 -add milbeaut MAINTAINERS

Sugaya Taichi (4):
  ARM: dts: milbeaut: add a clock node for M10V
  ARM: dts: milbeaut: set clock phandle to timer node
  ARM: dts: milbeaut: set clock phandle to uart node
  MAINTAINERS: Add entry to MAINTAINERS for Milbeaut

 MAINTAINERS                          | 9 +++++++++
 arch/arm/boot/dts/milbeaut-m10v.dtsi | 9 +++++++++
 2 files changed, 18 insertions(+)

-- 
2.7.4


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v2 1/4] ARM: dts: milbeaut: add a clock node for M10V
  2021-11-15  9:30 [PATCH v2 0/4] Add clock node and phandles for M10V platform Sugaya Taichi
@ 2021-11-15  9:30 ` Sugaya Taichi
  2021-11-15  9:30 ` [PATCH v2 2/4] ARM: dts: milbeaut: set clock phandle to timer node Sugaya Taichi
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Sugaya Taichi @ 2021-11-15  9:30 UTC (permalink / raw)
  To: Rob Herring, Arnd Bergmann
  Cc: soc, devicetree, linux-kernel, orito.takao, sugaya.taichi,
	Masami Hiramatsu, Jassi Brar

Add a clock node for the platform of the Milbeaut M10V.

Signed-off-by: Sugaya Taichi <sugaya.taichi@socionext.com>
---
 arch/arm/boot/dts/milbeaut-m10v.dtsi | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/arch/arm/boot/dts/milbeaut-m10v.dtsi b/arch/arm/boot/dts/milbeaut-m10v.dtsi
index aa7c6ca..28aee25 100644
--- a/arch/arm/boot/dts/milbeaut-m10v.dtsi
+++ b/arch/arm/boot/dts/milbeaut-m10v.dtsi
@@ -65,6 +65,13 @@
 			      <0x1d002000 0x1000>; /* CPU I/f base and size */
 		};
 
+		clk: clock-ctrl@1d021000 {
+			compatible = "socionext,milbeaut-m10v-ccu";
+			#clock-cells = <1>;
+			reg = <0x1d021000 0x1000>;
+			clocks = <&uclk40xi>;
+		};
+
 		timer@1e000050 { /* 32-bit Reload Timers */
 			compatible = "socionext,milbeaut-timer";
 			reg = <0x1e000050 0x20>;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 2/4] ARM: dts: milbeaut: set clock phandle to timer node
  2021-11-15  9:30 [PATCH v2 0/4] Add clock node and phandles for M10V platform Sugaya Taichi
  2021-11-15  9:30 ` [PATCH v2 1/4] ARM: dts: milbeaut: add a clock node for M10V Sugaya Taichi
@ 2021-11-15  9:30 ` Sugaya Taichi
  2021-11-15  9:30 ` [PATCH v2 3/4] ARM: dts: milbeaut: set clock phandle to uart node Sugaya Taichi
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Sugaya Taichi @ 2021-11-15  9:30 UTC (permalink / raw)
  To: Rob Herring, Arnd Bergmann
  Cc: soc, devicetree, linux-kernel, orito.takao, sugaya.taichi,
	Masami Hiramatsu, Jassi Brar

Set clock phandle to timer node for Milbeaut M10V support.

Signed-off-by: Sugaya Taichi <sugaya.taichi@socionext.com>
---
 arch/arm/boot/dts/milbeaut-m10v.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/milbeaut-m10v.dtsi b/arch/arm/boot/dts/milbeaut-m10v.dtsi
index 28aee25..9f70784 100644
--- a/arch/arm/boot/dts/milbeaut-m10v.dtsi
+++ b/arch/arm/boot/dts/milbeaut-m10v.dtsi
@@ -76,6 +76,7 @@
 			compatible = "socionext,milbeaut-timer";
 			reg = <0x1e000050 0x20>;
 			interrupts = <0 91 4>;
+			clocks = <&clk 4>;
 		};
 
 		uart1: serial@1e700010 { /* PE4, PE5 */
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 3/4] ARM: dts: milbeaut: set clock phandle to uart node
  2021-11-15  9:30 [PATCH v2 0/4] Add clock node and phandles for M10V platform Sugaya Taichi
  2021-11-15  9:30 ` [PATCH v2 1/4] ARM: dts: milbeaut: add a clock node for M10V Sugaya Taichi
  2021-11-15  9:30 ` [PATCH v2 2/4] ARM: dts: milbeaut: set clock phandle to timer node Sugaya Taichi
@ 2021-11-15  9:30 ` Sugaya Taichi
  2021-11-15  9:30 ` [PATCH v2 4/4] MAINTAINERS: Add entry to MAINTAINERS for Milbeaut Sugaya Taichi
  2021-11-22 13:00 ` [PATCH v2 0/4] Add clock node and phandles for M10V platform patchwork-bot+linux-soc
  4 siblings, 0 replies; 6+ messages in thread
From: Sugaya Taichi @ 2021-11-15  9:30 UTC (permalink / raw)
  To: Rob Herring, Arnd Bergmann
  Cc: soc, devicetree, linux-kernel, orito.takao, sugaya.taichi,
	Masami Hiramatsu, Jassi Brar

Set clock phandle to uart node for Milbeaut M10V support.

Signed-off-by: Sugaya Taichi <sugaya.taichi@socionext.com>
---
 arch/arm/boot/dts/milbeaut-m10v.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/milbeaut-m10v.dtsi b/arch/arm/boot/dts/milbeaut-m10v.dtsi
index 9f70784..75f0c0a 100644
--- a/arch/arm/boot/dts/milbeaut-m10v.dtsi
+++ b/arch/arm/boot/dts/milbeaut-m10v.dtsi
@@ -85,6 +85,7 @@
 			reg = <0x1e700010 0x10>;
 			interrupts = <0 141 0x4>, <0 149 0x4>;
 			interrupt-names = "rx", "tx";
+			clocks = <&clk 2>;
 		};
 
 	};
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 4/4] MAINTAINERS: Add entry to MAINTAINERS for Milbeaut
  2021-11-15  9:30 [PATCH v2 0/4] Add clock node and phandles for M10V platform Sugaya Taichi
                   ` (2 preceding siblings ...)
  2021-11-15  9:30 ` [PATCH v2 3/4] ARM: dts: milbeaut: set clock phandle to uart node Sugaya Taichi
@ 2021-11-15  9:30 ` Sugaya Taichi
  2021-11-22 13:00 ` [PATCH v2 0/4] Add clock node and phandles for M10V platform patchwork-bot+linux-soc
  4 siblings, 0 replies; 6+ messages in thread
From: Sugaya Taichi @ 2021-11-15  9:30 UTC (permalink / raw)
  To: Rob Herring, Arnd Bergmann
  Cc: soc, devicetree, linux-kernel, orito.takao, sugaya.taichi,
	Masami Hiramatsu, Jassi Brar

Add entry to MAINTAINERS for Milbeaut that supported minimal drivers.

Signed-off-by: Sugaya Taichi <sugaya.taichi@socionext.com>
---
 MAINTAINERS | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 7a2345c..a9387cc 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2263,6 +2263,15 @@ L:	linux-iio@vger.kernel.org
 S:	Maintained
 F:	drivers/counter/microchip-tcb-capture.c
 
+ARM/MILBEAUT ARCHITECTURE
+M:	Taichi Sugaya <sugaya.taichi@socionext.com>
+M:	Takao Orito <orito.takao@socionext.com>
+L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
+S:	Maintained
+F:	arch/arm/boot/dts/milbeaut*
+F:	arch/arm/mach-milbeaut/
+N:	milbeaut
+
 ARM/MIOA701 MACHINE SUPPORT
 M:	Robert Jarzmik <robert.jarzmik@free.fr>
 L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 0/4] Add clock node and phandles for M10V platform
  2021-11-15  9:30 [PATCH v2 0/4] Add clock node and phandles for M10V platform Sugaya Taichi
                   ` (3 preceding siblings ...)
  2021-11-15  9:30 ` [PATCH v2 4/4] MAINTAINERS: Add entry to MAINTAINERS for Milbeaut Sugaya Taichi
@ 2021-11-22 13:00 ` patchwork-bot+linux-soc
  4 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+linux-soc @ 2021-11-22 13:00 UTC (permalink / raw)
  To: Sugaya Taichi; +Cc: soc

Hello:

This series was applied to soc/soc.git (arm/fixes)
by Arnd Bergmann <arnd@arndb.de>:

On Mon, 15 Nov 2021 18:30:52 +0900 you wrote:
> This series add a clock node of Milbeaut driver and clock phandles
> to clock consumer nodes.
> 
> Changes:
> from v1
>  -fix wrong property name "clock" to "clocks"
>  -add milbeaut MAINTAINERS
> 
> [...]

Here is the summary with links:
  - [v2,1/4] ARM: dts: milbeaut: add a clock node for M10V
    https://git.kernel.org/soc/soc/c/8e0150fe5cf5
  - [v2,2/4] ARM: dts: milbeaut: set clock phandle to timer node
    https://git.kernel.org/soc/soc/c/2fc4dfc294ee
  - [v2,3/4] ARM: dts: milbeaut: set clock phandle to uart node
    https://git.kernel.org/soc/soc/c/69a25d34f377
  - [v2,4/4] MAINTAINERS: Add entry to MAINTAINERS for Milbeaut
    https://git.kernel.org/soc/soc/c/18fe42bdd635

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-11-22 13:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-15  9:30 [PATCH v2 0/4] Add clock node and phandles for M10V platform Sugaya Taichi
2021-11-15  9:30 ` [PATCH v2 1/4] ARM: dts: milbeaut: add a clock node for M10V Sugaya Taichi
2021-11-15  9:30 ` [PATCH v2 2/4] ARM: dts: milbeaut: set clock phandle to timer node Sugaya Taichi
2021-11-15  9:30 ` [PATCH v2 3/4] ARM: dts: milbeaut: set clock phandle to uart node Sugaya Taichi
2021-11-15  9:30 ` [PATCH v2 4/4] MAINTAINERS: Add entry to MAINTAINERS for Milbeaut Sugaya Taichi
2021-11-22 13:00 ` [PATCH v2 0/4] Add clock node and phandles for M10V platform patchwork-bot+linux-soc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).