brcm,sata-brcmstb.txt 868 B

12345678910111213141516171819202122232425262728293031323334
  1. * Broadcom SATA3 AHCI Controller for STB
  2. SATA nodes are defined to describe on-chip Serial ATA controllers.
  3. Each SATA controller should have its own node.
  4. Required properties:
  5. - compatible : compatible list, may contain "brcm,bcm7445-ahci" and/or
  6. "brcm,sata3-ahci"
  7. - reg : register mappings for AHCI and SATA_TOP_CTRL
  8. - reg-names : "ahci" and "top-ctrl"
  9. - interrupts : interrupt mapping for SATA IRQ
  10. Also see ahci-platform.txt.
  11. Example:
  12. sata@f045a000 {
  13. compatible = "brcm,bcm7445-ahci", "brcm,sata3-ahci";
  14. reg = <0xf045a000 0xa9c>, <0xf0458040 0x24>;
  15. reg-names = "ahci", "top-ctrl";
  16. interrupts = <0 30 0>;
  17. #address-cells = <1>;
  18. #size-cells = <0>;
  19. sata0: sata-port@0 {
  20. reg = <0>;
  21. phys = <&sata_phy 0>;
  22. };
  23. sata1: sata-port@1 {
  24. reg = <1>;
  25. phys = <&sata_phy 1>;
  26. };
  27. };