diff options
author | Tony Prisk <linux@prisktech.co.nz> | 2013-05-18 05:39:07 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-05-20 16:40:39 -0400 |
commit | 6dffbe53fbdcc7bd5f6379fa18264f060b0cf61d (patch) | |
tree | d2b794e632ffc93108fd51123579d739aa988beb /Documentation | |
parent | e2c41f143fb2db14ad9b644a515c98e6c2e5ea2d (diff) |
net: velocity: Add platform device support to VIA velocity driver
Add support for the VIA Velocity network driver to be bound to a
OF created platform device.
Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/net/via-velocity.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/via-velocity.txt b/Documentation/devicetree/bindings/net/via-velocity.txt new file mode 100644 index 000000000000..b3db469b1ad7 --- /dev/null +++ b/Documentation/devicetree/bindings/net/via-velocity.txt | |||
@@ -0,0 +1,20 @@ | |||
1 | * VIA Velocity 10/100/1000 Network Controller | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : Should be "via,velocity-vt6110" | ||
5 | - reg : Address and length of the io space | ||
6 | - interrupts : Should contain the controller interrupt line | ||
7 | |||
8 | Optional properties: | ||
9 | - no-eeprom : PCI network cards use an external EEPROM to store data. Embedded | ||
10 | devices quite often set this data in uboot and do not provide an eeprom. | ||
11 | Specify this option if you have no external eeprom. | ||
12 | |||
13 | Examples: | ||
14 | |||
15 | eth0@d8004000 { | ||
16 | compatible = "via,velocity-vt6110"; | ||
17 | reg = <0xd8004000 0x400>; | ||
18 | interrupts = <10>; | ||
19 | no-eeprom; | ||
20 | }; | ||