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