Changeset 99404 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg
- Timestamp:
- Apr 14, 2023 3:17:44 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156854
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 14 added
- 1 deleted
- 35 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-145445 /vendor/edk2/current 103735-103757,103769-103776,129194-156846
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.c
r80721 r99404 22 22 #include <FspStatusCode.h> 23 23 24 #define FSP_API_NOTIFY_PHASE_AFTER_PCI_ENUMERATION 24 #define FSP_API_NOTIFY_PHASE_AFTER_PCI_ENUMERATION BIT16 25 25 26 26 typedef 27 27 EFI_STATUS 28 (EFIAPI * 28 (EFIAPI *ADD_PERFORMANCE_RECORDS)( 29 29 IN CONST VOID *HobStart 30 30 ); 31 31 32 32 struct _ADD_PERFORMANCE_RECORD_PROTOCOL { 33 ADD_PERFORMANCE_RECORDS 33 ADD_PERFORMANCE_RECORDS AddPerformanceRecords; 34 34 }; 35 35 36 36 typedef struct _ADD_PERFORMANCE_RECORD_PROTOCOL ADD_PERFORMANCE_RECORD_PROTOCOL; 37 37 38 extern EFI_GUID gAddPerfRecordProtocolGuid;39 extern EFI_GUID gFspHobGuid;40 extern EFI_GUID gFspApiPerformanceGuid;41 42 static EFI_EVENT mExitBootServicesEvent= NULL;38 extern EFI_GUID gAddPerfRecordProtocolGuid; 39 extern EFI_GUID gFspHobGuid; 40 extern EFI_GUID gFspApiPerformanceGuid; 41 42 static EFI_EVENT mExitBootServicesEvent = NULL; 43 43 44 44 /** … … 54 54 EFI_STATUS 55 55 RelocateImageUnder4GIfNeeded ( 56 IN EFI_HANDLE 57 IN EFI_SYSTEM_TABLE 56 IN EFI_HANDLE ImageHandle, 57 IN EFI_SYSTEM_TABLE *SystemTable 58 58 ); 59 59 … … 71 71 ) 72 72 { 73 NOTIFY_PHASE_PARAMS NotifyPhaseParams;74 EFI_STATUS Status;75 VOID *Interface;73 NOTIFY_PHASE_PARAMS NotifyPhaseParams; 74 EFI_STATUS Status; 75 VOID *Interface; 76 76 77 77 // … … 85 85 ); 86 86 if (EFI_ERROR (Status)) { 87 return 87 return; 88 88 } 89 89 90 90 NotifyPhaseParams.Phase = EnumInitPhaseAfterPciEnumeration; 91 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_POST_PCIE_ENUM_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY);91 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_POST_PCIE_ENUM_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY); 92 92 Status = CallFspNotifyPhase (&NotifyPhaseParams); 93 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_POST_PCIE_ENUM_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT);93 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_POST_PCIE_ENUM_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT); 94 94 95 95 // … … 97 97 // 98 98 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 99 DEBUG ((DEBUG_INFO, "FSP NotifyPhase AfterPciEnumeration requested reset 0x%x\n", Status));100 CallFspWrapperResetSystem ( (UINT32)Status);99 DEBUG ((DEBUG_INFO, "FSP NotifyPhase AfterPciEnumeration requested reset 0x%x\n", Status)); 100 CallFspWrapperResetSystem (Status); 101 101 } 102 102 103 103 if (Status != EFI_SUCCESS) { 104 DEBUG ((DEBUG_ERROR, "FSP NotifyPhase AfterPciEnumeration failed, status: 0x%x\n", Status));105 } else { 106 DEBUG ((DEBUG_INFO, "FSP NotifyPhase AfterPciEnumeration Success.\n"));104 DEBUG ((DEBUG_ERROR, "FSP NotifyPhase AfterPciEnumeration failed, status: 0x%x\n", Status)); 105 } else { 106 DEBUG ((DEBUG_INFO, "FSP NotifyPhase AfterPciEnumeration Success.\n")); 107 107 } 108 108 } … … 126 126 ) 127 127 { 128 NOTIFY_PHASE_PARAMS 129 EFI_STATUS 128 NOTIFY_PHASE_PARAMS NotifyPhaseParams; 129 EFI_STATUS Status; 130 130 131 131 gBS->CloseEvent (Event); 132 132 133 133 NotifyPhaseParams.Phase = EnumInitPhaseReadyToBoot; 134 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_READY_TO_BOOT_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY);134 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_READY_TO_BOOT_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY); 135 135 Status = CallFspNotifyPhase (&NotifyPhaseParams); 136 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_READY_TO_BOOT_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT);136 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_READY_TO_BOOT_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT); 137 137 138 138 // … … 140 140 // 141 141 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 142 DEBUG ((DEBUG_INFO, "FSP NotifyPhase ReadyToBoot requested reset 0x%x\n", Status));143 CallFspWrapperResetSystem ( (UINT32)Status);142 DEBUG ((DEBUG_INFO, "FSP NotifyPhase ReadyToBoot requested reset 0x%x\n", Status)); 143 CallFspWrapperResetSystem (Status); 144 144 } 145 145 146 146 if (Status != EFI_SUCCESS) { 147 DEBUG ((DEBUG_ERROR, "FSP NotifyPhase ReadyToBoot failed, status: 0x%x\n", Status));148 } else { 149 DEBUG ((DEBUG_INFO, "FSP NotifyPhase ReadyToBoot Success.\n"));147 DEBUG ((DEBUG_ERROR, "FSP NotifyPhase ReadyToBoot failed, status: 0x%x\n", Status)); 148 } else { 149 DEBUG ((DEBUG_INFO, "FSP NotifyPhase ReadyToBoot Success.\n")); 150 150 } 151 151 } … … 167 167 ) 168 168 { 169 NOTIFY_PHASE_PARAMS 170 EFI_STATUS 171 ADD_PERFORMANCE_RECORD_PROTOCOL 172 EFI_PEI_HOB_POINTERS 173 VOID 169 NOTIFY_PHASE_PARAMS NotifyPhaseParams; 170 EFI_STATUS Status; 171 ADD_PERFORMANCE_RECORD_PROTOCOL *AddPerfRecordInterface; 172 EFI_PEI_HOB_POINTERS Hob; 173 VOID **FspHobListPtr; 174 174 175 175 gBS->CloseEvent (Event); 176 176 177 177 NotifyPhaseParams.Phase = EnumInitPhaseEndOfFirmware; 178 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_END_OF_FIRMWARE_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY);178 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_END_OF_FIRMWARE_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY); 179 179 Status = CallFspNotifyPhase (&NotifyPhaseParams); 180 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_END_OF_FIRMWARE_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT);180 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_END_OF_FIRMWARE_NOTIFICATION | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT); 181 181 182 182 // … … 184 184 // 185 185 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 186 DEBUG ((DEBUG_INFO, "FSP NotifyPhase EndOfFirmware requested reset 0x%x\n", Status));187 CallFspWrapperResetSystem ( (UINT32)Status);186 DEBUG ((DEBUG_INFO, "FSP NotifyPhase EndOfFirmware requested reset 0x%x\n", Status)); 187 CallFspWrapperResetSystem (Status); 188 188 } 189 189 190 190 if (Status != EFI_SUCCESS) { 191 DEBUG((DEBUG_ERROR, "FSP NotifyPhase EndOfFirmware failed, status: 0x%x\n", Status)); 192 } else { 193 DEBUG((DEBUG_INFO, "FSP NotifyPhase EndOfFirmware Success.\n")); 194 } 191 DEBUG ((DEBUG_ERROR, "FSP NotifyPhase EndOfFirmware failed, status: 0x%x\n", Status)); 192 } else { 193 DEBUG ((DEBUG_INFO, "FSP NotifyPhase EndOfFirmware Success.\n")); 194 } 195 195 196 Status = gBS->LocateProtocol ( 196 197 &gAddPerfRecordProtocolGuid, 197 198 NULL, 198 (VOID **)&AddPerfRecordInterface199 (VOID **)&AddPerfRecordInterface 199 200 ); 200 201 if (EFI_ERROR (Status)) { 201 DEBUG ((DEBUG_INFO, "gAddPerfRecordProtocolGuid - Locate protocol failed\n"));202 DEBUG ((DEBUG_INFO, "gAddPerfRecordProtocolGuid - Locate protocol failed\n")); 202 203 return; 203 204 } else { … … 225 226 EFIAPI 226 227 FspWrapperNotifyDxeEntryPoint ( 227 IN EFI_HANDLE 228 IN EFI_SYSTEM_TABLE 229 ) 230 { 231 EFI_STATUS Status;232 EFI_EVENT ReadyToBootEvent;233 VOID *Registration;234 EFI_EVENT ProtocolNotifyEvent;235 UINT32 FspApiMask;228 IN EFI_HANDLE ImageHandle, 229 IN EFI_SYSTEM_TABLE *SystemTable 230 ) 231 { 232 EFI_STATUS Status; 233 EFI_EVENT ReadyToBootEvent; 234 VOID *Registration; 235 EFI_EVENT ProtocolNotifyEvent; 236 UINT32 FspApiMask; 236 237 237 238 // … … 275 276 return EFI_SUCCESS; 276 277 } 277 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspWrapperNotifyDxe/LoadBelow4G.c
r80721 r99404 30 30 EFI_STATUS 31 31 RelocateImageUnder4GIfNeeded ( 32 IN EFI_HANDLE 33 IN EFI_SYSTEM_TABLE 32 IN EFI_HANDLE ImageHandle, 33 IN EFI_SYSTEM_TABLE *SystemTable 34 34 ) 35 35 { 36 EFI_STATUS 37 UINT8 38 UINTN 39 EFI_HANDLE 40 UINTN 41 EFI_PHYSICAL_ADDRESS 42 PE_COFF_LOADER_IMAGE_CONTEXT 43 VOID 36 EFI_STATUS Status; 37 UINT8 *Buffer; 38 UINTN BufferSize; 39 EFI_HANDLE NewImageHandle; 40 UINTN Pages; 41 EFI_PHYSICAL_ADDRESS FfsBuffer; 42 PE_COFF_LOADER_IMAGE_CONTEXT ImageContext; 43 VOID *Interface; 44 44 45 45 // … … 65 65 // 66 66 NewImageHandle = NULL; 67 Status = gBS->InstallProtocolInterface (68 &NewImageHandle,69 &gEfiCallerIdGuid,70 EFI_NATIVE_INTERFACE,71 NULL72 );67 Status = gBS->InstallProtocolInterface ( 68 &NewImageHandle, 69 &gEfiCallerIdGuid, 70 EFI_NATIVE_INTERFACE, 71 NULL 72 ); 73 73 ASSERT_EFI_ERROR (Status); 74 74 … … 76 76 // Reload image itself to <4G mem 77 77 // 78 Status = GetSectionFromAnyFv 78 Status = GetSectionFromAnyFv ( 79 79 &gEfiCallerIdGuid, 80 80 EFI_SECTION_PE32, 81 81 0, 82 (VOID **) 82 (VOID **)&Buffer, 83 83 &BufferSize 84 84 ); … … 92 92 ASSERT_EFI_ERROR (Status); 93 93 if (ImageContext.SectionAlignment > EFI_PAGE_SIZE) { 94 Pages = EFI_SIZE_TO_PAGES ((UINTN) 94 Pages = EFI_SIZE_TO_PAGES ((UINTN)(ImageContext.ImageSize + ImageContext.SectionAlignment)); 95 95 } else { 96 Pages = EFI_SIZE_TO_PAGES ((UINTN) 96 Pages = EFI_SIZE_TO_PAGES ((UINTN)ImageContext.ImageSize); 97 97 } 98 98 99 FfsBuffer = 0xFFFFFFFF; 99 Status = gBS->AllocatePages (100 AllocateMaxAddress,101 EfiBootServicesCode,102 Pages,103 &FfsBuffer104 );100 Status = gBS->AllocatePages ( 101 AllocateMaxAddress, 102 EfiBootServicesCode, 103 Pages, 104 &FfsBuffer 105 ); 105 106 ASSERT_EFI_ERROR (Status); 106 107 ImageContext.ImageAddress = (PHYSICAL_ADDRESS)(UINTN)FfsBuffer; … … 133 134 134 135 DEBUG ((DEBUG_INFO, "Loading driver at 0x%08x EntryPoint=0x%08x\n", (UINTN)ImageContext.ImageAddress, (UINTN)ImageContext.EntryPoint)); 135 Status = ((EFI_IMAGE_ENTRY_POINT)(UINTN)(ImageContext.EntryPoint)) 136 Status = ((EFI_IMAGE_ENTRY_POINT)(UINTN)(ImageContext.EntryPoint))(NewImageHandle, gST); 136 137 if (EFI_ERROR (Status)) { 137 138 DEBUG ((DEBUG_ERROR, "Error: Image at 0x%08x start failed: %r\n", ImageContext.ImageAddress, Status)); -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.c
r89983 r99404 4 4 notify to call FspSiliconInit API. 5 5 6 Copyright (c) 2014 - 202 0, Intel Corporation. All rights reserved.<BR>6 Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 7 7 SPDX-License-Identifier: BSD-2-Clause-Patent 8 8 9 9 **/ 10 11 10 12 11 #include <PiPei.h> … … 25 24 #include <Library/FspWrapperPlatformLib.h> 26 25 #include <Library/FspWrapperHobProcessLib.h> 26 #include <Library/FspWrapperMultiPhaseProcessLib.h> 27 27 #include <Library/FspWrapperApiLib.h> 28 28 #include <Library/FspMeasurementLib.h> … … 37 37 #include <FspEas.h> 38 38 #include <FspStatusCode.h> 39 40 extern EFI_GUID gFspHobGuid; 39 #include <FspGlobalData.h> 40 #include <Library/FspCommonLib.h> 41 42 extern EFI_GUID gFspHobGuid; 43 44 /** 45 Get the FSP M UPD Data address 46 47 @return FSP-M UPD Data Address 48 **/ 49 UINTN 50 GetFspmUpdDataAddress ( 51 VOID 52 ) 53 { 54 if (PcdGet64 (PcdFspmUpdDataAddress64) != 0) { 55 return (UINTN)PcdGet64 (PcdFspmUpdDataAddress64); 56 } else { 57 return (UINTN)PcdGet32 (PcdFspmUpdDataAddress); 58 } 59 } 41 60 42 61 /** … … 50 69 ) 51 70 { 52 FSP_INFO_HEADER 53 EFI_STATUS 54 UINT64 55 VOID 56 VOID 57 FSPM_UPD_COMMON*FspmUpdDataPtr;58 UINTN 71 FSP_INFO_HEADER *FspmHeaderPtr; 72 EFI_STATUS Status; 73 UINT64 TimeStampCounterStart; 74 VOID *FspHobListPtr; 75 VOID *HobData; 76 VOID *FspmUpdDataPtr; 77 UINTN *SourceData; 59 78 60 79 DEBUG ((DEBUG_INFO, "PeiFspMemoryInit enter\n")); 61 80 62 FspHobListPtr = NULL;81 FspHobListPtr = NULL; 63 82 FspmUpdDataPtr = NULL; 64 83 65 FspmHeaderPtr = (FSP_INFO_HEADER *) 84 FspmHeaderPtr = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress)); 66 85 DEBUG ((DEBUG_INFO, "FspmHeaderPtr - 0x%x\n", FspmHeaderPtr)); 67 86 if (FspmHeaderPtr == NULL) { … … 69 88 } 70 89 71 if ( PcdGet32 (PcdFspmUpdDataAddress) == 0&& (FspmHeaderPtr->CfgRegionSize != 0) && (FspmHeaderPtr->CfgRegionOffset != 0)) {90 if ((GetFspmUpdDataAddress () == 0) && (FspmHeaderPtr->CfgRegionSize != 0) && (FspmHeaderPtr->CfgRegionOffset != 0)) { 72 91 // 73 92 // Copy default FSP-M UPD data from Flash 74 93 // 75 FspmUpdDataPtr = (FSPM_UPD_COMMON *)AllocateZeroPool ((UINTN)FspmHeaderPtr->CfgRegionSize);94 FspmUpdDataPtr = AllocateZeroPool ((UINTN)FspmHeaderPtr->CfgRegionSize); 76 95 ASSERT (FspmUpdDataPtr != NULL); 77 96 SourceData = (UINTN *)((UINTN)FspmHeaderPtr->ImageBase + (UINTN)FspmHeaderPtr->CfgRegionOffset); … … 81 100 // External UPD is ready, get the buffer from PCD pointer. 82 101 // 83 FspmUpdDataPtr = ( FSPM_UPD_COMMON *)PcdGet32 (PcdFspmUpdDataAddress);102 FspmUpdDataPtr = (VOID *)GetFspmUpdDataAddress (); 84 103 ASSERT (FspmUpdDataPtr != NULL); 85 104 } 86 105 87 106 DEBUG ((DEBUG_INFO, "UpdateFspmUpdData enter\n")); 88 UpdateFspmUpdData ((VOID *)FspmUpdDataPtr); 89 DEBUG ((DEBUG_INFO, " NvsBufferPtr - 0x%x\n", FspmUpdDataPtr->FspmArchUpd.NvsBufferPtr)); 90 DEBUG ((DEBUG_INFO, " StackBase - 0x%x\n", FspmUpdDataPtr->FspmArchUpd.StackBase)); 91 DEBUG ((DEBUG_INFO, " StackSize - 0x%x\n", FspmUpdDataPtr->FspmArchUpd.StackSize)); 92 DEBUG ((DEBUG_INFO, " BootLoaderTolumSize - 0x%x\n", FspmUpdDataPtr->FspmArchUpd.BootLoaderTolumSize)); 93 DEBUG ((DEBUG_INFO, " BootMode - 0x%x\n", FspmUpdDataPtr->FspmArchUpd.BootMode)); 107 UpdateFspmUpdData (FspmUpdDataPtr); 108 if (((FSPM_UPD_COMMON *)FspmUpdDataPtr)->FspmArchUpd.Revision >= 3) { 109 DEBUG ((DEBUG_INFO, " StackBase - 0x%lx\n", ((FSPM_UPD_COMMON_FSP24 *)FspmUpdDataPtr)->FspmArchUpd.StackBase)); 110 DEBUG ((DEBUG_INFO, " StackSize - 0x%lx\n", ((FSPM_UPD_COMMON_FSP24 *)FspmUpdDataPtr)->FspmArchUpd.StackSize)); 111 DEBUG ((DEBUG_INFO, " BootLoaderTolumSize - 0x%x\n", ((FSPM_UPD_COMMON_FSP24 *)FspmUpdDataPtr)->FspmArchUpd.BootLoaderTolumSize)); 112 DEBUG ((DEBUG_INFO, " BootMode - 0x%x\n", ((FSPM_UPD_COMMON_FSP24 *)FspmUpdDataPtr)->FspmArchUpd.BootMode)); 113 } else { 114 DEBUG ((DEBUG_INFO, " NvsBufferPtr - 0x%x\n", ((FSPM_UPD_COMMON *)FspmUpdDataPtr)->FspmArchUpd.NvsBufferPtr)); 115 DEBUG ((DEBUG_INFO, " StackBase - 0x%x\n", ((FSPM_UPD_COMMON *)FspmUpdDataPtr)->FspmArchUpd.StackBase)); 116 DEBUG ((DEBUG_INFO, " StackSize - 0x%x\n", ((FSPM_UPD_COMMON *)FspmUpdDataPtr)->FspmArchUpd.StackSize)); 117 DEBUG ((DEBUG_INFO, " BootLoaderTolumSize - 0x%x\n", ((FSPM_UPD_COMMON *)FspmUpdDataPtr)->FspmArchUpd.BootLoaderTolumSize)); 118 DEBUG ((DEBUG_INFO, " BootMode - 0x%x\n", ((FSPM_UPD_COMMON *)FspmUpdDataPtr)->FspmArchUpd.BootMode)); 119 } 120 94 121 DEBUG ((DEBUG_INFO, " HobListPtr - 0x%x\n", &FspHobListPtr)); 95 122 96 123 TimeStampCounterStart = AsmReadTsc (); 97 Status = CallFspMemoryInit (FspmUpdDataPtr, &FspHobListPtr); 124 Status = CallFspMemoryInit (FspmUpdDataPtr, &FspHobListPtr); 125 126 // 127 // Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status 128 // 129 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 130 DEBUG ((DEBUG_INFO, "FspMemoryInitApi requested reset %r\n", Status)); 131 CallFspWrapperResetSystem (Status); 132 } 133 134 if ((Status != FSP_STATUS_VARIABLE_REQUEST) && EFI_ERROR (Status)) { 135 DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspMemoryInitApi(), Status = %r\n", Status)); 136 ASSERT_EFI_ERROR (Status); 137 } 138 139 DEBUG ((DEBUG_INFO, "FspMemoryInit status: %r\n", Status)); 140 if (Status == FSP_STATUS_VARIABLE_REQUEST) { 141 // 142 // call to Variable request handler 143 // 144 FspWrapperVariableRequestHandler (&FspHobListPtr, FspMultiPhaseMemInitApiIndex); 145 } 146 147 // 148 // See if MultiPhase process is required or not 149 // 150 FspWrapperMultiPhaseHandler (&FspHobListPtr, FspMultiPhaseMemInitApiIndex); // FspM MultiPhase 151 152 // 98 153 // Create hobs after memory initialization and not in temp RAM. Hence passing the recorded timestamp here 99 PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, TimeStampCounterStart, FSP_STATUS_CODE_MEMORY_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY); 100 PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_MEMORY_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT); 154 // 155 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, TimeStampCounterStart, FSP_STATUS_CODE_MEMORY_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY); 156 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_MEMORY_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT); 101 157 DEBUG ((DEBUG_INFO, "Total time spent executing FspMemoryInitApi: %d millisecond\n", DivU64x32 (GetTimeInNanoSecond (AsmReadTsc () - TimeStampCounterStart), 1000000))); 102 103 //104 // Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status105 //106 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) {107 DEBUG((DEBUG_INFO, "FspMemoryInitApi requested reset 0x%x\n", Status));108 CallFspWrapperResetSystem ((UINT32)Status);109 }110 111 if (EFI_ERROR(Status)) {112 DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspMemoryInitApi(), Status = %r\n", Status));113 }114 DEBUG((DEBUG_INFO, "FspMemoryInit status: 0x%x\n", Status));115 ASSERT_EFI_ERROR (Status);116 117 158 118 159 Status = TestFspMemoryInitApiOutput (FspmUpdDataPtr, &FspHobListPtr); … … 131 172 // 132 173 HobData = BuildGuidHob ( 133 &gFspHobGuid,134 sizeof (VOID *)135 );174 &gFspHobGuid, 175 sizeof (VOID *) 176 ); 136 177 ASSERT (HobData != NULL); 137 178 CopyMem (HobData, &FspHobListPtr, sizeof (FspHobListPtr)); … … 151 192 ) 152 193 { 153 EFI_STATUS Status;154 EFI_PEI_FIRMWARE_VOLUME_INFO_MEASUREMENT_EXCLUDED_PPI *MeasurementExcludedFvPpi;155 EFI_PEI_PPI_DESCRIPTOR *MeasurementExcludedPpiList;156 157 MeasurementExcludedFvPpi = AllocatePool (sizeof (*MeasurementExcludedFvPpi));158 ASSERT (MeasurementExcludedFvPpi != NULL);159 MeasurementExcludedFvPpi->Count = 1;160 MeasurementExcludedFvPpi->Fv[0].FvBase = PcdGet32 (PcdFspmBaseAddress);161 MeasurementExcludedFvPpi->Fv[0].FvLength = ((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN)PcdGet32 (PcdFspmBaseAddress))->FvLength;162 163 MeasurementExcludedPpiList = AllocatePool (sizeof (*MeasurementExcludedPpiList));164 ASSERT (MeasurementExcludedPpiList != NULL);194 EFI_STATUS Status; 195 EFI_PEI_FIRMWARE_VOLUME_INFO_MEASUREMENT_EXCLUDED_PPI *MeasurementExcludedFvPpi; 196 EFI_PEI_PPI_DESCRIPTOR *MeasurementExcludedPpiList; 197 198 MeasurementExcludedFvPpi = AllocatePool (sizeof (*MeasurementExcludedFvPpi)); 199 ASSERT (MeasurementExcludedFvPpi != NULL); 200 MeasurementExcludedFvPpi->Count = 1; 201 MeasurementExcludedFvPpi->Fv[0].FvBase = PcdGet32 (PcdFspmBaseAddress); 202 MeasurementExcludedFvPpi->Fv[0].FvLength = ((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)PcdGet32 (PcdFspmBaseAddress))->FvLength; 203 204 MeasurementExcludedPpiList = AllocatePool (sizeof (*MeasurementExcludedPpiList)); 205 ASSERT (MeasurementExcludedPpiList != NULL); 165 206 MeasurementExcludedPpiList->Flags = EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST; 166 207 MeasurementExcludedPpiList->Guid = &gEfiPeiFirmwareVolumeInfoMeasurementExcludedPpiGuid; … … 178 219 PeiServicesInstallFvInfoPpi ( 179 220 NULL, 180 (VOID *)(UINTN) 181 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN)PcdGet32 (PcdFspmBaseAddress))->FvLength,221 (VOID *)(UINTN)PcdGet32 (PcdFspmBaseAddress), 222 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)PcdGet32 (PcdFspmBaseAddress))->FvLength, 182 223 NULL, 183 224 NULL … … 201 242 EFIAPI 202 243 TcgPpiNotify ( 203 IN EFI_PEI_SERVICES **PeiServices,204 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,205 IN VOID *Ppi244 IN EFI_PEI_SERVICES **PeiServices, 245 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 246 IN VOID *Ppi 206 247 ); 207 248 208 EFI_PEI_NOTIFY_DESCRIPTOR mTcgPpiNotifyDesc = {249 EFI_PEI_NOTIFY_DESCRIPTOR mTcgPpiNotifyDesc = { 209 250 (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST), 210 251 &gEdkiiTcgPpiGuid, … … 225 266 EFIAPI 226 267 TcgPpiNotify ( 227 IN EFI_PEI_SERVICES **PeiServices,228 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,229 IN VOID *Ppi230 ) 231 { 232 UINT32 268 IN EFI_PEI_SERVICES **PeiServices, 269 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 270 IN VOID *Ppi 271 ) 272 { 273 UINT32 FspMeasureMask; 233 274 234 275 DEBUG ((DEBUG_INFO, "TcgPpiNotify FSPM\n")); … … 237 278 238 279 if ((FspMeasureMask & FSP_MEASURE_FSPT) != 0) { 239 MeasureFspFirmwareBlob (0, "FSPT", PcdGet32(PcdFsptBaseAddress), 240 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN) PcdGet32 (PcdFsptBaseAddress))->FvLength); 280 MeasureFspFirmwareBlob ( 281 0, 282 "FSPT", 283 PcdGet32 (PcdFsptBaseAddress), 284 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)PcdGet32 (PcdFsptBaseAddress))->FvLength 285 ); 241 286 } 242 287 243 288 if ((FspMeasureMask & FSP_MEASURE_FSPM) != 0) { 244 MeasureFspFirmwareBlob (0, "FSPM", PcdGet32(PcdFspmBaseAddress), 245 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN) PcdGet32 (PcdFspmBaseAddress))->FvLength); 289 MeasureFspFirmwareBlob ( 290 0, 291 "FSPM", 292 PcdGet32 (PcdFspmBaseAddress), 293 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)PcdGet32 (PcdFspmBaseAddress))->FvLength 294 ); 246 295 } 247 296 … … 266 315 EFI_STATUS Status; 267 316 268 DEBUG ((DEBUG_INFO, "FspmWrapperPeimEntryPoint\n"));317 DEBUG ((DEBUG_INFO, "FspmWrapperPeimEntryPoint\n")); 269 318 270 319 Status = PeiServicesNotifyPpi (&mTcgPpiNotifyDesc); -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf
r89983 r99404 7 7 # notify to call FspSiliconInit API. 8 8 # 9 # Copyright (c) 2014 - 202 0, Intel Corporation. All rights reserved.<BR>9 # Copyright (c) 2014 - 2021, Intel Corporation. All rights reserved.<BR> 10 10 # 11 11 # SPDX-License-Identifier: BSD-2-Clause-Patent … … 38 38 FspWrapperPlatformLib 39 39 FspWrapperHobProcessLib 40 CpuLib 40 41 UefiCpuLib 41 42 PeCoffGetEntryPointLib … … 46 47 FspWrapperApiTestLib 47 48 FspMeasurementLib 49 FspWrapperMultiPhaseProcessLib 48 50 49 51 [Packages] … … 61 63 gIntelFsp2WrapperTokenSpaceGuid.PcdFsptBaseAddress ## CONSUMES 62 64 gIntelFsp2WrapperTokenSpaceGuid.PcdFspMeasurementConfig ## CONSUMES 65 gIntelFsp2WrapperTokenSpaceGuid.PcdFspmUpdDataAddress64 ## CONSUMES 63 66 64 67 [Sources] -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.c
r89983 r99404 4 4 notify to call FspSiliconInit API. 5 5 6 Copyright (c) 2014 - 202 0, Intel Corporation. All rights reserved.<BR>6 Copyright (c) 2014 - 2021, Intel Corporation. All rights reserved.<BR> 7 7 SPDX-License-Identifier: BSD-2-Clause-Patent 8 8 … … 22 22 #include <Library/FspWrapperPlatformLib.h> 23 23 #include <Library/FspWrapperHobProcessLib.h> 24 #include <Library/FspWrapperMultiPhaseProcessLib.h> 24 25 #include <Library/TimerLib.h> 25 26 #include <Library/PerformanceLib.h> … … 37 38 #include <FspEas.h> 38 39 #include <FspStatusCode.h> 39 40 extern EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc; 41 extern EFI_GUID gFspHobGuid; 40 #include <FspGlobalData.h> 41 42 extern EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc; 43 extern EFI_GUID gFspHobGuid; 42 44 43 45 /** … … 53 55 EFI_STATUS 54 56 EFIAPI 55 S3EndOfPeiNotify (56 IN EFI_PEI_SERVICES **PeiServices,57 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,58 IN VOID *Ppi57 S3EndOfPeiNotify ( 58 IN EFI_PEI_SERVICES **PeiServices, 59 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 60 IN VOID *Ppi 59 61 ); 60 62 61 EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc = {63 EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc = { 62 64 (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST), 63 65 &gEfiEndOfPeiSignalPpiGuid, … … 77 79 EFI_STATUS 78 80 EFIAPI 79 S3EndOfPeiNotify (80 IN EFI_PEI_SERVICES **PeiServices,81 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,82 IN VOID *Ppi83 ) 84 { 85 NOTIFY_PHASE_PARAMS NotifyPhaseParams;86 EFI_STATUS Status;87 88 DEBUG ((DEBUG_INFO, "S3EndOfPeiNotify enter\n"));81 S3EndOfPeiNotify ( 82 IN EFI_PEI_SERVICES **PeiServices, 83 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 84 IN VOID *Ppi 85 ) 86 { 87 NOTIFY_PHASE_PARAMS NotifyPhaseParams; 88 EFI_STATUS Status; 89 90 DEBUG ((DEBUG_INFO, "S3EndOfPeiNotify enter\n")); 89 91 90 92 NotifyPhaseParams.Phase = EnumInitPhaseAfterPciEnumeration; 91 Status = CallFspNotifyPhase (&NotifyPhaseParams);92 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration status: 0x%x\n", Status));93 Status = CallFspNotifyPhase (&NotifyPhaseParams); 94 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration status: 0x%x\n", Status)); 93 95 94 96 // … … 96 98 // 97 99 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 98 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration requested reset 0x%x\n", Status));99 CallFspWrapperResetSystem ( (UINT32)Status);100 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration requested reset 0x%x\n", Status)); 101 CallFspWrapperResetSystem (Status); 100 102 } 101 103 102 104 NotifyPhaseParams.Phase = EnumInitPhaseReadyToBoot; 103 Status = CallFspNotifyPhase (&NotifyPhaseParams);104 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot status: 0x%x\n", Status));105 Status = CallFspNotifyPhase (&NotifyPhaseParams); 106 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot status: 0x%x\n", Status)); 105 107 106 108 // … … 108 110 // 109 111 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 110 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot requested reset 0x%x\n", Status));111 CallFspWrapperResetSystem ( (UINT32)Status);112 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot requested reset 0x%x\n", Status)); 113 CallFspWrapperResetSystem (Status); 112 114 } 113 115 114 116 NotifyPhaseParams.Phase = EnumInitPhaseEndOfFirmware; 115 Status = CallFspNotifyPhase (&NotifyPhaseParams);116 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware status: 0x%x\n", Status));117 Status = CallFspNotifyPhase (&NotifyPhaseParams); 118 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware status: 0x%x\n", Status)); 117 119 118 120 // … … 120 122 // 121 123 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 122 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware requested reset 0x%x\n", Status));123 CallFspWrapperResetSystem ( (UINT32)Status);124 DEBUG ((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware requested reset 0x%x\n", Status)); 125 CallFspWrapperResetSystem (Status); 124 126 } 125 127 … … 139 141 EFIAPI 140 142 FspSiliconInitDoneGetFspHobList ( 141 IN CONST EFI_PEI_SERVICES 142 IN FSP_SILICON_INIT_DONE_PPI 143 OUT VOID 143 IN CONST EFI_PEI_SERVICES **PeiServices, 144 IN FSP_SILICON_INIT_DONE_PPI *This, 145 OUT VOID **FspHobList 144 146 ); 145 147 146 FSP_SILICON_INIT_DONE_PPI mFspSiliconInitDonePpi = {148 FSP_SILICON_INIT_DONE_PPI mFspSiliconInitDonePpi = { 147 149 FspSiliconInitDoneGetFspHobList 148 150 }; 149 151 150 EFI_PEI_PPI_DESCRIPTOR 152 EFI_PEI_PPI_DESCRIPTOR mPeiFspSiliconInitDonePpi = { 151 153 EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST, 152 154 &gFspSiliconInitDonePpiGuid, … … 166 168 EFIAPI 167 169 FspSiliconInitDoneGetFspHobList ( 168 IN CONST EFI_PEI_SERVICES 169 IN FSP_SILICON_INIT_DONE_PPI 170 OUT VOID 171 ) 172 { 173 EFI_HOB_GUID_TYPE 170 IN CONST EFI_PEI_SERVICES **PeiServices, 171 IN FSP_SILICON_INIT_DONE_PPI *This, 172 OUT VOID **FspHobList 173 ) 174 { 175 EFI_HOB_GUID_TYPE *GuidHob; 174 176 175 177 GuidHob = GetFirstGuidHob (&gFspHobGuid); 176 178 if (GuidHob != NULL) { 177 *FspHobList = *(VOID **)GET_GUID_HOB_DATA (GuidHob);179 *FspHobList = *(VOID **)GET_GUID_HOB_DATA (GuidHob); 178 180 return EFI_SUCCESS; 179 181 } else { … … 183 185 184 186 /** 187 Get the FSP S UPD Data address 188 189 @return FSP-S UPD Data Address 190 **/ 191 UINTN 192 GetFspsUpdDataAddress ( 193 VOID 194 ) 195 { 196 if (PcdGet64 (PcdFspsUpdDataAddress64) != 0) { 197 return (UINTN)PcdGet64 (PcdFspsUpdDataAddress64); 198 } else { 199 return (UINTN)PcdGet32 (PcdFspsUpdDataAddress); 200 } 201 } 202 203 /** 185 204 This function is for FSP dispatch mode to perform post FSP-S process. 186 205 … … 195 214 EFIAPI 196 215 FspsWrapperEndOfPeiNotify ( 197 IN EFI_PEI_SERVICES **PeiServices,198 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,199 IN VOID *Ppi216 IN EFI_PEI_SERVICES **PeiServices, 217 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 218 IN VOID *Ppi 200 219 ) 201 220 { … … 214 233 // 215 234 Status = PeiServicesInstallPpi (&mPeiFspSiliconInitDonePpi); 216 ASSERT_EFI_ERROR (Status);235 ASSERT_EFI_ERROR (Status); 217 236 218 237 return Status; 219 238 } 220 239 221 EFI_PEI_NOTIFY_DESCRIPTOR mFspsWrapperEndOfPeiNotifyDesc = {240 EFI_PEI_NOTIFY_DESCRIPTOR mFspsWrapperEndOfPeiNotifyDesc = { 222 241 (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST), 223 242 &gEfiEndOfPeiSignalPpiGuid, … … 238 257 EFIAPI 239 258 PeiMemoryDiscoveredNotify ( 240 IN EFI_PEI_SERVICES **PeiServices,241 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,242 IN VOID *Ppi259 IN EFI_PEI_SERVICES **PeiServices, 260 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 261 IN VOID *Ppi 243 262 ); 244 263 245 EFI_PEI_NOTIFY_DESCRIPTOR mPeiMemoryDiscoveredNotifyDesc = {264 EFI_PEI_NOTIFY_DESCRIPTOR mPeiMemoryDiscoveredNotifyDesc = { 246 265 (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST), 247 266 &gEfiPeiMemoryDiscoveredPpiGuid, … … 262 281 EFIAPI 263 282 PeiMemoryDiscoveredNotify ( 264 IN EFI_PEI_SERVICES **PeiServices,265 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,266 IN VOID *Ppi267 ) 268 { 269 FSP_INFO_HEADER 270 UINT64 271 EFI_STATUS 272 VOID 273 EFI_HOB_GUID_TYPE 274 FSPS_UPD_COMMON 275 UINTN 283 IN EFI_PEI_SERVICES **PeiServices, 284 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 285 IN VOID *Ppi 286 ) 287 { 288 FSP_INFO_HEADER *FspsHeaderPtr; 289 UINT64 TimeStampCounterStart; 290 EFI_STATUS Status; 291 VOID *FspHobListPtr; 292 EFI_HOB_GUID_TYPE *GuidHob; 293 FSPS_UPD_COMMON *FspsUpdDataPtr; 294 UINTN *SourceData; 276 295 277 296 DEBUG ((DEBUG_INFO, "PeiMemoryDiscoveredNotify enter\n")); … … 284 303 } 285 304 286 if ( PcdGet32 (PcdFspsUpdDataAddress) == 0&& (FspsHeaderPtr->CfgRegionSize != 0) && (FspsHeaderPtr->CfgRegionOffset != 0)) {305 if ((GetFspsUpdDataAddress () == 0) && (FspsHeaderPtr->CfgRegionSize != 0) && (FspsHeaderPtr->CfgRegionOffset != 0)) { 287 306 // 288 307 // Copy default FSP-S UPD data from Flash … … 293 312 CopyMem (FspsUpdDataPtr, SourceData, (UINTN)FspsHeaderPtr->CfgRegionSize); 294 313 } else { 295 FspsUpdDataPtr = (FSPS_UPD_COMMON *) PcdGet32 (PcdFspsUpdDataAddress);314 FspsUpdDataPtr = (FSPS_UPD_COMMON *)GetFspsUpdDataAddress (); 296 315 ASSERT (FspsUpdDataPtr != NULL); 297 316 } … … 300 319 301 320 TimeStampCounterStart = AsmReadTsc (); 302 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_SILICON_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY);321 PERF_START_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_SILICON_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY); 303 322 Status = CallFspSiliconInit ((VOID *)FspsUpdDataPtr); 304 PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_SILICON_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT); 323 324 // 325 // Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status 326 // 327 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) { 328 DEBUG ((DEBUG_INFO, "FspSiliconInitApi requested reset %r\n", Status)); 329 CallFspWrapperResetSystem (Status); 330 } 331 332 if ((Status != FSP_STATUS_VARIABLE_REQUEST) && EFI_ERROR (Status)) { 333 DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspSiliconInitApi(), Status = %r\n", Status)); 334 ASSERT_EFI_ERROR (Status); 335 } 336 337 DEBUG ((DEBUG_INFO, "FspSiliconInit status: %r\n", Status)); 338 339 if (Status == FSP_STATUS_VARIABLE_REQUEST) { 340 // 341 // call to Variable request handler 342 // 343 FspWrapperVariableRequestHandler (&FspHobListPtr, FspMultiPhaseSiInitApiIndex); 344 } 345 346 // 347 // See if MultiPhase process is required or not 348 // 349 FspWrapperMultiPhaseHandler (&FspHobListPtr, FspMultiPhaseSiInitApiIndex); // FspS MultiPhase 350 351 PERF_END_EX (&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_SILICON_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT); 305 352 DEBUG ((DEBUG_INFO, "Total time spent executing FspSiliconInitApi: %d millisecond\n", DivU64x32 (GetTimeInNanoSecond (AsmReadTsc () - TimeStampCounterStart), 1000000))); 306 307 //308 // Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status309 //310 if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) {311 DEBUG((DEBUG_INFO, "FspSiliconInitApi requested reset 0x%x\n", Status));312 CallFspWrapperResetSystem ((UINT32)Status);313 }314 315 if (EFI_ERROR(Status)) {316 DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspSiliconInitApi(), Status = %r\n", Status));317 }318 DEBUG((DEBUG_INFO, "FspSiliconInit status: 0x%x\n", Status));319 ASSERT_EFI_ERROR (Status);320 353 321 354 Status = TestFspSiliconInitApiOutput ((VOID *)NULL); … … 337 370 // 338 371 Status = PeiServicesInstallPpi (&mPeiFspSiliconInitDonePpi); 339 ASSERT_EFI_ERROR (Status);372 ASSERT_EFI_ERROR (Status); 340 373 341 374 return Status; … … 352 385 ) 353 386 { 354 EFI_STATUS 355 EFI_BOOT_MODE 387 EFI_STATUS Status; 388 EFI_BOOT_MODE BootMode; 356 389 357 390 // … … 383 416 ) 384 417 { 385 EFI_STATUS Status;386 EFI_PEI_FIRMWARE_VOLUME_INFO_MEASUREMENT_EXCLUDED_PPI *MeasurementExcludedFvPpi;387 EFI_PEI_PPI_DESCRIPTOR *MeasurementExcludedPpiList;388 389 MeasurementExcludedFvPpi = AllocatePool (sizeof (*MeasurementExcludedFvPpi));390 ASSERT (MeasurementExcludedFvPpi != NULL);391 MeasurementExcludedFvPpi->Count = 1;392 MeasurementExcludedFvPpi->Fv[0].FvBase = PcdGet32 (PcdFspsBaseAddress);393 MeasurementExcludedFvPpi->Fv[0].FvLength = ((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN)PcdGet32 (PcdFspsBaseAddress))->FvLength;394 395 MeasurementExcludedPpiList = AllocatePool (sizeof (*MeasurementExcludedPpiList));396 ASSERT (MeasurementExcludedPpiList != NULL);418 EFI_STATUS Status; 419 EFI_PEI_FIRMWARE_VOLUME_INFO_MEASUREMENT_EXCLUDED_PPI *MeasurementExcludedFvPpi; 420 EFI_PEI_PPI_DESCRIPTOR *MeasurementExcludedPpiList; 421 422 MeasurementExcludedFvPpi = AllocatePool (sizeof (*MeasurementExcludedFvPpi)); 423 ASSERT (MeasurementExcludedFvPpi != NULL); 424 MeasurementExcludedFvPpi->Count = 1; 425 MeasurementExcludedFvPpi->Fv[0].FvBase = PcdGet32 (PcdFspsBaseAddress); 426 MeasurementExcludedFvPpi->Fv[0].FvLength = ((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)PcdGet32 (PcdFspsBaseAddress))->FvLength; 427 428 MeasurementExcludedPpiList = AllocatePool (sizeof (*MeasurementExcludedPpiList)); 429 ASSERT (MeasurementExcludedPpiList != NULL); 397 430 MeasurementExcludedPpiList->Flags = EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST; 398 431 MeasurementExcludedPpiList->Guid = &gEfiPeiFirmwareVolumeInfoMeasurementExcludedPpiGuid; … … 407 440 PeiServicesInstallFvInfoPpi ( 408 441 NULL, 409 (VOID *)(UINTN) 410 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN)PcdGet32 (PcdFspsBaseAddress))->FvLength,442 (VOID *)(UINTN)PcdGet32 (PcdFspsBaseAddress), 443 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)PcdGet32 (PcdFspsBaseAddress))->FvLength, 411 444 NULL, 412 445 NULL … … 433 466 EFIAPI 434 467 TcgPpiNotify ( 435 IN EFI_PEI_SERVICES **PeiServices,436 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,437 IN VOID *Ppi468 IN EFI_PEI_SERVICES **PeiServices, 469 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 470 IN VOID *Ppi 438 471 ); 439 472 440 EFI_PEI_NOTIFY_DESCRIPTOR mTcgPpiNotifyDesc = {473 EFI_PEI_NOTIFY_DESCRIPTOR mTcgPpiNotifyDesc = { 441 474 (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST), 442 475 &gEdkiiTcgPpiGuid, … … 457 490 EFIAPI 458 491 TcgPpiNotify ( 459 IN EFI_PEI_SERVICES **PeiServices,460 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,461 IN VOID *Ppi462 ) 463 { 464 UINT32 492 IN EFI_PEI_SERVICES **PeiServices, 493 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc, 494 IN VOID *Ppi 495 ) 496 { 497 UINT32 FspMeasureMask; 465 498 466 499 DEBUG ((DEBUG_INFO, "TcgPpiNotify FSPS\n")); … … 469 502 470 503 if ((FspMeasureMask & FSP_MEASURE_FSPS) != 0) { 471 MeasureFspFirmwareBlob (0, "FSPS", PcdGet32(PcdFspsBaseAddress), 472 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN) PcdGet32 (PcdFspsBaseAddress))->FvLength); 504 MeasureFspFirmwareBlob ( 505 0, 506 "FSPS", 507 PcdGet32 (PcdFspsBaseAddress), 508 (UINT32)((EFI_FIRMWARE_VOLUME_HEADER *)(UINTN)PcdGet32 (PcdFspsBaseAddress))->FvLength 509 ); 473 510 } 474 511 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf
r89983 r99404 7 7 # notify to call FspSiliconInit API. 8 8 # 9 # Copyright (c) 2014 - 202 0, Intel Corporation. All rights reserved.<BR>9 # Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 10 10 # 11 11 # SPDX-License-Identifier: BSD-2-Clause-Patent … … 39 39 FspWrapperPlatformLib 40 40 FspWrapperHobProcessLib 41 CpuLib 41 42 UefiCpuLib 42 43 PeCoffGetEntryPointLib … … 46 47 FspWrapperApiTestLib 47 48 FspMeasurementLib 49 FspWrapperMultiPhaseProcessLib 48 50 49 51 [Packages] … … 69 71 gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection ## CONSUMES 70 72 gIntelFsp2WrapperTokenSpaceGuid.PcdFspMeasurementConfig ## CONSUMES 73 gIntelFsp2WrapperTokenSpaceGuid.PcdFspsUpdDataAddress64 ## CONSUMES 71 74 72 75 [Guids] -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspMeasurementLib.h
r89983 r99404 10 10 #define _FSP_MEASUREMENT_LIB_H_ 11 11 12 #define FSP_MEASURE_FSP 13 #define FSP_MEASURE_FSPT 14 #define FSP_MEASURE_FSPM 15 #define FSP_MEASURE_FSPS 16 #define FSP_MEASURE_FSPUPD 12 #define FSP_MEASURE_FSP BIT0 13 #define FSP_MEASURE_FSPT BIT1 14 #define FSP_MEASURE_FSPM BIT2 15 #define FSP_MEASURE_FSPS BIT3 16 #define FSP_MEASURE_FSPUPD BIT31 17 17 18 18 /** … … 32 32 EFIAPI 33 33 MeasureFspFirmwareBlob ( 34 IN UINT32 35 IN CHAR8 36 IN EFI_PHYSICAL_ADDRESS 37 IN UINT64 34 IN UINT32 PcrIndex, 35 IN CHAR8 *Description OPTIONAL, 36 IN EFI_PHYSICAL_ADDRESS FirmwareBlobBase, 37 IN UINT64 FirmwareBlobLength 38 38 ); 39 39 40 #endif -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiLib.h
r85718 r99404 35 35 EFIAPI 36 36 CallFspNotifyPhase ( 37 IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams37 IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams 38 38 ); 39 39 … … 49 49 EFIAPI 50 50 CallFspMemoryInit ( 51 IN VOID 52 OUT VOID 51 IN VOID *FspmUpdDataPtr, 52 OUT VOID **HobListPtr 53 53 ); 54 54 … … 63 63 EFIAPI 64 64 CallTempRamExit ( 65 IN VOID 65 IN VOID *TempRamExitParam 66 66 ); 67 67 … … 76 76 EFIAPI 77 77 CallFspSiliconInit ( 78 IN VOID 78 IN VOID *FspsUpdDataPtr 79 79 ); 80 80 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiTestLib.h
r80721 r99404 23 23 EFIAPI 24 24 TestFspMemoryInitApiOutput ( 25 IN VOID 26 IN VOID 25 IN VOID *FspmUpdDataPtr, 26 IN VOID **HobListPtr 27 27 ); 28 28 … … 37 37 EFIAPI 38 38 TestFspTempRamExitApiOutput ( 39 IN VOID 39 IN VOID *TempRamExitParam 40 40 ); 41 41 … … 50 50 EFIAPI 51 51 TestFspSiliconInitApiOutput ( 52 IN VOID 52 IN VOID *FspsUpdDataPtr 53 53 ); 54 54 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperHobProcessLib.h
r80721 r99404 20 20 EFIAPI 21 21 PostFspmHobProcess ( 22 IN VOID 22 IN VOID *FspHobList 23 23 ); 24 24 … … 33 33 EFIAPI 34 34 PostFspsHobProcess ( 35 IN VOID 35 IN VOID *FspHobList 36 36 ); 37 37 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
r85718 r99404 19 19 EFIAPI 20 20 UpdateFspmUpdData ( 21 IN OUT VOID 21 IN OUT VOID *FspUpdRgnPtr 22 22 ); 23 23 … … 31 31 EFIAPI 32 32 UpdateFspsUpdData ( 33 IN OUT VOID 33 IN OUT VOID *FspUpdRgnPtr 34 34 ); 35 35 … … 61 61 EFIAPI 62 62 GetS3MemoryInfo ( 63 OUT UINT64 *S3PeiMemSize,64 OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase63 OUT UINT64 *S3PeiMemSize, 64 OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase 65 65 ); 66 66 … … 75 75 EFIAPI 76 76 CallFspWrapperResetSystem ( 77 IN UINT32FspStatusResetType77 IN EFI_STATUS FspStatusResetType 78 78 ); 79 79 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Ppi/FspSiliconInitDone.h
r80721 r99404 10 10 #define _FSP_SILICON_INIT_DONE_H_ 11 11 12 typedef struct _FSP_SILICON_INIT_DONE_PPI 12 typedef struct _FSP_SILICON_INIT_DONE_PPI FSP_SILICON_INIT_DONE_PPI; 13 13 14 14 /** … … 30 30 31 31 struct _FSP_SILICON_INIT_DONE_PPI { 32 FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST 32 FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST GetFspHobList; 33 33 }; 34 34 35 extern EFI_GUID gFspSiliconInitDonePpiGuid;35 extern EFI_GUID gFspSiliconInitDonePpiGuid; 36 36 37 37 #endif -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Ppi/TopOfTemporaryRam.h
r80721 r99404 10 10 #define _TOP_OF_TEMPORARY_RAM_H_ 11 11 12 extern EFI_GUID gTopOfTemporaryRamPpiGuid;12 extern EFI_GUID gTopOfTemporaryRamPpiGuid; 13 13 14 14 #endif -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
r89983 r99404 2 2 # Provides drivers and definitions to support fsp in EDKII bios. 3 3 # 4 # Copyright (c) 2014 - 202 0, Intel Corporation. All rights reserved.<BR>4 # Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 5 5 # SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 # … … 29 29 ## @libraryclass Provide FSP TPM measurement related function. 30 30 FspMeasurementLib|Include/Library/FspMeasurementLib.h 31 32 ## @libraryclass Provide MultiPhase handling related functions. 33 FspWrapperMultiPhaseProcessLib|Include/Library/FspWrapperMultiPhaseProcessLib.h 34 35 ## @libraryclass Provide MultiPhase platform actions related functions. 36 FspWrapperPlatformMultiPhaseLib|Include/Library/FspWrapperPlatformMultiPhaseLib.h 37 38 31 39 [Guids] 32 40 # … … 57 65 gIntelFsp2WrapperTokenSpaceGuid.PcdFlashCodeCacheSize|0x00200000|UINT32|0x10000002 58 66 59 ## Indicates the base address of the first Microcode Patch in the Microcode Region60 gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchAddress|0x0|UINT64|0x1000000561 gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize|0x0|UINT64|0x1000000662 ## Indicates the offset of the Cpu Microcode.63 gIntelFsp2WrapperTokenSpaceGuid.PcdFlashMicrocodeOffset|0x90|UINT32|0x1000000764 65 67 ## Indicate the PEI memory size platform want to report 66 68 gIntelFsp2WrapperTokenSpaceGuid.PcdPeiMinMemSize|0x1800000|UINT32|0x40000004 … … 89 91 gIntelFsp2WrapperTokenSpaceGuid.PcdSkipFspApi|0x00000000|UINT32|0x40000009 90 92 91 ## This PCD decides how Wrapper code utilizes FSP92 # 0: DISPATCH mode (FSP Wrapper will load PeiCore from FSP without calling FSP API)93 # 1: API mode (FSP Wrapper will call FSP API)94 #95 gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection|0x00000001|UINT8|0x4000000A96 97 93 ## This PCD decides how FSP is measured 98 94 # 1) The BootGuard ACM may already measured the FSP component, such as FSPT/FSPM. … … 100 96 # 2) The FSP binary includes FSP code and FSP UPD region. The UPD region is considered 101 97 # as configuration block, and it may be updated by OEM by design. 102 # This flag (PCD) is to indicate if we need isolate the theUPD region from the FSP code region.98 # This flag (PCD) is to indicate if we need isolate the UPD region from the FSP code region. 103 99 # BIT0: Need measure FSP. (for FSP1.x) - reserved in FSP2. 104 100 # BIT1: Need measure FSPT. (for FSP 2.x) … … 113 109 114 110 [PcdsFixedAtBuild, PcdsPatchableInModule,PcdsDynamic,PcdsDynamicEx] 111 ## This PCD decides how Wrapper code utilizes FSP 112 # 0: DISPATCH mode (FSP Wrapper will load PeiCore from FSP without calling FSP API) 113 # 1: API mode (FSP Wrapper will call FSP API) 114 # 115 gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection|0x00000001|UINT8|0x4000000A 116 115 117 # 116 118 ## These are the base address of FSP-M/S … … 128 130 gIntelFsp2WrapperTokenSpaceGuid.PcdFspmUpdDataAddress|0x00000000|UINT32|0x50000000 129 131 gIntelFsp2WrapperTokenSpaceGuid.PcdFspsUpdDataAddress|0x00000000|UINT32|0x50000001 132 # 133 # Non-0 means PcdFspmUpdDataAddress will be ignored, otherwise PcdFspmUpdDataAddress will be used. 134 # 135 gIntelFsp2WrapperTokenSpaceGuid.PcdFspmUpdDataAddress64|0x00000000|UINT64|0x50000002 136 # 137 # Non-0 means PcdFspsUpdDataAddress will be ignored, otherwise PcdFspsUpdDataAddress will be used. 138 # 139 gIntelFsp2WrapperTokenSpaceGuid.PcdFspsUpdDataAddress64|0x00000000|UINT64|0x50000003 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dsc
r89983 r99404 2 2 # Provides drivers and definitions to support fsp in EDKII bios. 3 3 # 4 # Copyright (c) 2014 - 202 1, Intel Corporation. All rights reserved.<BR>4 # Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 5 5 # SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 # … … 49 49 FspWrapperApiTestLib|IntelFsp2WrapperPkg/Library/BaseFspWrapperApiTestLibNull/BaseFspWrapperApiTestLibNull.inf 50 50 FspMeasurementLib|IntelFsp2WrapperPkg/Library/BaseFspMeasurementLib/BaseFspMeasurementLib.inf 51 FspWrapperPlatformMultiPhaseLib|IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformMultiPhaseLibNull/BaseFspWrapperPlatformMultiPhaseLibNull.inf 52 FspWrapperMultiPhaseProcessLib|IntelFsp2WrapperPkg/Library/FspWrapperMultiPhaseProcessLib/FspWrapperMultiPhaseProcessLib.inf 51 53 52 54 # FSP platform sample … … 92 94 IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformLibSample/BaseFspWrapperPlatformLibSample.inf 93 95 IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.inf 96 IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformMultiPhaseLibNull/BaseFspWrapperPlatformMultiPhaseLibNull.inf 97 IntelFsp2WrapperPkg/Library/FspWrapperMultiPhaseProcessLib/FspWrapperMultiPhaseProcessLib.inf 94 98 95 99 [PcdsFixedAtBuild.common] -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspMeasurementLib/FspMeasurementLib.c
r89983 r99404 44 44 EFIAPI 45 45 TpmMeasureAndLogDataWithFlags ( 46 IN UINT32 47 IN UINT32 48 IN VOID 49 IN UINT32 50 IN VOID 51 IN UINT64 52 IN UINT64 46 IN UINT32 PcrIndex, 47 IN UINT32 EventType, 48 IN VOID *EventLog, 49 IN UINT32 LogLen, 50 IN VOID *HashData, 51 IN UINT64 HashDataLen, 52 IN UINT64 Flags 53 53 ) 54 54 { 55 EFI_STATUS 56 EDKII_TCG_PPI 57 TCG_PCR_EVENT_HDR 58 59 Status = PeiServicesLocatePpi (55 EFI_STATUS Status; 56 EDKII_TCG_PPI *TcgPpi; 57 TCG_PCR_EVENT_HDR TcgEventHdr; 58 59 Status = PeiServicesLocatePpi ( 60 60 &gEdkiiTcgPpiGuid, 61 61 0, 62 62 NULL, 63 (VOID **)&TcgPpi63 (VOID **)&TcgPpi 64 64 ); 65 if (EFI_ERROR (Status)) {65 if (EFI_ERROR (Status)) { 66 66 return Status; 67 67 } … … 100 100 EFIAPI 101 101 MeasureFspFirmwareBlobWithCfg ( 102 IN CHAR8 103 IN EFI_PHYSICAL_ADDRESS 104 IN UINT64 105 IN UINT32 106 IN UINT32 102 IN CHAR8 *Description OPTIONAL, 103 IN EFI_PHYSICAL_ADDRESS FirmwareBlobBase, 104 IN UINT64 FirmwareBlobLength, 105 IN UINT32 CfgRegionOffset, 106 IN UINT32 CfgRegionSize 107 107 ) 108 108 { 109 EFI_PLATFORM_FIRMWARE_BLOB 110 PLATFORM_FIRMWARE_BLOB2_STRUCT 111 VOID 112 UINT32 113 VOID 114 UINT32 115 EFI_STATUS 116 HASH_HANDLE 117 UINT8 118 UINTN 119 TPML_DIGEST_VALUES 109 EFI_PLATFORM_FIRMWARE_BLOB FvBlob, UpdBlob; 110 PLATFORM_FIRMWARE_BLOB2_STRUCT FvBlob2, UpdBlob2; 111 VOID *FvName; 112 UINT32 FvEventType; 113 VOID *FvEventLog, *UpdEventLog; 114 UINT32 FvEventLogSize, UpdEventLogSize; 115 EFI_STATUS Status; 116 HASH_HANDLE HashHandle; 117 UINT8 *HashBase; 118 UINTN HashSize; 119 TPML_DIGEST_VALUES DigestList; 120 120 121 121 FvName = TpmMeasurementGetFvName (FirmwareBlobBase, FirmwareBlobLength); 122 122 123 123 if (((Description != NULL) || (FvName != NULL)) && 124 (PcdGet32(PcdTcgPfpMeasurementRevision) >= TCG_EfiSpecIDEventStruct_SPEC_ERRATA_TPM2_REV_105)) { 124 (PcdGet32 (PcdTcgPfpMeasurementRevision) >= TCG_EfiSpecIDEventStruct_SPEC_ERRATA_TPM2_REV_105)) 125 { 125 126 if (Description != NULL) { 126 AsciiSPrint ((CHAR8*)FvBlob2.BlobDescription, sizeof(FvBlob2.BlobDescription), "%a", Description);127 AsciiSPrint ((CHAR8*)UpdBlob2.BlobDescription, sizeof(UpdBlob2.BlobDescription), "%aUDP", Description);128 129 AsciiSPrint ((CHAR8*)FvBlob2.BlobDescription, sizeof(FvBlob2.BlobDescription), "Fv(%g)", FvName);130 AsciiSPrint ((CHAR8*)UpdBlob2.BlobDescription, sizeof(UpdBlob2.BlobDescription), "(%g)UDP", FvName);127 AsciiSPrint ((CHAR8 *)FvBlob2.BlobDescription, sizeof (FvBlob2.BlobDescription), "%a", Description); 128 AsciiSPrint ((CHAR8 *)UpdBlob2.BlobDescription, sizeof (UpdBlob2.BlobDescription), "%aUDP", Description); 129 } else { 130 AsciiSPrint ((CHAR8 *)FvBlob2.BlobDescription, sizeof (FvBlob2.BlobDescription), "Fv(%g)", FvName); 131 AsciiSPrint ((CHAR8 *)UpdBlob2.BlobDescription, sizeof (UpdBlob2.BlobDescription), "(%g)UDP", FvName); 131 132 } 132 133 133 FvBlob2.BlobDescriptionSize = sizeof (FvBlob2.BlobDescription);134 FvBlob2.BlobBase = FirmwareBlobBase;135 FvBlob2.BlobLength = FirmwareBlobLength;136 FvEventType = EV_EFI_PLATFORM_FIRMWARE_BLOB2;137 FvEventLog = &FvBlob2;138 FvEventLogSize = sizeof(FvBlob2);139 140 UpdBlob2.BlobDescriptionSize = sizeof (UpdBlob2.BlobDescription);141 UpdBlob2.BlobBase = CfgRegionOffset;142 UpdBlob2.BlobLength = CfgRegionSize;143 UpdEventLog = &UpdBlob2;144 UpdEventLogSize = sizeof(UpdBlob2);134 FvBlob2.BlobDescriptionSize = sizeof (FvBlob2.BlobDescription); 135 FvBlob2.BlobBase = FirmwareBlobBase; 136 FvBlob2.BlobLength = FirmwareBlobLength; 137 FvEventType = EV_EFI_PLATFORM_FIRMWARE_BLOB2; 138 FvEventLog = &FvBlob2; 139 FvEventLogSize = sizeof (FvBlob2); 140 141 UpdBlob2.BlobDescriptionSize = sizeof (UpdBlob2.BlobDescription); 142 UpdBlob2.BlobBase = CfgRegionOffset; 143 UpdBlob2.BlobLength = CfgRegionSize; 144 UpdEventLog = &UpdBlob2; 145 UpdEventLogSize = sizeof (UpdBlob2); 145 146 } else { 146 FvBlob.BlobBase = FirmwareBlobBase;147 FvBlob.BlobBase = FirmwareBlobBase; 147 148 FvBlob.BlobLength = FirmwareBlobLength; 148 FvEventType = EV_EFI_PLATFORM_FIRMWARE_BLOB;149 FvEventLog = &FvBlob;150 FvEventLogSize = sizeof(FvBlob);151 152 UpdBlob.BlobBase = CfgRegionOffset;149 FvEventType = EV_EFI_PLATFORM_FIRMWARE_BLOB; 150 FvEventLog = &FvBlob; 151 FvEventLogSize = sizeof (FvBlob); 152 153 UpdBlob.BlobBase = CfgRegionOffset; 153 154 UpdBlob.BlobLength = CfgRegionSize; 154 UpdEventLog = &UpdBlob;155 UpdEventLogSize = sizeof(UpdBlob);155 UpdEventLog = &UpdBlob; 156 UpdEventLogSize = sizeof (UpdBlob); 156 157 } 157 158 … … 164 165 165 166 /** Hash FSP binary before UDP **/ 166 HashBase = (UINT8 *) (UINTN)FirmwareBlobBase;167 HashSize = (UINTN) 168 Status = HashUpdate (HashHandle, HashBase, HashSize);167 HashBase = (UINT8 *)(UINTN)FirmwareBlobBase; 168 HashSize = (UINTN)CfgRegionOffset; 169 Status = HashUpdate (HashHandle, HashBase, HashSize); 169 170 if (EFI_ERROR (Status)) { 170 171 DEBUG ((DEBUG_ERROR, "HashUpdate failed - %r\n", Status)); … … 173 174 174 175 /** Hash FSP binary after UDP **/ 175 HashBase = (UINT8 *) (UINTN)FirmwareBlobBase + CfgRegionOffset + CfgRegionSize;176 HashBase = (UINT8 *)(UINTN)FirmwareBlobBase + CfgRegionOffset + CfgRegionSize; 176 177 HashSize = (UINTN)(FirmwareBlobLength - CfgRegionOffset - CfgRegionSize); 177 Status = HashUpdate (HashHandle, HashBase, HashSize);178 Status = HashUpdate (HashHandle, HashBase, HashSize); 178 179 if (EFI_ERROR (Status)) { 179 180 DEBUG ((DEBUG_ERROR, "HashUpdate failed - %r\n", Status)); … … 193 194 FvEventLog, 194 195 FvEventLogSize, 195 (UINT8 *) 196 (UINTN) sizeof(DigestList),196 (UINT8 *)&DigestList, 197 (UINTN)sizeof (DigestList), 197 198 EDKII_TCG_PRE_HASH_LOG_ONLY 198 199 ); … … 203 204 UpdEventLog, 204 205 UpdEventLogSize, 205 (UINT8 *) (UINTN)FirmwareBlobBase + CfgRegionOffset,206 (UINT8 *)(UINTN)FirmwareBlobBase + CfgRegionOffset, 206 207 CfgRegionSize 207 208 ); … … 226 227 EFIAPI 227 228 MeasureFspFirmwareBlob ( 228 IN UINT32 229 IN CHAR8 230 IN EFI_PHYSICAL_ADDRESS 231 IN UINT64 229 IN UINT32 PcrIndex, 230 IN CHAR8 *Description OPTIONAL, 231 IN EFI_PHYSICAL_ADDRESS FirmwareBlobBase, 232 IN UINT64 FirmwareBlobLength 232 233 ) 233 234 { … … 237 238 FspMeasureMask = PcdGet32 (PcdFspMeasurementConfig); 238 239 if ((FspMeasureMask & FSP_MEASURE_FSPUPD) != 0) { 239 FspHeaderPtr = (FSP_INFO_HEADER *) 240 FspHeaderPtr = (FSP_INFO_HEADER *)FspFindFspHeader (FirmwareBlobBase); 240 241 if (FspHeaderPtr != NULL) { 241 return MeasureFspFirmwareBlobWithCfg(Description, FirmwareBlobBase, FirmwareBlobLength, 242 FspHeaderPtr->CfgRegionOffset, FspHeaderPtr->CfgRegionSize); 242 return MeasureFspFirmwareBlobWithCfg ( 243 Description, 244 FirmwareBlobBase, 245 FirmwareBlobLength, 246 FspHeaderPtr->CfgRegionOffset, 247 FspHeaderPtr->CfgRegionSize 248 ); 243 249 } 244 250 } … … 246 252 return MeasureFirmwareBlob (PcrIndex, Description, FirmwareBlobBase, FirmwareBlobLength); 247 253 } 248 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/FspWrapperApiLib.c
r80721 r99404 2 2 Provide FSP API related function. 3 3 4 Copyright (c) 2014 - 20 17, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 5 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 … … 14 14 15 15 /** 16 Wrapper for a thunk 16 Wrapper for a thunk to transition from long mode to compatibility mode to execute 32-bit code and then transit back to 17 17 long mode. 18 18 … … 25 25 EFI_STATUS 26 26 Execute32BitCode ( 27 IN UINT64 Function, 28 IN UINT64 Param1, 29 IN UINT64 Param2 27 IN UINT64 Function, 28 IN UINT64 Param1, 29 IN UINT64 Param2 30 ); 31 32 /** 33 Wrapper to execute 64-bit code directly from long mode. 34 35 @param[in] Function The 64bit code entry to be executed. 36 @param[in] Param1 The first parameter to pass to 64bit code. 37 @param[in] Param2 The second parameter to pass to 64bit code. 38 39 @return EFI_STATUS. 40 **/ 41 EFI_STATUS 42 Execute64BitCode ( 43 IN UINT64 Function, 44 IN UINT64 Param1, 45 IN UINT64 Param2 30 46 ); 31 47 … … 43 59 ) 44 60 { 45 UINT8 *CheckPointer;46 47 CheckPointer = (UINT8 *) (UINTN)FlashFvFspBase;61 UINT8 *CheckPointer; 62 63 CheckPointer = (UINT8 *)(UINTN)FlashFvFspBase; 48 64 49 65 if (((EFI_FIRMWARE_VOLUME_HEADER *)CheckPointer)->Signature != EFI_FVH_SIGNATURE) { … … 54 70 CheckPointer = CheckPointer + ((EFI_FIRMWARE_VOLUME_HEADER *)CheckPointer)->ExtHeaderOffset; 55 71 CheckPointer = CheckPointer + ((EFI_FIRMWARE_VOLUME_EXT_HEADER *)CheckPointer)->ExtHeaderSize; 56 CheckPointer = (UINT8 *) 72 CheckPointer = (UINT8 *)ALIGN_POINTER (CheckPointer, 8); 57 73 } else { 58 74 CheckPointer = CheckPointer + ((EFI_FIRMWARE_VOLUME_HEADER *)CheckPointer)->HeaderLength; 59 75 } 60 61 76 62 77 CheckPointer = CheckPointer + sizeof (EFI_FFS_FILE_HEADER); … … 81 96 EFIAPI 82 97 CallFspNotifyPhase ( 83 IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams84 ) 85 { 86 FSP_INFO_HEADER 87 FSP_NOTIFY_PHASE 88 EFI_STATUS 89 BOOLEAN 98 IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams 99 ) 100 { 101 FSP_INFO_HEADER *FspHeader; 102 FSP_NOTIFY_PHASE NotifyPhaseApi; 103 EFI_STATUS Status; 104 BOOLEAN InterruptState; 90 105 91 106 FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspsBaseAddress)); … … 96 111 NotifyPhaseApi = (FSP_NOTIFY_PHASE)((UINTN)FspHeader->ImageBase + FspHeader->NotifyPhaseEntryOffset); 97 112 InterruptState = SaveAndDisableInterrupts (); 98 Status = Execute32BitCode ((UINTN)NotifyPhaseApi, (UINTN)NotifyPhaseParams, (UINTN)NULL); 113 if ((FspHeader->ImageAttribute & IMAGE_ATTRIBUTE_64BIT_MODE_SUPPORT) == FSP_IA32) { 114 Status = Execute32BitCode ((UINTN)NotifyPhaseApi, (UINTN)NotifyPhaseParams, (UINTN)NULL); 115 } else { 116 Status = Execute64BitCode ((UINTN)NotifyPhaseApi, (UINTN)NotifyPhaseParams, (UINTN)NULL); 117 } 118 99 119 SetInterruptState (InterruptState); 100 120 … … 113 133 EFIAPI 114 134 CallFspMemoryInit ( 115 IN VOID 116 OUT VOID 117 ) 118 { 119 FSP_INFO_HEADER 120 FSP_MEMORY_INIT 121 EFI_STATUS 122 BOOLEAN 135 IN VOID *FspmUpdDataPtr, 136 OUT VOID **HobListPtr 137 ) 138 { 139 FSP_INFO_HEADER *FspHeader; 140 FSP_MEMORY_INIT FspMemoryInitApi; 141 EFI_STATUS Status; 142 BOOLEAN InterruptState; 123 143 124 144 FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress)); … … 128 148 129 149 FspMemoryInitApi = (FSP_MEMORY_INIT)((UINTN)FspHeader->ImageBase + FspHeader->FspMemoryInitEntryOffset); 130 InterruptState = SaveAndDisableInterrupts (); 131 Status = Execute32BitCode ((UINTN)FspMemoryInitApi, (UINTN)FspmUpdDataPtr, (UINTN)HobListPtr); 150 InterruptState = SaveAndDisableInterrupts (); 151 if ((FspHeader->ImageAttribute & IMAGE_ATTRIBUTE_64BIT_MODE_SUPPORT) == FSP_IA32) { 152 Status = Execute32BitCode ((UINTN)FspMemoryInitApi, (UINTN)FspmUpdDataPtr, (UINTN)HobListPtr); 153 } else { 154 Status = Execute64BitCode ((UINTN)FspMemoryInitApi, (UINTN)FspmUpdDataPtr, (UINTN)HobListPtr); 155 } 156 132 157 SetInterruptState (InterruptState); 133 158 … … 145 170 EFIAPI 146 171 CallTempRamExit ( 147 IN VOID 148 ) 149 { 150 FSP_INFO_HEADER 151 FSP_TEMP_RAM_EXIT 152 EFI_STATUS 153 BOOLEAN 172 IN VOID *TempRamExitParam 173 ) 174 { 175 FSP_INFO_HEADER *FspHeader; 176 FSP_TEMP_RAM_EXIT TempRamExitApi; 177 EFI_STATUS Status; 178 BOOLEAN InterruptState; 154 179 155 180 FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress)); … … 160 185 TempRamExitApi = (FSP_TEMP_RAM_EXIT)((UINTN)FspHeader->ImageBase + FspHeader->TempRamExitEntryOffset); 161 186 InterruptState = SaveAndDisableInterrupts (); 162 Status = Execute32BitCode ((UINTN)TempRamExitApi, (UINTN)TempRamExitParam, (UINTN)NULL); 187 if ((FspHeader->ImageAttribute & IMAGE_ATTRIBUTE_64BIT_MODE_SUPPORT) == FSP_IA32) { 188 Status = Execute32BitCode ((UINTN)TempRamExitApi, (UINTN)TempRamExitParam, (UINTN)NULL); 189 } else { 190 Status = Execute64BitCode ((UINTN)TempRamExitApi, (UINTN)TempRamExitParam, (UINTN)NULL); 191 } 192 163 193 SetInterruptState (InterruptState); 164 194 … … 176 206 EFIAPI 177 207 CallFspSiliconInit ( 178 IN VOID 179 ) 180 { 181 FSP_INFO_HEADER 182 FSP_SILICON_INIT 183 EFI_STATUS 184 BOOLEAN 208 IN VOID *FspsUpdDataPtr 209 ) 210 { 211 FSP_INFO_HEADER *FspHeader; 212 FSP_SILICON_INIT FspSiliconInitApi; 213 EFI_STATUS Status; 214 BOOLEAN InterruptState; 185 215 186 216 FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspsBaseAddress)); … … 190 220 191 221 FspSiliconInitApi = (FSP_SILICON_INIT)((UINTN)FspHeader->ImageBase + FspHeader->FspSiliconInitEntryOffset); 192 InterruptState = SaveAndDisableInterrupts (); 193 Status = Execute32BitCode ((UINTN)FspSiliconInitApi, (UINTN)FspsUpdDataPtr, (UINTN)NULL); 194 SetInterruptState (InterruptState); 195 196 return Status; 197 } 222 InterruptState = SaveAndDisableInterrupts (); 223 if ((FspHeader->ImageAttribute & IMAGE_ATTRIBUTE_64BIT_MODE_SUPPORT) == FSP_IA32) { 224 Status = Execute32BitCode ((UINTN)FspSiliconInitApi, (UINTN)FspsUpdDataPtr, (UINTN)NULL); 225 } else { 226 Status = Execute64BitCode ((UINTN)FspSiliconInitApi, (UINTN)FspsUpdDataPtr, (UINTN)NULL); 227 } 228 229 SetInterruptState (InterruptState); 230 231 return Status; 232 } -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/IA32/DispatchExecute.c
r80721 r99404 2 2 Execute 32-bit code in Protected Mode. 3 3 4 Copyright (c) 2014 - 20 16, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 5 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 … … 20 20 typedef 21 21 EFI_STATUS 22 (EFIAPI *FSP_FUNCTION) 22 (EFIAPI *FSP_FUNCTION)( 23 23 IN VOID *Param1, 24 24 IN VOID *Param2 … … 37 37 EFI_STATUS 38 38 Execute32BitCode ( 39 IN UINT64 40 IN UINT64 41 IN UINT64 39 IN UINT64 Function, 40 IN UINT64 Param1, 41 IN UINT64 Param2 42 42 ) 43 43 { 44 FSP_FUNCTION 45 EFI_STATUS 44 FSP_FUNCTION EntryFunc; 45 EFI_STATUS Status; 46 46 47 EntryFunc = (FSP_FUNCTION) (UINTN)(Function);47 EntryFunc = (FSP_FUNCTION)(UINTN)(Function); 48 48 Status = EntryFunc ((VOID *)(UINTN)Param1, (VOID *)(UINTN)Param2); 49 49 … … 51 51 } 52 52 53 /** 54 Wrapper for a thunk to transition from compatibility mode to long mode to execute 64-bit code and then transit back to 55 compatibility mode. 56 57 @param[in] Function The 64bit code entry to be executed. 58 @param[in] Param1 The first parameter to pass to 64bit code. 59 @param[in] Param2 The second parameter to pass to 64bit code. 60 61 @return EFI_STATUS. 62 **/ 63 EFI_STATUS 64 Execute64BitCode ( 65 IN UINT64 Function, 66 IN UINT64 Param1, 67 IN UINT64 Param2 68 ) 69 { 70 return EFI_UNSUPPORTED; 71 } -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/DispatchExecute.c
r80721 r99404 1 1 /** @file 2 Execute 32-bit code in Long Mode.2 Execute 64-bit code in Long Mode. 3 3 Provide a thunk function to transition from long mode to compatibility mode to execute 32-bit code and then transit 4 4 back to long mode. 5 5 6 Copyright (c) 2014 - 20 18, Intel Corporation. All rights reserved.<BR>6 Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 7 7 SPDX-License-Identifier: BSD-2-Clause-Patent 8 8 … … 13 13 #include <FspEas.h> 14 14 15 /** 16 FSP API functions. 17 18 @param[in] Param1 The first parameter to pass to 64bit code. 19 @param[in] Param2 The second parameter to pass to 64bit code. 20 21 @return EFI_STATUS. 22 **/ 23 typedef 24 EFI_STATUS 25 (EFIAPI *FSP_FUNCTION)( 26 IN VOID *Param1, 27 IN VOID *Param2 28 ); 29 15 30 #pragma pack(1) 16 31 typedef union { 17 32 struct { 18 UINT32 LimitLow : 16;19 UINT32 BaseLow : 16;20 UINT32 BaseMid : 8;21 UINT32 Type : 4;22 UINT32 System : 1;23 UINT32 Dpl : 2;24 UINT32 Present : 1;25 UINT32 LimitHigh : 4;26 UINT32 Software : 1;27 UINT32 Reserved : 1;28 UINT32 DefaultSize : 1;29 UINT32 Granularity : 1;30 UINT32 BaseHigh : 8;33 UINT32 LimitLow : 16; 34 UINT32 BaseLow : 16; 35 UINT32 BaseMid : 8; 36 UINT32 Type : 4; 37 UINT32 System : 1; 38 UINT32 Dpl : 2; 39 UINT32 Present : 1; 40 UINT32 LimitHigh : 4; 41 UINT32 Software : 1; 42 UINT32 Reserved : 1; 43 UINT32 DefaultSize : 1; 44 UINT32 Granularity : 1; 45 UINT32 BaseHigh : 8; 31 46 } Bits; 32 UINT64 Uint64;47 UINT64 Uint64; 33 48 } IA32_GDT; 34 49 #pragma pack() 35 50 36 GLOBAL_REMOVE_IF_UNREFERENCED IA32_GDT mGdtEntries[] = { 37 {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, /* 0x0: reserve */ 38 {{0xFFFF, 0, 0, 0xB, 1, 0, 1, 0xF, 0, 0, 1, 1, 0}}, /* 0x8: compatibility mode */ 39 {{0xFFFF, 0, 0, 0xB, 1, 0, 1, 0xF, 0, 1, 0, 1, 0}}, /* 0x10: for long mode */ 40 {{0xFFFF, 0, 0, 0x3, 1, 0, 1, 0xF, 0, 0, 1, 1, 0}}, /* 0x18: data */ 41 {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, /* 0x20: reserve */ 51 GLOBAL_REMOVE_IF_UNREFERENCED IA32_GDT mGdtEntries[] = { 52 { 53 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } 54 }, /* 0x0: reserve */ 55 { 56 { 0xFFFF, 0, 0, 0xB, 1, 0, 1, 0xF, 0, 0, 1, 1, 0 } 57 }, /* 0x8: compatibility mode */ 58 { 59 { 0xFFFF, 0, 0, 0xB, 1, 0, 1, 0xF, 0, 1, 0, 1, 0 } 60 }, /* 0x10: for long mode */ 61 { 62 { 0xFFFF, 0, 0, 0x3, 1, 0, 1, 0xF, 0, 0, 1, 1, 0 } 63 }, /* 0x18: data */ 64 { 65 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } 66 }, /* 0x20: reserve */ 42 67 }; 43 68 … … 45 70 // IA32 Gdt register 46 71 // 47 GLOBAL_REMOVE_IF_UNREFERENCED IA32_DESCRIPTOR mGdt = {72 GLOBAL_REMOVE_IF_UNREFERENCED IA32_DESCRIPTOR mGdt = { 48 73 sizeof (mGdtEntries) - 1, 49 (UINTN) 50 74 (UINTN)mGdtEntries 75 }; 51 76 52 77 /** … … 71 96 72 97 /** 73 Wrapper for a thunk 98 Wrapper for a thunk to transition from long mode to compatibility mode to execute 32-bit code and then transit back to 74 99 long mode. 75 100 … … 82 107 EFI_STATUS 83 108 Execute32BitCode ( 84 IN UINT64 85 IN UINT64 86 IN UINT64 109 IN UINT64 Function, 110 IN UINT64 Param1, 111 IN UINT64 Param2 87 112 ) 88 113 { … … 97 122 AsmReadIdtr (&Idtr); 98 123 Status = AsmExecute32BitCode (Function, Param1, Param2, &mGdt); 124 // 125 // Convert FSP Status code from 32bit to 64bit to match caller expectation. 126 // 127 Status = (Status & ~(BIT31 + BIT30)) | LShiftU64 (Status & (BIT31 + BIT30), 32); 99 128 AsmWriteIdtr (&Idtr); 100 129 … … 102 131 } 103 132 133 /** 134 Wrapper to execute 64-bit code directly from long mode. 135 136 @param[in] Function The 64bit code entry to be executed. 137 @param[in] Param1 The first parameter to pass to 64bit code. 138 @param[in] Param2 The second parameter to pass to 64bit code. 139 140 @return EFI_STATUS. 141 **/ 142 EFI_STATUS 143 Execute64BitCode ( 144 IN UINT64 Function, 145 IN UINT64 Param1, 146 IN UINT64 Param2 147 ) 148 { 149 FSP_FUNCTION EntryFunc; 150 EFI_STATUS Status; 151 152 EntryFunc = (FSP_FUNCTION)(UINTN)(Function); 153 Status = EntryFunc ((VOID *)(UINTN)Param1, (VOID *)(UINTN)Param2); 154 155 return Status; 156 } -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/Thunk64To32.nasm
-
Property svn:mime-type
set to
text/x-asm
-
Property svn:mime-type
set to
-
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiTestLibNull/FspWrapperApiTestNull.c
r80721 r99404 20 20 EFIAPI 21 21 TestFspMemoryInitApiOutput ( 22 IN VOID 23 IN VOID 22 IN VOID *FspmUpdDataPtr, 23 IN VOID **HobListPtr 24 24 ) 25 25 { … … 37 37 EFIAPI 38 38 TestFspTempRamExitApiOutput ( 39 IN VOID 39 IN VOID *TempRamExitParam 40 40 ) 41 41 { … … 53 53 EFIAPI 54 54 TestFspSiliconInitApiOutput ( 55 IN VOID 55 IN VOID *FspsUpdDataPtr 56 56 ) 57 57 { -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformLibSample/FspWrapperPlatformLibSample.c
r85718 r99404 21 21 EFIAPI 22 22 UpdateFspmUpdData ( 23 IN OUT VOID 23 IN OUT VOID *FspUpdRgnPtr 24 24 ) 25 25 { … … 35 35 EFIAPI 36 36 UpdateFspsUpdData ( 37 IN OUT VOID 37 IN OUT VOID *FspUpdRgnPtr 38 38 ) 39 39 { … … 70 70 EFIAPI 71 71 GetS3MemoryInfo ( 72 OUT UINT64 *S3PeiMemSize,73 OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase72 OUT UINT64 *S3PeiMemSize, 73 OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase 74 74 ) 75 75 { … … 87 87 EFIAPI 88 88 CallFspWrapperResetSystem ( 89 IN UINT32FspStatusResetType89 IN EFI_STATUS FspStatusResetType 90 90 ) 91 91 { … … 94 94 // 95 95 96 CpuDeadLoop ();96 CpuDeadLoop (); 97 97 } -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/PeiFspWrapperApiTestLib/FspWrapperApiTest.c
r80721 r99404 24 24 EFIAPI 25 25 TestFspMemoryInitApiOutput ( 26 IN VOID 27 IN VOID 26 IN VOID *FspmUpdDataPtr, 27 IN VOID **HobListPtr 28 28 ) 29 29 { 30 30 DEBUG_CODE_BEGIN (); 31 EFI_PEI_HOB_POINTERS 31 EFI_PEI_HOB_POINTERS Hob; 32 32 33 33 Hob.Raw = (UINT8 *)(*(HobListPtr)); 34 34 while (TRUE) { 35 if (END_OF_HOB_LIST (Hob) == TRUE) {36 DEBUG ((DEBUG_INFO, "gFspBootLoaderTolumHobGuid not Found\n"));35 if (END_OF_HOB_LIST (Hob) == TRUE) { 36 DEBUG ((DEBUG_INFO, "gFspBootLoaderTolumHobGuid not Found\n")); 37 37 break; 38 38 } 39 39 40 if ((CompareGuid (&Hob.ResourceDescriptor->Owner, &gFspBootLoaderTolumHobGuid))) { 40 41 DEBUG ((DEBUG_INFO, "gFspBootLoaderTolumHobGuid Found\n")); … … 43 44 break; 44 45 } 46 45 47 Hob.Raw = GET_NEXT_HOB (Hob); 46 48 } 49 47 50 DEBUG_CODE_END (); 48 51 … … 60 63 EFIAPI 61 64 TestFspTempRamExitApiOutput ( 62 IN VOID 65 IN VOID *TempRamExitParam 63 66 ) 64 67 { … … 76 79 EFIAPI 77 80 TestFspSiliconInitApiOutput ( 78 IN VOID 81 IN VOID *FspsUpdDataPtr 79 82 ) 80 83 { -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/PeiFspWrapperHobProcessLibSample/FspWrapperHobProcessLibSample.c
r85718 r99404 27 27 // It should be consistent between RetrieveRequiredMemorySize() and GetPeiMemSize() 28 28 // 29 #define PEI_ADDITIONAL_MEMORY_SIZE 29 #define PEI_ADDITIONAL_MEMORY_SIZE (16 * EFI_PAGE_SIZE) 30 30 31 31 /** … … 38 38 UINT64 39 39 GetMemorySizeInMemoryTypeInformation ( 40 IN EFI_PEI_SERVICES **PeiServices41 ) 42 { 43 EFI_STATUS Status;44 EFI_PEI_HOB_POINTERS Hob;45 EFI_MEMORY_TYPE_INFORMATION *MemoryData;46 UINT8 Index;47 UINTN TempPageNum;40 IN EFI_PEI_SERVICES **PeiServices 41 ) 42 { 43 EFI_STATUS Status; 44 EFI_PEI_HOB_POINTERS Hob; 45 EFI_MEMORY_TYPE_INFORMATION *MemoryData; 46 UINT8 Index; 47 UINTN TempPageNum; 48 48 49 49 MemoryData = NULL; 50 Status = (*PeiServices)->GetHobList ((CONST EFI_PEI_SERVICES **)PeiServices, (VOID **)&Hob.Raw);50 Status = (*PeiServices)->GetHobList ((CONST EFI_PEI_SERVICES **)PeiServices, (VOID **)&Hob.Raw); 51 51 ASSERT_EFI_ERROR (Status); 52 52 while (!END_OF_HOB_LIST (Hob)) { 53 if (Hob.Header->HobType == EFI_HOB_TYPE_GUID_EXTENSION && 54 CompareGuid (&Hob.Guid->Name, &gEfiMemoryTypeInformationGuid)) { 55 MemoryData = (EFI_MEMORY_TYPE_INFORMATION *) (Hob.Raw + sizeof (EFI_HOB_GENERIC_HEADER) + sizeof (EFI_GUID)); 53 if ((Hob.Header->HobType == EFI_HOB_TYPE_GUID_EXTENSION) && 54 CompareGuid (&Hob.Guid->Name, &gEfiMemoryTypeInformationGuid)) 55 { 56 MemoryData = (EFI_MEMORY_TYPE_INFORMATION *)(Hob.Raw + sizeof (EFI_HOB_GENERIC_HEADER) + sizeof (EFI_GUID)); 56 57 break; 57 58 } … … 84 85 UINT64 85 86 RetrieveRequiredMemorySize ( 86 IN EFI_PEI_SERVICES **PeiServices87 ) 88 { 89 UINT64 87 IN EFI_PEI_SERVICES **PeiServices 88 ) 89 { 90 UINT64 Size; 90 91 91 92 Size = GetMemorySizeInMemoryTypeInformation (PeiServices); … … 103 104 UINT64 104 105 GetPeiMemSize ( 105 IN EFI_PEI_SERVICES **PeiServices,106 IN UINT32 BootMode107 ) 108 { 109 UINT64 110 UINT64 106 IN EFI_PEI_SERVICES **PeiServices, 107 IN UINT32 BootMode 108 ) 109 { 110 UINT64 Size; 111 UINT64 MinSize; 111 112 112 113 if (BootMode == BOOT_IN_RECOVERY_MODE) { … … 138 139 EFIAPI 139 140 PostFspmHobProcess ( 140 IN VOID 141 ) 142 { 143 EFI_PEI_HOB_POINTERS Hob;144 UINT64 LowMemorySize;145 UINT64 FspMemorySize;146 EFI_PHYSICAL_ADDRESS FspMemoryBase;147 UINT64 PeiMemSize;148 EFI_PHYSICAL_ADDRESS PeiMemBase;149 UINT64 S3PeiMemSize;150 EFI_PHYSICAL_ADDRESS S3PeiMemBase;151 BOOLEAN FoundFspMemHob;152 EFI_STATUS Status;153 EFI_BOOT_MODE BootMode;154 EFI_PEI_CAPSULE_PPI *Capsule;155 VOID *CapsuleBuffer;156 UINTN CapsuleBufferLength;157 UINT64 RequiredMemSize;158 EFI_PEI_SERVICES **PeiServices;141 IN VOID *FspHobList 142 ) 143 { 144 EFI_PEI_HOB_POINTERS Hob; 145 UINT64 LowMemorySize; 146 UINT64 FspMemorySize; 147 EFI_PHYSICAL_ADDRESS FspMemoryBase; 148 UINT64 PeiMemSize; 149 EFI_PHYSICAL_ADDRESS PeiMemBase; 150 UINT64 S3PeiMemSize; 151 EFI_PHYSICAL_ADDRESS S3PeiMemBase; 152 BOOLEAN FoundFspMemHob; 153 EFI_STATUS Status; 154 EFI_BOOT_MODE BootMode; 155 EFI_PEI_CAPSULE_PPI *Capsule; 156 VOID *CapsuleBuffer; 157 UINTN CapsuleBufferLength; 158 UINT64 RequiredMemSize; 159 EFI_PEI_SERVICES **PeiServices; 159 160 160 161 PeiServices = (EFI_PEI_SERVICES **)GetPeiServicesTablePointer (); … … 162 163 PeiServicesGetBootMode (&BootMode); 163 164 164 PeiMemBase = 0;165 LowMemorySize = 0;166 FspMemorySize = 0;167 FspMemoryBase = 0;165 PeiMemBase = 0; 166 LowMemorySize = 0; 167 FspMemorySize = 0; 168 FspMemoryBase = 0; 168 169 FoundFspMemHob = FALSE; 169 170 … … 173 174 // 174 175 Hob.Raw = (UINT8 *)(UINTN)FspHobList; 175 DEBUG ((DEBUG_INFO, "FspHobList - 0x%x\n", FspHobList));176 DEBUG ((DEBUG_INFO, "FspHobList - 0x%x\n", FspHobList)); 176 177 177 178 while ((Hob.Raw = GetNextHob (EFI_HOB_TYPE_RESOURCE_DESCRIPTOR, Hob.Raw)) != NULL) { 178 DEBUG ((DEBUG_INFO, "\nResourceType: 0x%x\n", Hob.ResourceDescriptor->ResourceType));179 DEBUG ((DEBUG_INFO, "\nResourceType: 0x%x\n", Hob.ResourceDescriptor->ResourceType)); 179 180 if ((Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY) || 180 (Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_MEMORY_RESERVED)) { 181 DEBUG((DEBUG_INFO, "ResourceAttribute: 0x%x\n", Hob.ResourceDescriptor->ResourceAttribute)); 182 DEBUG((DEBUG_INFO, "PhysicalStart: 0x%x\n", Hob.ResourceDescriptor->PhysicalStart)); 183 DEBUG((DEBUG_INFO, "ResourceLength: 0x%x\n", Hob.ResourceDescriptor->ResourceLength)); 184 DEBUG((DEBUG_INFO, "Owner: %g\n\n", &Hob.ResourceDescriptor->Owner)); 185 } 186 187 if ((Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY) // Found the low memory length below 4G 188 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB) 189 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)) { 190 LowMemorySize += Hob.ResourceDescriptor->ResourceLength; 191 Hob.Raw = GET_NEXT_HOB (Hob); 181 (Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_MEMORY_RESERVED)) 182 { 183 DEBUG ((DEBUG_INFO, "ResourceAttribute: 0x%x\n", Hob.ResourceDescriptor->ResourceAttribute)); 184 DEBUG ((DEBUG_INFO, "PhysicalStart: 0x%x\n", Hob.ResourceDescriptor->PhysicalStart)); 185 DEBUG ((DEBUG_INFO, "ResourceLength: 0x%x\n", Hob.ResourceDescriptor->ResourceLength)); 186 DEBUG ((DEBUG_INFO, "Owner: %g\n\n", &Hob.ResourceDescriptor->Owner)); 187 } 188 189 if ( (Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY) // Found the low memory length below 4G 190 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB) 191 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)) 192 { 193 LowMemorySize += Hob.ResourceDescriptor->ResourceLength; 194 Hob.Raw = GET_NEXT_HOB (Hob); 192 195 continue; 193 196 } 194 197 195 if ((Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_MEMORY_RESERVED) // Found the low memory length below 4G 196 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB) 197 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB) 198 && (CompareGuid (&Hob.ResourceDescriptor->Owner, &gFspReservedMemoryResourceHobGuid))) { 198 if ( (Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_MEMORY_RESERVED) // Found the low memory length below 4G 199 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB) 200 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB) 201 && (CompareGuid (&Hob.ResourceDescriptor->Owner, &gFspReservedMemoryResourceHobGuid))) 202 { 199 203 FoundFspMemHob = TRUE; 200 FspMemoryBase = Hob.ResourceDescriptor->PhysicalStart;201 FspMemorySize = Hob.ResourceDescriptor->ResourceLength;202 DEBUG ((DEBUG_INFO, "Find fsp mem hob, base 0x%x, len 0x%x\n", FspMemoryBase, FspMemorySize));204 FspMemoryBase = Hob.ResourceDescriptor->PhysicalStart; 205 FspMemorySize = Hob.ResourceDescriptor->ResourceLength; 206 DEBUG ((DEBUG_INFO, "Find fsp mem hob, base 0x%x, len 0x%x\n", FspMemoryBase, FspMemorySize)); 203 207 } 204 208 … … 217 221 218 222 if (!FoundFspMemHob) { 219 DEBUG ((DEBUG_INFO, "Didn't find the fsp used memory information.\n"));220 // ASSERT(FALSE);221 } 222 223 DEBUG ((DEBUG_INFO, "LowMemorySize: 0x%x.\n", LowMemorySize));224 DEBUG ((DEBUG_INFO, "FspMemoryBase: 0x%x.\n", FspMemoryBase));225 DEBUG ((DEBUG_INFO, "FspMemorySize: 0x%x.\n", FspMemorySize));223 DEBUG ((DEBUG_INFO, "Didn't find the fsp used memory information.\n")); 224 // ASSERT(FALSE); 225 } 226 227 DEBUG ((DEBUG_INFO, "LowMemorySize: 0x%x.\n", LowMemorySize)); 228 DEBUG ((DEBUG_INFO, "FspMemoryBase: 0x%x.\n", FspMemoryBase)); 229 DEBUG ((DEBUG_INFO, "FspMemorySize: 0x%x.\n", FspMemorySize)); 226 230 227 231 if (BootMode == BOOT_ON_S3_RESUME) { … … 229 233 EFI_RESOURCE_SYSTEM_MEMORY, 230 234 ( 231 232 233 234 235 236 237 235 EFI_RESOURCE_ATTRIBUTE_PRESENT | 236 EFI_RESOURCE_ATTRIBUTE_INITIALIZED | 237 // EFI_RESOURCE_ATTRIBUTE_TESTED | 238 EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE | 239 EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE | 240 EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE | 241 EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE 238 242 ), 239 243 BASE_1MB, … … 243 247 S3PeiMemBase = 0; 244 248 S3PeiMemSize = 0; 245 Status = GetS3MemoryInfo (&S3PeiMemSize, &S3PeiMemBase);249 Status = GetS3MemoryInfo (&S3PeiMemSize, &S3PeiMemBase); 246 250 ASSERT_EFI_ERROR (Status); 247 DEBUG ((DEBUG_INFO, "S3 memory %Xh - %Xh bytes\n", S3PeiMemBase, S3PeiMemSize));251 DEBUG ((DEBUG_INFO, "S3 memory %Xh - %Xh bytes\n", S3PeiMemBase, S3PeiMemSize)); 248 252 249 253 // … … 258 262 } else { 259 263 PeiMemSize = GetPeiMemSize (PeiServices, BootMode); 260 DEBUG ((DEBUG_INFO, "PEI memory size = %Xh bytes\n", PeiMemSize));264 DEBUG ((DEBUG_INFO, "PEI memory size = %Xh bytes\n", PeiMemSize)); 261 265 262 266 // 263 267 // Capsule mode 264 268 // 265 Capsule = NULL;266 CapsuleBuffer = NULL;269 Capsule = NULL; 270 CapsuleBuffer = NULL; 267 271 CapsuleBufferLength = 0; 268 272 if (BootMode == BOOT_ON_FLASH_UPDATE) { … … 271 275 0, 272 276 NULL, 273 (VOID **) 277 (VOID **)&Capsule 274 278 ); 275 279 ASSERT_EFI_ERROR (Status); … … 279 283 // Make sure Stack and CapsuleBuffer are not overlap 280 284 // 281 CapsuleBuffer = (VOID *)(UINTN)BASE_1MB;285 CapsuleBuffer = (VOID *)(UINTN)BASE_1MB; 282 286 CapsuleBufferLength = (UINTN)(LowMemorySize - PeiMemSize); 283 287 // … … 289 293 290 294 RequiredMemSize = RetrieveRequiredMemorySize (PeiServices); 291 DEBUG ((DEBUG_INFO, "Required memory size = %Xh bytes\n", RequiredMemSize));295 DEBUG ((DEBUG_INFO, "Required memory size = %Xh bytes\n", RequiredMemSize)); 292 296 293 297 // … … 297 301 EFI_RESOURCE_SYSTEM_MEMORY, 298 302 ( 299 300 301 302 303 304 305 303 EFI_RESOURCE_ATTRIBUTE_PRESENT | 304 EFI_RESOURCE_ATTRIBUTE_INITIALIZED | 305 EFI_RESOURCE_ATTRIBUTE_TESTED | 306 EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE | 307 EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE | 308 EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE | 309 EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE 306 310 ), 307 311 BASE_1MB, … … 317 321 // 318 322 PeiMemBase = BASE_1MB + LowMemorySize - PeiMemSize; 319 Status = PeiServicesInstallPeiMemory (320 PeiMemBase,321 PeiMemSize - RequiredMemSize322 );323 Status = PeiServicesInstallPeiMemory ( 324 PeiMemBase, 325 PeiMemSize - RequiredMemSize 326 ); 323 327 ASSERT_EFI_ERROR (Status); 324 328 … … 339 343 VOID 340 344 ProcessFspHobList ( 341 IN VOID 345 IN VOID *FspHobList 342 346 ) 343 347 { … … 354 358 // Skip FSP binary creates PcdDataBaseHobGuid 355 359 // 356 if (!CompareGuid (&FspHob.Guid->Name, &gPcdDataBaseHobGuid)) {360 if (!CompareGuid (&FspHob.Guid->Name, &gPcdDataBaseHobGuid)) { 357 361 BuildGuidDataHob ( 358 362 &FspHob.Guid->Name, 359 GET_GUID_HOB_DATA (FspHob),360 GET_GUID_HOB_DATA_SIZE (FspHob)361 );363 GET_GUID_HOB_DATA (FspHob), 364 GET_GUID_HOB_DATA_SIZE (FspHob) 365 ); 362 366 } 363 367 } 368 364 369 FspHob.Raw = GET_NEXT_HOB (FspHob); 365 370 } … … 376 381 EFIAPI 377 382 PostFspsHobProcess ( 378 IN VOID 383 IN VOID *FspHobList 379 384 ) 380 385 { … … 393 398 ProcessFspHobList (FspHobList); 394 399 } 400 395 401 return EFI_SUCCESS; 396 402 } -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/FspWrapperPlatformSecLibSample.c
r80721 r99404 30 30 EFIAPI 31 31 SecPlatformInformation ( 32 IN CONST EFI_PEI_SERVICES 33 IN OUT UINT64 34 32 IN CONST EFI_PEI_SERVICES **PeiServices, 33 IN OUT UINT64 *StructureSize, 34 OUT EFI_SEC_PLATFORM_INFORMATION_RECORD *PlatformInformationRecord 35 35 ); 36 36 … … 96 96 EFIAPI 97 97 SecPlatformMain ( 98 IN OUT EFI_SEC_PEI_HAND_OFF 98 IN OUT EFI_SEC_PEI_HAND_OFF *SecCoreData 99 99 ) 100 100 { 101 EFI_PEI_PPI_DESCRIPTOR 101 EFI_PEI_PPI_DESCRIPTOR *PpiList; 102 102 103 DEBUG ((DEBUG_INFO, "SecPlatformMain\n"));103 DEBUG ((DEBUG_INFO, "SecPlatformMain\n")); 104 104 105 DEBUG ((DEBUG_INFO, "BootFirmwareVolumeBase - 0x%x\n", SecCoreData->BootFirmwareVolumeBase));106 DEBUG ((DEBUG_INFO, "BootFirmwareVolumeSize - 0x%x\n", SecCoreData->BootFirmwareVolumeSize));107 DEBUG ((DEBUG_INFO, "TemporaryRamBase - 0x%x\n", SecCoreData->TemporaryRamBase));108 DEBUG ((DEBUG_INFO, "TemporaryRamSize - 0x%x\n", SecCoreData->TemporaryRamSize));109 DEBUG ((DEBUG_INFO, "PeiTemporaryRamBase - 0x%x\n", SecCoreData->PeiTemporaryRamBase));110 DEBUG ((DEBUG_INFO, "PeiTemporaryRamSize - 0x%x\n", SecCoreData->PeiTemporaryRamSize));111 DEBUG ((DEBUG_INFO, "StackBase - 0x%x\n", SecCoreData->StackBase));112 DEBUG ((DEBUG_INFO, "StackSize - 0x%x\n", SecCoreData->StackSize));105 DEBUG ((DEBUG_INFO, "BootFirmwareVolumeBase - 0x%x\n", SecCoreData->BootFirmwareVolumeBase)); 106 DEBUG ((DEBUG_INFO, "BootFirmwareVolumeSize - 0x%x\n", SecCoreData->BootFirmwareVolumeSize)); 107 DEBUG ((DEBUG_INFO, "TemporaryRamBase - 0x%x\n", SecCoreData->TemporaryRamBase)); 108 DEBUG ((DEBUG_INFO, "TemporaryRamSize - 0x%x\n", SecCoreData->TemporaryRamSize)); 109 DEBUG ((DEBUG_INFO, "PeiTemporaryRamBase - 0x%x\n", SecCoreData->PeiTemporaryRamBase)); 110 DEBUG ((DEBUG_INFO, "PeiTemporaryRamSize - 0x%x\n", SecCoreData->PeiTemporaryRamSize)); 111 DEBUG ((DEBUG_INFO, "StackBase - 0x%x\n", SecCoreData->StackBase)); 112 DEBUG ((DEBUG_INFO, "StackSize - 0x%x\n", SecCoreData->StackSize)); 113 113 114 InitializeApicTimer (0, (UINT32) 114 InitializeApicTimer (0, (UINT32)-1, TRUE, 5); 115 115 116 116 // … … 119 119 // 120 120 PpiList = (VOID *)((UINTN)SecCoreData->PeiTemporaryRamBase + (UINTN)SecCoreData->PeiTemporaryRamSize/2); 121 CopyMem (PpiList, mPeiSecPlatformPpi, sizeof (mPeiSecPlatformPpi));121 CopyMem (PpiList, mPeiSecPlatformPpi, sizeof (mPeiSecPlatformPpi)); 122 122 123 123 // -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/PeiCoreEntry.nasm
-
Property svn:mime-type
set to
text/x-asm
-
Property svn:mime-type
set to
-
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/SecEntry.nasm
-
Property svn:mime-type
set to
text/x-asm
-
Property svn:mime-type
set to
-
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/Stack.nasm
-
Property svn:mime-type
set to
text/x-asm
r85718 r99404 1 1 ;------------------------------------------------------------------------------ 2 2 ; 3 ; Copyright (c) 2016 , Intel Corporation. All rights reserved.<BR>3 ; Copyright (c) 2016 - 2022, Intel Corporation. All rights reserved.<BR> 4 4 ; SPDX-License-Identifier: BSD-2-Clause-Patent 5 5 ; … … 23 23 ASM_PFX(SecSwitchStack): 24 24 ; 25 ; Save three register: eax, ebx, ecx25 ; Save four register: eax, ebx, ecx, edx 26 26 ; 27 27 push eax … … 56 56 mov edx, dword [esp + 16] ; Update this function's return address into permanent memory 57 57 mov dword [eax + 16], edx 58 mov esp, eax 58 mov esp, eax ; From now, esp is pointed to permanent memory 59 59 60 60 ; … … 64 64 sub eax, ebx 65 65 add eax, ecx 66 mov ebp, eax ; From now, ebp is pointed to permanent memory66 mov ebp, eax ; From now, ebp is pointed to permanent memory 67 67 68 68 pop edx -
Property svn:mime-type
set to
-
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/PlatformInit.c
r80721 r99404 6 6 7 7 **/ 8 9 8 10 9 #include <PiPei.h> … … 22 21 EFIAPI 23 22 PlatformInit ( 24 IN VOID 25 IN VOID 26 IN VOID 23 IN VOID *FspHobList, 24 IN VOID *StartOfRange, 25 IN VOID *EndOfRange 27 26 ) 28 27 { -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecFspWrapperPlatformSecLibSample.inf
r80721 r99404 2 2 # Sample to provide FSP wrapper platform sec related function. 3 3 # 4 # Copyright (c) 2014 - 20 16, Intel Corporation. All rights reserved.<BR>4 # Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 5 5 # 6 6 # SPDX-License-Identifier: BSD-2-Clause-Patent … … 40 40 SecTempRamDone.c 41 41 PlatformInit.c 42 Fsp.h 42 43 43 44 [Sources.IA32] 44 Ia32/Fsp.h45 45 Ia32/SecEntry.nasm 46 46 Ia32/PeiCoreEntry.nasm 47 47 Ia32/Stack.nasm 48 49 [Sources.X64] 50 X64/SecEntry.nasm 51 X64/PeiCoreEntry.nasm 52 X64/Stack.nasm 48 53 49 54 ################################################################################ … … 77 82 78 83 [FixedPcd] 79 gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchAddress ## CONSUMES 80 gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize ## CONSUMES 81 gIntelFsp2WrapperTokenSpaceGuid.PcdFlashMicrocodeOffset ## CONSUMES 84 gUefiCpuPkgTokenSpaceGuid.PcdCpuMicrocodePatchAddress ## CONSUMES 85 gUefiCpuPkgTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize ## CONSUMES 82 86 gIntelFsp2WrapperTokenSpaceGuid.PcdFlashCodeCacheAddress ## CONSUMES 83 87 gIntelFsp2WrapperTokenSpaceGuid.PcdFlashCodeCacheSize ## CONSUMES -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecGetPerformance.c
r80721 r99404 54 54 0, 55 55 NULL, 56 (VOID **) 56 (VOID **)&TopOfTemporaryRamPpi 57 57 ); 58 58 if (EFI_ERROR (Status)) { … … 73 73 // |--------------| 74 74 // 75 TopOfTemporaryRam = (UINT32)(UINTN)TopOfTemporaryRamPpi - sizeof(UINT32);76 TopOfTemporaryRam -= sizeof (UINT32) * 2;77 Count = *(UINT32 *) (UINTN)(TopOfTemporaryRam - sizeof (UINT32));78 Size = Count * sizeof (UINT64);75 TopOfTemporaryRam = (UINT32)(UINTN)TopOfTemporaryRamPpi - sizeof (UINT32); 76 TopOfTemporaryRam -= sizeof (UINT32) * 2; 77 Count = *(UINT32 *)(UINTN)(TopOfTemporaryRam - sizeof (UINT32)); 78 Size = Count * sizeof (UINT64); 79 79 80 Ticker = *(UINT64 *) (UINTN)(TopOfTemporaryRam - sizeof (UINT32) - Size - sizeof (UINT32) * 2);80 Ticker = *(UINT64 *)(UINTN)(TopOfTemporaryRam - sizeof (UINT32) - Size - sizeof (UINT32) * 2); 81 81 Performance->ResetEnd = GetTimeInNanoSecond (Ticker); 82 82 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecPlatformInformation.c
r80721 r99404 29 29 EFIAPI 30 30 SecPlatformInformation ( 31 IN CONST EFI_PEI_SERVICES 32 IN OUT UINT64 33 31 IN CONST EFI_PEI_SERVICES **PeiServices, 32 IN OUT UINT64 *StructureSize, 33 OUT EFI_SEC_PLATFORM_INFORMATION_RECORD *PlatformInformationRecord 34 34 ) 35 35 { … … 48 48 0, 49 49 NULL, 50 (VOID **) 50 (VOID **)&TopOfTemporaryRamPpi 51 51 ); 52 52 if (EFI_ERROR (Status)) { … … 60 60 // PlatformInformationRecord for output. 61 61 // 62 TopOfTemporaryRam = (UINT32)(UINTN)TopOfTemporaryRamPpi - sizeof (UINT32);63 TopOfTemporaryRam -= sizeof (UINT32) * 2;64 Count = *((UINT32 *)(UINTN)(TopOfTemporaryRam - sizeof (UINT32)));65 Size = Count * sizeof (IA32_HANDOFF_STATUS);62 TopOfTemporaryRam = (UINT32)(UINTN)TopOfTemporaryRamPpi - sizeof (UINT32); 63 TopOfTemporaryRam -= sizeof (UINT32) * 2; 64 Count = *((UINT32 *)(UINTN)(TopOfTemporaryRam - sizeof (UINT32))); 65 Size = Count * sizeof (IA32_HANDOFF_STATUS); 66 66 67 if ((*StructureSize) < (UINT64) 67 if ((*StructureSize) < (UINT64)Size) { 68 68 *StructureSize = Size; 69 69 return EFI_BUFFER_TOO_SMALL; 70 70 } 71 71 72 *StructureSize 73 Bist = (UINT32 *)(TopOfTemporaryRam - sizeof (UINT32) - Size);72 *StructureSize = Size; 73 Bist = (UINT32 *)(TopOfTemporaryRam - sizeof (UINT32) - Size); 74 74 75 75 CopyMem (PlatformInformationRecord, Bist, Size); -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecRamInitData.c
r89983 r99404 2 2 Sample to provide TempRamInitParams data. 3 3 4 Copyright (c) 2014 - 202 0, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR> 5 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 … … 11 11 12 12 typedef struct { 13 UINT32MicrocodeRegionBase;14 UINT 32MicrocodeRegionSize;15 UINT32CodeRegionBase;16 UINT 32CodeRegionSize;13 EFI_PHYSICAL_ADDRESS MicrocodeRegionBase; 14 UINT64 MicrocodeRegionSize; 15 EFI_PHYSICAL_ADDRESS CodeRegionBase; 16 UINT64 CodeRegionSize; 17 17 } FSPT_CORE_UPD; 18 18 … … 20 20 FSP_UPD_HEADER FspUpdHeader; 21 21 // 22 // If platform does not support FSP spec 2.2 remove FSPT_ARCH_UPD structure. 22 // If FSP spec version < 2.2, remove FSPT_ARCH_UPD structure. 23 // Else If FSP spec version >= 2.2 and FSP spec version < 2.4, use FSPT_ARCH_UPD structure. 24 // Else, use FSPT_ARCH2_UPD structure. 23 25 // 24 FSPT_ARCH _UPDFsptArchUpd;26 FSPT_ARCH2_UPD FsptArchUpd; 25 27 FSPT_CORE_UPD FsptCoreUpd; 26 28 } FSPT_UPD_CORE_DATA; 27 29 28 GLOBAL_REMOVE_IF_UNREFERENCED CONST FSPT_UPD_CORE_DATA FsptUpdDataPtr = {30 GLOBAL_REMOVE_IF_UNREFERENCED CONST FSPT_UPD_CORE_DATA FsptUpdDataPtr = { 29 31 { 30 32 0x4450555F54505346, … … 34 36 0x02, 35 37 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 36 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 37 } 38 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } 38 39 }, 39 40 // 40 // If platform does not support FSP spec 2.2 remove FSPT_ARCH_UPD structure. 41 // If FSP spec version < 2.2, remove FSPT_ARCH_UPD structure. 42 // Else If FSP spec version >= 2.2 and FSP spec version < 2.4, use FSPT_ARCH_UPD structure. 43 // Else, use FSPT_ARCH2_UPD structure. 41 44 // 42 45 { 43 0x0 1,46 0x02, 44 47 { 45 48 0x00, 0x00, 0x00 … … 49 52 { 50 53 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 51 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 , 0x00, 0x00, 0x00, 0x0054 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 52 55 } 53 56 }, 54 57 { 55 ((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchAddress) + FixedPcdGet32 (PcdFlashMicrocodeOffset)),56 ((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchRegionSize) - FixedPcdGet32 (PcdFlashMicrocodeOffset)),58 FixedPcdGet32 (PcdCpuMicrocodePatchAddress), 59 FixedPcdGet32 (PcdCpuMicrocodePatchRegionSize), 57 60 FixedPcdGet32 (PcdFlashCodeCacheAddress), 58 61 FixedPcdGet32 (PcdFlashCodeCacheSize), 59 62 } 60 63 }; 61 -
trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecTempRamDone.c
r80721 r99404 24 24 ) 25 25 { 26 EFI_STATUS 27 VOID 28 FSP_INFO_HEADER 26 EFI_STATUS Status; 27 VOID *TempRamExitParam; 28 FSP_INFO_HEADER *FspHeader; 29 29 30 FspHeader = FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress));30 FspHeader = FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress)); 31 31 if (FspHeader == NULL) { 32 return 32 return; 33 33 } 34 34 35 DEBUG ((DEBUG_INFO, "SecPlatformDisableTemporaryMemory enter\n"));35 DEBUG ((DEBUG_INFO, "SecPlatformDisableTemporaryMemory enter\n")); 36 36 37 37 TempRamExitParam = UpdateTempRamExitParam (); 38 Status = CallTempRamExit (TempRamExitParam);39 DEBUG ((DEBUG_INFO, "TempRamExit status: 0x%x\n", Status));40 ASSERT_EFI_ERROR (Status);38 Status = CallTempRamExit (TempRamExitParam); 39 DEBUG ((DEBUG_INFO, "TempRamExit status: 0x%x\n", Status)); 40 ASSERT_EFI_ERROR (Status); 41 41 42 return 42 return; 43 43 }
Note:
See TracChangeset
for help on using the changeset viewer.