From: sean.wang@mediatek.com (sean.wang at mediatek.com)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 13/15] arm64: dts: mt7622: add usb device nodes
Date: Sun, 18 Feb 2018 03:54:48 +0800 [thread overview]
Message-ID: <cce598c3aa18c71b8d2d9ac7e8c4529d0613803a.1518895232.git.sean.wang@mediatek.com> (raw)
In-Reply-To: <cover.1518895232.git.sean.wang@mediatek.com>
From: Chunfeng Yun <chunfeng.yun@mediatek.com>
add xhci node and usb3 phy nodes
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Sean Wang <sean.wang@mediatek.com>
Tested-by: Jumin Li <jumin.li@mediatek.com>
---
arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts | 28 +++++++++++++++
arch/arm64/boot/dts/mediatek/mt7622.dtsi | 51 ++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
index 6715ffa..cc89e2e 100644
--- a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
+++ b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
@@ -52,6 +52,24 @@
memory {
reg = <0 0x40000000 0 0x3F000000>;
};
+
+ reg_3p3v: regulator-3p3v {
+ compatible = "regulator-fixed";
+ regulator-name = "fixed-3.3V";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ regulator-boot-on;
+ regulator-always-on;
+ };
+
+ reg_5v: regulator-5v {
+ compatible = "regulator-fixed";
+ regulator-name = "fixed-5V";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ regulator-boot-on;
+ regulator-always-on;
+ };
};
&pcie {
@@ -343,6 +361,16 @@
status = "okay";
};
+&ssusb {
+ vusb33-supply = <®_3p3v>;
+ vbus-supply = <®_5v>;
+ status = "okay";
+};
+
+&u3phy {
+ status = "okay";
+};
+
&uart0 {
pinctrl-names = "default";
pinctrl-0 = <&uart0_pins>;
diff --git a/arch/arm64/boot/dts/mediatek/mt7622.dtsi b/arch/arm64/boot/dts/mediatek/mt7622.dtsi
index 881bc17..bad1e99 100644
--- a/arch/arm64/boot/dts/mediatek/mt7622.dtsi
+++ b/arch/arm64/boot/dts/mediatek/mt7622.dtsi
@@ -535,6 +535,57 @@
#reset-cells = <1>;
};
+ ssusb: usb at 1a0c0000 {
+ compatible = "mediatek,mt7622-xhci",
+ "mediatek,mtk-xhci";
+ reg = <0 0x1a0c0000 0 0x01000>,
+ <0 0x1a0c4700 0 0x0100>;
+ reg-names = "mac", "ippc";
+ interrupts = <GIC_SPI 232 IRQ_TYPE_LEVEL_LOW>;
+ power-domains = <&scpsys MT7622_POWER_DOMAIN_HIF1>;
+ clocks = <&ssusbsys CLK_SSUSB_SYS_EN>,
+ <&ssusbsys CLK_SSUSB_REF_EN>,
+ <&ssusbsys CLK_SSUSB_MCU_EN>,
+ <&ssusbsys CLK_SSUSB_DMA_EN>;
+ clock-names = "sys_ck", "ref_ck", "mcu_ck", "dma_ck";
+ phys = <&u2port0 PHY_TYPE_USB2>,
+ <&u3port0 PHY_TYPE_USB3>,
+ <&u2port1 PHY_TYPE_USB2>;
+
+ status = "disabled";
+ };
+
+ u3phy: usb-phy at 1a0c4000 {
+ compatible = "mediatek,mt7622-u3phy",
+ "mediatek,generic-tphy-v1";
+ reg = <0 0x1a0c4000 0 0x700>;
+ #address-cells = <2>;
+ #size-cells = <2>;
+ ranges;
+ status = "disabled";
+
+ u2port0: usb-phy at 1a0c4800 {
+ reg = <0 0x1a0c4800 0 0x0100>;
+ #phy-cells = <1>;
+ clocks = <&ssusbsys CLK_SSUSB_U2_PHY_EN>;
+ clock-names = "ref";
+ };
+
+ u3port0: usb-phy at 1a0c4900 {
+ reg = <0 0x1a0c4900 0 0x0700>;
+ #phy-cells = <1>;
+ clocks = <&clk25m>;
+ clock-names = "ref";
+ };
+
+ u2port1: usb-phy at 1a0c5000 {
+ reg = <0 0x1a0c5000 0 0x0100>;
+ #phy-cells = <1>;
+ clocks = <&ssusbsys CLK_SSUSB_U2_PHY_1P_EN>;
+ clock-names = "ref";
+ };
+ };
+
pciesys: pciesys at 1a100800 {
compatible = "mediatek,mt7622-pciesys",
"syscon";
--
2.7.4
next prev parent reply other threads:[~2018-02-17 19:54 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-17 19:54 [PATCH v3 00/15] add dts nodes to MT7622 SoC sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 01/15] dt-bindings: clock: mediatek: add missing required #reset-cells sean.wang at mediatek.com
2018-03-11 19:07 ` Matthias Brugger
2018-03-16 20:36 ` Stephen Boyd
2018-03-18 20:34 ` Matthias Brugger
2018-02-17 19:54 ` [PATCH v3 02/15] arm64: dts: mt7622: add clock controller device nodes sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 03/15] arm64: dts: mt7622: add power domain " sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 04/15] arm64: dts: mt7622: add pinctrl related " sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 05/15] arm64: dts: mt7622: add PMIC MT6380 related nodes sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 06/15] arm64: dts: mt7622: add cpufreq related device nodes sean.wang at mediatek.com
2018-02-19 3:38 ` Viresh Kumar
2018-02-17 19:54 ` [PATCH v3 07/15] arm64: dts: mt7622: turn uart0 clock to real ones sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 08/15] arm64: dts: mt7622: add SoC and peripheral related device nodes sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 09/15] arm64: dts: mt7622: add flash " sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 10/15] arm64: dts: mt7622: add ethernet " sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 11/15] arm64: dts: mt7622: add PCIe " sean.wang at mediatek.com
2018-02-17 19:54 ` [PATCH v3 12/15] arm64: dts: mt7622: add SATA " sean.wang at mediatek.com
2018-02-17 19:54 ` sean.wang at mediatek.com [this message]
2018-02-17 19:54 ` [PATCH v3 14/15] arm64: dts: mt7622: add High-Speed DMA " sean.wang at mediatek.com
2018-03-11 19:39 ` Matthias Brugger
2018-02-17 19:54 ` [PATCH v3 15/15] arm64: dts: mt7622: add mmc related " sean.wang at mediatek.com
2018-03-11 22:04 ` [PATCH v3 00/15] add dts nodes to MT7622 SoC Matthias Brugger
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=cce598c3aa18c71b8d2d9ac7e8c4529d0613803a.1518895232.git.sean.wang@mediatek.com \
--to=sean.wang@mediatek.com \
--cc=linux-arm-kernel@lists.infradead.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).