xref: /freebsd/sys/contrib/device-tree/Bindings/net/fsl,cpm-mdio.yaml (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1*b2d2a78aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*b2d2a78aSEmmanuel Vadot%YAML 1.2
3*b2d2a78aSEmmanuel Vadot---
4*b2d2a78aSEmmanuel Vadot$id: http://devicetree.org/schemas/net/fsl,cpm-mdio.yaml#
5*b2d2a78aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*b2d2a78aSEmmanuel Vadot
7*b2d2a78aSEmmanuel Vadottitle: Freescale CPM MDIO Device
8*b2d2a78aSEmmanuel Vadot
9*b2d2a78aSEmmanuel Vadotmaintainers:
10*b2d2a78aSEmmanuel Vadot  - Frank Li <Frank.Li@nxp.com>
11*b2d2a78aSEmmanuel Vadot
12*b2d2a78aSEmmanuel Vadotproperties:
13*b2d2a78aSEmmanuel Vadot  compatible:
14*b2d2a78aSEmmanuel Vadot    oneOf:
15*b2d2a78aSEmmanuel Vadot      - enum:
16*b2d2a78aSEmmanuel Vadot          - fsl,pq1-fec-mdio
17*b2d2a78aSEmmanuel Vadot          - fsl,cpm2-mdio-bitbang
18*b2d2a78aSEmmanuel Vadot      - items:
19*b2d2a78aSEmmanuel Vadot          - const: fsl,mpc8272ads-mdio-bitbang
20*b2d2a78aSEmmanuel Vadot          - const: fsl,mpc8272-mdio-bitbang
21*b2d2a78aSEmmanuel Vadot          - const: fsl,cpm2-mdio-bitbang
22*b2d2a78aSEmmanuel Vadot
23*b2d2a78aSEmmanuel Vadot  reg:
24*b2d2a78aSEmmanuel Vadot    maxItems: 1
25*b2d2a78aSEmmanuel Vadot
26*b2d2a78aSEmmanuel Vadot  fsl,mdio-pin:
27*b2d2a78aSEmmanuel Vadot    $ref: /schemas/types.yaml#/definitions/uint32
28*b2d2a78aSEmmanuel Vadot    description: pin of port C controlling mdio data
29*b2d2a78aSEmmanuel Vadot
30*b2d2a78aSEmmanuel Vadot  fsl,mdc-pin:
31*b2d2a78aSEmmanuel Vadot    $ref: /schemas/types.yaml#/definitions/uint32
32*b2d2a78aSEmmanuel Vadot    description: pin of port C controlling mdio clock
33*b2d2a78aSEmmanuel Vadot
34*b2d2a78aSEmmanuel Vadotrequired:
35*b2d2a78aSEmmanuel Vadot  - compatible
36*b2d2a78aSEmmanuel Vadot  - reg
37*b2d2a78aSEmmanuel Vadot
38*b2d2a78aSEmmanuel VadotallOf:
39*b2d2a78aSEmmanuel Vadot  - $ref: mdio.yaml#
40*b2d2a78aSEmmanuel Vadot
41*b2d2a78aSEmmanuel VadotunevaluatedProperties: false
42*b2d2a78aSEmmanuel Vadot
43*b2d2a78aSEmmanuel Vadotexamples:
44*b2d2a78aSEmmanuel Vadot  - |
45*b2d2a78aSEmmanuel Vadot    mdio@10d40 {
46*b2d2a78aSEmmanuel Vadot        compatible = "fsl,mpc8272ads-mdio-bitbang",
47*b2d2a78aSEmmanuel Vadot                     "fsl,mpc8272-mdio-bitbang",
48*b2d2a78aSEmmanuel Vadot                     "fsl,cpm2-mdio-bitbang";
49*b2d2a78aSEmmanuel Vadot        reg = <0x10d40 0x14>;
50*b2d2a78aSEmmanuel Vadot        #address-cells = <1>;
51*b2d2a78aSEmmanuel Vadot        #size-cells = <0>;
52*b2d2a78aSEmmanuel Vadot        fsl,mdio-pin = <12>;
53*b2d2a78aSEmmanuel Vadot        fsl,mdc-pin = <13>;
54*b2d2a78aSEmmanuel Vadot    };
55*b2d2a78aSEmmanuel Vadot
56