sl@0
|
1 |
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// include/drivers/dmadefs.h
|
sl@0
|
15 |
// DMA Framework - General class, enum, constant and type definitions.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __DMADEFS_H__
|
sl@0
|
20 |
#define __DMADEFS_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <e32def.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
/** The client request callback type */
|
sl@0
|
27 |
enum TDmaCallbackType
|
sl@0
|
28 |
{
|
sl@0
|
29 |
/** Transfer request completion callback */
|
sl@0
|
30 |
EDmaCallbackRequestCompletion = 0x01,
|
sl@0
|
31 |
/** Transfer request completion callback - source side */
|
sl@0
|
32 |
EDmaCallbackRequestCompletion_Src = 0x02,
|
sl@0
|
33 |
/** Transfer request completion callback - destination side */
|
sl@0
|
34 |
EDmaCallbackRequestCompletion_Dst = 0x04,
|
sl@0
|
35 |
|
sl@0
|
36 |
/** Descriptor completion callback */
|
sl@0
|
37 |
EDmaCallbackDescriptorCompletion = 0x08,
|
sl@0
|
38 |
/** Descriptor completion callback - source side */
|
sl@0
|
39 |
EDmaCallbackDescriptorCompletion_Src = 0x10,
|
sl@0
|
40 |
/** Descriptor completion callback - destination side */
|
sl@0
|
41 |
EDmaCallbackDescriptorCompletion_Dst = 0x20,
|
sl@0
|
42 |
|
sl@0
|
43 |
/** Frame completion callback */
|
sl@0
|
44 |
EDmaCallbackFrameCompletion = 0x40,
|
sl@0
|
45 |
/** Frame completion callback - source side */
|
sl@0
|
46 |
EDmaCallbackFrameCompletion_Src = 0x80,
|
sl@0
|
47 |
/** Frame completion callback - destination side */
|
sl@0
|
48 |
EDmaCallbackFrameCompletion_Dst = 0x100,
|
sl@0
|
49 |
|
sl@0
|
50 |
/** H/W descriptor pause event callback */
|
sl@0
|
51 |
EDmaCallbackLinkedListPaused = 0x200,
|
sl@0
|
52 |
/** H/W descriptor pause event callback - source side */
|
sl@0
|
53 |
EDmaCallbackLinkedListPaused_Src = 0x400,
|
sl@0
|
54 |
/** H/W descriptor pause event callback - destination side */
|
sl@0
|
55 |
EDmaCallbackLinkedListPaused_Dst = 0x800
|
sl@0
|
56 |
};
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
/** The outcome of the transfer request */
|
sl@0
|
60 |
enum TDmaResult
|
sl@0
|
61 |
{
|
sl@0
|
62 |
/** Completed without error */
|
sl@0
|
63 |
EDmaResultOK = 0,
|
sl@0
|
64 |
/** There was an error */
|
sl@0
|
65 |
EDmaResultError
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
|
sl@0
|
69 |
|
sl@0
|
70 |
/** To be used with address mode field of the DMA transfer config struct.
|
sl@0
|
71 |
|
sl@0
|
72 |
@see TDmaTransferConfig::iAddrMode
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
enum TDmaAddrMode
|
sl@0
|
75 |
{
|
sl@0
|
76 |
/** Constant addressing. The address remains the same for consecutive
|
sl@0
|
77 |
accesses.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
KDmaAddrModeConstant,
|
sl@0
|
80 |
/** Post-increment addressing. The address increases by the element size
|
sl@0
|
81 |
after each access.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
KDmaAddrModePostIncrement,
|
sl@0
|
84 |
/** Post-decrement addressing. The address decreases by the element size
|
sl@0
|
85 |
after each access.
|
sl@0
|
86 |
*/
|
sl@0
|
87 |
KDmaAddrModePostDecrement,
|
sl@0
|
88 |
/** 1D-index addressing. The address always increases by the element size
|
sl@0
|
89 |
plus the element skip value after each access.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
KDmaAddrMode1DIndex,
|
sl@0
|
92 |
/** 2D-index addressing. The address increases by the element size plus the
|
sl@0
|
93 |
element skip value - but only within a frame. Once a full frame has been
|
sl@0
|
94 |
transferred, the address increases by the element size plus the element
|
sl@0
|
95 |
skip value plus the frame skip value.
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
KDmaAddrMode2DIndex
|
sl@0
|
98 |
};
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
/** To be used with the burst size field of the DMA transfer config struct.
|
sl@0
|
102 |
|
sl@0
|
103 |
@see SDmacCaps::iBurstTransactions
|
sl@0
|
104 |
@see TDmaTransferConfig::iBurstSize
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
enum TDmaBurstSize
|
sl@0
|
107 |
{
|
sl@0
|
108 |
/** Don't use burst transactions */
|
sl@0
|
109 |
KDmaNoBursts = -1,
|
sl@0
|
110 |
/** Don't care (the default) */
|
sl@0
|
111 |
KDmaBurstSizeAny = 0x00,
|
sl@0
|
112 |
/** 4 bytes */
|
sl@0
|
113 |
KDmaBurstSize4 = 0x04,
|
sl@0
|
114 |
/** 8 bytes */
|
sl@0
|
115 |
KDmaBurstSize8 = 0x08,
|
sl@0
|
116 |
/** 16 bytes */
|
sl@0
|
117 |
KDmaBurstSize16 = 0x10,
|
sl@0
|
118 |
/** 32 bytes */
|
sl@0
|
119 |
KDmaBurstSize32 = 0x20,
|
sl@0
|
120 |
/** 64 bytes */
|
sl@0
|
121 |
KDmaBurstSize64 = 0x40,
|
sl@0
|
122 |
/** 128 bytes */
|
sl@0
|
123 |
KDmaBurstSize128 = 0x80
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
|
sl@0
|
127 |
/** To be used with the flags field of the DMA transfer config struct.
|
sl@0
|
128 |
|
sl@0
|
129 |
@see TDmaTransferConfig::iFlags
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
enum TDmaTransferFlags
|
sl@0
|
132 |
{
|
sl@0
|
133 |
/** Location is address of a memory buffer (as opposed to a peripheral or a
|
sl@0
|
134 |
register).
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
KDmaMemAddr = 0x01,
|
sl@0
|
137 |
/** Address is a physical address (as opposed to a linear one).
|
sl@0
|
138 |
If it is a memory address then KDmaMemIsContiguous will need to be set
|
sl@0
|
139 |
as well.
|
sl@0
|
140 |
*/
|
sl@0
|
141 |
KDmaPhysAddr = 0x02,
|
sl@0
|
142 |
/** Target memory is known to be physically contiguous, hence there is
|
sl@0
|
143 |
no need for the framework to check for memory fragmentation.
|
sl@0
|
144 |
*/
|
sl@0
|
145 |
KDmaMemIsContiguous = 0x04,
|
sl@0
|
146 |
/** Don't use packed access (if possible) */
|
sl@0
|
147 |
KDmaDontUsePacked = 0x08,
|
sl@0
|
148 |
/** Location is big endian (little endian if not set).
|
sl@0
|
149 |
|
sl@0
|
150 |
To have any effect, this flag requires the DMAC to support endianness
|
sl@0
|
151 |
conversion.
|
sl@0
|
152 |
|
sl@0
|
153 |
@see SDmacCaps::iEndiannessConversion
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
KDmaBigEndian = 0x10,
|
sl@0
|
156 |
/** Don't do endianness conversion even if applicable.
|
sl@0
|
157 |
|
sl@0
|
158 |
To have any effect, this flag requires the DMAC to support endianness
|
sl@0
|
159 |
conversion.
|
sl@0
|
160 |
|
sl@0
|
161 |
@see SDmacCaps::iEndiannessConversion
|
sl@0
|
162 |
*/
|
sl@0
|
163 |
KDmaLockEndian = 0x20,
|
sl@0
|
164 |
/** Execute client request callback after each subtransfer (streaming /
|
sl@0
|
165 |
loop case).
|
sl@0
|
166 |
|
sl@0
|
167 |
This option is only taken into account if the respective
|
sl@0
|
168 |
TDmaTransferConfig::iRepeatCount is non-zero.
|
sl@0
|
169 |
|
sl@0
|
170 |
The callback will complete with a TDmaCallbackType of
|
sl@0
|
171 |
EDmaCallbackRequestCompletion (even if the repeat counts for source and
|
sl@0
|
172 |
destination are different), unless the flag
|
sl@0
|
173 |
TDmaPILFlags::KDmaAsymCompletionCallback is set too, in which case what
|
sl@0
|
174 |
is described there applies.
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
KDmaCallbackAfterEveryTransfer = 0x40,
|
sl@0
|
177 |
/** Execute client request callback after each completed hardware
|
sl@0
|
178 |
descriptor.
|
sl@0
|
179 |
|
sl@0
|
180 |
Requires the DMAC to support this feature. Unless the DMAC supports
|
sl@0
|
181 |
asymmetric descriptor interrupts as well, this flag should not be set
|
sl@0
|
182 |
on only one (source or destination) side.
|
sl@0
|
183 |
|
sl@0
|
184 |
@see SDmacCaps::iDescriptorInterrupt
|
sl@0
|
185 |
@see SDmacCaps::iAsymDescriptorInterrupt
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
KDmaCallbackAfterEveryDescriptor = 0x80,
|
sl@0
|
188 |
/** Execute client request callback after each completed frame.
|
sl@0
|
189 |
|
sl@0
|
190 |
Requires the DMAC to support this feature. Unless the DMAC supports
|
sl@0
|
191 |
asymmetric frame interrupts as well, this flag should not be set on
|
sl@0
|
192 |
only one (source or destination) side.
|
sl@0
|
193 |
|
sl@0
|
194 |
@see SDmacCaps::iFrameInterrupt
|
sl@0
|
195 |
@see SDmacCaps::iAsymFrameInterrupt
|
sl@0
|
196 |
*/
|
sl@0
|
197 |
KDmaCallbackAfterEveryFrame = 0x100
|
sl@0
|
198 |
};
|
sl@0
|
199 |
|
sl@0
|
200 |
|
sl@0
|
201 |
/** To be used with the synchronization flags field of a DMA transfer
|
sl@0
|
202 |
config struct.
|
sl@0
|
203 |
|
sl@0
|
204 |
@see SDmacCaps::iSynchronizationTypes
|
sl@0
|
205 |
@see TDmaTransferConfig::iSyncFlags
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
enum TDmaTransferSyncFlags
|
sl@0
|
208 |
{
|
sl@0
|
209 |
/** Leave the decision on whether the transfer is hardware synchronized at
|
sl@0
|
210 |
this end (either source or destination) to the Framework. This is the
|
sl@0
|
211 |
default.
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
KDmaSyncAuto = 0x00,
|
sl@0
|
214 |
/** Transfer is not hardware synchronized at this end (either source or
|
sl@0
|
215 |
destination).
|
sl@0
|
216 |
*/
|
sl@0
|
217 |
KDmaSyncNone = 0x01,
|
sl@0
|
218 |
/** Transfer is hardware synchronized at this end (either source or
|
sl@0
|
219 |
destination). This option can also be used on its own, without any
|
sl@0
|
220 |
of the following sync sizes.
|
sl@0
|
221 |
*/
|
sl@0
|
222 |
KDmaSyncHere = 0x02,
|
sl@0
|
223 |
/** H/W synchronized at this end: transfer one ELEMENT (a number of
|
sl@0
|
224 |
bytes, depending on the configured element size) per sync event.
|
sl@0
|
225 |
*/
|
sl@0
|
226 |
KDmaSyncSizeElement = 0x04,
|
sl@0
|
227 |
/** H/W synchronized at this end: transfer one FRAME (a number of
|
sl@0
|
228 |
elements, depending on the configured frame size) per sync event.
|
sl@0
|
229 |
*/
|
sl@0
|
230 |
KDmaSyncSizeFrame = 0x08,
|
sl@0
|
231 |
/** H/W synchronized at this end: transfer one BLOCK (a number of
|
sl@0
|
232 |
frames, depending on the configured transfer size) per sync
|
sl@0
|
233 |
event. This is the most common use case.
|
sl@0
|
234 |
*/
|
sl@0
|
235 |
KDmaSyncSizeBlock = 0x10,
|
sl@0
|
236 |
/** H/W synchronized at this end: transfer one PACKET (a number of
|
sl@0
|
237 |
elements, depending on the configured packet size) per sync event.
|
sl@0
|
238 |
In cases where the transfer block size is not a multiple of the
|
sl@0
|
239 |
packet size the last packet will consist of the remaining elements.
|
sl@0
|
240 |
*/
|
sl@0
|
241 |
KDmaSyncSizePacket = 0x20
|
sl@0
|
242 |
};
|
sl@0
|
243 |
|
sl@0
|
244 |
|
sl@0
|
245 |
/** To be used with the Graphics operation field of a DMA transfer request.
|
sl@0
|
246 |
|
sl@0
|
247 |
@see TDmaTransferArgs::iGraphicsOps
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
enum TDmaGraphicsOps
|
sl@0
|
250 |
{
|
sl@0
|
251 |
/** Don't use any graphics acceleration feature (the default) */
|
sl@0
|
252 |
KDmaGraphicsOpNone = 0x00,
|
sl@0
|
253 |
/** Enable graphics acceleration feature 'Constant Fill' */
|
sl@0
|
254 |
KDmaGraphicsOpConstantFill = 0x01,
|
sl@0
|
255 |
/** Enable graphics acceleration feature 'TransparentCopy' */
|
sl@0
|
256 |
KDmaGraphicsOpTransparentCopy = 0x02
|
sl@0
|
257 |
};
|
sl@0
|
258 |
|
sl@0
|
259 |
|
sl@0
|
260 |
/** To be used with the PIL flags field of a DMA transfer request.
|
sl@0
|
261 |
|
sl@0
|
262 |
@see TDmaTransferArgs::iFlags
|
sl@0
|
263 |
*/
|
sl@0
|
264 |
enum TDmaPILFlags
|
sl@0
|
265 |
{
|
sl@0
|
266 |
/** Request a different max transfer size (for instance for test
|
sl@0
|
267 |
purposes).
|
sl@0
|
268 |
*/
|
sl@0
|
269 |
KDmaAltTransferLength = 0x01,
|
sl@0
|
270 |
/** Execute client request callback in ISR context instead of from a
|
sl@0
|
271 |
DFC.
|
sl@0
|
272 |
*/
|
sl@0
|
273 |
KDmaRequestCallbackFromIsr = 0x02,
|
sl@0
|
274 |
/** Execute descriptor completion callback in ISR context instead of
|
sl@0
|
275 |
from a DFC. This option is to be used in conjunction with the
|
sl@0
|
276 |
TDmaTransferFlags::KDmaCallbackAfterEveryDescriptor flag.
|
sl@0
|
277 |
*/
|
sl@0
|
278 |
KDmaDescriptorCallbackFromIsr = 0x04,
|
sl@0
|
279 |
/** Execute frame completion callback in ISR context instead of
|
sl@0
|
280 |
from a DFC. This option is to be used in conjunction with the
|
sl@0
|
281 |
TDmaTransferFlags::KDmaCallbackAfterEveryFrame flag.
|
sl@0
|
282 |
*/
|
sl@0
|
283 |
KDmaFrameCallbackFromIsr = 0x08,
|
sl@0
|
284 |
/** Execute the client request callback separately for source and
|
sl@0
|
285 |
destination subtransfers.
|
sl@0
|
286 |
|
sl@0
|
287 |
This flag also determines the TDmaCallbackType value returned. If set,
|
sl@0
|
288 |
the callback will complete with EDmaCallbackRequestCompletion_Src or
|
sl@0
|
289 |
EDmaCallbackRequestCompletion_Dst, respectively, instead of with
|
sl@0
|
290 |
EDmaCallbackRequestCompletion.
|
sl@0
|
291 |
|
sl@0
|
292 |
Requires the DMAC to support this feature.
|
sl@0
|
293 |
|
sl@0
|
294 |
@see SDmacCaps::iAsymCompletionInterrupt
|
sl@0
|
295 |
*/
|
sl@0
|
296 |
KDmaAsymCompletionCallback = 0x10,
|
sl@0
|
297 |
/** Execute the descriptor completion callback separately for source
|
sl@0
|
298 |
and destination subtransfers.
|
sl@0
|
299 |
|
sl@0
|
300 |
This flag modifies the behaviour of the
|
sl@0
|
301 |
TDmaTransferFlags::KDmaCallbackAfterEveryDescriptor flag and also
|
sl@0
|
302 |
determines the TDmaCallbackType value returned. If set, the callback
|
sl@0
|
303 |
will complete with EDmaCallbackDescriptorCompletion_Src or
|
sl@0
|
304 |
EDmaCallbackDescriptorCompletion_Dst, respectively, instead of with
|
sl@0
|
305 |
EDmaCallbackDescriptorCompletion.
|
sl@0
|
306 |
|
sl@0
|
307 |
Requires the DMAC to support this feature.
|
sl@0
|
308 |
|
sl@0
|
309 |
@see SDmacCaps::iAsymDescriptorInterrupt
|
sl@0
|
310 |
*/
|
sl@0
|
311 |
KDmaAsymDescriptorCallback = 0x20,
|
sl@0
|
312 |
/** Execute the frame completion callback separately for source and
|
sl@0
|
313 |
destination subtransfers.
|
sl@0
|
314 |
|
sl@0
|
315 |
This flag modifies the behaviour of the
|
sl@0
|
316 |
TDmaTransferFlags::KDmaCallbackAfterEveryFrame flag. If set, the
|
sl@0
|
317 |
callback will complete with EDmaCallbackFrameCompletion_Src or
|
sl@0
|
318 |
EDmaCallbackFrameCompletion_Dst, respectively, instead of with
|
sl@0
|
319 |
EDmaCallbackFrameCompletion.
|
sl@0
|
320 |
|
sl@0
|
321 |
Requires the DMAC to support this feature.
|
sl@0
|
322 |
|
sl@0
|
323 |
@see SDmacCaps::iAsymFrameInterrupt
|
sl@0
|
324 |
*/
|
sl@0
|
325 |
KDmaAsymFrameCallback = 0x40,
|
sl@0
|
326 |
/** This transfer (only) should use the channel priority indicated by
|
sl@0
|
327 |
TDmaTransferArgs::iChannelPriority.
|
sl@0
|
328 |
*/
|
sl@0
|
329 |
KDmaRequestChannelPriority = 0x80
|
sl@0
|
330 |
};
|
sl@0
|
331 |
|
sl@0
|
332 |
|
sl@0
|
333 |
/** Values which can be used with the priority field when opening a channel
|
sl@0
|
334 |
and/or when fragmenting a transfer request.
|
sl@0
|
335 |
|
sl@0
|
336 |
@see TDmaChannel::SCreateInfo::iPriority
|
sl@0
|
337 |
@see TDmaTransferArgs::iChannelPriority
|
sl@0
|
338 |
*/
|
sl@0
|
339 |
enum TDmaPriority
|
sl@0
|
340 |
{
|
sl@0
|
341 |
/** No transfer priority preference (don't care value) */
|
sl@0
|
342 |
KDmaPriorityNone = 0x0,
|
sl@0
|
343 |
/** Platform-independent transfer priority 1 (lowest) */
|
sl@0
|
344 |
KDmaPriority1 = 0x80000001,
|
sl@0
|
345 |
/** Platform-independent transfer priority 2 */
|
sl@0
|
346 |
KDmaPriority2 = 0x80000002,
|
sl@0
|
347 |
/** Platform-independent transfer priority 3 */
|
sl@0
|
348 |
KDmaPriority3 = 0x80000003,
|
sl@0
|
349 |
/** Platform-independent transfer priority 4 */
|
sl@0
|
350 |
KDmaPriority4 = 0x80000004,
|
sl@0
|
351 |
/** Platform-independent transfer priority 5 */
|
sl@0
|
352 |
KDmaPriority5 = 0x80000005,
|
sl@0
|
353 |
/** Platform-independent transfer priority 6 */
|
sl@0
|
354 |
KDmaPriority6 = 0x80000006,
|
sl@0
|
355 |
/** Platform-independent transfer priority 7 */
|
sl@0
|
356 |
KDmaPriority7 = 0x80000007,
|
sl@0
|
357 |
/** Platform-independent transfer priority 8 (highest) */
|
sl@0
|
358 |
KDmaPriority8 = 0x80000008
|
sl@0
|
359 |
};
|
sl@0
|
360 |
|
sl@0
|
361 |
|
sl@0
|
362 |
/** Contains the configuration values for either the source or the
|
sl@0
|
363 |
destination side of a DMA transfer.
|
sl@0
|
364 |
|
sl@0
|
365 |
Note that some fields (notably iElementSize, iElementsPerFrame and
|
sl@0
|
366 |
iFramesPerTransfer) may only differ between source and destination if
|
sl@0
|
367 |
the underlying DMAC supports this.
|
sl@0
|
368 |
|
sl@0
|
369 |
@see SDmacCaps::iSrcDstAsymmetry
|
sl@0
|
370 |
@see TDmaTransferArgs::iSrcConfig
|
sl@0
|
371 |
@see TDmaTransferArgs::iDstConfig
|
sl@0
|
372 |
*/
|
sl@0
|
373 |
struct TDmaTransferConfig
|
sl@0
|
374 |
{
|
sl@0
|
375 |
friend struct TDmaTransferArgs;
|
sl@0
|
376 |
|
sl@0
|
377 |
/** Default constructor. Initializes all fields with meaningful default
|
sl@0
|
378 |
values.
|
sl@0
|
379 |
*/
|
sl@0
|
380 |
#ifdef DMA_APIV2
|
sl@0
|
381 |
KIMPORT_C
|
sl@0
|
382 |
#endif
|
sl@0
|
383 |
TDmaTransferConfig();
|
sl@0
|
384 |
|
sl@0
|
385 |
/** Intended for general use ie. not 2D or 1D transfers
|
sl@0
|
386 |
*/
|
sl@0
|
387 |
#ifdef DMA_APIV2
|
sl@0
|
388 |
KIMPORT_C
|
sl@0
|
389 |
#endif
|
sl@0
|
390 |
TDmaTransferConfig (
|
sl@0
|
391 |
TUint32 aAddr,
|
sl@0
|
392 |
TUint aTransferFlags,
|
sl@0
|
393 |
TDmaAddrMode aAddrMode = KDmaAddrModePostIncrement,
|
sl@0
|
394 |
TUint aSyncFlags = KDmaSyncAuto,
|
sl@0
|
395 |
TDmaBurstSize aBurstSize = KDmaBurstSizeAny,
|
sl@0
|
396 |
TUint aElementSize = 0,
|
sl@0
|
397 |
TUint aElementsPerPacket = 0,
|
sl@0
|
398 |
TUint aPslTargetInfo = 0,
|
sl@0
|
399 |
TInt aRepeatCount = 0
|
sl@0
|
400 |
);
|
sl@0
|
401 |
|
sl@0
|
402 |
/** Intended for 1D and 2D transfers
|
sl@0
|
403 |
*/
|
sl@0
|
404 |
#ifdef DMA_APIV2
|
sl@0
|
405 |
KIMPORT_C
|
sl@0
|
406 |
#endif
|
sl@0
|
407 |
TDmaTransferConfig (
|
sl@0
|
408 |
TUint32 aAddr,
|
sl@0
|
409 |
TUint aElementSize,
|
sl@0
|
410 |
TUint aElementsPerFrame,
|
sl@0
|
411 |
TUint aFramesPerTransfer,
|
sl@0
|
412 |
TInt aElementSkip,
|
sl@0
|
413 |
TInt aFrameSkip,
|
sl@0
|
414 |
TUint aTransferFlags,
|
sl@0
|
415 |
TUint aSyncFlags = KDmaSyncAuto,
|
sl@0
|
416 |
TDmaBurstSize aBurstSize = KDmaBurstSizeAny,
|
sl@0
|
417 |
TUint aElementsPerPacket = 0,
|
sl@0
|
418 |
TUint aPslTargetInfo = 0,
|
sl@0
|
419 |
TInt aRepeatCount = 0
|
sl@0
|
420 |
);
|
sl@0
|
421 |
|
sl@0
|
422 |
/** Transfer start address */
|
sl@0
|
423 |
TUint32 iAddr;
|
sl@0
|
424 |
/** Address mode */
|
sl@0
|
425 |
TDmaAddrMode iAddrMode;
|
sl@0
|
426 |
/** Element size in bytes (1/2/4/8) */
|
sl@0
|
427 |
TUint iElementSize;
|
sl@0
|
428 |
/** Number of elements per frame */
|
sl@0
|
429 |
TUint iElementsPerFrame;
|
sl@0
|
430 |
/** Number of elements per packet */
|
sl@0
|
431 |
TUint iElementsPerPacket;
|
sl@0
|
432 |
/** Number of frames to transfer (result is the transfer block) */
|
sl@0
|
433 |
TUint iFramesPerTransfer;
|
sl@0
|
434 |
/** Element skip in bytes (for addr modes E1DIndex or E2DIndex) */
|
sl@0
|
435 |
TInt iElementSkip;
|
sl@0
|
436 |
/** Frame skip in bytes (for addr mode E2DIndex) */
|
sl@0
|
437 |
TInt iFrameSkip;
|
sl@0
|
438 |
/** Use burst transactions of the specified size (in bytes)
|
sl@0
|
439 |
@see TDmaBurstSize
|
sl@0
|
440 |
*/
|
sl@0
|
441 |
TInt iBurstSize;
|
sl@0
|
442 |
/** PIL src/dst config flags.
|
sl@0
|
443 |
@see TDmaTransferFlags
|
sl@0
|
444 |
*/
|
sl@0
|
445 |
TUint32 iFlags;
|
sl@0
|
446 |
/** Transfer synchronization flags.
|
sl@0
|
447 |
@see TDmaTransferSyncFlags
|
sl@0
|
448 |
*/
|
sl@0
|
449 |
TUint32 iSyncFlags;
|
sl@0
|
450 |
/** Information passed to the PSL */
|
sl@0
|
451 |
TUint iPslTargetInfo;
|
sl@0
|
452 |
/** How often to repeat this (sub-)transfer:
|
sl@0
|
453 |
0 no repeat (the default)
|
sl@0
|
454 |
1..n once / n times
|
sl@0
|
455 |
-1 endlessly.
|
sl@0
|
456 |
*/
|
sl@0
|
457 |
TInt iRepeatCount;
|
sl@0
|
458 |
/** Structure contents delta vector (usage tbd) */
|
sl@0
|
459 |
TUint32 iDelta;
|
sl@0
|
460 |
/** Reserved for future use */
|
sl@0
|
461 |
TUint32 iReserved;
|
sl@0
|
462 |
|
sl@0
|
463 |
private:
|
sl@0
|
464 |
/** Private constructor. Initializes fields with the values passed in by
|
sl@0
|
465 |
the legacy version of the DDmaRequest::Fragment() call.
|
sl@0
|
466 |
*/
|
sl@0
|
467 |
TDmaTransferConfig(TUint32 aAddr, TUint aFlags, TBool aAddrInc);
|
sl@0
|
468 |
};
|
sl@0
|
469 |
|
sl@0
|
470 |
|
sl@0
|
471 |
/** To be used by the client to pass DMA transfer request details to the
|
sl@0
|
472 |
framework.
|
sl@0
|
473 |
|
sl@0
|
474 |
Also used internally by the framework as a pseudo descriptor if the
|
sl@0
|
475 |
controller doesn't support hardware descriptors (scatter/gather LLI).
|
sl@0
|
476 |
|
sl@0
|
477 |
@see DDmaRequest::Fragment
|
sl@0
|
478 |
*/
|
sl@0
|
479 |
struct TDmaTransferArgs
|
sl@0
|
480 |
{
|
sl@0
|
481 |
friend class DDmaRequest;
|
sl@0
|
482 |
friend class TDmaChannel;
|
sl@0
|
483 |
friend class TDmac;
|
sl@0
|
484 |
friend class DmaChannelMgr;
|
sl@0
|
485 |
|
sl@0
|
486 |
/** Default constructor. Initializes all fields with meaningful default
|
sl@0
|
487 |
values.
|
sl@0
|
488 |
*/
|
sl@0
|
489 |
#ifdef DMA_APIV2
|
sl@0
|
490 |
KIMPORT_C
|
sl@0
|
491 |
#endif
|
sl@0
|
492 |
TDmaTransferArgs();
|
sl@0
|
493 |
|
sl@0
|
494 |
/** For transfers where src and dst TDmaTransferConfig structs share some
|
sl@0
|
495 |
of the same options ie. iDmaTransferFlags, iAddrMode, iSyncFlags,
|
sl@0
|
496 |
iBurstSize, and iElementSize.
|
sl@0
|
497 |
|
sl@0
|
498 |
@param aSrcAddr
|
sl@0
|
499 |
@param aDstAddr
|
sl@0
|
500 |
@param aCount Number of bytes to transfer
|
sl@0
|
501 |
@param aDmaTransferFlags Bitmask of TDmaTransferFlags for src and dst
|
sl@0
|
502 |
@param aDmaSyncFlags Bitmask of TDmaTransferSyncFlags for src and dst
|
sl@0
|
503 |
@param aMode Address mode for src and dst
|
sl@0
|
504 |
@param aDmaPILFlags Bitmask of TDmaPILFlags
|
sl@0
|
505 |
@param aElementSize In bytes (1/2/4/8) for src and dst
|
sl@0
|
506 |
@param aChannelPriority
|
sl@0
|
507 |
@param aBurstSize for src and dst
|
sl@0
|
508 |
@param aPslRequestInfo Info word passed to the PSL
|
sl@0
|
509 |
@param aGraphicOp Graphics operation to be executed
|
sl@0
|
510 |
@param aColour Colour value for graphics operation
|
sl@0
|
511 |
*/
|
sl@0
|
512 |
#ifdef DMA_APIV2
|
sl@0
|
513 |
KIMPORT_C
|
sl@0
|
514 |
#endif
|
sl@0
|
515 |
TDmaTransferArgs (
|
sl@0
|
516 |
TUint aSrcAddr, TUint aDstAddr, TUint aCount,
|
sl@0
|
517 |
TUint aDmaTransferFlags, TUint aDmaSyncFlags = KDmaSyncAuto,
|
sl@0
|
518 |
TUint aDmaPILFlags = 0,
|
sl@0
|
519 |
TDmaAddrMode aMode = KDmaAddrModePostIncrement, TUint aElementSize = 0,
|
sl@0
|
520 |
TUint aChannelPriority = KDmaPriorityNone,
|
sl@0
|
521 |
TDmaBurstSize aBurstSize = KDmaBurstSizeAny, TUint aPslRequestInfo = 0,
|
sl@0
|
522 |
TDmaGraphicsOps aGraphicOp = KDmaGraphicsOpNone, TUint32 aColour = 0
|
sl@0
|
523 |
);
|
sl@0
|
524 |
|
sl@0
|
525 |
/** For transfers needing specific options for source and destination
|
sl@0
|
526 |
TDmaTransferConfig structs.
|
sl@0
|
527 |
|
sl@0
|
528 |
@param aSrc Configuration values for the source
|
sl@0
|
529 |
@param aDst Configuration values for the destination
|
sl@0
|
530 |
@param aFlags @see TDmaPILFlags
|
sl@0
|
531 |
@param aChannelPriority Use for this request (only) the indicated
|
sl@0
|
532 |
channel priority. Requires KDmaRequestChannelPriority to be set in
|
sl@0
|
533 |
iFlags as well. @see TDmaPriority
|
sl@0
|
534 |
|
sl@0
|
535 |
@param aPslRequestInfo Info word passed to the PSL
|
sl@0
|
536 |
@param aGraphicOp Graphics operation to be executed
|
sl@0
|
537 |
@param aColour Colour value for graphics operation
|
sl@0
|
538 |
*/
|
sl@0
|
539 |
#ifdef DMA_APIV2
|
sl@0
|
540 |
KIMPORT_C
|
sl@0
|
541 |
#endif
|
sl@0
|
542 |
TDmaTransferArgs (
|
sl@0
|
543 |
const TDmaTransferConfig& aSrc,
|
sl@0
|
544 |
const TDmaTransferConfig& aDst,
|
sl@0
|
545 |
TUint32 aFlags = 0,
|
sl@0
|
546 |
TUint aChannelPriority = KDmaPriorityNone,
|
sl@0
|
547 |
TUint aPslRequestInfo = 0,
|
sl@0
|
548 |
TDmaGraphicsOps aGraphicOp = KDmaGraphicsOpNone, TUint32 aColour = 0
|
sl@0
|
549 |
);
|
sl@0
|
550 |
|
sl@0
|
551 |
/** Configuration values for the source */
|
sl@0
|
552 |
TDmaTransferConfig iSrcConfig;
|
sl@0
|
553 |
/** Configuration values for the destination */
|
sl@0
|
554 |
TDmaTransferConfig iDstConfig;
|
sl@0
|
555 |
|
sl@0
|
556 |
/** Number of bytes to transfer (optional).
|
sl@0
|
557 |
|
sl@0
|
558 |
A non-zero value here must be consistent with iElementSize,
|
sl@0
|
559 |
iElementsPerFrame and iFramesPerTransfer in iSrcConfig and iDstConfig
|
sl@0
|
560 |
if the latter are specified as well (or instead, they may be left at
|
sl@0
|
561 |
their default values of zero).
|
sl@0
|
562 |
|
sl@0
|
563 |
If zero, the PIL will fill in a value calculated from multiplying
|
sl@0
|
564 |
iElementSize, iElementsPerFrame and iFramesPerTransfer in iSrcConfig,
|
sl@0
|
565 |
so that the PSL can rely on it being always non-zero and valid.
|
sl@0
|
566 |
*/
|
sl@0
|
567 |
TUint iTransferCount;
|
sl@0
|
568 |
/** Graphics operation to be executed */
|
sl@0
|
569 |
TDmaGraphicsOps iGraphicsOps;
|
sl@0
|
570 |
/** Colour value for graphics operations */
|
sl@0
|
571 |
TUint32 iColour;
|
sl@0
|
572 |
/** PIL common flags
|
sl@0
|
573 |
@see TDmaPILFlags
|
sl@0
|
574 |
*/
|
sl@0
|
575 |
TUint32 iFlags;
|
sl@0
|
576 |
/** Use for this request (only) the indicated channel priority.
|
sl@0
|
577 |
Requires KDmaRequestChannelPriority to be set in iFlags as well.
|
sl@0
|
578 |
@see TDmaPriority
|
sl@0
|
579 |
*/
|
sl@0
|
580 |
TUint iChannelPriority;
|
sl@0
|
581 |
/** Info word passed to the PSL */
|
sl@0
|
582 |
TUint iPslRequestInfo;
|
sl@0
|
583 |
|
sl@0
|
584 |
/** Structure contents delta vector (usage tbd) */
|
sl@0
|
585 |
TUint32 iDelta;
|
sl@0
|
586 |
/** Reserved for future use */
|
sl@0
|
587 |
TUint32 iReserved1;
|
sl@0
|
588 |
|
sl@0
|
589 |
private:
|
sl@0
|
590 |
/** Private constructor. Initializes fields with the values passed in by
|
sl@0
|
591 |
the legacy version of the DDmaRequest::Fragment() call.
|
sl@0
|
592 |
*/
|
sl@0
|
593 |
TDmaTransferArgs(TUint32 aSrcAddr, TUint32 aDstAddr, TInt aCount,
|
sl@0
|
594 |
TUint aFlags, TUint32 aPslInfo);
|
sl@0
|
595 |
/** Stores the PSL cookie returned by TDmaChannel::PslId() at request
|
sl@0
|
596 |
fragmentation time.
|
sl@0
|
597 |
The value PslId() is often (but not necessarily) identical with the
|
sl@0
|
598 |
client's TDmaChannel::SCreateInfo::iCookie, which gets passed by the
|
sl@0
|
599 |
PIL into DmaChannelMgr::Open() as 'aOpenId'.
|
sl@0
|
600 |
*/
|
sl@0
|
601 |
TUint32 iChannelCookie;
|
sl@0
|
602 |
/** Reserved for future use */
|
sl@0
|
603 |
TUint32 iReserved2;
|
sl@0
|
604 |
};
|
sl@0
|
605 |
|
sl@0
|
606 |
|
sl@0
|
607 |
/** DMAC capabilities info structure.
|
sl@0
|
608 |
|
sl@0
|
609 |
Instances are to be filled in by the PSL and then linked to via TDmaChannel
|
sl@0
|
610 |
objects after they have been opened.
|
sl@0
|
611 |
|
sl@0
|
612 |
The contents may vary even between channels on the same DMAC (but will
|
sl@0
|
613 |
remain constant for a given channel for the duration that it is open),
|
sl@0
|
614 |
depending on static or dynamic factors which only the PSL knows about.
|
sl@0
|
615 |
|
sl@0
|
616 |
@see TDmaChannel::Open
|
sl@0
|
617 |
@see TDmaChannel::DmacCaps
|
sl@0
|
618 |
*/
|
sl@0
|
619 |
struct SDmacCaps
|
sl@0
|
620 |
{
|
sl@0
|
621 |
/** DMAC supports n + 1 different channel priorities. */
|
sl@0
|
622 |
TUint iChannelPriorities;
|
sl@0
|
623 |
/** DMAC supports the pausing and resuming of channels. */
|
sl@0
|
624 |
TBool iChannelPauseAndResume;
|
sl@0
|
625 |
/** DMA addresses must be aligned on an element size boundary. */
|
sl@0
|
626 |
TBool iAddrAlignedToElementSize;
|
sl@0
|
627 |
/** DMAC supports 1D (element) index addressing in hardware. */
|
sl@0
|
628 |
TBool i1DIndexAddressing;
|
sl@0
|
629 |
/** DMAC supports 2D (frame) index addressing in hardware. */
|
sl@0
|
630 |
TBool i2DIndexAddressing;
|
sl@0
|
631 |
/** DMAC supports these transfer synchronization types (bitmap of values).
|
sl@0
|
632 |
|
sl@0
|
633 |
@see TDmaTransferSyncFlags
|
sl@0
|
634 |
*/
|
sl@0
|
635 |
TUint iSynchronizationTypes;
|
sl@0
|
636 |
/** DMAC supports burst transactions with these sizes (bitmap of values).
|
sl@0
|
637 |
|
sl@0
|
638 |
@see TDmaBurstSize
|
sl@0
|
639 |
*/
|
sl@0
|
640 |
TUint iBurstTransactions;
|
sl@0
|
641 |
/** DMAC supports a 'h/w descriptor complete' interrupt. */
|
sl@0
|
642 |
TBool iDescriptorInterrupt;
|
sl@0
|
643 |
/** DMAC supports a 'frame transfer complete' interrupt. */
|
sl@0
|
644 |
TBool iFrameInterrupt;
|
sl@0
|
645 |
/** DMAC supports a 'linked-list pause event' interrupt. */
|
sl@0
|
646 |
TBool iLinkedListPausedInterrupt;
|
sl@0
|
647 |
/** DMAC supports endianness conversion. */
|
sl@0
|
648 |
TBool iEndiannessConversion;
|
sl@0
|
649 |
/** DMAC supports these graphics operations (bitmap of values).
|
sl@0
|
650 |
|
sl@0
|
651 |
@see TDmaGraphicsOps
|
sl@0
|
652 |
*/
|
sl@0
|
653 |
TUint iGraphicsOps;
|
sl@0
|
654 |
/** DMAC supports repeated transfers (loops). */
|
sl@0
|
655 |
TBool iRepeatingTransfers;
|
sl@0
|
656 |
/** DMAC supports logical channel linking (chaining). */
|
sl@0
|
657 |
TBool iChannelLinking;
|
sl@0
|
658 |
/** DMAC supports scatter/gather mode (linked list items). */
|
sl@0
|
659 |
TBool iHwDescriptors;
|
sl@0
|
660 |
/** DMAC supports asymmetric source and destination transfer
|
sl@0
|
661 |
parameters (such as element size).
|
sl@0
|
662 |
*/
|
sl@0
|
663 |
TBool iSrcDstAsymmetry;
|
sl@0
|
664 |
/** DMAC supports asymmetric h/w descriptor lists.
|
sl@0
|
665 |
|
sl@0
|
666 |
ETrue here requires ETrue for iHwDescriptors and iSrcDstAsymmetry as
|
sl@0
|
667 |
well.
|
sl@0
|
668 |
*/
|
sl@0
|
669 |
TBool iAsymHwDescriptors;
|
sl@0
|
670 |
/** DMAC with asymmetric descriptor support has the limitation that the
|
sl@0
|
671 |
number of bytes transferred in source and destination must be equal in
|
sl@0
|
672 |
every link segment (i.e. in each src/dst descriptor pair).
|
sl@0
|
673 |
|
sl@0
|
674 |
ETrue here requires ETrue for iAsymHwDescriptors as well.
|
sl@0
|
675 |
*/
|
sl@0
|
676 |
TBool iBalancedAsymSegments;
|
sl@0
|
677 |
/** DMAC supports separate transfer completion notifications for source and
|
sl@0
|
678 |
destination side subtransfers.
|
sl@0
|
679 |
|
sl@0
|
680 |
This capability is required for the asymmetric transfer completion
|
sl@0
|
681 |
callback API feature.
|
sl@0
|
682 |
|
sl@0
|
683 |
@see TDmaPILFlags::KDmaAsymCompletionCallback
|
sl@0
|
684 |
*/
|
sl@0
|
685 |
TBool iAsymCompletionInterrupt;
|
sl@0
|
686 |
/** DMAC supports separate descriptor completion notifications for source and
|
sl@0
|
687 |
destination side.
|
sl@0
|
688 |
|
sl@0
|
689 |
This capability is required for the asymmetric descriptor completion
|
sl@0
|
690 |
callback API feature.
|
sl@0
|
691 |
|
sl@0
|
692 |
ETrue here requires ETrue for both iDescriptorInterrupt and
|
sl@0
|
693 |
iAsymHwDescriptors as well.
|
sl@0
|
694 |
|
sl@0
|
695 |
@see TDmaPILFlags::KDmaAsymDescriptorCallback
|
sl@0
|
696 |
*/
|
sl@0
|
697 |
TBool iAsymDescriptorInterrupt;
|
sl@0
|
698 |
/** DMAC supports separate frame completion notifications for source and
|
sl@0
|
699 |
destination side.
|
sl@0
|
700 |
|
sl@0
|
701 |
This capability is required for the asymmetric frame completion
|
sl@0
|
702 |
callback API feature.
|
sl@0
|
703 |
|
sl@0
|
704 |
ETrue here requires ETrue for iFrameInterrupt as well.
|
sl@0
|
705 |
|
sl@0
|
706 |
@see TDmaPILFlags::KDmaAsymFrameCallback
|
sl@0
|
707 |
*/
|
sl@0
|
708 |
TBool iAsymFrameInterrupt;
|
sl@0
|
709 |
|
sl@0
|
710 |
/** Reserved for future use */
|
sl@0
|
711 |
TUint32 iReserved[5];
|
sl@0
|
712 |
};
|
sl@0
|
713 |
|
sl@0
|
714 |
|
sl@0
|
715 |
struct TDmaV2TestInfo
|
sl@0
|
716 |
{
|
sl@0
|
717 |
enum {KMaxChannels=32};
|
sl@0
|
718 |
/** Maximum transfer size in bytes for all channels (ie. the minimum of all channels' maximum size)*/
|
sl@0
|
719 |
TUint iMaxTransferSize;
|
sl@0
|
720 |
/** 3->Memory buffers must be 4-byte aligned, 7->8-byte aligned, ... */
|
sl@0
|
721 |
TUint iMemAlignMask;
|
sl@0
|
722 |
/** Cookie to pass to DDmaRequest::Fragment for memory-memory transfer */
|
sl@0
|
723 |
TUint32 iMemMemPslInfo;
|
sl@0
|
724 |
/** Number of test single-buffer channels */
|
sl@0
|
725 |
TInt iMaxSbChannels;
|
sl@0
|
726 |
/** Pointer to array containing single-buffer test channel ids */
|
sl@0
|
727 |
TUint32 iSbChannels[KMaxChannels];
|
sl@0
|
728 |
/** Number of test double-buffer channels */
|
sl@0
|
729 |
TInt iMaxDbChannels;
|
sl@0
|
730 |
/** Pointer to array containing double-buffer test channel ids */
|
sl@0
|
731 |
TUint32 iDbChannels[KMaxChannels];
|
sl@0
|
732 |
/** Number of test scatter-gather channels */
|
sl@0
|
733 |
TInt iMaxSgChannels;
|
sl@0
|
734 |
/** Pointer to array containing scatter-gather test channel ids */
|
sl@0
|
735 |
TUint32 iSgChannels[KMaxChannels];
|
sl@0
|
736 |
};
|
sl@0
|
737 |
|
sl@0
|
738 |
|
sl@0
|
739 |
#endif // #ifndef __DMADEFS_H__
|