rockchip-dp-phy.txt 666 B

123456789101112131415161718192021222324252627
  1. Rockchip specific extensions to the Analogix Display Port PHY
  2. ------------------------------------
  3. Required properties:
  4. - compatible : should be one of the following supported values:
  5. - "rockchip.rk3288-dp-phy"
  6. - clocks: from common clock binding: handle to dp clock.
  7. of memory mapped region.
  8. - clock-names: from common clock binding:
  9. Required elements: "24m"
  10. - #phy-cells : from the generic PHY bindings, must be 0;
  11. Example:
  12. grf: syscon@ff770000 {
  13. compatible = "rockchip,rk3288-grf", "syscon", "simple-mfd";
  14. ...
  15. edp_phy: edp-phy {
  16. compatible = "rockchip,rk3288-dp-phy";
  17. clocks = <&cru SCLK_EDP_24M>;
  18. clock-names = "24m";
  19. #phy-cells = <0>;
  20. };
  21. };