ahci-fsl-qoriq.txt 750 B

123456789101112131415161718192021
  1. Binding for Freescale QorIQ AHCI SATA Controller
  2. Required properties:
  3. - reg: Physical base address and size of the controller's register area.
  4. - compatible: Compatibility string. Must be 'fsl,<chip>-ahci', where
  5. chip could be ls1021a, ls2080a, ls1043a etc.
  6. - clocks: Input clock specifier. Refer to common clock bindings.
  7. - interrupts: Interrupt specifier. Refer to interrupt binding.
  8. Optional properties:
  9. - dma-coherent: Enable AHCI coherent DMA operation.
  10. - reg-names: register area names when there are more than 1 register area.
  11. Examples:
  12. sata@3200000 {
  13. compatible = "fsl,ls1021a-ahci";
  14. reg = <0x0 0x3200000 0x0 0x10000>;
  15. interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
  16. clocks = <&platform_clk 1>;
  17. dma-coherent;
  18. };