PageRenderTime 24ms CodeModel.GetById 20ms app.highlight 3ms RepoModel.GetById 1ms app.codeStats 0ms

/Documentation/powerpc/dts-bindings/phy.txt

https://bitbucket.org/sammyz/iscream_thunderc-2.6.35-rebase
Plain Text | 25 lines | 21 code | 4 blank | 0 comment | 0 complexity | eb8c42c3f731852fba38dd38273b6015 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
 1PHY nodes
 2
 3Required properties:
 4
 5 - device_type : Should be "ethernet-phy"
 6 - interrupts : <a b> where a is the interrupt number and b is a
 7   field that represents an encoding of the sense and level
 8   information for the interrupt.  This should be encoded based on
 9   the information in section 2) depending on the type of interrupt
10   controller you have.
11 - interrupt-parent : the phandle for the interrupt controller that
12   services interrupts for this device.
13 - reg : The ID number for the phy, usually a small integer
14 - linux,phandle :  phandle for this node; likely referenced by an
15   ethernet controller node.
16
17Example:
18
19ethernet-phy@0 {
20	linux,phandle = <2452000>
21	interrupt-parent = <40000>;
22	interrupts = <35 1>;
23	reg = <0>;
24	device_type = "ethernet-phy";
25};