xref: /linux/Documentation/devicetree/bindings/powerpc/fsl/dma.txt (revision 564eb714f5f09ac733c26860d5f0831f213fbdf1)
1* Freescale DMA Controllers
2
3** Freescale Elo DMA Controller
4   This is a little-endian 4-channel DMA controller, used in Freescale mpc83xx
5   series chips such as mpc8315, mpc8349, mpc8379 etc.
6
7Required properties:
8
9- compatible        : must include "fsl,elo-dma"
10- reg               : DMA General Status Register, i.e. DGSR which contains
11                      status for all the 4 DMA channels
12- ranges            : describes the mapping between the address space of the
13                      DMA channels and the address space of the DMA controller
14- cell-index        : controller index.  0 for controller @ 0x8100
15- interrupts        : interrupt specifier for DMA IRQ
16- interrupt-parent  : optional, if needed for interrupt mapping
17
18- DMA channel nodes:
19        - compatible        : must include "fsl,elo-dma-channel"
20                              However, see note below.
21        - reg               : DMA channel specific registers
22        - cell-index        : DMA channel index starts at 0.
23
24Optional properties:
25        - interrupts        : interrupt specifier for DMA channel IRQ
26                              (on 83xx this is expected to be identical to
27                              the interrupts property of the parent node)
28        - interrupt-parent  : optional, if needed for interrupt mapping
29
30Example:
31	dma@82a8 {
32		#address-cells = <1>;
33		#size-cells = <1>;
34		compatible = "fsl,mpc8349-dma", "fsl,elo-dma";
35		reg = <0x82a8 4>;
36		ranges = <0 0x8100 0x1a4>;
37		interrupt-parent = <&ipic>;
38		interrupts = <71 8>;
39		cell-index = <0>;
40		dma-channel@0 {
41			compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
42			cell-index = <0>;
43			reg = <0 0x80>;
44			interrupt-parent = <&ipic>;
45			interrupts = <71 8>;
46		};
47		dma-channel@80 {
48			compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
49			cell-index = <1>;
50			reg = <0x80 0x80>;
51			interrupt-parent = <&ipic>;
52			interrupts = <71 8>;
53		};
54		dma-channel@100 {
55			compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
56			cell-index = <2>;
57			reg = <0x100 0x80>;
58			interrupt-parent = <&ipic>;
59			interrupts = <71 8>;
60		};
61		dma-channel@180 {
62			compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
63			cell-index = <3>;
64			reg = <0x180 0x80>;
65			interrupt-parent = <&ipic>;
66			interrupts = <71 8>;
67		};
68	};
69
70** Freescale EloPlus DMA Controller
71   This is a 4-channel DMA controller with extended addresses and chaining,
72   mainly used in Freescale mpc85xx/86xx, Pxxx and BSC series chips, such as
73   mpc8540, mpc8641 p4080, bsc9131 etc.
74
75Required properties:
76
77- compatible        : must include "fsl,eloplus-dma"
78- reg               : DMA General Status Register, i.e. DGSR which contains
79                      status for all the 4 DMA channels
80- cell-index        : controller index.  0 for controller @ 0x21000,
81                                         1 for controller @ 0xc000
82- ranges            : describes the mapping between the address space of the
83                      DMA channels and the address space of the DMA controller
84
85- DMA channel nodes:
86        - compatible        : must include "fsl,eloplus-dma-channel"
87                              However, see note below.
88        - cell-index        : DMA channel index starts at 0.
89        - reg               : DMA channel specific registers
90        - interrupts        : interrupt specifier for DMA channel IRQ
91        - interrupt-parent  : optional, if needed for interrupt mapping
92
93Example:
94	dma@21300 {
95		#address-cells = <1>;
96		#size-cells = <1>;
97		compatible = "fsl,mpc8540-dma", "fsl,eloplus-dma";
98		reg = <0x21300 4>;
99		ranges = <0 0x21100 0x200>;
100		cell-index = <0>;
101		dma-channel@0 {
102			compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
103			reg = <0 0x80>;
104			cell-index = <0>;
105			interrupt-parent = <&mpic>;
106			interrupts = <20 2>;
107		};
108		dma-channel@80 {
109			compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
110			reg = <0x80 0x80>;
111			cell-index = <1>;
112			interrupt-parent = <&mpic>;
113			interrupts = <21 2>;
114		};
115		dma-channel@100 {
116			compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
117			reg = <0x100 0x80>;
118			cell-index = <2>;
119			interrupt-parent = <&mpic>;
120			interrupts = <22 2>;
121		};
122		dma-channel@180 {
123			compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
124			reg = <0x180 0x80>;
125			cell-index = <3>;
126			interrupt-parent = <&mpic>;
127			interrupts = <23 2>;
128		};
129	};
130
131** Freescale Elo3 DMA Controller
132   DMA controller which has same function as EloPlus except that Elo3 has 8
133   channels while EloPlus has only 4, it is used in Freescale Txxx and Bxxx
134   series chips, such as t1040, t4240, b4860.
135
136Required properties:
137
138- compatible        : must include "fsl,elo3-dma"
139- reg               : contains two entries for DMA General Status Registers,
140                      i.e. DGSR0 which includes status for channel 1~4, and
141                      DGSR1 for channel 5~8
142- ranges            : describes the mapping between the address space of the
143                      DMA channels and the address space of the DMA controller
144
145- DMA channel nodes:
146        - compatible        : must include "fsl,eloplus-dma-channel"
147        - reg               : DMA channel specific registers
148        - interrupts        : interrupt specifier for DMA channel IRQ
149        - interrupt-parent  : optional, if needed for interrupt mapping
150
151Example:
152dma@100300 {
153	#address-cells = <1>;
154	#size-cells = <1>;
155	compatible = "fsl,elo3-dma";
156	reg = <0x100300 0x4>,
157	      <0x100600 0x4>;
158	ranges = <0x0 0x100100 0x500>;
159	dma-channel@0 {
160		compatible = "fsl,eloplus-dma-channel";
161		reg = <0x0 0x80>;
162		interrupts = <28 2 0 0>;
163	};
164	dma-channel@80 {
165		compatible = "fsl,eloplus-dma-channel";
166		reg = <0x80 0x80>;
167		interrupts = <29 2 0 0>;
168	};
169	dma-channel@100 {
170		compatible = "fsl,eloplus-dma-channel";
171		reg = <0x100 0x80>;
172		interrupts = <30 2 0 0>;
173	};
174	dma-channel@180 {
175		compatible = "fsl,eloplus-dma-channel";
176		reg = <0x180 0x80>;
177		interrupts = <31 2 0 0>;
178	};
179	dma-channel@300 {
180		compatible = "fsl,eloplus-dma-channel";
181		reg = <0x300 0x80>;
182		interrupts = <76 2 0 0>;
183	};
184	dma-channel@380 {
185		compatible = "fsl,eloplus-dma-channel";
186		reg = <0x380 0x80>;
187		interrupts = <77 2 0 0>;
188	};
189	dma-channel@400 {
190		compatible = "fsl,eloplus-dma-channel";
191		reg = <0x400 0x80>;
192		interrupts = <78 2 0 0>;
193	};
194	dma-channel@480 {
195		compatible = "fsl,eloplus-dma-channel";
196		reg = <0x480 0x80>;
197		interrupts = <79 2 0 0>;
198	};
199};
200
201Note on DMA channel compatible properties: The compatible property must say
202"fsl,elo-dma-channel" or "fsl,eloplus-dma-channel" to be used by the Elo DMA
203driver (fsldma).  Any DMA channel used by fsldma cannot be used by another
204DMA driver, such as the SSI sound drivers for the MPC8610.  Therefore, any DMA
205channel that should be used for another driver should not use
206"fsl,elo-dma-channel" or "fsl,eloplus-dma-channel".  For the SSI drivers, for
207example, the compatible property should be "fsl,ssi-dma-channel".  See ssi.txt
208for more information.
209