-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Tony Prisk
authored and
David S. Miller
committed
May 20, 2013
1 parent
e2c41f1
commit 6dffbe5
Showing
4 changed files
with
305 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
* VIA Velocity 10/100/1000 Network Controller | ||
|
||
Required properties: | ||
- compatible : Should be "via,velocity-vt6110" | ||
- reg : Address and length of the io space | ||
- interrupts : Should contain the controller interrupt line | ||
|
||
Optional properties: | ||
- no-eeprom : PCI network cards use an external EEPROM to store data. Embedded | ||
devices quite often set this data in uboot and do not provide an eeprom. | ||
Specify this option if you have no external eeprom. | ||
|
||
Examples: | ||
|
||
eth0@d8004000 { | ||
compatible = "via,velocity-vt6110"; | ||
reg = <0xd8004000 0x400>; | ||
interrupts = <10>; | ||
no-eeprom; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.