25 lines · plain
1Device tree binding documentation for am816x USB PHY2=========================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 registers8- clocks : phandle to the clock9- clock-names : name of the clock10- syscon: phandle for the syscon node to access misc registers11- #phy-cells : from the generic PHY bindings, must be 112- syscon: phandle for the syscon node to access misc registers13 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