public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
From: Wolfram Sang <wsa+renesas@sang-engineering.com>
To: linux-renesas-soc@vger.kernel.org
Cc: linux-mmc@vger.kernel.org,
	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Wolfram Sang <wsa+renesas@sang-engineering.com>
Subject: [RFC PATCH v2 08/21] arm64: dts: reneas: r8a774a1: add SDnH clocks
Date: Wed, 10 Nov 2021 20:15:57 +0100	[thread overview]
Message-ID: <20211110191610.5664-9-wsa+renesas@sang-engineering.com> (raw)
In-Reply-To: <20211110191610.5664-1-wsa+renesas@sang-engineering.com>

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
Changes since RFC v1:
* new patch

 arch/arm64/boot/dts/renesas/r8a774a1.dtsi | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
index 6f4fffacfca2..f9c4ae6f26a9 100644
--- a/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
+++ b/arch/arm64/boot/dts/renesas/r8a774a1.dtsi
@@ -2276,7 +2276,8 @@ sdhi0: mmc@ee100000 {
 				     "renesas,rcar-gen3-sdhi";
 			reg = <0 0xee100000 0 0x2000>;
 			interrupts = <GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>;
-			clocks = <&cpg CPG_MOD 314>;
+			clocks = <&cpg CPG_MOD 314>, <&cpg CPG_CORE R8A774A1_CLK_SD0H>;
+			clock-names = "core", "clkh";
 			max-frequency = <200000000>;
 			power-domains = <&sysc R8A774A1_PD_ALWAYS_ON>;
 			resets = <&cpg 314>;
@@ -2288,7 +2289,8 @@ sdhi1: mmc@ee120000 {
 				     "renesas,rcar-gen3-sdhi";
 			reg = <0 0xee120000 0 0x2000>;
 			interrupts = <GIC_SPI 166 IRQ_TYPE_LEVEL_HIGH>;
-			clocks = <&cpg CPG_MOD 313>;
+			clocks = <&cpg CPG_MOD 313>, <&cpg CPG_CORE R8A774A1_CLK_SD1H>;
+			clock-names = "core", "clkh";
 			max-frequency = <200000000>;
 			power-domains = <&sysc R8A774A1_PD_ALWAYS_ON>;
 			resets = <&cpg 313>;
@@ -2300,7 +2302,8 @@ sdhi2: mmc@ee140000 {
 				     "renesas,rcar-gen3-sdhi";
 			reg = <0 0xee140000 0 0x2000>;
 			interrupts = <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>;
-			clocks = <&cpg CPG_MOD 312>;
+			clocks = <&cpg CPG_MOD 312>, <&cpg CPG_CORE R8A774A1_CLK_SD2H>;
+			clock-names = "core", "clkh";
 			max-frequency = <200000000>;
 			power-domains = <&sysc R8A774A1_PD_ALWAYS_ON>;
 			resets = <&cpg 312>;
@@ -2312,7 +2315,8 @@ sdhi3: mmc@ee160000 {
 				     "renesas,rcar-gen3-sdhi";
 			reg = <0 0xee160000 0 0x2000>;
 			interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
-			clocks = <&cpg CPG_MOD 311>;
+			clocks = <&cpg CPG_MOD 311>, <&cpg CPG_CORE R8A774A1_CLK_SD3H>;
+			clock-names = "core", "clkh";
 			max-frequency = <200000000>;
 			power-domains = <&sysc R8A774A1_PD_ALWAYS_ON>;
 			resets = <&cpg 311>;
-- 
2.30.2


  parent reply	other threads:[~2021-11-10 19:16 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-10 19:15 [RFC PATCH v2 00/21] clk/mmc: renesas_sdhi: refactor SDnH to be a separate clock Wolfram Sang
2021-11-10 19:15 ` [RFC PATCH v2 01/21] clk: renesas: rcar-gen3: add dummy SDnH clock Wolfram Sang
2021-11-12 13:38   ` Geert Uytterhoeven
2021-11-10 19:15 ` [RFC PATCH v2 02/21] clk: renesas: rcar-gen3: add " Wolfram Sang
2021-11-12 13:04   ` Geert Uytterhoeven
2021-11-12 13:07     ` Wolfram Sang
2021-11-12 13:39   ` Geert Uytterhoeven
2021-11-10 19:15 ` [RFC PATCH v2 03/21] clk: renesas: r8a779a0: add SDnH clock to V3U Wolfram Sang
2021-11-12 13:40   ` Geert Uytterhoeven
2021-11-10 19:15 ` [RFC PATCH v2 04/21] mmc: sdhi: internal_dmac: flag non-standard SDnH handling for V3M Wolfram Sang
2021-11-11  9:48   ` Ulf Hansson
2021-11-12 13:06   ` Geert Uytterhoeven
2021-11-10 19:15 ` [RFC PATCH v2 05/21] clk: renesas: rcar-gen3: switch to new SD clock handling Wolfram Sang
2021-11-11  9:48   ` Ulf Hansson
2021-11-12 13:24   ` Geert Uytterhoeven
2021-11-12 13:41   ` Geert Uytterhoeven
2021-11-10 19:15 ` [RFC PATCH v2 06/21] clk: renesas: rcar-gen3: remove outdated SD_SKIP_FIRST Wolfram Sang
2021-11-12 13:42   ` Geert Uytterhoeven
2021-11-10 19:15 ` [RFC PATCH v2 07/21] dt-bindings: mmc: renesas,sdhi: add optional SDnH clock Wolfram Sang
2021-11-11  9:48   ` Ulf Hansson
2021-11-12 11:10   ` Geert Uytterhoeven
2021-11-12 11:57     ` Wolfram Sang
2021-11-12 12:13       ` Geert Uytterhoeven
2021-11-10 19:15 ` Wolfram Sang [this message]
2021-11-12 13:26   ` [RFC PATCH v2 08/21] arm64: dts: reneas: r8a774a1: add SDnH clocks Geert Uytterhoeven
2021-11-12 13:41     ` Wolfram Sang
2021-11-10 19:15 ` [RFC PATCH v2 09/21] arm64: dts: reneas: r8a774b1: " Wolfram Sang
2021-11-12 13:27   ` Geert Uytterhoeven
2021-11-10 19:15 ` [RFC PATCH v2 10/21] arm64: dts: reneas: r8a774c0: " Wolfram Sang
2021-11-12 13:27   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 11/21] arm64: dts: reneas: r8a774e1: " Wolfram Sang
2021-11-12 13:27   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 12/21] arm64: dts: reneas: r8a77951: " Wolfram Sang
2021-11-10 19:16 ` [RFC PATCH v2 13/21] arm64: dts: reneas: r8a77960: " Wolfram Sang
2021-11-12 13:30   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 14/21] arm64: dts: reneas: r8a77961: " Wolfram Sang
2021-11-12 13:30   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 15/21] arm64: dts: reneas: r8a77965: " Wolfram Sang
2021-11-12 13:29   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 16/21] arm64: dts: reneas: r8a77980: " Wolfram Sang
2021-11-12 13:31   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 17/21] arm64: dts: reneas: r8a77990: " Wolfram Sang
2021-11-12 13:31   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 18/21] arm64: dts: reneas: r8a77995: " Wolfram Sang
2021-11-12 13:31   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 19/21] mmc: sdhi: use dev_err_probe when getting clock fails Wolfram Sang
2021-11-11  9:48   ` Ulf Hansson
2021-11-12 13:32   ` Geert Uytterhoeven
2021-11-12 13:33     ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 20/21] mmc: sdhi: parse DT for SDnH Wolfram Sang
2021-11-11  9:48   ` Ulf Hansson
2021-11-12 13:34   ` Geert Uytterhoeven
2021-11-10 19:16 ` [RFC PATCH v2 21/21] arm64: dts: reneas: r8a779a0: add SDnH clocks Wolfram Sang
2021-11-12 13:35   ` Geert Uytterhoeven
2021-11-12 13:38 ` [RFC PATCH v2 00/21] clk/mmc: renesas_sdhi: refactor SDnH to be a separate clock Geert Uytterhoeven
2021-11-15 14:34 ` Biju Das
2021-11-15 15:23   ` Wolfram Sang

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=20211110191610.5664-9-wsa+renesas@sang-engineering.com \
    --to=wsa+renesas@sang-engineering.com \
    --cc=geert+renesas@glider.be \
    --cc=linux-mmc@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=yoshihiro.shimoda.uh@renesas.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox