]> git.proxmox.com Git - mirror_edk2.git/blame - PerformancePkg/Library/TscTimerLib/BaseTscTimerLib.c
Refine BaseTscTimerLib.
[mirror_edk2.git] / PerformancePkg / Library / TscTimerLib / BaseTscTimerLib.c
CommitLineData
034307a7
SZ
1/** @file\r
2 A Base Timer Library implementation which uses the Time Stamp Counter in the processor.\r
3\r
4 For Pentium 4 processors, Intel Xeon processors (family [0FH], models [03H and higher]);\r
5 for Intel Core Solo and Intel Core Duo processors (family [06H], model [0EH]);\r
6 for the Intel Xeon processor 5100 series and Intel Core 2 Duo processors (family [06H], model [0FH]);\r
7 for Intel Core 2 and Intel Xeon processors (family [06H], display_model [17H]);\r
8 for Intel Atom processors (family [06H], display_model [1CH]):\r
9 the time-stamp counter increments at a constant rate.\r
10 That rate may be set by the maximum core-clock to bus-clock ratio of the processor or may be set by\r
11 the maximum resolved frequency at which the processor is booted. The maximum resolved frequency may\r
12 differ from the maximum qualified frequency of the processor.\r
13\r
14 The specific processor configuration determines the behavior. Constant TSC behavior ensures that the\r
15 duration of each clock tick is uniform and supports the use of the TSC as a wall clock timer even if\r
16 the processor core changes frequency. This is the architectural behavior moving forward.\r
17\r
18 A Processor's support for invariant TSC is indicated by CPUID.0x80000007.EDX[8].\r
19\r
20 Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>\r
21 This program and the accompanying materials\r
22 are licensed and made available under the terms and conditions of the BSD License\r
23 which accompanies this distribution. The full text of the license may be found at\r
24 http://opensource.org/licenses/bsd-license.php\r
25\r
26 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
27 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
28\r
29**/\r
30\r
31#include "TscTimerLibInternal.h"\r
32\r
034307a7
SZ
33/** Get TSC frequency.\r
34\r
35 @return The number of TSC counts per second.\r
36\r
37**/\r
38UINT64\r
39InternalGetTscFrequency (\r
40 VOID\r
41 )\r
42{\r
da27b950 43 return InternalCalculateTscFrequency ();\r
034307a7
SZ
44}\r
45\r