ahci-platform.txt 818 B

12345678910111213141516171819202122232425
  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. - dma-coherent : Present if dma operations are coherent
  13. Example:
  14. sata@ffe08000 {
  15. compatible = "calxeda,hb-ahci";
  16. reg = <0xffe08000 0x1000>;
  17. interrupts = <115>;
  18. calxeda,port-phys = <&combophy5 0 &combophy0 0 &combophy0 1
  19. &combophy0 2 &combophy0 3>;
  20. };