brcm-sata-phy.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. "brcm,iproc-sr-sata-phy"
  10. - address-cells: should be 1
  11. - size-cells: should be 0
  12. - reg: register ranges for the PHY PCB interface
  13. - reg-names: should be "phy" and "phy-ctrl"
  14. The "phy-ctrl" registers are only required for
  15. "brcm,iproc-ns2-sata-phy" and "brcm,iproc-sr-sata-phy".
  16. Sub-nodes:
  17. Each port's PHY should be represented as a sub-node.
  18. Sub-nodes required properties:
  19. - reg: the PHY number
  20. - phy-cells: generic PHY binding; must be 0
  21. Sub-nodes optional properties:
  22. - brcm,enable-ssc: use spread spectrum clocking (SSC) on this port
  23. This property is not applicable for "brcm,iproc-ns2-sata-phy",
  24. "brcm,iproc-nsp-sata-phy" and "brcm,iproc-sr-sata-phy".
  25. - brcm,rxaeq-mode: string that indicates the desired RX equalizer
  26. mode, possible values are:
  27. "off" (equivalent to not specifying the property)
  28. "auto"
  29. "manual" (brcm,rxaeq-value is used in that case)
  30. - brcm,rxaeq-value: when 'rxaeq-mode' is set to "manual", provides the RX
  31. equalizer value that should be used. Allowed range is 0..63.
  32. Example
  33. sata-phy@f0458100 {
  34. compatible = "brcm,bcm7445-sata-phy", "brcm,phy-sata3";
  35. reg = <0xf0458100 0x1e00>, <0xf045804c 0x10>;
  36. reg-names = "phy";
  37. #address-cells = <1>;
  38. #size-cells = <0>;
  39. sata-phy@0 {
  40. reg = <0>;
  41. #phy-cells = <0>;
  42. };
  43. sata-phy@1 {
  44. reg = <1>;
  45. #phy-cells = <0>;
  46. };
  47. };