brcm-sata-phy.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. * Broadcom SATA3 PHY
  2. Required properties:
  3. - compatible: should be one or more of
  4. "brcm,bcm7425-sata-phy"
  5. "brcm,bcm7445-sata-phy"
  6. "brcm,iproc-ns2-sata-phy"
  7. "brcm,iproc-nsp-sata-phy"
  8. "brcm,phy-sata3"
  9. - address-cells: should be 1
  10. - size-cells: should be 0
  11. - reg: register ranges for the PHY PCB interface
  12. - reg-names: should be "phy" and "phy-ctrl"
  13. The "phy-ctrl" registers are only required for
  14. "brcm,iproc-ns2-sata-phy".
  15. Sub-nodes:
  16. Each port's PHY should be represented as a sub-node.
  17. Sub-nodes required properties:
  18. - reg: the PHY number
  19. - phy-cells: generic PHY binding; must be 0
  20. Sub-nodes optional properties:
  21. - brcm,enable-ssc: use spread spectrum clocking (SSC) on this port
  22. This property is not applicable for "brcm,iproc-ns2-sata-phy" and
  23. "brcm,iproc-nsp-sata-phy".
  24. Example:
  25. sata-phy@f0458100 {
  26. compatible = "brcm,bcm7445-sata-phy", "brcm,phy-sata3";
  27. reg = <0xf0458100 0x1e00>, <0xf045804c 0x10>;
  28. reg-names = "phy";
  29. #address-cells = <1>;
  30. #size-cells = <0>;
  31. sata-phy@0 {
  32. reg = <0>;
  33. #phy-cells = <0>;
  34. };
  35. sata-phy@1 {
  36. reg = <1>;
  37. #phy-cells = <0>;
  38. };
  39. };