aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/net
diff options
context:
space:
mode:
authorAlexey Charkov <alchark@gmail.com>2014-04-22 19:28:09 +0400
committerDavid S. Miller <davem@davemloft.net>2014-04-23 15:24:06 -0400
commit2d283862dc62daead9db0dc89cd0d0351e91f765 (patch)
tree7c1d18c8bd1ef0aed77006202213d70e75f0e3e3 /Documentation/devicetree/bindings/net
parentnet: via-rhine: reduce usage of the PCI-specific struct (diff)
downloadlinux-dev-2d283862dc62daead9db0dc89cd0d0351e91f765.tar.xz
linux-dev-2d283862dc62daead9db0dc89cd0d0351e91f765.zip
net: via-rhine: add OF bus binding
This should make the driver usable with VIA/WonderMedia ARM-based Systems-on-Chip integrated Rhine III adapters. Note that these are always in MMIO mode, and don't have any known EEPROM. Signed-off-by: Alexey Charkov <alchark@gmail.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/devicetree/bindings/net')
-rw-r--r--Documentation/devicetree/bindings/net/via-rhine.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/via-rhine.txt b/Documentation/devicetree/bindings/net/via-rhine.txt
new file mode 100644
index 000000000000..334eca2bf937
--- /dev/null
+++ b/Documentation/devicetree/bindings/net/via-rhine.txt
@@ -0,0 +1,17 @@
+* VIA Rhine 10/100 Network Controller
+
+Required properties:
+- compatible : Should be "via,vt8500-rhine" for integrated
+ Rhine controllers found in VIA VT8500, WonderMedia WM8950
+ and similar. These are listed as 1106:3106 rev. 0x84 on the
+ virtual PCI bus under vendor-provided kernels
+- reg : Address and length of the io space
+- interrupts : Should contain the controller interrupt line
+
+Examples:
+
+ethernet@d8004000 {
+ compatible = "via,vt8500-rhine";
+ reg = <0xd8004000 0x100>;
+ interrupts = <10>;
+};