blob: 3042c39d09cf2fb351d54e7861778749ee9727b6 [file] [log] [blame]
developer53b06182019-08-22 12:26:54 +02001MediaTek T-PHY binding
2--------------------------
3
4T-phy controller supports physical layer functionality for a number of
5controllers on MediaTek SoCs, such as, USB2.0, USB3.0, PCIe, and SATA.
6
7Required properties (controller (parent) node):
8 - compatible : should be one of
9 "mediatek,generic-tphy-v1"
developerb6665132020-05-02 11:35:20 +020010 "mediatek,generic-tphy-v2"
developer23ec33f2023-02-17 17:04:11 +080011 "mediatek,mt8195-tphy"
developerb6665132020-05-02 11:35:20 +020012
13- #address-cells: the number of cells used to represent physical
14 base addresses.
15- #size-cells: the number of cells used to represent the size of an address.
16- ranges: the address mapping relationship to the parent, defined with
17 - empty value: if optional 'reg' is used.
18 - non-empty value: if optional 'reg' is not used. should set
19 the child's base address to 0, the physical address
20 within parent's address space, and the length of
21 the address map.
developer53b06182019-08-22 12:26:54 +020022
23Required nodes : a sub-node is required for each port the controller
24 provides. Address range information including the usual
25 'reg' property is used inside these nodes to describe
26 the controller's topology.
27
28Optional properties (controller (parent) node):
29 - reg : offset and length of register shared by multiple ports,
30 exclude port's private register.
31 - mediatek,src-ref-clk-mhz : frequency of reference clock for slew rate
32 calibrate
33 - mediatek,src-coef : coefficient for slew rate calibrate, depends on
34 SoC process
35
36Required properties (port (child) node):
37- reg : address and length of the register set for the port.
developer53b06182019-08-22 12:26:54 +020038- #phy-cells : should be 1 (See second example)
39 cell after port phandle is phy type from:
40 - PHY_TYPE_USB2
41 - PHY_TYPE_USB3
42 - PHY_TYPE_PCIE
43 - PHY_TYPE_SATA
44
developerb6665132020-05-02 11:35:20 +020045Optional properties (port (child) node):
46- clocks : a list of phandle + clock-specifier pairs, one for each
47 entry in clock-names
48- clock-names : may contain
49 "ref": 48M reference clock for HighSpeed (digital) phy; and 26M
50 reference clock for SuperSpeed (digital) phy, sometimes is
51 24M, 25M or 27M, depended on platform.
52 "da_ref": the reference clock of analog phy, used if the clocks
53 of analog and digital phys are separated, otherwise uses
54 "ref" clock only if needed.
55
developer53b06182019-08-22 12:26:54 +020056Example:
57
58 u3phy2: usb-phy@1a244000 {
59 compatible = "mediatek,generic-tphy-v1";
60 reg = <0x1a244000 0x0700>;
61 #address-cells = <1>;
62 #size-cells = <1>;
63 ranges;
64 status = "disabled";
65
66 u2port1: usb-phy@1a244800 {
67 reg = <0x1a244800 0x0100>;
68 clocks = <&topckgen CLK_TOP_USB_PHY48M>;
69 clock-names = "ref";
70 #phy-cells = <1>;
71 status = "okay";
72 };
73
74 u3port1: usb-phy@1a244900 {
75 reg = <0x1a244900 0x0700>;
76 clocks = <&clk26m>;
77 clock-names = "ref";
78 #phy-cells = <1>;
79 status = "okay";
80 };
81 };
82
83Specifying phy control of devices
84---------------------------------
85
86Device nodes should specify the configuration required in their "phys"
87property, containing a phandle to the phy port node and a device type;
88phy-names for each port are optional.
89
90Example:
91
92#include <dt-bindings/phy/phy.h>
93
94usb30: usb@11270000 {
95 ...
96 phys = <&u2port0 PHY_TYPE_USB2>, <&u3port0 PHY_TYPE_USB3>;
97 phy-names = "usb2-0", "usb3-0";
98 ...
99};
developerb6665132020-05-02 11:35:20 +0200100
101Layout differences of banks between TPHY V1 and V2
102-------------------------------------------------------------
103IP V1:
104port offset bank
105shared 0x0000 SPLLC
106 0x0100 FMREG
107u2 port0 0x0800 U2PHY_COM
108u3 port0 0x0900 U3PHYD
109 0x0a00 U3PHYD_BANK2
110 0x0b00 U3PHYA
111 0x0c00 U3PHYA_DA
112u2 port1 0x1000 U2PHY_COM
113u3 port1 0x1100 U3PHYD
114 0x1200 U3PHYD_BANK2
115 0x1300 U3PHYA
116 0x1400 U3PHYA_DA
117u2 port2 0x1800 U2PHY_COM
118 ...
119
120IP V2:
121port offset bank
122u2 port0 0x0000 MISC
123 0x0100 FMREG
124 0x0300 U2PHY_COM
125u3 port0 0x0700 SPLLC
126 0x0800 CHIP
127 0x0900 U3PHYD
128 0x0a00 U3PHYD_BANK2
129 0x0b00 U3PHYA
130 0x0c00 U3PHYA_DA
131u2 port1 0x1000 MISC
132 0x1100 FMREG
133 0x1300 U2PHY_COM
134u3 port1 0x1700 SPLLC
135 0x1800 CHIP
136 0x1900 U3PHYD
137 0x1a00 U3PHYD_BANK2
138 0x1b00 U3PHYA
139 0x1c00 U3PHYA_DA
140u2 port2 0x2000 MISC
141 ...
142
143 SPLLC shared by u3 ports and FMREG shared by u2 ports on
144TPHY V1 are put back into each port; a new bank MISC for
145u2 ports and CHIP for u3 ports are added on TPHY V2.