All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes
@ 2018-05-16 13:05 Ulrich Hecht
  2018-05-16 13:05 ` [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support Ulrich Hecht
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Ulrich Hecht @ 2018-05-16 13:05 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: wsa, geert, linux-spi, Hiromitsu Yamasaki, Takeshi Kihara, Ulrich Hecht

From: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>

This patch adds MSIOF device nodes for the R8A77995 SoC.

Signed-off-by: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
[uli: remove unimplemented ref clock]
Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
---
 arch/arm64/boot/dts/renesas/r8a77995.dtsi | 66 +++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a77995.dtsi b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
index 2506f46..2f712ac 100644
--- a/arch/arm64/boot/dts/renesas/r8a77995.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
@@ -783,6 +783,72 @@
 			compatible = "renesas,prr";
 			reg = <0 0xfff00044 0 4>;
 		};
+
+		msiof0: spi@e6e90000 {
+			compatible = "renesas,msiof-r8a77995",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6e90000 0 0x0064>;
+			interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 211>;
+			clock-names = "msiof_clk";
+			dmas = <&dmac1 0x41>, <&dmac1 0x40>,
+			       <&dmac2 0x41>, <&dmac2 0x40>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77995_PD_ALWAYS_ON>;
+			resets = <&cpg 211>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
+		msiof1: spi@e6ea0000 {
+			compatible = "renesas,msiof-r8a77995",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6ea0000 0 0x0064>;
+			interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 210>;
+			clock-names = "msiof_clk";
+			dmas = <&dmac1 0x43>, <&dmac1 0x42>,
+			       <&dmac2 0x43>, <&dmac2 0x42>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77995_PD_ALWAYS_ON>;
+			resets = <&cpg 210>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
+		msiof2: spi@e6c00000 {
+			compatible = "renesas,msiof-r8a77995",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6c00000 0 0x0064>;
+			interrupts = <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 209>;
+			clock-names = "msiof_clk";
+			dmas = <&dmac0 0x45>, <&dmac0 0x44>;
+			dma-names = "tx", "rx";
+			power-domains = <&sysc R8A77995_PD_ALWAYS_ON>;
+			resets = <&cpg 209>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
+		msiof3: spi@e6c10000 {
+			compatible = "renesas,msiof-r8a77995",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6c10000 0 0x0064>;
+			interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 208>;
+			clock-names = "msiof_clk";
+			dmas = <&dmac0 0x47>, <&dmac0 0x46>;
+			dma-names = "tx", "rx";
+			power-domains = <&sysc R8A77995_PD_ALWAYS_ON>;
+			resets = <&cpg 208>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
 	};
 
 	timer {
-- 
2.7.4

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

* [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support
  2018-05-16 13:05 [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Ulrich Hecht
@ 2018-05-16 13:05 ` Ulrich Hecht
  2018-05-17  7:44   ` Simon Horman
  2018-05-22 14:08   ` Geert Uytterhoeven
  2018-05-16 17:43 ` [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Geert Uytterhoeven
  2018-05-17  7:56 ` Wolfram Sang
  2 siblings, 2 replies; 10+ messages in thread
From: Ulrich Hecht @ 2018-05-16 13:05 UTC (permalink / raw)
  To: linux-renesas-soc; +Cc: wsa, geert, linux-spi, Ulrich Hecht

Document support for the MSIOF module in the Renesas D3 (r8a77995) SoC.

No driver update is needed.

Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
---
 Documentation/devicetree/bindings/spi/sh-msiof.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/spi/sh-msiof.txt b/Documentation/devicetree/bindings/spi/sh-msiof.txt
index 3980632..914036d 100644
--- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
+++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
@@ -11,6 +11,7 @@ Required properties:
 			 "renesas,msiof-r8a7795" (R-Car H3)
 			 "renesas,msiof-r8a7796" (R-Car M3-W)
 			 "renesas,msiof-r8a77965" (R-Car M3-N)
+			 "renesas,msiof-r8a77995" (R-Car D3)
 			 "renesas,msiof-sh73a0" (SH-Mobile AG5)
 			 "renesas,sh-mobile-msiof" (generic SH-Mobile compatibile device)
 			 "renesas,rcar-gen2-msiof" (generic R-Car Gen2 and RZ/G1 compatible device)
-- 
2.7.4

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

* Re: [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes
  2018-05-16 13:05 [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Ulrich Hecht
  2018-05-16 13:05 ` [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support Ulrich Hecht
@ 2018-05-16 17:43 ` Geert Uytterhoeven
  2018-05-17  7:52   ` Simon Horman
  2018-05-17  7:56 ` Wolfram Sang
  2 siblings, 1 reply; 10+ messages in thread
From: Geert Uytterhoeven @ 2018-05-16 17:43 UTC (permalink / raw)
  To: Ulrich Hecht
  Cc: Linux-Renesas, Wolfram Sang, linux-spi, Hiromitsu Yamasaki,
	Takeshi Kihara

Hi Uli,

On Wed, May 16, 2018 at 3:05 PM, Ulrich Hecht
<ulrich.hecht+renesas@gmail.com> wrote:
> From: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
>
> This patch adds MSIOF device nodes for the R8A77995 SoC.
>
> Signed-off-by: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> [uli: remove unimplemented ref clock]

I think you should remove the clock-names properties, too.

> Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
> ---
>  arch/arm64/boot/dts/renesas/r8a77995.dtsi | 66 +++++++++++++++++++++++++++++++
>  1 file changed, 66 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/renesas/r8a77995.dtsi b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> index 2506f46..2f712ac 100644
> --- a/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> +++ b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> @@ -783,6 +783,72 @@
>                         compatible = "renesas,prr";
>                         reg = <0 0xfff00044 0 4>;
>                 };
> +
> +               msiof0: spi@e6e90000 {
> +                       compatible = "renesas,msiof-r8a77995",
> +                                    "renesas,rcar-gen3-msiof";
> +                       reg = <0 0xe6e90000 0 0x0064>;
> +                       interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
> +                       clocks = <&cpg CPG_MOD 211>;
> +                       clock-names = "msiof_clk";
> +                       dmas = <&dmac1 0x41>, <&dmac1 0x40>,
> +                              <&dmac2 0x41>, <&dmac2 0x40>;
> +                       dma-names = "tx", "rx", "tx", "rx";
> +                       power-domains = <&sysc R8A77995_PD_ALWAYS_ON>;
> +                       resets = <&cpg 211>;
> +                       #address-cells = <1>;
> +                       #size-cells = <0>;
> +                       status = "disabled";
> +               };

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] 10+ messages in thread

* Re: [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support
  2018-05-16 13:05 ` [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support Ulrich Hecht
@ 2018-05-17  7:44   ` Simon Horman
  2018-05-22 14:08   ` Geert Uytterhoeven
  1 sibling, 0 replies; 10+ messages in thread
From: Simon Horman @ 2018-05-17  7:44 UTC (permalink / raw)
  To: Ulrich Hecht; +Cc: linux-renesas-soc, wsa, geert, linux-spi

On Wed, May 16, 2018 at 03:05:16PM +0200, Ulrich Hecht wrote:
> Document support for the MSIOF module in the Renesas D3 (r8a77995) SoC.
> 
> No driver update is needed.
> 
> Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>

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

> ---
>  Documentation/devicetree/bindings/spi/sh-msiof.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/spi/sh-msiof.txt b/Documentation/devicetree/bindings/spi/sh-msiof.txt
> index 3980632..914036d 100644
> --- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
> +++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
> @@ -11,6 +11,7 @@ Required properties:
>  			 "renesas,msiof-r8a7795" (R-Car H3)
>  			 "renesas,msiof-r8a7796" (R-Car M3-W)
>  			 "renesas,msiof-r8a77965" (R-Car M3-N)
> +			 "renesas,msiof-r8a77995" (R-Car D3)
>  			 "renesas,msiof-sh73a0" (SH-Mobile AG5)
>  			 "renesas,sh-mobile-msiof" (generic SH-Mobile compatibile device)
>  			 "renesas,rcar-gen2-msiof" (generic R-Car Gen2 and RZ/G1 compatible device)
> -- 
> 2.7.4
> 

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

* Re: [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes
  2018-05-16 17:43 ` [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Geert Uytterhoeven
@ 2018-05-17  7:52   ` Simon Horman
  2018-06-20  5:50     ` Wolfram Sang
  0 siblings, 1 reply; 10+ messages in thread
From: Simon Horman @ 2018-05-17  7:52 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Ulrich Hecht, Linux-Renesas, Wolfram Sang, linux-spi,
	Hiromitsu Yamasaki, Takeshi Kihara

On Wed, May 16, 2018 at 07:43:29PM +0200, Geert Uytterhoeven wrote:
> Hi Uli,
> 
> On Wed, May 16, 2018 at 3:05 PM, Ulrich Hecht
> <ulrich.hecht+renesas@gmail.com> wrote:
> > From: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
> >
> > This patch adds MSIOF device nodes for the R8A77995 SoC.
> >
> > Signed-off-by: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
> > Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> > [uli: remove unimplemented ref clock]
> 
> I think you should remove the clock-names properties, too.
> 
> > Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
> > ---
> >  arch/arm64/boot/dts/renesas/r8a77995.dtsi | 66 +++++++++++++++++++++++++++++++
> >  1 file changed, 66 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/renesas/r8a77995.dtsi b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> > index 2506f46..2f712ac 100644
> > --- a/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> > +++ b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> > @@ -783,6 +783,72 @@
> >                         compatible = "renesas,prr";
> >                         reg = <0 0xfff00044 0 4>;
> >                 };
> > +
> > +               msiof0: spi@e6e90000 {
> > +                       compatible = "renesas,msiof-r8a77995",
> > +                                    "renesas,rcar-gen3-msiof";
> > +                       reg = <0 0xe6e90000 0 0x0064>;

minor nit: s/0x0064/0x64/

Ulrich, could you consider reposing with the feedback from Geert and the
minor nit above addressed?

> > +                       interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
> > +                       clocks = <&cpg CPG_MOD 211>;
> > +                       clock-names = "msiof_clk";
> > +                       dmas = <&dmac1 0x41>, <&dmac1 0x40>,
> > +                              <&dmac2 0x41>, <&dmac2 0x40>;
> > +                       dma-names = "tx", "rx", "tx", "rx";
> > +                       power-domains = <&sysc R8A77995_PD_ALWAYS_ON>;
> > +                       resets = <&cpg 211>;
> > +                       #address-cells = <1>;
> > +                       #size-cells = <0>;
> > +                       status = "disabled";
> > +               };
> 
> 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] 10+ messages in thread

* Re: [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes
  2018-05-16 13:05 [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Ulrich Hecht
  2018-05-16 13:05 ` [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support Ulrich Hecht
  2018-05-16 17:43 ` [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Geert Uytterhoeven
@ 2018-05-17  7:56 ` Wolfram Sang
  2018-05-23  9:01   ` Ulrich Hecht
  2 siblings, 1 reply; 10+ messages in thread
From: Wolfram Sang @ 2018-05-17  7:56 UTC (permalink / raw)
  To: Ulrich Hecht
  Cc: linux-renesas-soc, geert, linux-spi, Hiromitsu Yamasaki, Takeshi Kihara

[-- Attachment #1: Type: text/plain, Size: 601 bytes --]

On Wed, May 16, 2018 at 03:05:15PM +0200, Ulrich Hecht wrote:
> From: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
> 
> This patch adds MSIOF device nodes for the R8A77995 SoC.
> 
> Signed-off-by: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> [uli: remove unimplemented ref clock]
> Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>

Thanks, Uli!

For the record: can you describe shortly which of these got tested with
what setup? I don't know the Draak, so I don't know what is exposed.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support
  2018-05-16 13:05 ` [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support Ulrich Hecht
  2018-05-17  7:44   ` Simon Horman
@ 2018-05-22 14:08   ` Geert Uytterhoeven
  1 sibling, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2018-05-22 14:08 UTC (permalink / raw)
  To: Ulrich Hecht; +Cc: Linux-Renesas, Wolfram Sang, linux-spi

On Wed, May 16, 2018 at 3:05 PM, Ulrich Hecht
<ulrich.hecht+renesas@gmail.com> wrote:
> Document support for the MSIOF module in the Renesas D3 (r8a77995) SoC.
>
> No driver update is needed.
>
> Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.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] 10+ messages in thread

* Re: [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes
  2018-05-17  7:56 ` Wolfram Sang
@ 2018-05-23  9:01   ` Ulrich Hecht
  2018-05-23  9:11     ` Wolfram Sang
  0 siblings, 1 reply; 10+ messages in thread
From: Ulrich Hecht @ 2018-05-23  9:01 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Linux-Renesas, Geert Uytterhoeven, linux-spi, Hiromitsu Yamasaki,
	Takeshi Kihara

On Thu, May 17, 2018 at 9:56 AM, Wolfram Sang <wsa@the-dreams.de> wrote:
> On Wed, May 16, 2018 at 03:05:15PM +0200, Ulrich Hecht wrote:
>> From: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
>>
>> This patch adds MSIOF device nodes for the R8A77995 SoC.
>>
>> Signed-off-by: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
>> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
>> [uli: remove unimplemented ref clock]
>> Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
>
> Thanks, Uli!
>
> For the record: can you describe shortly which of these got tested with
> what setup? I don't know the Draak, so I don't know what is exposed.

MSIOF2 is conveniently hooked up to a 1x4 pin header (CN41), no
weird-ass Samtec connectors required. My testing covered sending some
data using spidev_test and watching the output on an oscilloscope
attached to MSIOF2_TXD (pin 3). Looks plausible.

CU
Uli

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

* Re: [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes
  2018-05-23  9:01   ` Ulrich Hecht
@ 2018-05-23  9:11     ` Wolfram Sang
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfram Sang @ 2018-05-23  9:11 UTC (permalink / raw)
  To: Ulrich Hecht
  Cc: Linux-Renesas, Geert Uytterhoeven, linux-spi, Hiromitsu Yamasaki,
	Takeshi Kihara

[-- Attachment #1: Type: text/plain, Size: 440 bytes --]


> > For the record: can you describe shortly which of these got tested with
> > what setup? I don't know the Draak, so I don't know what is exposed.
> 
> MSIOF2 is conveniently hooked up to a 1x4 pin header (CN41), no
> weird-ass Samtec connectors required. My testing covered sending some
> data using spidev_test and watching the output on an oscilloscope
> attached to MSIOF2_TXD (pin 3). Looks plausible.

Perfect, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes
  2018-05-17  7:52   ` Simon Horman
@ 2018-06-20  5:50     ` Wolfram Sang
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfram Sang @ 2018-06-20  5:50 UTC (permalink / raw)
  To: Simon Horman
  Cc: Geert Uytterhoeven, Ulrich Hecht, Linux-Renesas, linux-spi,
	Hiromitsu Yamasaki, Takeshi Kihara

[-- Attachment #1: Type: text/plain, Size: 1735 bytes --]

On Thu, May 17, 2018 at 09:52:33AM +0200, Simon Horman wrote:
> On Wed, May 16, 2018 at 07:43:29PM +0200, Geert Uytterhoeven wrote:
> > Hi Uli,
> > 
> > On Wed, May 16, 2018 at 3:05 PM, Ulrich Hecht
> > <ulrich.hecht+renesas@gmail.com> wrote:
> > > From: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
> > >
> > > This patch adds MSIOF device nodes for the R8A77995 SoC.
> > >
> > > Signed-off-by: Hiromitsu Yamasaki <hiromitsu.yamasaki.ym@renesas.com>
> > > Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> > > [uli: remove unimplemented ref clock]
> > 
> > I think you should remove the clock-names properties, too.
> > 
> > > Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
> > > ---
> > >  arch/arm64/boot/dts/renesas/r8a77995.dtsi | 66 +++++++++++++++++++++++++++++++
> > >  1 file changed, 66 insertions(+)
> > >
> > > diff --git a/arch/arm64/boot/dts/renesas/r8a77995.dtsi b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> > > index 2506f46..2f712ac 100644
> > > --- a/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> > > +++ b/arch/arm64/boot/dts/renesas/r8a77995.dtsi
> > > @@ -783,6 +783,72 @@
> > >                         compatible = "renesas,prr";
> > >                         reg = <0 0xfff00044 0 4>;
> > >                 };
> > > +
> > > +               msiof0: spi@e6e90000 {
> > > +                       compatible = "renesas,msiof-r8a77995",
> > > +                                    "renesas,rcar-gen3-msiof";
> > > +                       reg = <0 0xe6e90000 0 0x0064>;
> 
> minor nit: s/0x0064/0x64/
> 
> Ulrich, could you consider reposing with the feedback from Geert and the
> minor nit above addressed?

Ulrich, ping for this series.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2018-06-20  5:50 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-16 13:05 [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Ulrich Hecht
2018-05-16 13:05 ` [PATCH 2/2] spi: sh-msiof: Document R-Car D3 support Ulrich Hecht
2018-05-17  7:44   ` Simon Horman
2018-05-22 14:08   ` Geert Uytterhoeven
2018-05-16 17:43 ` [PATCH 1/2] arm64: dts: r8a77995: Add MSIOF device nodes Geert Uytterhoeven
2018-05-17  7:52   ` Simon Horman
2018-06-20  5:50     ` Wolfram Sang
2018-05-17  7:56 ` Wolfram Sang
2018-05-23  9:01   ` Ulrich Hecht
2018-05-23  9:11     ` Wolfram Sang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.