All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Add VIN support to RZ/G2M
@ 2018-09-10 14:31 Biju Das
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
                   ` (4 more replies)
  0 siblings, 5 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

This patch series aims to add VIN support for RZ/G2M SoC.
RZ/G2M SoC is similar to R-Car Gen3 M3-W SoC.

This patchset is based on media_tree git and 
renesas-devel-20180906-v4.19-rc2.

Biju Das (5):
  media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  media: rcar-csi2: Enable support for r8a774a1
  media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  media: rcar-vin: Enable support for r8a774a1
  arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes

 .../devicetree/bindings/media/rcar_vin.txt         |   5 +-
 .../bindings/media/renesas,rcar-csi2.txt           |   5 +-
 arch/arm64/boot/dts/renesas/r8a774a1.dtsi          | 367 +++++++++++++++++++++
 drivers/media/platform/rcar-vin/rcar-core.c        |   4 +
 drivers/media/platform/rcar-vin/rcar-csi2.c        |   4 +
 5 files changed, 381 insertions(+), 4 deletions(-)

-- 
2.7.4

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

* [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-09-10 14:31 [PATCH 0/5] Add VIN support to RZ/G2M Biju Das
@ 2018-09-10 14:31 ` Biju Das
  2018-09-17 11:04     ` Niklas Söderlund
                     ` (5 more replies)
  2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
                   ` (3 subsequent siblings)
  4 siblings, 6 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Document RZ/G2M (R8A774A1) SoC bindings.

The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
index 2d385b6..12fe685 100644
--- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
+++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
@@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
 ------------------------
 
 The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
-Renesas R-Car family of devices. It is used in conjunction with the
-R-Car VIN module, which provides the video capture capabilities.
+Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
+with the R-Car VIN module, which provides the video capture capabilities.
 
 Mandatory properties
 --------------------
  - compatible: Must be one or more of the following
+   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
    - "renesas,r8a7795-csi2" for the R8A7795 device.
    - "renesas,r8a7796-csi2" for the R8A7796 device.
    - "renesas,r8a77965-csi2" for the R8A77965 device.
-- 
2.7.4

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

* [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-09-10 14:31 [PATCH 0/5] Add VIN support to RZ/G2M Biju Das
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
@ 2018-09-10 14:31 ` Biju Das
  2018-09-17 11:05     ` Niklas Söderlund
                     ` (4 more replies)
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
                   ` (2 subsequent siblings)
  4 siblings, 5 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
The CSI-2 module of RZ/G2M is similar to R-Car M3-W.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 drivers/media/platform/rcar-vin/rcar-csi2.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c
index daef72d..65c7efb 100644
--- a/drivers/media/platform/rcar-vin/rcar-csi2.c
+++ b/drivers/media/platform/rcar-vin/rcar-csi2.c
@@ -953,6 +953,10 @@ static const struct rcar_csi2_info rcar_csi2_info_r8a77970 = {
 
 static const struct of_device_id rcar_csi2_of_table[] = {
 	{
+		.compatible = "renesas,r8a774a1-csi2",
+		.data = &rcar_csi2_info_r8a7796,
+	},
+	{
 		.compatible = "renesas,r8a7795-csi2",
 		.data = &rcar_csi2_info_r8a7795,
 	},
-- 
2.7.4

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

* [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-09-10 14:31 [PATCH 0/5] Add VIN support to RZ/G2M Biju Das
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
  2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
@ 2018-09-10 14:31 ` Biju Das
  2018-09-17 11:07     ` Niklas Söderlund
                     ` (5 more replies)
  2018-09-10 14:31 ` [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1 Biju Das
  2018-09-10 14:31   ` Biju Das
  4 siblings, 6 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Document RZ/G2M (R8A774A1) SoC bindings.

The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).

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

diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
index 2f42005..8c81689 100644
--- a/Documentation/devicetree/bindings/media/rcar_vin.txt
+++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
@@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
  - compatible: Must be one or more of the following
    - "renesas,vin-r8a7743" for the R8A7743 device
    - "renesas,vin-r8a7745" for the R8A7745 device
+   - "renesas,vin-r8a774a1" for the R8A774A1 device
    - "renesas,vin-r8a7778" for the R8A7778 device
    - "renesas,vin-r8a7779" for the R8A7779 device
    - "renesas,vin-r8a7790" for the R8A7790 device
@@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
     - data-enable-active: polarity of CLKENB signal, see [1] for
       description. Default is active high.
 
-The per-board settings Gen3 platforms:
+The per-board settings Gen3 and RZ/G2 platforms:
 
-Gen3 platforms can support both a single connected parallel input source
+Gen3 and RZ/G2 platforms can support both a single connected parallel input source
 from external SoC pins (port@0) and/or multiple parallel input sources
 from local SoC CSI-2 receivers (port@1) depending on SoC.
 
-- 
2.7.4

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

* [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
  2018-09-10 14:31 [PATCH 0/5] Add VIN support to RZ/G2M Biju Das
                   ` (2 preceding siblings ...)
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
@ 2018-09-10 14:31 ` Biju Das
  2018-09-17 11:08     ` Niklas Söderlund
                     ` (4 more replies)
  2018-09-10 14:31   ` Biju Das
  4 siblings, 5 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
The VIN module of RZ/G2M is similar to R-Car M3-W.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 drivers/media/platform/rcar-vin/rcar-core.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
index d3072e1..c0c84d1 100644
--- a/drivers/media/platform/rcar-vin/rcar-core.c
+++ b/drivers/media/platform/rcar-vin/rcar-core.c
@@ -995,6 +995,10 @@ static const struct rvin_info rcar_info_r8a77970 = {
 
 static const struct of_device_id rvin_of_id_table[] = {
 	{
+		.compatible = "renesas,vin-r8a774a1",
+		.data = &rcar_info_r8a7796,
+	},
+	{
 		.compatible = "renesas,vin-r8a7778",
 		.data = &rcar_info_m1,
 	},
-- 
2.7.4

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

* [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
  2018-09-10 14:31 [PATCH 0/5] Add VIN support to RZ/G2M Biju Das
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
@ 2018-09-10 14:31   ` Biju Das
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
                     ` (2 subsequent siblings)
  4 siblings, 0 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon
  Cc: Fabrizio Castro, devicetree, Chris Paterson, Geert Uytterhoeven,
	Magnus Damm, Biju Das, linux-renesas-soc, Simon Horman,
	linux-arm-kernel

Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r8a774a1.dtsi | 367 ++++++++++++++++++++++++++++++
 1 file changed, 367 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
index d9005cb..43db993 100644
--- a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
@@ -1127,6 +1127,262 @@
 			status = "disabled";
 		};
 
+		vin0: video@e6ef0000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef0000 0 0x1000>;
+			interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 811>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 811>;
+			renesas,id = <0>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin0csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin0>;
+					};
+					vin0csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin0>;
+					};
+				};
+			};
+		};
+
+		vin1: video@e6ef1000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef1000 0 0x1000>;
+			interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 810>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 810>;
+			renesas,id = <1>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin1csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin1>;
+					};
+					vin1csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin1>;
+					};
+				};
+			};
+		};
+
+		vin2: video@e6ef2000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef2000 0 0x1000>;
+			interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 809>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 809>;
+			renesas,id = <2>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin2csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin2>;
+					};
+					vin2csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin2>;
+					};
+				};
+			};
+		};
+
+		vin3: video@e6ef3000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef3000 0 0x1000>;
+			interrupts = <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 808>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 808>;
+			renesas,id = <3>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin3csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin3>;
+					};
+					vin3csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin3>;
+					};
+				};
+			};
+		};
+
+		vin4: video@e6ef4000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef4000 0 0x1000>;
+			interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 807>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 807>;
+			renesas,id = <4>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin4csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin4>;
+					};
+					vin4csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin4>;
+					};
+				};
+			};
+		};
+
+		vin5: video@e6ef5000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef5000 0 0x1000>;
+			interrupts = <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 806>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 806>;
+			renesas,id = <5>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin5csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin5>;
+					};
+					vin5csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin5>;
+					};
+				};
+			};
+		};
+
+		vin6: video@e6ef6000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef6000 0 0x1000>;
+			interrupts = <GIC_SPI 176 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 805>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 805>;
+			renesas,id = <6>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin6csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin6>;
+					};
+					vin6csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin6>;
+					};
+				};
+			};
+		};
+
+		vin7: video@e6ef7000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef7000 0 0x1000>;
+			interrupts = <GIC_SPI 171 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 804>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 804>;
+			renesas,id = <7>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin7csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin7>;
+					};
+					vin7csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin7>;
+					};
+				};
+			};
+		};
+
 		rcar_sound: sound@ec500000 {
 			/*
 			 * #sound-dai-cells is required
@@ -1614,6 +1870,117 @@
 			iommus = <&ipmmu_vc0 19>;
 		};
 
+		csi20: csi2@fea80000 {
+			compatible = "renesas,r8a774a1-csi2";
+			reg = <0 0xfea80000 0 0x10000>;
+			interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 714>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 714>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					csi20vin0: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&vin0csi20>;
+					};
+					csi20vin1: endpoint@1 {
+						reg = <1>;
+						remote-endpoint = <&vin1csi20>;
+					};
+					csi20vin2: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&vin2csi20>;
+					};
+					csi20vin3: endpoint@3 {
+						reg = <3>;
+						remote-endpoint = <&vin3csi20>;
+					};
+					csi20vin4: endpoint@4 {
+						reg = <4>;
+						remote-endpoint = <&vin4csi20>;
+					};
+					csi20vin5: endpoint@5 {
+						reg = <5>;
+						remote-endpoint = <&vin5csi20>;
+					};
+					csi20vin6: endpoint@6 {
+						reg = <6>;
+						remote-endpoint = <&vin6csi20>;
+					};
+					csi20vin7: endpoint@7 {
+						reg = <7>;
+						remote-endpoint = <&vin7csi20>;
+					};
+				};
+			};
+		};
+
+		csi40: csi2@feaa0000 {
+			compatible = "renesas,r8a774a1-csi2";
+			reg = <0 0xfeaa0000 0 0x10000>;
+			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 716>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 716>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					csi40vin0: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&vin0csi40>;
+					};
+					csi40vin1: endpoint@1 {
+						reg = <1>;
+						remote-endpoint = <&vin1csi40>;
+					};
+					csi40vin2: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&vin2csi40>;
+					};
+					csi40vin3: endpoint@3 {
+						reg = <3>;
+						remote-endpoint = <&vin3csi40>;
+					};
+					csi40vin4: endpoint@4 {
+						reg = <4>;
+						remote-endpoint = <&vin4csi40>;
+					};
+					csi40vin5: endpoint@5 {
+						reg = <5>;
+						remote-endpoint = <&vin5csi40>;
+					};
+					csi40vin6: endpoint@6 {
+						reg = <6>;
+						remote-endpoint = <&vin6csi40>;
+					};
+					csi40vin7: endpoint@7 {
+						reg = <7>;
+						remote-endpoint = <&vin7csi40>;
+					};
+				};
+
+			};
+		};
+
 		prr: chipid@fff00044 {
 			compatible = "renesas,prr";
 			reg = <0 0xfff00044 0 4>;
-- 
2.7.4

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

* [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
@ 2018-09-10 14:31   ` Biju Das
  0 siblings, 0 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon
  Cc: Biju Das, Simon Horman, Magnus Damm, linux-renesas-soc,
	devicetree, linux-arm-kernel, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r8a774a1.dtsi | 367 ++++++++++++++++++++++++++++++
 1 file changed, 367 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
index d9005cb..43db993 100644
--- a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
@@ -1127,6 +1127,262 @@
 			status = "disabled";
 		};
 
+		vin0: video@e6ef0000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef0000 0 0x1000>;
+			interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 811>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 811>;
+			renesas,id = <0>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin0csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin0>;
+					};
+					vin0csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin0>;
+					};
+				};
+			};
+		};
+
+		vin1: video@e6ef1000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef1000 0 0x1000>;
+			interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 810>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 810>;
+			renesas,id = <1>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin1csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin1>;
+					};
+					vin1csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin1>;
+					};
+				};
+			};
+		};
+
+		vin2: video@e6ef2000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef2000 0 0x1000>;
+			interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 809>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 809>;
+			renesas,id = <2>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin2csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin2>;
+					};
+					vin2csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin2>;
+					};
+				};
+			};
+		};
+
+		vin3: video@e6ef3000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef3000 0 0x1000>;
+			interrupts = <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 808>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 808>;
+			renesas,id = <3>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin3csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin3>;
+					};
+					vin3csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin3>;
+					};
+				};
+			};
+		};
+
+		vin4: video@e6ef4000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef4000 0 0x1000>;
+			interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 807>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 807>;
+			renesas,id = <4>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin4csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin4>;
+					};
+					vin4csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin4>;
+					};
+				};
+			};
+		};
+
+		vin5: video@e6ef5000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef5000 0 0x1000>;
+			interrupts = <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 806>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 806>;
+			renesas,id = <5>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin5csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin5>;
+					};
+					vin5csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin5>;
+					};
+				};
+			};
+		};
+
+		vin6: video@e6ef6000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef6000 0 0x1000>;
+			interrupts = <GIC_SPI 176 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 805>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 805>;
+			renesas,id = <6>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin6csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin6>;
+					};
+					vin6csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin6>;
+					};
+				};
+			};
+		};
+
+		vin7: video@e6ef7000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef7000 0 0x1000>;
+			interrupts = <GIC_SPI 171 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 804>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 804>;
+			renesas,id = <7>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin7csi20: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin7>;
+					};
+					vin7csi40: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin7>;
+					};
+				};
+			};
+		};
+
 		rcar_sound: sound@ec500000 {
 			/*
 			 * #sound-dai-cells is required
@@ -1614,6 +1870,117 @@
 			iommus = <&ipmmu_vc0 19>;
 		};
 
+		csi20: csi2@fea80000 {
+			compatible = "renesas,r8a774a1-csi2";
+			reg = <0 0xfea80000 0 0x10000>;
+			interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 714>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 714>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					csi20vin0: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&vin0csi20>;
+					};
+					csi20vin1: endpoint@1 {
+						reg = <1>;
+						remote-endpoint = <&vin1csi20>;
+					};
+					csi20vin2: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&vin2csi20>;
+					};
+					csi20vin3: endpoint@3 {
+						reg = <3>;
+						remote-endpoint = <&vin3csi20>;
+					};
+					csi20vin4: endpoint@4 {
+						reg = <4>;
+						remote-endpoint = <&vin4csi20>;
+					};
+					csi20vin5: endpoint@5 {
+						reg = <5>;
+						remote-endpoint = <&vin5csi20>;
+					};
+					csi20vin6: endpoint@6 {
+						reg = <6>;
+						remote-endpoint = <&vin6csi20>;
+					};
+					csi20vin7: endpoint@7 {
+						reg = <7>;
+						remote-endpoint = <&vin7csi20>;
+					};
+				};
+			};
+		};
+
+		csi40: csi2@feaa0000 {
+			compatible = "renesas,r8a774a1-csi2";
+			reg = <0 0xfeaa0000 0 0x10000>;
+			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 716>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 716>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					csi40vin0: endpoint@0 {
+						reg = <0>;
+						remote-endpoint = <&vin0csi40>;
+					};
+					csi40vin1: endpoint@1 {
+						reg = <1>;
+						remote-endpoint = <&vin1csi40>;
+					};
+					csi40vin2: endpoint@2 {
+						reg = <2>;
+						remote-endpoint = <&vin2csi40>;
+					};
+					csi40vin3: endpoint@3 {
+						reg = <3>;
+						remote-endpoint = <&vin3csi40>;
+					};
+					csi40vin4: endpoint@4 {
+						reg = <4>;
+						remote-endpoint = <&vin4csi40>;
+					};
+					csi40vin5: endpoint@5 {
+						reg = <5>;
+						remote-endpoint = <&vin5csi40>;
+					};
+					csi40vin6: endpoint@6 {
+						reg = <6>;
+						remote-endpoint = <&vin6csi40>;
+					};
+					csi40vin7: endpoint@7 {
+						reg = <7>;
+						remote-endpoint = <&vin7csi40>;
+					};
+				};
+
+			};
+		};
+
 		prr: chipid@fff00044 {
 			compatible = "renesas,prr";
 			reg = <0 0xfff00044 0 4>;
-- 
2.7.4

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

* [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
@ 2018-09-10 14:31   ` Biju Das
  0 siblings, 0 replies; 68+ messages in thread
From: Biju Das @ 2018-09-10 14:31 UTC (permalink / raw)
  To: linux-arm-kernel

Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 arch/arm64/boot/dts/renesas/r8a774a1.dtsi | 367 ++++++++++++++++++++++++++++++
 1 file changed, 367 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
index d9005cb..43db993 100644
--- a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
@@ -1127,6 +1127,262 @@
 			status = "disabled";
 		};
 
+		vin0: video at e6ef0000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef0000 0 0x1000>;
+			interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 811>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 811>;
+			renesas,id = <0>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin0csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin0>;
+					};
+					vin0csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin0>;
+					};
+				};
+			};
+		};
+
+		vin1: video at e6ef1000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef1000 0 0x1000>;
+			interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 810>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 810>;
+			renesas,id = <1>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin1csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin1>;
+					};
+					vin1csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin1>;
+					};
+				};
+			};
+		};
+
+		vin2: video at e6ef2000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef2000 0 0x1000>;
+			interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 809>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 809>;
+			renesas,id = <2>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin2csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin2>;
+					};
+					vin2csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin2>;
+					};
+				};
+			};
+		};
+
+		vin3: video at e6ef3000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef3000 0 0x1000>;
+			interrupts = <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 808>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 808>;
+			renesas,id = <3>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin3csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin3>;
+					};
+					vin3csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin3>;
+					};
+				};
+			};
+		};
+
+		vin4: video at e6ef4000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef4000 0 0x1000>;
+			interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 807>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 807>;
+			renesas,id = <4>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin4csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin4>;
+					};
+					vin4csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin4>;
+					};
+				};
+			};
+		};
+
+		vin5: video at e6ef5000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef5000 0 0x1000>;
+			interrupts = <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 806>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 806>;
+			renesas,id = <5>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin5csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin5>;
+					};
+					vin5csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin5>;
+					};
+				};
+			};
+		};
+
+		vin6: video at e6ef6000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef6000 0 0x1000>;
+			interrupts = <GIC_SPI 176 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 805>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 805>;
+			renesas,id = <6>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin6csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin6>;
+					};
+					vin6csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin6>;
+					};
+				};
+			};
+		};
+
+		vin7: video at e6ef7000 {
+			compatible = "renesas,vin-r8a774a1";
+			reg = <0 0xe6ef7000 0 0x1000>;
+			interrupts = <GIC_SPI 171 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 804>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 804>;
+			renesas,id = <7>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					vin7csi20: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&csi20vin7>;
+					};
+					vin7csi40: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&csi40vin7>;
+					};
+				};
+			};
+		};
+
 		rcar_sound: sound at ec500000 {
 			/*
 			 * #sound-dai-cells is required
@@ -1614,6 +1870,117 @@
 			iommus = <&ipmmu_vc0 19>;
 		};
 
+		csi20: csi2 at fea80000 {
+			compatible = "renesas,r8a774a1-csi2";
+			reg = <0 0xfea80000 0 0x10000>;
+			interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 714>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 714>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					csi20vin0: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&vin0csi20>;
+					};
+					csi20vin1: endpoint at 1 {
+						reg = <1>;
+						remote-endpoint = <&vin1csi20>;
+					};
+					csi20vin2: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&vin2csi20>;
+					};
+					csi20vin3: endpoint at 3 {
+						reg = <3>;
+						remote-endpoint = <&vin3csi20>;
+					};
+					csi20vin4: endpoint at 4 {
+						reg = <4>;
+						remote-endpoint = <&vin4csi20>;
+					};
+					csi20vin5: endpoint at 5 {
+						reg = <5>;
+						remote-endpoint = <&vin5csi20>;
+					};
+					csi20vin6: endpoint at 6 {
+						reg = <6>;
+						remote-endpoint = <&vin6csi20>;
+					};
+					csi20vin7: endpoint at 7 {
+						reg = <7>;
+						remote-endpoint = <&vin7csi20>;
+					};
+				};
+			};
+		};
+
+		csi40: csi2 at feaa0000 {
+			compatible = "renesas,r8a774a1-csi2";
+			reg = <0 0xfeaa0000 0 0x10000>;
+			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 716>;
+			power-domains = <&sysc 32>;
+			resets = <&cpg 716>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port at 1 {
+					#address-cells = <1>;
+					#size-cells = <0>;
+
+					reg = <1>;
+
+					csi40vin0: endpoint at 0 {
+						reg = <0>;
+						remote-endpoint = <&vin0csi40>;
+					};
+					csi40vin1: endpoint at 1 {
+						reg = <1>;
+						remote-endpoint = <&vin1csi40>;
+					};
+					csi40vin2: endpoint at 2 {
+						reg = <2>;
+						remote-endpoint = <&vin2csi40>;
+					};
+					csi40vin3: endpoint at 3 {
+						reg = <3>;
+						remote-endpoint = <&vin3csi40>;
+					};
+					csi40vin4: endpoint at 4 {
+						reg = <4>;
+						remote-endpoint = <&vin4csi40>;
+					};
+					csi40vin5: endpoint at 5 {
+						reg = <5>;
+						remote-endpoint = <&vin5csi40>;
+					};
+					csi40vin6: endpoint at 6 {
+						reg = <6>;
+						remote-endpoint = <&vin6csi40>;
+					};
+					csi40vin7: endpoint at 7 {
+						reg = <7>;
+						remote-endpoint = <&vin7csi40>;
+					};
+				};
+
+			};
+		};
+
 		prr: chipid at fff00044 {
 			compatible = "renesas,prr";
 			reg = <0 0xfff00044 0 4>;
-- 
2.7.4

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

* Re: [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
  2018-09-10 14:31   ` Biju Das
  (?)
@ 2018-09-11 13:53     ` Simon Horman
  -1 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-09-11 13:53 UTC (permalink / raw)
  To: Biju Das
  Cc: Mark Rutland, devicetree, Chris Paterson, Magnus Damm,
	Geert Uytterhoeven, Catalin Marinas, Will Deacon,
	linux-renesas-soc, Rob Herring, Fabrizio Castro,
	linux-arm-kernel

On Mon, Sep 10, 2018 at 03:31:18PM +0100, Biju Das wrote:
> Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Thanks, I would value a review of this entire series before I apply this
patch.

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

* Re: [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
@ 2018-09-11 13:53     ` Simon Horman
  0 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-09-11 13:53 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon,
	Magnus Damm, linux-renesas-soc, devicetree, linux-arm-kernel,
	Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

On Mon, Sep 10, 2018 at 03:31:18PM +0100, Biju Das wrote:
> Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Thanks, I would value a review of this entire series before I apply this
patch.

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

* [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
@ 2018-09-11 13:53     ` Simon Horman
  0 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-09-11 13:53 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 10, 2018 at 03:31:18PM +0100, Biju Das wrote:
> Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Thanks, I would value a review of this entire series before I apply this
patch.

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
@ 2018-09-17 11:04     ` Niklas Söderlund
  2018-11-08 12:50     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:04 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Rob Herring, Mark Rutland, linux-media,
	linux-renesas-soc, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro

Hi Biju,

Thanks for your work.

On 2018-09-10 15:31:14 +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas S�derlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
>  
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
>  
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
@ 2018-09-17 11:04     ` Niklas Söderlund
  0 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:04 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Rob Herring, Mark Rutland, linux-media,
	linux-renesas-soc, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro

Hi Biju,

Thanks for your work.

On 2018-09-10 15:31:14 +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
>  
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
>  
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas Söderlund

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

* Re: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
@ 2018-09-17 11:05     ` Niklas Söderlund
  2018-11-08 12:51   ` Fabrizio Castro
                       ` (3 subsequent siblings)
  4 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:05 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Hi Biju,

Thanks for your work.

On 2018-09-10 15:31:15 +0100, Biju Das wrote:
> Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
> The CSI-2 module of RZ/G2M is similar to R-Car M3-W.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  drivers/media/platform/rcar-vin/rcar-csi2.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c
> index daef72d..65c7efb 100644
> --- a/drivers/media/platform/rcar-vin/rcar-csi2.c
> +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c
> @@ -953,6 +953,10 @@ static const struct rcar_csi2_info rcar_csi2_info_r8a77970 = {
>  
>  static const struct of_device_id rcar_csi2_of_table[] = {
>  	{
> +		.compatible = "renesas,r8a774a1-csi2",
> +		.data = &rcar_csi2_info_r8a7796,
> +	},
> +	{
>  		.compatible = "renesas,r8a7795-csi2",
>  		.data = &rcar_csi2_info_r8a7795,
>  	},
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas Söderlund

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

* Re: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
@ 2018-09-17 11:05     ` Niklas Söderlund
  0 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:05 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Hi Biju,

Thanks for your work.

On 2018-09-10 15:31:15 +0100, Biju Das wrote:
> Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
> The CSI-2 module of RZ/G2M is similar to R-Car M3-W.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas S�derlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  drivers/media/platform/rcar-vin/rcar-csi2.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c
> index daef72d..65c7efb 100644
> --- a/drivers/media/platform/rcar-vin/rcar-csi2.c
> +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c
> @@ -953,6 +953,10 @@ static const struct rcar_csi2_info rcar_csi2_info_r8a77970 = {
>  
>  static const struct of_device_id rcar_csi2_of_table[] = {
>  	{
> +		.compatible = "renesas,r8a774a1-csi2",
> +		.data = &rcar_csi2_info_r8a7796,
> +	},
> +	{
>  		.compatible = "renesas,r8a7795-csi2",
>  		.data = &rcar_csi2_info_r8a7795,
>  	},
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
@ 2018-09-17 11:07     ` Niklas Söderlund
  2018-11-08 12:52     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:07 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Rob Herring, Mark Rutland, linux-media,
	linux-renesas-soc, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro

Hi Biju,

Thanks for your patch.

On 2018-09-10 15:31:16 +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas S�derlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
>  
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
>  
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
>  
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
@ 2018-09-17 11:07     ` Niklas Söderlund
  0 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:07 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Rob Herring, Mark Rutland, linux-media,
	linux-renesas-soc, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro

Hi Biju,

Thanks for your patch.

On 2018-09-10 15:31:16 +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
>  
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
>  
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
>  
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas Söderlund

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

* Re: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1 Biju Das
@ 2018-09-17 11:08     ` Niklas Söderlund
  2018-11-08 12:53   ` Fabrizio Castro
                       ` (3 subsequent siblings)
  4 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:08 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Hi Biju,

Thanks for your work.

On 2018-09-10 15:31:17 +0100, Biju Das wrote:
> Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
> The VIN module of RZ/G2M is similar to R-Car M3-W.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  drivers/media/platform/rcar-vin/rcar-core.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
> index d3072e1..c0c84d1 100644
> --- a/drivers/media/platform/rcar-vin/rcar-core.c
> +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> @@ -995,6 +995,10 @@ static const struct rvin_info rcar_info_r8a77970 = {
>  
>  static const struct of_device_id rvin_of_id_table[] = {
>  	{
> +		.compatible = "renesas,vin-r8a774a1",
> +		.data = &rcar_info_r8a7796,
> +	},
> +	{
>  		.compatible = "renesas,vin-r8a7778",
>  		.data = &rcar_info_m1,
>  	},
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas Söderlund

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

* Re: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
@ 2018-09-17 11:08     ` Niklas Söderlund
  0 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2018-09-17 11:08 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Hi Biju,

Thanks for your work.

On 2018-09-10 15:31:17 +0100, Biju Das wrote:
> Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
> The VIN module of RZ/G2M is similar to R-Car M3-W.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Acked-by: Niklas S�derlund <niklas.soderlund+renesas@ragnatech.se>

> ---
>  drivers/media/platform/rcar-vin/rcar-core.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
> index d3072e1..c0c84d1 100644
> --- a/drivers/media/platform/rcar-vin/rcar-core.c
> +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> @@ -995,6 +995,10 @@ static const struct rvin_info rcar_info_r8a77970 = {
>  
>  static const struct of_device_id rvin_of_id_table[] = {
>  	{
> +		.compatible = "renesas,vin-r8a774a1",
> +		.data = &rcar_info_r8a7796,
> +	},
> +	{
>  		.compatible = "renesas,vin-r8a7778",
>  		.data = &rcar_info_m1,
>  	},
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
  2018-09-11 13:53     ` Simon Horman
  (?)
@ 2018-10-18 13:17       ` Simon Horman
  -1 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-10-18 13:17 UTC (permalink / raw)
  To: Biju Das
  Cc: Mark Rutland, devicetree, Chris Paterson, Magnus Damm,
	Geert Uytterhoeven, Catalin Marinas, Will Deacon,
	linux-renesas-soc, Rob Herring, Fabrizio Castro,
	linux-arm-kernel

On Tue, Sep 11, 2018 at 03:53:42PM +0200, Simon Horman wrote:
> On Mon, Sep 10, 2018 at 03:31:18PM +0100, Biju Das wrote:
> > Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Thanks, I would value a review of this entire series before I apply this
> patch.

That has now happened, applied for v4.21.

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

* Re: [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
@ 2018-10-18 13:17       ` Simon Horman
  0 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-10-18 13:17 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon,
	Magnus Damm, linux-renesas-soc, devicetree, linux-arm-kernel,
	Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

On Tue, Sep 11, 2018 at 03:53:42PM +0200, Simon Horman wrote:
> On Mon, Sep 10, 2018 at 03:31:18PM +0100, Biju Das wrote:
> > Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Thanks, I would value a review of this entire series before I apply this
> patch.

That has now happened, applied for v4.21.

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

* [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes
@ 2018-10-18 13:17       ` Simon Horman
  0 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-10-18 13:17 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Sep 11, 2018 at 03:53:42PM +0200, Simon Horman wrote:
> On Mon, Sep 10, 2018 at 03:31:18PM +0100, Biju Das wrote:
> > Add VIN and CSI-2 nodes to RZ/G2M SoC dtsi.
> > 
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> 
> Thanks, I would value a review of this entire series before I apply this
> patch.

That has now happened, applied for v4.21.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
@ 2018-11-08 12:50     ` Fabrizio Castro
  2018-11-08 12:50     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 12:50 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Dear All,

Who is the best person to take this patch?

Thanks,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
>
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
>
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
@ 2018-11-08 12:50     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 12:50 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Dear All,

Who is the best person to take this patch?

Thanks,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
>
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
>
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
  2018-09-17 11:05     ` Niklas Söderlund
@ 2018-11-08 12:51   ` Fabrizio Castro
  2018-11-08 14:10     ` Simon Horman
  2018-11-08 14:23   ` Fabrizio Castro
                     ` (2 subsequent siblings)
  4 siblings, 1 reply; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 12:51 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson

Dear All,

Who is the best person to take this patch?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
>
> Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
> The CSI-2 module of RZ/G2M is similar to R-Car M3-W.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  drivers/media/platform/rcar-vin/rcar-csi2.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c
> index daef72d..65c7efb 100644
> --- a/drivers/media/platform/rcar-vin/rcar-csi2.c
> +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c
> @@ -953,6 +953,10 @@ static const struct rcar_csi2_info rcar_csi2_info_r8a77970 = {
>
>  static const struct of_device_id rcar_csi2_of_table[] = {
>  {
> +.compatible = "renesas,r8a774a1-csi2",
> +.data = &rcar_csi2_info_r8a7796,
> +},
> +{
>  .compatible = "renesas,r8a7795-csi2",
>  .data = &rcar_csi2_info_r8a7795,
>  },
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
@ 2018-11-08 12:52     ` Fabrizio Castro
  2018-11-08 12:52     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 12:52 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Dear All,

Who is the best person to take this patch?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
>
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
>
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
>
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
@ 2018-11-08 12:52     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 12:52 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Dear All,

Who is the best person to take this patch?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
>
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
>
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
>
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1 Biju Das
  2018-09-17 11:08     ` Niklas Söderlund
@ 2018-11-08 12:53   ` Fabrizio Castro
  2018-11-08 14:26   ` Simon Horman
                     ` (2 subsequent siblings)
  4 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 12:53 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson

Dear All,

Who is the best person to take this patch?

Cheers,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
>
> Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
> The VIN module of RZ/G2M is similar to R-Car M3-W.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  drivers/media/platform/rcar-vin/rcar-core.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
> index d3072e1..c0c84d1 100644
> --- a/drivers/media/platform/rcar-vin/rcar-core.c
> +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> @@ -995,6 +995,10 @@ static const struct rvin_info rcar_info_r8a77970 = {
>
>  static const struct of_device_id rvin_of_id_table[] = {
>  {
> +.compatible = "renesas,vin-r8a774a1",
> +.data = &rcar_info_r8a7796,
> +},
> +{
>  .compatible = "renesas,vin-r8a7778",
>  .data = &rcar_info_m1,
>  },
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-11-08 12:50     ` Fabrizio Castro
  (?)
@ 2018-11-08 14:08     ` Simon Horman
  2018-11-08 14:19       ` Fabrizio Castro
  -1 siblings, 1 reply; 68+ messages in thread
From: Simon Horman @ 2018-11-08 14:08 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson

On Thu, Nov 08, 2018 at 12:50:22PM +0000, Fabrizio Castro wrote:
> Dear All,
> 
> Who is the best person to take this patch?

I believe this patch is for Mauro.

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
  2018-09-17 11:04     ` Niklas Söderlund
  2018-11-08 12:50     ` Fabrizio Castro
@ 2018-11-08 14:09   ` Simon Horman
  2018-11-08 14:18     ` Fabrizio Castro
                     ` (2 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-11-08 14:09 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Rob Herring, Mark Rutland,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

On Mon, Sep 10, 2018 at 03:31:14PM +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> 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] 68+ messages in thread

* Re: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-11-08 12:51   ` Fabrizio Castro
@ 2018-11-08 14:10     ` Simon Horman
  2018-11-08 14:24       ` Fabrizio Castro
  0 siblings, 1 reply; 68+ messages in thread
From: Simon Horman @ 2018-11-08 14:10 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Biju Das, Mauro Carvalho Chehab, Niklas Söderlund,
	linux-media, linux-renesas-soc, Geert Uytterhoeven,
	Chris Paterson

On Thu, Nov 08, 2018 at 12:51:29PM +0000, Fabrizio Castro wrote:
> Dear All,
> 
> Who is the best person to take this patch?

I believe this is for Mauro.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
@ 2018-11-08 14:18     ` Fabrizio Castro
  2018-11-08 12:50     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:18 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

Does this patch look ok to you?

Thanks,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
>
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
>
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
@ 2018-11-08 14:18     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:18 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

Does this patch look ok to you?

Thanks,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
>
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
>
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-11-08 14:08     ` Simon Horman
@ 2018-11-08 14:19       ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:19 UTC (permalink / raw)
  To: Simon Horman
  Cc: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson

Thank you Simon for getting back to me.

Cheers,
Fab

> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>
> On Thu, Nov 08, 2018 at 12:50:22PM +0000, Fabrizio Castro wrote:
> > Dear All,
> >
> > Who is the best person to take this patch?
>
> I believe this patch is for Mauro.



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* Re: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-11-08 12:52     ` Fabrizio Castro
  (?)
@ 2018-11-08 14:20     ` Simon Horman
  2018-11-08 14:25       ` Fabrizio Castro
  -1 siblings, 1 reply; 68+ messages in thread
From: Simon Horman @ 2018-11-08 14:20 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson

On Thu, Nov 08, 2018 at 12:52:30PM +0000, Fabrizio Castro wrote:
> Dear All,
> 
> Who is the best person to take this patch?

I believe this is for Mauro.

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

* RE: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
  2018-09-17 11:05     ` Niklas Söderlund
  2018-11-08 12:51   ` Fabrizio Castro
@ 2018-11-08 14:23   ` Fabrizio Castro
  2019-01-21 17:18     ` Fabrizio Castro
  2018-11-08 14:25   ` Simon Horman
  2019-03-01 12:11   ` Fabrizio Castro
  4 siblings, 1 reply; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:23 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

Does this patch look ok to you?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
>
> Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
> The CSI-2 module of RZ/G2M is similar to R-Car M3-W.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  drivers/media/platform/rcar-vin/rcar-csi2.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c
> index daef72d..65c7efb 100644
> --- a/drivers/media/platform/rcar-vin/rcar-csi2.c
> +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c
> @@ -953,6 +953,10 @@ static const struct rcar_csi2_info rcar_csi2_info_r8a77970 = {
>
>  static const struct of_device_id rcar_csi2_of_table[] = {
>  {
> +.compatible = "renesas,r8a774a1-csi2",
> +.data = &rcar_csi2_info_r8a7796,
> +},
> +{
>  .compatible = "renesas,r8a7795-csi2",
>  .data = &rcar_csi2_info_r8a7795,
>  },
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-11-08 14:10     ` Simon Horman
@ 2018-11-08 14:24       ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:24 UTC (permalink / raw)
  To: Simon Horman
  Cc: Biju Das, Mauro Carvalho Chehab, Niklas Söderlund,
	linux-media, linux-renesas-soc, Geert Uytterhoeven,
	Chris Paterson

Thank you Simon for getting back to me.

Cheers,
Fab

> Subject: Re: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
>
> On Thu, Nov 08, 2018 at 12:51:29PM +0000, Fabrizio Castro wrote:
> > Dear All,
> >
> > Who is the best person to take this patch?
>
> I believe this is for Mauro.



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* Re: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
                     ` (2 preceding siblings ...)
  2018-11-08 14:23   ` Fabrizio Castro
@ 2018-11-08 14:25   ` Simon Horman
  2019-03-01 12:11   ` Fabrizio Castro
  4 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-11-08 14:25 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Niklas Söderlund, linux-media,
	linux-renesas-soc, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

On Mon, Sep 10, 2018 at 03:31:15PM +0100, Biju Das wrote:
> Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
> The CSI-2 module of RZ/G2M is similar to R-Car M3-W.
> 
> 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] 68+ messages in thread

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
@ 2018-11-08 14:25     ` Fabrizio Castro
  2018-11-08 12:52     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:25 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

Does this patch look ok to you?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
>
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
>
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
>
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
@ 2018-11-08 14:25     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:25 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

Does this patch look ok to you?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
>
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
>
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
>
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
>
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* Re: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
                     ` (2 preceding siblings ...)
  2018-11-08 14:25     ` Fabrizio Castro
@ 2018-11-08 14:25   ` Simon Horman
  2019-03-01 12:12     ` Fabrizio Castro
       [not found]   ` <5b9f3f74.1c69fb81.f4e64.f599@mx.google.com>
  5 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-11-08 14:25 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Rob Herring, Mark Rutland,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

On Mon, Sep 10, 2018 at 03:31:16PM +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> 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] 68+ messages in thread

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-11-08 14:20     ` Simon Horman
@ 2018-11-08 14:25       ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2018-11-08 14:25 UTC (permalink / raw)
  To: Simon Horman
  Cc: Biju Das, Mauro Carvalho Chehab, Rob Herring, Mark Rutland,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson

Thank you Simon for getting back to me.

Cheers,
Fab

> Subject: Re: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
>
> On Thu, Nov 08, 2018 at 12:52:30PM +0000, Fabrizio Castro wrote:
> > Dear All,
> >
> > Who is the best person to take this patch?
>
> I believe this is for Mauro.



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* Re: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1 Biju Das
  2018-09-17 11:08     ` Niklas Söderlund
  2018-11-08 12:53   ` Fabrizio Castro
@ 2018-11-08 14:26   ` Simon Horman
  2018-11-29 15:12   ` Biju Das
  2019-03-01 12:14   ` Fabrizio Castro
  4 siblings, 0 replies; 68+ messages in thread
From: Simon Horman @ 2018-11-08 14:26 UTC (permalink / raw)
  To: Biju Das
  Cc: Mauro Carvalho Chehab, Niklas Söderlund, linux-media,
	linux-renesas-soc, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

On Mon, Sep 10, 2018 at 03:31:17PM +0100, Biju Das wrote:
> Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
> The VIN module of RZ/G2M is similar to R-Car M3-W.
> 
> 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] 68+ messages in thread

* RE: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1 Biju Das
                     ` (2 preceding siblings ...)
  2018-11-08 14:26   ` Simon Horman
@ 2018-11-29 15:12   ` Biju Das
  2019-01-21 17:19     ` Fabrizio Castro
  2019-03-01 12:14   ` Fabrizio Castro
  4 siblings, 1 reply; 68+ messages in thread
From: Biju Das @ 2018-11-29 15:12 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Hello Mauro,

Does this patch look ok to you?

Thanks,
Fab

> -----Original Message-----
> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> To: Mauro Carvalho Chehab <mchehab@kernel.org>
> Cc: Biju Das <biju.das@bp.renesas.com>; Niklas Söderlund
> <niklas.soderlund@ragnatech.se>; linux-media@vger.kernel.org; linux-
> renesas-soc@vger.kernel.org; Simon Horman <horms@verge.net.au>; Geert
> Uytterhoeven <geert+renesas@glider.be>; Chris Paterson
> <Chris.Paterson2@renesas.com>; Fabrizio Castro
> <fabrizio.castro@bp.renesas.com>
> Subject: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
>
> Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
> The VIN module of RZ/G2M is similar to R-Car M3-W.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  drivers/media/platform/rcar-vin/rcar-core.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/media/platform/rcar-vin/rcar-core.c
> b/drivers/media/platform/rcar-vin/rcar-core.c
> index d3072e1..c0c84d1 100644
> --- a/drivers/media/platform/rcar-vin/rcar-core.c
> +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> @@ -995,6 +995,10 @@ static const struct rvin_info rcar_info_r8a77970 = {
>
>  static const struct of_device_id rvin_of_id_table[] = {
>  {
> +.compatible = "renesas,vin-r8a774a1",
> +.data = &rcar_info_r8a7796,
> +},
> +{
>  .compatible = "renesas,vin-r8a7778",
>  .data = &rcar_info_m1,
>  },
> --
> 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-11-08 14:18     ` Fabrizio Castro
@ 2019-01-21 17:17       ` Fabrizio Castro
  -1 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-01-21 17:17 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro

Hello Mauro,

This is a gentle reminder.

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Fabrizio Castro
> Sent: 08 November 2018 14:19
> Subject: RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>
> Hello Mauro,
>
> Does this patch look ok to you?
>
> Thanks,
> Fab
>
> > From: Biju Das <biju.das@bp.renesas.com>
> > Sent: 10 September 2018 15:31
> > Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
> >
> > Document RZ/G2M (R8A774A1) SoC bindings.
> >
> > The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > index 2d385b6..12fe685 100644
> > --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
> >  ------------------------
> >
> >  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> > -Renesas R-Car family of devices. It is used in conjunction with the
> > -R-Car VIN module, which provides the video capture capabilities.
> > +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> > +with the R-Car VIN module, which provides the video capture capabilities.
> >
> >  Mandatory properties
> >  --------------------
> >   - compatible: Must be one or more of the following
> > +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
> >     - "renesas,r8a7795-csi2" for the R8A7795 device.
> >     - "renesas,r8a7796-csi2" for the R8A7796 device.
> >     - "renesas,r8a77965-csi2" for the R8A77965 device.
> > --
> > 2.7.4
>
>
>
>
> Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England &
> Wales under Registered No. 04586709.



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
@ 2019-01-21 17:17       ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-01-21 17:17 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro, Biju Das, Rob Herring, Mark Rutland

Hello Mauro,

This is a gentle reminder.

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Fabrizio Castro
> Sent: 08 November 2018 14:19
> Subject: RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>
> Hello Mauro,
>
> Does this patch look ok to you?
>
> Thanks,
> Fab
>
> > From: Biju Das <biju.das@bp.renesas.com>
> > Sent: 10 September 2018 15:31
> > Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
> >
> > Document RZ/G2M (R8A774A1) SoC bindings.
> >
> > The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > index 2d385b6..12fe685 100644
> > --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> > @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
> >  ------------------------
> >
> >  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> > -Renesas R-Car family of devices. It is used in conjunction with the
> > -R-Car VIN module, which provides the video capture capabilities.
> > +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> > +with the R-Car VIN module, which provides the video capture capabilities.
> >
> >  Mandatory properties
> >  --------------------
> >   - compatible: Must be one or more of the following
> > +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
> >     - "renesas,r8a7795-csi2" for the R8A7795 device.
> >     - "renesas,r8a7796-csi2" for the R8A7796 device.
> >     - "renesas,r8a77965-csi2" for the R8A77965 device.
> > --
> > 2.7.4
>
>
>
>
> Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England &
> Wales under Registered No. 04586709.



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-11-08 14:23   ` Fabrizio Castro
@ 2019-01-21 17:18     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-01-21 17:18 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Fabrizio Castro, Biju Das

Hello Mauro,

This is a gentle reminder.

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Fabrizio Castro
> Sent: 08 November 2018 14:24
> Subject: RE: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
>
> Hello Mauro,
>
> Does this patch look ok to you?
>
> Thanks,
> Fab
>
> > From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> > Sent: 10 September 2018 15:31
> > Subject: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
> >
> > Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
> > The CSI-2 module of RZ/G2M is similar to R-Car M3-W.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  drivers/media/platform/rcar-vin/rcar-csi2.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> >
> > diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c
> > index daef72d..65c7efb 100644
> > --- a/drivers/media/platform/rcar-vin/rcar-csi2.c
> > +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c
> > @@ -953,6 +953,10 @@ static const struct rcar_csi2_info rcar_csi2_info_r8a77970 = {
> >
> >  static const struct of_device_id rcar_csi2_of_table[] = {
> >  {
> > +.compatible = "renesas,r8a774a1-csi2",
> > +.data = &rcar_csi2_info_r8a7796,
> > +},
> > +{
> >  .compatible = "renesas,r8a7795-csi2",
> >  .data = &rcar_csi2_info_r8a7795,
> >  },
> > --
> > 2.7.4
>
>
>
>
> Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England &
> Wales under Registered No. 04586709.



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-11-08 14:25     ` Fabrizio Castro
@ 2019-01-21 17:19       ` Fabrizio Castro
  -1 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-01-21 17:19 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

This is a gentle reminder.

Thanks,
Fab

> From: Fabrizio Castro
> Sent: 08 November 2018 14:26
> Subject: RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
>
> Hello Mauro,
>
> Does this patch look ok to you?
>
> Thanks,
> Fab
>
> > From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> > Sent: 10 September 2018 15:31
> > Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
> >
> > Document RZ/G2M (R8A774A1) SoC bindings.
> >
> > The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> > index 2f42005..8c81689 100644
> > --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> > +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> > @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
> >   - compatible: Must be one or more of the following
> >     - "renesas,vin-r8a7743" for the R8A7743 device
> >     - "renesas,vin-r8a7745" for the R8A7745 device
> > +   - "renesas,vin-r8a774a1" for the R8A774A1 device
> >     - "renesas,vin-r8a7778" for the R8A7778 device
> >     - "renesas,vin-r8a7779" for the R8A7779 device
> >     - "renesas,vin-r8a7790" for the R8A7790 device
> > @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
> >      - data-enable-active: polarity of CLKENB signal, see [1] for
> >        description. Default is active high.
> >
> > -The per-board settings Gen3 platforms:
> > +The per-board settings Gen3 and RZ/G2 platforms:
> >
> > -Gen3 platforms can support both a single connected parallel input source
> > +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
> >  from external SoC pins (port@0) and/or multiple parallel input sources
> >  from local SoC CSI-2 receivers (port@1) depending on SoC.
> >
> > --
> > 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
@ 2019-01-21 17:19       ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-01-21 17:19 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Biju Das, Rob Herring, Mark Rutland

Hello Mauro,

This is a gentle reminder.

Thanks,
Fab

> From: Fabrizio Castro
> Sent: 08 November 2018 14:26
> Subject: RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
>
> Hello Mauro,
>
> Does this patch look ok to you?
>
> Thanks,
> Fab
>
> > From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> > Sent: 10 September 2018 15:31
> > Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
> >
> > Document RZ/G2M (R8A774A1) SoC bindings.
> >
> > The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> > index 2f42005..8c81689 100644
> > --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> > +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> > @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
> >   - compatible: Must be one or more of the following
> >     - "renesas,vin-r8a7743" for the R8A7743 device
> >     - "renesas,vin-r8a7745" for the R8A7745 device
> > +   - "renesas,vin-r8a774a1" for the R8A774A1 device
> >     - "renesas,vin-r8a7778" for the R8A7778 device
> >     - "renesas,vin-r8a7779" for the R8A7779 device
> >     - "renesas,vin-r8a7790" for the R8A7790 device
> > @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
> >      - data-enable-active: polarity of CLKENB signal, see [1] for
> >        description. Default is active high.
> >
> > -The per-board settings Gen3 platforms:
> > +The per-board settings Gen3 and RZ/G2 platforms:
> >
> > -Gen3 platforms can support both a single connected parallel input source
> > +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
> >  from external SoC pins (port@0) and/or multiple parallel input sources
> >  from local SoC CSI-2 receivers (port@1) depending on SoC.
> >
> > --
> > 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
  2018-11-29 15:12   ` Biju Das
@ 2019-01-21 17:19     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-01-21 17:19 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson, Biju Das

Hello Mauro,

This is a gentle reminder.

Thanks,
Fab

> From: Biju Das
> Sent: 29 November 2018 15:13
> Subject: RE: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
>
> Hello Mauro,
>
> Does this patch look ok to you?
>
> Thanks,
> Fab
>
> > -----Original Message-----
> > From: Biju Das <biju.das@bp.renesas.com>
> > Sent: 10 September 2018 15:31
> > To: Mauro Carvalho Chehab <mchehab@kernel.org>
> > Cc: Biju Das <biju.das@bp.renesas.com>; Niklas Söderlund
> > <niklas.soderlund@ragnatech.se>; linux-media@vger.kernel.org; linux-
> > renesas-soc@vger.kernel.org; Simon Horman <horms@verge.net.au>; Geert
> > Uytterhoeven <geert+renesas@glider.be>; Chris Paterson
> > <Chris.Paterson2@renesas.com>; Fabrizio Castro
> > <fabrizio.castro@bp.renesas.com>
> > Subject: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
> >
> > Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
> > The VIN module of RZ/G2M is similar to R-Car M3-W.
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  drivers/media/platform/rcar-vin/rcar-core.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> >
> > diff --git a/drivers/media/platform/rcar-vin/rcar-core.c
> > b/drivers/media/platform/rcar-vin/rcar-core.c
> > index d3072e1..c0c84d1 100644
> > --- a/drivers/media/platform/rcar-vin/rcar-core.c
> > +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> > @@ -995,6 +995,10 @@ static const struct rvin_info rcar_info_r8a77970 = {
> >
> >  static const struct of_device_id rvin_of_id_table[] = {
> >  {
> > +.compatible = "renesas,vin-r8a774a1",
> > +.data = &rcar_info_r8a7796,
> > +},
> > +{
> >  .compatible = "renesas,vin-r8a7778",
> >  .data = &rcar_info_m1,
> >  },
> > --
> > 2.7.4




Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
@ 2019-03-01 12:09     ` Fabrizio Castro
  2018-11-08 12:50     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-03-01 12:09 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

This patch has been around for some time now, do you think you can take it?

Cheers,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
> 
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
> 
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
> 
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> --
> 2.7.4

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
@ 2019-03-01 12:09     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-03-01 12:09 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Biju Das, Rob Herring, Mark Rutland

Hello Mauro,

This patch has been around for some time now, do you think you can take it?

Cheers,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
> 
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> index 2d385b6..12fe685 100644
> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>  ------------------------
> 
>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> -Renesas R-Car family of devices. It is used in conjunction with the
> -R-Car VIN module, which provides the video capture capabilities.
> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> +with the R-Car VIN module, which provides the video capture capabilities.
> 
>  Mandatory properties
>  --------------------
>   - compatible: Must be one or more of the following
> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>     - "renesas,r8a77965-csi2" for the R8A77965 device.
> --
> 2.7.4


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

* RE: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
                     ` (3 preceding siblings ...)
  2018-11-08 14:25   ` Simon Horman
@ 2019-03-01 12:11   ` Fabrizio Castro
  4 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-03-01 12:11 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

This patch has been around for some time now, do you think you can take it?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1
> 
> Add the MIPI CSI-2 driver support for RZ/G2M(r8a774a1) SoC.
> The CSI-2 module of RZ/G2M is similar to R-Car M3-W.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  drivers/media/platform/rcar-vin/rcar-csi2.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c
> index daef72d..65c7efb 100644
> --- a/drivers/media/platform/rcar-vin/rcar-csi2.c
> +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c
> @@ -953,6 +953,10 @@ static const struct rcar_csi2_info rcar_csi2_info_r8a77970 = {
> 
>  static const struct of_device_id rcar_csi2_of_table[] = {
>  	{
> +		.compatible = "renesas,r8a774a1-csi2",
> +		.data = &rcar_csi2_info_r8a7796,
> +	},
> +	{
>  		.compatible = "renesas,r8a7795-csi2",
>  		.data = &rcar_csi2_info_r8a7795,
>  	},
> --
> 2.7.4


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

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
  2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
@ 2019-03-01 12:12     ` Fabrizio Castro
  2018-11-08 12:52     ` Fabrizio Castro
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-03-01 12:12 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Rob Herring, Mark Rutland

Hello Mauro,

This patch has been around for some time, do you think you can take it?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
> 
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
> 
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
> 
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
> 
> --
> 2.7.4

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

* RE: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
@ 2019-03-01 12:12     ` Fabrizio Castro
  0 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-03-01 12:12 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Rob Herring, Mark Rutland, Biju Das

Hello Mauro,

This patch has been around for some time, do you think you can take it?

Thanks,
Fab

> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Biju Das
> Sent: 10 September 2018 15:31
> Subject: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
> 
> Document RZ/G2M (R8A774A1) SoC bindings.
> 
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index 2f42005..8c81689 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -12,6 +12,7 @@ on Gen3 platforms to a CSI-2 receiver.
>   - compatible: Must be one or more of the following
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
>     - "renesas,vin-r8a7779" for the R8A7779 device
>     - "renesas,vin-r8a7790" for the R8A7790 device
> @@ -58,9 +59,9 @@ The per-board settings Gen2 platforms:
>      - data-enable-active: polarity of CLKENB signal, see [1] for
>        description. Default is active high.
> 
> -The per-board settings Gen3 platforms:
> +The per-board settings Gen3 and RZ/G2 platforms:
> 
> -Gen3 platforms can support both a single connected parallel input source
> +Gen3 and RZ/G2 platforms can support both a single connected parallel input source
>  from external SoC pins (port@0) and/or multiple parallel input sources
>  from local SoC CSI-2 receivers (port@1) depending on SoC.
> 
> --
> 2.7.4


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

* RE: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
  2018-09-10 14:31 ` [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1 Biju Das
                     ` (3 preceding siblings ...)
  2018-11-29 15:12   ` Biju Das
@ 2019-03-01 12:14   ` Fabrizio Castro
  4 siblings, 0 replies; 68+ messages in thread
From: Fabrizio Castro @ 2019-03-01 12:14 UTC (permalink / raw)
  To: Biju Das, Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	Simon Horman, Geert Uytterhoeven, Chris Paterson

Hello Mauro,

This patch has been around for some time, do you think you can take it?

Thanks,
Fab

> From: Biju Das <biju.das@bp.renesas.com>
> Sent: 10 September 2018 15:31
> Subject: [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1
> 
> Add the SoC specific information for RZ/G2M(r8a774a1) SoC.
> The VIN module of RZ/G2M is similar to R-Car M3-W.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  drivers/media/platform/rcar-vin/rcar-core.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
> index d3072e1..c0c84d1 100644
> --- a/drivers/media/platform/rcar-vin/rcar-core.c
> +++ b/drivers/media/platform/rcar-vin/rcar-core.c
> @@ -995,6 +995,10 @@ static const struct rvin_info rcar_info_r8a77970 = {
> 
>  static const struct of_device_id rvin_of_id_table[] = {
>  	{
> +		.compatible = "renesas,vin-r8a774a1",
> +		.data = &rcar_info_r8a7796,
> +	},
> +	{
>  		.compatible = "renesas,vin-r8a7778",
>  		.data = &rcar_info_m1,
>  	},
> --
> 2.7.4


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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 12:09     ` Fabrizio Castro
  (?)
@ 2019-03-01 12:55     ` Hans Verkuil
  2019-03-01 12:58       ` Geert Uytterhoeven
  2019-03-01 13:06       ` Laurent Pinchart
  -1 siblings, 2 replies; 68+ messages in thread
From: Hans Verkuil @ 2019-03-01 12:55 UTC (permalink / raw)
  To: Fabrizio Castro, Mauro Carvalho Chehab
  Cc: Biju Das, Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Rob Herring, Mark Rutland, Laurent Pinchart

Hi Fabrizio,

It looks like this series fell through the cracks.

I looked at it and the main problem is that it is missing a Reviewed-by
from Rob Herring (devicetree maintainer). It's a bit surprising since he
is usually fairly prompt.

I recommend that you rebase and repost it and I'll delegate the v2 series
to me so we can hopefully get it in for 5.2 (5.1 is likely too late) once
Rob reviews it.

BTW, I'm the one who usually processes rcar patches. But it was delegated in
patchwork to Laurent, so I never saw it.

Regards,

	Hans

On 3/1/19 1:09 PM, Fabrizio Castro wrote:
> Hello Mauro,
> 
> This patch has been around for some time now, do you think you can take it?
> 
> Cheers,
> Fab
> 
>> From: Biju Das <biju.das@bp.renesas.com>
>> Sent: 10 September 2018 15:31
>> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
>>
>> Document RZ/G2M (R8A774A1) SoC bindings.
>>
>> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>>
>> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
>> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
>> ---
>>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>>  1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
>> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
>> index 2d385b6..12fe685 100644
>> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
>> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
>> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
>>  ------------------------
>>
>>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
>> -Renesas R-Car family of devices. It is used in conjunction with the
>> -R-Car VIN module, which provides the video capture capabilities.
>> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
>> +with the R-Car VIN module, which provides the video capture capabilities.
>>
>>  Mandatory properties
>>  --------------------
>>   - compatible: Must be one or more of the following
>> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
>>     - "renesas,r8a7795-csi2" for the R8A7795 device.
>>     - "renesas,r8a7796-csi2" for the R8A7796 device.
>>     - "renesas,r8a77965-csi2" for the R8A77965 device.
>> --
>> 2.7.4
> 

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 12:55     ` Hans Verkuil
@ 2019-03-01 12:58       ` Geert Uytterhoeven
  2019-03-01 13:08         ` Hans Verkuil
  2019-03-01 13:06       ` Laurent Pinchart
  1 sibling, 1 reply; 68+ messages in thread
From: Geert Uytterhoeven @ 2019-03-01 12:58 UTC (permalink / raw)
  To: Hans Verkuil
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Biju Das,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Rob Herring, Mark Rutland, Laurent Pinchart

Hi Hans,

On Fri, Mar 1, 2019 at 1:55 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
> It looks like this series fell through the cracks.
>
> I looked at it and the main problem is that it is missing a Reviewed-by
> from Rob Herring (devicetree maintainer). It's a bit surprising since he
> is usually fairly prompt.

He actually did provide his Rb on Sep 17.

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 12:55     ` Hans Verkuil
  2019-03-01 12:58       ` Geert Uytterhoeven
@ 2019-03-01 13:06       ` Laurent Pinchart
  2019-03-07  0:44           ` Niklas Söderlund
  1 sibling, 1 reply; 68+ messages in thread
From: Laurent Pinchart @ 2019-03-01 13:06 UTC (permalink / raw)
  To: Hans Verkuil
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Biju Das,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Rob Herring, Mark Rutland

Hi Hans,

On Fri, Mar 01, 2019 at 01:55:53PM +0100, Hans Verkuil wrote:
> Hi Fabrizio,
> 
> It looks like this series fell through the cracks.
> 
> I looked at it and the main problem is that it is missing a Reviewed-by
> from Rob Herring (devicetree maintainer). It's a bit surprising since he
> is usually fairly prompt.
> 
> I recommend that you rebase and repost it and I'll delegate the v2 series
> to me so we can hopefully get it in for 5.2 (5.1 is likely too late) once
> Rob reviews it.
> 
> BTW, I'm the one who usually processes rcar patches. But it was delegated in
> patchwork to Laurent, so I never saw it.

I handle the VSP and FDP patches. I propose delegating the CSI-2 and VIN
to Niklas.

> On 3/1/19 1:09 PM, Fabrizio Castro wrote:
> > Hello Mauro,
> > 
> > This patch has been around for some time now, do you think you can take it?
> > 
> > Cheers,
> > Fab
> > 
> >> From: Biju Das <biju.das@bp.renesas.com>
> >> Sent: 10 September 2018 15:31
> >> Subject: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
> >>
> >> Document RZ/G2M (R8A774A1) SoC bindings.
> >>
> >> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> >>
> >> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> >> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> >> ---
> >>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
> >>  1 file changed, 3 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> >> b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> >> index 2d385b6..12fe685 100644
> >> --- a/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> >> +++ b/Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
> >> @@ -2,12 +2,13 @@ Renesas R-Car MIPI CSI-2
> >>  ------------------------
> >>
> >>  The R-Car CSI-2 receiver device provides MIPI CSI-2 capabilities for the
> >> -Renesas R-Car family of devices. It is used in conjunction with the
> >> -R-Car VIN module, which provides the video capture capabilities.
> >> +Renesas R-Car Gen3 and RZ/G2 family of devices. It is used in conjunction
> >> +with the R-Car VIN module, which provides the video capture capabilities.
> >>
> >>  Mandatory properties
> >>  --------------------
> >>   - compatible: Must be one or more of the following
> >> +   - "renesas,r8a774a1-csi2" for the R8A774A1 device.
> >>     - "renesas,r8a7795-csi2" for the R8A7795 device.
> >>     - "renesas,r8a7796-csi2" for the R8A7796 device.
> >>     - "renesas,r8a77965-csi2" for the R8A77965 device.

-- 
Regards,

Laurent Pinchart

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 12:58       ` Geert Uytterhoeven
@ 2019-03-01 13:08         ` Hans Verkuil
  2019-03-01 13:12           ` Biju Das
  2019-03-01 13:13           ` Geert Uytterhoeven
  0 siblings, 2 replies; 68+ messages in thread
From: Hans Verkuil @ 2019-03-01 13:08 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Biju Das,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Rob Herring, Mark Rutland, Laurent Pinchart

On 3/1/19 1:58 PM, Geert Uytterhoeven wrote:
> Hi Hans,
> 
> On Fri, Mar 1, 2019 at 1:55 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
>> It looks like this series fell through the cracks.
>>
>> I looked at it and the main problem is that it is missing a Reviewed-by
>> from Rob Herring (devicetree maintainer). It's a bit surprising since he
>> is usually fairly prompt.
> 
> He actually did provide his Rb on Sep 17.

Hmm, I don't see anything about that in my linux-media archive, and patchwork
didn't pick that up either.

Was linux-media in the CC list of Rob's reply?

Regards,

	Hans

> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 13:08         ` Hans Verkuil
@ 2019-03-01 13:12           ` Biju Das
  2019-03-01 13:19             ` Hans Verkuil
  2019-03-01 13:13           ` Geert Uytterhoeven
  1 sibling, 1 reply; 68+ messages in thread
From: Biju Das @ 2019-03-01 13:12 UTC (permalink / raw)
  To: Hans Verkuil, Geert Uytterhoeven
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Niklas Söderlund,
	linux-media, linux-renesas-soc, devicetree, Simon Horman,
	Geert Uytterhoeven, Chris Paterson, Rob Herring, Mark Rutland,
	Laurent Pinchart

Hi Hans,

Thanks for the feedback.

> -----Original Message-----
> From: Hans Verkuil <hverkuil@xs4all.nl>
> Sent: 01 March 2019 13:09
> To: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: Fabrizio Castro <fabrizio.castro@bp.renesas.com>; Mauro Carvalho
> Chehab <mchehab@kernel.org>; Biju Das <biju.das@bp.renesas.com>;
> Niklas Söderlund <niklas.soderlund@ragnatech.se>; linux-
> media@vger.kernel.org; linux-renesas-soc@vger.kernel.org;
> devicetree@vger.kernel.org; Simon Horman <horms@verge.net.au>; Geert
> Uytterhoeven <geert+renesas@glider.be>; Chris Paterson
> <Chris.Paterson2@renesas.com>; Rob Herring <robh+dt@kernel.org>; Mark
> Rutland <mark.rutland@arm.com>; Laurent Pinchart
> <laurent.pinchart@ideasonboard.com>
> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1
> support
>
> On 3/1/19 1:58 PM, Geert Uytterhoeven wrote:
> > Hi Hans,
> >
> > On Fri, Mar 1, 2019 at 1:55 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
> >> It looks like this series fell through the cracks.
> >>
> >> I looked at it and the main problem is that it is missing a
> >> Reviewed-by from Rob Herring (devicetree maintainer). It's a bit
> >> surprising since he is usually fairly prompt.
> >
> > He actually did provide his Rb on Sep 17.
>
> Hmm, I don't see anything about that in my linux-media archive, and
> patchwork didn't pick that up either.
>
> Was linux-media in the CC list of Rob's reply?

Yes. Please see below.

> -----Original Message-----
> From: Rob Herring <robh@kernel.org>
> Sent: 17 September 2018 06:45
> To: Biju Das <biju.das@bp.renesas.com>
> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>; Mark Rutland
> <mark.rutland@arm.com>; Biju Das <biju.das@bp.renesas.com>; Niklas
> Söderlund <niklas.soderlund@ragnatech.se>; linux-media@vger.kernel.org;
> linux-renesas-soc@vger.kernel.org; devicetree@vger.kernel.org; Simon
> Horman <horms@verge.net.au>; Geert Uytterhoeven
> <geert+renesas@glider.be>; Chris Paterson
> <Chris.Paterson2@renesas.com>; Fabrizio Castro
> <fabrizio.castro@bp.renesas.com>
> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1
> support
>
> On Mon, 10 Sep 2018 15:31:14 +0100, Biju Das wrote:
> > Document RZ/G2M (R8A774A1) SoC bindings.
> >
> > The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> >
> > Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > ---
> >  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> >
>
> Reviewed-by: Rob Herring <robh@kernel.org>

Regards,
Biju


Renesas Electronics Europe GmbH,Geschaeftsfuehrer/President : Michael Hannawald, Sitz der Gesellschaft/Registered office: Duesseldorf, Arcadiastrasse 10, 40472 Duesseldorf, Germany,Handelsregister/Commercial Register: Duesseldorf, HRB 3708 USt-IDNr./Tax identification no.: DE 119353406 WEEE-Reg.-Nr./WEEE reg. no.: DE 14978647

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 13:08         ` Hans Verkuil
  2019-03-01 13:12           ` Biju Das
@ 2019-03-01 13:13           ` Geert Uytterhoeven
  1 sibling, 0 replies; 68+ messages in thread
From: Geert Uytterhoeven @ 2019-03-01 13:13 UTC (permalink / raw)
  To: Hans Verkuil
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Biju Das,
	Niklas Söderlund, linux-media, linux-renesas-soc,
	devicetree, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Rob Herring, Mark Rutland, Laurent Pinchart

Hi Hans,

On Fri, Mar 1, 2019 at 2:08 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
> On 3/1/19 1:58 PM, Geert Uytterhoeven wrote:
> > On Fri, Mar 1, 2019 at 1:55 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
> >> It looks like this series fell through the cracks.
> >>
> >> I looked at it and the main problem is that it is missing a Reviewed-by
> >> from Rob Herring (devicetree maintainer). It's a bit surprising since he
> >> is usually fairly prompt.
> >
> > He actually did provide his Rb on Sep 17.
>
> Hmm, I don't see anything about that in my linux-media archive, and patchwork
> didn't pick that up either.
>
> Was linux-media in the CC list of Rob's reply?

Yes it was, just like linux-renesas-soc. But lore.kernel.org also has
no evidence.
I have received it directly, as I was on CC.

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 13:12           ` Biju Das
@ 2019-03-01 13:19             ` Hans Verkuil
  2019-03-01 13:21               ` Biju Das
  0 siblings, 1 reply; 68+ messages in thread
From: Hans Verkuil @ 2019-03-01 13:19 UTC (permalink / raw)
  To: Biju Das, Geert Uytterhoeven
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Niklas Söderlund,
	linux-media, linux-renesas-soc, devicetree, Simon Horman,
	Geert Uytterhoeven, Chris Paterson, Rob Herring, Mark Rutland,
	Laurent Pinchart

Hi Biju,

Can you do the following:

1) forward both of Rob's replies with his Reviewed-by tag to linux-media,
   that way I have seen it.
2) rebase the patch series and add all Reviewed-by etc. tags and post as
   a v2. I'll pick it up and make sure it will get merged. Not sure if we
   can manage 5.1, but it will certainly get in 5.2.

Regards,

	Hans

On 3/1/19 2:12 PM, Biju Das wrote:
> Hi Hans,
> 
> Thanks for the feedback.
> 
>> -----Original Message-----
>> From: Hans Verkuil <hverkuil@xs4all.nl>
>> Sent: 01 March 2019 13:09
>> To: Geert Uytterhoeven <geert@linux-m68k.org>
>> Cc: Fabrizio Castro <fabrizio.castro@bp.renesas.com>; Mauro Carvalho
>> Chehab <mchehab@kernel.org>; Biju Das <biju.das@bp.renesas.com>;
>> Niklas Söderlund <niklas.soderlund@ragnatech.se>; linux-
>> media@vger.kernel.org; linux-renesas-soc@vger.kernel.org;
>> devicetree@vger.kernel.org; Simon Horman <horms@verge.net.au>; Geert
>> Uytterhoeven <geert+renesas@glider.be>; Chris Paterson
>> <Chris.Paterson2@renesas.com>; Rob Herring <robh+dt@kernel.org>; Mark
>> Rutland <mark.rutland@arm.com>; Laurent Pinchart
>> <laurent.pinchart@ideasonboard.com>
>> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1
>> support
>>
>> On 3/1/19 1:58 PM, Geert Uytterhoeven wrote:
>>> Hi Hans,
>>>
>>> On Fri, Mar 1, 2019 at 1:55 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
>>>> It looks like this series fell through the cracks.
>>>>
>>>> I looked at it and the main problem is that it is missing a
>>>> Reviewed-by from Rob Herring (devicetree maintainer). It's a bit
>>>> surprising since he is usually fairly prompt.
>>>
>>> He actually did provide his Rb on Sep 17.
>>
>> Hmm, I don't see anything about that in my linux-media archive, and
>> patchwork didn't pick that up either.
>>
>> Was linux-media in the CC list of Rob's reply?
> 
> Yes. Please see below.
> 
>> -----Original Message-----
>> From: Rob Herring <robh@kernel.org>
>> Sent: 17 September 2018 06:45
>> To: Biju Das <biju.das@bp.renesas.com>
>> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>; Mark Rutland
>> <mark.rutland@arm.com>; Biju Das <biju.das@bp.renesas.com>; Niklas
>> Söderlund <niklas.soderlund@ragnatech.se>; linux-media@vger.kernel.org;
>> linux-renesas-soc@vger.kernel.org; devicetree@vger.kernel.org; Simon
>> Horman <horms@verge.net.au>; Geert Uytterhoeven
>> <geert+renesas@glider.be>; Chris Paterson
>> <Chris.Paterson2@renesas.com>; Fabrizio Castro
>> <fabrizio.castro@bp.renesas.com>
>> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1
>> support
>>
>> On Mon, 10 Sep 2018 15:31:14 +0100, Biju Das wrote:
>>> Document RZ/G2M (R8A774A1) SoC bindings.
>>>
>>> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>>>
>>> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
>>> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
>>> ---
>>>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>>>  1 file changed, 3 insertions(+), 2 deletions(-)
>>>
>>
>> Reviewed-by: Rob Herring <robh@kernel.org>
> 
> Regards,
> Biju
> 
> 
> Renesas Electronics Europe GmbH,Geschaeftsfuehrer/President : Michael Hannawald, Sitz der Gesellschaft/Registered office: Duesseldorf, Arcadiastrasse 10, 40472 Duesseldorf, Germany,Handelsregister/Commercial Register: Duesseldorf, HRB 3708 USt-IDNr./Tax identification no.: DE 119353406 WEEE-Reg.-Nr./WEEE reg. no.: DE 14978647
> 

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

* RE: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 13:19             ` Hans Verkuil
@ 2019-03-01 13:21               ` Biju Das
  0 siblings, 0 replies; 68+ messages in thread
From: Biju Das @ 2019-03-01 13:21 UTC (permalink / raw)
  To: Hans Verkuil, Geert Uytterhoeven
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Niklas Söderlund,
	linux-media, linux-renesas-soc, devicetree, Simon Horman,
	Geert Uytterhoeven, Chris Paterson, Rob Herring, Mark Rutland,
	Laurent Pinchart

Hi Hans,

Yes. Will do.

Regards,
Biju

> -----Original Message-----
> From: Hans Verkuil <hverkuil@xs4all.nl>
> Sent: 01 March 2019 13:19
> To: Biju Das <biju.das@bp.renesas.com>; Geert Uytterhoeven
> <geert@linux-m68k.org>
> Cc: Fabrizio Castro <fabrizio.castro@bp.renesas.com>; Mauro Carvalho
> Chehab <mchehab@kernel.org>; Niklas Söderlund
> <niklas.soderlund@ragnatech.se>; linux-media@vger.kernel.org; linux-
> renesas-soc@vger.kernel.org; devicetree@vger.kernel.org; Simon Horman
> <horms@verge.net.au>; Geert Uytterhoeven <geert+renesas@glider.be>;
> Chris Paterson <Chris.Paterson2@renesas.com>; Rob Herring
> <robh+dt@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Laurent
> Pinchart <laurent.pinchart@ideasonboard.com>
> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1
> support
>
> Hi Biju,
>
> Can you do the following:
>
> 1) forward both of Rob's replies with his Reviewed-by tag to linux-media,
>    that way I have seen it.
> 2) rebase the patch series and add all Reviewed-by etc. tags and post as
>    a v2. I'll pick it up and make sure it will get merged. Not sure if we
>    can manage 5.1, but it will certainly get in 5.2.
>
> Regards,
>
> Hans
>
> On 3/1/19 2:12 PM, Biju Das wrote:
> > Hi Hans,
> >
> > Thanks for the feedback.
> >
> >> -----Original Message-----
> >> From: Hans Verkuil <hverkuil@xs4all.nl>
> >> Sent: 01 March 2019 13:09
> >> To: Geert Uytterhoeven <geert@linux-m68k.org>
> >> Cc: Fabrizio Castro <fabrizio.castro@bp.renesas.com>; Mauro Carvalho
> >> Chehab <mchehab@kernel.org>; Biju Das <biju.das@bp.renesas.com>;
> >> Niklas Söderlund <niklas.soderlund@ragnatech.se>; linux-
> >> media@vger.kernel.org; linux-renesas-soc@vger.kernel.org;
> >> devicetree@vger.kernel.org; Simon Horman <horms@verge.net.au>;
> Geert
> >> Uytterhoeven <geert+renesas@glider.be>; Chris Paterson
> >> <Chris.Paterson2@renesas.com>; Rob Herring <robh+dt@kernel.org>;
> Mark
> >> Rutland <mark.rutland@arm.com>; Laurent Pinchart
> >> <laurent.pinchart@ideasonboard.com>
> >> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add
> >> r8a774a1 support
> >>
> >> On 3/1/19 1:58 PM, Geert Uytterhoeven wrote:
> >>> Hi Hans,
> >>>
> >>> On Fri, Mar 1, 2019 at 1:55 PM Hans Verkuil <hverkuil@xs4all.nl> wrote:
> >>>> It looks like this series fell through the cracks.
> >>>>
> >>>> I looked at it and the main problem is that it is missing a
> >>>> Reviewed-by from Rob Herring (devicetree maintainer). It's a bit
> >>>> surprising since he is usually fairly prompt.
> >>>
> >>> He actually did provide his Rb on Sep 17.
> >>
> >> Hmm, I don't see anything about that in my linux-media archive, and
> >> patchwork didn't pick that up either.
> >>
> >> Was linux-media in the CC list of Rob's reply?
> >
> > Yes. Please see below.
> >
> >> -----Original Message-----
> >> From: Rob Herring <robh@kernel.org>
> >> Sent: 17 September 2018 06:45
> >> To: Biju Das <biju.das@bp.renesas.com>
> >> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>; Mark Rutland
> >> <mark.rutland@arm.com>; Biju Das <biju.das@bp.renesas.com>; Niklas
> >> Söderlund <niklas.soderlund@ragnatech.se>;
> >> linux-media@vger.kernel.org; linux-renesas-soc@vger.kernel.org;
> >> devicetree@vger.kernel.org; Simon Horman <horms@verge.net.au>;
> Geert
> >> Uytterhoeven <geert+renesas@glider.be>; Chris Paterson
> >> <Chris.Paterson2@renesas.com>; Fabrizio Castro
> >> <fabrizio.castro@bp.renesas.com>
> >> Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add
> >> r8a774a1 support
> >>
> >> On Mon, 10 Sep 2018 15:31:14 +0100, Biju Das wrote:
> >>> Document RZ/G2M (R8A774A1) SoC bindings.
> >>>
> >>> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
> >>>
> >>> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> >>> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> >>> ---
> >>>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5
> >>> +++--
> >>>  1 file changed, 3 insertions(+), 2 deletions(-)
> >>>
> >>
> >> Reviewed-by: Rob Herring <robh@kernel.org>
> >
> > Regards,
> > Biju
> >
> >
> > Renesas Electronics Europe GmbH,Geschaeftsfuehrer/President : Michael
> > Hannawald, Sitz der Gesellschaft/Registered office: Duesseldorf,
> > Arcadiastrasse 10, 40472 Duesseldorf,
> > Germany,Handelsregister/Commercial Register: Duesseldorf, HRB 3708
> > USt-IDNr./Tax identification no.: DE 119353406 WEEE-Reg.-Nr./WEEE reg.
> > no.: DE 14978647
> >



Renesas Electronics Europe GmbH,Geschaeftsfuehrer/President : Michael Hannawald, Sitz der Gesellschaft/Registered office: Duesseldorf, Arcadiastrasse 10, 40472 Duesseldorf, Germany,Handelsregister/Commercial Register: Duesseldorf, HRB 3708 USt-IDNr./Tax identification no.: DE 119353406 WEEE-Reg.-Nr./WEEE reg. no.: DE 14978647

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

* FW: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
       [not found]   ` <5b9f3f73.1c69fb81.a4966.287a@mx.google.com>
@ 2019-03-01 13:28     ` Biju Das
  0 siblings, 0 replies; 68+ messages in thread
From: Biju Das @ 2019-03-01 13:28 UTC (permalink / raw)
  To: linux-media



-----Original Message-----
From: Rob Herring <robh@kernel.org>
Sent: 17 September 2018 06:45
To: Biju Das <biju.das@bp.renesas.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Biju Das <biju.das@bp.renesas.com>; Niklas Söderlund <niklas.soderlund@ragnatech.se>; linux-media@vger.kernel.org; linux-renesas-soc@vger.kernel.org; devicetree@vger.kernel.org; Simon Horman <horms@verge.net.au>; Geert Uytterhoeven <geert+renesas@glider.be>; Chris Paterson <Chris.Paterson2@renesas.com>; Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Subject: Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support

On Mon, 10 Sep 2018 15:31:14 +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>

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



Renesas Electronics Europe GmbH,Geschaeftsfuehrer/President : Michael Hannawald, Sitz der Gesellschaft/Registered office: Duesseldorf, Arcadiastrasse 10, 40472 Duesseldorf, Germany,Handelsregister/Commercial Register: Duesseldorf, HRB 3708 USt-IDNr./Tax identification no.: DE 119353406 WEEE-Reg.-Nr./WEEE reg. no.: DE 14978647

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

* FW: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support
       [not found]   ` <5b9f3f74.1c69fb81.f4e64.f599@mx.google.com>
@ 2019-03-01 13:29     ` Biju Das
  0 siblings, 0 replies; 68+ messages in thread
From: Biju Das @ 2019-03-01 13:29 UTC (permalink / raw)
  To: linux-media



-----Original Message-----
From: Rob Herring <robh@kernel.org>
Sent: 17 September 2018 06:45
To: Biju Das <biju.das@bp.renesas.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>; Mark Rutland <mark.rutland@arm.com>; Biju Das <biju.das@bp.renesas.com>; Niklas Söderlund <niklas.soderlund@ragnatech.se>; linux-media@vger.kernel.org; linux-renesas-soc@vger.kernel.org; devicetree@vger.kernel.org; Simon Horman <horms@verge.net.au>; Geert Uytterhoeven <geert+renesas@glider.be>; Chris Paterson <Chris.Paterson2@renesas.com>; Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Subject: Re: [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support

On Mon, 10 Sep 2018 15:31:16 +0100, Biju Das wrote:
> Document RZ/G2M (R8A774A1) SoC bindings.
>
> The RZ/G2M SoC is similar to R-Car M3-W (R8A7796).
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>

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



Renesas Electronics Europe GmbH,Geschaeftsfuehrer/President : Michael Hannawald, Sitz der Gesellschaft/Registered office: Duesseldorf, Arcadiastrasse 10, 40472 Duesseldorf, Germany,Handelsregister/Commercial Register: Duesseldorf, HRB 3708 USt-IDNr./Tax identification no.: DE 119353406 WEEE-Reg.-Nr./WEEE reg. no.: DE 14978647

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
  2019-03-01 13:06       ` Laurent Pinchart
@ 2019-03-07  0:44           ` Niklas Söderlund
  0 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2019-03-07  0:44 UTC (permalink / raw)
  To: Hans Verkuil, Laurent Pinchart
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Biju Das, linux-media,
	linux-renesas-soc, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Rob Herring, Mark Rutland

Hi Hans, Laurent,

On 2019-03-01 15:06:13 +0200, Laurent Pinchart wrote:
> Hi Hans,
> 
> On Fri, Mar 01, 2019 at 01:55:53PM +0100, Hans Verkuil wrote:
> > Hi Fabrizio,
> > 
> > It looks like this series fell through the cracks.
> > 
> > I looked at it and the main problem is that it is missing a Reviewed-by
> > from Rob Herring (devicetree maintainer). It's a bit surprising since he
> > is usually fairly prompt.
> > 
> > I recommend that you rebase and repost it and I'll delegate the v2 series
> > to me so we can hopefully get it in for 5.2 (5.1 is likely too late) once
> > Rob reviews it.
> > 
> > BTW, I'm the one who usually processes rcar patches. But it was delegated in
> > patchwork to Laurent, so I never saw it.
> 
> I handle the VSP and FDP patches. I propose delegating the CSI-2 and VIN
> to Niklas.

I be more then happy to collect patches for R-Car VIN and CSI-2 and send
PRs for them to you Hans. Would that work for you Hans?

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support
@ 2019-03-07  0:44           ` Niklas Söderlund
  0 siblings, 0 replies; 68+ messages in thread
From: Niklas Söderlund @ 2019-03-07  0:44 UTC (permalink / raw)
  To: Hans Verkuil, Laurent Pinchart
  Cc: Fabrizio Castro, Mauro Carvalho Chehab, Biju Das, linux-media,
	linux-renesas-soc, devicetree, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Rob Herring, Mark Rutland

Hi Hans, Laurent,

On 2019-03-01 15:06:13 +0200, Laurent Pinchart wrote:
> Hi Hans,
> 
> On Fri, Mar 01, 2019 at 01:55:53PM +0100, Hans Verkuil wrote:
> > Hi Fabrizio,
> > 
> > It looks like this series fell through the cracks.
> > 
> > I looked at it and the main problem is that it is missing a Reviewed-by
> > from Rob Herring (devicetree maintainer). It's a bit surprising since he
> > is usually fairly prompt.
> > 
> > I recommend that you rebase and repost it and I'll delegate the v2 series
> > to me so we can hopefully get it in for 5.2 (5.1 is likely too late) once
> > Rob reviews it.
> > 
> > BTW, I'm the one who usually processes rcar patches. But it was delegated in
> > patchwork to Laurent, so I never saw it.
> 
> I handle the VSP and FDP patches. I propose delegating the CSI-2 and VIN
> to Niklas.

I be more then happy to collect patches for R-Car VIN and CSI-2 and send
PRs for them to you Hans. Would that work for you Hans?

-- 
Regards,
Niklas Söderlund

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

end of thread, other threads:[~2019-03-07  0:44 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-10 14:31 [PATCH 0/5] Add VIN support to RZ/G2M Biju Das
2018-09-10 14:31 ` [PATCH 1/5] media: dt-bindings: media: rcar-csi2: Add r8a774a1 support Biju Das
2018-09-17 11:04   ` Niklas Söderlund
2018-09-17 11:04     ` Niklas Söderlund
2018-11-08 12:50   ` Fabrizio Castro
2018-11-08 12:50     ` Fabrizio Castro
2018-11-08 14:08     ` Simon Horman
2018-11-08 14:19       ` Fabrizio Castro
2018-11-08 14:09   ` Simon Horman
2018-11-08 14:18   ` Fabrizio Castro
2018-11-08 14:18     ` Fabrizio Castro
2019-01-21 17:17     ` Fabrizio Castro
2019-01-21 17:17       ` Fabrizio Castro
2019-03-01 12:09   ` Fabrizio Castro
2019-03-01 12:09     ` Fabrizio Castro
2019-03-01 12:55     ` Hans Verkuil
2019-03-01 12:58       ` Geert Uytterhoeven
2019-03-01 13:08         ` Hans Verkuil
2019-03-01 13:12           ` Biju Das
2019-03-01 13:19             ` Hans Verkuil
2019-03-01 13:21               ` Biju Das
2019-03-01 13:13           ` Geert Uytterhoeven
2019-03-01 13:06       ` Laurent Pinchart
2019-03-07  0:44         ` Niklas Söderlund
2019-03-07  0:44           ` Niklas Söderlund
     [not found]   ` <5b9f3f73.1c69fb81.a4966.287a@mx.google.com>
2019-03-01 13:28     ` FW: " Biju Das
2018-09-10 14:31 ` [PATCH 2/5] media: rcar-csi2: Enable support for r8a774a1 Biju Das
2018-09-17 11:05   ` Niklas Söderlund
2018-09-17 11:05     ` Niklas Söderlund
2018-11-08 12:51   ` Fabrizio Castro
2018-11-08 14:10     ` Simon Horman
2018-11-08 14:24       ` Fabrizio Castro
2018-11-08 14:23   ` Fabrizio Castro
2019-01-21 17:18     ` Fabrizio Castro
2018-11-08 14:25   ` Simon Horman
2019-03-01 12:11   ` Fabrizio Castro
2018-09-10 14:31 ` [PATCH 3/5] media: dt-bindings: media: rcar_vin: Add r8a774a1 support Biju Das
2018-09-17 11:07   ` Niklas Söderlund
2018-09-17 11:07     ` Niklas Söderlund
2018-11-08 12:52   ` Fabrizio Castro
2018-11-08 12:52     ` Fabrizio Castro
2018-11-08 14:20     ` Simon Horman
2018-11-08 14:25       ` Fabrizio Castro
2018-11-08 14:25   ` Fabrizio Castro
2018-11-08 14:25     ` Fabrizio Castro
2019-01-21 17:19     ` Fabrizio Castro
2019-01-21 17:19       ` Fabrizio Castro
2018-11-08 14:25   ` Simon Horman
2019-03-01 12:12   ` Fabrizio Castro
2019-03-01 12:12     ` Fabrizio Castro
     [not found]   ` <5b9f3f74.1c69fb81.f4e64.f599@mx.google.com>
2019-03-01 13:29     ` FW: " Biju Das
2018-09-10 14:31 ` [PATCH 4/5] media: rcar-vin: Enable support for r8a774a1 Biju Das
2018-09-17 11:08   ` Niklas Söderlund
2018-09-17 11:08     ` Niklas Söderlund
2018-11-08 12:53   ` Fabrizio Castro
2018-11-08 14:26   ` Simon Horman
2018-11-29 15:12   ` Biju Das
2019-01-21 17:19     ` Fabrizio Castro
2019-03-01 12:14   ` Fabrizio Castro
2018-09-10 14:31 ` [PATCH 5/5] arm64: dts: renesas: r8a774a1: Add VIN and CSI-2 nodes Biju Das
2018-09-10 14:31   ` Biju Das
2018-09-10 14:31   ` Biju Das
2018-09-11 13:53   ` Simon Horman
2018-09-11 13:53     ` Simon Horman
2018-09-11 13:53     ` Simon Horman
2018-10-18 13:17     ` Simon Horman
2018-10-18 13:17       ` Simon Horman
2018-10-18 13:17       ` Simon Horman

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.