Import upstream u-boot 1.1.4
[u-boot.git] / board / MAI / bios_emulator / scitech / src / pm / os2 / cpuinfo.c
1 /****************************************************************************
2 *
3 *                         Ultra Long Period Timer
4 *
5 *  ========================================================================
6 *
7 *    The contents of this file are subject to the SciTech MGL Public
8 *    License Version 1.0 (the "License"); you may not use this file
9 *    except in compliance with the License. You may obtain a copy of
10 *    the License at http://www.scitechsoft.com/mgl-license.txt
11 *
12 *    Software distributed under the License is distributed on an
13 *    "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
14 *    implied. See the License for the specific language governing
15 *    rights and limitations under the License.
16 *
17 *    The Original Code is Copyright (C) 1991-1998 SciTech Software, Inc.
18 *
19 *    The Initial Developer of the Original Code is SciTech Software, Inc.
20 *    All Rights Reserved.
21 *
22 *  ========================================================================
23 *
24 * Language:     ANSI C
25 * Environment:  OS/2
26 *
27 * Description:  OS/2 specific code for the CPU detection module.
28 *
29 ****************************************************************************/
30
31 /*----------------------------- Implementation ----------------------------*/
32
33 /****************************************************************************
34 REMARKS:
35 TODO: This should be implemented for OS/2!
36 ****************************************************************************/
37 #define SetMaxThreadPriority()  0
38
39 /****************************************************************************
40 REMARKS:
41 TODO: This should be implemented for OS/2!
42 ****************************************************************************/
43 #define RestoreThreadPriority(i)
44
45 /****************************************************************************
46 REMARKS:
47 Initialise the counter and return the frequency of the counter.
48 ****************************************************************************/
49 static void GetCounterFrequency(
50     CPU_largeInteger *freq)
51 {
52     freq->low = 100000;
53     freq->high = 0;
54 }
55
56 /****************************************************************************
57 REMARKS:
58 Read the counter and return the counter value.
59 ****************************************************************************/
60 #define GetCounter(t)                                                       \
61 {                                                                           \
62     ULONG   count;                                                          \
63     DosQuerySysInfo( QSV_MS_COUNT, QSV_MS_COUNT, &count, sizeof(ULONG) );   \
64     (t)->low = count * 100;                                                 \
65     (t)->high = 0;                                                          \
66 }