phy: add a NO-OP phy driver
[oweals/u-boot.git] / Documentation / devicetree / bindings / phy / no-op.txt
1 NOP PHY driver
2
3 This driver is used to stub PHY operations in a driver (USB, SATA).
4 This is useful when the 'client' driver (USB, SATA, ...) uses the PHY framework
5 and there is no actual PHY harwdare to drive.
6
7 Required properties:
8 - compatible     : must contain "nop-phy"
9 - #phy-cells     : must contain <0>
10
11 Example:
12
13 nop_phy {
14         compatible = "nop-phy";
15         #phy-cells = <0>;
16 };