Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 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 | |
| 7 | title: Rockchip specific extensions to the Analogix Display Port PHY |
| 8 | |
| 9 | maintainers: |
| 10 | - Heiko Stuebner <heiko@sntech.de> |
| 11 | |
| 12 | properties: |
| 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 | |
| 25 | required: |
| 26 | - compatible |
| 27 | - clocks |
| 28 | - clock-names |
| 29 | - "#phy-cells" |
| 30 | |
| 31 | additionalProperties: false |
| 32 | |
| 33 | examples: |
| 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 | }; |