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/marvell-pxa168.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 * Marvell PXA168 Ethernet Controller
    2 
    3 Required properties:
    4 - compatible: should be "marvell,pxa168-eth".
    5 - reg: address and length of the register set for the device.
    6 - interrupts: interrupt for the device.
    7 - clocks: pointer to the clock for the device.
    8 
    9 Optional properties:
   10 - port-id: Ethernet port number. Should be '0','1' or '2'.
   11 - #address-cells: must be 1 when using sub-nodes.
   12 - #size-cells: must be 0 when using sub-nodes.
   13 - phy-handle: see ethernet.txt file in the same directory.
   14 
   15 The MAC address will be determined using the optional properties
   16 defined in ethernet.txt.
   17 
   18 Sub-nodes:
   19 Each PHY can be represented as a sub-node. This is not mandatory.
   20 
   21 Sub-nodes required properties:
   22 - reg: the MDIO address of the PHY.
   23 
   24 Example:
   25 
   26         eth0: ethernet@f7b90000 {
   27                 compatible = "marvell,pxa168-eth";
   28                 reg = <0xf7b90000 0x10000>;
   29                 clocks = <&chip CLKID_GETH0>;
   30                 interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
   31                 #address-cells = <1>;
   32                 #size-cells = <0>;
   33                 phy-handle = <&ethphy0>;
   34 
   35                 ethphy0: ethernet-phy@0 {
   36                         reg = <0>;
   37                 };
   38         };

Cache object: cb8538689ad60f172f462671ad13287d


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