devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Andy Gross <andy.gross@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>,
	David Brown <david.brown@linaro.org>,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
	linux-soc@vger.kernel.org,
	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Subject: [PATCH v2 16/16] arm64: dts: msm8996: add sdc2 support
Date: Tue, 21 Jun 2016 18:39:53 +0100	[thread overview]
Message-ID: <1466530793-4534-1-git-send-email-srinivas.kandagatla@linaro.org> (raw)
In-Reply-To: <1466176454-28084-18-git-send-email-srinivas.kandagatla@linaro.org>

This patch adds support to sdc2 sdhci controller, which is used on some
of the boards.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
Hi Andy, 

Am resending just this one patch, as It does not make sense
to resend entire series for such a small change.

changes since v1:
	- converted sdhci address from caps to small.

 arch/arm64/boot/dts/qcom/msm8996.dtsi | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/msm8996.dtsi b/arch/arm64/boot/dts/qcom/msm8996.dtsi
index f68b078..55ec3e8 100644
--- a/arch/arm64/boot/dts/qcom/msm8996.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8996.dtsi
@@ -246,6 +246,21 @@
 			status = "disabled";
 		};
 
+		sdhc2: sdhci@74a4900 {
+			 status = "disabled";
+			 compatible = "qcom,sdhci-msm-v4";
+			 reg = <0x74a4900 0x314>, <0x74a4000 0x800>;
+			 reg-names = "hc_mem", "core_mem";
+
+			 interrupts = <0 125 0>, <0 221 0>;
+			 interrupt-names = "hc_irq", "pwr_irq";
+
+			 clock-names = "iface", "core";
+			 clocks = <&gcc GCC_SDCC2_AHB_CLK>,
+			 <&gcc GCC_SDCC2_APPS_CLK>;
+			 bus-width = <4>;
+		 };
+
 		msmgpio: pinctrl@1010000 {
 			compatible = "qcom,msm8996-pinctrl";
 			reg = <0x01010000 0x300000>;
-- 
2.7.4

  reply	other threads:[~2016-06-21 17:39 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-17 15:13 [PATCH 00/16] arm64: dts: msm8996: add more device support Srinivas Kandagatla
2016-06-17 15:13 ` [PATCH 01/16] arm64: dts: msm8996: add msmgpio label Srinivas Kandagatla
2016-06-17 15:13 ` [PATCH 02/16] arm64: dts: msm8996: add blsp2_uart1 pinctrl Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 04/16] arm64: dts: msm8996: add support blsp2_uart2 Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 05/16] arm64: dts: msm8996: add blsp1_i2c2 pinctrl nodes Srinivas Kandagatla
     [not found] ` <1466176454-28084-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-06-17 15:14   ` [PATCH 03/16] arm64: dts: msm8996: add blsp2_uart2 " Srinivas Kandagatla
2016-06-17 15:14   ` [PATCH 06/16] arm64: dts: msm8996: add support to blsp1_i2c2 device Srinivas Kandagatla
2016-06-17 15:14   ` [PATCH 07/16] arm64: dts: msm8996: add blsp2_i2c1 pinctrl Srinivas Kandagatla
2016-06-17 15:14   ` [PATCH 14/16] arm64: dts: msm8996: add support to blsp2_spi5 Srinivas Kandagatla
2016-06-17 15:14   ` [PATCH 15/16] arm64: dts: msm8996: add sdhci2 pinctrl Srinivas Kandagatla
2016-06-17 15:14   ` [PATCH 16/16] arm64: dts: msm8996: add sdc2 support Srinivas Kandagatla
2016-06-21 17:39     ` Srinivas Kandagatla [this message]
2016-06-21 21:33       ` [PATCH v2 " Andy Gross
2016-06-17 15:14 ` [PATCH 08/16] arm64: dts: msm8996: add support to blsp2_i2c1 Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 09/16] arm64: dts: msm8996: add support to blsp2_i2c0 pinctrl Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 10/16] arm64: dts: msm8996: add support to blsp2_i2c0 Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 11/16] arm64: dts: msm8996: add support to blsp1_spi0 pinctrl Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 12/16] arm64: dts: msm8996: add support to blsp1_spi0 Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 13/16] arm64: dts: msm8996: add support to blsp2_spi5 pinctrl Srinivas Kandagatla
2016-06-17 15:14 ` [PATCH 15/16] arm64: dts: msm8996: add sdc2 pinctrl Srinivas Kandagatla
2016-06-21 21:40   ` Andy Gross

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=1466530793-4534-1-git-send-email-srinivas.kandagatla@linaro.org \
    --to=srinivas.kandagatla@linaro.org \
    --cc=andy.gross@linaro.org \
    --cc=david.brown@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-soc@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).