diff options
author | Rob Herring <rob.herring@calxeda.com> | 2011-11-22 18:18:19 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-29 07:15:24 +0100 |
commit | 85c10f28286148ee5cdba1d22c81936ff160596e (patch) | |
tree | f2dba1bd0a281e8fc56e080a449ba7b8b6a810b9 /Documentation | |
parent | corral some wayward N/A fw_version dust bunnies (diff) | |
download | linux-85c10f28286148ee5cdba1d22c81936ff160596e.tar.xz linux-85c10f28286148ee5cdba1d22c81936ff160596e.zip |
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')
-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>; +}; |