ahci-platform.txt 757 B

123456789101112131415161718192021222324
  1. * AHCI SATA Controller
  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, contains "calxeda,hb-ahci" or "snps,spear-ahci"
  6. - interrupts : <interrupt mapping for SATA IRQ>
  7. - reg : <registers mapping>
  8. Optional properties:
  9. - calxeda,port-phys: phandle-combophy and lane assignment, which maps each
  10. SATA port to a combophy and a lane within that
  11. combophy
  12. Example:
  13. sata@ffe08000 {
  14. compatible = "calxeda,hb-ahci";
  15. reg = <0xffe08000 0x1000>;
  16. interrupts = <115>;
  17. calxeda,port-phys = <&combophy5 0 &combophy0 0 &combophy0 1
  18. &combophy0 2 &combophy0 3>;
  19. };