brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · 93ab728 Raw
55 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/phy/renesas,r8a779f0-ether-serdes.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Renesas Ethernet SERDES8 9maintainers:10  - Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>11 12properties:13  compatible:14    const: renesas,r8a779f0-ether-serdes15 16  reg:17    maxItems: 118 19  clocks:20    maxItems: 121 22  resets:23    maxItems: 124 25  power-domains:26    maxItems: 127 28  '#phy-cells':29    description: Port number of SERDES.30    const: 131 32required:33  - compatible34  - reg35  - clocks36  - resets37  - power-domains38  - '#phy-cells'39 40additionalProperties: false41 42examples:43  - |44    #include <dt-bindings/clock/r8a779f0-cpg-mssr.h>45    #include <dt-bindings/power/r8a779f0-sysc.h>46 47    phy@e6444000 {48        compatible = "renesas,r8a779f0-ether-serdes";49        reg = <0xe6444000 0xc00>;50        clocks = <&cpg CPG_MOD 1506>;51        power-domains = <&sysc R8A779F0_PD_ALWAYS_ON>;52        resets = <&cpg 1506>;53        #phy-cells = <1>;54    };55