author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 04 Oct 2010 02:35:35 +0300 | |
changeset 281 | 13fbfa31d2ba |
parent 201 | 43365a9b78a3 |
child 257 | 3e88ff8f41d5 |
permissions | -rw-r--r-- |
0 | 1 |
// Copyright (c) 2007-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\include\nkernsmp\x86\ncern.h |
|
15 |
// |
|
16 |
// WARNING: This file contains some APIs which are internal and are subject |
|
17 |
// to change without notice. Such APIs should therefore not be used |
|
18 |
// outside the Kernel and Hardware Services package. |
|
19 |
// |
|
20 |
||
21 |
/** |
|
22 |
@file |
|
23 |
@publishedPartner |
|
24 |
@prototype |
|
25 |
*/ |
|
26 |
||
27 |
#ifndef __NCERN_H__ |
|
28 |
#define __NCERN_H__ |
|
29 |
||
30 |
||
31 |
/** Information needed to boot an AP (x86 specific) |
|
32 |
||
33 |
@internalTechnology |
|
34 |
*/ |
|
35 |
struct SX86APBootInfo : public SAPBootInfo |
|
36 |
{ |
|
37 |
}; |
|
38 |
||
39 |
/** Variant interface block |
|
40 |
@internalTechnology |
|
41 |
@prototype |
|
42 |
*/ |
|
43 |
struct SVariantInterfaceBlock : public SInterfaceBlockBase |
|
44 |
{ |
|
45 |
TUint64 iMaxCpuClock; // maximum possible CPU clock frequency on this system |
|
46 |
TUint32 iTimestampFreq; // rate at which timestamp increments |
|
47 |
TUint32 iMaxTimerClock; // maximum possible local timer clock frequency |
|
201
43365a9b78a3
Revision: 201027
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
48 |
SRatio* iTimerFreqR[KMaxCpus]; // timer[i] frequency as a fraction of iMaxTimerClock |
43365a9b78a3
Revision: 201027
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
49 |
SRatio* iCpuFreqR[KMaxCpus]; // CPU[i] frequency as a fraction of iMaxCpuClock |
43365a9b78a3
Revision: 201027
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
50 |
SRatio* iTimestampFreqR; // timestamp counter frequency as a fraction of |
0 | 51 |
}; |
52 |
||
53 |
// End of file |
|
54 |
#endif |