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