1 TI PHY: DT DOCUMENTATION FOR PHYs in TI PLATFORMs
6 - compatible: Should be one of
7 "ti,control-phy-otghs" - if it has otghs_control mailbox register as on OMAP4.
8 "ti,control-phy-usb2" - if it has Power down bit in control_dev_conf register
9 e.g. USB2_PHY on OMAP5.
10 "ti,control-phy-pipe3" - if it has DPLL and individual Rx & Tx power control
11 e.g. USB3 PHY and SATA PHY on OMAP5.
12 "ti,control-phy-pcie" - for pcie to support external clock for pcie and to
14 e.g. PCIE PHY in DRA7x
15 "ti,control-phy-usb2-dra7" - if it has power down register like USB2 PHY on
17 "ti,control-phy-usb2-am437" - if it has power down register like USB2 PHY on
19 - reg : register ranges as listed in the reg-names property
20 - reg-names: "otghs_control" for control-phy-otghs
21 "power", "pcie_pcs" and "control_sma" for control-phy-pcie
22 "power" for all other types
24 omap_control_usb: omap-control-usb@4a002300 {
25 compatible = "ti,control-phy-otghs";
26 reg = <0x4a00233c 0x4>;
27 reg-names = "otghs_control";
33 - compatible: Should be "ti,omap-usb2"
34 Should be "ti,dra7x-usb2" for the 1st instance of USB2 PHY on
36 Should be "ti,dra7x-usb2-phy2" for the 2nd instance of USB2 PHY
38 Should be "ti,am654-usb2" for the USB2 PHYs on AM654.
39 - reg : Address and length of the register set for the device.
40 - #phy-cells: determine the number of cells that should be given in the
41 phandle while referencing this phy.
42 - clocks: a list of phandles and clock-specifier pairs, one for each entry in
44 - clock-names: should include:
45 * "wkupclk" - wakeup clock.
46 * "refclk" - reference clock (optional).
48 Deprecated properties:
49 - ctrl-module : phandle of the control module used by PHY driver to power on
52 Recommended properies:
53 - syscon-phy-power : phandle/offset pair. Phandle to the system control
54 module and the register offset to power on/off the PHY.
56 This is usually a subnode of ocp2scp to which it is connected.
59 compatible = "ti,omap-usb2";
60 reg = <0x4a0ad080 0x58>;
61 ctrl-module = <&omap_control_usb>;
63 clocks = <&usb_phy_cm_clk32k>, <&usb_otg_ss_refclk960m>;
64 clock-names = "wkupclk", "refclk";
70 - compatible: Should be "ti,phy-usb3", "ti,phy-pipe3-sata" or
71 "ti,phy-pipe3-pcie. "ti,omap-usb3" is deprecated.
72 - reg : Address and length of the register set for the device.
73 - reg-names: The names of the register addresses corresponding to the registers
75 - #phy-cells: determine the number of cells that should be given in the
76 phandle while referencing this phy.
77 - clocks: a list of phandles and clock-specifier pairs, one for each entry in
79 - clock-names: should include:
80 * "wkupclk" - wakeup clock.
81 * "sysclk" - system clock.
82 * "refclk" - reference clock.
83 * "dpll_ref" - external dpll ref clk
84 * "dpll_ref_m2" - external dpll ref clk
85 * "phy-div" - divider for apll
86 * "div-clk" - apll clock
89 - id: If there are multiple instance of the same type, in order to
90 differentiate between each instance "id" can be used (e.g., multi-lane PCIe
91 PHY). If "id" is not provided, it is set to default value of '1'.
92 - syscon-pllreset: Handle to system control region that contains the
93 CTRL_CORE_SMA_SW_0 register and register offset to the CTRL_CORE_SMA_SW_0
94 register that contains the SATA_PLL_SOFT_RESET bit. Only valid for sata_phy.
95 - syscon-pcs : phandle/offset pair. Phandle to the system control module and the
96 register offset to write the PCS delay value.
98 Deprecated properties:
99 - ctrl-module : phandle of the control module used by PHY driver to power on
102 Recommended properies:
103 - syscon-phy-power : phandle/offset pair. Phandle to the system control
104 module and the register offset to power on/off the PHY.
106 This is usually a subnode of ocp2scp to which it is connected.
109 compatible = "ti,phy-usb3";
110 reg = <0x4a084400 0x80>,
113 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
114 ctrl-module = <&omap_control_usb>;
116 clocks = <&usb_phy_cm_clk32k>,
118 <&usb_otg_ss_refclk960m>;
119 clock-names = "wkupclk",
124 sata_phy: phy@4a096000 {
125 compatible = "ti,phy-pipe3-sata";
126 reg = <0x4A096000 0x80>, /* phy_rx */
127 <0x4A096400 0x64>, /* phy_tx */
128 <0x4A096800 0x40>; /* pll_ctrl */
129 reg-names = "phy_rx", "phy_tx", "pll_ctrl";
130 ctrl-module = <&omap_control_sata>;
131 clocks = <&sys_clkin1>, <&sata_ref_clk>;
132 clock-names = "sysclk", "refclk";
133 syscon-pllreset = <&scm_conf 0x3fc>;