rockchip-pcie-phy.txt 728 B

1234567891011121314151617181920212223242526272829303132
  1. Rockchip PCIE PHY
  2. -----------------------
  3. Required properties:
  4. - compatible: rockchip,rk3399-pcie-phy
  5. - #phy-cells: must be 0
  6. - clocks: Must contain an entry in clock-names.
  7. See ../clocks/clock-bindings.txt for details.
  8. - clock-names: Must be "refclk"
  9. - resets: Must contain an entry in reset-names.
  10. See ../reset/reset.txt for details.
  11. - reset-names: Must be "phy"
  12. Example:
  13. grf: syscon@ff770000 {
  14. compatible = "rockchip,rk3399-grf", "syscon", "simple-mfd";
  15. #address-cells = <1>;
  16. #size-cells = <1>;
  17. ...
  18. pcie_phy: pcie-phy {
  19. compatible = "rockchip,rk3399-pcie-phy";
  20. #phy-cells = <0>;
  21. clocks = <&cru SCLK_PCIEPHY_REF>;
  22. clock-names = "refclk";
  23. resets = <&cru SRST_PCIEPHY>;
  24. reset-names = "phy";
  25. };
  26. };