devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding
       [not found] <1536660771-32278-1-git-send-email-biju.das@bp.renesas.com>
@ 2018-09-11 10:12 ` Biju Das
  2018-09-12  9:43   ` Simon Horman
  2018-09-14 12:25   ` Geert Uytterhoeven
  2018-09-11 10:12 ` [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros Biju Das
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 18+ messages in thread
From: Biju Das @ 2018-09-11 10:12 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Biju Das, Geert Uytterhoeven, Simon Horman, Sergei Shtylyov,
	Vladimir Barinov, Jacopo Mondi, Takeshi Kihara, devicetree,
	Simon Horman, Chris Paterson, Fabrizio Castro, linux-renesas-soc

Add binding documentation for the RZ/G1N (R8A7744) SYSC block.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 Documentation/devicetree/bindings/power/renesas,rcar-sysc.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/power/renesas,rcar-sysc.txt b/Documentation/devicetree/bindings/power/renesas,rcar-sysc.txt
index 4e3ec6a..9c3fdd8 100644
--- a/Documentation/devicetree/bindings/power/renesas,rcar-sysc.txt
+++ b/Documentation/devicetree/bindings/power/renesas,rcar-sysc.txt
@@ -8,6 +8,7 @@ and various coprocessors.
 Required properties:
   - compatible: Must contain exactly one of the following:
       - "renesas,r8a7743-sysc" (RZ/G1M)
+      - "renesas,r8a7744-sysc" (RZ/G1N)
       - "renesas,r8a7745-sysc" (RZ/G1E)
       - "renesas,r8a77470-sysc" (RZ/G1C)
       - "renesas,r8a774a1-sysc" (RZ/G2M)
-- 
2.7.4

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

* [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros
       [not found] <1536660771-32278-1-git-send-email-biju.das@bp.renesas.com>
  2018-09-11 10:12 ` [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding Biju Das
@ 2018-09-11 10:12 ` Biju Das
  2018-09-12 10:01   ` Simon Horman
  2018-09-14 12:26   ` Geert Uytterhoeven
  2018-09-11 10:12 ` [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module Biju Das
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 18+ messages in thread
From: Biju Das @ 2018-09-11 10:12 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Biju Das, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

Add power domain indices for RZ/G1N (R8A7744) SoC.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 include/dt-bindings/power/r8a7744-sysc.h | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 include/dt-bindings/power/r8a7744-sysc.h

diff --git a/include/dt-bindings/power/r8a7744-sysc.h b/include/dt-bindings/power/r8a7744-sysc.h
new file mode 100644
index 0000000..8b65297
--- /dev/null
+++ b/include/dt-bindings/power/r8a7744-sysc.h
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0
+ *
+ * Copyright (C) 2018 Renesas Electronics Corp.
+ */
+#ifndef __DT_BINDINGS_POWER_R8A7744_SYSC_H__
+#define __DT_BINDINGS_POWER_R8A7744_SYSC_H__
+
+/*
+ * These power domain indices match the numbers of the interrupt bits
+ * representing the power areas in the various Interrupt Registers
+ * (e.g. SYSCISR, Interrupt Status Register)
+ *
+ * Note that RZ/G1N is identical to RZ/G2M w.r.t. power domains.
+ */
+
+#define R8A7744_PD_CA15_CPU0		 0
+#define R8A7744_PD_CA15_CPU1		 1
+#define R8A7744_PD_CA15_SCU		12
+#define R8A7744_PD_SGX			20
+
+/* Always-on power area */
+#define R8A7744_PD_ALWAYS_ON		32
+
+#endif /* __DT_BINDINGS_POWER_R8A7744_SYSC_H__ */
-- 
2.7.4

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

* [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module
       [not found] <1536660771-32278-1-git-send-email-biju.das@bp.renesas.com>
  2018-09-11 10:12 ` [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding Biju Das
  2018-09-11 10:12 ` [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros Biju Das
@ 2018-09-11 10:12 ` Biju Das
  2018-09-12 10:05   ` Simon Horman
  2018-09-14 12:32   ` Geert Uytterhoeven
  2018-09-11 10:12 ` [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding Biju Das
  2018-09-11 10:12 ` [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions Biju Das
  4 siblings, 2 replies; 18+ messages in thread
From: Biju Das @ 2018-09-11 10:12 UTC (permalink / raw)
  To: Philipp Zabel, Rob Herring, Mark Rutland
  Cc: Biju Das, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

Document bindings for the RZ/G1N (R8A7744) reset module.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 Documentation/devicetree/bindings/reset/renesas,rst.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/reset/renesas,rst.txt b/Documentation/devicetree/bindings/reset/renesas,rst.txt
index e4fe0ab..d0edd4677 100644
--- a/Documentation/devicetree/bindings/reset/renesas,rst.txt
+++ b/Documentation/devicetree/bindings/reset/renesas,rst.txt
@@ -16,6 +16,7 @@ Required properties:
 		  - "renesas,<soctype>-rst" for R-Car Gen2 and Gen3, and RZ/G
 		Examples with soctypes are:
 		  - "renesas,r8a7743-rst" (RZ/G1M)
+		  - "renesas,r8a7744-rst" (RZ/G1N)
 		  - "renesas,r8a7745-rst" (RZ/G1E)
 		  - "renesas,r8a77470-rst" (RZ/G1C)
 		  - "renesas,r8a774a1-rst" (RZ/G2M)
-- 
2.7.4

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

* [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding
       [not found] <1536660771-32278-1-git-send-email-biju.das@bp.renesas.com>
                   ` (2 preceding siblings ...)
  2018-09-11 10:12 ` [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module Biju Das
@ 2018-09-11 10:12 ` Biju Das
  2018-09-12 10:08   ` Simon Horman
  2018-09-14 12:51   ` Geert Uytterhoeven
  2018-09-11 10:12 ` [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions Biju Das
  4 siblings, 2 replies; 18+ messages in thread
From: Biju Das @ 2018-09-11 10:12 UTC (permalink / raw)
  To: Michael Turquette, Stephen Boyd, Rob Herring, Mark Rutland
  Cc: Biju Das, linux-clk, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

Add binding documentation for the RZ/G1N (R8A7744) Clock Pulse
Generator driver.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 Documentation/devicetree/bindings/clock/renesas,cpg-mssr.txt | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/Documentation/devicetree/bindings/clock/renesas,cpg-mssr.txt b/Documentation/devicetree/bindings/clock/renesas,cpg-mssr.txt
index 42d0f83..1b8d484 100644
--- a/Documentation/devicetree/bindings/clock/renesas,cpg-mssr.txt
+++ b/Documentation/devicetree/bindings/clock/renesas,cpg-mssr.txt
@@ -14,6 +14,7 @@ They provide the following functionalities:
 Required Properties:
   - compatible: Must be one of:
       - "renesas,r8a7743-cpg-mssr" for the r8a7743 SoC (RZ/G1M)
+      - "renesas,r8a7744-cpg-mssr" for the r8a7744 SoC (RZ/G1N)
       - "renesas,r8a7745-cpg-mssr" for the r8a7745 SoC (RZ/G1E)
       - "renesas,r8a77470-cpg-mssr" for the r8a77470 SoC (RZ/G1C)
       - "renesas,r8a774a1-cpg-mssr" for the r8a774a1 SoC (RZ/G2M)
@@ -36,12 +37,12 @@ Required Properties:
   - clocks: References to external parent clocks, one entry for each entry in
     clock-names
   - clock-names: List of external parent clock names. Valid names are:
-      - "extal" (r8a7743, r8a7745, r8a77470, r8a774a1, r8a7790, r8a7791,
-		 r8a7792, r8a7793, r8a7794, r8a7795, r8a7796, r8a77965,
-		 r8a77970, r8a77980, r8a77990, r8a77995)
+      - "extal" (r8a7743, r8a7744, r8a7745, r8a77470, r8a774a1, r8a7790,
+		 r8a7791, r8a7792, r8a7793, r8a7794, r8a7795, r8a7796,
+		 r8a77965, r8a77970, r8a77980, r8a77990, r8a77995)
       - "extalr" (r8a774a1, r8a7795, r8a7796, r8a77965, r8a77970, r8a77980)
-      - "usb_extal" (r8a7743, r8a7745, r8a77470, r8a7790, r8a7791, r8a7793,
-		     r8a7794)
+      - "usb_extal" (r8a7743, r8a7744, r8a7745, r8a77470, r8a7790, r8a7791,
+		     r8a7793, r8a7794)
 
   - #clock-cells: Must be 2
       - For CPG core clocks, the two clock specifier cells must be "CPG_CORE"
-- 
2.7.4

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

* [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions
       [not found] <1536660771-32278-1-git-send-email-biju.das@bp.renesas.com>
                   ` (3 preceding siblings ...)
  2018-09-11 10:12 ` [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding Biju Das
@ 2018-09-11 10:12 ` Biju Das
  2018-09-12 10:09   ` Simon Horman
  2018-09-14 12:55   ` Geert Uytterhoeven
  4 siblings, 2 replies; 18+ messages in thread
From: Biju Das @ 2018-09-11 10:12 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Biju Das, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

Add all RZ/G1N Clock Pulse Generator Core Clock Outputs, as listed in
Table 7.2b ("List of Clocks [RZ/G1M/N]") of the RZ/G1 Hardware User's
Manual.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 include/dt-bindings/clock/r8a7744-cpg-mssr.h | 39 ++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 include/dt-bindings/clock/r8a7744-cpg-mssr.h

diff --git a/include/dt-bindings/clock/r8a7744-cpg-mssr.h b/include/dt-bindings/clock/r8a7744-cpg-mssr.h
new file mode 100644
index 0000000..2690be0
--- /dev/null
+++ b/include/dt-bindings/clock/r8a7744-cpg-mssr.h
@@ -0,0 +1,39 @@
+/* SPDX-License-Identifier: GPL-2.0
+ *
+ * Copyright (C) 2018 Renesas Electronics Corp.
+ */
+#ifndef __DT_BINDINGS_CLOCK_R8A7744_CPG_MSSR_H__
+#define __DT_BINDINGS_CLOCK_R8A7744_CPG_MSSR_H__
+
+#include <dt-bindings/clock/renesas-cpg-mssr.h>
+
+/* r8a7744 CPG Core Clocks */
+#define R8A7744_CLK_Z		0
+#define R8A7744_CLK_ZG		1
+#define R8A7744_CLK_ZTR		2
+#define R8A7744_CLK_ZTRD2	3
+#define R8A7744_CLK_ZT		4
+#define R8A7744_CLK_ZX		5
+#define R8A7744_CLK_ZS		6
+#define R8A7744_CLK_HP		7
+#define R8A7744_CLK_B		9
+#define R8A7744_CLK_LB		10
+#define R8A7744_CLK_P		11
+#define R8A7744_CLK_CL		12
+#define R8A7744_CLK_M2		13
+#define R8A7744_CLK_ZB3		15
+#define R8A7744_CLK_ZB3D2	16
+#define R8A7744_CLK_DDR		17
+#define R8A7744_CLK_SDH		18
+#define R8A7744_CLK_SD0		19
+#define R8A7744_CLK_SD2		20
+#define R8A7744_CLK_SD3		21
+#define R8A7744_CLK_MMC0	22
+#define R8A7744_CLK_MP		23
+#define R8A7744_CLK_QSPI	26
+#define R8A7744_CLK_CP		27
+#define R8A7744_CLK_RCAN	28
+#define R8A7744_CLK_R		29
+#define R8A7744_CLK_OSC		30
+
+#endif /* __DT_BINDINGS_CLOCK_R8A7744_CPG_MSSR_H__ */
-- 
2.7.4

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

* Re: [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding
  2018-09-11 10:12 ` [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding Biju Das
@ 2018-09-12  9:43   ` Simon Horman
  2018-09-17  8:29     ` Simon Horman
  2018-09-14 12:25   ` Geert Uytterhoeven
  1 sibling, 1 reply; 18+ messages in thread
From: Simon Horman @ 2018-09-12  9:43 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Geert Uytterhoeven, Sergei Shtylyov,
	Vladimir Barinov, Jacopo Mondi, Takeshi Kihara, devicetree,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

On Tue, Sep 11, 2018 at 11:12:42AM +0100, Biju Das wrote:
> Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Thanks,

This looks fine to me but I will wait to see if there are other reviews
before applying.

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

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

* Re: [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros
  2018-09-11 10:12 ` [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros Biju Das
@ 2018-09-12 10:01   ` Simon Horman
  2018-09-17  8:31     ` Simon Horman
  2018-09-14 12:26   ` Geert Uytterhoeven
  1 sibling, 1 reply; 18+ messages in thread
From: Simon Horman @ 2018-09-12 10:01 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, devicetree, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

On Tue, Sep 11, 2018 at 11:12:43AM +0100, Biju Das wrote:
> Add power domain indices for RZ/G1N (R8A7744) SoC.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Thanks,

This looks fine to me but I will wait to see if there are other reviews
before applying.

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

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

* Re: [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module
  2018-09-11 10:12 ` [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module Biju Das
@ 2018-09-12 10:05   ` Simon Horman
  2018-09-17  8:46     ` Simon Horman
  2018-09-14 12:32   ` Geert Uytterhoeven
  1 sibling, 1 reply; 18+ messages in thread
From: Simon Horman @ 2018-09-12 10:05 UTC (permalink / raw)
  To: Biju Das
  Cc: Philipp Zabel, Rob Herring, Mark Rutland, devicetree,
	Geert Uytterhoeven, Chris Paterson, Fabrizio Castro,
	linux-renesas-soc

On Tue, Sep 11, 2018 at 11:12:45AM +0100, Biju Das wrote:
> Document bindings for the RZ/G1N (R8A7744) reset module.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Thanks,

This looks fine to me but I will wait to see if there are other reviews
before applying.

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

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

* Re: [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding
  2018-09-11 10:12 ` [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding Biju Das
@ 2018-09-12 10:08   ` Simon Horman
  2018-09-14 12:51   ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Simon Horman @ 2018-09-12 10:08 UTC (permalink / raw)
  To: Biju Das
  Cc: Michael Turquette, Stephen Boyd, Rob Herring, Mark Rutland,
	linux-clk, devicetree, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro, linux-renesas-soc

On Tue, Sep 11, 2018 at 11:12:47AM +0100, Biju Das wrote:
> Add binding documentation for the RZ/G1N (R8A7744) Clock Pulse
> Generator driver.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

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

* Re: [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions
  2018-09-11 10:12 ` [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions Biju Das
@ 2018-09-12 10:09   ` Simon Horman
  2018-09-14 12:55   ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Simon Horman @ 2018-09-12 10:09 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, devicetree, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

On Tue, Sep 11, 2018 at 11:12:48AM +0100, Biju Das wrote:
> Add all RZ/G1N Clock Pulse Generator Core Clock Outputs, as listed in
> Table 7.2b ("List of Clocks [RZ/G1M/N]") of the RZ/G1 Hardware User's
> Manual.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

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

* Re: [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding
  2018-09-11 10:12 ` [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding Biju Das
  2018-09-12  9:43   ` Simon Horman
@ 2018-09-14 12:25   ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2018-09-14 12:25 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Geert Uytterhoeven, Simon Horman,
	Sergei Shtylyov, Vladimir Barinov, Jacopo Mondi, Takeshi Kihara,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Simon Horman, Chris Paterson, Fabrizio Castro, Linux-Renesas

On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros
  2018-09-11 10:12 ` [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros Biju Das
  2018-09-12 10:01   ` Simon Horman
@ 2018-09-14 12:26   ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2018-09-14 12:26 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Simon Horman, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro,
	Linux-Renesas

On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> Add power domain indices for RZ/G1N (R8A7744) SoC.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module
  2018-09-11 10:12 ` [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module Biju Das
  2018-09-12 10:05   ` Simon Horman
@ 2018-09-14 12:32   ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2018-09-14 12:32 UTC (permalink / raw)
  To: Biju Das
  Cc: Philipp Zabel, Rob Herring, Mark Rutland,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Simon Horman, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro,
	Linux-Renesas

On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> Document bindings for the RZ/G1N (R8A7744) reset module.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding
  2018-09-11 10:12 ` [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding Biju Das
  2018-09-12 10:08   ` Simon Horman
@ 2018-09-14 12:51   ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2018-09-14 12:51 UTC (permalink / raw)
  To: Biju Das
  Cc: Michael Turquette, Stephen Boyd, Rob Herring, Mark Rutland,
	linux-clk,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Simon Horman, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro,
	Linux-Renesas

On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> Add binding documentation for the RZ/G1N (R8A7744) Clock Pulse
> Generator driver.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in clk-renesas-for-v4.20.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions
  2018-09-11 10:12 ` [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions Biju Das
  2018-09-12 10:09   ` Simon Horman
@ 2018-09-14 12:55   ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2018-09-14 12:55 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Simon Horman, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro,
	Linux-Renesas

On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> Add all RZ/G1N Clock Pulse Generator Core Clock Outputs, as listed in
> Table 7.2b ("List of Clocks [RZ/G1M/N]") of the RZ/G1 Hardware User's
> Manual.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in clk-renesas-for-v4.20.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding
  2018-09-12  9:43   ` Simon Horman
@ 2018-09-17  8:29     ` Simon Horman
  0 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2018-09-17  8:29 UTC (permalink / raw)
  To: Biju Das, Geert Uytterhoeven, Rob Herring
  Cc: Rob Herring, Mark Rutland, Geert Uytterhoeven, Sergei Shtylyov,
	Vladimir Barinov, Jacopo Mondi, Takeshi Kihara, devicetree,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc

On Wed, Sep 12, 2018 at 11:43:00AM +0200, Simon Horman wrote:
> On Tue, Sep 11, 2018 at 11:12:42AM +0100, Biju Das wrote:
> > Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Thanks,
> 
> This looks fine to me but I will wait to see if there are other reviews
> before applying.


Thanks again,

applied for v4.20.

On Fri, Sep 14, 2018 at 02:25:36PM +0200, Geert Uytterhoeven wrote:
> On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> > Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 
> -- 
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds
> 

On Mon, Sep 17, 2018 at 01:45:26AM -0400, Rob Herring wrote:
> On Tue, 11 Sep 2018 11:12:42 +0100, Biju Das wrote:
> > Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/power/renesas,rcar-sysc.txt | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> 
> Reviewed-by: Rob Herring <robh@kernel.org>
> 

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

* Re: [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros
  2018-09-12 10:01   ` Simon Horman
@ 2018-09-17  8:31     ` Simon Horman
  0 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2018-09-17  8:31 UTC (permalink / raw)
  To: Biju Das, Geert Uytterhoeven, Rob Herring
  Cc: Rob Herring, Mark Rutland, devicetree, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro, linux-renesas-soc,
	Sergei Shtylyov, Vladimir Barinov, Jacopo Mondi, Takeshi Kihara

On Wed, Sep 12, 2018 at 12:01:16PM +0200, Simon Horman wrote:
> On Tue, Sep 11, 2018 at 11:12:43AM +0100, Biju Das wrote:
> > Add power domain indices for RZ/G1N (R8A7744) SoC.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Thanks,
> 
> This looks fine to me but I will wait to see if there are other reviews
> before applying.
> 
> Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

Thanks again,

applied for v4.20.

On Fri, Sep 14, 2018 at 02:26:53PM +0200, Geert Uytterhoeven wrote:
> On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> > Add power domain indices for RZ/G1N (R8A7744) SoC.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 
> -- 
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds
> 

On Mon, Sep 17, 2018 at 01:45:30AM -0400, Rob Herring wrote:
> On Tue, 11 Sep 2018 11:12:43 +0100, Biju Das wrote:
> > Add power domain indices for RZ/G1N (R8A7744) SoC.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  include/dt-bindings/power/r8a7744-sysc.h | 24 ++++++++++++++++++++++++
> >  1 file changed, 24 insertions(+)
> >  create mode 100644 include/dt-bindings/power/r8a7744-sysc.h
> > 
> 
> Reviewed-by: Rob Herring <robh@kernel.org>
> 

On Fri, Sep 14, 2018 at 02:25:36PM +0200, Geert Uytterhoeven wrote:
> On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> > Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 
> -- 
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds
> 

On Mon, Sep 17, 2018 at 01:45:26AM -0400, Rob Herring wrote:
> On Tue, 11 Sep 2018 11:12:42 +0100, Biju Das wrote:
> > Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/power/renesas,rcar-sysc.txt | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> 
> Reviewed-by: Rob Herring <robh@kernel.org>
> 

On Wed, Sep 12, 2018 at 11:43:00AM +0200, Simon Horman wrote:
> On Tue, Sep 11, 2018 at 11:12:42AM +0100, Biju Das wrote:
> > Add binding documentation for the RZ/G1N (R8A7744) SYSC block.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Thanks,
> 
> This looks fine to me but I will wait to see if there are other reviews
> before applying.
> 
> Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
> 

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

* Re: [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module
  2018-09-12 10:05   ` Simon Horman
@ 2018-09-17  8:46     ` Simon Horman
  0 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2018-09-17  8:46 UTC (permalink / raw)
  To: Biju Das, Geert Uytterhoeven, Rob Herring
  Cc: Philipp Zabel, Rob Herring, Mark Rutland, devicetree,
	Geert Uytterhoeven, Chris Paterson, Fabrizio Castro,
	linux-renesas-soc

On Wed, Sep 12, 2018 at 12:05:19PM +0200, Simon Horman wrote:
> On Tue, Sep 11, 2018 at 11:12:45AM +0100, Biju Das wrote:
> > Document bindings for the RZ/G1N (R8A7744) reset module.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Thanks,
> 
> This looks fine to me but I will wait to see if there are other reviews
> before applying.
> 
> Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

Thanks again,

applied for v4.20.

On Fri, Sep 14, 2018 at 02:32:33PM +0200, Geert Uytterhoeven wrote:
> On Tue, Sep 11, 2018 at 12:19 PM Biju Das <biju.das@bp.renesas.com> wrote:
> > Document bindings for the RZ/G1N (R8A7744) reset module.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 
> -- 
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds
> 

On Mon, Sep 17, 2018 at 01:45:31AM -0400, Rob Herring wrote:
> On Tue, 11 Sep 2018 11:12:45 +0100, Biju Das wrote:
> > Document bindings for the RZ/G1N (R8A7744) reset module.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/reset/renesas,rst.txt | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> 
> Reviewed-by: Rob Herring <robh@kernel.org>
> 

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

end of thread, other threads:[~2018-09-17  8:46 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1536660771-32278-1-git-send-email-biju.das@bp.renesas.com>
2018-09-11 10:12 ` [PATCH 01/10] dt-bindings: power: rcar-sysc: Document r8a7744 SYSC binding Biju Das
2018-09-12  9:43   ` Simon Horman
2018-09-17  8:29     ` Simon Horman
2018-09-14 12:25   ` Geert Uytterhoeven
2018-09-11 10:12 ` [PATCH 02/10] dt-bindings: power: rcar-sysc: Add r8a7744 power domain index macros Biju Das
2018-09-12 10:01   ` Simon Horman
2018-09-17  8:31     ` Simon Horman
2018-09-14 12:26   ` Geert Uytterhoeven
2018-09-11 10:12 ` [PATCH 04/10] dt-bindings: reset: rcar-rst: Document r8a7744 reset module Biju Das
2018-09-12 10:05   ` Simon Horman
2018-09-17  8:46     ` Simon Horman
2018-09-14 12:32   ` Geert Uytterhoeven
2018-09-11 10:12 ` [PATCH 06/10] dt-bindings: clock: renesas: cpg-mssr: Document r8a7744 binding Biju Das
2018-09-12 10:08   ` Simon Horman
2018-09-14 12:51   ` Geert Uytterhoeven
2018-09-11 10:12 ` [PATCH 07/10] clk: renesas: Add r8a7744 CPG Core Clock Definitions Biju Das
2018-09-12 10:09   ` Simon Horman
2018-09-14 12:55   ` Geert Uytterhoeven

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).