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/ralink,rt2880-net.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 Ralink Frame Engine Ethernet controller
    2 =======================================
    3 
    4 The Ralink frame engine ethernet controller can be found on Ralink and
    5 Mediatek SoCs (RT288x, RT3x5x, RT366x, RT388x, rt5350, mt7620, mt7621, mt76x8).
    6 
    7 Depending on the SoC, there is a number of ports connected to the CPU port
    8 directly and/or via a (gigabit-)switch.
    9 
   10 * Ethernet controller node
   11 
   12 Required properties:
   13 - compatible: Should be one of "ralink,rt2880-eth", "ralink,rt3050-eth",
   14   "ralink,rt3050-eth", "ralink,rt3883-eth", "ralink,rt5350-eth",
   15   "mediatek,mt7620-eth", "mediatek,mt7621-eth"
   16 - reg: Address and length of the register set for the device
   17 - interrupts: Should contain the frame engines interrupt
   18 - resets: Should contain the frame engines resets
   19 - reset-names: Should contain the reset names "fe". If a switch is present
   20   "esw" is also required.
   21 
   22 
   23 * Ethernet port node
   24 
   25 Required properties:
   26 - compatible: Should be "ralink,eth-port"
   27 - reg: The number of the physical port
   28 - phy-handle: reference to the node describing the phy
   29 
   30 Example:
   31 
   32 mdio-bus {
   33         ...
   34         phy0: ethernet-phy@0 {
   35                 phy-mode = "mii";
   36                 reg = <0>;
   37         };
   38 };
   39 
   40 ethernet@400000 {
   41         compatible = "ralink,rt2880-eth";
   42         reg = <0x00400000 10000>;
   43 
   44         #address-cells = <1>;
   45         #size-cells = <0>;
   46 
   47         resets = <&rstctrl 18>;
   48         reset-names = "fe";
   49 
   50         interrupt-parent = <&cpuintc>;
   51         interrupts = <5>;
   52 
   53         port@0 {
   54                 compatible = "ralink,eth-port";
   55                 reg = <0>;
   56                 phy-handle = <&phy0>;
   57         };
   58 
   59 };

Cache object: fb865699de0a96f6ee71dbd118eb8f20


[ 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.