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