From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Kumar Gala <galak@codeaurora.org>, linux-arm-msm@vger.kernel.org
Cc: Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Russell King <linux@arm.linux.org.uk>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Subject: [PATCH 02/12] ARM: dts: apq8064: Add usb host support.
Date: Mon, 23 Feb 2015 07:55:01 +0000 [thread overview]
Message-ID: <1424678101-13009-1-git-send-email-srinivas.kandagatla@linaro.org> (raw)
In-Reply-To: <424678035-12862-1-git-send-email-srinivas.kandagatla@linaro.org>
This patch adds device tree nodes to support two usb hosts on APQ8064
SOC.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
---
arch/arm/boot/dts/qcom-apq8064-ifc6410.dts | 40 +++++++++++++++++++++++++
arch/arm/boot/dts/qcom-apq8064.dtsi | 47 ++++++++++++++++++++++++++++++
2 files changed, 87 insertions(+)
diff --git a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
index e641001..40657a4 100644
--- a/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
+++ b/arch/arm/boot/dts/qcom-apq8064-ifc6410.dts
@@ -49,6 +49,46 @@
};
};
+ rpm@108000 {
+ pm8921_s3: pm8921-s3 {
+ regulator-min-microvolt = <1000000>;
+ regulator-max-microvolt = <1400000>;
+ qcom,switch-mode-frequency = <4800000>;
+ };
+
+ pm8921_l3: pm8921-l3 {
+ regulator-min-microvolt = <3050000>;
+ regulator-max-microvolt = <3300000>;
+ };
+
+ pm8921_l23: pm8921-l23 {
+ regulator-min-microvolt = <1700000>;
+ regulator-max-microvolt = <1900000>;
+ };
+ };
+
+ usb3_phy: phy@12520000 {
+ status = "okay";
+ vddcx-supply = <&pm8921_s3>;
+ v3p3-supply = <&pm8921_l3>;
+ v1p8-supply = <&pm8921_l23>;
+ };
+
+ usb4_phy: phy@12530000 {
+ status = "okay";
+ vddcx-supply = <&pm8921_s3>;
+ v3p3-supply = <&pm8921_l3>;
+ v1p8-supply = <&pm8921_l23>;
+ };
+
+ usb3: usb@12520000 {
+ status = "okay";
+ };
+
+ usb4: usb@12530000 {
+ status = "okay";
+ };
+
amba {
/* eMMC */
sdcc1: sdcc@12400000 {
diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi
index db5fc59..e33eb03 100644
--- a/arch/arm/boot/dts/qcom-apq8064.dtsi
+++ b/arch/arm/boot/dts/qcom-apq8064.dtsi
@@ -2,6 +2,7 @@
#include "skeleton.dtsi"
#include <dt-bindings/clock/qcom,gcc-msm8960.h>
+#include <dt-bindings/reset/qcom,gcc-msm8960.h>
#include <dt-bindings/clock/qcom,mmcc-msm8960.h>
#include <dt-bindings/mfd/qcom-rpm.h>
#include <dt-bindings/soc/qcom,gsbi.h>
@@ -487,6 +488,52 @@
};
};
+ usb3_phy: phy@12520000 {
+ compatible = "qcom,usb-otg-ci";
+ reg = <0x12520000 0x400>;
+ interrupts = <0 188 IRQ_TYPE_NONE>;
+ status = "disabled";
+ dr_mode = "host";
+
+ clocks = <&gcc USB_HS3_XCVR_CLK>,
+ <&gcc USB_HS3_H_CLK>;
+ clock-names = "core", "iface";
+
+ resets = <&gcc USB_HS3_RESET>;
+ reset-names = "link";
+ };
+
+ usb4_phy: phy@12530000 {
+ compatible = "qcom,usb-otg-ci";
+ reg = <0x12530000 0x400>;
+ interrupts = <0 215 IRQ_TYPE_NONE>;
+ status = "disabled";
+ dr_mode = "host";
+
+ clocks = <&gcc USB_HS4_XCVR_CLK>,
+ <&gcc USB_HS4_H_CLK>;
+ clock-names = "core", "iface";
+
+ resets = <&gcc USB_HS4_RESET>;
+ reset-names = "link";
+ };
+
+ usb3: usb@12520000 {
+ compatible = "qcom,ehci-host";
+ reg = <0x12520000 0x400>;
+ interrupts = <0 188 IRQ_TYPE_NONE>;
+ status = "disabled";
+ usb-phy = <&usb3_phy>;
+ };
+
+ usb4: usb@12530000 {
+ compatible = "qcom,ehci-host";
+ reg = <0x12530000 0x400>;
+ interrupts = <0 215 IRQ_TYPE_NONE>;
+ status = "disabled";
+ usb-phy = <&usb4_phy>;
+ };
+
/* Temporary fixed regulator */
vsdcc_fixed: vsdcc-regulator {
compatible = "regulator-fixed";
--
1.9.1
next prev parent reply other threads:[~2015-02-23 7:55 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <424678035-12862-1-git-send-email-srinivas.kandagatla@linaro.org>
[not found] ` <424678035-12862-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-02-23 7:54 ` [PATCH 01/12] ARM: dts: apq8064: add RPM regulators support Srinivas Kandagatla
2015-02-26 18:25 ` Kumar Gala
2015-02-26 18:26 ` Srinivas Kandagatla
[not found] ` <A5AB3F5F-7942-4DA0-925E-9033EC929174-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-02-26 19:05 ` Bjorn Andersson
2015-02-26 19:00 ` Bjorn Andersson
2015-02-26 19:11 ` Bjorn Andersson
2015-02-26 20:20 ` Srinivas Kandagatla
2015-02-26 19:31 ` Stephen Boyd
2015-02-26 20:09 ` Srinivas Kandagatla
[not found] ` <54EF7D74.7060906-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-02-26 20:11 ` Stephen Boyd
[not found] ` <54EF7DFD.9020609-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-02-26 21:20 ` Bjorn Andersson
2015-02-23 7:55 ` Srinivas Kandagatla [this message]
2015-02-26 18:27 ` [PATCH 02/12] ARM: dts: apq8064: Add usb host support Kumar Gala
2015-02-23 7:55 ` [PATCH 03/12] ARM: dts: apq8064: Add USB OTG support Srinivas Kandagatla
[not found] ` <1424678108-13052-1-git-send-email-srinivas.kandagatla-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-02-26 18:27 ` Kumar Gala
2015-02-23 7:55 ` [PATCH 04/12] ARM: dts: apq8064: Add SATA controller support Srinivas Kandagatla
2015-02-23 7:55 ` [PATCH 05/12] ARM: dts: APQ8064: Add MDP support Srinivas Kandagatla
2015-02-23 7:55 ` [PATCH 06/12] ARM: DT: apq8064: add pci support in CM QS600 Srinivas Kandagatla
2015-02-23 11:31 ` Igor Grinberg
2015-02-23 11:43 ` Srinivas Kandagatla
2015-02-24 10:23 ` Stanimir Varbanov
2015-02-24 10:47 ` Srinivas Kandagatla
2015-02-23 7:55 ` [PATCH 07/12] ARM: DT: apq8064: Add usb host support to CM QS-600 Srinivas Kandagatla
2015-02-23 11:31 ` Igor Grinberg
2015-02-23 7:55 ` [PATCH 08/12] ARM: DT: apq8064: Add USB OTG support for " Srinivas Kandagatla
2015-02-23 11:31 ` Igor Grinberg
2015-02-23 7:55 ` [PATCH 09/12] ARM: qcom: Add DT alias for serial port Srinivas Kandagatla
2015-02-23 7:56 ` [PATCH 10/12] ARM: dts: apq8064: Remove incorrect gsbi2 node Srinivas Kandagatla
2015-02-23 7:56 ` [PATCH 11/12] ARM: dts: Move i2c1 pinctrl to apq8064.dtsi Srinivas Kandagatla
2015-02-23 7:56 ` [PATCH 12/12] ARM: dts: apq8064 add i2c3 node for panel Srinivas Kandagatla
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=1424678101-13009-1-git-send-email-srinivas.kandagatla@linaro.org \
--to=srinivas.kandagatla@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--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).