Merge branch 'cdc-next'
[linux-2.6-block.git] / Documentation / devicetree / bindings / net / phy.txt
CommitLineData
b053dc5a
KG
1PHY nodes
2
3Required properties:
4
b053dc5a
KG
5 - interrupts : <a b> where a is the interrupt number and b is a
6 field that represents an encoding of the sense and level
7 information for the interrupt. This should be encoded based on
8 the information in section 2) depending on the type of interrupt
9 controller you have.
10 - interrupt-parent : the phandle for the interrupt controller that
11 services interrupts for this device.
12 - reg : The ID number for the phy, usually a small integer
b053dc5a 13
6bd47ac2
DD
14Optional Properties:
15
16- compatible: Compatible list, may contain
17 "ethernet-phy-ieee802.3-c22" or "ethernet-phy-ieee802.3-c45" for
18 PHYs that implement IEEE802.3 clause 22 or IEEE802.3 clause 45
19 specifications. If neither of these are specified, the default is to
20 assume clause 22. The compatible list may also contain other
21 elements.
9f2b0936 22- max-speed: Maximum PHY supported speed (10, 100, 1000...)
6bd47ac2 23
b053dc5a
KG
24Example:
25
26ethernet-phy@0 {
6bd47ac2 27 compatible = "ethernet-phy-ieee802.3-c22";
b053dc5a
KG
28 interrupt-parent = <40000>;
29 interrupts = <35 1>;
30 reg = <0>;
b053dc5a 31};