marvell.txt 567 B

12345678910111213141516171819202122
  1. * Marvell Orion SATA
  2. Required Properties:
  3. - compatibility : "marvell,orion-sata" or "marvell,armada-370-sata"
  4. - reg : Address range of controller
  5. - interrupts : Interrupt controller is using
  6. - nr-ports : Number of SATA ports in use.
  7. Optional Properties:
  8. - phys : List of phandles to sata phys
  9. - phy-names : Should be "0", "1", etc, one number per phandle
  10. Example:
  11. sata@80000 {
  12. compatible = "marvell,orion-sata";
  13. reg = <0x80000 0x5000>;
  14. interrupts = <21>;
  15. phys = <&sata_phy0>, <&sata_phy1>;
  16. phy-names = "0", "1";
  17. nr-ports = <2>;
  18. }