rockchip,rk3288-dp-phy.yaml 757 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. title: Rockchip specific extensions to the Analogix Display Port PHY
  7. maintainers:
  8. - Heiko Stuebner <heiko@sntech.de>
  9. properties:
  10. compatible:
  11. const: rockchip,rk3288-dp-phy
  12. clocks:
  13. maxItems: 1
  14. clock-names:
  15. const: 24m
  16. "#phy-cells":
  17. const: 0
  18. required:
  19. - compatible
  20. - clocks
  21. - clock-names
  22. - "#phy-cells"
  23. additionalProperties: false
  24. examples:
  25. - |
  26. #include <dt-bindings/clock/rk3288-cru.h>
  27. edp-phy {
  28. compatible = "rockchip,rk3288-dp-phy";
  29. clocks = <&cru SCLK_EDP_24M>;
  30. clock-names = "24m";
  31. #phy-cells = <0>;
  32. };