brcm,brcmstb-sata-phy.txt 836 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. * Broadcom SATA3 PHY for STB
  2. Required properties:
  3. - compatible: should be one or more of
  4. "brcm,bcm7445-sata-phy"
  5. "brcm,phy-sata3"
  6. - address-cells: should be 1
  7. - size-cells: should be 0
  8. - reg: register range for the PHY PCB interface
  9. - reg-names: should be "phy"
  10. Sub-nodes:
  11. Each port's PHY should be represented as a sub-node.
  12. Sub-nodes required properties:
  13. - reg: the PHY number
  14. - phy-cells: generic PHY binding; must be 0
  15. Optional:
  16. - brcm,enable-ssc: use spread spectrum clocking (SSC) on this port
  17. Example:
  18. sata-phy@f0458100 {
  19. compatible = "brcm,bcm7445-sata-phy", "brcm,phy-sata3";
  20. reg = <0xf0458100 0x1e00>, <0xf045804c 0x10>;
  21. reg-names = "phy";
  22. #address-cells = <1>;
  23. #size-cells = <0>;
  24. sata-phy@0 {
  25. reg = <0>;
  26. #phy-cells = <0>;
  27. };
  28. sata-phy@1 {
  29. reg = <1>;
  30. #phy-cells = <0>;
  31. };
  32. };