Path: blob/main/sys/contrib/device-tree/Bindings/ata/ahci-fsl-qoriq.txt
48376 views
Binding for Freescale QorIQ AHCI SATA Controller12Required properties:3- reg: Physical base address and size of the controller's register area.4- compatible: Compatibility string. Must be 'fsl,<chip>-ahci', where5chip could be ls1021a, ls1043a, ls1046a, ls1088a, ls2080a etc.6- clocks: Input clock specifier. Refer to common clock bindings.7- interrupts: Interrupt specifier. Refer to interrupt binding.89Optional properties:10- dma-coherent: Enable AHCI coherent DMA operation.11- reg-names: register area names when there are more than 1 register area.1213Examples:14sata@3200000 {15compatible = "fsl,ls1021a-ahci";16reg = <0x0 0x3200000 0x0 0x10000>;17interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;18clocks = <&platform_clk 1>;19dma-coherent;20};212223