xref: /freebsd/sys/contrib/device-tree/Bindings/phy/renesas,r8a779f0-ether-serdes.yaml (revision 8bab661a3316d8bd9b9fbd11a3b4371b91507bd2)
1*8bab661aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*8bab661aSEmmanuel Vadot%YAML 1.2
3*8bab661aSEmmanuel Vadot---
4*8bab661aSEmmanuel Vadot$id: http://devicetree.org/schemas/phy/renesas,r8a779f0-ether-serdes.yaml#
5*8bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*8bab661aSEmmanuel Vadot
7*8bab661aSEmmanuel Vadottitle: Renesas Ethernet SERDES
8*8bab661aSEmmanuel Vadot
9*8bab661aSEmmanuel Vadotmaintainers:
10*8bab661aSEmmanuel Vadot  - Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11*8bab661aSEmmanuel Vadot
12*8bab661aSEmmanuel Vadotproperties:
13*8bab661aSEmmanuel Vadot  compatible:
14*8bab661aSEmmanuel Vadot    const: renesas,r8a779f0-ether-serdes
15*8bab661aSEmmanuel Vadot
16*8bab661aSEmmanuel Vadot  reg:
17*8bab661aSEmmanuel Vadot    maxItems: 1
18*8bab661aSEmmanuel Vadot
19*8bab661aSEmmanuel Vadot  clocks:
20*8bab661aSEmmanuel Vadot    maxItems: 1
21*8bab661aSEmmanuel Vadot
22*8bab661aSEmmanuel Vadot  resets:
23*8bab661aSEmmanuel Vadot    maxItems: 1
24*8bab661aSEmmanuel Vadot
25*8bab661aSEmmanuel Vadot  power-domains:
26*8bab661aSEmmanuel Vadot    maxItems: 1
27*8bab661aSEmmanuel Vadot
28*8bab661aSEmmanuel Vadot  '#phy-cells':
29*8bab661aSEmmanuel Vadot    description: Port number of SERDES.
30*8bab661aSEmmanuel Vadot    const: 1
31*8bab661aSEmmanuel Vadot
32*8bab661aSEmmanuel Vadotrequired:
33*8bab661aSEmmanuel Vadot  - compatible
34*8bab661aSEmmanuel Vadot  - reg
35*8bab661aSEmmanuel Vadot  - clocks
36*8bab661aSEmmanuel Vadot  - resets
37*8bab661aSEmmanuel Vadot  - power-domains
38*8bab661aSEmmanuel Vadot  - '#phy-cells'
39*8bab661aSEmmanuel Vadot
40*8bab661aSEmmanuel VadotadditionalProperties: false
41*8bab661aSEmmanuel Vadot
42*8bab661aSEmmanuel Vadotexamples:
43*8bab661aSEmmanuel Vadot  - |
44*8bab661aSEmmanuel Vadot    #include <dt-bindings/clock/r8a779f0-cpg-mssr.h>
45*8bab661aSEmmanuel Vadot    #include <dt-bindings/power/r8a779f0-sysc.h>
46*8bab661aSEmmanuel Vadot
47*8bab661aSEmmanuel Vadot    phy@e6444000 {
48*8bab661aSEmmanuel Vadot        compatible = "renesas,r8a779f0-ether-serdes";
49*8bab661aSEmmanuel Vadot        reg = <0xe6444000 0xc00>;
50*8bab661aSEmmanuel Vadot        clocks = <&cpg CPG_MOD 1506>;
51*8bab661aSEmmanuel Vadot        power-domains = <&sysc R8A779F0_PD_ALWAYS_ON>;
52*8bab661aSEmmanuel Vadot        resets = <&cpg 1506>;
53*8bab661aSEmmanuel Vadot        #phy-cells = <1>;
54*8bab661aSEmmanuel Vadot    };
55