mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
doc: bindings: add bindings document for PHY nodes
It defines that PHY nodes must be children on MDIO bus nodes and defines the only required property in U-Boot, reg. This property along with the example provided are copied over from Linux. Signed-off-by: Alex Marginean <alexandru.marginean@nxp.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
6d9bc2043a
commit
e81031c2b8
1 changed files with 24 additions and 0 deletions
24
doc/device-tree-bindings/net/phy.txt
Normal file
24
doc/device-tree-bindings/net/phy.txt
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
PHY nodes
|
||||||
|
|
||||||
|
If the device tree is used to describe networking interfaces, U-Boot expects a
|
||||||
|
node for each PHY. Parent node for such a PHY node is expected to correspond to
|
||||||
|
a MDIO bus and the bus is used to access the PHY.
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
|
||||||
|
- reg : The ID number for the phy, usually a small integer
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
ethernet-phy@0 {
|
||||||
|
compatible = "ethernet-phy-id0141.0e90", "ethernet-phy-ieee802.3-c22";
|
||||||
|
interrupt-parent = <&PIC>;
|
||||||
|
interrupts = <35 IRQ_TYPE_EDGE_RISING>;
|
||||||
|
reg = <0>;
|
||||||
|
|
||||||
|
resets = <&rst 8>;
|
||||||
|
reset-names = "phy";
|
||||||
|
reset-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>;
|
||||||
|
reset-assert-us = <1000>;
|
||||||
|
reset-deassert-us = <2000>;
|
||||||
|
};
|
Loading…
Reference in a new issue