xref: /freebsd/sys/contrib/device-tree/Bindings/phy/pxa1928-usb-phy.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot* Marvell PXA1928 USB and HSIC PHYs
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotRequired properties:
4*c66ec88fSEmmanuel Vadot- compatible: "marvell,pxa1928-usb-phy" or "marvell,pxa1928-hsic-phy"
5*c66ec88fSEmmanuel Vadot- reg: base address and length of the registers
6*c66ec88fSEmmanuel Vadot- clocks - A single clock. From common clock binding.
7*c66ec88fSEmmanuel Vadot- #phys-cells: should be 0. From commmon phy binding.
8*c66ec88fSEmmanuel Vadot- resets: reference to the reset controller
9*c66ec88fSEmmanuel Vadot
10*c66ec88fSEmmanuel VadotExample:
11*c66ec88fSEmmanuel Vadot
12*c66ec88fSEmmanuel Vadot	usbphy: phy@7000 {
13*c66ec88fSEmmanuel Vadot		compatible = "marvell,pxa1928-usb-phy";
14*c66ec88fSEmmanuel Vadot		reg = <0x7000 0xe0>;
15*c66ec88fSEmmanuel Vadot		clocks = <&apmu_clocks PXA1928_CLK_USB>;
16*c66ec88fSEmmanuel Vadot		#phy-cells = <0>;
17*c66ec88fSEmmanuel Vadot	};
18*c66ec88fSEmmanuel Vadot
19