summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/phy/qcom,sa8775p-dwmac-sgmii-phy.yaml
blob: b9107759b2a51738d884f6bdce16bf0bff644056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/phy/qcom,sa8775p-dwmac-sgmii-phy.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Qualcomm SerDes/SGMII ethernet PHY controller

maintainers:
  - Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

description:
  The SerDes PHY sits between the MAC and the external PHY and provides
  separate Rx Tx lines.

properties:
  compatible:
    const: qcom,sa8775p-dwmac-sgmii-phy

  reg:
    items:
      - description: serdes

  clocks:
    maxItems: 1

  clock-names:
    const: sgmi_ref

  phy-supply:
    description:
      Phandle to a regulator that provides power to the PHY.

  "#phy-cells":
    const: 0

required:
  - compatible
  - reg
  - "#phy-cells"
  - clocks
  - clock-names

additionalProperties: false

examples:
  - |
    #include <dt-bindings/clock/qcom,sa8775p-gcc.h>
    serdes_phy: phy@8901000 {
        compatible = "qcom,sa8775p-dwmac-sgmii-phy";
        reg = <0x08901000 0xe10>;
        clocks = <&gcc GCC_SGMI_CLKREF_EN>;
        clock-names = "sgmi_ref";
        #phy-cells = <0>;
    };