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/dma_v1.h
15 // DMA Framework API v1
17 // NB: DMA clients should never include this file directly, but only ever the
18 // generic header file <drivers/dma.h>.
22 #error "dma_v1.h must'n be included directly - use <drivers/dma.h> instead"
23 #endif // #ifndef __DMA_H__
28 #include <kernel/kern_priv.h>
31 //////////////////////////////////////////////////////////////////////////////
32 // Debug Support - KDmaPanicCat is defined in each source file
34 #define __DMA_ASSERTD(e) __ASSERT_DEBUG(e, Kern::Fault(KDmaPanicCat, __LINE__))
35 #define __DMA_ASSERTA(e) __ASSERT_ALWAYS(e, Kern::Fault(KDmaPanicCat, __LINE__))
37 #define __DMA_CANT_HAPPEN() Kern::Fault(KDmaPanicCat, __LINE__)
38 #define __DMA_DECLARE_INVARIANT public: void Invariant();
39 #define __DMA_INVARIANT() Invariant()
41 #define __DMA_CANT_HAPPEN()
42 #define __DMA_DECLARE_INVARIANT
43 #define __DMA_INVARIANT()
47 //////////////////////////////////////////////////////////////////////////////
48 // INTERFACE EXPOSED TO DEVICE-DRIVERS
49 //////////////////////////////////////////////////////////////////////////////
52 Bitmasks used for configuring a DMA request.
54 In general, specify KDmaMemSrc|KDmaIncSrc (resp. KDmaMemDest|KDmaIncDest) if
55 the source (resp. destination) is a memory buffer and clear
56 KDmaMemSrc|KDmaIncSrc (resp. KDmaMemDest|KDmaIncDest) if the source
57 (resp. destination) is a peripheral.
59 If the location is given as a physical address (rather than a linear one)
60 then also specify KDmaPhysAddrSrc and/or KDmaPhysAddrDest.
62 The EKA1 "Fill Mode" can be implemented by omitting KDmaIncSrc.
64 Some peripherals may require a post-increment address mode.
66 @see DDmaRequest::Fragment
73 /** Source is address of memory buffer */
75 /** Destination is address of memory buffer */
77 /** Source address must be post-incremented during transfer */
79 /** Destination address must be post-incremented during transfer */
81 /** Source address is a physical address (as opposed to a linear one) */
82 KDmaPhysAddrSrc = 0x10,
83 /** Destination address is a physical address (as opposed to a linear one) */
84 KDmaPhysAddrDest = 0x20,
85 /** Request a different max transfer size (for instance for test purposes) */
86 KDmaAltTransferLen = 0x40
90 //////////////////////////////////////////////////////////////////////////////
95 /** A DMA request is a list of fragments small enough to be transferred in one go
98 In general, fragmentation is done in the framework by calling Fragment() but
99 clients with special needs can allocate a blank descriptor list with
100 ExpandDesList() and customise it to fit their needs.
102 Clients should not set attributes directly, but should use the various functions
105 This class has not been designed to be called from several concurrent threads.
106 Multithreaded clients must implement their own locking scheme (via DMutex).
108 Fast mutexes are used internally to protect data structures accessed both
109 by the client thread and the DFC thread. Therefore no fast mutex can be held
110 when calling a request function.
115 class DDmaRequest : public DBase
117 friend class TDmaChannel;
119 /** The outcome of the transfer */
120 enum TResult {EBadResult=0, EOk, EError};
121 /** The signature of the completion/failure callback function */
122 typedef void (*TCallback)(TResult, TAny*);
126 Create a new transfer request.
128 @param aChannel The channel this request is bound to.
129 @param aCb Callback function called on transfer completion or failure (in channel
130 DFC context). Can be NULL.
131 @param aCbArg Argument passed to callback function.
132 @param aMaxTransferSize Maximum fragment size. If not specified, defaults to the maximum size
133 supported by the DMA controller for the type of transfer that is later scheduled.
135 IMPORT_C DDmaRequest(TDmaChannel& aChannel, TCallback aCb=NULL, TAny* aCbArg=NULL, TInt aMaxTransferSize=0);
141 Assume the request is not being transferred or pending.
143 IMPORT_C ~DDmaRequest();
147 Split request into a list of fragments small enough to be fed to the DMAC.
149 The size of each fragment is smaller than or equal to the maximum transfer size
150 supported by the DMAC. If the source and/or destination is memory, each
151 fragment points to memory which is physically contiguous.
153 The kind of transfer to perform is specified via a set of flags used by a PIL
154 and a magic cookie passed to the PSL. If the source (resp. destination) is a
155 peripheral, aSrc (resp. aDest) is treated as a magic cookie by the PIL and
156 passed straight to the PSL.
158 The request can be uninitialised or may have been fragmented previously. The
159 previous configuration if any is lost whether or not the function succeeds.
161 @param aSrc Source memory buffer linear address or peripheral magic cookie.
162 @param aDest Destination memory buffer linear address or peripheral magic cookie.
163 @param aCount Number of bytes to transfer.
164 @param aFlags Bitmask characterising the transfer.
165 @param aPslInfo Hardware-specific information passed to PSL.
167 @return KErrNone if success. KErrArgument if aFlags and/or aPslInfo are invalid when finding
168 the maximum transfer size. May also fail if running out of descriptors.
170 @pre The request is not being transferred or pending.
171 @pre The various parameters must be valid. The PIL or PSL will fault the
174 @see TDmaRequestFlags
176 IMPORT_C TInt Fragment(TUint32 aSrc, TUint32 aDest, TInt aCount, TUint aFlags, TUint32 aPslInfo);
180 Transfer asynchronously this request.
182 If this request's channel is idle, the request is transferred immediately.
183 Otherwise, it is queued and transferred later.
185 The client is responsible for ensuring cache consistency before and/or after the
186 transfer if necessary.
188 IMPORT_C void Queue();
192 Append new descriptor(s) to existing list.
194 Clients needing to build a custom descriptor list should call this function to
195 allocate the list and access the resulting list through iFirstHdr and iLastHdr.
197 Clients should not change the value of iFirstHdr, iLastHdr and the iNext field
198 of the descriptor headers to ensure descriptors can be deallocated. Clients
199 are free to change hardware descriptors, including chaining, in whatever way
202 Assume the request is not being transferred or pending.
204 @param aCount Number of descriptors to append.
206 @return KErrNone or KErrTooBig if not enough descriptors available.
208 IMPORT_C TInt ExpandDesList(TInt aCount=1);
212 Free resources associated with this request.
214 Assume the request is not being transferred or pending.
216 IMPORT_C void FreeDesList();
218 inline void OnDeque();
220 // WARNING: The following attributes are accessed both in client and DFC
221 // context and so accesses must be protected with the channel lock.
222 TDmaChannel& iChannel; /**< The channel this request is bound to */
223 volatile TCallback iCb; /**< Called on completion/failure (can be NULL) */
224 TAny* volatile iCbArg; /**< Callback argument */
225 TInt iDesCount; /**< The number of fragments in list */
226 SDmaDesHdr* iFirstHdr; /**< The first fragment in the list (or NULL) */
227 SDmaDesHdr* iLastHdr; /**< The last fragment in the list (or NULL) */
228 SDblQueLink iLink; /**< The link on channel queue of pending requests */
229 TBool iQueued; /**< Indicates whether request is pending or being transferred */
230 TInt iMaxTransferSize; /**< Defaults to DMA controller max. transfer size */
231 __DMA_DECLARE_INVARIANT
235 //////////////////////////////////////////////////////////////////////////////
240 /** DMA channel base class.
242 This class has not been designed to be called from several concurrent
243 client threads. Multithreaded clients must implement their own locking
246 Fast mutexes are used internally to protect data structures accessed both
247 by the client thread and the DFC one. Therefore no fast mutex can be held
248 when calling a channel function.
250 Must be allocated in BSS because it relies on being zeroed at
251 creation-time. If the PSL really needs to allocate channels on the kernel
252 heap, it must manually zero-initialises the instances. This can be
253 achieved either by allocating raw memory and using placement new, or by
254 wrapping channels into a DBase-derived wrapper.
259 class TDmaCancelInfo;
262 friend class DDmaRequest;
264 friend class DmaChannelMgr;
266 /** Information passed by client when opening channel */
269 /** Identifier used by PSL to select channel to open */
271 /** Number of descriptors this channel can use */
273 /** DFC queue used to service DMA interrupts. The DFC thread
274 priority must be higher than any client thread priority to
275 avoid a situation where a transfer completes while being
276 cancelled and another transfer is started before the DFC
277 thread gets a chance to run. This would lead to a stray
286 Opens the DMA channel.
288 Channel selection is done by the hardware-specific layer using a cookie passed in
291 The client should not delete the returned pointer as the framework owns
292 channel objects. However, the client should explicitly close the channel when
295 @param aInfo Information passed by caller to select and configure channel.
296 @param aChannel Point to open channel on successful return. NULL otherwise.
298 @return KErrNone or standard error code.
300 IMPORT_C static TInt Open(const SCreateInfo& aInfo, TDmaChannel*& aChannel);
304 Closes a previously opened DMA channel.
306 Assume the channel is idle and all requests have been deleted.
308 IMPORT_C void Close();
312 Cancels the current request and all the pending ones.
314 IMPORT_C void CancelAll();
315 inline TBool IsOpened() const;
316 inline TBool IsQueueEmpty() const;
317 inline TUint32 PslId() const;
318 inline TInt FailNext(TInt aFragmentCount);
319 inline TInt MissNextInterrupts(TInt aInterruptCount);
320 inline TInt Extension(TInt aCmd, TAny* aArg);
323 This is a function that allows the Platform Specific Layer (PSL) to extend the DMA API
324 with new channel-independent operations.
326 @param aCmd Command identifier. Negative values are reserved for Symbian use.
327 @param aArg PSL-specific.
329 @return KErrNotSupported if aCmd is not supported; a PSL specific value otherwise.
331 IMPORT_C TInt StaticExtension(TInt aCmd, TAny* aArg);
332 inline const TDmac* Controller() const;
333 inline TInt MaxTransferSize(TUint aFlags, TUint32 aPslInfo);
334 inline TUint MemAlignMask(TUint aFlags, TUint32 aPslInfo);
336 // Interface with state machines
338 virtual void DoQueue(DDmaRequest& aReq) = 0;
339 virtual void DoCancelAll() = 0;
340 virtual void DoUnlink(SDmaDesHdr& aHdr);
341 virtual void DoDfc(DDmaRequest& aCurReq, SDmaDesHdr*& aCompletedHdr) = 0;
343 This function allows the Platform Specific Layer (PSL) to control the
344 power management of the channel or its controller by overriding the
345 PIL's default implementation (which does nothing) and making appropriate
346 use of the Power Resource Manager (PRM).
348 The function gets called by the PIL whenever the channel's queued
349 requests count has changed in a significant way, either before the
350 channel's Transfer() method is invoked for a request on a previously
351 empty request queue, or immediately after the request count has become
352 zero because of request cancellation or completion.
354 Depending on the current value of iQueuedRequests, the PSL may power
355 down or power up the channel. Note that iQueuedRequests gets accessed
356 and changed by different threads, so the PSL needs to take the usual
357 precautions when evaluating the variable's value.
359 None of the internal DMA framework mutexes is being held by the PIL when
360 calling this function.
364 virtual void QueuedRequestCountChanged();
365 #if defined(__CPU_ARM) && !defined(__EABI__)
366 inline virtual ~TDmaChannel() {} // kill really annoying warning
369 static void Dfc(TAny*);
372 inline void Signal();
373 inline TBool Flash();
374 void ResetStateMachine();
376 TDmac* iController; // DMAC this channel belongs to (NULL when closed)
377 TUint32 iPslId; // unique identifier provided by PSL
378 NFastMutex iLock; // for data accessed in both client & DFC context
379 SDmaDesHdr* iCurHdr; // fragment being transferred or NULL
380 SDmaDesHdr** iNullPtr; // Pointer to NULL pointer following last fragment
381 TDfc iDfc; // transfer completion/failure DFC
382 TInt iMaxDesCount; // maximum number of allocable descriptors
383 TInt iAvailDesCount; // available number of descriptors
384 volatile TUint32 iIsrDfc; // Interface between ISR and DFC:
385 enum { KErrorFlagMask = 0x80000000 }; // bit 31 - error flag
386 enum { KCancelFlagMask = 0x40000000 }; // bit 30 - cancel flag
387 enum { KDfcCountMask = 0x3FFFFFFF }; // bits 0-29 - number of queued DFCs
388 SDblQue iReqQ; // being/about to be transferred request queue
389 TInt iReqCount; // number of requests attached to this channel
390 TInt iQueuedRequests; // number of requests currently queued on this channel
392 TDmaCancelInfo* iCancelInfo;
393 __DMA_DECLARE_INVARIANT
397 //////////////////////////////////////////////////////////////////////////////
399 //////////////////////////////////////////////////////////////////////////////
402 Generic DMA descriptor used if the DMAC does not have support for hardware
404 @see DDmaRequest::Fragment
411 /** Source linear address or peripheral cookie */
413 /** Destination linear address or peripheral cookie */
415 /** Number of bytes to transfer */
417 /** @see TDmaRequestFlags */
419 /** PSL-specific information provided by client */
421 /** The same as TDmaChannel::SCreateInfo.iCookie */
427 Each hardware or pseudo descriptor is associated with a header. Headers are
428 needed because hardware descriptors can not easily be extended to store
429 additional information.
441 Interface used by PIL to open and close DMA channels.
443 Must be implemented by PSL.
451 /** Opens a channel using a client-provided identifier.
452 This function must be implemented by the PSL.
453 @param aOpenId Magic cookie passed by client
454 This may identify the channel (if a static channel
455 allocation scheme is used) or may indicate some
456 properties which the channel must possess (if a dynamic
457 channel allocation scheme is used). It may be set to
458 zero always if dynamic allocation is used and all
459 channels are equivalent.
460 @return Pointer to channel if available, NULL otherwise.
461 @pre The PIL calls this function with a global fast mutex held to
462 avoid race conditions.
463 @post If a non-NULL pointer is returned, the object pointed to has its
464 iController and iPslId members set to valid states.
465 iController should point to the controller handling that channel.
466 iPslId should contain a value uniquely identifying the channel -
467 it is used only for debug tracing by PIL. It can be given any
468 convenient value by PSL (channel index, I/O port address, ...).
470 static TDmaChannel* Open(TUint32 aOpenId);
472 /** Performs platform-specific operations when a channel is closed.
473 This function must be implemented by the PSL but the implementation can be
475 @param aChannel The channel to close
476 @pre The PIL calls this function with a global fast mutex held to
477 avoid race conditions.
479 static void Close(TDmaChannel* aChannel);
481 /** Function allowing PSL to extend DMA API with new channel-independent operations.
482 This function must be implemented by the PSL.
483 @param aCmd Command identifier. Negative values are reserved for Symbian use.
484 @param aArg PSL-specific
485 @return KErrNotSupported if aCmd is not supported. PSL-specific value otherwise.
487 static TInt StaticExtension(TInt aCmd, TAny* aArg);
489 static inline void Wait();
490 static inline void Signal();
492 static NFastMutex Lock;
496 //////////////////////////////////////////////////////////////////////////////
499 Abstract base class representing a DMA controller.
501 The class has two purposes.
503 First, it is a container for channels, descriptors and descriptor headers.
505 Second, it exposes a set of virtual functions implemented by
506 the PSL (platform-specific layer).
507 These functions are the main interfaces between
508 the PIL (platform-independent layer) and PSL.
510 Must be allocated in BSS because it relies on being zeroed at creation-time.
518 friend class DmaChannelMgr;
519 // protected: VC++ complains when building PSL if following decl is protected
521 /** Data required for creating a new instance */
524 /** Number of channels in controller */
526 /** Maximum number of descriptors (shared by all channels) */
528 /** Bitmask. The only supported value is KCapsBitHwDes (hardware
529 descriptors used). */
531 /** Size of individual descriptors. Use sizeof(SDmaPseudoDes) for
532 single-buffer and double-buffer controllers. */
534 /** Bitmask used when creating the hardware chunk storing the descriptor
535 pool. Used only for hardware descriptors. The access part must be
536 EMapAttrSupRw. If the chunk is cached and/or buffered, the PSL must
537 flush the data cache and/or drain the write buffer in InitHwDes()
538 and related functions.
539 @see TMappingAttributes
541 TUint iDesChunkAttribs;
544 TInt Create(const SCreateInfo& aInfo);
546 TInt ReserveSetOfDes(TInt aCount);
547 void ReleaseSetOfDes(TInt aCount);
548 void InitDes(const SDmaDesHdr& aHdr, TUint32 aSrc, TUint32 aDest, TInt aCount,
549 TUint aFlags, TUint32 aPslInfo, TUint32 aCookie);
550 inline SDmaPseudoDes& HdrToDes(const SDmaDesHdr& aHdr) const;
551 inline TAny* HdrToHwDes(const SDmaDesHdr& aHdr) const;
552 inline TUint32 DesLinToPhys(TAny* aDes) const;
554 inline void Signal();
556 TDmac(const SCreateInfo& aInfo);
560 Called by PIL when one fragment (single-buffer and double-buffer DMACs) or
561 list of fragments (scatter/gather DMAC) is to be transferred.
563 Called when initiating a new transfer and also, for double-buffer DMACs, for
564 configuring the next fragment to transfer while the current one is
565 ongoing. Must always be implemented by PSL.
566 @param aChannel The channel to use
567 @param aHdr Header associated with fragment to transfer
569 virtual void Transfer(const TDmaChannel& aChannel, const SDmaDesHdr& aHdr) = 0;
572 Called by PIL to suspend transfer on a given channel.
574 The suspension must occur synchronously as the PSL assumes the channel
575 is suspended after calling this function. Must always be implemented by PSL.
576 @param aChannel The channel to suspend
578 virtual void StopTransfer(const TDmaChannel& aChannel) = 0;
581 Called by PIL to check whether a DMA channel is idle.
582 @param aChannel The channel to test
583 @return ETrue if channel idle, EFalse if transferring.
585 virtual TBool IsIdle(const TDmaChannel& aChannel) = 0;
588 Called by PIL to retrieve from the PSL the maximum transfer size based on the
590 @param aChannel Channel to be used for the transfer
591 @param aFlags Bitmask characterising transfer
592 @param aPslInfo Cookie passed by client and used by PSL
593 @return 0 if invalid argument(s), -1 if transfer size not limited, the maximum
594 transfer size otherwise.
596 virtual TInt MaxTransferSize(TDmaChannel& aChannel, TUint aFlags, TUint32 aPslInfo) = 0;
599 Called by PIL to retrieve from the PSL the memory alignment mask based on the
600 parameters passed. Some DMA controllers impose alignment constraints on the base
601 address of memory buffers. This mask is AND'ed against memory addresses computed
602 during fragmentation.
603 @param aChannel Channel to be used for the transfer
604 @param aFlags Bitmask characterising transfer
605 @param aPslInfo Cookie passed by client and used by PSL
606 @return A value representing the alignment mask (e.g. 3 if buffer must be 4-byte aligned)
608 virtual TUint MemAlignMask(TDmaChannel& aChannel, TUint aFlags, TUint32 aPslInfo) = 0;
611 Called by PIL during fragmentation to initialise a hardware descriptor.
613 The PSL must assume the descriptor is the last in the chain and so set the
614 interrupt bit and set the next descriptor field to an end of chain marker.
615 Must be implemented by PSL if and only if the DMAC supports hardware
617 @param aHdr Header associated with hardware descriptor to initialise
618 @param aSrc Transfer source
619 @param aDest Transfer destination
620 @param aCount Number of bytes to transfer (<= max. size supported by DMAC)
621 @param aFlags Bitmask characterising transfer
622 @param aPslInfo Cookie passed by client and used by PSL
623 @param aCookie the channel selection cookie
624 @see DDmaRequest::Fragment
626 virtual void InitHwDes(const SDmaDesHdr& aHdr, TUint32 aSrc, TUint32 aDest, TInt aCount,
627 TUint aFlags, TUint32 aPslInfo, TUint32 aCookie);
630 Called by PIL, when fragmenting a request, to append a new hardware
631 descriptor to an existing descriptor chain.
633 Must clear the interrupt bit of the descriptor associated with aHdr.
634 Must be implemented by PSL if and only if the DMAC supports hardware descriptors.
635 @param aHdr Header associated with last fragment in chain
636 @param aNextHdr Header associated with fragment to append
638 virtual void ChainHwDes(const SDmaDesHdr& aHdr, const SDmaDesHdr& aNextHdr);
641 Called by PIL when queuing a new request while the channel is running.
643 Must append the first hardware descriptor of the new request to the last
644 descriptor in the existing chain. Must be implemented by PSL if and only if
645 the DMAC supports hardware descriptors.
646 @param aChannel The channel where the transfer takes place
647 @param aLastHdr Header associated with last hardware descriptor in chain
648 @param aNewHdr Header associated with first hardware descriptor in new request
650 virtual void AppendHwDes(const TDmaChannel& aChannel, const SDmaDesHdr& aLastHdr,
651 const SDmaDesHdr& aNewHdr);
654 Called by PIL when completing or cancelling a request to cause the PSL to unlink
655 the last item in the h/w descriptor chain from a subsequent chain that it was
656 possibly linked to. Must be implemented by the PSL if and only if the DMAC supports
657 hardware descriptors.
659 @param aChannel The channel where the request (and thus the descriptor) was queued
660 @param aHdr Header associated with last h/w descriptor in completed/cancelled chain
662 virtual void UnlinkHwDes(const TDmaChannel& aChannel, SDmaDesHdr& aHdr);
665 Called by test harness to force an error when the next fragment is
668 Must be implemented by the PSL only if possible.
669 @param aChannel The channel where the error is to occur.
670 @return KErrNone if implemented. The default PIL implementation returns
671 KErrNotSupported and the test harness knows how to deal with that.
673 virtual TInt FailNext(const TDmaChannel& aChannel);
676 Called by test harness to force the DMA controller to miss one or
679 Must be implemented by the PSL only if possible.
680 @param aChannel The channel where the error is to occur
681 @param aInterruptCount The number of interrupt to miss.
682 @return KErrNone if implemented. The default PIL implementation returns
683 KErrNotSupported and the test harness knows how to deal with that.
685 virtual TInt MissNextInterrupts(const TDmaChannel& aChannel, TInt aInterruptCount);
687 /** Function allowing platform-specific layer to extend channel API with
688 new channel-specific operations.
689 @param aChannel Channel to operate on
690 @param aCmd Command identifier. Negative values are reserved for Symbian use.
691 @param aArg PSL-specific
692 @return KErrNotSupported if aCmd is not supported. PSL-specific value otherwise.
693 @see TDmaChannel::Extension
695 virtual TInt Extension(TDmaChannel& aChannel, TInt aCmd, TAny* aArg);
698 static void HandleIsr(TDmaChannel& aChannel, TBool aIsComplete);
700 TInt AllocDesPool(TUint aAttribs);
703 NFastMutex iLock; // protect descriptor reservation and allocation
704 const TInt iMaxDesCount; // initial number of descriptors and headers
705 TInt iAvailDesCount; // current available number of descriptors and headers
706 SDmaDesHdr* iHdrPool; // descriptor header dynamic array
708 DPlatChunkHw* iHwDesChunk; // chunk for hardware descriptor pool
710 TAny* iDesPool; // hardware or pseudo descriptor dynamic array
711 const TInt iDesSize; // descriptor size in bytes
713 const TUint iCaps; /*< what is supported by DMA controller */
714 enum {KCapsBitHwDes = 1}; /*< hardware descriptors supported */
715 SDmaDesHdr* iFreeHdr; /*< head of unallocated descriptors linked list */
717 TBool IsValidHdr(const SDmaDesHdr* aHdr);
719 __DMA_DECLARE_INVARIANT
723 //////////////////////////////////////////////////////////////////////////////
726 Single-buffer DMA channel.
728 Can be instantiated or further derived by PSL. Not
729 intended to be instantiated by client device drivers.
734 class TDmaSbChannel : public TDmaChannel
737 virtual void DoQueue(DDmaRequest& aReq);
738 virtual void DoCancelAll();
739 virtual void DoDfc(DDmaRequest& aCurReq, SDmaDesHdr*& aCompletedHdr);
746 Double-buffer DMA channel.
748 Can be instantiated or further derived by PSL. Not
749 intended to be instantiated by client device drivers.
754 class TDmaDbChannel : public TDmaChannel
757 virtual void DoQueue(DDmaRequest& aReq);
758 virtual void DoCancelAll();
759 virtual void DoDfc(DDmaRequest& aCurReq, SDmaDesHdr*& aCompletedHdr);
761 enum { EIdle = 0, ETransferring, ETransferringLast } iState;
766 Scatter-gather DMA channel.
768 Can be instantiated or further derived by PSL.
769 Not intended to be instantiated by client device drivers.
774 class TDmaSgChannel : public TDmaChannel
777 virtual void DoQueue(DDmaRequest& aReq);
778 virtual void DoCancelAll();
779 virtual void DoUnlink(SDmaDesHdr& aHdr);
780 virtual void DoDfc(DDmaRequest& aCurReq, SDmaDesHdr*& aCompletedHdr);
786 //////////////////////////////////////////////////////////////////////////////
787 // INTERFACE WITH TEST HARNESS
788 //////////////////////////////////////////////////////////////////////////////
791 Set of information used by test harness.
798 /** Maximum transfer size in bytes for all channels (ie. the minimum of all channels' maximum size)*/
799 TInt iMaxTransferSize;
800 /** 3->Memory buffers must be 4-byte aligned, 7->8-byte aligned, ... */
802 /** Cookie to pass to DDmaRequest::Fragment for memory-memory transfer*/
803 TUint32 iMemMemPslInfo;
804 /** Number of test single-buffer channels */
806 /** Pointer to array containing single-buffer test channel ids */
807 TUint32* iSbChannels;
808 /** Number of test double-buffer channels */
810 /** Pointer to array containing double-buffer test channel ids */
811 TUint32* iDbChannels;
812 /** Number of test scatter-gather channels */
814 /** Pointer to array containing scatter-gather test channel ids */
815 TUint32* iSgChannels;
820 Provides access to test information structure stored in the PSL.
822 Must be implemented by the PSL.
827 IMPORT_C const TDmaTestInfo& DmaTestInfo();
830 //////////////////////////////////////////////////////////////////////////////
832 #include <drivers/dma_v1.inl>