qcom-apq8064-sata-phy.txt 713 B

123456789101112131415161718192021222324
  1. Qualcomm APQ8064 SATA PHY Controller
  2. ------------------------------------
  3. SATA PHY nodes are defined to describe on-chip SATA Physical layer controllers.
  4. Each SATA PHY controller should have its own node.
  5. Required properties:
  6. - compatible: compatible list, contains "qcom,apq8064-sata-phy".
  7. - reg: offset and length of the SATA PHY register set;
  8. - #phy-cells: must be zero
  9. - clocks: a list of phandles and clock-specifier pairs, one for each entry in
  10. clock-names.
  11. - clock-names: must be "cfg" for phy config clock.
  12. Example:
  13. sata_phy: sata-phy@1b400000 {
  14. compatible = "qcom,apq8064-sata-phy";
  15. reg = <0x1b400000 0x200>;
  16. clocks = <&gcc SATA_PHY_CFG_CLK>;
  17. clock-names = "cfg";
  18. #phy-cells = <0>;
  19. };