xref: /linux/Documentation/devicetree/bindings/phy/ti,ds125df111.yaml (revision 3a2c4d55e32ad65efebdb6de44eef3bfa08bb49d)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/phy/ti,ds125df111.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: TI DS125DF111 Retimer PHY
8
9description:
10  This binding describes the TI DS125DF111 multi-protocol Retimer PHY.
11
12maintainers:
13  - Ioana Ciornei <ioana.ciornei@nxp.com>
14
15properties:
16  compatible:
17    const: ti,ds125df111
18
19  reg:
20    maxItems: 1
21
22  "#phy-cells":
23    const: 1
24    description: |
25      The phandle's argument in the PHY specifier selects one of the two
26      channels of the retimer
27
28required:
29  - compatible
30  - reg
31  - "#phy-cells"
32
33additionalProperties: false
34
35examples:
36  - |
37    i2c {
38      #address-cells = <1>;
39      #size-cells = <0>;
40
41      phy@18 {
42        compatible = "ti,ds125df111";
43        reg = <0x18>;
44        #phy-cells = <1>;
45      };
46    };
47