Changeset 105670 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/PcAtChipsetPkg
- Timestamp:
- Aug 14, 2024 1:16:30 PM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164367
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-159268 /vendor/edk2/current 103735-103757,103769-103776,129194-164365
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/PcAtChipsetPkg/HpetTimerDxe/HpetTimer.c
r99404 r105670 389 389 390 390 // 391 // Save main counter value before calling notification function 392 // that may enable interrupts and allow interrupt nesting. 393 // 394 mPreviousMainCounter = MainCounter; 395 396 // 391 397 // Call registered notification function passing in the time since the last 392 398 // interrupt in 100 ns units. 393 399 // 394 400 mTimerNotifyFunction (TimerPeriod); 401 return; 395 402 } 396 403 -
trunk/src/VBox/Devices/EFI/FirmwareNew/PcAtChipsetPkg/Library/AcpiTimerLib/DxeStandaloneMmAcpiTimerLib.c
r99404 r105670 2 2 ACPI Timer implements one instance of Timer Library. 3 3 4 Copyright (c) 2013 - 20 18, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2013 - 2023, Intel Corporation. All rights reserved.<BR> 5 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 … … 11 11 #include <Library/BaseLib.h> 12 12 #include <Library/HobLib.h> 13 14 // 15 // Cached performance counter frequency 16 // 17 static UINT64 mAcpiTimerLibTscFrequency = 0; 13 18 14 19 extern GUID mFrequencyHobGuid; … … 49 54 ); 50 55 51 //52 // Cached performance counter frequency53 //54 UINT64 mPerformanceCounterFrequency = 0;55 56 56 /** 57 57 Internal function to retrieves the 64-bit frequency in Hz. … … 67 67 ) 68 68 { 69 return m PerformanceCounterFrequency;69 return mAcpiTimerLibTscFrequency; 70 70 } 71 71 … … 93 93 GuidHob = GetFirstGuidHob (&mFrequencyHobGuid); 94 94 if (GuidHob != NULL) { 95 m PerformanceCounterFrequency = *(UINT64 *)GET_GUID_HOB_DATA (GuidHob);95 mAcpiTimerLibTscFrequency = *(UINT64 *)GET_GUID_HOB_DATA (GuidHob); 96 96 } else { 97 m PerformanceCounterFrequency = InternalCalculateTscFrequency ();97 mAcpiTimerLibTscFrequency = InternalCalculateTscFrequency (); 98 98 } 99 99 -
trunk/src/VBox/Devices/EFI/FirmwareNew/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcRtcEntry.c
r101291 r105670 123 123 @param[in] Context Event Context 124 124 **/ 125 STATIC 125 126 VOID 126 127 EFIAPI 127 LibRtcVirtualNotifyEvent (128 VirtualNotifyEvent ( 128 129 IN EFI_EVENT Event, 129 130 IN VOID *Context … … 221 222 EVT_NOTIFY_SIGNAL, 222 223 TPL_NOTIFY, 223 LibRtcVirtualNotifyEvent,224 VirtualNotifyEvent, 224 225 NULL, 225 226 &gEfiEventVirtualAddressChangeGuid,
Note:
See TracChangeset
for help on using the changeset viewer.