The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/net/davicom-dm9000.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Davicom DM9000 Fast Ethernet controller
    2 
    3 Required properties:
    4 - compatible = "davicom,dm9000";
    5 - reg : physical addresses and sizes of registers, must contain 2 entries:
    6     first entry : address register,
    7     second entry : data register.
    8 - interrupts : interrupt specifier specific to interrupt controller
    9 
   10 Optional properties:
   11 - davicom,no-eeprom : Configuration EEPROM is not available
   12 - davicom,ext-phy : Use external PHY
   13 - reset-gpios : phandle of gpio that will be used to reset chip during probe
   14 - vcc-supply : phandle of regulator that will be used to enable power to chip
   15 
   16 Example:
   17 
   18         ethernet@18000000 {
   19                 compatible = "davicom,dm9000";
   20                 reg = <0x18000000 0x2 0x18000004 0x2>;
   21                 interrupt-parent = <&gpn>;
   22                 interrupts = <7 4>;
   23                 local-mac-address = [00 00 de ad be ef];
   24                 davicom,no-eeprom;
   25                 reset-gpios = <&gpf 12 GPIO_ACTIVE_LOW>;
   26                 vcc-supply = <&eth0_power>;
   27         };

Cache object: 7f509253995750ec029440fb1009bcc5


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.