linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series
@ 2021-01-02 11:54 Adam Ford
  2021-01-02 11:54 ` [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description Adam Ford
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Adam Ford @ 2021-01-02 11:54 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: aford, biju.das.jz, Adam Ford, Krzysztof Kozlowski, Rob Herring,
	Geert Uytterhoeven, Magnus Damm, Mark Brown, Sergei Shtylyov,
	linux-kernel, devicetree, linux-spi

The RZ/G2 Series has the RPC-IF interface.
Update bindings to support: r8a774a1, r8a774b1, r8a774c0, and r8a774e1

Signed-off-by: Adam Ford <aford173@gmail.com>
---
 .../bindings/memory-controllers/renesas,rpc-if.yaml         | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

V2:  Updated renesas,rcar-gen3-rpc-if to include RZ/G2

diff --git a/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml b/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml
index 6d6ba608fd22..990489fdd2ac 100644
--- a/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml
+++ b/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml
@@ -26,10 +26,14 @@ properties:
   compatible:
     items:
       - enum:
+          - renesas,r8a774a1-rpc-if       # RZ/G2M
+          - renesas,r8a774b1-rpc-if       # RZ/G2N
+          - renesas,r8a774c0-rpc-if       # RZ/G2E
+          - renesas,r8a774e1-rpc-if       # RZ/G2H
           - renesas,r8a77970-rpc-if       # R-Car V3M
           - renesas,r8a77980-rpc-if       # R-Car V3H
           - renesas,r8a77995-rpc-if       # R-Car D3
-      - const: renesas,rcar-gen3-rpc-if   # a generic R-Car gen3 device
+      - const: renesas,rcar-gen3-rpc-if   # a generic R-Car gen3 or RZ/G2 device
 
   reg:
     items:
-- 
2.25.1


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

* [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description
  2021-01-02 11:54 [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Adam Ford
@ 2021-01-02 11:54 ` Adam Ford
  2021-01-04 11:02   ` Geert Uytterhoeven
  2021-01-05 17:07   ` Krzysztof Kozlowski
  2021-01-02 11:54 ` [PATCH V2 3/4] spi: " Adam Ford
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 10+ messages in thread
From: Adam Ford @ 2021-01-02 11:54 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: aford, biju.das.jz, Adam Ford, Krzysztof Kozlowski, Rob Herring,
	Geert Uytterhoeven, Magnus Damm, Mark Brown, Sergei Shtylyov,
	linux-kernel, devicetree, linux-spi

The Renesas RPC-IF is present on the RZ/G2 Series.  Add that to
the description.

Suggested-by: Biju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: Adam Ford <aford173@gmail.com>
---
 drivers/memory/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

V2:  New to series

diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
index 3ea6913df176..d55252f349d4 100644
--- a/drivers/memory/Kconfig
+++ b/drivers/memory/Kconfig
@@ -202,9 +202,9 @@ config RENESAS_RPCIF
 	depends on ARCH_RENESAS || COMPILE_TEST
 	select REGMAP_MMIO
 	help
-	  This supports Renesas R-Car Gen3 RPC-IF which provides either SPI
-	  host or HyperFlash. You'll have to select individual components
-	  under the corresponding menu.
+	  This supports Renesas R-Car Gen3 of RZ/G2 RPC-IF which provides
+	  either SPI host or HyperFlash. You'll have to select individual
+	  components under the corresponding menu.
 
 config STM32_FMC2_EBI
 	tristate "Support for FMC2 External Bus Interface on STM32MP SoCs"
-- 
2.25.1


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

* [PATCH V2 3/4] spi: renesas rpc-if: Update Add RZ/G2 to Kconfig description
  2021-01-02 11:54 [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Adam Ford
  2021-01-02 11:54 ` [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description Adam Ford
@ 2021-01-02 11:54 ` Adam Ford
  2021-01-04 11:03   ` Geert Uytterhoeven
  2021-01-02 11:54 ` [PATCH V2 4/4] arm64: dts: renesas: rzg2: Add RPC-IF Support Adam Ford
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Adam Ford @ 2021-01-02 11:54 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: aford, biju.das.jz, Adam Ford, Krzysztof Kozlowski, Rob Herring,
	Geert Uytterhoeven, Magnus Damm, Mark Brown, Sergei Shtylyov,
	linux-kernel, devicetree, linux-spi

The SPI driver for the Renesas RPC-IF is present on the RZ/G2
Series.  Add that to the description.

Suggested-by: Biju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: Adam Ford <aford173@gmail.com>
---
 drivers/spi/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

V2:  New to series

diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
index aadaea052f51..e0eb2093aca6 100644
--- a/drivers/spi/Kconfig
+++ b/drivers/spi/Kconfig
@@ -650,7 +650,7 @@ config SPI_RPCIF
 	tristate "Renesas RPC-IF SPI driver"
 	depends on RENESAS_RPCIF
 	help
-	  SPI driver for Renesas R-Car Gen3 RPC-IF.
+	  SPI driver for Renesas R-Car Gen3 or RZ/G2 RPC-IF.
 
 config SPI_RSPI
 	tristate "Renesas RSPI/QSPI controller"
-- 
2.25.1


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

* [PATCH V2 4/4] arm64: dts: renesas: rzg2: Add RPC-IF Support
  2021-01-02 11:54 [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Adam Ford
  2021-01-02 11:54 ` [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description Adam Ford
  2021-01-02 11:54 ` [PATCH V2 3/4] spi: " Adam Ford
@ 2021-01-02 11:54 ` Adam Ford
  2021-01-04 17:41 ` (subset) [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Mark Brown
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Adam Ford @ 2021-01-02 11:54 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: aford, biju.das.jz, Adam Ford, Krzysztof Kozlowski, Rob Herring,
	Geert Uytterhoeven, Magnus Damm, Mark Brown, Sergei Shtylyov,
	linux-kernel, devicetree, linux-spi

The RZ/G2 series contain the SPI Multi I/O Bus Controller (RPC-IF).
Add the nodes, but make them disabled by default.

Signed-off-by: Adam Ford <aford173@gmail.com>
---
 arch/arm64/boot/dts/renesas/r8a774a1.dtsi | 17 +++++++++++++++++
 arch/arm64/boot/dts/renesas/r8a774b1.dtsi | 17 +++++++++++++++++
 arch/arm64/boot/dts/renesas/r8a774c0.dtsi | 17 +++++++++++++++++
 arch/arm64/boot/dts/renesas/r8a774e1.dtsi | 17 +++++++++++++++++
 4 files changed, 68 insertions(+)

V2:  No Change

diff --git a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
index d37ec42a1caa..5246f4d91e84 100644
--- a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
@@ -2302,6 +2302,23 @@ sdhi3: mmc@ee160000 {
 			status = "disabled";
 		};
 
+		rpc: spi@ee200000 {
+			compatible = "renesas,r8a774a1-rpc-if",
+				     "renesas,rcar-gen3-rpc-if";
+			reg = <0 0xee200000 0 0x200>,
+			      <0 0x08000000 0 0x4000000>,
+			      <0 0xee208000 0 0x100>;
+			reg-names = "regs", "dirmap", "wbuf";
+			interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 917>;
+			clock-names = "rpc";
+			power-domains = <&sysc R8A774A1_PD_ALWAYS_ON>;
+			resets = <&cpg 917>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
 		gic: interrupt-controller@f1010000 {
 			compatible = "arm,gic-400";
 			#interrupt-cells = <3>;
diff --git a/arch/arm64/boot/dts/renesas/r8a774b1.dtsi b/arch/arm64/boot/dts/renesas/r8a774b1.dtsi
index 83523916d360..5862aa2ad2bf 100644
--- a/arch/arm64/boot/dts/renesas/r8a774b1.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774b1.dtsi
@@ -2160,6 +2160,23 @@ sdhi3: mmc@ee160000 {
 			status = "disabled";
 		};
 
+		rpc: spi@ee200000 {
+			compatible = "renesas,r8a774b1-rpc-if",
+				     "renesas,rcar-gen3-rpc-if";
+			reg = <0 0xee200000 0 0x200>,
+			      <0 0x08000000 0 0x4000000>,
+			      <0 0xee208000 0 0x100>;
+			reg-names = "regs", "dirmap", "wbuf";
+			interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 917>;
+			clock-names = "rpc";
+			power-domains = <&sysc R8A774B1_PD_ALWAYS_ON>;
+			resets = <&cpg 917>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
 		sata: sata@ee300000 {
 			compatible = "renesas,sata-r8a774b1",
 				     "renesas,rcar-gen3-sata";
diff --git a/arch/arm64/boot/dts/renesas/r8a774c0.dtsi b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
index e0e54342cd4c..20fa3caa050e 100644
--- a/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
@@ -1654,6 +1654,23 @@ sdhi3: mmc@ee160000 {
 			status = "disabled";
 		};
 
+		rpc: spi@ee200000 {
+			compatible = "renesas,r8a774c0-rpc-if",
+				     "renesas,rcar-gen3-rpc-if";
+			reg = <0 0xee200000 0 0x200>,
+			      <0 0x08000000 0 0x4000000>,
+			      <0 0xee208000 0 0x100>;
+			reg-names = "regs", "dirmap", "wbuf";
+			interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 917>;
+			clock-names = "rpc";
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 917>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
 		gic: interrupt-controller@f1010000 {
 			compatible = "arm,gic-400";
 			#interrupt-cells = <3>;
diff --git a/arch/arm64/boot/dts/renesas/r8a774e1.dtsi b/arch/arm64/boot/dts/renesas/r8a774e1.dtsi
index 1333b02d623a..9be94945af8c 100644
--- a/arch/arm64/boot/dts/renesas/r8a774e1.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774e1.dtsi
@@ -2393,6 +2393,23 @@ sdhi3: mmc@ee160000 {
 			status = "disabled";
 		};
 
+		rpc: spi@ee200000 {
+			compatible = "renesas,r8a774e1-rpc-if",
+				     "renesas,rcar-gen3-rpc-if";
+			reg = <0 0xee200000 0 0x200>,
+			      <0 0x08000000 0 0x4000000>,
+			      <0 0xee208000 0 0x100>;
+			reg-names = "regs", "dirmap", "wbuf";
+			interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 917>;
+			clock-names = "rpc";
+			power-domains = <&sysc R8A774E1_PD_ALWAYS_ON>;
+			resets = <&cpg 917>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
 		sata: sata@ee300000 {
 			compatible = "renesas,sata-r8a774e1",
 				     "renesas,rcar-gen3-sata";
-- 
2.25.1


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

* Re: [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description
  2021-01-02 11:54 ` [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description Adam Ford
@ 2021-01-04 11:02   ` Geert Uytterhoeven
  2021-01-05 17:07   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2021-01-04 11:02 UTC (permalink / raw)
  To: Adam Ford
  Cc: Linux-Renesas, Adam Ford-BE, Biju Das, Krzysztof Kozlowski,
	Rob Herring, Geert Uytterhoeven, Magnus Damm, Mark Brown,
	Sergei Shtylyov, Linux Kernel Mailing List,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	linux-spi

On Sat, Jan 2, 2021 at 12:54 PM Adam Ford <aford173@gmail.com> wrote:
>
> The Renesas RPC-IF is present on the RZ/G2 Series.  Add that to
> the description.
>
> Suggested-by: Biju Das <biju.das.jz@bp.renesas.com>
> Signed-off-by: Adam Ford <aford173@gmail.com>

Thanks for your patch!

> --- a/drivers/memory/Kconfig
> +++ b/drivers/memory/Kconfig
> @@ -202,9 +202,9 @@ config RENESAS_RPCIF
>         depends on ARCH_RENESAS || COMPILE_TEST
>         select REGMAP_MMIO
>         help
> -         This supports Renesas R-Car Gen3 RPC-IF which provides either SPI
> -         host or HyperFlash. You'll have to select individual components
> -         under the corresponding menu.
> +         This supports Renesas R-Car Gen3 of RZ/G2 RPC-IF which provides

s/of/or/

> +         either SPI host or HyperFlash. You'll have to select individual
> +         components under the corresponding menu.
>
>  config STM32_FMC2_EBI
>         tristate "Support for FMC2 External Bus Interface on STM32MP SoCs"

With the above fixed:
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 V2 3/4] spi: renesas rpc-if: Update Add RZ/G2 to Kconfig description
  2021-01-02 11:54 ` [PATCH V2 3/4] spi: " Adam Ford
@ 2021-01-04 11:03   ` Geert Uytterhoeven
  0 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2021-01-04 11:03 UTC (permalink / raw)
  To: Adam Ford
  Cc: Linux-Renesas, Adam Ford-BE, Biju Das, Krzysztof Kozlowski,
	Rob Herring, Geert Uytterhoeven, Magnus Damm, Mark Brown,
	Sergei Shtylyov, Linux Kernel Mailing List,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	linux-spi

On Sat, Jan 2, 2021 at 12:54 PM Adam Ford <aford173@gmail.com> wrote:
> The SPI driver for the Renesas RPC-IF is present on the RZ/G2

s/is/as/

> Series.  Add that to the description.
>
> Suggested-by: Biju Das <biju.das.jz@bp.renesas.com>
> Signed-off-by: Adam Ford <aford173@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: (subset) [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series
  2021-01-02 11:54 [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Adam Ford
                   ` (2 preceding siblings ...)
  2021-01-02 11:54 ` [PATCH V2 4/4] arm64: dts: renesas: rzg2: Add RPC-IF Support Adam Ford
@ 2021-01-04 17:41 ` Mark Brown
  2021-01-05 17:06 ` Krzysztof Kozlowski
  2021-01-08 14:29 ` Geert Uytterhoeven
  5 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2021-01-04 17:41 UTC (permalink / raw)
  To: linux-renesas-soc, Adam Ford
  Cc: aford, Sergei Shtylyov, Geert Uytterhoeven, Krzysztof Kozlowski,
	devicetree, linux-spi, biju.das.jz, linux-kernel, Rob Herring,
	Magnus Damm

On Sat, 2 Jan 2021 05:54:09 -0600, Adam Ford wrote:
> The RZ/G2 Series has the RPC-IF interface.
> Update bindings to support: r8a774a1, r8a774b1, r8a774c0, and r8a774e1

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[3/4] spi: renesas rpc-if: Update Add RZ/G2 to Kconfig description
      commit: f4a10fc4225155ae4d2fcb411be9f24245bb5cf8

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

* Re: [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series
  2021-01-02 11:54 [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Adam Ford
                   ` (3 preceding siblings ...)
  2021-01-04 17:41 ` (subset) [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Mark Brown
@ 2021-01-05 17:06 ` Krzysztof Kozlowski
  2021-01-08 14:29 ` Geert Uytterhoeven
  5 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2021-01-05 17:06 UTC (permalink / raw)
  To: Adam Ford
  Cc: linux-renesas-soc, aford, biju.das.jz, Rob Herring,
	Geert Uytterhoeven, Magnus Damm, Mark Brown, Sergei Shtylyov,
	linux-kernel, devicetree, linux-spi

On Sat, Jan 02, 2021 at 05:54:09AM -0600, Adam Ford wrote:
> The RZ/G2 Series has the RPC-IF interface.
> Update bindings to support: r8a774a1, r8a774b1, r8a774c0, and r8a774e1
> 
> Signed-off-by: Adam Ford <aford173@gmail.com>
> ---
>  .../bindings/memory-controllers/renesas,rpc-if.yaml         | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> V2:  Updated renesas,rcar-gen3-rpc-if to include RZ/G2

Thanks, applied.

Best regards,
Krzysztof


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

* Re: [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description
  2021-01-02 11:54 ` [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description Adam Ford
  2021-01-04 11:02   ` Geert Uytterhoeven
@ 2021-01-05 17:07   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2021-01-05 17:07 UTC (permalink / raw)
  To: Adam Ford
  Cc: linux-renesas-soc, aford, biju.das.jz, Rob Herring,
	Geert Uytterhoeven, Magnus Damm, Mark Brown, Sergei Shtylyov,
	linux-kernel, devicetree, linux-spi

On Sat, Jan 02, 2021 at 05:54:10AM -0600, Adam Ford wrote:
> The Renesas RPC-IF is present on the RZ/G2 Series.  Add that to
> the description.
> 
> Suggested-by: Biju Das <biju.das.jz@bp.renesas.com>
> Signed-off-by: Adam Ford <aford173@gmail.com>
> ---
>  drivers/memory/Kconfig | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 

Thanks, applied with commit title change (renesas-rpc-if:) and fix
pointed out by Geert.

Best regards,
Krzysztof


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

* Re: [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series
  2021-01-02 11:54 [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Adam Ford
                   ` (4 preceding siblings ...)
  2021-01-05 17:06 ` Krzysztof Kozlowski
@ 2021-01-08 14:29 ` Geert Uytterhoeven
  5 siblings, 0 replies; 10+ messages in thread
From: Geert Uytterhoeven @ 2021-01-08 14:29 UTC (permalink / raw)
  To: Adam Ford
  Cc: Linux-Renesas, Adam Ford-BE, Biju Das, Krzysztof Kozlowski,
	Rob Herring, Magnus Damm, Mark Brown, Sergei Shtylyov,
	Linux Kernel Mailing List,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	linux-spi

On Sat, Jan 2, 2021 at 12:54 PM Adam Ford <aford173@gmail.com> wrote:
> The RZ/G2 Series has the RPC-IF interface.
> Update bindings to support: r8a774a1, r8a774b1, r8a774c0, and r8a774e1
>
> Signed-off-by: Adam Ford <aford173@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

end of thread, other threads:[~2021-01-08 14:30 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-02 11:54 [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Adam Ford
2021-01-02 11:54 ` [PATCH V2 2/4] memory: renesas rpc-if: Update Add RZ/G2 to Kconfig description Adam Ford
2021-01-04 11:02   ` Geert Uytterhoeven
2021-01-05 17:07   ` Krzysztof Kozlowski
2021-01-02 11:54 ` [PATCH V2 3/4] spi: " Adam Ford
2021-01-04 11:03   ` Geert Uytterhoeven
2021-01-02 11:54 ` [PATCH V2 4/4] arm64: dts: renesas: rzg2: Add RPC-IF Support Adam Ford
2021-01-04 17:41 ` (subset) [PATCH V2 1/4] dt-bindings: memory: Renesas RPC-IF: Add support for RZ/G2 Series Mark Brown
2021-01-05 17:06 ` Krzysztof Kozlowski
2021-01-08 14:29 ` 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).