Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // include/drivers/dmadefs.h
15 // DMA Framework - General class, enum, constant and type definitions.
26 /** The client request callback type */
29 /** Transfer request completion callback */
30 EDmaCallbackRequestCompletion = 0x01,
31 /** Transfer request completion callback - source side */
32 EDmaCallbackRequestCompletion_Src = 0x02,
33 /** Transfer request completion callback - destination side */
34 EDmaCallbackRequestCompletion_Dst = 0x04,
36 /** Descriptor completion callback */
37 EDmaCallbackDescriptorCompletion = 0x08,
38 /** Descriptor completion callback - source side */
39 EDmaCallbackDescriptorCompletion_Src = 0x10,
40 /** Descriptor completion callback - destination side */
41 EDmaCallbackDescriptorCompletion_Dst = 0x20,
43 /** Frame completion callback */
44 EDmaCallbackFrameCompletion = 0x40,
45 /** Frame completion callback - source side */
46 EDmaCallbackFrameCompletion_Src = 0x80,
47 /** Frame completion callback - destination side */
48 EDmaCallbackFrameCompletion_Dst = 0x100,
50 /** H/W descriptor pause event callback */
51 EDmaCallbackLinkedListPaused = 0x200,
52 /** H/W descriptor pause event callback - source side */
53 EDmaCallbackLinkedListPaused_Src = 0x400,
54 /** H/W descriptor pause event callback - destination side */
55 EDmaCallbackLinkedListPaused_Dst = 0x800
59 /** The outcome of the transfer request */
62 /** Completed without error */
64 /** There was an error */
70 /** To be used with address mode field of the DMA transfer config struct.
72 @see TDmaTransferConfig::iAddrMode
76 /** Constant addressing. The address remains the same for consecutive
80 /** Post-increment addressing. The address increases by the element size
83 KDmaAddrModePostIncrement,
84 /** Post-decrement addressing. The address decreases by the element size
87 KDmaAddrModePostDecrement,
88 /** 1D-index addressing. The address always increases by the element size
89 plus the element skip value after each access.
92 /** 2D-index addressing. The address increases by the element size plus the
93 element skip value - but only within a frame. Once a full frame has been
94 transferred, the address increases by the element size plus the element
95 skip value plus the frame skip value.
101 /** To be used with the burst size field of the DMA transfer config struct.
103 @see SDmacCaps::iBurstTransactions
104 @see TDmaTransferConfig::iBurstSize
108 /** Don't use burst transactions */
110 /** Don't care (the default) */
111 KDmaBurstSizeAny = 0x00,
113 KDmaBurstSize4 = 0x04,
115 KDmaBurstSize8 = 0x08,
117 KDmaBurstSize16 = 0x10,
119 KDmaBurstSize32 = 0x20,
121 KDmaBurstSize64 = 0x40,
123 KDmaBurstSize128 = 0x80
127 /** To be used with the flags field of the DMA transfer config struct.
129 @see TDmaTransferConfig::iFlags
131 enum TDmaTransferFlags
133 /** Location is address of a memory buffer (as opposed to a peripheral or a
137 /** Address is a physical address (as opposed to a linear one).
138 If it is a memory address then KDmaMemIsContiguous will need to be set
142 /** Target memory is known to be physically contiguous, hence there is
143 no need for the framework to check for memory fragmentation.
145 KDmaMemIsContiguous = 0x04,
146 /** Don't use packed access (if possible) */
147 KDmaDontUsePacked = 0x08,
148 /** Location is big endian (little endian if not set).
150 To have any effect, this flag requires the DMAC to support endianness
153 @see SDmacCaps::iEndiannessConversion
155 KDmaBigEndian = 0x10,
156 /** Don't do endianness conversion even if applicable.
158 To have any effect, this flag requires the DMAC to support endianness
161 @see SDmacCaps::iEndiannessConversion
163 KDmaLockEndian = 0x20,
164 /** Execute client request callback after each subtransfer (streaming /
167 This option is only taken into account if the respective
168 TDmaTransferConfig::iRepeatCount is non-zero.
170 The callback will complete with a TDmaCallbackType of
171 EDmaCallbackRequestCompletion (even if the repeat counts for source and
172 destination are different), unless the flag
173 TDmaPILFlags::KDmaAsymCompletionCallback is set too, in which case what
174 is described there applies.
176 KDmaCallbackAfterEveryTransfer = 0x40,
177 /** Execute client request callback after each completed hardware
180 Requires the DMAC to support this feature. Unless the DMAC supports
181 asymmetric descriptor interrupts as well, this flag should not be set
182 on only one (source or destination) side.
184 @see SDmacCaps::iDescriptorInterrupt
185 @see SDmacCaps::iAsymDescriptorInterrupt
187 KDmaCallbackAfterEveryDescriptor = 0x80,
188 /** Execute client request callback after each completed frame.
190 Requires the DMAC to support this feature. Unless the DMAC supports
191 asymmetric frame interrupts as well, this flag should not be set on
192 only one (source or destination) side.
194 @see SDmacCaps::iFrameInterrupt
195 @see SDmacCaps::iAsymFrameInterrupt
197 KDmaCallbackAfterEveryFrame = 0x100
201 /** To be used with the synchronization flags field of a DMA transfer
204 @see SDmacCaps::iSynchronizationTypes
205 @see TDmaTransferConfig::iSyncFlags
207 enum TDmaTransferSyncFlags
209 /** Leave the decision on whether the transfer is hardware synchronized at
210 this end (either source or destination) to the Framework. This is the
214 /** Transfer is not hardware synchronized at this end (either source or
218 /** Transfer is hardware synchronized at this end (either source or
219 destination). This option can also be used on its own, without any
220 of the following sync sizes.
223 /** H/W synchronized at this end: transfer one ELEMENT (a number of
224 bytes, depending on the configured element size) per sync event.
226 KDmaSyncSizeElement = 0x04,
227 /** H/W synchronized at this end: transfer one FRAME (a number of
228 elements, depending on the configured frame size) per sync event.
230 KDmaSyncSizeFrame = 0x08,
231 /** H/W synchronized at this end: transfer one BLOCK (a number of
232 frames, depending on the configured transfer size) per sync
233 event. This is the most common use case.
235 KDmaSyncSizeBlock = 0x10,
236 /** H/W synchronized at this end: transfer one PACKET (a number of
237 elements, depending on the configured packet size) per sync event.
238 In cases where the transfer block size is not a multiple of the
239 packet size the last packet will consist of the remaining elements.
241 KDmaSyncSizePacket = 0x20
245 /** To be used with the Graphics operation field of a DMA transfer request.
247 @see TDmaTransferArgs::iGraphicsOps
251 /** Don't use any graphics acceleration feature (the default) */
252 KDmaGraphicsOpNone = 0x00,
253 /** Enable graphics acceleration feature 'Constant Fill' */
254 KDmaGraphicsOpConstantFill = 0x01,
255 /** Enable graphics acceleration feature 'TransparentCopy' */
256 KDmaGraphicsOpTransparentCopy = 0x02
260 /** To be used with the PIL flags field of a DMA transfer request.
262 @see TDmaTransferArgs::iFlags
266 /** Request a different max transfer size (for instance for test
269 KDmaAltTransferLength = 0x01,
270 /** Execute client request callback in ISR context instead of from a
273 KDmaRequestCallbackFromIsr = 0x02,
274 /** Execute descriptor completion callback in ISR context instead of
275 from a DFC. This option is to be used in conjunction with the
276 TDmaTransferFlags::KDmaCallbackAfterEveryDescriptor flag.
278 KDmaDescriptorCallbackFromIsr = 0x04,
279 /** Execute frame completion callback in ISR context instead of
280 from a DFC. This option is to be used in conjunction with the
281 TDmaTransferFlags::KDmaCallbackAfterEveryFrame flag.
283 KDmaFrameCallbackFromIsr = 0x08,
284 /** Execute the client request callback separately for source and
285 destination subtransfers.
287 This flag also determines the TDmaCallbackType value returned. If set,
288 the callback will complete with EDmaCallbackRequestCompletion_Src or
289 EDmaCallbackRequestCompletion_Dst, respectively, instead of with
290 EDmaCallbackRequestCompletion.
292 Requires the DMAC to support this feature.
294 @see SDmacCaps::iAsymCompletionInterrupt
296 KDmaAsymCompletionCallback = 0x10,
297 /** Execute the descriptor completion callback separately for source
298 and destination subtransfers.
300 This flag modifies the behaviour of the
301 TDmaTransferFlags::KDmaCallbackAfterEveryDescriptor flag and also
302 determines the TDmaCallbackType value returned. If set, the callback
303 will complete with EDmaCallbackDescriptorCompletion_Src or
304 EDmaCallbackDescriptorCompletion_Dst, respectively, instead of with
305 EDmaCallbackDescriptorCompletion.
307 Requires the DMAC to support this feature.
309 @see SDmacCaps::iAsymDescriptorInterrupt
311 KDmaAsymDescriptorCallback = 0x20,
312 /** Execute the frame completion callback separately for source and
313 destination subtransfers.
315 This flag modifies the behaviour of the
316 TDmaTransferFlags::KDmaCallbackAfterEveryFrame flag. If set, the
317 callback will complete with EDmaCallbackFrameCompletion_Src or
318 EDmaCallbackFrameCompletion_Dst, respectively, instead of with
319 EDmaCallbackFrameCompletion.
321 Requires the DMAC to support this feature.
323 @see SDmacCaps::iAsymFrameInterrupt
325 KDmaAsymFrameCallback = 0x40,
326 /** This transfer (only) should use the channel priority indicated by
327 TDmaTransferArgs::iChannelPriority.
329 KDmaRequestChannelPriority = 0x80
333 /** Values which can be used with the priority field when opening a channel
334 and/or when fragmenting a transfer request.
336 @see TDmaChannel::SCreateInfo::iPriority
337 @see TDmaTransferArgs::iChannelPriority
341 /** No transfer priority preference (don't care value) */
342 KDmaPriorityNone = 0x0,
343 /** Platform-independent transfer priority 1 (lowest) */
344 KDmaPriority1 = 0x80000001,
345 /** Platform-independent transfer priority 2 */
346 KDmaPriority2 = 0x80000002,
347 /** Platform-independent transfer priority 3 */
348 KDmaPriority3 = 0x80000003,
349 /** Platform-independent transfer priority 4 */
350 KDmaPriority4 = 0x80000004,
351 /** Platform-independent transfer priority 5 */
352 KDmaPriority5 = 0x80000005,
353 /** Platform-independent transfer priority 6 */
354 KDmaPriority6 = 0x80000006,
355 /** Platform-independent transfer priority 7 */
356 KDmaPriority7 = 0x80000007,
357 /** Platform-independent transfer priority 8 (highest) */
358 KDmaPriority8 = 0x80000008
362 /** Contains the configuration values for either the source or the
363 destination side of a DMA transfer.
365 Note that some fields (notably iElementSize, iElementsPerFrame and
366 iFramesPerTransfer) may only differ between source and destination if
367 the underlying DMAC supports this.
369 @see SDmacCaps::iSrcDstAsymmetry
370 @see TDmaTransferArgs::iSrcConfig
371 @see TDmaTransferArgs::iDstConfig
373 struct TDmaTransferConfig
375 friend struct TDmaTransferArgs;
377 /** Default constructor. Initializes all fields with meaningful default
383 TDmaTransferConfig();
385 /** Intended for general use ie. not 2D or 1D transfers
392 TUint aTransferFlags,
393 TDmaAddrMode aAddrMode = KDmaAddrModePostIncrement,
394 TUint aSyncFlags = KDmaSyncAuto,
395 TDmaBurstSize aBurstSize = KDmaBurstSizeAny,
396 TUint aElementSize = 0,
397 TUint aElementsPerPacket = 0,
398 TUint aPslTargetInfo = 0,
399 TInt aRepeatCount = 0
402 /** Intended for 1D and 2D transfers
410 TUint aElementsPerFrame,
411 TUint aFramesPerTransfer,
414 TUint aTransferFlags,
415 TUint aSyncFlags = KDmaSyncAuto,
416 TDmaBurstSize aBurstSize = KDmaBurstSizeAny,
417 TUint aElementsPerPacket = 0,
418 TUint aPslTargetInfo = 0,
419 TInt aRepeatCount = 0
422 /** Transfer start address */
425 TDmaAddrMode iAddrMode;
426 /** Element size in bytes (1/2/4/8) */
428 /** Number of elements per frame */
429 TUint iElementsPerFrame;
430 /** Number of elements per packet */
431 TUint iElementsPerPacket;
432 /** Number of frames to transfer (result is the transfer block) */
433 TUint iFramesPerTransfer;
434 /** Element skip in bytes (for addr modes E1DIndex or E2DIndex) */
436 /** Frame skip in bytes (for addr mode E2DIndex) */
438 /** Use burst transactions of the specified size (in bytes)
442 /** PIL src/dst config flags.
443 @see TDmaTransferFlags
446 /** Transfer synchronization flags.
447 @see TDmaTransferSyncFlags
450 /** Information passed to the PSL */
451 TUint iPslTargetInfo;
452 /** How often to repeat this (sub-)transfer:
453 0 no repeat (the default)
458 /** Structure contents delta vector (usage tbd) */
460 /** Reserved for future use */
464 /** Private constructor. Initializes fields with the values passed in by
465 the legacy version of the DDmaRequest::Fragment() call.
467 TDmaTransferConfig(TUint32 aAddr, TUint aFlags, TBool aAddrInc);
471 /** To be used by the client to pass DMA transfer request details to the
474 Also used internally by the framework as a pseudo descriptor if the
475 controller doesn't support hardware descriptors (scatter/gather LLI).
477 @see DDmaRequest::Fragment
479 struct TDmaTransferArgs
481 friend class DDmaRequest;
482 friend class TDmaChannel;
484 friend class DmaChannelMgr;
486 /** Default constructor. Initializes all fields with meaningful default
494 /** For transfers where src and dst TDmaTransferConfig structs share some
495 of the same options ie. iDmaTransferFlags, iAddrMode, iSyncFlags,
496 iBurstSize, and iElementSize.
500 @param aCount Number of bytes to transfer
501 @param aDmaTransferFlags Bitmask of TDmaTransferFlags for src and dst
502 @param aDmaSyncFlags Bitmask of TDmaTransferSyncFlags for src and dst
503 @param aMode Address mode for src and dst
504 @param aDmaPILFlags Bitmask of TDmaPILFlags
505 @param aElementSize In bytes (1/2/4/8) for src and dst
506 @param aChannelPriority
507 @param aBurstSize for src and dst
508 @param aPslRequestInfo Info word passed to the PSL
509 @param aGraphicOp Graphics operation to be executed
510 @param aColour Colour value for graphics operation
516 TUint aSrcAddr, TUint aDstAddr, TUint aCount,
517 TUint aDmaTransferFlags, TUint aDmaSyncFlags = KDmaSyncAuto,
518 TUint aDmaPILFlags = 0,
519 TDmaAddrMode aMode = KDmaAddrModePostIncrement, TUint aElementSize = 0,
520 TUint aChannelPriority = KDmaPriorityNone,
521 TDmaBurstSize aBurstSize = KDmaBurstSizeAny, TUint aPslRequestInfo = 0,
522 TDmaGraphicsOps aGraphicOp = KDmaGraphicsOpNone, TUint32 aColour = 0
525 /** For transfers needing specific options for source and destination
526 TDmaTransferConfig structs.
528 @param aSrc Configuration values for the source
529 @param aDst Configuration values for the destination
530 @param aFlags @see TDmaPILFlags
531 @param aChannelPriority Use for this request (only) the indicated
532 channel priority. Requires KDmaRequestChannelPriority to be set in
533 iFlags as well. @see TDmaPriority
535 @param aPslRequestInfo Info word passed to the PSL
536 @param aGraphicOp Graphics operation to be executed
537 @param aColour Colour value for graphics operation
543 const TDmaTransferConfig& aSrc,
544 const TDmaTransferConfig& aDst,
546 TUint aChannelPriority = KDmaPriorityNone,
547 TUint aPslRequestInfo = 0,
548 TDmaGraphicsOps aGraphicOp = KDmaGraphicsOpNone, TUint32 aColour = 0
551 /** Configuration values for the source */
552 TDmaTransferConfig iSrcConfig;
553 /** Configuration values for the destination */
554 TDmaTransferConfig iDstConfig;
556 /** Number of bytes to transfer (optional).
558 A non-zero value here must be consistent with iElementSize,
559 iElementsPerFrame and iFramesPerTransfer in iSrcConfig and iDstConfig
560 if the latter are specified as well (or instead, they may be left at
561 their default values of zero).
563 If zero, the PIL will fill in a value calculated from multiplying
564 iElementSize, iElementsPerFrame and iFramesPerTransfer in iSrcConfig,
565 so that the PSL can rely on it being always non-zero and valid.
567 TUint iTransferCount;
568 /** Graphics operation to be executed */
569 TDmaGraphicsOps iGraphicsOps;
570 /** Colour value for graphics operations */
576 /** Use for this request (only) the indicated channel priority.
577 Requires KDmaRequestChannelPriority to be set in iFlags as well.
580 TUint iChannelPriority;
581 /** Info word passed to the PSL */
582 TUint iPslRequestInfo;
584 /** Structure contents delta vector (usage tbd) */
586 /** Reserved for future use */
590 /** Private constructor. Initializes fields with the values passed in by
591 the legacy version of the DDmaRequest::Fragment() call.
593 TDmaTransferArgs(TUint32 aSrcAddr, TUint32 aDstAddr, TInt aCount,
594 TUint aFlags, TUint32 aPslInfo);
595 /** Stores the PSL cookie returned by TDmaChannel::PslId() at request
597 The value PslId() is often (but not necessarily) identical with the
598 client's TDmaChannel::SCreateInfo::iCookie, which gets passed by the
599 PIL into DmaChannelMgr::Open() as 'aOpenId'.
601 TUint32 iChannelCookie;
602 /** Reserved for future use */
607 /** DMAC capabilities info structure.
609 Instances are to be filled in by the PSL and then linked to via TDmaChannel
610 objects after they have been opened.
612 The contents may vary even between channels on the same DMAC (but will
613 remain constant for a given channel for the duration that it is open),
614 depending on static or dynamic factors which only the PSL knows about.
616 @see TDmaChannel::Open
617 @see TDmaChannel::DmacCaps
621 /** DMAC supports n + 1 different channel priorities. */
622 TUint iChannelPriorities;
623 /** DMAC supports the pausing and resuming of channels. */
624 TBool iChannelPauseAndResume;
625 /** DMA addresses must be aligned on an element size boundary. */
626 TBool iAddrAlignedToElementSize;
627 /** DMAC supports 1D (element) index addressing in hardware. */
628 TBool i1DIndexAddressing;
629 /** DMAC supports 2D (frame) index addressing in hardware. */
630 TBool i2DIndexAddressing;
631 /** DMAC supports these transfer synchronization types (bitmap of values).
633 @see TDmaTransferSyncFlags
635 TUint iSynchronizationTypes;
636 /** DMAC supports burst transactions with these sizes (bitmap of values).
640 TUint iBurstTransactions;
641 /** DMAC supports a 'h/w descriptor complete' interrupt. */
642 TBool iDescriptorInterrupt;
643 /** DMAC supports a 'frame transfer complete' interrupt. */
644 TBool iFrameInterrupt;
645 /** DMAC supports a 'linked-list pause event' interrupt. */
646 TBool iLinkedListPausedInterrupt;
647 /** DMAC supports endianness conversion. */
648 TBool iEndiannessConversion;
649 /** DMAC supports these graphics operations (bitmap of values).
654 /** DMAC supports repeated transfers (loops). */
655 TBool iRepeatingTransfers;
656 /** DMAC supports logical channel linking (chaining). */
657 TBool iChannelLinking;
658 /** DMAC supports scatter/gather mode (linked list items). */
659 TBool iHwDescriptors;
660 /** DMAC supports asymmetric source and destination transfer
661 parameters (such as element size).
663 TBool iSrcDstAsymmetry;
664 /** DMAC supports asymmetric h/w descriptor lists.
666 ETrue here requires ETrue for iHwDescriptors and iSrcDstAsymmetry as
669 TBool iAsymHwDescriptors;
670 /** DMAC with asymmetric descriptor support has the limitation that the
671 number of bytes transferred in source and destination must be equal in
672 every link segment (i.e. in each src/dst descriptor pair).
674 ETrue here requires ETrue for iAsymHwDescriptors as well.
676 TBool iBalancedAsymSegments;
677 /** DMAC supports separate transfer completion notifications for source and
678 destination side subtransfers.
680 This capability is required for the asymmetric transfer completion
681 callback API feature.
683 @see TDmaPILFlags::KDmaAsymCompletionCallback
685 TBool iAsymCompletionInterrupt;
686 /** DMAC supports separate descriptor completion notifications for source and
689 This capability is required for the asymmetric descriptor completion
690 callback API feature.
692 ETrue here requires ETrue for both iDescriptorInterrupt and
693 iAsymHwDescriptors as well.
695 @see TDmaPILFlags::KDmaAsymDescriptorCallback
697 TBool iAsymDescriptorInterrupt;
698 /** DMAC supports separate frame completion notifications for source and
701 This capability is required for the asymmetric frame completion
702 callback API feature.
704 ETrue here requires ETrue for iFrameInterrupt as well.
706 @see TDmaPILFlags::KDmaAsymFrameCallback
708 TBool iAsymFrameInterrupt;
710 /** Reserved for future use */
711 TUint32 iReserved[5];
715 struct TDmaV2TestInfo
717 enum {KMaxChannels=32};
718 /** Maximum transfer size in bytes for all channels (ie. the minimum of all channels' maximum size)*/
719 TUint iMaxTransferSize;
720 /** 3->Memory buffers must be 4-byte aligned, 7->8-byte aligned, ... */
722 /** Cookie to pass to DDmaRequest::Fragment for memory-memory transfer */
723 TUint32 iMemMemPslInfo;
724 /** Number of test single-buffer channels */
726 /** Pointer to array containing single-buffer test channel ids */
727 TUint32 iSbChannels[KMaxChannels];
728 /** Number of test double-buffer channels */
730 /** Pointer to array containing double-buffer test channel ids */
731 TUint32 iDbChannels[KMaxChannels];
732 /** Number of test scatter-gather channels */
734 /** Pointer to array containing scatter-gather test channel ids */
735 TUint32 iSgChannels[KMaxChannels];
739 #endif // #ifndef __DMADEFS_H__