]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/MAI/bios_emulator/scitech/src/pm/linux/cpuinfo.c
* Patch by Thomas Frieden, 13 Nov 2002:
[karo-tx-uboot.git] / board / MAI / bios_emulator / scitech / src / pm / linux / 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:  Linux
26 *
27 * Description:  Linux specific code for the CPU detection module.
28 *
29 ****************************************************************************/
30
31 #include <ztimer.h>
32
33 /*----------------------------- Implementation ----------------------------*/
34
35 /****************************************************************************
36 REMARKS:
37 TODO: We should implement this for Linux!
38 ****************************************************************************/
39 #define SetMaxThreadPriority()  0
40
41 /****************************************************************************
42 REMARKS:
43 TODO: We should implement this for Linux!
44 ****************************************************************************/
45 #define RestoreThreadPriority(i)
46
47 /****************************************************************************
48 REMARKS:
49 Initialise the counter and return the frequency of the counter.
50 ****************************************************************************/
51 static void GetCounterFrequency(
52     CPU_largeInteger *freq)
53 {
54     freq->low = 1000000;
55     freq->high = 0;
56 }
57
58 /****************************************************************************
59 REMARKS:
60 Read the counter and return the counter value.
61 ****************************************************************************/
62 #define GetCounter(t)                           \
63 {                                               \
64     struct timeval tv;                          \
65     gettimeofday(&tv,NULL);                     \
66     (t)->low = tv.tv_sec*1000000 + tv.tv_usec;  \
67     (t)->high = 0;                              \
68 }