author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Tue, 31 Aug 2010 16:34:26 +0300 | |
branch | RCL_3 |
changeset 43 | c1f20ce4abcf |
parent 0 | a41df078684a |
child 44 | 3e88ff8f41d5 |
permissions | -rw-r--r-- |
0 | 1 |
// Copyright (c) 1998-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 |
// e32\kernel\win32\cache.cpp |
|
15 |
// |
|
16 |
// |
|
17 |
||
18 |
#include <win32.h> |
|
19 |
#include <kernel/cache.h> |
|
20 |
||
21 |
EXPORT_C void Cache::IMB_Range(TLinAddr, TUint) |
|
22 |
{ |
|
23 |
} |
|
24 |
||
25 |
EXPORT_C void Cache::SyncMemoryBeforeDmaWrite(TLinAddr, TUint) |
|
26 |
{ |
|
27 |
} |
|
28 |
||
29 |
EXPORT_C void Cache::SyncMemoryBeforeDmaRead(TLinAddr, TUint) |
|
30 |
{ |
|
31 |
} |
|
32 |
||
33 |
EXPORT_C void Cache::SyncMemoryAfterDmaRead(TLinAddr, TUint) |
|
34 |
{ |
|
35 |
} |
|
36 |
||
37 |
EXPORT_C void Cache::AtomicSyncMemory() |
|
38 |
{ |
|
39 |
} |
|
40 |
||
43
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
41 |
EXPORT_C void Cache::CpuRetires() |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
42 |
{ |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
43 |
} |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
44 |
|
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
45 |
EXPORT_C void Cache::KernelRetires() |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
46 |
{ |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
47 |
} |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
48 |
|
0 | 49 |
EXPORT_C void Cache::SyncMemoryBeforeDmaWrite(TLinAddr, TUint, TUint32) |
50 |
{ |
|
51 |
} |
|
52 |
||
53 |
EXPORT_C void Cache::SyncMemoryBeforeDmaRead(TLinAddr, TUint, TUint32) |
|
54 |
{ |
|
55 |
} |
|
56 |
||
57 |
EXPORT_C void Cache::SyncMemoryAfterDmaRead(TLinAddr, TUint, TUint32) |
|
58 |
{ |
|
59 |
} |
|
60 |
||
61 |
EXPORT_C TInt Cache::GetThresholds(TCacheThresholds&, TUint) |
|
62 |
{ |
|
63 |
return KErrNotSupported; |
|
64 |
} |
|
65 |
||
66 |
EXPORT_C TInt Cache::SetThresholds(const TCacheThresholds&, TUint) |
|
67 |
{ |
|
68 |
return KErrNotSupported; |
|
69 |
} |
|
70 |
||
71 |
EXPORT_C TUint Cache::DmaBufferAlignment() |
|
72 |
{ |
|
73 |
return 1; |
|
74 |
} |