author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 18 Jan 2010 21:31:10 +0200 | |
changeset 36 | 538db54a451d |
parent 0 | a41df078684a |
child 81 | e7d2d738d3c2 |
child 90 | 947f0dc9f7a8 |
permissions | -rw-r--r-- |
0 | 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 the License "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". |
|
7 |
// |
|
8 |
// Initial Contributors: |
|
9 |
// Nokia Corporation - initial contribution. |
|
10 |
// |
|
11 |
// Contributors: |
|
12 |
// |
|
13 |
// Description: |
|
14 |
// e32test\dma\d_dma.cpp |
|
15 |
// |
|
16 |
// |
|
17 |
||
18 |
#include "platform.h" |
|
19 |
#include <kernel/kern_priv.h> |
|
20 |
#include <drivers/dma.h> |
|
21 |
#include "d_dma.h" |
|
22 |
||
23 |
_LIT(KClientPanicCat, "D_DMA"); |
|
24 |
_LIT(KDFCThreadName,"D_DMA_DFC_THREAD"); |
|
25 |
const TInt KDFCThreadPriority=26; |
|
26 |
||
27 |
////////////////////////////////////////////////////////////////////////////// |
|
28 |
||
29 |
// |
|
30 |
// Class abstracting the way DMA buffers are created and destroyed to |
|
31 |
// allow tests to run both on WINS and hardware. |
|
32 |
// |
|
33 |
||
34 |
class TBufferMgr |
|
35 |
{ |
|
36 |
public: |
|
37 |
TInt Alloc(TInt aIdx, TInt aSize); |
|
38 |
void FreeAll(); |
|
39 |
TUint8* Addr(TInt aIdx) const; |
|
40 |
TPhysAddr PhysAddr(TInt aIdx) const; |
|
41 |
TInt Size(TInt aIdx) const; |
|
42 |
enum { KMaxBuf = 8 }; |
|
43 |
private: |
|
44 |
#ifdef __WINS__ |
|
45 |
struct {TUint8* iPtr; TInt iSize;} iBufs[KMaxBuf]; |
|
46 |
#else |
|
47 |
struct {DPlatChunkHw* iChunk; TInt iSize;} iBufs[KMaxBuf]; |
|
48 |
#endif |
|
49 |
}; |
|
50 |
||
51 |
#ifdef __WINS__ |
|
52 |
||
53 |
TUint8* TBufferMgr::Addr(TInt aIdx) const |
|
54 |
{ |
|
55 |
__ASSERT_DEBUG(0 <= aIdx && aIdx < KMaxBuf, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
56 |
__ASSERT_DEBUG(iBufs[aIdx].iPtr != NULL, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
57 |
return iBufs[aIdx].iPtr; |
|
58 |
} |
|
59 |
||
60 |
||
61 |
TInt TBufferMgr::Size(TInt aIdx) const |
|
62 |
{ |
|
63 |
__ASSERT_DEBUG(0 <= aIdx && aIdx < KMaxBuf, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
64 |
__ASSERT_DEBUG(iBufs[aIdx].iPtr != NULL, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
65 |
return iBufs[aIdx].iSize; |
|
66 |
} |
|
67 |
||
68 |
||
69 |
TInt TBufferMgr::Alloc(TInt aIdx, TInt aSize) |
|
70 |
{ |
|
71 |
__ASSERT_DEBUG(0 <= aIdx && aIdx < KMaxBuf, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
72 |
__ASSERT_DEBUG(iBufs[aIdx].iPtr == NULL, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
73 |
NKern::ThreadEnterCS(); |
|
74 |
iBufs[aIdx].iPtr = new TUint8[aSize]; |
|
75 |
NKern::ThreadLeaveCS(); |
|
76 |
iBufs[aIdx].iSize = aSize; |
|
77 |
return iBufs[aIdx].iPtr ? KErrNone : KErrNoMemory; |
|
78 |
} |
|
79 |
||
80 |
||
81 |
void TBufferMgr::FreeAll() |
|
82 |
{ |
|
83 |
NKern::ThreadEnterCS(); |
|
84 |
for (TInt i=0; i<KMaxBuf; ++i) |
|
85 |
{ |
|
86 |
delete iBufs[i].iPtr; |
|
87 |
iBufs[i].iPtr = NULL; |
|
88 |
} |
|
89 |
NKern::ThreadLeaveCS(); |
|
90 |
} |
|
91 |
||
92 |
#else |
|
93 |
||
94 |
TUint8* TBufferMgr::Addr(TInt aIdx) const |
|
95 |
{ |
|
96 |
__ASSERT_DEBUG(0 <= aIdx && aIdx < KMaxBuf, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
97 |
__ASSERT_DEBUG(iBufs[aIdx].iChunk != NULL, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
98 |
return (TUint8*)iBufs[aIdx].iChunk->LinearAddress(); |
|
99 |
} |
|
100 |
||
101 |
||
102 |
TPhysAddr TBufferMgr::PhysAddr(TInt aIdx) const |
|
103 |
{ |
|
104 |
__ASSERT_DEBUG(0 <= aIdx && aIdx < KMaxBuf, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
105 |
__ASSERT_DEBUG(iBufs[aIdx].iChunk != NULL, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
106 |
return iBufs[aIdx].iChunk->PhysicalAddress(); |
|
107 |
} |
|
108 |
||
109 |
||
110 |
TInt TBufferMgr::Size(TInt aIdx) const |
|
111 |
{ |
|
112 |
__ASSERT_DEBUG(0 <= aIdx && aIdx < KMaxBuf, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
113 |
__ASSERT_DEBUG(iBufs[aIdx].iChunk != NULL, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
114 |
return iBufs[aIdx].iSize; |
|
115 |
} |
|
116 |
||
117 |
||
118 |
TInt TBufferMgr::Alloc(TInt aIdx, TInt aSize) |
|
119 |
{ |
|
120 |
__ASSERT_DEBUG(0 <= aIdx && aIdx < KMaxBuf, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
121 |
__ASSERT_DEBUG(iBufs[aIdx].iChunk == NULL, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
122 |
NKern::ThreadEnterCS(); |
|
123 |
TPhysAddr phys; |
|
124 |
TInt r = Epoc::AllocPhysicalRam(aSize, phys); |
|
125 |
if (r == KErrNone) |
|
126 |
{ |
|
127 |
r = DPlatChunkHw::New(iBufs[aIdx].iChunk, phys, aSize, EMapAttrSupRw | EMapAttrFullyBlocking); |
|
128 |
if (r != KErrNone) |
|
129 |
Epoc::FreePhysicalRam(phys, aSize); |
|
130 |
iBufs[aIdx].iSize = aSize; |
|
36
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
131 |
|
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
132 |
__KTRACE_OPT(KDMA, Kern::Printf("TBufferMgr::Alloc buffer %d linAddr=0x%08x, physAddr=0x%08x, size=%d", |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
133 |
aIdx, Addr(aIdx), PhysAddr(aIdx), Size(aIdx))); |
0 | 134 |
} |
135 |
NKern::ThreadLeaveCS(); |
|
136 |
return r; |
|
137 |
} |
|
138 |
||
139 |
||
140 |
void TBufferMgr::FreeAll() |
|
141 |
{ |
|
142 |
for (TInt i=0; i<KMaxBuf; ++i) |
|
143 |
{ |
|
144 |
if (iBufs[i].iChunk) |
|
145 |
{ |
|
146 |
TPhysAddr base = iBufs[i].iChunk->PhysicalAddress(); |
|
147 |
TInt size = iBufs[i].iSize; |
|
148 |
__ASSERT_DEBUG(iBufs[i].iChunk->AccessCount() == 1, |
|
149 |
Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
150 |
NKern::ThreadEnterCS(); |
|
151 |
iBufs[i].iChunk->Close(NULL); |
|
152 |
iBufs[i].iChunk = NULL; |
|
153 |
Epoc::FreePhysicalRam(base, size); |
|
154 |
NKern::ThreadLeaveCS(); |
|
155 |
} |
|
156 |
} |
|
157 |
} |
|
158 |
||
159 |
#endif |
|
160 |
||
36
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
161 |
|
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
162 |
#ifndef DMA_APIV2 |
0 | 163 |
static TInt FragmentCount(DDmaRequest* aRequest) |
164 |
{ |
|
165 |
TInt count = 0; |
|
166 |
for (SDmaDesHdr* pH = aRequest->iFirstHdr; pH != NULL; pH = pH->iNext) |
|
167 |
count++; |
|
168 |
return count; |
|
169 |
} |
|
36
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
170 |
#endif |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
171 |
|
0 | 172 |
|
173 |
////////////////////////////////////////////////////////////////////////////// |
|
174 |
||
175 |
class DDmaTestChannel : public DLogicalChannelBase |
|
176 |
{ |
|
177 |
public: |
|
178 |
virtual ~DDmaTestChannel(); |
|
179 |
protected: |
|
180 |
// from DLogicalChannelBase |
|
181 |
virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer); |
|
182 |
virtual TInt Request(TInt aFunction, TAny* a1, TAny* a2); |
|
183 |
virtual TInt RequestUserHandle(DThread* aThread, TOwnerType aType); |
|
184 |
private: |
|
185 |
TInt Execute(const TDesC8& aDes); |
|
186 |
static void Dfc(DDmaRequest::TResult aResult, TAny* aArg); |
|
187 |
TInt DoGetInfo(TAny* aInfo); |
|
188 |
private: |
|
189 |
TUint32 iCookie; |
|
190 |
TBufferMgr iBufMgr; |
|
191 |
TDmaChannel* iChannel; |
|
192 |
enum { KMaxRequests = 8 }; |
|
193 |
DDmaRequest* iRequests[KMaxRequests]; |
|
194 |
TClientRequest* iClientRequests[KMaxRequests]; |
|
195 |
DDmaTestChannel* iMap[KMaxRequests]; |
|
196 |
TUint32 iMemMemPslInfo; |
|
197 |
DThread* iClient; |
|
198 |
TDynamicDfcQue* iDfcQ; |
|
199 |
}; |
|
200 |
||
201 |
||
202 |
TInt DDmaTestChannel::RequestUserHandle(DThread* aThread, TOwnerType aType) |
|
203 |
{ |
|
204 |
if (aType!=EOwnerThread || aThread!=iClient) |
|
205 |
return KErrAccessDenied; |
|
206 |
return KErrNone; |
|
207 |
} |
|
208 |
||
209 |
TInt DDmaTestChannel::DoGetInfo(TAny* aInfo) |
|
210 |
{ |
|
211 |
RTestDma::TInfo uinfo; |
|
212 |
const TDmaTestInfo& kinfo = DmaTestInfo(); |
|
213 |
uinfo.iMaxTransferSize = kinfo.iMaxTransferSize; |
|
214 |
uinfo.iMemAlignMask = kinfo.iMemAlignMask; |
|
215 |
uinfo.iMaxSbChannels = kinfo.iMaxSbChannels; |
|
216 |
memcpy(&(uinfo.iSbChannels), kinfo.iSbChannels, 4 * kinfo.iMaxSbChannels); |
|
217 |
uinfo.iMaxDbChannels = kinfo.iMaxDbChannels; |
|
218 |
memcpy(&(uinfo.iDbChannels), kinfo.iDbChannels, 4 * kinfo.iMaxDbChannels); |
|
219 |
uinfo.iMaxSgChannels = kinfo.iMaxSgChannels; |
|
220 |
memcpy(&(uinfo.iSgChannels), kinfo.iSgChannels, 4 * kinfo.iMaxSgChannels); |
|
221 |
||
222 |
XTRAPD(r, XT_DEFAULT, kumemput(aInfo, &uinfo, sizeof(RTestDma::TInfo))); |
|
223 |
return r == KErrNone ? KErrDied : KErrGeneral; |
|
224 |
} |
|
225 |
||
226 |
||
227 |
// called in thread critical section |
|
228 |
TInt DDmaTestChannel::DoCreate(TInt /*aUnit*/, const TDesC8* aInfo, const TVersion& /*aVer*/) |
|
229 |
{ |
|
230 |
TPckgBuf<RTestDma::TOpenInfo> infoBuf; |
|
231 |
||
232 |
TInt r=Kern::ThreadDesRead(&Kern::CurrentThread(), aInfo, infoBuf, 0, KChunkShiftBy0); |
|
233 |
if (r != KErrNone) |
|
234 |
return r; |
|
235 |
||
236 |
if (infoBuf().iWhat == RTestDma::TOpenInfo::EGetInfo) |
|
237 |
return DoGetInfo(infoBuf().U.iInfo); |
|
238 |
else |
|
239 |
{ |
|
240 |
if (!iDfcQ) |
|
241 |
{ |
|
242 |
r = Kern::DynamicDfcQCreate(iDfcQ, KDFCThreadPriority, KDFCThreadName); |
|
243 |
if (r != KErrNone) |
|
244 |
return r; |
|
245 |
#ifdef CPU_AFFINITY_ANY |
|
246 |
NKern::ThreadSetCpuAffinity((NThread*)(iDfcQ->iThread), KCpuAffinityAny); |
|
247 |
#endif |
|
248 |
} |
|
249 |
||
250 |
iMemMemPslInfo = DmaTestInfo().iMemMemPslInfo; |
|
251 |
iCookie = infoBuf().U.iOpen.iId; |
|
252 |
TDmaChannel::SCreateInfo info; |
|
253 |
info.iCookie = iCookie; |
|
254 |
info.iDfcQ = iDfcQ; |
|
255 |
info.iDfcPriority = 3; |
|
256 |
info.iDesCount = infoBuf().U.iOpen.iDesCount; |
|
257 |
r = TDmaChannel::Open(info, iChannel); |
|
258 |
if (r!= KErrNone) |
|
259 |
return r; |
|
260 |
iClient = &Kern::CurrentThread(); |
|
261 |
for (TInt i=0; i<KMaxRequests; ++i) |
|
262 |
{ |
|
263 |
r = Kern::CreateClientRequest(iClientRequests[i]); |
|
264 |
if (r!=KErrNone) |
|
265 |
return r; |
|
266 |
iMap[i] = this; |
|
267 |
TInt max = infoBuf().U.iOpen.iMaxTransferSize; |
|
268 |
if (max) |
|
269 |
{ |
|
270 |
// Exercise request with custom limit |
|
271 |
iRequests[i] = new DDmaRequest(*iChannel, Dfc, iMap+i, max); |
|
272 |
} |
|
273 |
else |
|
274 |
{ |
|
275 |
// Exercise request with default limit |
|
276 |
iRequests[i] = new DDmaRequest(*iChannel, Dfc, iMap+i); |
|
277 |
} |
|
278 |
if (! iRequests[i]) |
|
279 |
return KErrNoMemory; |
|
280 |
} |
|
281 |
return KErrNone; |
|
282 |
} |
|
283 |
} |
|
284 |
||
285 |
||
286 |
DDmaTestChannel::~DDmaTestChannel() |
|
287 |
{ |
|
288 |
if (iChannel) |
|
289 |
{ |
|
290 |
iChannel->CancelAll(); |
|
291 |
TInt i; |
|
292 |
for (i=0; i<KMaxRequests; ++i) |
|
293 |
delete iRequests[i]; |
|
294 |
iChannel->Close(); |
|
295 |
for (i=0; i<KMaxRequests; ++i) |
|
296 |
Kern::DestroyClientRequest(iClientRequests[i]); |
|
297 |
} |
|
298 |
if (iDfcQ) |
|
299 |
{ |
|
300 |
iDfcQ->Destroy(); |
|
301 |
} |
|
302 |
iBufMgr.FreeAll(); |
|
303 |
} |
|
304 |
||
305 |
||
306 |
TInt DDmaTestChannel::Request(TInt aFunction, TAny* a1, TAny* a2) |
|
307 |
{ |
|
308 |
switch (aFunction) |
|
309 |
{ |
|
310 |
case RTestDma::EAllocBuffer: |
|
311 |
return iBufMgr.Alloc((TInt)a1, (TInt)a2); |
|
312 |
case RTestDma::EFreeAllBuffers: |
|
313 |
iBufMgr.FreeAll(); |
|
314 |
return KErrNone; |
|
315 |
case RTestDma::EFillBuffer: |
|
316 |
{ |
|
317 |
TInt i = (TInt)a1; |
|
318 |
TUint8 val = (TUint8)(TUint)a2; |
|
319 |
memset(iBufMgr.Addr(i), val, iBufMgr.Size(i)); |
|
320 |
return KErrNone; |
|
321 |
} |
|
322 |
case RTestDma::ECheckBuffer: |
|
323 |
{ |
|
324 |
TInt i = (TInt)a1; |
|
325 |
TUint8 val = (TUint8)(TUint)a2; |
|
326 |
TUint8* p = iBufMgr.Addr(i); |
|
327 |
TUint8* end = p + iBufMgr.Size(i); |
|
328 |
while (p < end) |
|
329 |
if (*p++ != val) |
|
330 |
{ |
|
36
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
331 |
#ifdef _DEBUG |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
332 |
const TUint8 prevValue = *(p-1); |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
333 |
#endif |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
334 |
__KTRACE_OPT(KDMA, Kern::Printf("Check DMA buffer number %d failed at offset: %d value: %d(%c)", |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
335 |
i, p-iBufMgr.Addr(i)-1, prevValue, prevValue)); |
0 | 336 |
return EFalse; |
337 |
} |
|
338 |
return ETrue; |
|
339 |
} |
|
340 |
case RTestDma::EFragment: |
|
341 |
{ |
|
342 |
RTestDma::TFragmentInfo info; |
|
343 |
kumemget(&info, a1, sizeof info); |
|
344 |
__ASSERT_DEBUG(iBufMgr.Size(info.iSrcBufIdx) == iBufMgr.Size(info.iDestBufIdx), |
|
345 |
Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
346 |
__ASSERT_DEBUG(info.iSize <= iBufMgr.Size(info.iSrcBufIdx), |
|
347 |
Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
348 |
__ASSERT_DEBUG(0 <= info.iRequestIdx && info.iRequestIdx < KMaxRequests, |
|
349 |
Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
350 |
#ifdef __DMASIM__ |
|
351 |
// DMASIM doesn't use physical addresses |
|
352 |
TUint32 src = (TUint32)iBufMgr.Addr(info.iSrcBufIdx); |
|
353 |
TUint32 dest = (TUint32)iBufMgr.Addr(info.iDestBufIdx); |
|
354 |
TUint KFlags = KDmaMemSrc | KDmaIncSrc | KDmaMemDest | KDmaIncDest; |
|
355 |
#else |
|
356 |
TUint32 src = iBufMgr.PhysAddr(info.iSrcBufIdx); |
|
357 |
TUint32 dest = iBufMgr.PhysAddr(info.iDestBufIdx); |
|
358 |
TUint KFlags = KDmaMemSrc | KDmaIncSrc | KDmaPhysAddrSrc | |
|
359 |
KDmaMemDest | KDmaIncDest | KDmaPhysAddrDest | KDmaAltTransferLen; |
|
360 |
#endif |
|
361 |
TInt r = iRequests[info.iRequestIdx]->Fragment(src, dest, info.iSize, KFlags, iMemMemPslInfo); |
|
362 |
if (r == KErrNone && info.iRs) |
|
363 |
r = iClientRequests[info.iRequestIdx]->SetStatus(info.iRs); |
|
364 |
return r; |
|
365 |
} |
|
366 |
case RTestDma::EExecute: |
|
367 |
return Execute(*(TDesC8*)a1); |
|
368 |
case RTestDma::EFailNext: |
|
369 |
return iChannel->FailNext((TInt)a1); |
|
370 |
case RTestDma::EFragmentCount: |
|
371 |
{ |
|
372 |
TInt reqIdx = (TInt)a1; |
|
373 |
__ASSERT_DEBUG(0 <= reqIdx && reqIdx < KMaxRequests, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
36
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
374 |
#ifdef DMA_APIV2 |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
375 |
return iRequests[reqIdx]->FragmentCount(); |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
376 |
#else |
0 | 377 |
return FragmentCount(iRequests[reqIdx]); |
36
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
378 |
#endif |
0 | 379 |
} |
380 |
case RTestDma::EMissInterrupts: |
|
381 |
return iChannel->MissNextInterrupts((TInt)a1); |
|
382 |
default: |
|
383 |
Kern::PanicCurrentThread(KClientPanicCat, __LINE__); |
|
384 |
return KErrNone; // work-around spurious warning |
|
385 |
} |
|
386 |
} |
|
387 |
||
388 |
||
389 |
TInt DDmaTestChannel::Execute(const TDesC8& aDes) |
|
390 |
{ |
|
391 |
TBuf8<64> cmd; |
|
392 |
Kern::KUDesGet(cmd, aDes); |
|
36
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
393 |
__KTRACE_OPT(KDMA, Kern::Printf("DDmaTestChannel::Execute cmd=%S", &cmd)); |
538db54a451d
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
394 |
|
0 | 395 |
const TText8* p = cmd.Ptr(); |
396 |
const TText8* pEnd = p + cmd.Length(); |
|
397 |
while (p<pEnd) |
|
398 |
{ |
|
399 |
TText8 opcode = *p++; |
|
400 |
switch (opcode) |
|
401 |
{ |
|
402 |
case 'Q': |
|
403 |
{ |
|
404 |
TInt arg = *p++ - '0'; |
|
405 |
__ASSERT_DEBUG(0 <= arg && arg < KMaxRequests, Kern::PanicCurrentThread(KClientPanicCat, __LINE__)); |
|
406 |
iRequests[arg]->Queue(); |
|
407 |
break; |
|
408 |
} |
|
409 |
case 'C': |
|
410 |
iChannel->CancelAll(); |
|
411 |
break; |
|
412 |
default: |
|
413 |
Kern::PanicCurrentThread(KClientPanicCat, __LINE__); |
|
414 |
} |
|
415 |
} |
|
416 |
return KErrNone; |
|
417 |
} |
|
418 |
||
419 |
||
420 |
void DDmaTestChannel::Dfc(DDmaRequest::TResult aResult, TAny* aArg) |
|
421 |
{ |
|
422 |
DDmaTestChannel** ppC = (DDmaTestChannel**)aArg; |
|
423 |
DDmaTestChannel* pC = *ppC; |
|
424 |
TInt i = ppC - pC->iMap; |
|
425 |
TClientRequest* req = pC->iClientRequests[i]; |
|
426 |
TInt r = (aResult==DDmaRequest::EOk) ? KErrNone : KErrGeneral; |
|
427 |
if (req->IsReady()) |
|
428 |
Kern::QueueRequestComplete(pC->iClient, req, r); |
|
429 |
} |
|
430 |
||
431 |
////////////////////////////////////////////////////////////////////////////// |
|
432 |
||
433 |
class DDmaTestFactory : public DLogicalDevice |
|
434 |
{ |
|
435 |
public: |
|
436 |
DDmaTestFactory(); |
|
437 |
// from DLogicalDevice |
|
438 |
virtual TInt Install(); |
|
439 |
virtual void GetCaps(TDes8& aDes) const; |
|
440 |
virtual TInt Create(DLogicalChannelBase*& aChannel); |
|
441 |
}; |
|
442 |
||
443 |
||
444 |
DDmaTestFactory::DDmaTestFactory() |
|
445 |
{ |
|
446 |
iVersion = TestDmaLddVersion(); |
|
447 |
iParseMask = KDeviceAllowUnit; // no info, no PDD |
|
448 |
// iUnitsMask = 0; // Only one thing |
|
449 |
} |
|
450 |
||
451 |
||
452 |
TInt DDmaTestFactory::Create(DLogicalChannelBase*& aChannel) |
|
453 |
{ |
|
454 |
aChannel=new DDmaTestChannel; |
|
455 |
return aChannel ? KErrNone : KErrNoMemory; |
|
456 |
} |
|
457 |
||
458 |
||
459 |
TInt DDmaTestFactory::Install() |
|
460 |
{ |
|
461 |
return SetName(&KTestDmaLddName); |
|
462 |
} |
|
463 |
||
464 |
||
465 |
void DDmaTestFactory::GetCaps(TDes8& /*aDes*/) const |
|
466 |
{ |
|
467 |
} |
|
468 |
||
469 |
////////////////////////////////////////////////////////////////////////////// |
|
470 |
||
471 |
DECLARE_STANDARD_LDD() |
|
472 |
{ |
|
473 |
return new DDmaTestFactory; |
|
474 |
} |