1*fc7b83bcSJohan Jonker# SPDX-License-Identifier: GPL-2.0
2*fc7b83bcSJohan Jonker%YAML 1.2
3*fc7b83bcSJohan Jonker---
4*fc7b83bcSJohan Jonker$id: http://devicetree.org/schemas/phy/rockchip,rk3288-dp-phy.yaml#
5*fc7b83bcSJohan Jonker$schema: http://devicetree.org/meta-schemas/core.yaml#
6*fc7b83bcSJohan Jonker
7*fc7b83bcSJohan Jonkertitle: Rockchip specific extensions to the Analogix Display Port PHY
8*fc7b83bcSJohan Jonker
9*fc7b83bcSJohan Jonkermaintainers:
10*fc7b83bcSJohan Jonker  - Heiko Stuebner <heiko@sntech.de>
11*fc7b83bcSJohan Jonker
12*fc7b83bcSJohan Jonkerproperties:
13*fc7b83bcSJohan Jonker  compatible:
14*fc7b83bcSJohan Jonker    const: rockchip,rk3288-dp-phy
15*fc7b83bcSJohan Jonker
16*fc7b83bcSJohan Jonker  clocks:
17*fc7b83bcSJohan Jonker    maxItems: 1
18*fc7b83bcSJohan Jonker
19*fc7b83bcSJohan Jonker  clock-names:
20*fc7b83bcSJohan Jonker    const: 24m
21*fc7b83bcSJohan Jonker
22*fc7b83bcSJohan Jonker  "#phy-cells":
23*fc7b83bcSJohan Jonker    const: 0
24*fc7b83bcSJohan Jonker
25*fc7b83bcSJohan Jonkerrequired:
26*fc7b83bcSJohan Jonker  - compatible
27*fc7b83bcSJohan Jonker  - clocks
28*fc7b83bcSJohan Jonker  - clock-names
29*fc7b83bcSJohan Jonker  - "#phy-cells"
30*fc7b83bcSJohan Jonker
31*fc7b83bcSJohan JonkeradditionalProperties: false
32*fc7b83bcSJohan Jonker
33*fc7b83bcSJohan Jonkerexamples:
34*fc7b83bcSJohan Jonker  - |
35*fc7b83bcSJohan Jonker    #include <dt-bindings/clock/rk3288-cru.h>
36*fc7b83bcSJohan Jonker    edp-phy {
37*fc7b83bcSJohan Jonker      compatible = "rockchip,rk3288-dp-phy";
38*fc7b83bcSJohan Jonker      clocks = <&cru SCLK_EDP_24M>;
39*fc7b83bcSJohan Jonker      clock-names = "24m";
40*fc7b83bcSJohan Jonker      #phy-cells = <0>;
41*fc7b83bcSJohan Jonker    };
42