imx-sata.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. * Freescale i.MX AHCI SATA Controller
  2. The Freescale i.MX SATA controller mostly conforms to the AHCI interface
  3. with some special extensions at integration level.
  4. Required properties:
  5. - compatible : should be one of the following:
  6. - "fsl,imx53-ahci" for i.MX53 SATA controller
  7. - "fsl,imx6q-ahci" for i.MX6Q SATA controller
  8. - "fsl,imx6qp-ahci" for i.MX6QP SATA controller
  9. - interrupts : interrupt mapping for SATA IRQ
  10. - reg : registers mapping
  11. - clocks : list of clock specifiers, must contain an entry for each
  12. required entry in clock-names
  13. - clock-names : should include "sata", "sata_ref" and "ahb" entries
  14. Optional properties:
  15. - fsl,transmit-level-mV : transmit voltage level, in millivolts.
  16. - fsl,transmit-boost-mdB : transmit boost level, in milli-decibels
  17. - fsl,transmit-atten-16ths : transmit attenuation, in 16ths
  18. - fsl,receive-eq-mdB : receive equalisation, in milli-decibels
  19. Please refer to the technical documentation or the driver source code
  20. for the list of legal values for these options.
  21. - fsl,no-spread-spectrum : disable spread-spectrum clocking on the SATA
  22. link.
  23. Examples:
  24. sata@2200000 {
  25. compatible = "fsl,imx6q-ahci";
  26. reg = <0x02200000 0x4000>;
  27. interrupts = <0 39 IRQ_TYPE_LEVEL_HIGH>;
  28. clocks = <&clks IMX6QDL_CLK_SATA>,
  29. <&clks IMX6QDL_CLK_SATA_REF_100M>,
  30. <&clks IMX6QDL_CLK_AHB>;
  31. clock-names = "sata", "sata_ref", "ahb";
  32. };