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/mdio-gpio.yaml

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 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/net/mdio-gpio.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: MDIO on GPIOs
    8 
    9 maintainers:
   10   - Andrew Lunn <andrew@lunn.ch>
   11   - Heiner Kallweit <hkallweit1@gmail.com>
   12   - Russell King <linux@armlinux.org.uk>
   13 
   14 allOf:
   15   - $ref: "mdio.yaml#"
   16 
   17 properties:
   18   compatible:
   19     enum:
   20       - virtual,mdio-gpio
   21       - microchip,mdio-smi0
   22 
   23   "#address-cells":
   24     const: 1
   25 
   26   "#size-cells":
   27     const: 0
   28 
   29   gpios:
   30     minItems: 2
   31     items:
   32       - description: MDC
   33       - description: MDIO
   34       - description: MDO
   35 
   36 #Note: Each gpio-mdio bus should have an alias correctly numbered in "aliases"
   37 #node.
   38 additionalProperties:
   39   type: object
   40 
   41 examples:
   42   - |
   43     aliases {
   44         mdio-gpio0 = &mdio0;
   45     };
   46 
   47     mdio0: mdio {
   48       compatible = "virtual,mdio-gpio";
   49       #address-cells = <1>;
   50       #size-cells = <0>;
   51       gpios = <&qe_pio_a 11>,
   52               <&qe_pio_c 6>;
   53       ethphy0: ethernet-phy@0 {
   54         reg = <0>;
   55       };
   56     };
   57 ...

Cache object: 3f589f991a0672602f78c965422f90b1


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