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/dma_hai.h
|
sl@0
|
15 |
// DMA Framework - Symbian Hardware Abstraction Interface (SHAI).
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __DMA_HAI_H__
|
sl@0
|
20 |
#define __DMA_HAI_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <kernel/kern_priv.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
//////////////////////////////////////////////////////////////////////////////
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
/** Interface used by PIL to open and close DMA channels.
|
sl@0
|
30 |
|
sl@0
|
31 |
Must be implemented by the PSL.
|
sl@0
|
32 |
|
sl@0
|
33 |
@publishedPartner
|
sl@0
|
34 |
@released
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
class DmaChannelMgr
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
/** Opens a channel using a client-provided identifier.
|
sl@0
|
40 |
|
sl@0
|
41 |
This function must be implemented by the PSL.
|
sl@0
|
42 |
|
sl@0
|
43 |
@param aOpenId PSL-specific magic cookie passed by client. This could
|
sl@0
|
44 |
identify the channel exactly (by being just the channel number), or at
|
sl@0
|
45 |
least sufficiently (for example for use with a certain peripheral), or
|
sl@0
|
46 |
it may indicate some properties which the channel must possess. It may
|
sl@0
|
47 |
be set to zero always if all channels are equivalent.
|
sl@0
|
48 |
|
sl@0
|
49 |
@param aDynChannel ETrue if the Open call is for a dynamic channel. A
|
sl@0
|
50 |
dynamic channel is not exclusively reserved for just one client, and
|
sl@0
|
51 |
further Open calls for more dynamic channels should succeed as long as
|
sl@0
|
52 |
certain resources (but not including the number of available physical
|
sl@0
|
53 |
channels) are not exceeded. Different transfer requests on this dynamic
|
sl@0
|
54 |
channel may be serviced using different actual channels.
|
sl@0
|
55 |
|
sl@0
|
56 |
@param aPriority The desired channel priority as requested by the
|
sl@0
|
57 |
client. This may be an actual hardware priority or a
|
sl@0
|
58 |
platform-independent value. Not being able to satisfy the requested
|
sl@0
|
59 |
value is not a reason for the PSL to return NULL. This parameter may be
|
sl@0
|
60 |
ignored if aDynChannel is passed as ETrue. An overriding per-transfer
|
sl@0
|
61 |
priority may be requested by a client later via
|
sl@0
|
62 |
TDmaTransferArgs::iChannelPriority.
|
sl@0
|
63 |
@see SDmacCaps::iChannelPriorities
|
sl@0
|
64 |
@see TDmaPriority
|
sl@0
|
65 |
|
sl@0
|
66 |
@return Pointer to channel if available, NULL otherwise. It should not
|
sl@0
|
67 |
be NULL if the Open call was for a dynamic channel unless a processing
|
sl@0
|
68 |
error occurred.
|
sl@0
|
69 |
|
sl@0
|
70 |
@pre The PIL calls this function with a global fast mutex held to avoid
|
sl@0
|
71 |
race conditions.
|
sl@0
|
72 |
|
sl@0
|
73 |
@post If a non-NULL pointer is returned, the object pointed to has its
|
sl@0
|
74 |
iController, iDmacCaps, iPslId, iDynChannel and iPriority members set
|
sl@0
|
75 |
to valid states.
|
sl@0
|
76 |
|
sl@0
|
77 |
iController should point to the controller handling the
|
sl@0
|
78 |
channel.
|
sl@0
|
79 |
|
sl@0
|
80 |
iDmacCaps should point to a SDmacCaps structure containing values
|
sl@0
|
81 |
relating to this particular channel.
|
sl@0
|
82 |
|
sl@0
|
83 |
iPslId should contain a value uniquely identifying the channel - the
|
sl@0
|
84 |
PIL assigns this value later during request fragmentation to
|
sl@0
|
85 |
TDmaTransferArgs::iChannelCookie. It can be given any convenient value
|
sl@0
|
86 |
by the PSL (channel index, I/O port address, etc.).
|
sl@0
|
87 |
|
sl@0
|
88 |
iDynChannel should be set to ETrue by the PSL if a dynamic channel was
|
sl@0
|
89 |
requested and has been opened.
|
sl@0
|
90 |
|
sl@0
|
91 |
If applicable, iPriority should contain the actual hardware priority
|
sl@0
|
92 |
that has been configured or reserved. Otherwise it may be left at its
|
sl@0
|
93 |
default value TDmaPriority::KDmaPriorityNone.
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
static TDmaChannel* Open(TUint32 aOpenId, TBool aDynChannel, TUint aPriority);
|
sl@0
|
96 |
|
sl@0
|
97 |
/** Performs platform-specific operations when a channel is closed.
|
sl@0
|
98 |
|
sl@0
|
99 |
If aChannel was opened as a dynamic channel then this call is a sign
|
sl@0
|
100 |
that there is a client which does not intend to queue any further
|
sl@0
|
101 |
transfer requests via this channel.
|
sl@0
|
102 |
|
sl@0
|
103 |
This function must be implemented by the PSL but the implementation can
|
sl@0
|
104 |
be a no-op.
|
sl@0
|
105 |
|
sl@0
|
106 |
@param aChannel The channel to close
|
sl@0
|
107 |
|
sl@0
|
108 |
@pre The PIL calls this function with a global fast mutex held to avoid
|
sl@0
|
109 |
race conditions.
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
static void Close(TDmaChannel* aChannel);
|
sl@0
|
112 |
|
sl@0
|
113 |
/** Function allowing PSL to extend DMA API with new channel-independent
|
sl@0
|
114 |
operations.
|
sl@0
|
115 |
|
sl@0
|
116 |
This function must be implemented by the PSL.
|
sl@0
|
117 |
|
sl@0
|
118 |
@param aCmd Command identifier. Negative values are reserved for FW
|
sl@0
|
119 |
internal use.
|
sl@0
|
120 |
|
sl@0
|
121 |
@param aArg PSL-specific
|
sl@0
|
122 |
|
sl@0
|
123 |
@return KErrNotSupported if aCmd is not supported. PSL-specific value
|
sl@0
|
124 |
otherwise.
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
static TInt StaticExtension(TInt aCmd, TAny* aArg);
|
sl@0
|
127 |
|
sl@0
|
128 |
/** Acquires the channel manager lock. Called by the PIL before opening and
|
sl@0
|
129 |
closing a channel.
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
static void Wait();
|
sl@0
|
132 |
|
sl@0
|
133 |
/** Releases the channel manager lock. Called by the PIL after opening and
|
sl@0
|
134 |
closing a channel.
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
static void Signal();
|
sl@0
|
137 |
|
sl@0
|
138 |
private:
|
sl@0
|
139 |
/** Declared, defined, and called by PSL's DECLARE_STANDARD_EXTENSION(). */
|
sl@0
|
140 |
friend TInt InitExtension();
|
sl@0
|
141 |
|
sl@0
|
142 |
/** Must be called in the DMA DLL entry point. */
|
sl@0
|
143 |
static TInt Initialise();
|
sl@0
|
144 |
|
sl@0
|
145 |
static NFastMutex Lock;
|
sl@0
|
146 |
};
|
sl@0
|
147 |
|
sl@0
|
148 |
|
sl@0
|
149 |
//////////////////////////////////////////////////////////////////////////////
|
sl@0
|
150 |
|
sl@0
|
151 |
|
sl@0
|
152 |
/** Abstract base class representing a DMA controller.
|
sl@0
|
153 |
|
sl@0
|
154 |
The class has two purposes.
|
sl@0
|
155 |
|
sl@0
|
156 |
First, it is a container for channels, descriptors and descriptor headers.
|
sl@0
|
157 |
|
sl@0
|
158 |
Second, it exposes a set of virtual functions implemented by the PSL
|
sl@0
|
159 |
(platform-specific layer).
|
sl@0
|
160 |
|
sl@0
|
161 |
These functions are the main interfaces between the PIL
|
sl@0
|
162 |
(platform-independent layer) and PSL.
|
sl@0
|
163 |
|
sl@0
|
164 |
@publishedPartner
|
sl@0
|
165 |
@released
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
class TDmac
|
sl@0
|
168 |
{
|
sl@0
|
169 |
friend class DmaChannelMgr;
|
sl@0
|
170 |
|
sl@0
|
171 |
protected:
|
sl@0
|
172 |
/** Data required for creating a new instance */
|
sl@0
|
173 |
struct SCreateInfo
|
sl@0
|
174 |
{
|
sl@0
|
175 |
/** True if DMAC uses hardware descriptors (i.e. supports
|
sl@0
|
176 |
scatter/gather mode).
|
sl@0
|
177 |
*/
|
sl@0
|
178 |
TBool iCapsHwDes;
|
sl@0
|
179 |
/** Initial maximum number of descriptors and headers (shared by all
|
sl@0
|
180 |
channels) to be allocated by the PIL. If at run time more
|
sl@0
|
181 |
descriptors are needed then they will be dynamically allocated and
|
sl@0
|
182 |
added to the available pool.
|
sl@0
|
183 |
|
sl@0
|
184 |
The PSL may consider a number of factors when providing this
|
sl@0
|
185 |
initial value, such as the number of channels on this controller,
|
sl@0
|
186 |
the maximum transfer size per descriptor and also likely usage
|
sl@0
|
187 |
scenarios for the platform or device (number of drivers using DMA,
|
sl@0
|
188 |
their traffic patterns, simultaneity of operations, etc.).
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
TInt iDesCount;
|
sl@0
|
191 |
/** Size of individual descriptors. Use sizeof(TDmaTransferArgs) for
|
sl@0
|
192 |
single-buffer and double-buffer (i.e. non-s/g) controllers.
|
sl@0
|
193 |
*/
|
sl@0
|
194 |
TInt iDesSize;
|
sl@0
|
195 |
/** Bitmask used when creating the memory chunk storing the descriptor
|
sl@0
|
196 |
pool. Used only for hardware descriptors.
|
sl@0
|
197 |
|
sl@0
|
198 |
The access part must be EMapAttrSupRw. If the chunk is cached
|
sl@0
|
199 |
and/or buffered, the PSL must flush the data cache and/or drain the
|
sl@0
|
200 |
write buffer in InitHwDes() and related functions.
|
sl@0
|
201 |
|
sl@0
|
202 |
The physical start address of the chunk will always be MMU page
|
sl@0
|
203 |
size aligned.
|
sl@0
|
204 |
|
sl@0
|
205 |
@see TMappingAttributes
|
sl@0
|
206 |
*/
|
sl@0
|
207 |
TUint iDesChunkAttribs;
|
sl@0
|
208 |
};
|
sl@0
|
209 |
|
sl@0
|
210 |
/** Base class constructor. */
|
sl@0
|
211 |
TDmac(const SCreateInfo& aInfo);
|
sl@0
|
212 |
|
sl@0
|
213 |
/** Base class 2nd-phase constructor. */
|
sl@0
|
214 |
TInt Create(const SCreateInfo& aInfo);
|
sl@0
|
215 |
|
sl@0
|
216 |
public:
|
sl@0
|
217 |
/** Base class virtual destructor. */
|
sl@0
|
218 |
virtual ~TDmac();
|
sl@0
|
219 |
|
sl@0
|
220 |
/** Allocates a number of headers (and hence also descriptors) from the
|
sl@0
|
221 |
header/descriptor pools. Called by the PIL but may also be used by the
|
sl@0
|
222 |
PSL.
|
sl@0
|
223 |
*/
|
sl@0
|
224 |
TInt ReserveSetOfDes(TInt aCount);
|
sl@0
|
225 |
|
sl@0
|
226 |
/** Returns previously allocated headers (and hence also descriptors) to
|
sl@0
|
227 |
the header/descriptor pools. Called by the PIL but may also be used by
|
sl@0
|
228 |
the PSL.
|
sl@0
|
229 |
*/
|
sl@0
|
230 |
void ReleaseSetOfDes(TInt aCount);
|
sl@0
|
231 |
|
sl@0
|
232 |
/** Called by the PIL during request fragmentation to fill a descriptor or
|
sl@0
|
233 |
pseudo descriptor with transfer arguments.
|
sl@0
|
234 |
*/
|
sl@0
|
235 |
TInt InitDes(const SDmaDesHdr& aHdr, const TDmaTransferArgs& aTransferArgs);
|
sl@0
|
236 |
|
sl@0
|
237 |
/** Called by the PIL in TDmaChannel::IsrRedoRequest() if any of the
|
sl@0
|
238 |
latter's arguments is non-zero.
|
sl@0
|
239 |
*/
|
sl@0
|
240 |
TInt UpdateDes(const SDmaDesHdr& aHdr, TUint32 aSrcAddr, TUint32 aDstAddr,
|
sl@0
|
241 |
TUint aTransferCount, TUint32 aPslRequestInfo);
|
sl@0
|
242 |
|
sl@0
|
243 |
/** Returns a reference to the associated pseudo descriptor for a given
|
sl@0
|
244 |
descriptor header. For use by PIL and PSL.
|
sl@0
|
245 |
*/
|
sl@0
|
246 |
inline TDmaTransferArgs& HdrToDes(const SDmaDesHdr& aHdr) const;
|
sl@0
|
247 |
|
sl@0
|
248 |
/** Returns a reference to the associated hardware descriptor for a given
|
sl@0
|
249 |
descriptor header. For use by PIL and PSL.
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
inline TAny* HdrToHwDes(const SDmaDesHdr& aHdr) const;
|
sl@0
|
252 |
|
sl@0
|
253 |
/** Returns the physical address of the hardware descriptor
|
sl@0
|
254 |
pointed to by aDes. For use by PIL and PSL.
|
sl@0
|
255 |
*/
|
sl@0
|
256 |
inline TUint32 HwDesLinToPhys(TAny* aDes) const;
|
sl@0
|
257 |
|
sl@0
|
258 |
/** Called by the PIL to acquire the controller lock which protects the
|
sl@0
|
259 |
header and descriptor pools.
|
sl@0
|
260 |
*/
|
sl@0
|
261 |
inline void Wait();
|
sl@0
|
262 |
|
sl@0
|
263 |
/** Called by the PIL to release the controller lock which protects the
|
sl@0
|
264 |
header and descriptor pools.
|
sl@0
|
265 |
*/
|
sl@0
|
266 |
inline void Signal();
|
sl@0
|
267 |
|
sl@0
|
268 |
public:
|
sl@0
|
269 |
/** Called by PIL when one fragment (single-buffer and double-buffer DMACs)
|
sl@0
|
270 |
or list of fragments (scatter/gather DMAC) is to be transferred.
|
sl@0
|
271 |
|
sl@0
|
272 |
Called when initiating a new transfer and also, for double-buffer
|
sl@0
|
273 |
DMACs, for configuring the next fragment to transfer while the current
|
sl@0
|
274 |
one is ongoing.
|
sl@0
|
275 |
|
sl@0
|
276 |
The function must be implemented by the PSL if
|
sl@0
|
277 |
SCreateInfo::iCaps::iAsymHwDescriptors is reported as false.
|
sl@0
|
278 |
|
sl@0
|
279 |
@note This function may be called in thread or ISR context by the PIL
|
sl@0
|
280 |
|
sl@0
|
281 |
@param aChannel The channel to use.
|
sl@0
|
282 |
@param aHdr Header associated with fragment to transfer.
|
sl@0
|
283 |
*/
|
sl@0
|
284 |
virtual void Transfer(const TDmaChannel& aChannel, const SDmaDesHdr& aHdr);
|
sl@0
|
285 |
|
sl@0
|
286 |
/** Called by PIL when two lists of fragments (scatter/gather DMAC with
|
sl@0
|
287 |
asymmetrical linked-list capability) are to be transferred.
|
sl@0
|
288 |
|
sl@0
|
289 |
Called when initiating a new transfer.
|
sl@0
|
290 |
|
sl@0
|
291 |
The function must be implemented by the PSL if
|
sl@0
|
292 |
SDmaCaps::iAsymHwDescriptors is reported as true.
|
sl@0
|
293 |
|
sl@0
|
294 |
@note This function may be called in thread or ISR context by the PIL
|
sl@0
|
295 |
|
sl@0
|
296 |
@param aChannel The channel to use.
|
sl@0
|
297 |
@param aSrcHdr Header associated with descriptor to transfer on the
|
sl@0
|
298 |
source side.
|
sl@0
|
299 |
@param aDstHdr Header associated with descriptor to transfer on the
|
sl@0
|
300 |
destination side.
|
sl@0
|
301 |
*/
|
sl@0
|
302 |
virtual void Transfer(const TDmaChannel& aChannel, const SDmaDesHdr& aSrcHdr,
|
sl@0
|
303 |
const SDmaDesHdr& aDstHdr);
|
sl@0
|
304 |
|
sl@0
|
305 |
/** Called by PIL to stop a transfer on a given channel.
|
sl@0
|
306 |
|
sl@0
|
307 |
The stopping must occur synchronously as the PIL assumes the channel
|
sl@0
|
308 |
is halted after calling this function. A channel stopped via this
|
sl@0
|
309 |
function is not intended to be resumed. Function must always be
|
sl@0
|
310 |
implemented by the PSL.
|
sl@0
|
311 |
|
sl@0
|
312 |
@param aChannel The channel to stop
|
sl@0
|
313 |
@post The channel will be idle
|
sl@0
|
314 |
@post No interrupt will occur from this channel until a new
|
sl@0
|
315 |
request is queued.
|
sl@0
|
316 |
*/
|
sl@0
|
317 |
virtual void StopTransfer(const TDmaChannel& aChannel) = 0;
|
sl@0
|
318 |
|
sl@0
|
319 |
/** Called by PIL to pause (suspend) a transfer on a given channel.
|
sl@0
|
320 |
|
sl@0
|
321 |
A paused channel transfer must be able to be resumed by calling
|
sl@0
|
322 |
ResumeTransfer().
|
sl@0
|
323 |
|
sl@0
|
324 |
The function must be implemented by the PSL if
|
sl@0
|
325 |
SDmacCaps::iChannelPauseAndResume is reported as true.
|
sl@0
|
326 |
|
sl@0
|
327 |
@return KErrNone if the transfer has been paused successfully,
|
sl@0
|
328 |
KErrCompletion if the transfer was already paused, KErrGeneral
|
sl@0
|
329 |
if a general error occurred preventing a successful outcome.
|
sl@0
|
330 |
|
sl@0
|
331 |
@post No interrupt will occur from this channel until it is
|
sl@0
|
332 |
resumed.
|
sl@0
|
333 |
*/
|
sl@0
|
334 |
virtual TInt PauseTransfer(const TDmaChannel& aChannel);
|
sl@0
|
335 |
|
sl@0
|
336 |
/** Called by PIL to resume a paused (suspended) transfer on a given
|
sl@0
|
337 |
channel.
|
sl@0
|
338 |
|
sl@0
|
339 |
Resume() can be called when the transfer is paused as a result of a
|
sl@0
|
340 |
previous call to PauseTransfer() or because the DMAC has encountered a
|
sl@0
|
341 |
Pause bit in a H/W descriptor.
|
sl@0
|
342 |
|
sl@0
|
343 |
The function must be implemented by the PSL if
|
sl@0
|
344 |
SDmacCaps::iChannelPauseAndResume is reported as true.
|
sl@0
|
345 |
|
sl@0
|
346 |
@return KErrNone if the transfer has been resumed successfully,
|
sl@0
|
347 |
KErrCompletion if there was no paused transfer, KErrGeneral
|
sl@0
|
348 |
if a general error occurred preventing a successful outcome.
|
sl@0
|
349 |
*/
|
sl@0
|
350 |
virtual TInt ResumeTransfer(const TDmaChannel& aChannel);
|
sl@0
|
351 |
|
sl@0
|
352 |
/** Called by PIL to check whether a DMA channel is idle.
|
sl@0
|
353 |
|
sl@0
|
354 |
'Idle' here means that the channel is ultimately stopped, for example
|
sl@0
|
355 |
because the transfer has finished, or an error was encountered, or it
|
sl@0
|
356 |
was manually stopped, but not because it was manually suspended (aka
|
sl@0
|
357 |
'paused'), or it is waiting for a request line assertion to start the
|
sl@0
|
358 |
transfer.
|
sl@0
|
359 |
|
sl@0
|
360 |
@param aChannel The channel to test
|
sl@0
|
361 |
|
sl@0
|
362 |
@return ETrue if channel idle, EFalse if transferring.
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
virtual TBool IsIdle(const TDmaChannel& aChannel) = 0;
|
sl@0
|
365 |
|
sl@0
|
366 |
/** Called by PIL to retrieve from the PSL the maximum transfer length
|
sl@0
|
367 |
based on the parameters passed.
|
sl@0
|
368 |
|
sl@0
|
369 |
@param aChannel Channel to be used for the transfer
|
sl@0
|
370 |
@param aSrcFlags Bitmask characterising transfer source
|
sl@0
|
371 |
@see TDmaTransferArgs::iSrcConfig::iFlags
|
sl@0
|
372 |
@param aDstFlags Bitmask characterising transfer destination
|
sl@0
|
373 |
@see TDmaTransferArgs::iDstConfig::iFlags
|
sl@0
|
374 |
@param aPslInfo Cookie passed by client and used by the PSL
|
sl@0
|
375 |
@see TDmaTransferArgs::iPslRequestInfo
|
sl@0
|
376 |
|
sl@0
|
377 |
@return 0 if transfer length is not limited, the maximum transfer
|
sl@0
|
378 |
length in bytes otherwise.
|
sl@0
|
379 |
*/
|
sl@0
|
380 |
virtual TUint MaxTransferLength(TDmaChannel& aChannel, TUint aSrcFlags,
|
sl@0
|
381 |
TUint aDstFlags, TUint32 aPslInfo) = 0;
|
sl@0
|
382 |
|
sl@0
|
383 |
/** Called by PIL to retrieve from the PSL the memory alignment mask based
|
sl@0
|
384 |
on the parameters passed. Some DMA controllers impose alignment
|
sl@0
|
385 |
constraints on the base address of memory buffers. This mask is AND'ed
|
sl@0
|
386 |
against memory addresses computed during fragmentation.
|
sl@0
|
387 |
|
sl@0
|
388 |
The PIL will call this function separately for source and destination.
|
sl@0
|
389 |
|
sl@0
|
390 |
An assumption is that the PSL doesn't need to know if a call to this
|
sl@0
|
391 |
function is for the source or the destination side, i.e. both ports
|
sl@0
|
392 |
are, as far as the alignment is concerned, equivalent. All that matters
|
sl@0
|
393 |
are the values of the relevant configuration parameters.
|
sl@0
|
394 |
|
sl@0
|
395 |
Another assumption is that the alignment requirement for a port on a
|
sl@0
|
396 |
DMAC with potentially different values for source and destination does
|
sl@0
|
397 |
not depend on the configuration of the respective other port.
|
sl@0
|
398 |
|
sl@0
|
399 |
@param aChannel Channel used for the transfer
|
sl@0
|
400 |
@param aTargetFlags Bitmask characterising transfer source or
|
sl@0
|
401 |
destination
|
sl@0
|
402 |
@see TDmaTransferArgs::iSrcConfig::iFlags
|
sl@0
|
403 |
@see TDmaTransferArgs::iDstConfig::iFlags
|
sl@0
|
404 |
@param aElementSize Element size used for the transfer. May be zero if
|
sl@0
|
405 |
not known or 'don't care'.
|
sl@0
|
406 |
@param aPslInfo Cookie passed by client and used by the PSL
|
sl@0
|
407 |
@see TDmaTransferArgs::iPslRequestInfo
|
sl@0
|
408 |
|
sl@0
|
409 |
@return A value representing the alignment mask (e.g. 3 if buffer must
|
sl@0
|
410 |
be 4-byte aligned)
|
sl@0
|
411 |
*/
|
sl@0
|
412 |
virtual TUint AddressAlignMask(TDmaChannel& aChannel, TUint aTargetFlags,
|
sl@0
|
413 |
TUint aElementSize, TUint32 aPslInfo) = 0;
|
sl@0
|
414 |
|
sl@0
|
415 |
/** Called by PIL during fragmentation to initialise a hardware descriptor.
|
sl@0
|
416 |
|
sl@0
|
417 |
The PSL must assume the descriptor is the last in the chain and so set
|
sl@0
|
418 |
the interrupt bit and set the next descriptor field to an end of chain
|
sl@0
|
419 |
marker.
|
sl@0
|
420 |
|
sl@0
|
421 |
The function must be implemented by the PSL if and only if the DMAC
|
sl@0
|
422 |
supports hardware descriptors and SDmaCaps::iAsymHwDescriptors is
|
sl@0
|
423 |
reported as false.
|
sl@0
|
424 |
|
sl@0
|
425 |
@param aHdr Header associated with the hardware descriptor to
|
sl@0
|
426 |
initialise
|
sl@0
|
427 |
@param aTransferArgs The transfer parameters for this descriptor
|
sl@0
|
428 |
|
sl@0
|
429 |
@return KErrNone if the descriptor was successfully initialized,
|
sl@0
|
430 |
KErrArgument if any of the transfer arguments were detected to be
|
sl@0
|
431 |
invalid, KErrGeneral if a general error occurred preventing a
|
sl@0
|
432 |
successful outcome.
|
sl@0
|
433 |
*/
|
sl@0
|
434 |
virtual TInt InitHwDes(const SDmaDesHdr& aHdr, const TDmaTransferArgs& aTransferArgs);
|
sl@0
|
435 |
|
sl@0
|
436 |
/** Called by PIL during fragmentation to initialise a hardware descriptor
|
sl@0
|
437 |
on the source side of an asymmetric linked list.
|
sl@0
|
438 |
|
sl@0
|
439 |
The function must be implemented by the PSL if
|
sl@0
|
440 |
SDmaCaps::iAsymHwDescriptors is reported as true.
|
sl@0
|
441 |
|
sl@0
|
442 |
@param aHdr Header associated with the hardware descriptor to
|
sl@0
|
443 |
initialise
|
sl@0
|
444 |
@param aTransferArgs The transfer parameters for this descriptor. Only
|
sl@0
|
445 |
the elements relating to the source side should be relevant to the
|
sl@0
|
446 |
implementation.
|
sl@0
|
447 |
|
sl@0
|
448 |
@return KErrNone if the descriptor was successfully initialized,
|
sl@0
|
449 |
KErrArgument if any of the transfer arguments were detected to be
|
sl@0
|
450 |
invalid, KErrGeneral if a general error occurred preventing a
|
sl@0
|
451 |
successful outcome.
|
sl@0
|
452 |
*/
|
sl@0
|
453 |
virtual TInt InitSrcHwDes(const SDmaDesHdr& aHdr, const TDmaTransferArgs& aTransferArgs);
|
sl@0
|
454 |
|
sl@0
|
455 |
/** Called by PIL during fragmentation to initialise a hardware descriptor
|
sl@0
|
456 |
on the destination side of an asymmetric linked list.
|
sl@0
|
457 |
|
sl@0
|
458 |
The function must be implemented by the PSL if
|
sl@0
|
459 |
SDmaCaps::iAsymHwDescriptors is reported as true.
|
sl@0
|
460 |
|
sl@0
|
461 |
@param aHdr Header associated with the hardware descriptor to
|
sl@0
|
462 |
initialise
|
sl@0
|
463 |
@param aTransferArgs The transfer parameters for this descriptor. Only
|
sl@0
|
464 |
the elements relating to the destination side should be relevant to the
|
sl@0
|
465 |
implementation.
|
sl@0
|
466 |
|
sl@0
|
467 |
@return KErrNone if the descriptor was successfully initialized,
|
sl@0
|
468 |
KErrArgument if any of the transfer arguments were detected to be
|
sl@0
|
469 |
invalid, KErrGeneral if a general error occurred preventing a
|
sl@0
|
470 |
successful outcome.
|
sl@0
|
471 |
*/
|
sl@0
|
472 |
virtual TInt InitDstHwDes(const SDmaDesHdr& aHdr, const TDmaTransferArgs& aTransferArgs);
|
sl@0
|
473 |
|
sl@0
|
474 |
/** Called by the PIL in ISR context to change specific fields in a
|
sl@0
|
475 |
hardware descriptor.
|
sl@0
|
476 |
|
sl@0
|
477 |
The function must be implemented by the PSL if and only if the DMAC
|
sl@0
|
478 |
supports hardware descriptors and SDmaCaps::iAsymHwDescriptors is
|
sl@0
|
479 |
reported as false.
|
sl@0
|
480 |
|
sl@0
|
481 |
@param aHdr Header associated with the hardware descriptor to be
|
sl@0
|
482 |
updated
|
sl@0
|
483 |
@param aSrcAddr @see TDmaTransferArgs::iSrcConfig::iAddr
|
sl@0
|
484 |
@param aDstAddr @see TDmaTransferArgs::iDstConfig::iAddr
|
sl@0
|
485 |
@param aTransferCount @see TDmaTransferArgs::iTransferCount
|
sl@0
|
486 |
@param aPslRequestInfo @see TDmaTransferArgs::iPslRequestInfo
|
sl@0
|
487 |
|
sl@0
|
488 |
Since Epoc::LinearToPhysical() cannot be called in ISR context the
|
sl@0
|
489 |
addresses passed into this function are always physical ones, i.e.
|
sl@0
|
490 |
TDmaTransferFlags::KDmaPhysAddr is implied.
|
sl@0
|
491 |
|
sl@0
|
492 |
@return KErrNone if the descriptor was successfully modified,
|
sl@0
|
493 |
KErrArgument if any of the transfer arguments were detected to be
|
sl@0
|
494 |
invalid, KErrGeneral if a general error occurred preventing a
|
sl@0
|
495 |
successful outcome.
|
sl@0
|
496 |
*/
|
sl@0
|
497 |
virtual TInt UpdateHwDes(const SDmaDesHdr& aHdr, TUint32 aSrcAddr, TUint32 aDstAddr,
|
sl@0
|
498 |
TUint aTransferCount, TUint32 aPslRequestInfo);
|
sl@0
|
499 |
|
sl@0
|
500 |
/** Called by the PIL in ISR context to change specific fields in a
|
sl@0
|
501 |
hardware descriptor.
|
sl@0
|
502 |
|
sl@0
|
503 |
The function must be implemented by the PSL if
|
sl@0
|
504 |
SDmaCaps::iAsymHwDescriptors is reported as true.
|
sl@0
|
505 |
|
sl@0
|
506 |
@param aHdr Header associated with the hardware descriptor to be
|
sl@0
|
507 |
updated
|
sl@0
|
508 |
@param aSrcAddr @see TDmaTransferArgs::iSrcConfig::iAddr
|
sl@0
|
509 |
@param aTransferCount @see TDmaTransferArgs::iTransferCount
|
sl@0
|
510 |
@param aPslRequestInfo @see TDmaTransferArgs::iPslRequestInfo
|
sl@0
|
511 |
|
sl@0
|
512 |
Since Epoc::LinearToPhysical() cannot be called in ISR context the
|
sl@0
|
513 |
address passed into this function is always a physical ones, i.e.
|
sl@0
|
514 |
TDmaTransferFlags::KDmaPhysAddr is implied.
|
sl@0
|
515 |
|
sl@0
|
516 |
@return KErrNone if the descriptor was successfully modified,
|
sl@0
|
517 |
KErrArgument if any of the transfer arguments were detected to be
|
sl@0
|
518 |
invalid, KErrGeneral if a general error occurred preventing a
|
sl@0
|
519 |
successful outcome.
|
sl@0
|
520 |
*/
|
sl@0
|
521 |
virtual TInt UpdateSrcHwDes(const SDmaDesHdr& aHdr, TUint32 aSrcAddr,
|
sl@0
|
522 |
TUint aTransferCount, TUint32 aPslRequestInfo);
|
sl@0
|
523 |
|
sl@0
|
524 |
/** Called by the PIL in ISR context to change specific fields in a
|
sl@0
|
525 |
hardware descriptor.
|
sl@0
|
526 |
|
sl@0
|
527 |
The function must be implemented by the PSL if
|
sl@0
|
528 |
SDmaCaps::iAsymHwDescriptors is reported as true.
|
sl@0
|
529 |
|
sl@0
|
530 |
@param aHdr Header associated with the hardware descriptor to be
|
sl@0
|
531 |
updated
|
sl@0
|
532 |
@param aDstAddr @see TDmaTransferArgs::iDstConfig::iAddr
|
sl@0
|
533 |
@param aTransferCount @see TDmaTransferArgs::iTransferCount
|
sl@0
|
534 |
@param aPslRequestInfo @see TDmaTransferArgs::iPslRequestInfo
|
sl@0
|
535 |
|
sl@0
|
536 |
Since Epoc::LinearToPhysical() cannot be called in ISR context the
|
sl@0
|
537 |
address passed into this function is always a physical ones, i.e.
|
sl@0
|
538 |
TDmaTransferFlags::KDmaPhysAddr is implied.
|
sl@0
|
539 |
|
sl@0
|
540 |
@return KErrNone if the descriptor was successfully modified,
|
sl@0
|
541 |
KErrArgument if any of the transfer arguments were detected to be
|
sl@0
|
542 |
invalid, KErrGeneral if a general error occurred preventing a
|
sl@0
|
543 |
successful outcome.
|
sl@0
|
544 |
*/
|
sl@0
|
545 |
virtual TInt UpdateDstHwDes(const SDmaDesHdr& aHdr, TUint32 aDstAddr,
|
sl@0
|
546 |
TUint aTransferCount, TUint32 aPslRequestInfo);
|
sl@0
|
547 |
|
sl@0
|
548 |
/** Called by PIL, when fragmenting a request, to append a new hardware
|
sl@0
|
549 |
descriptor to an existing descriptor chain. May also be called by
|
sl@0
|
550 |
clients who wish to create their own descriptor chains.
|
sl@0
|
551 |
|
sl@0
|
552 |
Must clear the interrupt bit of the descriptor associated with aHdr.
|
sl@0
|
553 |
|
sl@0
|
554 |
The function must be implemented by the PSL if and only if the DMAC
|
sl@0
|
555 |
supports hardware descriptors.
|
sl@0
|
556 |
|
sl@0
|
557 |
@param aHdr Header associated with last fragment in chain
|
sl@0
|
558 |
@param aNextHdr Header associated with fragment to append
|
sl@0
|
559 |
*/
|
sl@0
|
560 |
virtual void ChainHwDes(const SDmaDesHdr& aHdr, const SDmaDesHdr& aNextHdr);
|
sl@0
|
561 |
|
sl@0
|
562 |
/** Called by PIL when queuing a new request while the channel is running.
|
sl@0
|
563 |
|
sl@0
|
564 |
Must append the first hardware descriptor of the new request to the
|
sl@0
|
565 |
last descriptor in the existing chain.
|
sl@0
|
566 |
|
sl@0
|
567 |
The function must be implemented by the PSL if and only if the DMAC
|
sl@0
|
568 |
supports hardware descriptors.
|
sl@0
|
569 |
|
sl@0
|
570 |
@param aChannel The channel where the transfer takes place
|
sl@0
|
571 |
@param aLastHdr Header associated with last hardware descriptor in
|
sl@0
|
572 |
chain
|
sl@0
|
573 |
@param aNewHdr Header associated with first hardware descriptor in new
|
sl@0
|
574 |
request
|
sl@0
|
575 |
*/
|
sl@0
|
576 |
virtual void AppendHwDes(const TDmaChannel& aChannel, const SDmaDesHdr& aLastHdr,
|
sl@0
|
577 |
const SDmaDesHdr& aNewHdr);
|
sl@0
|
578 |
|
sl@0
|
579 |
/** Called by PIL when queuing a new request while the channel is running.
|
sl@0
|
580 |
|
sl@0
|
581 |
Must append the first hardware descriptor of the new request to the
|
sl@0
|
582 |
last descriptor in the existing chain.
|
sl@0
|
583 |
|
sl@0
|
584 |
The function must be implemented by the PSL if
|
sl@0
|
585 |
SDmaCaps::iAsymHwDescriptors is reported as true.
|
sl@0
|
586 |
|
sl@0
|
587 |
@param aChannel The channel where the transfer takes place
|
sl@0
|
588 |
@param aSrcLastHdr Header associated with the last descriptor in the
|
sl@0
|
589 |
source side chain
|
sl@0
|
590 |
@param aSrcNewHdr Header associated with the first source side
|
sl@0
|
591 |
descriptor of the new request
|
sl@0
|
592 |
@param aDstLastHdr Header associated with the last descriptor in the
|
sl@0
|
593 |
destination side chain
|
sl@0
|
594 |
@param aDstNewHdr Header associated with the first destination side
|
sl@0
|
595 |
descriptor of the new request
|
sl@0
|
596 |
*/
|
sl@0
|
597 |
virtual void AppendHwDes(const TDmaChannel& aChannel,
|
sl@0
|
598 |
const SDmaDesHdr& aSrcLastHdr, const SDmaDesHdr& aSrcNewHdr,
|
sl@0
|
599 |
const SDmaDesHdr& aDstLastHdr, const SDmaDesHdr& aDstNewHdr);
|
sl@0
|
600 |
|
sl@0
|
601 |
/** Called by PIL when completing or cancelling a request to cause the PSL
|
sl@0
|
602 |
to unlink the last item in the h/w descriptor chain from a subsequent
|
sl@0
|
603 |
chain that it was possibly linked to.
|
sl@0
|
604 |
|
sl@0
|
605 |
The function must be implemented by the PSL if and only if the DMAC
|
sl@0
|
606 |
supports hardware descriptors.
|
sl@0
|
607 |
|
sl@0
|
608 |
@param aChannel The channel where the request (and thus the descriptor)
|
sl@0
|
609 |
was queued
|
sl@0
|
610 |
@param aHdr Header associated with last h/w descriptor in
|
sl@0
|
611 |
completed / cancelled chain
|
sl@0
|
612 |
*/
|
sl@0
|
613 |
virtual void UnlinkHwDes(const TDmaChannel& aChannel, SDmaDesHdr& aHdr);
|
sl@0
|
614 |
|
sl@0
|
615 |
/** Called by PIL when freeing descriptors back to the shared pool in
|
sl@0
|
616 |
FreeDesList(). The PSL inside ClearHwDes() can clear the contents of
|
sl@0
|
617 |
the h/w descriptor.
|
sl@0
|
618 |
|
sl@0
|
619 |
This may be necessary if the PSL implementation uses the h/w descriptor
|
sl@0
|
620 |
as another header which in turn points to the actual DMA h/w descriptor
|
sl@0
|
621 |
(aka LLI).
|
sl@0
|
622 |
|
sl@0
|
623 |
The function may be implemented by the PSL if the DMAC supports
|
sl@0
|
624 |
hardware descriptors.
|
sl@0
|
625 |
|
sl@0
|
626 |
@param aHdr Header associated with the h/w descriptor being freed.
|
sl@0
|
627 |
*/
|
sl@0
|
628 |
virtual void ClearHwDes(const SDmaDesHdr& aHdr);
|
sl@0
|
629 |
|
sl@0
|
630 |
/** Called by PIL to logically link two physical channels.
|
sl@0
|
631 |
|
sl@0
|
632 |
The function must be implemented by the PSL if the DMAC supports
|
sl@0
|
633 |
logical channel linking.
|
sl@0
|
634 |
|
sl@0
|
635 |
@see SDmacCaps::iChannelLinking
|
sl@0
|
636 |
|
sl@0
|
637 |
@param a1stChannel The channel which is to be linked to another channel
|
sl@0
|
638 |
@param a2ndChannel The channel the first one is to be linked to
|
sl@0
|
639 |
|
sl@0
|
640 |
@return KErrNone if the two channels have been linked successfully,
|
sl@0
|
641 |
KErrCompletion if a1stChannel was already linked to a2ndChannel,
|
sl@0
|
642 |
KErrArgument if a1stChannel was already linked to a different channel,
|
sl@0
|
643 |
KErrGeneral if a general error occurred preventing a successful
|
sl@0
|
644 |
outcome. The default PIL implementation returns KErrNotSupported.
|
sl@0
|
645 |
*/
|
sl@0
|
646 |
virtual TInt LinkChannels(TDmaChannel& a1stChannel, TDmaChannel& a2ndChannel);
|
sl@0
|
647 |
|
sl@0
|
648 |
/** Called by PIL to logically unlink a physical channel from its linked-to
|
sl@0
|
649 |
successor.
|
sl@0
|
650 |
|
sl@0
|
651 |
The function must be implemented by the PSL if the DMAC supports
|
sl@0
|
652 |
logical channel linking.
|
sl@0
|
653 |
|
sl@0
|
654 |
@see SDmacCaps::iChannelLinking
|
sl@0
|
655 |
|
sl@0
|
656 |
@param aChannel The channel which is to be unlinked from its successor
|
sl@0
|
657 |
|
sl@0
|
658 |
@return KErrNone if the channel has been unlinked successfully,
|
sl@0
|
659 |
KErrCompletion if the channel was not linked to another channel,
|
sl@0
|
660 |
KErrGeneral if a general error occurred preventing a successful
|
sl@0
|
661 |
outcome. The default PIL implementation returns KErrNotSupported.
|
sl@0
|
662 |
*/
|
sl@0
|
663 |
virtual TInt UnlinkChannel(TDmaChannel& aChannel);
|
sl@0
|
664 |
|
sl@0
|
665 |
/** Called by a test harness to force an error when the next fragment is
|
sl@0
|
666 |
transferred.
|
sl@0
|
667 |
|
sl@0
|
668 |
Must be implemented by the PSL only if possible.
|
sl@0
|
669 |
|
sl@0
|
670 |
@param aChannel The channel where the error is to occur.
|
sl@0
|
671 |
|
sl@0
|
672 |
@return KErrNone if implemented. The default PIL implementation
|
sl@0
|
673 |
returns KErrNotSupported.
|
sl@0
|
674 |
*/
|
sl@0
|
675 |
virtual TInt FailNext(const TDmaChannel& aChannel);
|
sl@0
|
676 |
|
sl@0
|
677 |
/** Called by a test harness to force the DMA controller to miss one or
|
sl@0
|
678 |
more interrupts.
|
sl@0
|
679 |
|
sl@0
|
680 |
The function must be implemented by the PSL only if possible.
|
sl@0
|
681 |
|
sl@0
|
682 |
@param aChannel The channel where the error is to occur
|
sl@0
|
683 |
@param aInterruptCount The number of interrupt to miss.
|
sl@0
|
684 |
|
sl@0
|
685 |
@return KErrNone if implemented. The default PIL implementation
|
sl@0
|
686 |
returns KErrNotSupported.
|
sl@0
|
687 |
*/
|
sl@0
|
688 |
virtual TInt MissNextInterrupts(const TDmaChannel& aChannel, TInt aInterruptCount);
|
sl@0
|
689 |
|
sl@0
|
690 |
/** Function allowing platform-specific layer to extend channel API with
|
sl@0
|
691 |
new channel-specific operations.
|
sl@0
|
692 |
|
sl@0
|
693 |
@see TDmaChannel::ChannelExtension
|
sl@0
|
694 |
|
sl@0
|
695 |
@param aChannel Channel to operate on
|
sl@0
|
696 |
@param aCmd Command identifier. Negative values are reserved for use by
|
sl@0
|
697 |
Nokia.
|
sl@0
|
698 |
@param aArg PSL-specific argument
|
sl@0
|
699 |
|
sl@0
|
700 |
@return KErrNotSupported if aCmd is not supported. PSL-specific value
|
sl@0
|
701 |
otherwise.
|
sl@0
|
702 |
*/
|
sl@0
|
703 |
virtual TInt Extension(TDmaChannel& aChannel, TInt aCmd, TAny* aArg);
|
sl@0
|
704 |
|
sl@0
|
705 |
/** Called by the PIL to query the number of elements that have so far been
|
sl@0
|
706 |
transferred by the hardware descriptor associated with aHdr at the
|
sl@0
|
707 |
source port.
|
sl@0
|
708 |
|
sl@0
|
709 |
If SDmacCaps::iAsymHwDescriptors is true then the PIL will call this
|
sl@0
|
710 |
function only for source-side descriptors, and the PSL should fault the
|
sl@0
|
711 |
kernel if this is not the case.
|
sl@0
|
712 |
|
sl@0
|
713 |
The function must be implemented (i.e. overridden) by the PSL if and
|
sl@0
|
714 |
only if the DMAC supports hardware descriptors.
|
sl@0
|
715 |
|
sl@0
|
716 |
@param aHdr Descriptor header associated with the hardware descriptor
|
sl@0
|
717 |
to be queried
|
sl@0
|
718 |
|
sl@0
|
719 |
@return The number of elements that have been transferred by the
|
sl@0
|
720 |
hardware descriptor associated with aHdr at the source port
|
sl@0
|
721 |
*/
|
sl@0
|
722 |
virtual TUint32 HwDesNumSrcElementsTransferred(const SDmaDesHdr& aHdr);
|
sl@0
|
723 |
|
sl@0
|
724 |
/** Called by the PIL to query the number of elements that have so far been
|
sl@0
|
725 |
transferred by the hardware descriptor associated with aHdr at the
|
sl@0
|
726 |
destination port.
|
sl@0
|
727 |
|
sl@0
|
728 |
If SDmacCaps::iAsymHwDescriptors is true then the PIL will call this
|
sl@0
|
729 |
function only for destination-side descriptors, and the PSL should
|
sl@0
|
730 |
panic if this is not the case.
|
sl@0
|
731 |
|
sl@0
|
732 |
The function must be implemented (i.e. overridden) by the PSL if and
|
sl@0
|
733 |
only if the DMAC supports hardware descriptors.
|
sl@0
|
734 |
|
sl@0
|
735 |
@param aHdr Descriptor header associated with the hardware descriptor
|
sl@0
|
736 |
to be queried
|
sl@0
|
737 |
|
sl@0
|
738 |
@return The number of elements that have been transferred by the
|
sl@0
|
739 |
hardware descriptor associated with aHdr at the destination port
|
sl@0
|
740 |
*/
|
sl@0
|
741 |
virtual TUint32 HwDesNumDstElementsTransferred(const SDmaDesHdr& aHdr);
|
sl@0
|
742 |
|
sl@0
|
743 |
protected:
|
sl@0
|
744 |
/** Called by the PSL in interrupt context upon a channel interrupt event.
|
sl@0
|
745 |
|
sl@0
|
746 |
@param aChannel The channel the ISR relates to
|
sl@0
|
747 |
@param aEventMask Bitmask of one or more TDmaCallbackType values
|
sl@0
|
748 |
@param aIsComplete Set to ETrue if no error was encountered
|
sl@0
|
749 |
*/
|
sl@0
|
750 |
static void HandleIsr(TDmaChannel& aChannel, TUint aEventMask, TBool aIsComplete);
|
sl@0
|
751 |
|
sl@0
|
752 |
private:
|
sl@0
|
753 |
/** Called in Create() */
|
sl@0
|
754 |
TInt AllocDesPool(TUint aAttribs);
|
sl@0
|
755 |
|
sl@0
|
756 |
/** Called in ~TDmac() */
|
sl@0
|
757 |
void FreeDesPool();
|
sl@0
|
758 |
|
sl@0
|
759 |
private:
|
sl@0
|
760 |
NFastMutex iLock; // protect descriptor reservation and allocation
|
sl@0
|
761 |
const TInt iMaxDesCount; // initial number of descriptors and headers
|
sl@0
|
762 |
TInt iAvailDesCount; // current available number of descriptors and headers
|
sl@0
|
763 |
SDmaDesHdr* iHdrPool; // descriptor header dynamic array
|
sl@0
|
764 |
#ifndef __WINS__
|
sl@0
|
765 |
DPlatChunkHw* iHwDesChunk; // chunk for hardware descriptor pool
|
sl@0
|
766 |
#endif
|
sl@0
|
767 |
TAny* iDesPool; // hardware or pseudo descriptor dynamic array
|
sl@0
|
768 |
const TInt iDesSize; // descriptor size in bytes
|
sl@0
|
769 |
|
sl@0
|
770 |
public:
|
sl@0
|
771 |
const TBool iCapsHwDes; /*< True if DMAC uses h/w descriptors */
|
sl@0
|
772 |
SDmaDesHdr* iFreeHdr; /*< head of unallocated descriptors linked list */
|
sl@0
|
773 |
|
sl@0
|
774 |
#ifdef _DEBUG
|
sl@0
|
775 |
/** Tests whether aHdr points into the descriptor header array. */
|
sl@0
|
776 |
TBool IsValidHdr(const SDmaDesHdr* aHdr);
|
sl@0
|
777 |
#endif
|
sl@0
|
778 |
__DMA_DECLARE_INVARIANT
|
sl@0
|
779 |
};
|
sl@0
|
780 |
|
sl@0
|
781 |
|
sl@0
|
782 |
//////////////////////////////////////////////////////////////////////////////
|
sl@0
|
783 |
|
sl@0
|
784 |
|
sl@0
|
785 |
/** Single-buffer DMA channel.
|
sl@0
|
786 |
|
sl@0
|
787 |
Can be instantiated or further derived by the PSL.
|
sl@0
|
788 |
|
sl@0
|
789 |
@publishedPartner
|
sl@0
|
790 |
@released
|
sl@0
|
791 |
*/
|
sl@0
|
792 |
class TDmaSbChannel : public TDmaChannel
|
sl@0
|
793 |
{
|
sl@0
|
794 |
private:
|
sl@0
|
795 |
virtual void DoQueue(const DDmaRequest& aReq);
|
sl@0
|
796 |
virtual void DoCancelAll();
|
sl@0
|
797 |
virtual void DoDfc(const DDmaRequest& aCurReq, SDmaDesHdr*& aCompletedHdr);
|
sl@0
|
798 |
private:
|
sl@0
|
799 |
enum {EIdle = 0, ETransferring} iState;
|
sl@0
|
800 |
};
|
sl@0
|
801 |
|
sl@0
|
802 |
|
sl@0
|
803 |
/** Double-buffer DMA channel.
|
sl@0
|
804 |
|
sl@0
|
805 |
Can be instantiated or further derived by the PSL.
|
sl@0
|
806 |
|
sl@0
|
807 |
@publishedPartner
|
sl@0
|
808 |
@released
|
sl@0
|
809 |
*/
|
sl@0
|
810 |
class TDmaDbChannel : public TDmaChannel
|
sl@0
|
811 |
{
|
sl@0
|
812 |
private:
|
sl@0
|
813 |
virtual void DoQueue(const DDmaRequest& aReq);
|
sl@0
|
814 |
virtual void DoCancelAll();
|
sl@0
|
815 |
virtual void DoDfc(const DDmaRequest& aCurReq, SDmaDesHdr*& aCompletedHdr);
|
sl@0
|
816 |
private:
|
sl@0
|
817 |
enum {EIdle = 0, ETransferring, ETransferringLast} iState;
|
sl@0
|
818 |
};
|
sl@0
|
819 |
|
sl@0
|
820 |
|
sl@0
|
821 |
/** Scatter-gather DMA channel.
|
sl@0
|
822 |
|
sl@0
|
823 |
Can be instantiated or further derived by the PSL.
|
sl@0
|
824 |
|
sl@0
|
825 |
@publishedPartner
|
sl@0
|
826 |
@released
|
sl@0
|
827 |
*/
|
sl@0
|
828 |
class TDmaSgChannel : public TDmaChannel
|
sl@0
|
829 |
{
|
sl@0
|
830 |
private:
|
sl@0
|
831 |
virtual void DoQueue(const DDmaRequest& aReq);
|
sl@0
|
832 |
virtual void DoCancelAll();
|
sl@0
|
833 |
virtual void DoUnlink(SDmaDesHdr& aHdr);
|
sl@0
|
834 |
virtual void DoDfc(const DDmaRequest& aCurReq, SDmaDesHdr*& aCompletedHdr);
|
sl@0
|
835 |
private:
|
sl@0
|
836 |
enum {EIdle = 0, ETransferring} iState;
|
sl@0
|
837 |
};
|
sl@0
|
838 |
|
sl@0
|
839 |
|
sl@0
|
840 |
/** Scatter-gather DMA channel with asymmetric linked-lists.
|
sl@0
|
841 |
|
sl@0
|
842 |
Can be instantiated or further derived by the PSL.
|
sl@0
|
843 |
|
sl@0
|
844 |
@publishedPartner
|
sl@0
|
845 |
@released
|
sl@0
|
846 |
*/
|
sl@0
|
847 |
class TDmaAsymSgChannel : public TDmaChannel
|
sl@0
|
848 |
{
|
sl@0
|
849 |
private:
|
sl@0
|
850 |
virtual void DoQueue(const DDmaRequest& aReq);
|
sl@0
|
851 |
virtual void DoCancelAll();
|
sl@0
|
852 |
virtual void DoUnlink(SDmaDesHdr& aHdr);
|
sl@0
|
853 |
virtual void DoDfc(const DDmaRequest& aCurReq, SDmaDesHdr*& aSrcCompletedHdr,
|
sl@0
|
854 |
SDmaDesHdr*& aDstCompletedHdr);
|
sl@0
|
855 |
private:
|
sl@0
|
856 |
SDmaDesHdr* iSrcCurHdr; // source fragment being transferred or NULL
|
sl@0
|
857 |
SDmaDesHdr** iSrcNullPtr; // Pointer to NULL pointer following last source fragment
|
sl@0
|
858 |
SDmaDesHdr* iDstCurHdr; // destination fragment being transferred or NULL
|
sl@0
|
859 |
SDmaDesHdr** iDstNullPtr; // Pointer to NULL pointer following last destination fragment
|
sl@0
|
860 |
enum {EIdle = 0, ETransferring} iState;
|
sl@0
|
861 |
};
|
sl@0
|
862 |
|
sl@0
|
863 |
|
sl@0
|
864 |
//////////////////////////////////////////////////////////////////////////////
|
sl@0
|
865 |
|
sl@0
|
866 |
|
sl@0
|
867 |
#include <drivers/dma_hai.inl>
|
sl@0
|
868 |
|
sl@0
|
869 |
|
sl@0
|
870 |
#endif // #ifndef __DMA_HAI_H__
|