All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms+renesas@verge.net.au>
To: linux-renesas-soc@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org,
	Magnus Damm <magnus.damm@gmail.com>,
	Cao Van Dong <cv-dong@jinso.co.jp>,
	Simon Horman <horms+renesas@verge.net.au>
Subject: [PATCH 09/21] ARM: dts: r8a77470: Add HSCIF support
Date: Fri, 19 Apr 2019 16:34:36 +0200	[thread overview]
Message-ID: <f408170d1829779188aa774ec711bf267349b13b.1555655522.git.horms+renesas@verge.net.au> (raw)
In-Reply-To: <cover.1555655522.git.horms+renesas@verge.net.au>

From: Cao Van Dong <cv-dong@jinso.co.jp>

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>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 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 493cf2b3f795..60bd79fc35f7 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.11.0


WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms+renesas@verge.net.au>
To: linux-renesas-soc@vger.kernel.org
Cc: Cao Van Dong <cv-dong@jinso.co.jp>,
	Simon Horman <horms+renesas@verge.net.au>,
	Magnus Damm <magnus.damm@gmail.com>,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 09/21] ARM: dts: r8a77470: Add HSCIF support
Date: Fri, 19 Apr 2019 16:34:36 +0200	[thread overview]
Message-ID: <f408170d1829779188aa774ec711bf267349b13b.1555655522.git.horms+renesas@verge.net.au> (raw)
In-Reply-To: <cover.1555655522.git.horms+renesas@verge.net.au>

From: Cao Van Dong <cv-dong@jinso.co.jp>

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>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 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 493cf2b3f795..60bd79fc35f7 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.11.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2019-04-19 18:22 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-19 14:34 [GIT PULL] Renesas ARM Based SoC DT Updates for v5.2 Simon Horman
2019-04-19 14:34 ` Simon Horman
2019-04-19 14:34 ` [PATCH 01/21] ARM: dts: r8a7792: blanche: Add IIC3 and DA9063 PMIC node Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 02/21] ARM: dts: alt: Add " Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 03/21] ARM: dts: ape6evm: Add NOR FLASH Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 04/21] ARM: dts: r8a77470: Add DU support Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 05/21] ARM: dts: iwg23s-sbc: Add HDMI support Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 06/21] ARM: dts: rskrza1: Add I2C support Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 07/21] ARM: dts: rskrza1: Add remaining LEDs Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 08/21] ARM: dts: alt: Enable USB support Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` Simon Horman [this message]
2019-04-19 14:34   ` [PATCH 09/21] ARM: dts: r8a77470: Add HSCIF support Simon Horman
2019-04-19 14:34 ` [PATCH 10/21] ARM: dts: r8a77470: Add PWM support Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-30 13:01   ` Geert Uytterhoeven
2019-04-30 13:01     ` Geert Uytterhoeven
2019-04-19 14:34 ` [PATCH 11/21] ARM: dts: r8a77470: Add VIN support Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 12/21] ARM: dts: r8a77470: Add USB PHY DT support Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 13/21] ARM: dts: iwg23s-sbc: Enable USB Phy[01] Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 14/21] ARM: dts: r8a77470: Add USB2.0 Host (EHCI/OHCI) device Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 15/21] ARM: dts: iwg23s-sbc: Enable USB USB2.0 Host Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 16/21] ARM: dts: r8a77470: Add HSUSB device nodes Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 17/21] ARM: dts: iwg23s-sbc: Enable HS-USB Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 18/21] ARM: dts: kzm9d: Add rw parameter to bootargs Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 19/21] ARM: dts: bockw: Reorder bootargs Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 20/21] ARM: dts: marzen: Add rw to bootargs and use ip=dhcp Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-19 14:34 ` [PATCH 21/21] ARM: dts: ape6evm: Reorder bootargs Simon Horman
2019-04-19 14:34   ` Simon Horman
2019-04-28 19:46 ` [GIT PULL] Renesas ARM Based SoC DT Updates for v5.2 Olof Johansson
2019-04-28 19:46   ` Olof Johansson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f408170d1829779188aa774ec711bf267349b13b.1555655522.git.horms+renesas@verge.net.au \
    --to=horms+renesas@verge.net.au \
    --cc=cv-dong@jinso.co.jp \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=magnus.damm@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.