xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/ata/fsl-sata.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun* Freescale 8xxx/3.0 Gb/s SATA nodes
2*4882a593Smuzhiyun
3*4882a593SmuzhiyunSATA nodes are defined to describe on-chip Serial ATA controllers.
4*4882a593SmuzhiyunEach SATA port should have its own node.
5*4882a593Smuzhiyun
6*4882a593SmuzhiyunRequired properties:
7*4882a593Smuzhiyun- compatible        : compatible list, contains 2 entries, first is
8*4882a593Smuzhiyun		 "fsl,CHIP-sata", where CHIP is the processor
9*4882a593Smuzhiyun		 (mpc8315, mpc8379, etc.) and the second is
10*4882a593Smuzhiyun		 "fsl,pq-sata"
11*4882a593Smuzhiyun- interrupts        : <interrupt mapping for SATA IRQ>
12*4882a593Smuzhiyun- cell-index        : controller index.
13*4882a593Smuzhiyun                          1 for controller @ 0x18000
14*4882a593Smuzhiyun                          2 for controller @ 0x19000
15*4882a593Smuzhiyun                          3 for controller @ 0x1a000
16*4882a593Smuzhiyun                          4 for controller @ 0x1b000
17*4882a593Smuzhiyun
18*4882a593SmuzhiyunOptional properties:
19*4882a593Smuzhiyun- reg               : <registers mapping>
20*4882a593Smuzhiyun
21*4882a593SmuzhiyunExample:
22*4882a593Smuzhiyun	sata@18000 {
23*4882a593Smuzhiyun		compatible = "fsl,mpc8379-sata", "fsl,pq-sata";
24*4882a593Smuzhiyun		reg = <0x18000 0x1000>;
25*4882a593Smuzhiyun		cell-index = <1>;
26*4882a593Smuzhiyun		interrupts = <2c 8>;
27*4882a593Smuzhiyun		interrupt-parent = < &ipic >;
28*4882a593Smuzhiyun	};
29