All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC
@ 2019-04-11  7:54 Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support Cao Van Dong
                   ` (21 more replies)
  0 siblings, 22 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Dear everyone,

This series adds HSCIF,MSIOF,PWM,CAN,VIN,Audio,Audio-DMAC,Ether,VSP,FDP1,LVDS support 
for the RZ/G1C (r8a77470) SoC. It is based on the renesas-drivers-2019-04-02-v5.1-rc3 tag 
of renesas-drivers tree. Currently, I only add patches to the tree and compiled. 
Unfortunately, RZ/G1C board is not available, so I have not tested these patches on this board yet.

cc Biju,
I know it is very difficult. however I still want to ask if you can help me test them?
If possible, I will send the .dts file separately to you.
Because I am known you can be available this board. Thanks!

Cao Van Dong (20):
  ARM: dts: r8a77470: Add HSCIF support
  ARM: dts: r8a77470: Add MSIOF support
  ARM: dts: r8a77470: Add PWM support
  ARM: dts: r8a77470: Add CAN support
  ARM: dts: r8a77470: Add VIN support
  ARM: dts: r8a77470: Add Audio support
  ARM: dts: r8a77470: Add Audio-DMAC support
  ARM: dts: r8a77470: Add Ether support
  ARM: dts: r8a77470: Add VSP support
  ARM: dts: r8a77470: Add FDP1 support
  ARM: dts: r8a77470: Add LVDS support
  ARM: dts: r8a77470: Add audio clocks
  ARM: dts: r8a77470: Add can clocks
  dt-bindings: display: renesas: lvds: Add r8a77470 support
  media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
  ASoC: rsnd: Document r8a77470 bindings
  dt-bindings: pwm: Document r8a77470 bindings
  sh_eth: Document r8a77470 bindings
  spi: sh-msiof: Document r8a77470 bindings
  dt-bindings: can: rcar_can: Document r8a77470 bindings

 .../bindings/display/bridge/renesas,lvds.txt       |   1 +
 .../devicetree/bindings/media/rcar_vin.txt         |   1 +
 .../devicetree/bindings/net/can/rcar_can.txt       |   1 +
 Documentation/devicetree/bindings/net/sh_eth.txt   |   1 +
 .../devicetree/bindings/pwm/renesas,pwm-rcar.txt   |   1 +
 .../devicetree/bindings/sound/renesas,rsnd.txt     |   1 +
 Documentation/devicetree/bindings/spi/sh-msiof.txt |   1 +
 arch/arm/boot/dts/r8a77470.dtsi                    | 608 +++++++++++++++++++++
 drivers/gpu/drm/rcar-du/rcar_lvds.c                |   1 +
 9 files changed, 616 insertions(+)

-- 
2.7.4

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

* [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:55   ` Simon Horman
  2019-04-30 13:00   ` Geert Uytterhoeven
  2019-04-11  7:54 ` [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support Cao Van Dong
                   ` (20 subsequent siblings)
  21 siblings, 2 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add hscif{0|1|2} nodes to dtsi for HSCIF support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 48 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 493cf2b..60bd79f 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -588,6 +588,54 @@
 			status = "disabled";
 		};
 
+		hscif0: serial@e62c0000 {
+			compatible = "renesas,hscif-r8a77470",
+				     "renesas,rcar-gen2-hscif", "renesas,hscif";
+			reg = <0 0xe62c0000 0 0x60>;
+			interrupts = <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 717>,
+				 <&cpg CPG_CORE R8A77470_CLK_ZS>, <&scif_clk>;
+			clock-names = "fck", "brg_int", "scif_clk";
+			dmas = <&dmac0 0x39>, <&dmac0 0x3a>,
+			       <&dmac1 0x39>, <&dmac1 0x3a>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 717>;
+			status = "disabled";
+		};
+
+		hscif1: serial@e62c8000 {
+			compatible = "renesas,hscif-r8a77470",
+				     "renesas,rcar-gen2-hscif", "renesas,hscif";
+			reg = <0 0xe62c8000 0 0x60>;
+			interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 716>,
+				 <&cpg CPG_CORE R8A77470_CLK_ZS>, <&scif_clk>;
+			clock-names = "fck", "brg_int", "scif_clk";
+			dmas = <&dmac0 0x4d>, <&dmac0 0x4e>,
+			       <&dmac1 0x4d>, <&dmac1 0x4e>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 716>;
+			status = "disabled";
+		};
+
+		hscif2: serial@e62d0000 {
+			compatible = "renesas,hscif-r8a77470",
+				     "renesas,rcar-gen2-hscif", "renesas,hscif";
+			reg = <0 0xe62d0000 0 0x60>;
+			interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 713>,
+				 <&cpg CPG_CORE R8A77470_CLK_ZS>, <&scif_clk>;
+			clock-names = "fck", "brg_int", "scif_clk";
+			dmas = <&dmac0 0x3b>, <&dmac0 0x3c>,
+			       <&dmac1 0x3b>, <&dmac1 0x3c>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 713>;
+			status = "disabled";
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:22   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 03/20] ARM: dts: r8a77470: Add PWM support Cao Van Dong
                   ` (19 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add msiof{0|1|2} nodes to dtsi for MSIOF support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 51 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 60bd79f..08a0b15 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -20,6 +20,9 @@
 		i2c2 = &i2c2;
 		i2c3 = &i2c3;
 		i2c4 = &i2c4;
+		spi1 = &msiof0;
+		spi2 = &msiof1;
+		spi3 = &msiof2;
 	};
 
 	cpus {
@@ -636,6 +639,54 @@
 			status = "disabled";
 		};
 
+		msiof0: spi@e6e20000 {
+			compatible = "renesas,msiof-r8a77470",
+				     "renesas,rcar-gen2-msiof";
+			reg = <0 0xe6e20000 0 0x0064>;
+			interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 000>;
+			dmas = <&dmac0 0x51>, <&dmac0 0x52>,
+			       <&dmac1 0x51>, <&dmac1 0x52>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			resets = <&cpg 000>;
+			status = "disabled";
+		};
+
+		msiof1: spi@e6e10000 {
+			compatible = "renesas,msiof-r8a77470",
+				     "renesas,rcar-gen2-msiof";
+			reg = <0 0xe6e10000 0 0x0064>;
+			interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 208>;
+			dmas = <&dmac0 0x55>, <&dmac0 0x56>,
+			       <&dmac1 0x55>, <&dmac1 0x56>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			resets = <&cpg 208>;
+			status = "disabled";
+		};
+
+		msiof2: spi@e6e00000 {
+			compatible = "renesas,msiof-r8a77470",
+				     "renesas,rcar-gen2-msiof";
+			reg = <0 0xe6e00000 0 0x0064>;
+			interrupts = <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 205>;
+			dmas = <&dmac0 0x41>, <&dmac0 0x42>,
+			       <&dmac1 0x41>, <&dmac1 0x42>;
+			dma-names = "tx", "rx", "tx", "rx";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			#address-cells = <1>;
+			#size-cells = <0>;
+			resets = <&cpg 205>;
+			status = "disabled";
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 03/20] ARM: dts: r8a77470: Add PWM support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 12:01   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 04/20] ARM: dts: r8a77470: Add CAN support Cao Van Dong
                   ` (18 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add pwm{0|1|2|3|4|5|6} nodes to dtsi for PWM support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 70 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 70 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 08a0b15..7d1fe2f 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -687,6 +687,76 @@
 			status = "disabled";
 		};
 
+		pwm0: pwm@e6e30000 {
+			compatible = "renesas,pwm-r8a77470", "renesas,pwm-rcar";
+			reg = <0 0xe6e30000 0 0x8>;
+			clocks = <&cpg CPG_MOD 523>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 523>;
+			#pwm-cells = <2>;
+			status = "disabled";
+		};
+
+		pwm1: pwm@e6e31000 {
+			compatible = "renesas,pwm-r8a77470", "renesas,pwm-rcar";
+			reg = <0 0xe6e31000 0 0x8>;
+			clocks = <&cpg CPG_MOD 523>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 523>;
+			#pwm-cells = <2>;
+			status = "disabled";
+		};
+
+		pwm2: pwm@e6e32000 {
+			compatible = "renesas,pwm-r8a77470", "renesas,pwm-rcar";
+			reg = <0 0xe6e32000 0 0x8>;
+			clocks = <&cpg CPG_MOD 523>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 523>;
+			#pwm-cells = <2>;
+			status = "disabled";
+		};
+
+		pwm3: pwm@e6e33000 {
+			compatible = "renesas,pwm-r8a77470", "renesas,pwm-rcar";
+			reg = <0 0xe6e33000 0 0x8>;
+			clocks = <&cpg CPG_MOD 523>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 523>;
+			#pwm-cells = <2>;
+			status = "disabled";
+		};
+
+		pwm4: pwm@e6e34000 {
+			compatible = "renesas,pwm-r8a77470", "renesas,pwm-rcar";
+			reg = <0 0xe6e34000 0 0x8>;
+			clocks = <&cpg CPG_MOD 523>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 523>;
+			#pwm-cells = <2>;
+			status = "disabled";
+		};
+
+		pwm5: pwm@e6e35000 {
+			compatible = "renesas,pwm-r8a77470", "renesas,pwm-rcar";
+			reg = <0 0xe6e35000 0 0x8>;
+			clocks = <&cpg CPG_MOD 523>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 523>;
+			#pwm-cells = <2>;
+			status = "disabled";
+		};
+
+		pwm6: pwm@e6e36000 {
+			compatible = "renesas,pwm-r8a77470", "renesas,pwm-rcar";
+			reg = <0 0xe6e36000 0 0x8>;
+			clocks = <&cpg CPG_MOD 523>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 523>;
+			#pwm-cells = <2>;
+			status = "disabled";
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 04/20] ARM: dts: r8a77470: Add CAN support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (2 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 03/20] ARM: dts: r8a77470: Add PWM support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:25   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 05/20] ARM: dts: r8a77470: Add VIN support Cao Van Dong
                   ` (17 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add can{0|1} nodes to dtsi for CAN support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 7d1fe2f..97c51c5 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -757,6 +757,32 @@
 			status = "disabled";
 		};
 
+		can0: can@e6e80000 {
+			compatible = "renesas,can-r8a77470",
+				     "renesas,rcar-gen2-can";
+			reg = <0 0xe6e80000 0 0x1000>;
+			interrupts = <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 916>,
+				 <&cpg CPG_CORE R8A77470_CLK_RCAN>, <&can_clk>;
+			clock-names = "clkp1", "clkp2", "can_clk";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 916>;
+			status = "disabled";
+		};
+
+		can1: can@e6e88000 {
+			compatible = "renesas,can-r8a77470",
+				     "renesas,rcar-gen2-can";
+			reg = <0 0xe6e88000 0 0x1000>;
+			interrupts = <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 915>,
+				 <&cpg CPG_CORE R8A77470_CLK_RCAN>, <&can_clk>;
+			clock-names = "clkp1", "clkp2", "can_clk";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 915>;
+			status = "disabled";
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 05/20] ARM: dts: r8a77470: Add VIN support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (3 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 04/20] ARM: dts: r8a77470: Add CAN support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:26   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 06/20] ARM: dts: r8a77470: Add Audio support Cao Van Dong
                   ` (16 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add vin{0|1} nodes to dtsi for VIN support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 97c51c5..7d47d04 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -23,6 +23,8 @@
 		spi1 = &msiof0;
 		spi2 = &msiof1;
 		spi3 = &msiof2;
+		vin0 = &vin0;
+		vin1 = &vin1;
 	};
 
 	cpus {
@@ -783,6 +785,28 @@
 			status = "disabled";
 		};
 
+		vin0: video@e6ef0000 {
+			compatible = "renesas,vin-r8a77470",
+				     "renesas,rcar-gen2-vin";
+			reg = <0 0xe6ef0000 0 0x1000>;
+			interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 811>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 811>;
+			status = "disabled";
+		};
+
+		vin1: video@e6ef1000 {
+			compatible = "renesas,vin-r8a77470",
+				     "renesas,rcar-gen2-vin";
+			reg = <0 0xe6ef1000 0 0x1000>;
+			interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 810>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 810>;
+			status = "disabled";
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 06/20] ARM: dts: r8a77470: Add Audio support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (4 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 05/20] ARM: dts: r8a77470: Add VIN support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:31   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 07/20] ARM: dts: r8a77470: Add Audio-DMAC support Cao Van Dong
                   ` (15 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add rcar_sound node to dtsi for Audio support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 261 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 261 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 7d47d04..a5a1918 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -807,6 +807,267 @@
 			status = "disabled";
 		};
 
+		rcar_sound: sound@ec500000 {
+			/*
+			 * #sound-dai-cells is required
+			 *
+			 * Single DAI : #sound-dai-cells = <0>; <&rcar_sound>;
+			 * Multi  DAI : #sound-dai-cells = <1>; <&rcar_sound N>;
+			 */
+			compatible = "renesas,rcar_sound-r8a77470",
+				     "renesas,rcar_sound-gen2";
+			reg = <0 0xec500000 0 0x1000>, /* SCU */
+			      <0 0xec5a0000 0 0x100>,  /* ADG */
+			      <0 0xec540000 0 0x1000>, /* SSIU */
+			      <0 0xec541000 0 0x280>,  /* SSI */
+			      <0 0xec740000 0 0x200>;  /* Audio DMAC peri peri */
+			reg-names = "scu", "adg", "ssiu", "ssi", "audmapp";
+
+			clocks = <&cpg CPG_MOD 1005>,
+				 <&cpg CPG_MOD 1006>, <&cpg CPG_MOD 1007>,
+				 <&cpg CPG_MOD 1008>, <&cpg CPG_MOD 1009>,
+				 <&cpg CPG_MOD 1010>, <&cpg CPG_MOD 1011>,
+				 <&cpg CPG_MOD 1012>, <&cpg CPG_MOD 1013>,
+				 <&cpg CPG_MOD 1014>, <&cpg CPG_MOD 1015>,
+				 <&cpg CPG_MOD 1025>, <&cpg CPG_MOD 1026>,
+				 <&cpg CPG_MOD 1027>, <&cpg CPG_MOD 1028>,
+				 <&cpg CPG_MOD 1029>, <&cpg CPG_MOD 1030>,
+				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
+				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
+				 <&cpg CPG_MOD 1019>, <&cpg CPG_MOD 1018>,
+				 <&audio_clk_a>, <&audio_clk_b>, <&audio_clk_c>,
+				 <&cpg CPG_CORE R8A77470_CLK_M2>;
+			clock-names = "ssi-all",
+				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
+				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
+				      "ssi.1", "ssi.0",
+				      "src.6", "src.5", "src.4", "src.3",
+				      "src.2", "src.1",
+				      "ctu.0", "ctu.1",
+				      "mix.0", "mix.1",
+				      "dvc.0", "dvc.1",
+				      "clk_a", "clk_b", "clk_c", "clk_i";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 1005>,
+				 <&cpg 1006>, <&cpg 1007>, <&cpg 1008>,
+				 <&cpg 1009>, <&cpg 1010>, <&cpg 1011>,
+				 <&cpg 1012>, <&cpg 1013>, <&cpg 1014>,
+				 <&cpg 1015>;
+			reset-names = "ssi-all",
+				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
+				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
+				      "ssi.1", "ssi.0";
+
+			status = "disabled";
+
+			rcar_sound,dvc {
+				dvc0: dvc-0 {
+					dmas = <&audma0 0xbc>;
+					dma-names = "tx";
+				};
+				dvc1: dvc-1 {
+					dmas = <&audma0 0xbe>;
+					dma-names = "tx";
+				};
+			};
+
+			rcar_sound,mix {
+				mix0: mix-0 { };
+				mix1: mix-1 { };
+			};
+
+			rcar_sound,ctu {
+				ctu00: ctu-0 { };
+				ctu01: ctu-1 { };
+				ctu02: ctu-2 { };
+				ctu03: ctu-3 { };
+				ctu10: ctu-4 { };
+				ctu11: ctu-5 { };
+				ctu12: ctu-6 { };
+				ctu13: ctu-7 { };
+			};
+
+			rcar_sound,src {
+				src-0 {
+					status = "disabled";
+				};
+				src1: src-1 {
+					interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x87>, <&audma0 0x9c>;
+					dma-names = "rx", "tx";
+				};
+				src2: src-2 {
+					interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x89>, <&audma0 0x9e>;
+					dma-names = "rx", "tx";
+				};
+				src3: src-3 {
+					interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x8b>, <&audma0 0xa0>;
+					dma-names = "rx", "tx";
+				};
+				src4: src-4 {
+					interrupts = <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x8d>, <&audma0 0xb0>;
+					dma-names = "rx", "tx";
+				};
+				src5: src-5 {
+					interrupts = <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x8f>, <&audma0 0xb2>;
+					dma-names = "rx", "tx";
+				};
+				src6: src-6 {
+					interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x91>, <&audma0 0xb4>;
+					dma-names = "rx", "tx";
+				};
+			};
+
+			rcar_sound,ssiu {
+				ssiu00: ssiu-0 {
+					dmas = <&audma0 0x15>, <&audma0 0x16>;
+					dma-names = "rx", "tx";
+				};
+				ssiu01: ssiu-1 {
+					dmas = <&audma0 0x35>, <&audma0 0x36>;
+					dma-names = "rx", "tx";
+				};
+				ssiu02: ssiu-2 {
+					dmas = <&audma0 0x37>, <&audma0 0x38>;
+					dma-names = "rx", "tx";
+				};
+				ssiu03: ssiu-3 {
+					dmas = <&audma0 0x47>, <&audma0 0x48>;
+					dma-names = "rx", "tx";
+				};
+				ssiu10: ssiu-4 {
+					dmas = <&audma0 0x3F>, <&audma0 0x40>;
+					dma-names = "rx", "tx";
+				};
+				ssiu11: ssiu-5 {
+					dmas = <&audma0 0x43>, <&audma0 0x44>;
+					dma-names = "rx", "tx";
+				};
+				ssiu12: ssiu-6 {
+					dmas = <&audma0 0x4F>, <&audma0 0x50>;
+					dma-names = "rx", "tx";
+				};
+				ssiu13: ssiu-7 {
+					dmas = <&audma0 0x53>, <&audma0 0x54>;
+					dma-names = "rx", "tx";
+				};
+				ssiu20: ssiu-8 {
+					dmas = <&audma0 0x49>, <&audma0 0x4a>;
+					dma-names = "rx", "tx";
+				};
+				ssiu21: ssiu-9 {
+					dmas = <&audma0 0x4B>, <&audma0 0x4C>;
+					dma-names = "rx", "tx";
+				};
+				ssiu22: ssiu-10 {
+					dmas = <&audma0 0x57>, <&audma0 0x58>;
+					dma-names = "rx", "tx";
+				};
+				ssiu23: ssiu-11 {
+					dmas = <&audma0 0x59>, <&audma0 0x5A>;
+					dma-names = "rx", "tx";
+				};
+				ssiu30: ssiu-12 {
+					dmas = <&audma0 0x5F>, <&audma0 0x60>;
+					dma-names = "rx", "tx";
+				};
+				ssiu40: ssiu-13 {
+					dmas = <&audma0 0xC3>, <&audma0 0xC4>;
+					dma-names = "rx", "tx";
+				};
+				ssiu50: ssiu-14 {
+					dmas = <&audma0 0xC7>, <&audma0 0xC8>;
+					dma-names = "rx", "tx";
+				};
+				ssiu60: ssiu-15 {
+					dmas = <&audma0 0xCB>, <&audma0 0xCC>;
+					dma-names = "rx", "tx";
+				};
+				ssiu70: ssiu-16 {
+					dmas = <&audma0 0x63>, <&audma0 0x64>;
+					dma-names = "rx", "tx";
+				};
+				ssiu80: ssiu-17 {
+					dmas = <&audma0 0x67>, <&audma0 0x68>;
+					dma-names = "rx", "tx";
+				};
+				ssiu90: ssiu-18 {
+					dmas = <&audma0 0x6B>, <&audma0 0x6C>;
+					dma-names = "rx", "tx";
+				};
+				ssiu91: ssiu-19 {
+					dmas = <&audma0 0x6D>, <&audma0 0x6E>;
+					dma-names = "rx", "tx";
+				};
+				ssiu92: ssiu-20 {
+					dmas = <&audma0 0xCF>, <&audma0 0xCE>;
+					dma-names = "rx", "tx";
+				};
+				ssiu93: ssiu-21 {
+					dmas = <&audma0 0xEB>, <&audma0 0xEC>;
+					dma-names = "rx", "tx";
+				};
+			};
+
+			rcar_sound,ssi {
+				ssi0: ssi-0 {
+					interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x01>, <&audma0 0x02>;
+					dma-names = "rx", "tx";
+				};
+				ssi1: ssi-1 {
+					 interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x03>, <&audma0 0x04>;
+					dma-names = "rx", "tx";
+				};
+				ssi2: ssi-2 {
+					interrupts = <GIC_SPI 372 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x05>, <&audma0 0x06>;
+					dma-names = "rx", "tx";
+				};
+				ssi3: ssi-3 {
+					interrupts = <GIC_SPI 373 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x07>, <&audma0 0x08>;
+					dma-names = "rx", "tx";
+				};
+				ssi4: ssi-4 {
+					interrupts = <GIC_SPI 374 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x09>, <&audma0 0x0a>;
+					dma-names = "rx", "tx";
+				};
+				ssi5: ssi-5 {
+					interrupts = <GIC_SPI 375 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x0b>, <&audma0 0x0c>;
+					dma-names = "rx", "tx";
+				};
+				ssi6: ssi-6 {
+					interrupts = <GIC_SPI 376 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x0d>, <&audma0 0x0e>;
+					dma-names = "rx", "tx";
+				};
+				ssi7: ssi-7 {
+					interrupts = <GIC_SPI 377 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x0f>, <&audma0 0x10>;
+					dma-names = "rx", "tx";
+				};
+				ssi8: ssi-8 {
+					interrupts = <GIC_SPI 378 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x11>, <&audma0 0x12>;
+					dma-names = "rx", "tx";
+				};
+				ssi9: ssi-9 {
+					interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>;
+					dmas = <&audma0 0x13>, <&audma0 0x14>;
+					dma-names = "rx", "tx";
+				};
+			};
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 07/20] ARM: dts: r8a77470: Add Audio-DMAC support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (5 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 06/20] ARM: dts: r8a77470: Add Audio support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 08/20] ARM: dts: r8a77470: Add Ether support Cao Van Dong
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add audma0 node to dtsi for audio support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index a5a1918..9fc9f6a 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -1068,6 +1068,37 @@
 			};
 		};
 
+		audma0: dma-controller@ec700000 {
+			compatible = "renesas,dmac-r8a77470",
+				     "renesas,rcar-dmac";
+			reg = <0 0xec700000 0 0x10000>;
+			interrupts = <GIC_SPI 346 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 320 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 321 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 322 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 323 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 324 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 325 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 326 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 327 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 328 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 329 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 330 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 331 IRQ_TYPE_LEVEL_HIGH
+				      GIC_SPI 332 IRQ_TYPE_LEVEL_HIGH>;
+			interrupt-names = "error",
+					  "ch0", "ch1", "ch2", "ch3",
+					  "ch4", "ch5", "ch6", "ch7",
+					  "ch8", "ch9", "ch10", "ch11",
+					  "ch12";
+			clocks = <&cpg CPG_MOD 502>;
+			clock-names = "fck";
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 502>;
+			#dma-cells = <1>;
+			dma-channels = <13>;
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 08/20] ARM: dts: r8a77470: Add Ether support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (6 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 07/20] ARM: dts: r8a77470: Add Audio-DMAC support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:36   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 09/20] ARM: dts: r8a77470: Add VSP support Cao Van Dong
                   ` (13 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add ether node to dtsi for Ether support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 9fc9f6a..ae1dba0 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -1099,6 +1099,20 @@
 			dma-channels = <13>;
 		};
 
+		ether: ethernet@ee700000 {
+			compatible = "renesas,ether-r8a77470",
+				     "renesas,rcar-gen2-ether";
+			reg = <0 0xee700000 0 0x400>;
+			interrupts = <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 813>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 813>;
+			phy-mode = "rmii";
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "disabled";
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 09/20] ARM: dts: r8a77470: Add VSP support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (7 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 08/20] ARM: dts: r8a77470: Add Ether support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:41   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 10/20] ARM: dts: r8a77470: Add FDP1 support Cao Van Dong
                   ` (12 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add vsp nodes to dtsi for VSP support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index ae1dba0..2540bca 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -1113,6 +1113,24 @@
 			status = "disabled";
 		};
 
+		vsp@fe928000 {
+			compatible = "renesas,vsp1";
+			reg = <0 0xfe928000 0 0x8000>;
+			interrupts = <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 131>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 131>;
+		};
+
+		vsp@fe930000 {
+			compatible = "renesas,vsp1";
+			reg = <0 0xfe930000 0 0x8000>;
+			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 128>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 128>;
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 10/20] ARM: dts: r8a77470: Add FDP1 support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (8 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 09/20] ARM: dts: r8a77470: Add VSP support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:45   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 11/20] ARM: dts: r8a77470: Add LVDS support Cao Van Dong
                   ` (11 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add fdp1 node to dtsi for FDP1 support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 2540bca..7881516 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -1131,6 +1131,15 @@
 			resets = <&cpg 128>;
 		};
 
+		fdp1@fe940000 {
+			compatible = "renesas,fdp1";
+			reg = <0 0xfe940000 0 0x2400>;
+			interrupts = <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&cpg CPG_MOD 119>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 119>;
+		};
+
 		sdhi0: sd@ee100000 {
 			compatible = "renesas,sdhi-r8a77470",
 				     "renesas,rcar-gen2-sdhi";
-- 
2.7.4

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

* [PATCH v2 11/20] ARM: dts: r8a77470: Add LVDS support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (9 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 10/20] ARM: dts: r8a77470: Add FDP1 support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 12/20] ARM: dts: r8a77470: Add audio clocks Cao Van Dong
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

This patch is to add LVDS support for the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 7881516..9b65e49 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -1222,6 +1222,33 @@
 				port@2 {
 					reg = <2>;
 					du_out_lvds0: endpoint {
+						remote-endpoint = <&lvds0_in>;
+					};
+				};
+			};
+		};
+
+		lvds0: lvds@feb90000 {
+			compatible = "renesas,r8a77470-lvds";
+			reg = <0 0xfeb90000 0 0x1c>;
+			clocks = <&cpg CPG_MOD 726>;
+			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
+			resets = <&cpg 726>;
+			status = "disabled";
+
+			ports {
+				#address-cells = <1>;
+				#size-cells = <0>;
+
+				port@0 {
+					reg = <0>;
+					lvds0_in: endpoint {
+						remote-endpoint = <&du_out_lvds0>;
+					};
+				};
+				port@1 {
+					reg = <1>;
+					lvds0_out: endpoint {
 					};
 				};
 			};
-- 
2.7.4

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

* [PATCH v2 12/20] ARM: dts: r8a77470: Add audio clocks
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (10 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 11/20] ARM: dts: r8a77470: Add LVDS support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 13/20] ARM: dts: r8a77470: Add can clocks Cao Van Dong
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add audio_clk* nodes to dtsi for audio support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index 9b65e49..fcf8dd0 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -27,6 +27,27 @@
 		vin1 = &vin1;
 	};
 
+	/*
+	 * The external audio clocks are configured as 0 Hz fixed frequency
+	 * clocks by default.
+	 * Boards that provide audio clocks should override them.
+	 */
+	audio_clk_a: audio_clk_a {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <0>;
+	};
+	audio_clk_b: audio_clk_b {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <0>;
+	};
+	audio_clk_c: audio_clk_c {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <0>;
+	};
+
 	cpus {
 		#address-cells = <1>;
 		#size-cells = <0>;
-- 
2.7.4

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

* [PATCH v2 13/20] ARM: dts: r8a77470: Add can clocks
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (11 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 12/20] ARM: dts: r8a77470: Add audio clocks Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-11  7:54 ` [PATCH v2 14/20] dt-bindings: display: renesas: lvds: Add r8a77470 support Cao Van Dong
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add can_clk node to dtsi for can support on the RZ/G1C (r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 arch/arm/boot/dts/r8a77470.dtsi | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
index fcf8dd0..8a6bff9 100644
--- a/arch/arm/boot/dts/r8a77470.dtsi
+++ b/arch/arm/boot/dts/r8a77470.dtsi
@@ -48,6 +48,14 @@
 		clock-frequency = <0>;
 	};
 
+	/* External CAN clock */
+	can_clk: can {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		/* This value must be overridden by the board. */
+		clock-frequency = <0>;
+	};
+
 	cpus {
 		#address-cells = <1>;
 		#size-cells = <0>;
-- 
2.7.4

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

* [PATCH v2 14/20] dt-bindings: display: renesas: lvds: Add r8a77470 support
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (12 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 13/20] ARM: dts: r8a77470: Add can clocks Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 10:43   ` Simon Horman
  2019-04-11  7:54 ` [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings Cao Van Dong
                   ` (7 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Add lvds support and document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt | 1 +
 drivers/gpu/drm/rcar-du/rcar_lvds.c                               | 1 +
 2 files changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt b/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
index a720dbb..f720883 100644
--- a/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
+++ b/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
@@ -9,6 +9,7 @@ Required properties:
 - compatible : Shall contain one of
   - "renesas,r8a7743-lvds" for R8A7743 (RZ/G1M) compatible LVDS encoders
   - "renesas,r8a7744-lvds" for R8A7744 (RZ/G1N) compatible LVDS encoders
+  - "renesas,r8a77470-lvds" for R8A77470 (RZ/G1C) compatible LVDS encoders
   - "renesas,r8a774c0-lvds" for R8A774C0 (RZ/G2E) compatible LVDS encoders
   - "renesas,r8a7790-lvds" for R8A7790 (R-Car H2) compatible LVDS encoders
   - "renesas,r8a7791-lvds" for R8A7791 (R-Car M2-W) compatible LVDS encoders
diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c b/drivers/gpu/drm/rcar-du/rcar_lvds.c
index f7e4710..61a536f 100644
--- a/drivers/gpu/drm/rcar-du/rcar_lvds.c
+++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c
@@ -925,6 +925,7 @@ static const struct rcar_lvds_device_info rcar_lvds_r8a77995_info = {
 static const struct of_device_id rcar_lvds_of_table[] = {
 	{ .compatible = "renesas,r8a7743-lvds", .data = &rcar_lvds_gen2_info },
 	{ .compatible = "renesas,r8a7744-lvds", .data = &rcar_lvds_gen2_info },
+	{ .compatible = "renesas,r8a77470-lvds", .data = &rcar_lvds_gen2_info },
 	{ .compatible = "renesas,r8a774c0-lvds", .data = &rcar_lvds_r8a77990_info },
 	{ .compatible = "renesas,r8a7790-lvds", .data = &rcar_lvds_r8a7790_info },
 	{ .compatible = "renesas,r8a7791-lvds", .data = &rcar_lvds_gen2_info },
-- 
2.7.4

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

* [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (13 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 14/20] dt-bindings: display: renesas: lvds: Add r8a77470 support Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 10:53   ` Simon Horman
  2019-04-29 18:03     ` Rob Herring
  2019-04-11  7:54 ` [PATCH v2 16/20] ASoC: rsnd: " Cao Van Dong
                   ` (6 subsequent siblings)
  21 siblings, 2 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 Documentation/devicetree/bindings/media/rcar_vin.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
index aa217b0..a66b9fe 100644
--- a/Documentation/devicetree/bindings/media/rcar_vin.txt
+++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
@@ -13,6 +13,7 @@ on Gen3 and RZ/G2 platforms to a CSI-2 receiver.
    - "renesas,vin-r8a7743" for the R8A7743 device
    - "renesas,vin-r8a7744" for the R8A7744 device
    - "renesas,vin-r8a7745" for the R8A7745 device
+   - "renesas,vin-r8a77470" for the R8A77470 device
    - "renesas,vin-r8a774a1" for the R8A774A1 device
    - "renesas,vin-r8a774c0" for the R8A774C0 device
    - "renesas,vin-r8a7778" for the R8A7778 device
-- 
2.7.4

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

* [PATCH v2 16/20] ASoC: rsnd: Document r8a77470 bindings
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (14 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-15  8:53     ` Mark Brown
  2019-04-11  7:54 ` [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings Cao Van Dong
                   ` (5 subsequent siblings)
  21 siblings, 1 reply; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 Documentation/devicetree/bindings/sound/renesas,rsnd.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
index b34afa6..5c52182 100644
--- a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
+++ b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
@@ -266,6 +266,7 @@ Required properties:
 				    - "renesas,rcar_sound-r8a7743" (RZ/G1M)
 				    - "renesas,rcar_sound-r8a7744" (RZ/G1N)
 				    - "renesas,rcar_sound-r8a7745" (RZ/G1E)
+				    - "renesas,rcar_sound-r8a77470" (RZ/G1C)
 				    - "renesas,rcar_sound-r8a774a1" (RZ/G2M)
 				    - "renesas,rcar_sound-r8a774c0" (RZ/G2E)
 				    - "renesas,rcar_sound-r8a7778" (R-Car M1A)
-- 
2.7.4

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

* [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (15 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 16/20] ASoC: rsnd: " Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 10:58   ` Simon Horman
  2019-04-29 18:05     ` Rob Herring
  2019-04-11  7:54 ` [PATCH v2 18/20] sh_eth: " Cao Van Dong
                   ` (4 subsequent siblings)
  21 siblings, 2 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt b/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt
index fbd6a4f..cba6ace 100644
--- a/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt
+++ b/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt
@@ -5,6 +5,7 @@ Required Properties:
  - "renesas,pwm-r8a7743": for RZ/G1M
  - "renesas,pwm-r8a7744": for RZ/G1N
  - "renesas,pwm-r8a7745": for RZ/G1E
+ - "renesas,pwm-r8a77470": for RZ/G1C
  - "renesas,pwm-r8a774a1": for RZ/G2M
  - "renesas,pwm-r8a774c0": for RZ/G2E
  - "renesas,pwm-r8a7778": for R-Car M1A
-- 
2.7.4

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

* [PATCH v2 18/20] sh_eth: Document r8a77470 bindings
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (16 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:05   ` Simon Horman
  2019-04-29 18:05     ` Rob Herring
  2019-04-11  7:54 ` [PATCH v2 19/20] spi: sh-msiof: " Cao Van Dong
                   ` (3 subsequent siblings)
  21 siblings, 2 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 Documentation/devicetree/bindings/net/sh_eth.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/net/sh_eth.txt b/Documentation/devicetree/bindings/net/sh_eth.txt
index abc3627..b184b29 100644
--- a/Documentation/devicetree/bindings/net/sh_eth.txt
+++ b/Documentation/devicetree/bindings/net/sh_eth.txt
@@ -8,6 +8,7 @@ Required properties:
 	      "renesas,gether-r8a7740" if the device is a part of R8A7740 SoC.
 	      "renesas,ether-r8a7743"  if the device is a part of R8A7743 SoC.
 	      "renesas,ether-r8a7745"  if the device is a part of R8A7745 SoC.
+	      "renesas,ether-r8a77470"  if the device is a part of R8A77470 SoC.
 	      "renesas,ether-r8a7778"  if the device is a part of R8A7778 SoC.
 	      "renesas,ether-r8a7779"  if the device is a part of R8A7779 SoC.
 	      "renesas,ether-r8a7790"  if the device is a part of R8A7790 SoC.
-- 
2.7.4

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

* [PATCH v2 19/20] spi: sh-msiof: Document r8a77470 bindings
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (17 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 18/20] sh_eth: " Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:10   ` Simon Horman
  2019-04-15  8:53     ` Mark Brown
  2019-04-11  7:54 ` [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings Cao Van Dong
                   ` (2 subsequent siblings)
  21 siblings, 2 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 Documentation/devicetree/bindings/spi/sh-msiof.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/spi/sh-msiof.txt b/Documentation/devicetree/bindings/spi/sh-msiof.txt
index 37cf695..18e14ee 100644
--- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
+++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
@@ -4,6 +4,7 @@ Required properties:
 - compatible           : "renesas,msiof-r8a7743" (RZ/G1M)
 			 "renesas,msiof-r8a7744" (RZ/G1N)
 			 "renesas,msiof-r8a7745" (RZ/G1E)
+			 "renesas,msiof-r8a77470" (RZ/G1C)
 			 "renesas,msiof-r8a774a1" (RZ/G2M)
 			 "renesas,msiof-r8a774c0" (RZ/G2E)
 			 "renesas,msiof-r8a7790" (R-Car H2)
-- 
2.7.4

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

* [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
                   ` (18 preceding siblings ...)
  2019-04-11  7:54 ` [PATCH v2 19/20] spi: sh-msiof: " Cao Van Dong
@ 2019-04-11  7:54 ` Cao Van Dong
  2019-04-12 11:17   ` Simon Horman
  2019-04-29 18:05     ` Rob Herring
  2019-04-11  8:30   ` Chris Paterson
  2019-04-11 15:25   ` Niklas Söderlund
  21 siblings, 2 replies; 56+ messages in thread
From: Cao Van Dong @ 2019-04-11  7:54 UTC (permalink / raw)
  To: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das
  Cc: yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan, cv-dong

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
---
 Documentation/devicetree/bindings/net/can/rcar_can.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/net/can/rcar_can.txt b/Documentation/devicetree/bindings/net/can/rcar_can.txt
index 9936b9e..a5d57da 100644
--- a/Documentation/devicetree/bindings/net/can/rcar_can.txt
+++ b/Documentation/devicetree/bindings/net/can/rcar_can.txt
@@ -5,6 +5,7 @@ Required properties:
 - compatible: "renesas,can-r8a7743" if CAN controller is a part of R8A7743 SoC.
 	      "renesas,can-r8a7744" if CAN controller is a part of R8A7744 SoC.
 	      "renesas,can-r8a7745" if CAN controller is a part of R8A7745 SoC.
+	      "renesas,can-r8a77470" if CAN controller is a part of R8A77470 SoC.
 	      "renesas,can-r8a774a1" if CAN controller is a part of R8A774A1 SoC.
 	      "renesas,can-r8a7778" if CAN controller is a part of R8A7778 SoC.
 	      "renesas,can-r8a7779" if CAN controller is a part of R8A7779 SoC.
-- 
2.7.4

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

* RE: [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
@ 2019-04-11  8:30   ` Chris Paterson
  2019-04-11  7:54 ` [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support Cao Van Dong
                     ` (20 subsequent siblings)
  21 siblings, 0 replies; 56+ messages in thread
From: Chris Paterson @ 2019-04-11  8:30 UTC (permalink / raw)
  To: Cao Van Dong, linux-renesas-soc, broonie, geert+renesas,
	horms+renesas, devicetree, Biju Das
  Cc: Yoshihiro Shimoda, Kuninori Morimoto, hideo inayoshi, nv-dung, na-hoan

Hello Cao,

> From: devicetree-owner@vger.kernel.org <devicetree-owner@vger.kernel.org>
> On Behalf Of Cao Van Dong
> Sent: 11 April 2019 08:54
> 
> Dear everyone,
> 
> This series adds HSCIF,MSIOF,PWM,CAN,VIN,Audio,Audio-
> DMAC,Ether,VSP,FDP1,LVDS support
> for the RZ/G1C (r8a77470) SoC. It is based on the renesas-drivers-2019-04-02-
> v5.1-rc3 tag

Thank you for your work to upstream more support for the RZ/G1C!

> of renesas-drivers tree. Currently, I only add patches to the tree and compiled.
> Unfortunately, RZ/G1C board is not available, so I have not tested these patches
> on this board yet.
> 
> cc Biju,
> I know it is very difficult. however I still want to ask if you can help me test
> them?
The problem here is that Biju and the team only have iwg23s-sbc boards [1], which only expose these interfaces on external headers, in many cases without the require transceivers etc., meaning that testing is difficult.

This is why we omitted them from the initial RZ/G1C upstreaming.

Some interfaces are pretty low risk, so the maintainers may well accept some of your patches without testing I guess?

[1] https://www.iwavesystems.com/product/single-board-computer/rzg1c/rz-g1c-single-board-computer.html

> If possible, I will send the .dts file separately to you.
I think you'd also need PFC changes.

Kind regards, Chris

> Because I am known you can be available this board. Thanks!
> 
> Cao Van Dong (20):
>   ARM: dts: r8a77470: Add HSCIF support
>   ARM: dts: r8a77470: Add MSIOF support
>   ARM: dts: r8a77470: Add PWM support
>   ARM: dts: r8a77470: Add CAN support
>   ARM: dts: r8a77470: Add VIN support
>   ARM: dts: r8a77470: Add Audio support
>   ARM: dts: r8a77470: Add Audio-DMAC support
>   ARM: dts: r8a77470: Add Ether support
>   ARM: dts: r8a77470: Add VSP support
>   ARM: dts: r8a77470: Add FDP1 support
>   ARM: dts: r8a77470: Add LVDS support
>   ARM: dts: r8a77470: Add audio clocks
>   ARM: dts: r8a77470: Add can clocks
>   dt-bindings: display: renesas: lvds: Add r8a77470 support
>   media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
>   ASoC: rsnd: Document r8a77470 bindings
>   dt-bindings: pwm: Document r8a77470 bindings
>   sh_eth: Document r8a77470 bindings
>   spi: sh-msiof: Document r8a77470 bindings
>   dt-bindings: can: rcar_can: Document r8a77470 bindings
> 
>  .../bindings/display/bridge/renesas,lvds.txt       |   1 +
>  .../devicetree/bindings/media/rcar_vin.txt         |   1 +
>  .../devicetree/bindings/net/can/rcar_can.txt       |   1 +
>  Documentation/devicetree/bindings/net/sh_eth.txt   |   1 +
>  .../devicetree/bindings/pwm/renesas,pwm-rcar.txt   |   1 +
>  .../devicetree/bindings/sound/renesas,rsnd.txt     |   1 +
>  Documentation/devicetree/bindings/spi/sh-msiof.txt |   1 +
>  arch/arm/boot/dts/r8a77470.dtsi                    | 608 +++++++++++++++++++++
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                |   1 +
>  9 files changed, 616 insertions(+)
> 
> --
> 2.7.4

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

* RE: [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC
@ 2019-04-11  8:30   ` Chris Paterson
  0 siblings, 0 replies; 56+ messages in thread
From: Chris Paterson @ 2019-04-11  8:30 UTC (permalink / raw)
  To: Cao Van Dong, linux-renesas-soc, broonie, geert+renesas,
	horms+renesas, devicetree, Biju Das
  Cc: Yoshihiro Shimoda, Kuninori Morimoto, hideo inayoshi, nv-dung, na-hoan

Hello Cao,

> From: devicetree-owner@vger.kernel.org <devicetree-owner@vger.kernel.org>
> On Behalf Of Cao Van Dong
> Sent: 11 April 2019 08:54
> 
> Dear everyone,
> 
> This series adds HSCIF,MSIOF,PWM,CAN,VIN,Audio,Audio-
> DMAC,Ether,VSP,FDP1,LVDS support
> for the RZ/G1C (r8a77470) SoC. It is based on the renesas-drivers-2019-04-02-
> v5.1-rc3 tag

Thank you for your work to upstream more support for the RZ/G1C!

> of renesas-drivers tree. Currently, I only add patches to the tree and compiled.
> Unfortunately, RZ/G1C board is not available, so I have not tested these patches
> on this board yet.
> 
> cc Biju,
> I know it is very difficult. however I still want to ask if you can help me test
> them?
The problem here is that Biju and the team only have iwg23s-sbc boards [1], which only expose these interfaces on external headers, in many cases without the require transceivers etc., meaning that testing is difficult.

This is why we omitted them from the initial RZ/G1C upstreaming.

Some interfaces are pretty low risk, so the maintainers may well accept some of your patches without testing I guess?

[1] https://www.iwavesystems.com/product/single-board-computer/rzg1c/rz-g1c-single-board-computer.html

> If possible, I will send the .dts file separately to you.
I think you'd also need PFC changes.

Kind regards, Chris

> Because I am known you can be available this board. Thanks!
> 
> Cao Van Dong (20):
>   ARM: dts: r8a77470: Add HSCIF support
>   ARM: dts: r8a77470: Add MSIOF support
>   ARM: dts: r8a77470: Add PWM support
>   ARM: dts: r8a77470: Add CAN support
>   ARM: dts: r8a77470: Add VIN support
>   ARM: dts: r8a77470: Add Audio support
>   ARM: dts: r8a77470: Add Audio-DMAC support
>   ARM: dts: r8a77470: Add Ether support
>   ARM: dts: r8a77470: Add VSP support
>   ARM: dts: r8a77470: Add FDP1 support
>   ARM: dts: r8a77470: Add LVDS support
>   ARM: dts: r8a77470: Add audio clocks
>   ARM: dts: r8a77470: Add can clocks
>   dt-bindings: display: renesas: lvds: Add r8a77470 support
>   media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
>   ASoC: rsnd: Document r8a77470 bindings
>   dt-bindings: pwm: Document r8a77470 bindings
>   sh_eth: Document r8a77470 bindings
>   spi: sh-msiof: Document r8a77470 bindings
>   dt-bindings: can: rcar_can: Document r8a77470 bindings
> 
>  .../bindings/display/bridge/renesas,lvds.txt       |   1 +
>  .../devicetree/bindings/media/rcar_vin.txt         |   1 +
>  .../devicetree/bindings/net/can/rcar_can.txt       |   1 +
>  Documentation/devicetree/bindings/net/sh_eth.txt   |   1 +
>  .../devicetree/bindings/pwm/renesas,pwm-rcar.txt   |   1 +
>  .../devicetree/bindings/sound/renesas,rsnd.txt     |   1 +
>  Documentation/devicetree/bindings/spi/sh-msiof.txt |   1 +
>  arch/arm/boot/dts/r8a77470.dtsi                    | 608 +++++++++++++++++++++
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                |   1 +
>  9 files changed, 616 insertions(+)
> 
> --
> 2.7.4


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

* Re: [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC
  2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
@ 2019-04-11 15:25   ` Niklas Söderlund
  2019-04-11  7:54 ` [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support Cao Van Dong
                     ` (20 subsequent siblings)
  21 siblings, 0 replies; 56+ messages in thread
From: Niklas Söderlund @ 2019-04-11 15:25 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan

Hi Cao,

On 2019-04-11 16:54:02 +0900, Cao Van Dong wrote:
> Dear everyone,
> 
> This series adds HSCIF,MSIOF,PWM,CAN,VIN,Audio,Audio-DMAC,Ether,VSP,FDP1,LVDS support 
> for the RZ/G1C (r8a77470) SoC. It is based on the renesas-drivers-2019-04-02-v5.1-rc3 tag 
> of renesas-drivers tree. Currently, I only add patches to the tree and compiled. 
> Unfortunately, RZ/G1C board is not available, so I have not tested these patches on this board yet.
> 
> cc Biju,
> I know it is very difficult. however I still want to ask if you can help me test them?
> If possible, I will send the .dts file separately to you.
> Because I am known you can be available this board. Thanks!
> 
> Cao Van Dong (20):
>   ARM: dts: r8a77470: Add HSCIF support
>   ARM: dts: r8a77470: Add MSIOF support
>   ARM: dts: r8a77470: Add PWM support
>   ARM: dts: r8a77470: Add CAN support
>   ARM: dts: r8a77470: Add VIN support

The changes for VIN looks OK but as Chris points out it would be nice if 
they could be tested.

>   ARM: dts: r8a77470: Add Audio support
>   ARM: dts: r8a77470: Add Audio-DMAC support
>   ARM: dts: r8a77470: Add Ether support
>   ARM: dts: r8a77470: Add VSP support
>   ARM: dts: r8a77470: Add FDP1 support
>   ARM: dts: r8a77470: Add LVDS support
>   ARM: dts: r8a77470: Add audio clocks
>   ARM: dts: r8a77470: Add can clocks
>   dt-bindings: display: renesas: lvds: Add r8a77470 support
>   media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
>   ASoC: rsnd: Document r8a77470 bindings
>   dt-bindings: pwm: Document r8a77470 bindings
>   sh_eth: Document r8a77470 bindings
>   spi: sh-msiof: Document r8a77470 bindings
>   dt-bindings: can: rcar_can: Document r8a77470 bindings

Nit-pick: I would first add the bindings to the documentation and then 
to the dts files.

> 
>  .../bindings/display/bridge/renesas,lvds.txt       |   1 +
>  .../devicetree/bindings/media/rcar_vin.txt         |   1 +
>  .../devicetree/bindings/net/can/rcar_can.txt       |   1 +
>  Documentation/devicetree/bindings/net/sh_eth.txt   |   1 +
>  .../devicetree/bindings/pwm/renesas,pwm-rcar.txt   |   1 +
>  .../devicetree/bindings/sound/renesas,rsnd.txt     |   1 +
>  Documentation/devicetree/bindings/spi/sh-msiof.txt |   1 +
>  arch/arm/boot/dts/r8a77470.dtsi                    | 608 +++++++++++++++++++++
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                |   1 +
>  9 files changed, 616 insertions(+)
> 
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC
@ 2019-04-11 15:25   ` Niklas Söderlund
  0 siblings, 0 replies; 56+ messages in thread
From: Niklas Söderlund @ 2019-04-11 15:25 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan

Hi Cao,

On 2019-04-11 16:54:02 +0900, Cao Van Dong wrote:
> Dear everyone,
> 
> This series adds HSCIF,MSIOF,PWM,CAN,VIN,Audio,Audio-DMAC,Ether,VSP,FDP1,LVDS support 
> for the RZ/G1C (r8a77470) SoC. It is based on the renesas-drivers-2019-04-02-v5.1-rc3 tag 
> of renesas-drivers tree. Currently, I only add patches to the tree and compiled. 
> Unfortunately, RZ/G1C board is not available, so I have not tested these patches on this board yet.
> 
> cc Biju,
> I know it is very difficult. however I still want to ask if you can help me test them?
> If possible, I will send the .dts file separately to you.
> Because I am known you can be available this board. Thanks!
> 
> Cao Van Dong (20):
>   ARM: dts: r8a77470: Add HSCIF support
>   ARM: dts: r8a77470: Add MSIOF support
>   ARM: dts: r8a77470: Add PWM support
>   ARM: dts: r8a77470: Add CAN support
>   ARM: dts: r8a77470: Add VIN support

The changes for VIN looks OK but as Chris points out it would be nice if 
they could be tested.

>   ARM: dts: r8a77470: Add Audio support
>   ARM: dts: r8a77470: Add Audio-DMAC support
>   ARM: dts: r8a77470: Add Ether support
>   ARM: dts: r8a77470: Add VSP support
>   ARM: dts: r8a77470: Add FDP1 support
>   ARM: dts: r8a77470: Add LVDS support
>   ARM: dts: r8a77470: Add audio clocks
>   ARM: dts: r8a77470: Add can clocks
>   dt-bindings: display: renesas: lvds: Add r8a77470 support
>   media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
>   ASoC: rsnd: Document r8a77470 bindings
>   dt-bindings: pwm: Document r8a77470 bindings
>   sh_eth: Document r8a77470 bindings
>   spi: sh-msiof: Document r8a77470 bindings
>   dt-bindings: can: rcar_can: Document r8a77470 bindings

Nit-pick: I would first add the bindings to the documentation and then 
to the dts files.

> 
>  .../bindings/display/bridge/renesas,lvds.txt       |   1 +
>  .../devicetree/bindings/media/rcar_vin.txt         |   1 +
>  .../devicetree/bindings/net/can/rcar_can.txt       |   1 +
>  Documentation/devicetree/bindings/net/sh_eth.txt   |   1 +
>  .../devicetree/bindings/pwm/renesas,pwm-rcar.txt   |   1 +
>  .../devicetree/bindings/sound/renesas,rsnd.txt     |   1 +
>  Documentation/devicetree/bindings/spi/sh-msiof.txt |   1 +
>  arch/arm/boot/dts/r8a77470.dtsi                    | 608 +++++++++++++++++++++
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                |   1 +
>  9 files changed, 616 insertions(+)
> 
> -- 
> 2.7.4
> 

-- 
Regards,
Niklas Söderlund

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

* Re: [PATCH v2 14/20] dt-bindings: display: renesas: lvds: Add r8a77470 support
  2019-04-11  7:54 ` [PATCH v2 14/20] dt-bindings: display: renesas: lvds: Add r8a77470 support Cao Van Dong
@ 2019-04-12 10:43   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 10:43 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:16PM +0900, Cao Van Dong wrote:
> Add lvds support and document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

The register layout of the LVDS module on the RZ/G1C (r8a77470) seems
different to that of, f.e. the R8A7791 (R-Car M2-W). Are you sure this
is the right driver for this IP block?

> ---
>  Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt | 1 +
>  drivers/gpu/drm/rcar-du/rcar_lvds.c                               | 1 +
>  2 files changed, 2 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt b/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
> index a720dbb..f720883 100644
> --- a/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
> +++ b/Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
> @@ -9,6 +9,7 @@ Required properties:
>  - compatible : Shall contain one of
>    - "renesas,r8a7743-lvds" for R8A7743 (RZ/G1M) compatible LVDS encoders
>    - "renesas,r8a7744-lvds" for R8A7744 (RZ/G1N) compatible LVDS encoders
> +  - "renesas,r8a77470-lvds" for R8A77470 (RZ/G1C) compatible LVDS encoders
>    - "renesas,r8a774c0-lvds" for R8A774C0 (RZ/G2E) compatible LVDS encoders
>    - "renesas,r8a7790-lvds" for R8A7790 (R-Car H2) compatible LVDS encoders
>    - "renesas,r8a7791-lvds" for R8A7791 (R-Car M2-W) compatible LVDS encoders
> diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> index f7e4710..61a536f 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_lvds.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> @@ -925,6 +925,7 @@ static const struct rcar_lvds_device_info rcar_lvds_r8a77995_info = {
>  static const struct of_device_id rcar_lvds_of_table[] = {
>  	{ .compatible = "renesas,r8a7743-lvds", .data = &rcar_lvds_gen2_info },
>  	{ .compatible = "renesas,r8a7744-lvds", .data = &rcar_lvds_gen2_info },
> +	{ .compatible = "renesas,r8a77470-lvds", .data = &rcar_lvds_gen2_info },
>  	{ .compatible = "renesas,r8a774c0-lvds", .data = &rcar_lvds_r8a77990_info },
>  	{ .compatible = "renesas,r8a7790-lvds", .data = &rcar_lvds_r8a7790_info },
>  	{ .compatible = "renesas,r8a7791-lvds", .data = &rcar_lvds_gen2_info },
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings Cao Van Dong
@ 2019-04-12 10:53   ` Simon Horman
  2019-04-29 18:03     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 10:53 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:17PM +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

I think it is worth mentioning that no driver change is required
renesas,rcar-gen2-vin will activate the right code.

> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

I think this patch should be reposted including the following recipients.

Mauro Carvalho Chehab <mchehab@kernel.org>
Rob Herring <robh+dt@kernel.org>
Mark Rutland <mark.rutland@arm.com>
linux-media@vger.kernel.org

As well as the following you already have:

linux-renesas-soc@vger.kernel.org
devicetree@vger.kernel.org

> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/media/rcar_vin.txt b/Documentation/devicetree/bindings/media/rcar_vin.txt
> index aa217b0..a66b9fe 100644
> --- a/Documentation/devicetree/bindings/media/rcar_vin.txt
> +++ b/Documentation/devicetree/bindings/media/rcar_vin.txt
> @@ -13,6 +13,7 @@ on Gen3 and RZ/G2 platforms to a CSI-2 receiver.
>     - "renesas,vin-r8a7743" for the R8A7743 device
>     - "renesas,vin-r8a7744" for the R8A7744 device
>     - "renesas,vin-r8a7745" for the R8A7745 device
> +   - "renesas,vin-r8a77470" for the R8A77470 device
>     - "renesas,vin-r8a774a1" for the R8A774A1 device
>     - "renesas,vin-r8a774c0" for the R8A774C0 device
>     - "renesas,vin-r8a7778" for the R8A7778 device
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings Cao Van Dong
@ 2019-04-12 10:58   ` Simon Horman
  2019-04-29 18:05     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 10:58 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:19PM +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

I think it is worth mentioning that no driver update is required because
using the renesas,pwm-rcar fallback compat string will activate the correct
code.

I think this patch should be reposted including the following recipients:

Thierry Reding <thierry.reding@gmail.com>
Rob Herring <robh+dt@kernel.org>
Mark Rutland <mark.rutland@arm.com>
linux-pwm@vger.kernel.org

As well as the following that are already included:
linux-renesas-soc@vger.kernel.org
devicetree@vger.kernel.org

> ---
>  Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt b/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt
> index fbd6a4f..cba6ace 100644
> --- a/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt
> +++ b/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt
> @@ -5,6 +5,7 @@ Required Properties:
>   - "renesas,pwm-r8a7743": for RZ/G1M
>   - "renesas,pwm-r8a7744": for RZ/G1N
>   - "renesas,pwm-r8a7745": for RZ/G1E
> + - "renesas,pwm-r8a77470": for RZ/G1C
>   - "renesas,pwm-r8a774a1": for RZ/G2M
>   - "renesas,pwm-r8a774c0": for RZ/G2E
>   - "renesas,pwm-r8a7778": for R-Car M1A
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 18/20] sh_eth: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 18/20] sh_eth: " Cao Van Dong
@ 2019-04-12 11:05   ` Simon Horman
  2019-04-29 18:05     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:05 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

Hi Dong-san,

On Thu, Apr 11, 2019 at 04:54:20PM +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

I think it would be worth mentioning that no driver changes are required
because the renesas,rcar-gen2-ether fallaback compatibility string
will activate the correct code.

> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>


I think this should be reposted including the following recipients:

"David S. Miller" <davem@davemloft.net>
Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Rob Herring <robh+dt@kernel.org>
Mark Rutland <mark.rutland@arm.com>
netdev@vger.kernel.org

As well as the following that are already included:
linux-renesas-soc@vger.kernel.org
devicetree@vger.kernel.org

The patch should be targeted at David Miller's net-next tree and thus
should have "net-next" included in the subject, something like this:

[PATCH net-next v2 18/20] sh_eth: Document r8a77470 bindings

Please see Documentation/networking/netdev-FAQ.rst for more information
on submitting patches to the Networking subsystem.

> ---
>  Documentation/devicetree/bindings/net/sh_eth.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/net/sh_eth.txt b/Documentation/devicetree/bindings/net/sh_eth.txt
> index abc3627..b184b29 100644
> --- a/Documentation/devicetree/bindings/net/sh_eth.txt
> +++ b/Documentation/devicetree/bindings/net/sh_eth.txt
> @@ -8,6 +8,7 @@ Required properties:
>  	      "renesas,gether-r8a7740" if the device is a part of R8A7740 SoC.
>  	      "renesas,ether-r8a7743"  if the device is a part of R8A7743 SoC.
>  	      "renesas,ether-r8a7745"  if the device is a part of R8A7745 SoC.
> +	      "renesas,ether-r8a77470"  if the device is a part of R8A77470 SoC.
>  	      "renesas,ether-r8a7778"  if the device is a part of R8A7778 SoC.
>  	      "renesas,ether-r8a7779"  if the device is a part of R8A7779 SoC.
>  	      "renesas,ether-r8a7790"  if the device is a part of R8A7790 SoC.
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 19/20] spi: sh-msiof: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 19/20] spi: sh-msiof: " Cao Van Dong
@ 2019-04-12 11:10   ` Simon Horman
  2019-04-15  8:53     ` Mark Brown
  1 sibling, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:10 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

Hi Dong-san,

On Thu, Apr 11, 2019 at 04:54:21PM +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

I think it is worth mentioning that no driver change is required as the
renesas,rcar-gen2-msiof fallback compatibility string will activate the
correct code.

> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

I think this patch should be reposted including the following recipients:

Rob Herring <robh+dt@kernel.org>
Mark Rutland <mark.rutland@arm.com>
linux-spi@vger.kernel.org

As well as the following who are already included:

Mark Brown <broonie@kernel.org>
devicetree@vger.kernel.org
linux-renesas-soc@vger.kernel.org

> ---
>  Documentation/devicetree/bindings/spi/sh-msiof.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/spi/sh-msiof.txt b/Documentation/devicetree/bindings/spi/sh-msiof.txt
> index 37cf695..18e14ee 100644
> --- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
> +++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
> @@ -4,6 +4,7 @@ Required properties:
>  - compatible           : "renesas,msiof-r8a7743" (RZ/G1M)
>  			 "renesas,msiof-r8a7744" (RZ/G1N)
>  			 "renesas,msiof-r8a7745" (RZ/G1E)
> +			 "renesas,msiof-r8a77470" (RZ/G1C)
>  			 "renesas,msiof-r8a774a1" (RZ/G2M)
>  			 "renesas,msiof-r8a774c0" (RZ/G2E)
>  			 "renesas,msiof-r8a7790" (R-Car H2)
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings Cao Van Dong
@ 2019-04-12 11:17   ` Simon Horman
  2019-04-29 18:05     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:17 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

Hi Dong-san,

On Thu, Apr 11, 2019 at 04:54:22PM +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

I think it is worth mentioning that no driver update is required
because the renesas,rcar-gen2-can fallback compatibility string
with activate the correct code.

> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/net/can/rcar_can.txt | 1 +
>  1 file changed, 1 insertion(+)

As per the ouput of ./scripts/get_maintainer.pl I think this should be
reposted including the following recipients:

Wolfgang Grandegger <wg@grandegger.com>
Marc Kleine-Budde <mkl@pengutronix.de>
"David S. Miller" <davem@davemloft.net>
Rob Herring <robh+dt@kernel.org>
Mark Rutland <mark.rutland@arm.com>
linux-can@vger.kernel.org
netdev@vger.kernel.org

As well as the following that are already included:
linux-renesas-soc@vger.kernel.org
devicetree@vger.kernel.org

The patch should be targeted at David Miller's net-next tree and thus
should have "net-next" included in the subject, something like this:

[PATCH net-next v2 20/20] dt-bindings: can: rcar_can: Document r8a77470

Please see Documentation/networking/netdev-FAQ.rst for more information
on submitting patches to the Networking subsystem.

> 
> diff --git a/Documentation/devicetree/bindings/net/can/rcar_can.txt b/Documentation/devicetree/bindings/net/can/rcar_can.txt
> index 9936b9e..a5d57da 100644
> --- a/Documentation/devicetree/bindings/net/can/rcar_can.txt
> +++ b/Documentation/devicetree/bindings/net/can/rcar_can.txt
> @@ -5,6 +5,7 @@ Required properties:
>  - compatible: "renesas,can-r8a7743" if CAN controller is a part of R8A7743 SoC.
>  	      "renesas,can-r8a7744" if CAN controller is a part of R8A7744 SoC.
>  	      "renesas,can-r8a7745" if CAN controller is a part of R8A7745 SoC.
> +	      "renesas,can-r8a77470" if CAN controller is a part of R8A77470 SoC.
>  	      "renesas,can-r8a774a1" if CAN controller is a part of R8A774A1 SoC.
>  	      "renesas,can-r8a7778" if CAN controller is a part of R8A7778 SoC.
>  	      "renesas,can-r8a7779" if CAN controller is a part of R8A7779 SoC.
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support
  2019-04-11  7:54 ` [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support Cao Van Dong
@ 2019-04-12 11:22   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:22 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:04PM +0900, Cao Van Dong wrote:
> Add msiof{0|1|2} nodes to dtsi for MSIOF support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  arch/arm/boot/dts/r8a77470.dtsi | 51 +++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 51 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
> index 60bd79f..08a0b15 100644
> --- a/arch/arm/boot/dts/r8a77470.dtsi
> +++ b/arch/arm/boot/dts/r8a77470.dtsi
> @@ -20,6 +20,9 @@
>  		i2c2 = &i2c2;
>  		i2c3 = &i2c3;
>  		i2c4 = &i2c4;
> +		spi1 = &msiof0;
> +		spi2 = &msiof1;
> +		spi3 = &msiof2;
>  	};

Please do not add new aliases, we are moving away from this approach.
Otherwise the patch looks good to me.

>  
>  	cpus {
> @@ -636,6 +639,54 @@
>  			status = "disabled";
>  		};
>  
> +		msiof0: spi@e6e20000 {
> +			compatible = "renesas,msiof-r8a77470",
> +				     "renesas,rcar-gen2-msiof";
> +			reg = <0 0xe6e20000 0 0x0064>;
> +			interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 000>;
> +			dmas = <&dmac0 0x51>, <&dmac0 0x52>,
> +			       <&dmac1 0x51>, <&dmac1 0x52>;
> +			dma-names = "tx", "rx", "tx", "rx";
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +			resets = <&cpg 000>;
> +			status = "disabled";
> +		};
> +
> +		msiof1: spi@e6e10000 {
> +			compatible = "renesas,msiof-r8a77470",
> +				     "renesas,rcar-gen2-msiof";
> +			reg = <0 0xe6e10000 0 0x0064>;
> +			interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 208>;
> +			dmas = <&dmac0 0x55>, <&dmac0 0x56>,
> +			       <&dmac1 0x55>, <&dmac1 0x56>;
> +			dma-names = "tx", "rx", "tx", "rx";
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +			resets = <&cpg 208>;
> +			status = "disabled";
> +		};
> +
> +		msiof2: spi@e6e00000 {
> +			compatible = "renesas,msiof-r8a77470",
> +				     "renesas,rcar-gen2-msiof";
> +			reg = <0 0xe6e00000 0 0x0064>;
> +			interrupts = <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 205>;
> +			dmas = <&dmac0 0x41>, <&dmac0 0x42>,
> +			       <&dmac1 0x41>, <&dmac1 0x42>;
> +			dma-names = "tx", "rx", "tx", "rx";
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +			resets = <&cpg 205>;
> +			status = "disabled";
> +		};
> +
>  		sdhi0: sd@ee100000 {
>  			compatible = "renesas,sdhi-r8a77470",
>  				     "renesas,rcar-gen2-sdhi";
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 04/20] ARM: dts: r8a77470: Add CAN support
  2019-04-11  7:54 ` [PATCH v2 04/20] ARM: dts: r8a77470: Add CAN support Cao Van Dong
@ 2019-04-12 11:25   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:25 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

Hi Dong-san,

On Thu, Apr 11, 2019 at 04:54:06PM +0900, Cao Van Dong wrote:
> Add can{0|1} nodes to dtsi for CAN support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  arch/arm/boot/dts/r8a77470.dtsi | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
> index 7d1fe2f..97c51c5 100644
> --- a/arch/arm/boot/dts/r8a77470.dtsi
> +++ b/arch/arm/boot/dts/r8a77470.dtsi
> @@ -757,6 +757,32 @@
>  			status = "disabled";
>  		};
>  
> +		can0: can@e6e80000 {
> +			compatible = "renesas,can-r8a77470",
> +				     "renesas,rcar-gen2-can";
> +			reg = <0 0xe6e80000 0 0x1000>;
> +			interrupts = <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 916>,
> +				 <&cpg CPG_CORE R8A77470_CLK_RCAN>, <&can_clk>;
> +			clock-names = "clkp1", "clkp2", "can_clk";

This patch makes use of can_clk which does not exist.

I think a good solution to this problem would be to squash the
following patch into this one:

[PATCH v2 13/20] ARM: dts: r8a77470: Add can clocks

> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 916>;
> +			status = "disabled";
> +		};
> +
> +		can1: can@e6e88000 {
> +			compatible = "renesas,can-r8a77470",
> +				     "renesas,rcar-gen2-can";
> +			reg = <0 0xe6e88000 0 0x1000>;
> +			interrupts = <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 915>,
> +				 <&cpg CPG_CORE R8A77470_CLK_RCAN>, <&can_clk>;
> +			clock-names = "clkp1", "clkp2", "can_clk";
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 915>;
> +			status = "disabled";
> +		};
> +
>  		sdhi0: sd@ee100000 {
>  			compatible = "renesas,sdhi-r8a77470",
>  				     "renesas,rcar-gen2-sdhi";
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 05/20] ARM: dts: r8a77470: Add VIN support
  2019-04-11  7:54 ` [PATCH v2 05/20] ARM: dts: r8a77470: Add VIN support Cao Van Dong
@ 2019-04-12 11:26   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:26 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:07PM +0900, Cao Van Dong wrote:
> Add vin{0|1} nodes to dtsi for VIN support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  arch/arm/boot/dts/r8a77470.dtsi | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
> index 97c51c5..7d47d04 100644
> --- a/arch/arm/boot/dts/r8a77470.dtsi
> +++ b/arch/arm/boot/dts/r8a77470.dtsi
> @@ -23,6 +23,8 @@
>  		spi1 = &msiof0;
>  		spi2 = &msiof1;
>  		spi3 = &msiof2;
> +		vin0 = &vin0;
> +		vin1 = &vin1;
>  	};

Please do not add aliases like this.

I will go ahead and apply v1 of this patch which did not have the aliases.

>  
>  	cpus {
> @@ -783,6 +785,28 @@
>  			status = "disabled";
>  		};
>  
> +		vin0: video@e6ef0000 {
> +			compatible = "renesas,vin-r8a77470",
> +				     "renesas,rcar-gen2-vin";
> +			reg = <0 0xe6ef0000 0 0x1000>;
> +			interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 811>;
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 811>;
> +			status = "disabled";
> +		};
> +
> +		vin1: video@e6ef1000 {
> +			compatible = "renesas,vin-r8a77470",
> +				     "renesas,rcar-gen2-vin";
> +			reg = <0 0xe6ef1000 0 0x1000>;
> +			interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 810>;
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 810>;
> +			status = "disabled";
> +		};
> +
>  		sdhi0: sd@ee100000 {
>  			compatible = "renesas,sdhi-r8a77470",
>  				     "renesas,rcar-gen2-sdhi";
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 06/20] ARM: dts: r8a77470: Add Audio support
  2019-04-11  7:54 ` [PATCH v2 06/20] ARM: dts: r8a77470: Add Audio support Cao Van Dong
@ 2019-04-12 11:31   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:31 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:08PM +0900, Cao Van Dong wrote:
> Add rcar_sound node to dtsi for Audio support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

This patch makes use of nodes added by subsequent patches.

Please make sure that all patches compile cleanly in the order they are
supplied.

In this case a good solution may be to to squash the following patches into
this patch:

[PATCH v2 07/20] ARM: dts: r8a77470: Add Audio-DMAC support
[PATCH v2 12/20] ARM: dts: r8a77470: Add audio clocks

> ---
>  arch/arm/boot/dts/r8a77470.dtsi | 261 ++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 261 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
> index 7d47d04..a5a1918 100644
> --- a/arch/arm/boot/dts/r8a77470.dtsi
> +++ b/arch/arm/boot/dts/r8a77470.dtsi
> @@ -807,6 +807,267 @@
>  			status = "disabled";
>  		};
>  
> +		rcar_sound: sound@ec500000 {
> +			/*
> +			 * #sound-dai-cells is required
> +			 *
> +			 * Single DAI : #sound-dai-cells = <0>; <&rcar_sound>;
> +			 * Multi  DAI : #sound-dai-cells = <1>; <&rcar_sound N>;
> +			 */
> +			compatible = "renesas,rcar_sound-r8a77470",
> +				     "renesas,rcar_sound-gen2";
> +			reg = <0 0xec500000 0 0x1000>, /* SCU */
> +			      <0 0xec5a0000 0 0x100>,  /* ADG */
> +			      <0 0xec540000 0 0x1000>, /* SSIU */
> +			      <0 0xec541000 0 0x280>,  /* SSI */
> +			      <0 0xec740000 0 0x200>;  /* Audio DMAC peri peri */
> +			reg-names = "scu", "adg", "ssiu", "ssi", "audmapp";
> +
> +			clocks = <&cpg CPG_MOD 1005>,
> +				 <&cpg CPG_MOD 1006>, <&cpg CPG_MOD 1007>,
> +				 <&cpg CPG_MOD 1008>, <&cpg CPG_MOD 1009>,
> +				 <&cpg CPG_MOD 1010>, <&cpg CPG_MOD 1011>,
> +				 <&cpg CPG_MOD 1012>, <&cpg CPG_MOD 1013>,
> +				 <&cpg CPG_MOD 1014>, <&cpg CPG_MOD 1015>,
> +				 <&cpg CPG_MOD 1025>, <&cpg CPG_MOD 1026>,
> +				 <&cpg CPG_MOD 1027>, <&cpg CPG_MOD 1028>,
> +				 <&cpg CPG_MOD 1029>, <&cpg CPG_MOD 1030>,
> +				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
> +				 <&cpg CPG_MOD 1021>, <&cpg CPG_MOD 1020>,
> +				 <&cpg CPG_MOD 1019>, <&cpg CPG_MOD 1018>,
> +				 <&audio_clk_a>, <&audio_clk_b>, <&audio_clk_c>,
> +				 <&cpg CPG_CORE R8A77470_CLK_M2>;
> +			clock-names = "ssi-all",
> +				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
> +				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
> +				      "ssi.1", "ssi.0",
> +				      "src.6", "src.5", "src.4", "src.3",
> +				      "src.2", "src.1",
> +				      "ctu.0", "ctu.1",
> +				      "mix.0", "mix.1",
> +				      "dvc.0", "dvc.1",
> +				      "clk_a", "clk_b", "clk_c", "clk_i";
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 1005>,
> +				 <&cpg 1006>, <&cpg 1007>, <&cpg 1008>,
> +				 <&cpg 1009>, <&cpg 1010>, <&cpg 1011>,
> +				 <&cpg 1012>, <&cpg 1013>, <&cpg 1014>,
> +				 <&cpg 1015>;
> +			reset-names = "ssi-all",
> +				      "ssi.9", "ssi.8", "ssi.7", "ssi.6",
> +				      "ssi.5", "ssi.4", "ssi.3", "ssi.2",
> +				      "ssi.1", "ssi.0";
> +
> +			status = "disabled";
> +
> +			rcar_sound,dvc {
> +				dvc0: dvc-0 {
> +					dmas = <&audma0 0xbc>;
> +					dma-names = "tx";
> +				};
> +				dvc1: dvc-1 {
> +					dmas = <&audma0 0xbe>;
> +					dma-names = "tx";
> +				};
> +			};
> +
> +			rcar_sound,mix {
> +				mix0: mix-0 { };
> +				mix1: mix-1 { };
> +			};
> +
> +			rcar_sound,ctu {
> +				ctu00: ctu-0 { };
> +				ctu01: ctu-1 { };
> +				ctu02: ctu-2 { };
> +				ctu03: ctu-3 { };
> +				ctu10: ctu-4 { };
> +				ctu11: ctu-5 { };
> +				ctu12: ctu-6 { };
> +				ctu13: ctu-7 { };
> +			};
> +
> +			rcar_sound,src {
> +				src-0 {
> +					status = "disabled";
> +				};
> +				src1: src-1 {
> +					interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x87>, <&audma0 0x9c>;
> +					dma-names = "rx", "tx";
> +				};
> +				src2: src-2 {
> +					interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x89>, <&audma0 0x9e>;
> +					dma-names = "rx", "tx";
> +				};
> +				src3: src-3 {
> +					interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x8b>, <&audma0 0xa0>;
> +					dma-names = "rx", "tx";
> +				};
> +				src4: src-4 {
> +					interrupts = <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x8d>, <&audma0 0xb0>;
> +					dma-names = "rx", "tx";
> +				};
> +				src5: src-5 {
> +					interrupts = <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x8f>, <&audma0 0xb2>;
> +					dma-names = "rx", "tx";
> +				};
> +				src6: src-6 {
> +					interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x91>, <&audma0 0xb4>;
> +					dma-names = "rx", "tx";
> +				};
> +			};
> +
> +			rcar_sound,ssiu {
> +				ssiu00: ssiu-0 {
> +					dmas = <&audma0 0x15>, <&audma0 0x16>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu01: ssiu-1 {
> +					dmas = <&audma0 0x35>, <&audma0 0x36>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu02: ssiu-2 {
> +					dmas = <&audma0 0x37>, <&audma0 0x38>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu03: ssiu-3 {
> +					dmas = <&audma0 0x47>, <&audma0 0x48>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu10: ssiu-4 {
> +					dmas = <&audma0 0x3F>, <&audma0 0x40>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu11: ssiu-5 {
> +					dmas = <&audma0 0x43>, <&audma0 0x44>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu12: ssiu-6 {
> +					dmas = <&audma0 0x4F>, <&audma0 0x50>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu13: ssiu-7 {
> +					dmas = <&audma0 0x53>, <&audma0 0x54>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu20: ssiu-8 {
> +					dmas = <&audma0 0x49>, <&audma0 0x4a>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu21: ssiu-9 {
> +					dmas = <&audma0 0x4B>, <&audma0 0x4C>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu22: ssiu-10 {
> +					dmas = <&audma0 0x57>, <&audma0 0x58>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu23: ssiu-11 {
> +					dmas = <&audma0 0x59>, <&audma0 0x5A>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu30: ssiu-12 {
> +					dmas = <&audma0 0x5F>, <&audma0 0x60>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu40: ssiu-13 {
> +					dmas = <&audma0 0xC3>, <&audma0 0xC4>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu50: ssiu-14 {
> +					dmas = <&audma0 0xC7>, <&audma0 0xC8>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu60: ssiu-15 {
> +					dmas = <&audma0 0xCB>, <&audma0 0xCC>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu70: ssiu-16 {
> +					dmas = <&audma0 0x63>, <&audma0 0x64>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu80: ssiu-17 {
> +					dmas = <&audma0 0x67>, <&audma0 0x68>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu90: ssiu-18 {
> +					dmas = <&audma0 0x6B>, <&audma0 0x6C>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu91: ssiu-19 {
> +					dmas = <&audma0 0x6D>, <&audma0 0x6E>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu92: ssiu-20 {
> +					dmas = <&audma0 0xCF>, <&audma0 0xCE>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssiu93: ssiu-21 {
> +					dmas = <&audma0 0xEB>, <&audma0 0xEC>;
> +					dma-names = "rx", "tx";
> +				};
> +			};
> +
> +			rcar_sound,ssi {
> +				ssi0: ssi-0 {
> +					interrupts = <GIC_SPI 370 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x01>, <&audma0 0x02>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi1: ssi-1 {
> +					 interrupts = <GIC_SPI 371 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x03>, <&audma0 0x04>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi2: ssi-2 {
> +					interrupts = <GIC_SPI 372 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x05>, <&audma0 0x06>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi3: ssi-3 {
> +					interrupts = <GIC_SPI 373 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x07>, <&audma0 0x08>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi4: ssi-4 {
> +					interrupts = <GIC_SPI 374 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x09>, <&audma0 0x0a>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi5: ssi-5 {
> +					interrupts = <GIC_SPI 375 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x0b>, <&audma0 0x0c>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi6: ssi-6 {
> +					interrupts = <GIC_SPI 376 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x0d>, <&audma0 0x0e>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi7: ssi-7 {
> +					interrupts = <GIC_SPI 377 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x0f>, <&audma0 0x10>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi8: ssi-8 {
> +					interrupts = <GIC_SPI 378 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x11>, <&audma0 0x12>;
> +					dma-names = "rx", "tx";
> +				};
> +				ssi9: ssi-9 {
> +					interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>;
> +					dmas = <&audma0 0x13>, <&audma0 0x14>;
> +					dma-names = "rx", "tx";
> +				};
> +			};
> +		};
> +
>  		sdhi0: sd@ee100000 {
>  			compatible = "renesas,sdhi-r8a77470",
>  				     "renesas,rcar-gen2-sdhi";
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 08/20] ARM: dts: r8a77470: Add Ether support
  2019-04-11  7:54 ` [PATCH v2 08/20] ARM: dts: r8a77470: Add Ether support Cao Van Dong
@ 2019-04-12 11:36   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:36 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

Hi Dong-san,

On Thu, Apr 11, 2019 at 04:54:10PM +0900, Cao Van Dong wrote:
> Add ether node to dtsi for Ether support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  arch/arm/boot/dts/r8a77470.dtsi | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
> index 9fc9f6a..ae1dba0 100644
> --- a/arch/arm/boot/dts/r8a77470.dtsi
> +++ b/arch/arm/boot/dts/r8a77470.dtsi
> @@ -1099,6 +1099,20 @@
>  			dma-channels = <13>;
>  		};
>  
> +		ether: ethernet@ee700000 {

Nodes should be sorted by 
1. Bus address
2. IP block type

So ethernet@ee700000 should go after sd@ee100000.

Otherwise this patch looks good to me.

> +			compatible = "renesas,ether-r8a77470",
> +				     "renesas,rcar-gen2-ether";
> +			reg = <0 0xee700000 0 0x400>;
> +			interrupts = <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 813>;
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 813>;
> +			phy-mode = "rmii";
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +			status = "disabled";
> +		};
> +
>  		sdhi0: sd@ee100000 {
>  			compatible = "renesas,sdhi-r8a77470",
>  				     "renesas,rcar-gen2-sdhi";
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 09/20] ARM: dts: r8a77470: Add VSP support
  2019-04-11  7:54 ` [PATCH v2 09/20] ARM: dts: r8a77470: Add VSP support Cao Van Dong
@ 2019-04-12 11:41   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:41 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:11PM +0900, Cao Van Dong wrote:
> Add vsp nodes to dtsi for VSP support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  arch/arm/boot/dts/r8a77470.dtsi | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
> index ae1dba0..2540bca 100644
> --- a/arch/arm/boot/dts/r8a77470.dtsi
> +++ b/arch/arm/boot/dts/r8a77470.dtsi
> @@ -1113,6 +1113,24 @@
>  			status = "disabled";
>  		};
>  
> +		vsp@fe928000 {
> +			compatible = "renesas,vsp1";
> +			reg = <0 0xfe928000 0 0x8000>;
> +			interrupts = <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 131>;
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 131>;
> +		};
> +
> +		vsp@fe930000 {
> +			compatible = "renesas,vsp1";
> +			reg = <0 0xfe930000 0 0x8000>;
> +			interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 128>;
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 128>;
> +		};
> +

Nodes should be sorted by
1. Bus address
2. IP block tupe

So the above vsp nodes should go after sd@ee100000.

Otherwise this patch looks good to me.

>  		sdhi0: sd@ee100000 {
>  			compatible = "renesas,sdhi-r8a77470",
>  				     "renesas,rcar-gen2-sdhi";
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 10/20] ARM: dts: r8a77470: Add FDP1 support
  2019-04-11  7:54 ` [PATCH v2 10/20] ARM: dts: r8a77470: Add FDP1 support Cao Van Dong
@ 2019-04-12 11:45   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:45 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

Hi Dong-san,

On Thu, Apr 11, 2019 at 04:54:12PM +0900, Cao Van Dong wrote:
> Add fdp1 node to dtsi for FDP1 support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  arch/arm/boot/dts/r8a77470.dtsi | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/r8a77470.dtsi b/arch/arm/boot/dts/r8a77470.dtsi
> index 2540bca..7881516 100644
> --- a/arch/arm/boot/dts/r8a77470.dtsi
> +++ b/arch/arm/boot/dts/r8a77470.dtsi
> @@ -1131,6 +1131,15 @@
>  			resets = <&cpg 128>;
>  		};
>  
> +		fdp1@fe940000 {
> +			compatible = "renesas,fdp1";
> +			reg = <0 0xfe940000 0 0x2400>;
> +			interrupts = <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks = <&cpg CPG_MOD 119>;
> +			power-domains = <&sysc R8A77470_PD_ALWAYS_ON>;
> +			resets = <&cpg 119>;
> +		};
> +

Nodes should be sorted by
1. Bus address
2. IP block tupe

So the above vsp nodes should not go before sd@ee100000.

Otherwise this patch looks good to me.

>  		sdhi0: sd@ee100000 {
>  			compatible = "renesas,sdhi-r8a77470",
>  				     "renesas,rcar-gen2-sdhi";
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support
  2019-04-11  7:54 ` [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support Cao Van Dong
@ 2019-04-12 11:55   ` Simon Horman
  2019-04-30 13:00   ` Geert Uytterhoeven
  1 sibling, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 11:55 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:03PM +0900, Cao Van Dong wrote:
> Add hscif{0|1|2} nodes to dtsi for HSCIF support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

Thanks Dong-san,

applied for inclusion in v5.2 with the changelog wrapped to 75 columns wide.

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

* Re: [PATCH v2 03/20] ARM: dts: r8a77470: Add PWM support
  2019-04-11  7:54 ` [PATCH v2 03/20] ARM: dts: r8a77470: Add PWM support Cao Van Dong
@ 2019-04-12 12:01   ` Simon Horman
  0 siblings, 0 replies; 56+ messages in thread
From: Simon Horman @ 2019-04-12 12:01 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, devicetree, biju.das,
	yoshihiro.shimoda.uh, kuninori.morimoto.gx, h-inayoshi, nv-dung,
	na-hoan

On Thu, Apr 11, 2019 at 04:54:05PM +0900, Cao Van Dong wrote:
> Add pwm{0|1|2|3|4|5|6} nodes to dtsi for PWM support on the RZ/G1C (r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

Thanks Dong-san,

applied for inclusion in v5.2 with the changelog wrapped to 75 columns wide.

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

* Applied "ASoC: rsnd: Document r8a77470 bindings" to the asoc tree
  2019-04-11  7:54 ` [PATCH v2 16/20] ASoC: rsnd: " Cao Van Dong
@ 2019-04-15  8:53     ` Mark Brown
  0 siblings, 0 replies; 56+ messages in thread
From: Mark Brown @ 2019-04-15  8:53 UTC (permalink / raw)
  Cc: cv-dong, devicetree, alsa-devel, kuninori.morimoto.gx,
	geert+renesas, yoshihiro.shimoda.uh, biju.das, linux-renesas-soc,
	Mark Brown, na-hoan, horms+renesas, h-inayoshi, nv-dung

The patch

   ASoC: rsnd: Document r8a77470 bindings

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.2

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

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

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

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

Thanks,
Mark

>From d1d58766908aad18b1f967fc107702959da84f2b Mon Sep 17 00:00:00 2001
From: Cao Van Dong <cv-dong@jinso.co.jp>
Date: Thu, 11 Apr 2019 16:54:18 +0900
Subject: [PATCH] ASoC: rsnd: Document r8a77470 bindings

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/renesas,rsnd.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
index b34afa66fb00..5c52182f7dcf 100644
--- a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
+++ b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
@@ -266,6 +266,7 @@ Required properties:
 				    - "renesas,rcar_sound-r8a7743" (RZ/G1M)
 				    - "renesas,rcar_sound-r8a7744" (RZ/G1N)
 				    - "renesas,rcar_sound-r8a7745" (RZ/G1E)
+				    - "renesas,rcar_sound-r8a77470" (RZ/G1C)
 				    - "renesas,rcar_sound-r8a774a1" (RZ/G2M)
 				    - "renesas,rcar_sound-r8a774c0" (RZ/G2E)
 				    - "renesas,rcar_sound-r8a7778" (R-Car M1A)
-- 
2.20.1

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

* Applied "ASoC: rsnd: Document r8a77470 bindings" to the asoc tree
@ 2019-04-15  8:53     ` Mark Brown
  0 siblings, 0 replies; 56+ messages in thread
From: Mark Brown @ 2019-04-15  8:53 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: alsa-devel, biju.das, broonie, cv-dong, devicetree,
	geert+renesas, h-inayoshi, horms+renesas, kuninori.morimoto.gx,
	linux-renesas-soc, Mark Brown, na-hoan, nv-dung,
	yoshihiro.shimoda.uh

The patch

   ASoC: rsnd: Document r8a77470 bindings

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.2

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

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

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

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

Thanks,
Mark

From d1d58766908aad18b1f967fc107702959da84f2b Mon Sep 17 00:00:00 2001
From: Cao Van Dong <cv-dong@jinso.co.jp>
Date: Thu, 11 Apr 2019 16:54:18 +0900
Subject: [PATCH] ASoC: rsnd: Document r8a77470 bindings

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/renesas,rsnd.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
index b34afa66fb00..5c52182f7dcf 100644
--- a/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
+++ b/Documentation/devicetree/bindings/sound/renesas,rsnd.txt
@@ -266,6 +266,7 @@ Required properties:
 				    - "renesas,rcar_sound-r8a7743" (RZ/G1M)
 				    - "renesas,rcar_sound-r8a7744" (RZ/G1N)
 				    - "renesas,rcar_sound-r8a7745" (RZ/G1E)
+				    - "renesas,rcar_sound-r8a77470" (RZ/G1C)
 				    - "renesas,rcar_sound-r8a774a1" (RZ/G2M)
 				    - "renesas,rcar_sound-r8a774c0" (RZ/G2E)
 				    - "renesas,rcar_sound-r8a7778" (R-Car M1A)
-- 
2.20.1


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

* Applied "spi: sh-msiof: Document r8a77470 bindings" to the spi tree
  2019-04-11  7:54 ` [PATCH v2 19/20] spi: sh-msiof: " Cao Van Dong
@ 2019-04-15  8:53     ` Mark Brown
  2019-04-15  8:53     ` Mark Brown
  1 sibling, 0 replies; 56+ messages in thread
From: Mark Brown @ 2019-04-15  8:53 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: biju.das, broonie, devicetree, geert+renesas, h-inayoshi,
	horms+renesas, kuninori.morimoto.gx, linux-renesas-soc,
	linux-spi

The patch

   spi: sh-msiof: Document r8a77470 bindings

has been applied to the spi tree at

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

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

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

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

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

Thanks,
Mark

>From efc3d5b2e79bd5470fa4a333933867d7b934a3e6 Mon Sep 17 00:00:00 2001
From: Cao Van Dong <cv-dong@jinso.co.jp>
Date: Thu, 11 Apr 2019 16:54:21 +0900
Subject: [PATCH] spi: sh-msiof: Document r8a77470 bindings

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/spi/sh-msiof.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/spi/sh-msiof.txt b/Documentation/devicetree/bindings/spi/sh-msiof.txt
index 37cf69586d10..18e14ee257b2 100644
--- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
+++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
@@ -4,6 +4,7 @@ Required properties:
 - compatible           : "renesas,msiof-r8a7743" (RZ/G1M)
 			 "renesas,msiof-r8a7744" (RZ/G1N)
 			 "renesas,msiof-r8a7745" (RZ/G1E)
+			 "renesas,msiof-r8a77470" (RZ/G1C)
 			 "renesas,msiof-r8a774a1" (RZ/G2M)
 			 "renesas,msiof-r8a774c0" (RZ/G2E)
 			 "renesas,msiof-r8a7790" (R-Car H2)
-- 
2.20.1

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

* Applied "spi: sh-msiof: Document r8a77470 bindings" to the spi tree
@ 2019-04-15  8:53     ` Mark Brown
  0 siblings, 0 replies; 56+ messages in thread
From: Mark Brown @ 2019-04-15  8:53 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: biju.das, broonie, cv-dong, devicetree, geert+renesas,
	h-inayoshi, horms+renesas, kuninori.morimoto.gx,
	linux-renesas-soc, linux-spi, Mark Brown, na-hoan, nv-dung,
	yoshihiro.shimoda.uh

The patch

   spi: sh-msiof: Document r8a77470 bindings

has been applied to the spi tree at

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

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

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

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

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

Thanks,
Mark

From efc3d5b2e79bd5470fa4a333933867d7b934a3e6 Mon Sep 17 00:00:00 2001
From: Cao Van Dong <cv-dong@jinso.co.jp>
Date: Thu, 11 Apr 2019 16:54:21 +0900
Subject: [PATCH] spi: sh-msiof: Document r8a77470 bindings

Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.

Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/spi/sh-msiof.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/spi/sh-msiof.txt b/Documentation/devicetree/bindings/spi/sh-msiof.txt
index 37cf69586d10..18e14ee257b2 100644
--- a/Documentation/devicetree/bindings/spi/sh-msiof.txt
+++ b/Documentation/devicetree/bindings/spi/sh-msiof.txt
@@ -4,6 +4,7 @@ Required properties:
 - compatible           : "renesas,msiof-r8a7743" (RZ/G1M)
 			 "renesas,msiof-r8a7744" (RZ/G1N)
 			 "renesas,msiof-r8a7745" (RZ/G1E)
+			 "renesas,msiof-r8a77470" (RZ/G1C)
 			 "renesas,msiof-r8a774a1" (RZ/G2M)
 			 "renesas,msiof-r8a774c0" (RZ/G2E)
 			 "renesas,msiof-r8a7790" (R-Car H2)
-- 
2.20.1


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

* Re: [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings Cao Van Dong
@ 2019-04-29 18:03     ` Rob Herring
  2019-04-29 18:03     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:03 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan

On Thu, 11 Apr 2019 16:54:17 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings
@ 2019-04-29 18:03     ` Rob Herring
  0 siblings, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:03 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan, cv-dong

On Thu, 11 Apr 2019 16:54:17 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/media/rcar_vin.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings Cao Van Dong
@ 2019-04-29 18:05     ` Rob Herring
  2019-04-29 18:05     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:05 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan

On Thu, 11 Apr 2019 16:54:19 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings
@ 2019-04-29 18:05     ` Rob Herring
  0 siblings, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:05 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan, cv-dong

On Thu, 11 Apr 2019 16:54:19 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH v2 18/20] sh_eth: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 18/20] sh_eth: " Cao Van Dong
@ 2019-04-29 18:05     ` Rob Herring
  2019-04-29 18:05     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:05 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan

On Thu, 11 Apr 2019 16:54:20 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/net/sh_eth.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH v2 18/20] sh_eth: Document r8a77470 bindings
@ 2019-04-29 18:05     ` Rob Herring
  0 siblings, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:05 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan, cv-dong

On Thu, 11 Apr 2019 16:54:20 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/net/sh_eth.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings
  2019-04-11  7:54 ` [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings Cao Van Dong
@ 2019-04-29 18:05     ` Rob Herring
  2019-04-29 18:05     ` Rob Herring
  1 sibling, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:05 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan

On Thu, 11 Apr 2019 16:54:22 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/net/can/rcar_can.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings
@ 2019-04-29 18:05     ` Rob Herring
  0 siblings, 0 replies; 56+ messages in thread
From: Rob Herring @ 2019-04-29 18:05 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: linux-renesas-soc, broonie, geert+renesas, horms+renesas,
	devicetree, biju.das, yoshihiro.shimoda.uh, kuninori.morimoto.gx,
	h-inayoshi, nv-dung, na-hoan, cv-dong

On Thu, 11 Apr 2019 16:54:22 +0900, Cao Van Dong wrote:
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> 
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> ---
>  Documentation/devicetree/bindings/net/can/rcar_can.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

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

* Re: Applied "spi: sh-msiof: Document r8a77470 bindings" to the spi tree
  2019-04-15  8:53     ` Mark Brown
  (?)
@ 2019-04-30  8:32     ` Geert Uytterhoeven
  2019-05-02  1:36       ` Mark Brown
  -1 siblings, 1 reply; 56+ messages in thread
From: Geert Uytterhoeven @ 2019-04-30  8:32 UTC (permalink / raw)
  To: Mark Brown
  Cc: Biju Das,
	カオ・ヴァン・ドン,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Geert Uytterhoeven, 稲吉,
	Simon Horman, Kuninori Morimoto, Linux-Renesas, linux-spi,
	Hoan Nguyen An, Dung:人ソ,
	Yoshihiro Shimoda

Hi Mark,

On Mon, Apr 15, 2019 at 10:53 AM Mark Brown <broonie@kernel.org> wrote:
> The patch
>
>    spi: sh-msiof: Document r8a77470 bindings
>
> has been applied to the spi tree at
>
>    https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-5.2
>
> All being well this means that it will be integrated into the linux-next
> tree (usually sometime in the next 24 hours) and sent to Linus during
> the next merge window (or sooner if it is a bug fix), however if
> problems are discovered then the patch may be dropped or reverted.
>
> You may get further e-mails resulting from automated or manual testing
> and review of the tree, please engage with people reporting problems and
> send followup patches addressing any issues that are reported if needed.
>
> If any updates are required or you are submitting further changes they
> should be sent as incremental updates against current git, existing
> patches will not be replaced.
>
> Please add any relevant lists and maintainers to the CCs when replying
> to this mail.
>
> Thanks,
> Mark
>
> From efc3d5b2e79bd5470fa4a333933867d7b934a3e6 Mon Sep 17 00:00:00 2001
> From: Cao Van Dong <cv-dong@jinso.co.jp>
> Date: Thu, 11 Apr 2019 16:54:21 +0900
> Subject: [PATCH] spi: sh-msiof: Document r8a77470 bindings
>
> Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
>
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> Signed-off-by: Mark Brown <broonie@kernel.org>

Is their any specific reason this was dropped from spi/for-next again?
Upon closer look, the following seem to have been dropped as well, compared
to last week:

$ git cherry -v spi/for-next 96a9209ae8ebb4e8
+ 0e530e4eba5e9003af83c6afda833c64c7fcae08 spi: spi-mem: Fix build
error without CONFIG_SPI_MEM
+ d4a91044e241d8f87fb990b673549a7d2f9cacc4 spi: spi-mem: Make
spi_mem_default_supports_op() static inline
+ 2c54c4a640ed4dc9db03693641a1a651535f05f1 spi: pxa2xx: use a module
softdep for dw_dmac
+ bf0c999f7f0e8934c8db8261fb67a38770fffac2 spi: pxa2xx: fix SCR
(divisor) calculation
+ efc3d5b2e79bd5470fa4a333933867d7b934a3e6 spi: sh-msiof: Document
r8a77470 bindings
+ ac533755d3cb2db003785f9f770646295643bee1 spi: Remove one needless
transfer speed fall back case
+ 179f7949c0663f1923564acf0e626d459ea80047 spi: Remove warning in
spi_split_transfers_maxsize()
+ 8ed2e1a50e74a08adce3fe0207be1649b2b13a83 spi: Release spi_res after
finalizing message
+ 316e60af88bc81780a01c0f5b431affe0e679686 spi/trace: Cap buffer
contents at 64 bytes
+ 3f6e3f7843a6a1667ed890ca51a1388fc7bf3429 spi: tegra114: fix PIO transfer
+ 5127b4d69f96793dfabb602b133dc19d1aa36880 spi: pxa2xx: Add support
for Intel Comet Lake
+ bee5c20b7323a7af027d1b4ba538137b518ad232 dt-bindings: spi:
spi-mt65xx: add support for MT8516
+ 4b490710d4d24f95e95a07baac6f3f98bb94cf3b spi: expand mode support
+ ad1ac1fa0b24b40281eeccdc1d7b085e77639357 spi/spi-bcm2835: Split
transfers that exceed DLEN

Thanks!

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

* Re: [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support
  2019-04-11  7:54 ` [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support Cao Van Dong
  2019-04-12 11:55   ` Simon Horman
@ 2019-04-30 13:00   ` Geert Uytterhoeven
  1 sibling, 0 replies; 56+ messages in thread
From: Geert Uytterhoeven @ 2019-04-30 13:00 UTC (permalink / raw)
  To: Cao Van Dong
  Cc: Linux-Renesas, Mark Brown, Geert Uytterhoeven, Simon Horman,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Biju Das, Yoshihiro Shimoda, Kuninori Morimoto, 稲吉,
	Dung:人ソ,
	Hoan Nguyen An

On Thu, Apr 11, 2019 at 9:54 AM Cao Van Dong <cv-dong@jinso.co.jp> wrote:
> Add hscif{0|1|2} nodes to dtsi for HSCIF support on the RZ/G1C (r8a77470) SoC.
>
> Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: Applied "spi: sh-msiof: Document r8a77470 bindings" to the spi tree
  2019-04-30  8:32     ` Geert Uytterhoeven
@ 2019-05-02  1:36       ` Mark Brown
  0 siblings, 0 replies; 56+ messages in thread
From: Mark Brown @ 2019-05-02  1:36 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Biju Das,
	カオ・ヴァン・ドン,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Geert Uytterhoeven, 稲吉,
	Simon Horman, Kuninori Morimoto, Linux-Renesas, linux-spi,
	Hoan Nguyen An, Dung:人ソ,
	Yoshihiro Shimoda

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

On Tue, Apr 30, 2019 at 10:32:56AM +0200, Geert Uytterhoeven wrote:

> Is their any specific reason this was dropped from spi/for-next again?
> Upon closer look, the following seem to have been dropped as well, compared
> to last week:

No...   something seems to have been eaten by the scripting at some
point which is a bit worrying, especially since git didn't notice a
forced push anywhere.

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

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

* Re: [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings
  2019-04-29 18:05     ` Rob Herring
  (?)
@ 2019-08-21  8:08     ` Geert Uytterhoeven
  -1 siblings, 0 replies; 56+ messages in thread
From: Geert Uytterhoeven @ 2019-08-21  8:08 UTC (permalink / raw)
  To: Rob Herring
  Cc: Linux-Renesas, Mark Brown, Geert Uytterhoeven, Simon Horman,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Biju Das, Yoshihiro Shimoda, Kuninori Morimoto, 稲吉,
	Dung:人ソ,
	Hoan Nguyen An,
	カオ・ヴァン・ドン

On Mon, Apr 29, 2019 at 8:05 PM Rob Herring <robh@kernel.org> wrote:
> On Thu, 11 Apr 2019 16:54:22 +0900, Cao Van Dong wrote:
> > Document SoC specific bindings for R-Car RZ/G1C(r8a77470) SoC.
> >
> > Signed-off-by: Cao Van Dong <cv-dong@jinso.co.jp>
> > ---
> >  Documentation/devicetree/bindings/net/can/rcar_can.txt | 1 +
> >  1 file changed, 1 insertion(+)
> >
>
> Reviewed-by: Rob Herring <robh@kernel.org>

Thanks, queuing in renesas-devel for v5.4.

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

end of thread, other threads:[~2019-08-21  8:08 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-11  7:54 [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Cao Van Dong
2019-04-11  7:54 ` [PATCH v2 01/20] ARM: dts: r8a77470: Add HSCIF support Cao Van Dong
2019-04-12 11:55   ` Simon Horman
2019-04-30 13:00   ` Geert Uytterhoeven
2019-04-11  7:54 ` [PATCH v2 02/20] ARM: dts: r8a77470: Add MSIOF support Cao Van Dong
2019-04-12 11:22   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 03/20] ARM: dts: r8a77470: Add PWM support Cao Van Dong
2019-04-12 12:01   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 04/20] ARM: dts: r8a77470: Add CAN support Cao Van Dong
2019-04-12 11:25   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 05/20] ARM: dts: r8a77470: Add VIN support Cao Van Dong
2019-04-12 11:26   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 06/20] ARM: dts: r8a77470: Add Audio support Cao Van Dong
2019-04-12 11:31   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 07/20] ARM: dts: r8a77470: Add Audio-DMAC support Cao Van Dong
2019-04-11  7:54 ` [PATCH v2 08/20] ARM: dts: r8a77470: Add Ether support Cao Van Dong
2019-04-12 11:36   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 09/20] ARM: dts: r8a77470: Add VSP support Cao Van Dong
2019-04-12 11:41   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 10/20] ARM: dts: r8a77470: Add FDP1 support Cao Van Dong
2019-04-12 11:45   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 11/20] ARM: dts: r8a77470: Add LVDS support Cao Van Dong
2019-04-11  7:54 ` [PATCH v2 12/20] ARM: dts: r8a77470: Add audio clocks Cao Van Dong
2019-04-11  7:54 ` [PATCH v2 13/20] ARM: dts: r8a77470: Add can clocks Cao Van Dong
2019-04-11  7:54 ` [PATCH v2 14/20] dt-bindings: display: renesas: lvds: Add r8a77470 support Cao Van Dong
2019-04-12 10:43   ` Simon Horman
2019-04-11  7:54 ` [PATCH v2 15/20] media: dt-bindings: media: rcar_vin: Document r8a77470 bindings Cao Van Dong
2019-04-12 10:53   ` Simon Horman
2019-04-29 18:03   ` Rob Herring
2019-04-29 18:03     ` Rob Herring
2019-04-11  7:54 ` [PATCH v2 16/20] ASoC: rsnd: " Cao Van Dong
2019-04-15  8:53   ` Applied "ASoC: rsnd: Document r8a77470 bindings" to the asoc tree Mark Brown
2019-04-15  8:53     ` Mark Brown
2019-04-11  7:54 ` [PATCH v2 17/20] dt-bindings: pwm: Document r8a77470 bindings Cao Van Dong
2019-04-12 10:58   ` Simon Horman
2019-04-29 18:05   ` Rob Herring
2019-04-29 18:05     ` Rob Herring
2019-04-11  7:54 ` [PATCH v2 18/20] sh_eth: " Cao Van Dong
2019-04-12 11:05   ` Simon Horman
2019-04-29 18:05   ` Rob Herring
2019-04-29 18:05     ` Rob Herring
2019-04-11  7:54 ` [PATCH v2 19/20] spi: sh-msiof: " Cao Van Dong
2019-04-12 11:10   ` Simon Horman
2019-04-15  8:53   ` Applied "spi: sh-msiof: Document r8a77470 bindings" to the spi tree Mark Brown
2019-04-15  8:53     ` Mark Brown
2019-04-30  8:32     ` Geert Uytterhoeven
2019-05-02  1:36       ` Mark Brown
2019-04-11  7:54 ` [PATCH v2 20/20] dt-bindings: can: rcar_can: Document r8a77470 bindings Cao Van Dong
2019-04-12 11:17   ` Simon Horman
2019-04-29 18:05   ` Rob Herring
2019-04-29 18:05     ` Rob Herring
2019-08-21  8:08     ` Geert Uytterhoeven
2019-04-11  8:30 ` [PATCH v2 00/20] Add more support to the RZ/G1C (r8a77470) SoC Chris Paterson
2019-04-11  8:30   ` Chris Paterson
2019-04-11 15:25 ` Niklas Söderlund
2019-04-11 15:25   ` Niklas Söderlund

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.