ahci-platform.txt 1010 字节
Newer Older
1
* AHCI SATA Controller
2 3 4 5 6

SATA nodes are defined to describe on-chip Serial ATA controllers.
Each SATA controller should have its own node.

Required properties:
7 8
- compatible        : compatible string, one of:
  - "allwinner,sun4i-a10-ahci"
9
  - "hisilicon,hisi-ahci"
10
  - "ibm,476gtr-ahci"
11
  - "marvell,armada-380-ahci"
12 13 14
  - "snps,dwc-ahci"
  - "snps,exynos5440-ahci"
  - "snps,spear-ahci"
15 16 17
- interrupts        : <interrupt mapping for SATA IRQ>
- reg               : <registers mapping>

18
Optional properties:
19
- dma-coherent      : Present if dma operations are coherent
20
- clocks            : a list of phandle + clock specifier pairs
21
- target-supply     : regulator for SATA target power
22

23
Examples:
24
        sata@ffe08000 {
25 26 27
		compatible = "snps,spear-ahci";
		reg = <0xffe08000 0x1000>;
		interrupts = <115>;
28
        };
29 30 31 32 33 34 35 36

	ahci: sata@01c18000 {
		compatible = "allwinner,sun4i-a10-ahci";
		reg = <0x01c18000 0x1000>;
		interrupts = <56>;
		clocks = <&pll6 0>, <&ahb_gates 25>;
		target-supply = <&reg_ahci_5v>;
	};