]> git.proxmox.com Git - mirror_edk2.git/blobdiff - PcAtChipsetPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.c
PcAtChipsetPkg AcpiTimerLib: Get more accurate TSC Frequency
[mirror_edk2.git] / PcAtChipsetPkg / Library / AcpiTimerLib / BaseAcpiTimerLib.c
index 21fdb79908b89baedc235c283f6ea63bcf45e29f..8819ebcfccef7446c88254b5c189052a3badfd64 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   ACPI Timer implements one instance of Timer Library.\r
 \r
-  Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
 #include <Library/TimerLib.h>\r
 #include <Library/BaseLib.h>\r
 \r
+/**\r
+  Calculate TSC frequency.\r
+\r
+  The TSC counting frequency is determined by comparing how far it counts\r
+  during a 100us period as determined by the ACPI timer. The ACPI timer is\r
+  used because it counts at a known frequency.\r
+  The TSC is sampled, followed by waiting for ACPI_TIMER_FREQUENCY / 10000\r
+  clocks of the ACPI timer, or 100us. The TSC is then sampled again. The\r
+  difference multiplied by 10000 is the TSC frequency. There will be a small\r
+  error because of the overhead of reading the ACPI timer. An attempt is\r
+  made to determine and compensate for this error.\r
+\r
+  @return The number of TSC counts per second.\r
+\r
+**/\r
+UINT64\r
+InternalCalculateTscFrequency (\r
+  VOID\r
+  );\r
+\r
 /**\r
   Internal function to retrieves the 64-bit frequency in Hz.\r
 \r
@@ -29,14 +49,5 @@ InternalGetPerformanceCounterFrequency (
   VOID\r
   ) \r
 {\r
-  BOOLEAN  InterruptState;\r
-  UINT64   Count;\r
-  UINT64   Frequency;\r
-  \r
-  InterruptState = SaveAndDisableInterrupts ();\r
-  Count = GetPerformanceCounter ();\r
-  MicroSecondDelay (100);\r
-  Frequency = MultU64x32 (GetPerformanceCounter () - Count, 10000);\r
-  SetInterruptState (InterruptState);\r
-  return Frequency;\r
+  return InternalCalculateTscFrequency ();\r
 }\r