All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Add R8A77980 support to the Renesas RPC-IF driver
@ 2018-12-28 10:42 Sergei Shtylyov
  2018-12-28 10:47 ` [PATCH 1/2] dt-bindings: spi: renesas-rpc: document R8A77980 bindings Sergei Shtylyov
  2018-12-28 10:48 ` [PATCH 2/2] spi-renesas-rpc: add R8A77980 support Sergei Shtylyov
  0 siblings, 2 replies; 4+ messages in thread
From: Sergei Shtylyov @ 2018-12-28 10:42 UTC (permalink / raw)
  To: Mark Brown, linux-spi, Mason Yang, Rob Herring, devicetree
  Cc: linux-renesas-soc, Mark Rutland

Hello!

Here's the set of 2 patches against the 'devel' branch of Simon Horman's 'renesas.git'
repo and the Renesas RPC-IF driver/bindings patches v4. We're adding support for the
R-Car V3H (R8A77980) RPC-IF...

[1/2] dt-bindings: spi: renesas-rpc: document R8A77980 bindings
[2/2] spi-renesas-rpc: add R8A77980 support 

MBR, Sergei

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

* [PATCH 1/2] dt-bindings: spi: renesas-rpc: document R8A77980 bindings
  2018-12-28 10:42 [PATCH 0/2] Add R8A77980 support to the Renesas RPC-IF driver Sergei Shtylyov
@ 2018-12-28 10:47 ` Sergei Shtylyov
  2019-01-11 14:39   ` Rob Herring
  2018-12-28 10:48 ` [PATCH 2/2] spi-renesas-rpc: add R8A77980 support Sergei Shtylyov
  1 sibling, 1 reply; 4+ messages in thread
From: Sergei Shtylyov @ 2018-12-28 10:47 UTC (permalink / raw)
  To: Mark Brown, linux-spi, Mason Yang, Rob Herring, devicetree
  Cc: linux-renesas-soc, Mark Rutland

Document the R-Car V3H (R8A77980) SoC in the Renesas RPC-IF bindings.

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

---
 Documentation/devicetree/bindings/spi/spi-renesas-rpc.txt |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: renesas/Documentation/devicetree/bindings/spi/spi-renesas-rpc.txt
===================================================================
--- renesas.orig/Documentation/devicetree/bindings/spi/spi-renesas-rpc.txt
+++ renesas/Documentation/devicetree/bindings/spi/spi-renesas-rpc.txt
@@ -2,7 +2,8 @@ Renesas R-Car Gen3 RPC controller Device
 ------------------------------------------------------
 
 Required properties:
-- compatible: should be "renesas,r8a77995-rpc"
+- compatible: should be "renesas,r8a77980-rpc" or
+  	      	        "renesas,r8a77995-rpc"
 - #address-cells: should be 1
 - #size-cells: should be 0
 - reg: should contain 2 entries, one for the registers and one for the direct

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

* [PATCH 2/2] spi-renesas-rpc: add R8A77980 support
  2018-12-28 10:42 [PATCH 0/2] Add R8A77980 support to the Renesas RPC-IF driver Sergei Shtylyov
  2018-12-28 10:47 ` [PATCH 1/2] dt-bindings: spi: renesas-rpc: document R8A77980 bindings Sergei Shtylyov
@ 2018-12-28 10:48 ` Sergei Shtylyov
  1 sibling, 0 replies; 4+ messages in thread
From: Sergei Shtylyov @ 2018-12-28 10:48 UTC (permalink / raw)
  To: Mark Brown, linux-spi, Mason Yang; +Cc: linux-renesas-soc

Add the R-Car V3H (R8A77980) SoC support to the Renesas RPC-IF SPI driver. 

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

---
 drivers/spi/spi-renesas-rpc.c |    1 +
 1 file changed, 1 insertion(+)

Index: renesas/drivers/spi/spi-renesas-rpc.c
===================================================================
--- renesas.orig/drivers/spi/spi-renesas-rpc.c
+++ renesas/drivers/spi/spi-renesas-rpc.c
@@ -762,6 +762,7 @@ static int rpc_spi_remove(struct platfor
 }
 
 static const struct of_device_id rpc_spi_of_ids[] = {
+	{ .compatible = "renesas,r8a77980-rpc", },
 	{ .compatible = "renesas,r8a77995-rpc", },
 	{ /* sentinel */ }
 };

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

* Re: [PATCH 1/2] dt-bindings: spi: renesas-rpc: document R8A77980 bindings
  2018-12-28 10:47 ` [PATCH 1/2] dt-bindings: spi: renesas-rpc: document R8A77980 bindings Sergei Shtylyov
@ 2019-01-11 14:39   ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2019-01-11 14:39 UTC (permalink / raw)
  To: Sergei Shtylyov
  Cc: Mark Brown, linux-spi, Mason Yang, devicetree, linux-renesas-soc,
	Mark Rutland

On Fri, 28 Dec 2018 13:47:09 +0300, Sergei Shtylyov wrote:
> Document the R-Car V3H (R8A77980) SoC in the Renesas RPC-IF bindings.
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
> 
> ---
>  Documentation/devicetree/bindings/spi/spi-renesas-rpc.txt |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 

Reviewed-by: Rob Herring <robh@kernel.org>

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

end of thread, other threads:[~2019-01-11 14:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-28 10:42 [PATCH 0/2] Add R8A77980 support to the Renesas RPC-IF driver Sergei Shtylyov
2018-12-28 10:47 ` [PATCH 1/2] dt-bindings: spi: renesas-rpc: document R8A77980 bindings Sergei Shtylyov
2019-01-11 14:39   ` Rob Herring
2018-12-28 10:48 ` [PATCH 2/2] spi-renesas-rpc: add R8A77980 support Sergei Shtylyov

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.