brintos

brintos / linux-shallow public Read only

0
0
Text · 757 B · 2538235 Raw
42 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---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 PHY8 9maintainers:10  - Heiko Stuebner <heiko@sntech.de>11 12properties:13  compatible:14    const: rockchip,rk3288-dp-phy15 16  clocks:17    maxItems: 118 19  clock-names:20    const: 24m21 22  "#phy-cells":23    const: 024 25required:26  - compatible27  - clocks28  - clock-names29  - "#phy-cells"30 31additionalProperties: false32 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