diff options
author | Rob Herring <rob.herring@calxeda.com> | 2011-11-22 17:18:19 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-29 01:15:24 -0500 |
commit | 85c10f28286148ee5cdba1d22c81936ff160596e (patch) | |
tree | f2dba1bd0a281e8fc56e080a449ba7b8b6a810b9 /Documentation/devicetree/bindings/net/calxeda-xgmac.txt | |
parent | 8ac72d167198f52cba8637cc9bec89339b8e4e64 (diff) |
net: add calxeda xgmac ethernet driver
Add support for the XGMAC 10Gb ethernet device in the Calxeda Highbank
SOC.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/devicetree/bindings/net/calxeda-xgmac.txt')
-rw-r--r-- | Documentation/devicetree/bindings/net/calxeda-xgmac.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/calxeda-xgmac.txt b/Documentation/devicetree/bindings/net/calxeda-xgmac.txt new file mode 100644 index 000000000000..411727a3f82d --- /dev/null +++ b/Documentation/devicetree/bindings/net/calxeda-xgmac.txt @@ -0,0 +1,15 @@ +* Calxeda Highbank 10Gb XGMAC Ethernet + +Required properties: +- compatible : Should be "calxeda,hb-xgmac" +- reg : Address and length of the register set for the device +- interrupts : Should contain 3 xgmac interrupts. The 1st is main interrupt. + The 2nd is pwr mgt interrupt. The 3rd is low power state interrupt. + +Example: + +ethernet@fff50000 { + compatible = "calxeda,hb-xgmac"; + reg = <0xfff50000 0x1000>; + interrupts = <0 77 4 0 78 4 0 79 4>; +}; |