xref: /freebsd/sys/contrib/device-tree/Bindings/phy/dm816x-phy.txt (revision 7fdf597e96a02165cfe22ff357b857d5fa15ed8a)
1Device tree binding documentation for am816x USB PHY
2=========================
3
4Required properties:
5- compatible : should be "ti,dm816x-usb-phy"
6- reg : offset and length of the PHY register set.
7- reg-names : name for the phy registers
8- clocks : phandle to the clock
9- clock-names : name of the clock
10- syscon: phandle for the syscon node to access misc registers
11- #phy-cells : from the generic PHY bindings, must be 1
12- syscon: phandle for the syscon node to access misc registers
13
14Example:
15
16usb_phy0: usb-phy@20 {
17	compatible = "ti,dm8168-usb-phy";
18	reg = <0x20 0x8>;
19	reg-names = "phy";
20	clocks = <&main_fapll 6>;
21	clock-names = "refclk";
22	#phy-cells = <0>;
23	syscon = <&scm_conf>;
24};
25