Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiServicesTablePointerLibKr7/PeiServicesTablePointer.c
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiServicesTablePointerLibKr7/PeiServicesTablePointer.c
r48674 r58459 3 3 Register 7 to store the pointer. 4 4 5 Copyright (c) 2006 - 20 08, Intel Corporation. All rights reserved.<BR>5 Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 6 6 This program and the accompanying materials 7 7 are licensed and made available under the terms and conditions of the BSD License … … 67 67 } 68 68 69 /** 70 Perform CPU specific actions required to migrate the PEI Services Table 71 pointer from temporary RAM to permanent RAM. 69 72 73 For IA32 CPUs, the PEI Services Table pointer is stored in the 4 bytes 74 immediately preceding the Interrupt Descriptor Table (IDT) in memory. 75 For X64 CPUs, the PEI Services Table pointer is stored in the 8 bytes 76 immediately preceding the Interrupt Descriptor Table (IDT) in memory. 77 For Itanium and ARM CPUs, a the PEI Services Table Pointer is stored in 78 a dedicated CPU register. This means that there is no memory storage 79 associated with storing the PEI Services Table pointer, so no additional 80 migration actions are required for Itanium or ARM CPUs. 70 81 82 **/ 83 VOID 84 EFIAPI 85 MigratePeiServicesTablePointer ( 86 VOID 87 ) 88 { 89 return; 90 } 71 91
Note:
See TracChangeset
for help on using the changeset viewer.