cip-dev.lists.cip-project.org archive mirror
 help / color / mirror / Atom feed
* [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support
@ 2019-03-27 12:13 Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 1/9] i2c: sh_mobile: document support for r8a77990 (R-Car E3) Biju Das
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

This patch series add i2c/msiof support for RZ/G2E SoC.

This patch series is based on linux-4.19.y-cip and all the patches
in this series are cherry-picked from linux rc tree.

This patch series is depend on the below patch series
https://patchwork.kernel.org/patch/10865489/

Fabrizio Castro (7):
  dt-bindings: i2c: sh_mobile: Add r8a774c0 support
  i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E)
  dt-bindings: i2c: rcar: Add r8a774c0 support
  arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support
  spi: sh-msiof: Add r8a774a1 support
  spi: sh-msiof: Add r8a774c0 support
  arm64: dts: renesas: r8a774c0: Add MSIOF nodes

Simon Horman (2):
  i2c: sh_mobile: document support for r8a77990 (R-Car E3)
  i2c: sh_mobile: add support for r8a77990 (R-Car E3)

 Documentation/devicetree/bindings/i2c/i2c-rcar.txt |   1 +
 .../devicetree/bindings/i2c/i2c-sh_mobile.txt      |  10 +-
 Documentation/devicetree/bindings/spi/sh-msiof.txt |   4 +-
 arch/arm64/boot/dts/renesas/r8a774c0.dtsi          | 205 +++++++++++++++++++++
 drivers/i2c/busses/i2c-sh_mobile.c                 |   2 +
 5 files changed, 220 insertions(+), 2 deletions(-)

-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 1/9] i2c: sh_mobile: document support for r8a77990 (R-Car E3)
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-04-12  7:54   ` Pavel Machek
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 2/9] dt-bindings: i2c: sh_mobile: Add r8a774c0 support Biju Das
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Simon Horman <horms+renesas@verge.net.au>

Document support for the IIC code for the r8a77990 (R-Car E3).

It is not considered compatible with existing fallback bindings
due to the documented absence of automatic transmission registers.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
(cherry picked from commit fca34b910ddc556c51294d58287f7c33863dddef)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt b/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
index 872673a..cc62577 100644
--- a/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
+++ b/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
@@ -15,6 +15,7 @@ Required properties:
 			- "renesas,iic-r8a7795" (R-Car H3)
 			- "renesas,iic-r8a7796" (R-Car M3-W)
 			- "renesas,iic-r8a77965" (R-Car M3-N)
+			- "renesas,iic-r8a77990" (R-Car E3)
 			- "renesas,iic-sh73a0" (SH-Mobile AG5)
 			- "renesas,rcar-gen2-iic" (generic R-Car Gen2 or RZ/G1
 							compatible device)
@@ -27,7 +28,13 @@ Required properties:
 			the platform first followed by the generic R-Car
 			version.
 
-			renesas,rmobile-iic must always follow.
+			When compatible with "renesas,rmobile-iic" it should
+			be the last compatibility string listed.
+
+			The r8a77990 (R-Car E3) controller is not
+			considered compatible with "renesas,rcar-gen3-iic"
+			or "renesas,rmobile-iic" due to the absence of
+			automatic transmission registers.
 
 - reg             : address start and address range size of device
 - interrupts      : interrupt of device
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 2/9] dt-bindings: i2c: sh_mobile: Add r8a774c0 support
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 1/9] i2c: sh_mobile: document support for r8a77990 (R-Car E3) Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 3/9] i2c: sh_mobile: add support for r8a77990 (R-Car E3) Biju Das
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Document RZ/G2E (R8A774C0) SoC bindings.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
(cherry picked from commit 3f74383f29ca2e0c7d9362c4c65a7c2cb4e1fd5f)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt b/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
index cc62577..392162a 100644
--- a/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
+++ b/Documentation/devicetree/bindings/i2c/i2c-sh_mobile.txt
@@ -7,6 +7,7 @@ Required properties:
 			- "renesas,iic-r8a7743" (RZ/G1M)
 			- "renesas,iic-r8a7745" (RZ/G1E)
 			- "renesas,iic-r8a774a1" (RZ/G2M)
+			- "renesas,iic-r8a774c0" (RZ/G2E)
 			- "renesas,iic-r8a7790" (R-Car H2)
 			- "renesas,iic-r8a7791" (R-Car M2-W)
 			- "renesas,iic-r8a7792" (R-Car V2H)
@@ -31,10 +32,10 @@ Required properties:
 			When compatible with "renesas,rmobile-iic" it should
 			be the last compatibility string listed.
 
-			The r8a77990 (R-Car E3) controller is not
-			considered compatible with "renesas,rcar-gen3-iic"
-			or "renesas,rmobile-iic" due to the absence of
-			automatic transmission registers.
+			The r8a77990 (R-Car E3) and r8a774c0 (RZ/G2E)
+			controllers are not considered compatible with
+			"renesas,rcar-gen3-iic" or "renesas,rmobile-iic"
+			due to the absence of automatic transmission registers.
 
 - reg             : address start and address range size of device
 - interrupts      : interrupt of device
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 3/9] i2c: sh_mobile: add support for r8a77990 (R-Car E3)
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 1/9] i2c: sh_mobile: document support for r8a77990 (R-Car E3) Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 2/9] dt-bindings: i2c: sh_mobile: Add r8a774c0 support Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 4/9] i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E) Biju Das
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Simon Horman <horms+renesas@verge.net.au>

Add support for the IIC code for the r8a77990 (R-Car E3).

It is not considered compatible with existing fallback bindings
due to the documented absence of automatic transmission registers.

These registers are currently not used by the driver and
thus the provides the same behaviour for "renesas,iic-r8a77990" and
"renesas,rcar-gen3-iic". The point of declaring incompatibility is
to allow for automatic transmission register support to be added to
"renesas,iic-r8a77990" and "renesas,rcar-gen3-iic" in future.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
(cherry picked from commit 5eb316e636eb298c204f5b368526d4480b63c0ba)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 drivers/i2c/busses/i2c-sh_mobile.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/i2c/busses/i2c-sh_mobile.c b/drivers/i2c/busses/i2c-sh_mobile.c
index 818cab1..b3ed14f 100644
--- a/drivers/i2c/busses/i2c-sh_mobile.c
+++ b/drivers/i2c/busses/i2c-sh_mobile.c
@@ -808,6 +808,7 @@ static const struct of_device_id sh_mobile_i2c_dt_ids[] = {
 	{ .compatible = "renesas,rcar-gen2-iic", .data = &fast_clock_dt_config },
 	{ .compatible = "renesas,iic-r8a7795", .data = &fast_clock_dt_config },
 	{ .compatible = "renesas,rcar-gen3-iic", .data = &fast_clock_dt_config },
+	{ .compatible = "renesas,iic-r8a77990", .data = &fast_clock_dt_config },
 	{ .compatible = "renesas,iic-sh73a0", .data = &fast_clock_dt_config },
 	{ .compatible = "renesas,rmobile-iic", .data = &default_dt_config },
 	{},
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 4/9] i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E)
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
                   ` (2 preceding siblings ...)
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 3/9] i2c: sh_mobile: add support for r8a77990 (R-Car E3) Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 5/9] dt-bindings: i2c: rcar: Add r8a774c0 support Biju Das
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Similarly to R-Car E3, RZ/G2E doesn't come with automatic
transmission registers, as such it is not considered compatible
with the existing fallback bindings.

Add SoC specific binding compatibility to allow for later
support for automatic transmission.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
(cherry picked from commit 51243b73455f2d12cb82abffa7bc9028aec656e0)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 drivers/i2c/busses/i2c-sh_mobile.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/i2c/busses/i2c-sh_mobile.c b/drivers/i2c/busses/i2c-sh_mobile.c
index b3ed14f..ddcfb6d 100644
--- a/drivers/i2c/busses/i2c-sh_mobile.c
+++ b/drivers/i2c/busses/i2c-sh_mobile.c
@@ -800,6 +800,7 @@ static const struct sh_mobile_dt_config r8a7740_dt_config = {
 static const struct of_device_id sh_mobile_i2c_dt_ids[] = {
 	{ .compatible = "renesas,iic-r8a73a4", .data = &fast_clock_dt_config },
 	{ .compatible = "renesas,iic-r8a7740", .data = &r8a7740_dt_config },
+	{ .compatible = "renesas,iic-r8a774c0", .data = &fast_clock_dt_config },
 	{ .compatible = "renesas,iic-r8a7790", .data = &v2_freq_calc_dt_config },
 	{ .compatible = "renesas,iic-r8a7791", .data = &fast_clock_dt_config },
 	{ .compatible = "renesas,iic-r8a7792", .data = &fast_clock_dt_config },
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 5/9] dt-bindings: i2c: rcar: Add r8a774c0 support
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
                   ` (3 preceding siblings ...)
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 4/9] i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E) Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support Biju Das
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Document RZ/G2E (R8A774C0) I2C compatibility with the relevant device
dt-bindings.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
(cherry picked from commit 1ccf1980e3e4853ecf11804774ef6ac071911150)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 Documentation/devicetree/bindings/i2c/i2c-rcar.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/i2c/i2c-rcar.txt b/Documentation/devicetree/bindings/i2c/i2c-rcar.txt
index 39cd21d..c6367d0 100644
--- a/Documentation/devicetree/bindings/i2c/i2c-rcar.txt
+++ b/Documentation/devicetree/bindings/i2c/i2c-rcar.txt
@@ -5,6 +5,7 @@ Required properties:
 	"renesas,i2c-r8a7743" if the device is a part of a R8A7743 SoC.
 	"renesas,i2c-r8a7745" if the device is a part of a R8A7745 SoC.
 	"renesas,i2c-r8a774a1" if the device is a part of a R8A774A1 SoC.
+	"renesas,i2c-r8a774c0" if the device is a part of a R8A774C0 SoC.
 	"renesas,i2c-r8a7778" if the device is a part of a R8A7778 SoC.
 	"renesas,i2c-r8a7779" if the device is a part of a R8A7779 SoC.
 	"renesas,i2c-r8a7790" if the device is a part of a R8A7790 SoC.
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
                   ` (4 preceding siblings ...)
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 5/9] dt-bindings: i2c: rcar: Add r8a774c0 support Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-04-09 20:54   ` Pavel Machek
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 7/9] spi: sh-msiof: Add r8a774a1 support Biju Das
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Add the I2C[0-7] and IIC Bus Interface for DVFS (IIC for DVFS)
devices nodes to the r8a774c0 device tree.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
(cherry picked from commit abf8cc35bf89d897442643269079431a370e9f48)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r8a774c0.dtsi | 143 ++++++++++++++++++++++++++++++
 1 file changed, 143 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a774c0.dtsi b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
index 96a71e3..bf08aba 100644
--- a/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
@@ -271,6 +271,149 @@
 			resets = <&cpg 407>;
 		};
 
+		i2c0: i2c at e6500000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe6500000 0 0x40>;
+			interrupts = <GIC_SPI 287 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 931>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 931>;
+			dmas = <&dmac1 0x91>, <&dmac1 0x90>,
+			       <&dmac2 0x91>, <&dmac2 0x90>;
+			dma-names = "tx", "rx", "tx", "rx";
+			i2c-scl-internal-delay-ns = <110>;
+			status = "disabled";
+		};
+
+		i2c1: i2c at e6508000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe6508000 0 0x40>;
+			interrupts = <GIC_SPI 288 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 930>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 930>;
+			dmas = <&dmac1 0x93>, <&dmac1 0x92>,
+			       <&dmac2 0x93>, <&dmac2 0x92>;
+			dma-names = "tx", "rx", "tx", "rx";
+			i2c-scl-internal-delay-ns = <6>;
+			status = "disabled";
+		};
+
+		i2c2: i2c at e6510000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe6510000 0 0x40>;
+			interrupts = <GIC_SPI 286 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 929>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 929>;
+			dmas = <&dmac1 0x95>, <&dmac1 0x94>,
+			       <&dmac2 0x95>, <&dmac2 0x94>;
+			dma-names = "tx", "rx", "tx", "rx";
+			i2c-scl-internal-delay-ns = <6>;
+			status = "disabled";
+		};
+
+		i2c3: i2c at e66d0000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe66d0000 0 0x40>;
+			interrupts = <GIC_SPI 290 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 928>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 928>;
+			dmas = <&dmac0 0x97>, <&dmac0 0x96>;
+			dma-names = "tx", "rx";
+			i2c-scl-internal-delay-ns = <110>;
+			status = "disabled";
+		};
+
+		i2c4: i2c at e66d8000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe66d8000 0 0x40>;
+			interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 927>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 927>;
+			dmas = <&dmac0 0x99>, <&dmac0 0x98>;
+			dma-names = "tx", "rx";
+			i2c-scl-internal-delay-ns = <6>;
+			status = "disabled";
+		};
+
+		i2c5: i2c at e66e0000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe66e0000 0 0x40>;
+			interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 919>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 919>;
+			dmas = <&dmac0 0x9b>, <&dmac0 0x9a>;
+			dma-names = "tx", "rx";
+			i2c-scl-internal-delay-ns = <6>;
+			status = "disabled";
+		};
+
+		i2c6: i2c at e66e8000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe66e8000 0 0x40>;
+			interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 918>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 918>;
+			dmas = <&dmac0 0x9d>, <&dmac0 0x9c>;
+			dma-names = "tx", "rx";
+			i2c-scl-internal-delay-ns = <6>;
+			status = "disabled";
+		};
+
+		i2c7: i2c at e6690000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,i2c-r8a774c0",
+				     "renesas,rcar-gen3-i2c";
+			reg = <0 0xe6690000 0 0x40>;
+			interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 1003>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 1003>;
+			i2c-scl-internal-delay-ns = <6>;
+			status = "disabled";
+		};
+
+		i2c_dvfs: i2c at e60b0000 {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			compatible = "renesas,iic-r8a774c0";
+			reg = <0 0xe60b0000 0 0x15>;
+			interrupts = <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 926>;
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 926>;
+			dmas = <&dmac0 0x11>, <&dmac0 0x10>;
+			dma-names = "tx", "rx";
+			status = "disabled";
+		};
+
 		hscif0: serial at e6540000 {
 			compatible = "renesas,hscif-r8a774c0",
 				     "renesas,rcar-gen3-hscif",
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 7/9] spi: sh-msiof: Add r8a774a1 support
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
                   ` (5 preceding siblings ...)
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 8/9] spi: sh-msiof: Add r8a774c0 support Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 9/9] arm64: dts: renesas: r8a774c0: Add MSIOF nodes Biju Das
  8 siblings, 0 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Document RZ/G2M (R8A774A1) SoC bindings.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Mark Brown <broonie@kernel.org>
(cherry picked from commit 864822235f1897219409ec1f0af076fcc9057c57)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 Documentation/devicetree/bindings/spi/sh-msiof.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/spi/sh-msiof.txt b/Documentation/devicetree/bindings/spi/sh-msiof.txt
index bfbc203..8f7bb6a 100644
--- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
+++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
@@ -3,6 +3,7 @@ Renesas MSIOF spi controller
 Required properties:
 - compatible           : "renesas,msiof-r8a7743" (RZ/G1M)
 			 "renesas,msiof-r8a7745" (RZ/G1E)
+			 "renesas,msiof-r8a774a1" (RZ/G2M)
 			 "renesas,msiof-r8a7790" (R-Car H2)
 			 "renesas,msiof-r8a7791" (R-Car M2-W)
 			 "renesas,msiof-r8a7792" (R-Car V2H)
@@ -14,7 +15,7 @@ Required properties:
 			 "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)
-			 "renesas,rcar-gen3-msiof" (generic R-Car Gen3 compatible device)
+			 "renesas,rcar-gen3-msiof" (generic R-Car Gen3 and RZ/G2 compatible device)
 			 "renesas,sh-msiof"      (deprecated)
 
 			 When compatible with the generic version, nodes
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 8/9] spi: sh-msiof: Add r8a774c0 support
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
                   ` (6 preceding siblings ...)
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 7/9] spi: sh-msiof: Add r8a774a1 support Biju Das
@ 2019-03-27 12:13 ` Biju Das
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 9/9] arm64: dts: renesas: r8a774c0: Add MSIOF nodes Biju Das
  8 siblings, 0 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Document RZ/G2E (R8A774C0) SoC bindings.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Mark Brown <broonie@kernel.org>
(cherry picked from commit 079e7f8709bb41cd0dc13efaffb24a0f17841955)
Signed-off-by: Biju Das <biju.das@bp.renesas.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 8f7bb6a..4dd4455 100644
--- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
+++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
@@ -4,6 +4,7 @@ Required properties:
 - compatible           : "renesas,msiof-r8a7743" (RZ/G1M)
 			 "renesas,msiof-r8a7745" (RZ/G1E)
 			 "renesas,msiof-r8a774a1" (RZ/G2M)
+			 "renesas,msiof-r8a774c0" (RZ/G2E)
 			 "renesas,msiof-r8a7790" (R-Car H2)
 			 "renesas,msiof-r8a7791" (R-Car M2-W)
 			 "renesas,msiof-r8a7792" (R-Car V2H)
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 9/9] arm64: dts: renesas: r8a774c0: Add MSIOF nodes
  2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
                   ` (7 preceding siblings ...)
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 8/9] spi: sh-msiof: Add r8a774c0 support Biju Das
@ 2019-03-27 12:13 ` Biju Das
  8 siblings, 0 replies; 16+ messages in thread
From: Biju Das @ 2019-03-27 12:13 UTC (permalink / raw)
  To: cip-dev

From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Add the device nodes for all MSIOF SPI controllers on RZ/G2E SoC.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
(cherry picked from commit 62c0056f1c3eb15d6f40c2b958e0e023d5845852)
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r8a774c0.dtsi | 62 +++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a774c0.dtsi b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
index bf08aba..37ec67c 100644
--- a/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774c0.dtsi
@@ -746,6 +746,68 @@
 			status = "disabled";
 		};
 
+		msiof0: spi at e6e90000 {
+			compatible = "renesas,msiof-r8a774c0",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6e90000 0 0x0064>;
+			interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 211>;
+			dmas = <&dmac1 0x41>, <&dmac1 0x40>,
+			       <&dmac2 0x41>, <&dmac2 0x40>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 211>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
+		msiof1: spi at e6ea0000 {
+			compatible = "renesas,msiof-r8a774c0",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6ea0000 0 0x0064>;
+			interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 210>;
+			dmas = <&dmac1 0x43>, <&dmac1 0x42>,
+			       <&dmac2 0x43>, <&dmac2 0x42>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 210>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
+		msiof2: spi at e6c00000 {
+			compatible = "renesas,msiof-r8a774c0",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6c00000 0 0x0064>;
+			interrupts = <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 209>;
+			dmas = <&dmac0 0x45>, <&dmac0 0x44>;
+			dma-names = "tx", "rx";
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 209>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
+		msiof3: spi at e6c10000 {
+			compatible = "renesas,msiof-r8a774c0",
+				     "renesas,rcar-gen3-msiof";
+			reg = <0 0xe6c10000 0 0x0064>;
+			interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 208>;
+			dmas = <&dmac0 0x47>, <&dmac0 0x46>;
+			dma-names = "tx", "rx";
+			power-domains = <&sysc R8A774C0_PD_ALWAYS_ON>;
+			resets = <&cpg 208>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
 		sdhi0: sd at ee100000 {
 			compatible = "renesas,sdhi-r8a774c0",
 				     "renesas,rcar-gen3-sdhi";
-- 
2.7.4

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

* [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support Biju Das
@ 2019-04-09 20:54   ` Pavel Machek
  2019-04-10  6:41     ` Biju Das
  0 siblings, 1 reply; 16+ messages in thread
From: Pavel Machek @ 2019-04-09 20:54 UTC (permalink / raw)
  To: cip-dev

On Wed 2019-03-27 12:13:06, Biju Das wrote:
> From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Add the I2C[0-7] and IIC Bus Interface for DVFS (IIC for DVFS)
> devices nodes to the r8a774c0 device tree.

This fails for me, because arch/arm64/boot/dts/renesas/r8a774c0.dtsi does not yet exist.

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

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

* [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support
  2019-04-09 20:54   ` Pavel Machek
@ 2019-04-10  6:41     ` Biju Das
  2019-04-10  8:09       ` nobuhiro1.iwamatsu at toshiba.co.jp
  0 siblings, 1 reply; 16+ messages in thread
From: Biju Das @ 2019-04-10  6:41 UTC (permalink / raw)
  To: cip-dev

Hi Pavel,

Thanks for the feedback.

> Subject: Re: [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add
> I2C and IIC-DVFS support
> 
> On Wed 2019-03-27 12:13:06, Biju Das wrote:
> > From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> >
> > Add the I2C[0-7] and IIC Bus Interface for DVFS (IIC for DVFS) devices
> > nodes to the r8a774c0 device tree.
> 
> This fails for me, because arch/arm64/boot/dts/renesas/r8a774c0.dtsi does
> not yet exist.

This patch "arm64: dts: renesas: Initial device tree for r8a774c0" have "arch/arm64/boot/dts/renesas/r8a774c0.dtsi"

https://lists.cip-project.org/pipermail/cip-dev/2019-March/001917.html

Do you want me to send it again?

Regards,
Biju

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

* [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support
  2019-04-10  6:41     ` Biju Das
@ 2019-04-10  8:09       ` nobuhiro1.iwamatsu at toshiba.co.jp
  2019-04-10  8:16         ` Pavel Machek
  0 siblings, 1 reply; 16+ messages in thread
From: nobuhiro1.iwamatsu at toshiba.co.jp @ 2019-04-10  8:09 UTC (permalink / raw)
  To: cip-dev

Hi, Biju.

> This patch "arm64: dts: renesas: Initial device tree for r8a774c0" have
> "arch/arm64/boot/dts/renesas/r8a774c0.dtsi"
>
> https://lists.cip-project.org/pipermail/cip-dev/2019-March/001917.ht
> ml
> 
> Do you want me to send it again?

You do not need to send.
This patch has been reviewed and committed to linux-4.19.y-cip branch by me.

Best regards,
  Nobuhiro



> -----Original Message-----
> From: cip-dev-bounces at lists.cip-project.org
> [mailto:cip-dev-bounces at lists.cip-project.org] On Behalf Of Biju Das
> Sent: Wednesday, April 10, 2019 3:42 PM
> To: Pavel Machek <pavel@denx.de>
> Cc: cip-dev at lists.cip-project.org
> Subject: Re: [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0:
> Add I2C and IIC-DVFS support
> 
> Hi Pavel,
> 
> Thanks for the feedback.
> 
> > Subject: Re: [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas:
> > r8a774c0: Add I2C and IIC-DVFS support
> >
> > On Wed 2019-03-27 12:13:06, Biju Das wrote:
> > > From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > >
> > > Add the I2C[0-7] and IIC Bus Interface for DVFS (IIC for DVFS)
> > > devices nodes to the r8a774c0 device tree.
> >
> > This fails for me, because arch/arm64/boot/dts/renesas/r8a774c0.dtsi
> > does not yet exist.
> 
> This patch "arm64: dts: renesas: Initial device tree for r8a774c0" have
> "arch/arm64/boot/dts/renesas/r8a774c0.dtsi"
> 
> https://lists.cip-project.org/pipermail/cip-dev/2019-March/001917.ht
> ml
> 
> Do you want me to send it again?
> 
> Regards,
> Biju
> 
> _______________________________________________
> cip-dev mailing list
> cip-dev at lists.cip-project.org
> https://lists.cip-project.org/mailman/listinfo/cip-dev

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

* [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support
  2019-04-10  8:09       ` nobuhiro1.iwamatsu at toshiba.co.jp
@ 2019-04-10  8:16         ` Pavel Machek
  2019-04-10 21:55           ` nobuhiro1.iwamatsu at toshiba.co.jp
  0 siblings, 1 reply; 16+ messages in thread
From: Pavel Machek @ 2019-04-10  8:16 UTC (permalink / raw)
  To: cip-dev

On Wed 2019-04-10 08:09:14, nobuhiro1.iwamatsu at toshiba.co.jp wrote:
> Hi, Biju.
> 
> > This patch "arm64: dts: renesas: Initial device tree for r8a774c0" have
> > "arch/arm64/boot/dts/renesas/r8a774c0.dtsi"
> >
> > https://lists.cip-project.org/pipermail/cip-dev/2019-March/001917.ht
> > ml
> > 
> > Do you want me to send it again?
> 
> You do not need to send.
> This patch has been reviewed and committed to linux-4.19.y-cip
> branch by me.

Thank you!

But I don't see anything new at
https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git/
. Did you forget to push or is it still processing?

Best regards,

								Pavel
-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://lists.cip-project.org/pipermail/cip-dev/attachments/20190410/c00964e6/attachment.sig>

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

* [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support
  2019-04-10  8:16         ` Pavel Machek
@ 2019-04-10 21:55           ` nobuhiro1.iwamatsu at toshiba.co.jp
  0 siblings, 0 replies; 16+ messages in thread
From: nobuhiro1.iwamatsu at toshiba.co.jp @ 2019-04-10 21:55 UTC (permalink / raw)
  To: cip-dev

Hi,

> -----Original Message-----
> From: Pavel Machek [mailto:pavel at denx.de]
> Sent: Wednesday, April 10, 2019 5:17 PM
> To: iwamatsu nobuhiro(?? ?? ????????)
> <nobuhiro1.iwamatsu@toshiba.co.jp>
> Cc: biju.das at bp.renesas.com; pavel at denx.de;
> cip-dev at lists.cip-project.org
> Subject: Re: [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0:
> Add I2C and IIC-DVFS support
> 
> On Wed 2019-04-10 08:09:14, nobuhiro1.iwamatsu at toshiba.co.jp wrote:
> > Hi, Biju.
> >
> > > This patch "arm64: dts: renesas: Initial device tree for r8a774c0"
> > > have "arch/arm64/boot/dts/renesas/r8a774c0.dtsi"
> > >
> > >
> https://lists.cip-project.org/pipermail/cip-dev/2019-March/001917.ht
> > > ml
> > >
> > > Do you want me to send it again?
> >
> > You do not need to send.
> > This patch has been reviewed and committed to linux-4.19.y-cip branch
> > by me.
> 
> Thank you!
> 
> But I don't see anything new at
> https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip.git/
> . Did you forget to push or is it still processing?
> 

I was pushing to gitlab. I pushed to kernel.org about 1 hours ago.
Sorry for this.

Best regards,
  Nobuhiro

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

* [cip-dev] [PATCH 4.19.y 1/9] i2c: sh_mobile: document support for r8a77990 (R-Car E3)
  2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 1/9] i2c: sh_mobile: document support for r8a77990 (R-Car E3) Biju Das
@ 2019-04-12  7:54   ` Pavel Machek
  0 siblings, 0 replies; 16+ messages in thread
From: Pavel Machek @ 2019-04-12  7:54 UTC (permalink / raw)
  To: cip-dev

On Wed 2019-03-27 12:13:01, Biju Das wrote:
> From: Simon Horman <horms+renesas@verge.net.au>
> 
> Document support for the IIC code for the r8a77990 (R-Car E3).
> 
> It is not considered compatible with existing fallback bindings
> due to the documented absence of automatic transmission registers.
> 
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
> (cherry picked from commit fca34b910ddc556c51294d58287f7c33863dddef)
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>

Thanks, I applied the series.
								Pavel
								
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://lists.cip-project.org/pipermail/cip-dev/attachments/20190412/7f63e93c/attachment.sig>

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

end of thread, other threads:[~2019-04-12  7:54 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-27 12:13 [cip-dev] [PATCH 4.19.y 0/9] Add i2c/msiof support Biju Das
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 1/9] i2c: sh_mobile: document support for r8a77990 (R-Car E3) Biju Das
2019-04-12  7:54   ` Pavel Machek
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 2/9] dt-bindings: i2c: sh_mobile: Add r8a774c0 support Biju Das
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 3/9] i2c: sh_mobile: add support for r8a77990 (R-Car E3) Biju Das
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 4/9] i2c: sh_mobile: Add support for r8a774c0 (RZ/G2E) Biju Das
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 5/9] dt-bindings: i2c: rcar: Add r8a774c0 support Biju Das
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 6/9] arm64: dts: renesas: r8a774c0: Add I2C and IIC-DVFS support Biju Das
2019-04-09 20:54   ` Pavel Machek
2019-04-10  6:41     ` Biju Das
2019-04-10  8:09       ` nobuhiro1.iwamatsu at toshiba.co.jp
2019-04-10  8:16         ` Pavel Machek
2019-04-10 21:55           ` nobuhiro1.iwamatsu at toshiba.co.jp
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 7/9] spi: sh-msiof: Add r8a774a1 support Biju Das
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 8/9] spi: sh-msiof: Add r8a774c0 support Biju Das
2019-03-27 12:13 ` [cip-dev] [PATCH 4.19.y 9/9] arm64: dts: renesas: r8a774c0: Add MSIOF nodes Biju Das

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