VirtualBox

Ignore:
Timestamp:
Apr 14, 2023 3:17:44 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
156854
Message:

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

Location:
trunk/src/VBox/Devices/EFI/FirmwareNew
Files:
14 added
1 deleted
35 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/FirmwareNew

  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.c

    r80721 r99404  
    2222#include <FspStatusCode.h>
    2323
    24 #define   FSP_API_NOTIFY_PHASE_AFTER_PCI_ENUMERATION     BIT16
     24#define   FSP_API_NOTIFY_PHASE_AFTER_PCI_ENUMERATION  BIT16
    2525
    2626typedef
    2727EFI_STATUS
    28 (EFIAPI * ADD_PERFORMANCE_RECORDS)(
     28(EFIAPI *ADD_PERFORMANCE_RECORDS)(
    2929  IN CONST VOID *HobStart
    3030  );
    3131
    3232struct _ADD_PERFORMANCE_RECORD_PROTOCOL {
    33   ADD_PERFORMANCE_RECORDS          AddPerformanceRecords;
     33  ADD_PERFORMANCE_RECORDS    AddPerformanceRecords;
    3434};
    3535
    3636typedef struct _ADD_PERFORMANCE_RECORD_PROTOCOL ADD_PERFORMANCE_RECORD_PROTOCOL;
    3737
    38 extern EFI_GUID gAddPerfRecordProtocolGuid;
    39 extern EFI_GUID gFspHobGuid;
    40 extern EFI_GUID gFspApiPerformanceGuid;
    41 
    42 static EFI_EVENT mExitBootServicesEvent    = NULL;
     38extern EFI_GUID  gAddPerfRecordProtocolGuid;
     39extern EFI_GUID  gFspHobGuid;
     40extern EFI_GUID  gFspApiPerformanceGuid;
     41
     42static EFI_EVENT  mExitBootServicesEvent = NULL;
    4343
    4444/**
     
    5454EFI_STATUS
    5555RelocateImageUnder4GIfNeeded (
    56   IN EFI_HANDLE           ImageHandle,
    57   IN EFI_SYSTEM_TABLE     *SystemTable
     56  IN EFI_HANDLE        ImageHandle,
     57  IN EFI_SYSTEM_TABLE  *SystemTable
    5858  );
    5959
     
    7171  )
    7272{
    73   NOTIFY_PHASE_PARAMS NotifyPhaseParams;
    74   EFI_STATUS          Status;
    75   VOID                *Interface;
     73  NOTIFY_PHASE_PARAMS  NotifyPhaseParams;
     74  EFI_STATUS           Status;
     75  VOID                 *Interface;
    7676
    7777  //
     
    8585                  );
    8686  if (EFI_ERROR (Status)) {
    87     return ;
     87    return;
    8888  }
    8989
    9090  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);
    9292  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);
    9494
    9595  //
     
    9797  //
    9898  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);
    101101  }
    102102
    103103  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"));
    107107  }
    108108}
     
    126126  )
    127127{
    128   NOTIFY_PHASE_PARAMS               NotifyPhaseParams;
    129   EFI_STATUS                        Status;
     128  NOTIFY_PHASE_PARAMS  NotifyPhaseParams;
     129  EFI_STATUS           Status;
    130130
    131131  gBS->CloseEvent (Event);
    132132
    133133  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);
    135135  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);
    137137
    138138  //
     
    140140  //
    141141  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);
    144144  }
    145145
    146146  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"));
    150150  }
    151151}
     
    167167  )
    168168{
    169   NOTIFY_PHASE_PARAMS               NotifyPhaseParams;
    170   EFI_STATUS                        Status;
    171   ADD_PERFORMANCE_RECORD_PROTOCOL   *AddPerfRecordInterface;
    172   EFI_PEI_HOB_POINTERS              Hob;
    173   VOID                              **FspHobListPtr;
     169  NOTIFY_PHASE_PARAMS              NotifyPhaseParams;
     170  EFI_STATUS                       Status;
     171  ADD_PERFORMANCE_RECORD_PROTOCOL  *AddPerfRecordInterface;
     172  EFI_PEI_HOB_POINTERS             Hob;
     173  VOID                             **FspHobListPtr;
    174174
    175175  gBS->CloseEvent (Event);
    176176
    177177  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);
    179179  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);
    181181
    182182  //
     
    184184  //
    185185  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);
    188188  }
    189189
    190190  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
    195196  Status = gBS->LocateProtocol (
    196197                  &gAddPerfRecordProtocolGuid,
    197198                  NULL,
    198                   (VOID**) &AddPerfRecordInterface
     199                  (VOID **)&AddPerfRecordInterface
    199200                  );
    200201  if (EFI_ERROR (Status)) {
    201     DEBUG((DEBUG_INFO, "gAddPerfRecordProtocolGuid - Locate protocol failed\n"));
     202    DEBUG ((DEBUG_INFO, "gAddPerfRecordProtocolGuid - Locate protocol failed\n"));
    202203    return;
    203204  } else {
     
    225226EFIAPI
    226227FspWrapperNotifyDxeEntryPoint (
    227   IN EFI_HANDLE         ImageHandle,
    228   IN EFI_SYSTEM_TABLE   *SystemTable
    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;
    236237
    237238  //
     
    275276  return EFI_SUCCESS;
    276277}
    277 
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspWrapperNotifyDxe/LoadBelow4G.c

    r80721 r99404  
    3030EFI_STATUS
    3131RelocateImageUnder4GIfNeeded (
    32   IN EFI_HANDLE           ImageHandle,
    33   IN EFI_SYSTEM_TABLE     *SystemTable
     32  IN EFI_HANDLE        ImageHandle,
     33  IN EFI_SYSTEM_TABLE  *SystemTable
    3434  )
    3535{
    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;
     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;
    4444
    4545  //
     
    6565  //
    6666  NewImageHandle = NULL;
    67   Status = gBS->InstallProtocolInterface (
    68                   &NewImageHandle,
    69                   &gEfiCallerIdGuid,
    70                   EFI_NATIVE_INTERFACE,
    71                   NULL
    72                   );
     67  Status         = gBS->InstallProtocolInterface (
     68                          &NewImageHandle,
     69                          &gEfiCallerIdGuid,
     70                          EFI_NATIVE_INTERFACE,
     71                          NULL
     72                          );
    7373  ASSERT_EFI_ERROR (Status);
    7474
     
    7676  // Reload image itself to <4G mem
    7777  //
    78   Status = GetSectionFromAnyFv  (
     78  Status = GetSectionFromAnyFv (
    7979             &gEfiCallerIdGuid,
    8080             EFI_SECTION_PE32,
    8181             0,
    82              (VOID **) &Buffer,
     82             (VOID **)&Buffer,
    8383             &BufferSize
    8484             );
     
    9292  ASSERT_EFI_ERROR (Status);
    9393  if (ImageContext.SectionAlignment > EFI_PAGE_SIZE) {
    94     Pages = EFI_SIZE_TO_PAGES ((UINTN) (ImageContext.ImageSize + ImageContext.SectionAlignment));
     94    Pages = EFI_SIZE_TO_PAGES ((UINTN)(ImageContext.ImageSize + ImageContext.SectionAlignment));
    9595  } else {
    96     Pages = EFI_SIZE_TO_PAGES ((UINTN) ImageContext.ImageSize);
     96    Pages = EFI_SIZE_TO_PAGES ((UINTN)ImageContext.ImageSize);
    9797  }
     98
    9899  FfsBuffer = 0xFFFFFFFF;
    99   Status = gBS->AllocatePages (
    100                   AllocateMaxAddress,
    101                   EfiBootServicesCode,
    102                   Pages,
    103                   &FfsBuffer
    104                   );
     100  Status    = gBS->AllocatePages (
     101                     AllocateMaxAddress,
     102                     EfiBootServicesCode,
     103                     Pages,
     104                     &FfsBuffer
     105                     );
    105106  ASSERT_EFI_ERROR (Status);
    106107  ImageContext.ImageAddress = (PHYSICAL_ADDRESS)(UINTN)FfsBuffer;
     
    133134
    134135  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)) (NewImageHandle, gST);
     136  Status = ((EFI_IMAGE_ENTRY_POINT)(UINTN)(ImageContext.EntryPoint))(NewImageHandle, gST);
    136137  if (EFI_ERROR (Status)) {
    137138    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  
    44  notify to call FspSiliconInit API.
    55
    6   Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
     6  Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    77  SPDX-License-Identifier: BSD-2-Clause-Patent
    88
    99**/
    10 
    1110
    1211#include <PiPei.h>
     
    2524#include <Library/FspWrapperPlatformLib.h>
    2625#include <Library/FspWrapperHobProcessLib.h>
     26#include <Library/FspWrapperMultiPhaseProcessLib.h>
    2727#include <Library/FspWrapperApiLib.h>
    2828#include <Library/FspMeasurementLib.h>
     
    3737#include <FspEas.h>
    3838#include <FspStatusCode.h>
    39 
    40 extern EFI_GUID gFspHobGuid;
     39#include <FspGlobalData.h>
     40#include <Library/FspCommonLib.h>
     41
     42extern EFI_GUID  gFspHobGuid;
     43
     44/**
     45  Get the FSP M UPD Data address
     46
     47  @return FSP-M UPD Data Address
     48**/
     49UINTN
     50GetFspmUpdDataAddress (
     51  VOID
     52  )
     53{
     54  if (PcdGet64 (PcdFspmUpdDataAddress64) != 0) {
     55    return (UINTN)PcdGet64 (PcdFspmUpdDataAddress64);
     56  } else {
     57    return (UINTN)PcdGet32 (PcdFspmUpdDataAddress);
     58  }
     59}
    4160
    4261/**
     
    5069  )
    5170{
    52   FSP_INFO_HEADER           *FspmHeaderPtr;
    53   EFI_STATUS                Status;
    54   UINT64                    TimeStampCounterStart;
    55   VOID                      *FspHobListPtr;
    56   VOID                      *HobData;
    57   FSPM_UPD_COMMON           *FspmUpdDataPtr;
    58   UINTN                     *SourceData;
     71  FSP_INFO_HEADER  *FspmHeaderPtr;
     72  EFI_STATUS       Status;
     73  UINT64           TimeStampCounterStart;
     74  VOID             *FspHobListPtr;
     75  VOID             *HobData;
     76  VOID             *FspmUpdDataPtr;
     77  UINTN            *SourceData;
    5978
    6079  DEBUG ((DEBUG_INFO, "PeiFspMemoryInit enter\n"));
    6180
    62   FspHobListPtr = NULL;
     81  FspHobListPtr  = NULL;
    6382  FspmUpdDataPtr = NULL;
    6483
    65   FspmHeaderPtr = (FSP_INFO_HEADER *) FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress));
     84  FspmHeaderPtr = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress));
    6685  DEBUG ((DEBUG_INFO, "FspmHeaderPtr - 0x%x\n", FspmHeaderPtr));
    6786  if (FspmHeaderPtr == NULL) {
     
    6988  }
    7089
    71   if (PcdGet32 (PcdFspmUpdDataAddress) == 0 && (FspmHeaderPtr->CfgRegionSize != 0) && (FspmHeaderPtr->CfgRegionOffset != 0)) {
     90  if ((GetFspmUpdDataAddress () == 0) && (FspmHeaderPtr->CfgRegionSize != 0) && (FspmHeaderPtr->CfgRegionOffset != 0)) {
    7291    //
    7392    // Copy default FSP-M UPD data from Flash
    7493    //
    75     FspmUpdDataPtr = (FSPM_UPD_COMMON *)AllocateZeroPool ((UINTN)FspmHeaderPtr->CfgRegionSize);
     94    FspmUpdDataPtr = AllocateZeroPool ((UINTN)FspmHeaderPtr->CfgRegionSize);
    7695    ASSERT (FspmUpdDataPtr != NULL);
    7796    SourceData = (UINTN *)((UINTN)FspmHeaderPtr->ImageBase + (UINTN)FspmHeaderPtr->CfgRegionOffset);
     
    81100    // External UPD is ready, get the buffer from PCD pointer.
    82101    //
    83     FspmUpdDataPtr = (FSPM_UPD_COMMON *)PcdGet32 (PcdFspmUpdDataAddress);
     102    FspmUpdDataPtr = (VOID *)GetFspmUpdDataAddress ();
    84103    ASSERT (FspmUpdDataPtr != NULL);
    85104  }
    86105
    87106  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
    94121  DEBUG ((DEBUG_INFO, "  HobListPtr          - 0x%x\n", &FspHobListPtr));
    95122
    96123  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  //
    98153  // 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);
    101157  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 status
    105   //
    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 
    117158
    118159  Status = TestFspMemoryInitApiOutput (FspmUpdDataPtr, &FspHobListPtr);
     
    131172  //
    132173  HobData = BuildGuidHob (
    133              &gFspHobGuid,
    134              sizeof (VOID *)
    135              );
     174              &gFspHobGuid,
     175              sizeof (VOID *)
     176              );
    136177  ASSERT (HobData != NULL);
    137178  CopyMem (HobData, &FspHobListPtr, sizeof (FspHobListPtr));
     
    151192  )
    152193{
    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);
    165206  MeasurementExcludedPpiList->Flags = EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST;
    166207  MeasurementExcludedPpiList->Guid  = &gEfiPeiFirmwareVolumeInfoMeasurementExcludedPpiGuid;
     
    178219    PeiServicesInstallFvInfoPpi (
    179220      NULL,
    180       (VOID *)(UINTN) PcdGet32 (PcdFspmBaseAddress),
    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,
    182223      NULL,
    183224      NULL
     
    201242EFIAPI
    202243TcgPpiNotify (
    203   IN EFI_PEI_SERVICES          **PeiServices,
    204   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    205   IN VOID                      *Ppi
     244  IN EFI_PEI_SERVICES           **PeiServices,
     245  IN EFI_PEI_NOTIFY_DESCRIPTOR  *NotifyDesc,
     246  IN VOID                       *Ppi
    206247  );
    207248
    208 EFI_PEI_NOTIFY_DESCRIPTOR mTcgPpiNotifyDesc = {
     249EFI_PEI_NOTIFY_DESCRIPTOR  mTcgPpiNotifyDesc = {
    209250  (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
    210251  &gEdkiiTcgPpiGuid,
     
    225266EFIAPI
    226267TcgPpiNotify (
    227   IN EFI_PEI_SERVICES          **PeiServices,
    228   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    229   IN VOID                      *Ppi
    230   )
    231 {
    232   UINT32                    FspMeasureMask;
     268  IN EFI_PEI_SERVICES           **PeiServices,
     269  IN EFI_PEI_NOTIFY_DESCRIPTOR  *NotifyDesc,
     270  IN VOID                       *Ppi
     271  )
     272{
     273  UINT32  FspMeasureMask;
    233274
    234275  DEBUG ((DEBUG_INFO, "TcgPpiNotify FSPM\n"));
     
    237278
    238279  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      );
    241286  }
    242287
    243288  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      );
    246295  }
    247296
     
    266315  EFI_STATUS  Status;
    267316
    268   DEBUG((DEBUG_INFO, "FspmWrapperPeimEntryPoint\n"));
     317  DEBUG ((DEBUG_INFO, "FspmWrapperPeimEntryPoint\n"));
    269318
    270319  Status = PeiServicesNotifyPpi (&mTcgPpiNotifyDesc);
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf

    r89983 r99404  
    77# notify to call FspSiliconInit API.
    88#
    9 #  Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
     9#  Copyright (c) 2014 - 2021, Intel Corporation. All rights reserved.<BR>
    1010#
    1111#  SPDX-License-Identifier: BSD-2-Clause-Patent
     
    3838  FspWrapperPlatformLib
    3939  FspWrapperHobProcessLib
     40  CpuLib
    4041  UefiCpuLib
    4142  PeCoffGetEntryPointLib
     
    4647  FspWrapperApiTestLib
    4748  FspMeasurementLib
     49  FspWrapperMultiPhaseProcessLib
    4850
    4951[Packages]
     
    6163  gIntelFsp2WrapperTokenSpaceGuid.PcdFsptBaseAddress       ## CONSUMES
    6264  gIntelFsp2WrapperTokenSpaceGuid.PcdFspMeasurementConfig  ## CONSUMES
     65  gIntelFsp2WrapperTokenSpaceGuid.PcdFspmUpdDataAddress64  ## CONSUMES
    6366
    6467[Sources]
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.c

    r89983 r99404  
    44  notify to call FspSiliconInit API.
    55
    6   Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
     6  Copyright (c) 2014 - 2021, Intel Corporation. All rights reserved.<BR>
    77  SPDX-License-Identifier: BSD-2-Clause-Patent
    88
     
    2222#include <Library/FspWrapperPlatformLib.h>
    2323#include <Library/FspWrapperHobProcessLib.h>
     24#include <Library/FspWrapperMultiPhaseProcessLib.h>
    2425#include <Library/TimerLib.h>
    2526#include <Library/PerformanceLib.h>
     
    3738#include <FspEas.h>
    3839#include <FspStatusCode.h>
    39 
    40 extern EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc;
    41 extern EFI_GUID                  gFspHobGuid;
     40#include <FspGlobalData.h>
     41
     42extern EFI_PEI_NOTIFY_DESCRIPTOR  mS3EndOfPeiNotifyDesc;
     43extern EFI_GUID                   gFspHobGuid;
    4244
    4345/**
     
    5355EFI_STATUS
    5456EFIAPI
    55 S3EndOfPeiNotify(
    56   IN EFI_PEI_SERVICES          **PeiServices,
    57   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    58   IN VOID                      *Ppi
     57S3EndOfPeiNotify (
     58  IN EFI_PEI_SERVICES           **PeiServices,
     59  IN EFI_PEI_NOTIFY_DESCRIPTOR  *NotifyDesc,
     60  IN VOID                       *Ppi
    5961  );
    6062
    61 EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc = {
     63EFI_PEI_NOTIFY_DESCRIPTOR  mS3EndOfPeiNotifyDesc = {
    6264  (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
    6365  &gEfiEndOfPeiSignalPpiGuid,
     
    7779EFI_STATUS
    7880EFIAPI
    79 S3EndOfPeiNotify(
    80   IN EFI_PEI_SERVICES          **PeiServices,
    81   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    82   IN VOID                      *Ppi
    83   )
    84 {
    85   NOTIFY_PHASE_PARAMS NotifyPhaseParams;
    86   EFI_STATUS          Status;
    87 
    88   DEBUG((DEBUG_INFO, "S3EndOfPeiNotify enter\n"));
     81S3EndOfPeiNotify (
     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"));
    8991
    9092  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));
    9395
    9496  //
     
    9698  //
    9799  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);
    100102  }
    101103
    102104  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));
    105107
    106108  //
     
    108110  //
    109111  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);
    112114  }
    113115
    114116  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));
    117119
    118120  //
     
    120122  //
    121123  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);
    124126  }
    125127
     
    139141EFIAPI
    140142FspSiliconInitDoneGetFspHobList (
    141   IN  CONST EFI_PEI_SERVICES         **PeiServices,
    142   IN  FSP_SILICON_INIT_DONE_PPI      *This,
    143   OUT VOID                           **FspHobList
     143  IN  CONST EFI_PEI_SERVICES     **PeiServices,
     144  IN  FSP_SILICON_INIT_DONE_PPI  *This,
     145  OUT VOID                       **FspHobList
    144146  );
    145147
    146 FSP_SILICON_INIT_DONE_PPI mFspSiliconInitDonePpi = {
     148FSP_SILICON_INIT_DONE_PPI  mFspSiliconInitDonePpi = {
    147149  FspSiliconInitDoneGetFspHobList
    148150};
    149151
    150 EFI_PEI_PPI_DESCRIPTOR            mPeiFspSiliconInitDonePpi = {
     152EFI_PEI_PPI_DESCRIPTOR  mPeiFspSiliconInitDonePpi = {
    151153  EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST,
    152154  &gFspSiliconInitDonePpiGuid,
     
    166168EFIAPI
    167169FspSiliconInitDoneGetFspHobList (
    168   IN  CONST EFI_PEI_SERVICES         **PeiServices,
    169   IN  FSP_SILICON_INIT_DONE_PPI      *This,
    170   OUT VOID                           **FspHobList
    171   )
    172 {
    173   EFI_HOB_GUID_TYPE                  *GuidHob;
     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;
    174176
    175177  GuidHob = GetFirstGuidHob (&gFspHobGuid);
    176178  if (GuidHob != NULL) {
    177     *FspHobList = *(VOID **)GET_GUID_HOB_DATA(GuidHob);
     179    *FspHobList = *(VOID **)GET_GUID_HOB_DATA (GuidHob);
    178180    return EFI_SUCCESS;
    179181  } else {
     
    183185
    184186/**
     187  Get the FSP S UPD Data address
     188
     189  @return FSP-S UPD Data Address
     190**/
     191UINTN
     192GetFspsUpdDataAddress (
     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/**
    185204  This function is for FSP dispatch mode to perform post FSP-S process.
    186205
     
    195214EFIAPI
    196215FspsWrapperEndOfPeiNotify (
    197   IN EFI_PEI_SERVICES          **PeiServices,
    198   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    199   IN VOID                      *Ppi
     216  IN EFI_PEI_SERVICES           **PeiServices,
     217  IN EFI_PEI_NOTIFY_DESCRIPTOR  *NotifyDesc,
     218  IN VOID                       *Ppi
    200219  )
    201220{
     
    214233  //
    215234  Status = PeiServicesInstallPpi (&mPeiFspSiliconInitDonePpi);
    216   ASSERT_EFI_ERROR(Status);
     235  ASSERT_EFI_ERROR (Status);
    217236
    218237  return Status;
    219238}
    220239
    221 EFI_PEI_NOTIFY_DESCRIPTOR mFspsWrapperEndOfPeiNotifyDesc = {
     240EFI_PEI_NOTIFY_DESCRIPTOR  mFspsWrapperEndOfPeiNotifyDesc = {
    222241  (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
    223242  &gEfiEndOfPeiSignalPpiGuid,
     
    238257EFIAPI
    239258PeiMemoryDiscoveredNotify (
    240   IN EFI_PEI_SERVICES          **PeiServices,
    241   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    242   IN VOID                      *Ppi
     259  IN EFI_PEI_SERVICES           **PeiServices,
     260  IN EFI_PEI_NOTIFY_DESCRIPTOR  *NotifyDesc,
     261  IN VOID                       *Ppi
    243262  );
    244263
    245 EFI_PEI_NOTIFY_DESCRIPTOR mPeiMemoryDiscoveredNotifyDesc = {
     264EFI_PEI_NOTIFY_DESCRIPTOR  mPeiMemoryDiscoveredNotifyDesc = {
    246265  (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
    247266  &gEfiPeiMemoryDiscoveredPpiGuid,
     
    262281EFIAPI
    263282PeiMemoryDiscoveredNotify (
    264   IN EFI_PEI_SERVICES          **PeiServices,
    265   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    266   IN VOID                      *Ppi
    267   )
    268 {
    269   FSP_INFO_HEADER           *FspsHeaderPtr;
    270   UINT64                    TimeStampCounterStart;
    271   EFI_STATUS                Status;
    272   VOID                      *FspHobListPtr;
    273   EFI_HOB_GUID_TYPE         *GuidHob;
    274   FSPS_UPD_COMMON           *FspsUpdDataPtr;
    275   UINTN                     *SourceData;
     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;
    276295
    277296  DEBUG ((DEBUG_INFO, "PeiMemoryDiscoveredNotify enter\n"));
     
    284303  }
    285304
    286   if (PcdGet32 (PcdFspsUpdDataAddress) == 0 && (FspsHeaderPtr->CfgRegionSize != 0) && (FspsHeaderPtr->CfgRegionOffset != 0)) {
     305  if ((GetFspsUpdDataAddress () == 0) && (FspsHeaderPtr->CfgRegionSize != 0) && (FspsHeaderPtr->CfgRegionOffset != 0)) {
    287306    //
    288307    // Copy default FSP-S UPD data from Flash
     
    293312    CopyMem (FspsUpdDataPtr, SourceData, (UINTN)FspsHeaderPtr->CfgRegionSize);
    294313  } else {
    295     FspsUpdDataPtr = (FSPS_UPD_COMMON *)PcdGet32 (PcdFspsUpdDataAddress);
     314    FspsUpdDataPtr = (FSPS_UPD_COMMON *)GetFspsUpdDataAddress ();
    296315    ASSERT (FspsUpdDataPtr != NULL);
    297316  }
     
    300319
    301320  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);
    303322  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);
    305352  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 status
    309   //
    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);
    320353
    321354  Status = TestFspSiliconInitApiOutput ((VOID *)NULL);
     
    337370  //
    338371  Status = PeiServicesInstallPpi (&mPeiFspSiliconInitDonePpi);
    339   ASSERT_EFI_ERROR(Status);
     372  ASSERT_EFI_ERROR (Status);
    340373
    341374  return Status;
     
    352385  )
    353386{
    354   EFI_STATUS           Status;
    355   EFI_BOOT_MODE        BootMode;
     387  EFI_STATUS     Status;
     388  EFI_BOOT_MODE  BootMode;
    356389
    357390  //
     
    383416  )
    384417{
    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);
    397430  MeasurementExcludedPpiList->Flags = EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST;
    398431  MeasurementExcludedPpiList->Guid  = &gEfiPeiFirmwareVolumeInfoMeasurementExcludedPpiGuid;
     
    407440  PeiServicesInstallFvInfoPpi (
    408441    NULL,
    409     (VOID *)(UINTN) PcdGet32 (PcdFspsBaseAddress),
    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,
    411444    NULL,
    412445    NULL
     
    433466EFIAPI
    434467TcgPpiNotify (
    435   IN EFI_PEI_SERVICES          **PeiServices,
    436   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    437   IN VOID                      *Ppi
     468  IN EFI_PEI_SERVICES           **PeiServices,
     469  IN EFI_PEI_NOTIFY_DESCRIPTOR  *NotifyDesc,
     470  IN VOID                       *Ppi
    438471  );
    439472
    440 EFI_PEI_NOTIFY_DESCRIPTOR mTcgPpiNotifyDesc = {
     473EFI_PEI_NOTIFY_DESCRIPTOR  mTcgPpiNotifyDesc = {
    441474  (EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
    442475  &gEdkiiTcgPpiGuid,
     
    457490EFIAPI
    458491TcgPpiNotify (
    459   IN EFI_PEI_SERVICES          **PeiServices,
    460   IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
    461   IN VOID                      *Ppi
    462   )
    463 {
    464   UINT32                    FspMeasureMask;
     492  IN EFI_PEI_SERVICES           **PeiServices,
     493  IN EFI_PEI_NOTIFY_DESCRIPTOR  *NotifyDesc,
     494  IN VOID                       *Ppi
     495  )
     496{
     497  UINT32  FspMeasureMask;
    465498
    466499  DEBUG ((DEBUG_INFO, "TcgPpiNotify FSPS\n"));
     
    469502
    470503  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      );
    473510  }
    474511
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf

    r89983 r99404  
    77# notify to call FspSiliconInit API.
    88#
    9 #  Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
     9#  Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    1010#
    1111#  SPDX-License-Identifier: BSD-2-Clause-Patent
     
    3939  FspWrapperPlatformLib
    4040  FspWrapperHobProcessLib
     41  CpuLib
    4142  UefiCpuLib
    4243  PeCoffGetEntryPointLib
     
    4647  FspWrapperApiTestLib
    4748  FspMeasurementLib
     49  FspWrapperMultiPhaseProcessLib
    4850
    4951[Packages]
     
    6971  gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection      ## CONSUMES
    7072  gIntelFsp2WrapperTokenSpaceGuid.PcdFspMeasurementConfig  ## CONSUMES
     73  gIntelFsp2WrapperTokenSpaceGuid.PcdFspsUpdDataAddress64  ## CONSUMES
    7174
    7275[Guids]
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspMeasurementLib.h

    r89983 r99404  
    1010#define _FSP_MEASUREMENT_LIB_H_
    1111
    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
     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
    1717
    1818/**
     
    3232EFIAPI
    3333MeasureFspFirmwareBlob (
    34   IN UINT32                         PcrIndex,
    35   IN CHAR8                          *Description OPTIONAL,
    36   IN EFI_PHYSICAL_ADDRESS           FirmwareBlobBase,
    37   IN UINT64                         FirmwareBlobLength
     34  IN UINT32                PcrIndex,
     35  IN CHAR8                 *Description OPTIONAL,
     36  IN EFI_PHYSICAL_ADDRESS  FirmwareBlobBase,
     37  IN UINT64                FirmwareBlobLength
    3838  );
     39
    3940#endif
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiLib.h

    r85718 r99404  
    3535EFIAPI
    3636CallFspNotifyPhase (
    37   IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams
     37  IN NOTIFY_PHASE_PARAMS  *NotifyPhaseParams
    3838  );
    3939
     
    4949EFIAPI
    5050CallFspMemoryInit (
    51   IN VOID                       *FspmUpdDataPtr,
    52   OUT VOID                      **HobListPtr
     51  IN VOID   *FspmUpdDataPtr,
     52  OUT VOID  **HobListPtr
    5353  );
    5454
     
    6363EFIAPI
    6464CallTempRamExit (
    65   IN VOID                       *TempRamExitParam
     65  IN VOID  *TempRamExitParam
    6666  );
    6767
     
    7676EFIAPI
    7777CallFspSiliconInit (
    78   IN VOID                       *FspsUpdDataPtr
     78  IN VOID  *FspsUpdDataPtr
    7979  );
    8080
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiTestLib.h

    r80721 r99404  
    2323EFIAPI
    2424TestFspMemoryInitApiOutput (
    25   IN  VOID        *FspmUpdDataPtr,
    26   IN  VOID        **HobListPtr
     25  IN  VOID  *FspmUpdDataPtr,
     26  IN  VOID  **HobListPtr
    2727  );
    2828
     
    3737EFIAPI
    3838TestFspTempRamExitApiOutput (
    39   IN VOID        *TempRamExitParam
     39  IN VOID  *TempRamExitParam
    4040  );
    4141
     
    5050EFIAPI
    5151TestFspSiliconInitApiOutput (
    52   IN  VOID        *FspsUpdDataPtr
     52  IN  VOID  *FspsUpdDataPtr
    5353  );
    5454
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperHobProcessLib.h

    r80721 r99404  
    2020EFIAPI
    2121PostFspmHobProcess (
    22   IN VOID                 *FspHobList
     22  IN VOID  *FspHobList
    2323  );
    2424
     
    3333EFIAPI
    3434PostFspsHobProcess (
    35   IN VOID                 *FspHobList
     35  IN VOID  *FspHobList
    3636  );
    3737
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h

    r85718 r99404  
    1919EFIAPI
    2020UpdateFspmUpdData (
    21   IN OUT VOID        *FspUpdRgnPtr
     21  IN OUT VOID  *FspUpdRgnPtr
    2222  );
    2323
     
    3131EFIAPI
    3232UpdateFspsUpdData (
    33   IN OUT VOID        *FspUpdRgnPtr
     33  IN OUT VOID  *FspUpdRgnPtr
    3434  );
    3535
     
    6161EFIAPI
    6262GetS3MemoryInfo (
    63   OUT UINT64               *S3PeiMemSize,
    64   OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase
     63  OUT UINT64                *S3PeiMemSize,
     64  OUT EFI_PHYSICAL_ADDRESS  *S3PeiMemBase
    6565  );
    6666
     
    7575EFIAPI
    7676CallFspWrapperResetSystem (
    77   IN UINT32    FspStatusResetType
     77  IN EFI_STATUS  FspStatusResetType
    7878  );
    7979
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Ppi/FspSiliconInitDone.h

    r80721 r99404  
    1010#define _FSP_SILICON_INIT_DONE_H_
    1111
    12 typedef struct _FSP_SILICON_INIT_DONE_PPI  FSP_SILICON_INIT_DONE_PPI;
     12typedef struct _FSP_SILICON_INIT_DONE_PPI FSP_SILICON_INIT_DONE_PPI;
    1313
    1414/**
     
    3030
    3131struct _FSP_SILICON_INIT_DONE_PPI {
    32   FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST      GetFspHobList;
     32  FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST    GetFspHobList;
    3333};
    3434
    35 extern EFI_GUID gFspSiliconInitDonePpiGuid;
     35extern EFI_GUID  gFspSiliconInitDonePpiGuid;
    3636
    3737#endif
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Include/Ppi/TopOfTemporaryRam.h

    r80721 r99404  
    1010#define _TOP_OF_TEMPORARY_RAM_H_
    1111
    12 extern EFI_GUID gTopOfTemporaryRamPpiGuid;
     12extern EFI_GUID  gTopOfTemporaryRamPpiGuid;
    1313
    1414#endif
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec

    r89983 r99404  
    22# Provides drivers and definitions to support fsp in EDKII bios.
    33#
    4 # Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
     4# Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    55# SPDX-License-Identifier: BSD-2-Clause-Patent
    66#
     
    2929  ##  @libraryclass  Provide FSP TPM measurement related function.
    3030  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
    3139[Guids]
    3240  #
     
    5765  gIntelFsp2WrapperTokenSpaceGuid.PcdFlashCodeCacheSize|0x00200000|UINT32|0x10000002
    5866
    59   ## Indicates the base address of the first Microcode Patch in the Microcode Region
    60   gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchAddress|0x0|UINT64|0x10000005
    61   gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize|0x0|UINT64|0x10000006
    62   ## Indicates the offset of the Cpu Microcode.
    63   gIntelFsp2WrapperTokenSpaceGuid.PcdFlashMicrocodeOffset|0x90|UINT32|0x10000007
    64 
    6567  ## Indicate the PEI memory size platform want to report
    6668  gIntelFsp2WrapperTokenSpaceGuid.PcdPeiMinMemSize|0x1800000|UINT32|0x40000004
     
    8991  gIntelFsp2WrapperTokenSpaceGuid.PcdSkipFspApi|0x00000000|UINT32|0x40000009
    9092
    91   ## This PCD decides how Wrapper code utilizes FSP
    92   # 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|0x4000000A
    96 
    9793  ## This PCD decides how FSP is measured
    9894  # 1) The BootGuard ACM may already measured the FSP component, such as FSPT/FSPM.
     
    10096  # 2) The FSP binary includes FSP code and FSP UPD region. The UPD region is considered
    10197  # as configuration block, and it may be updated by OEM by design.
    102   # This flag (PCD) is to indicate if we need isolate the the UPD 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.
    10399  # BIT0: Need measure FSP. (for FSP1.x) - reserved in FSP2.
    104100  # BIT1: Need measure FSPT. (for FSP 2.x)
     
    113109
    114110[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
    115117  #
    116118  ## These are the base address of FSP-M/S
     
    128130  gIntelFsp2WrapperTokenSpaceGuid.PcdFspmUpdDataAddress|0x00000000|UINT32|0x50000000
    129131  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  
    22# Provides drivers and definitions to support fsp in EDKII bios.
    33#
    4 # Copyright (c) 2014 - 2021, Intel Corporation. All rights reserved.<BR>
     4# Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    55# SPDX-License-Identifier: BSD-2-Clause-Patent
    66#
     
    4949  FspWrapperApiTestLib|IntelFsp2WrapperPkg/Library/BaseFspWrapperApiTestLibNull/BaseFspWrapperApiTestLibNull.inf
    5050  FspMeasurementLib|IntelFsp2WrapperPkg/Library/BaseFspMeasurementLib/BaseFspMeasurementLib.inf
     51  FspWrapperPlatformMultiPhaseLib|IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformMultiPhaseLibNull/BaseFspWrapperPlatformMultiPhaseLibNull.inf
     52  FspWrapperMultiPhaseProcessLib|IntelFsp2WrapperPkg/Library/FspWrapperMultiPhaseProcessLib/FspWrapperMultiPhaseProcessLib.inf
    5153
    5254  # FSP platform sample
     
    9294  IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformLibSample/BaseFspWrapperPlatformLibSample.inf
    9395  IntelFsp2WrapperPkg/FspWrapperNotifyDxe/FspWrapperNotifyDxe.inf
     96  IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformMultiPhaseLibNull/BaseFspWrapperPlatformMultiPhaseLibNull.inf
     97  IntelFsp2WrapperPkg/Library/FspWrapperMultiPhaseProcessLib/FspWrapperMultiPhaseProcessLib.inf
    9498
    9599[PcdsFixedAtBuild.common]
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspMeasurementLib/FspMeasurementLib.c

    r89983 r99404  
    4444EFIAPI
    4545TpmMeasureAndLogDataWithFlags (
    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
     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
    5353  )
    5454{
    55   EFI_STATUS                Status;
    56   EDKII_TCG_PPI             *TcgPpi;
    57   TCG_PCR_EVENT_HDR         TcgEventHdr;
    58 
    59   Status = PeiServicesLocatePpi(
     55  EFI_STATUS         Status;
     56  EDKII_TCG_PPI      *TcgPpi;
     57  TCG_PCR_EVENT_HDR  TcgEventHdr;
     58
     59  Status = PeiServicesLocatePpi (
    6060             &gEdkiiTcgPpiGuid,
    6161             0,
    6262             NULL,
    63              (VOID**)&TcgPpi
     63             (VOID **)&TcgPpi
    6464             );
    65   if (EFI_ERROR(Status)) {
     65  if (EFI_ERROR (Status)) {
    6666    return Status;
    6767  }
     
    100100EFIAPI
    101101MeasureFspFirmwareBlobWithCfg (
    102   IN CHAR8                          *Description OPTIONAL,
    103   IN EFI_PHYSICAL_ADDRESS           FirmwareBlobBase,
    104   IN UINT64                         FirmwareBlobLength,
    105   IN UINT32                         CfgRegionOffset,
    106   IN UINT32                         CfgRegionSize
     102  IN CHAR8                 *Description OPTIONAL,
     103  IN EFI_PHYSICAL_ADDRESS  FirmwareBlobBase,
     104  IN UINT64                FirmwareBlobLength,
     105  IN UINT32                CfgRegionOffset,
     106  IN UINT32                CfgRegionSize
    107107  )
    108108{
    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;
     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;
    120120
    121121  FvName = TpmMeasurementGetFvName (FirmwareBlobBase, FirmwareBlobLength);
    122122
    123123  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  {
    125126    if (Description != NULL) {
    126       AsciiSPrint((CHAR8*)FvBlob2.BlobDescription, sizeof(FvBlob2.BlobDescription), "%a", Description);
    127       AsciiSPrint((CHAR8*)UpdBlob2.BlobDescription, sizeof(UpdBlob2.BlobDescription), "%aUDP", Description);
    128      } else {
    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);
    131132    }
    132133
    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);
    145146  } else {
    146     FvBlob.BlobBase = FirmwareBlobBase;
     147    FvBlob.BlobBase   = FirmwareBlobBase;
    147148    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;
    153154    UpdBlob.BlobLength = CfgRegionSize;
    154     UpdEventLog = &UpdBlob;
    155     UpdEventLogSize = sizeof(UpdBlob);
     155    UpdEventLog        = &UpdBlob;
     156    UpdEventLogSize    = sizeof (UpdBlob);
    156157  }
    157158
     
    164165
    165166  /** Hash FSP binary before UDP **/
    166   HashBase = (UINT8 *) (UINTN) FirmwareBlobBase;
    167   HashSize = (UINTN) CfgRegionOffset;
    168   Status = HashUpdate (HashHandle, HashBase, HashSize);
     167  HashBase = (UINT8 *)(UINTN)FirmwareBlobBase;
     168  HashSize = (UINTN)CfgRegionOffset;
     169  Status   = HashUpdate (HashHandle, HashBase, HashSize);
    169170  if (EFI_ERROR (Status)) {
    170171    DEBUG ((DEBUG_ERROR, "HashUpdate failed - %r\n", Status));
     
    173174
    174175  /** Hash FSP binary after UDP **/
    175   HashBase = (UINT8 *) (UINTN) FirmwareBlobBase + CfgRegionOffset + CfgRegionSize;
     176  HashBase = (UINT8 *)(UINTN)FirmwareBlobBase + CfgRegionOffset + CfgRegionSize;
    176177  HashSize = (UINTN)(FirmwareBlobLength - CfgRegionOffset - CfgRegionSize);
    177   Status = HashUpdate (HashHandle, HashBase, HashSize);
     178  Status   = HashUpdate (HashHandle, HashBase, HashSize);
    178179  if (EFI_ERROR (Status)) {
    179180    DEBUG ((DEBUG_ERROR, "HashUpdate failed - %r\n", Status));
     
    193194             FvEventLog,
    194195             FvEventLogSize,
    195              (UINT8 *) &DigestList,
    196              (UINTN) sizeof(DigestList),
     196             (UINT8 *)&DigestList,
     197             (UINTN)sizeof (DigestList),
    197198             EDKII_TCG_PRE_HASH_LOG_ONLY
    198199             );
     
    203204             UpdEventLog,
    204205             UpdEventLogSize,
    205              (UINT8 *) (UINTN) FirmwareBlobBase + CfgRegionOffset,
     206             (UINT8 *)(UINTN)FirmwareBlobBase + CfgRegionOffset,
    206207             CfgRegionSize
    207208             );
     
    226227EFIAPI
    227228MeasureFspFirmwareBlob (
    228   IN UINT32                         PcrIndex,
    229   IN CHAR8                          *Description OPTIONAL,
    230   IN EFI_PHYSICAL_ADDRESS           FirmwareBlobBase,
    231   IN UINT64                         FirmwareBlobLength
     229  IN UINT32                PcrIndex,
     230  IN CHAR8                 *Description OPTIONAL,
     231  IN EFI_PHYSICAL_ADDRESS  FirmwareBlobBase,
     232  IN UINT64                FirmwareBlobLength
    232233  )
    233234{
     
    237238  FspMeasureMask = PcdGet32 (PcdFspMeasurementConfig);
    238239  if ((FspMeasureMask & FSP_MEASURE_FSPUPD) != 0) {
    239     FspHeaderPtr = (FSP_INFO_HEADER *) FspFindFspHeader (FirmwareBlobBase);
     240    FspHeaderPtr = (FSP_INFO_HEADER *)FspFindFspHeader (FirmwareBlobBase);
    240241    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               );
    243249    }
    244250  }
     
    246252  return MeasureFirmwareBlob (PcrIndex, Description, FirmwareBlobBase, FirmwareBlobLength);
    247253}
    248 
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/FspWrapperApiLib.c

    r80721 r99404  
    22  Provide FSP API related function.
    33
    4   Copyright (c) 2014 - 2017, Intel Corporation. All rights reserved.<BR>
     4  Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    55  SPDX-License-Identifier: BSD-2-Clause-Patent
    66
     
    1414
    1515/**
    16   Wrapper for a thunk  to transition from long mode to compatibility mode to execute 32-bit code and then transit back to
     16  Wrapper for a thunk to transition from long mode to compatibility mode to execute 32-bit code and then transit back to
    1717  long mode.
    1818
     
    2525EFI_STATUS
    2626Execute32BitCode (
    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**/
     41EFI_STATUS
     42Execute64BitCode (
     43  IN UINT64  Function,
     44  IN UINT64  Param1,
     45  IN UINT64  Param2
    3046  );
    3147
     
    4359  )
    4460{
    45   UINT8 *CheckPointer;
    46 
    47   CheckPointer = (UINT8 *) (UINTN) FlashFvFspBase;
     61  UINT8  *CheckPointer;
     62
     63  CheckPointer = (UINT8 *)(UINTN)FlashFvFspBase;
    4864
    4965  if (((EFI_FIRMWARE_VOLUME_HEADER *)CheckPointer)->Signature != EFI_FVH_SIGNATURE) {
     
    5470    CheckPointer = CheckPointer + ((EFI_FIRMWARE_VOLUME_HEADER *)CheckPointer)->ExtHeaderOffset;
    5571    CheckPointer = CheckPointer + ((EFI_FIRMWARE_VOLUME_EXT_HEADER *)CheckPointer)->ExtHeaderSize;
    56     CheckPointer = (UINT8 *) ALIGN_POINTER (CheckPointer, 8);
     72    CheckPointer = (UINT8 *)ALIGN_POINTER (CheckPointer, 8);
    5773  } else {
    5874    CheckPointer = CheckPointer + ((EFI_FIRMWARE_VOLUME_HEADER *)CheckPointer)->HeaderLength;
    5975  }
    60 
    6176
    6277  CheckPointer = CheckPointer + sizeof (EFI_FFS_FILE_HEADER);
     
    8196EFIAPI
    8297CallFspNotifyPhase (
    83   IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams
    84   )
    85 {
    86   FSP_INFO_HEADER     *FspHeader;
    87   FSP_NOTIFY_PHASE    NotifyPhaseApi;
    88   EFI_STATUS          Status;
    89   BOOLEAN             InterruptState;
     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;
    90105
    91106  FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspsBaseAddress));
     
    96111  NotifyPhaseApi = (FSP_NOTIFY_PHASE)((UINTN)FspHeader->ImageBase + FspHeader->NotifyPhaseEntryOffset);
    97112  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
    99119  SetInterruptState (InterruptState);
    100120
     
    113133EFIAPI
    114134CallFspMemoryInit (
    115   IN VOID                       *FspmUpdDataPtr,
    116   OUT VOID                      **HobListPtr
    117   )
    118 {
    119   FSP_INFO_HEADER     *FspHeader;
    120   FSP_MEMORY_INIT     FspMemoryInitApi;
    121   EFI_STATUS          Status;
    122   BOOLEAN             InterruptState;
     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;
    123143
    124144  FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress));
     
    128148
    129149  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
    132157  SetInterruptState (InterruptState);
    133158
     
    145170EFIAPI
    146171CallTempRamExit (
    147   IN VOID                       *TempRamExitParam
    148   )
    149 {
    150   FSP_INFO_HEADER     *FspHeader;
    151   FSP_TEMP_RAM_EXIT   TempRamExitApi;
    152   EFI_STATUS          Status;
    153   BOOLEAN             InterruptState;
     172  IN VOID  *TempRamExitParam
     173  )
     174{
     175  FSP_INFO_HEADER    *FspHeader;
     176  FSP_TEMP_RAM_EXIT  TempRamExitApi;
     177  EFI_STATUS         Status;
     178  BOOLEAN            InterruptState;
    154179
    155180  FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress));
     
    160185  TempRamExitApi = (FSP_TEMP_RAM_EXIT)((UINTN)FspHeader->ImageBase + FspHeader->TempRamExitEntryOffset);
    161186  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
    163193  SetInterruptState (InterruptState);
    164194
     
    176206EFIAPI
    177207CallFspSiliconInit (
    178   IN VOID                       *FspsUpdDataPtr
    179   )
    180 {
    181   FSP_INFO_HEADER     *FspHeader;
    182   FSP_SILICON_INIT    FspSiliconInitApi;
    183   EFI_STATUS          Status;
    184   BOOLEAN             InterruptState;
     208  IN VOID  *FspsUpdDataPtr
     209  )
     210{
     211  FSP_INFO_HEADER   *FspHeader;
     212  FSP_SILICON_INIT  FspSiliconInitApi;
     213  EFI_STATUS        Status;
     214  BOOLEAN           InterruptState;
    185215
    186216  FspHeader = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspsBaseAddress));
     
    190220
    191221  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  
    22  Execute 32-bit code in Protected Mode.
    33
    4   Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
     4  Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    55  SPDX-License-Identifier: BSD-2-Clause-Patent
    66
     
    2020typedef
    2121EFI_STATUS
    22 (EFIAPI *FSP_FUNCTION) (
     22(EFIAPI *FSP_FUNCTION)(
    2323  IN VOID *Param1,
    2424  IN VOID *Param2
     
    3737EFI_STATUS
    3838Execute32BitCode (
    39   IN UINT64      Function,
    40   IN UINT64      Param1,
    41   IN UINT64      Param2
     39  IN UINT64  Function,
     40  IN UINT64  Param1,
     41  IN UINT64  Param2
    4242  )
    4343{
    44   FSP_FUNCTION               EntryFunc;
    45   EFI_STATUS                 Status;
     44  FSP_FUNCTION  EntryFunc;
     45  EFI_STATUS    Status;
    4646
    47   EntryFunc = (FSP_FUNCTION) (UINTN) (Function);
     47  EntryFunc = (FSP_FUNCTION)(UINTN)(Function);
    4848  Status    = EntryFunc ((VOID *)(UINTN)Param1, (VOID *)(UINTN)Param2);
    4949
     
    5151}
    5252
     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**/
     63EFI_STATUS
     64Execute64BitCode (
     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  
    11/** @file
    2   Execute 32-bit code in Long Mode.
     2  Execute 64-bit code in Long Mode.
    33  Provide a thunk function to transition from long mode to compatibility mode to execute 32-bit code and then transit
    44  back to long mode.
    55
    6   Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>
     6  Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    77  SPDX-License-Identifier: BSD-2-Clause-Patent
    88
     
    1313#include <FspEas.h>
    1414
     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**/
     23typedef
     24EFI_STATUS
     25(EFIAPI *FSP_FUNCTION)(
     26  IN VOID *Param1,
     27  IN VOID *Param2
     28  );
     29
    1530#pragma pack(1)
    1631typedef union {
    1732  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;
    3146  } Bits;
    32   UINT64  Uint64;
     47  UINT64    Uint64;
    3348} IA32_GDT;
    3449#pragma pack()
    3550
    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 */
     51GLOBAL_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 */
    4267};
    4368
     
    4570// IA32 Gdt register
    4671//
    47 GLOBAL_REMOVE_IF_UNREFERENCED IA32_DESCRIPTOR mGdt = {
     72GLOBAL_REMOVE_IF_UNREFERENCED IA32_DESCRIPTOR  mGdt = {
    4873  sizeof (mGdtEntries) - 1,
    49   (UINTN) mGdtEntries
    50   };
     74  (UINTN)mGdtEntries
     75};
    5176
    5277/**
     
    7196
    7297/**
    73   Wrapper for a thunk  to transition from long mode to compatibility mode to execute 32-bit code and then transit back to
     98  Wrapper for a thunk to transition from long mode to compatibility mode to execute 32-bit code and then transit back to
    7499  long mode.
    75100
     
    82107EFI_STATUS
    83108Execute32BitCode (
    84   IN UINT64      Function,
    85   IN UINT64      Param1,
    86   IN UINT64      Param2
     109  IN UINT64  Function,
     110  IN UINT64  Param1,
     111  IN UINT64  Param2
    87112  )
    88113{
     
    97122  AsmReadIdtr (&Idtr);
    98123  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);
    99128  AsmWriteIdtr (&Idtr);
    100129
     
    102131}
    103132
     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**/
     142EFI_STATUS
     143Execute64BitCode (
     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
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiTestLibNull/FspWrapperApiTestNull.c

    r80721 r99404  
    2020EFIAPI
    2121TestFspMemoryInitApiOutput (
    22   IN  VOID        *FspmUpdDataPtr,
    23   IN  VOID        **HobListPtr
     22  IN  VOID  *FspmUpdDataPtr,
     23  IN  VOID  **HobListPtr
    2424  )
    2525{
     
    3737EFIAPI
    3838TestFspTempRamExitApiOutput (
    39   IN VOID         *TempRamExitParam
     39  IN VOID  *TempRamExitParam
    4040  )
    4141{
     
    5353EFIAPI
    5454TestFspSiliconInitApiOutput (
    55   IN  VOID        *FspsUpdDataPtr
     55  IN  VOID  *FspsUpdDataPtr
    5656  )
    5757{
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/BaseFspWrapperPlatformLibSample/FspWrapperPlatformLibSample.c

    r85718 r99404  
    2121EFIAPI
    2222UpdateFspmUpdData (
    23   IN OUT VOID        *FspUpdRgnPtr
     23  IN OUT VOID  *FspUpdRgnPtr
    2424  )
    2525{
     
    3535EFIAPI
    3636UpdateFspsUpdData (
    37   IN OUT VOID        *FspUpdRgnPtr
     37  IN OUT VOID  *FspUpdRgnPtr
    3838  )
    3939{
     
    7070EFIAPI
    7171GetS3MemoryInfo (
    72   OUT UINT64               *S3PeiMemSize,
    73   OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase
     72  OUT UINT64                *S3PeiMemSize,
     73  OUT EFI_PHYSICAL_ADDRESS  *S3PeiMemBase
    7474  )
    7575{
     
    8787EFIAPI
    8888CallFspWrapperResetSystem (
    89   IN UINT32    FspStatusResetType
     89  IN EFI_STATUS  FspStatusResetType
    9090  )
    9191{
     
    9494  //
    9595
    96   CpuDeadLoop();
     96  CpuDeadLoop ();
    9797}
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/PeiFspWrapperApiTestLib/FspWrapperApiTest.c

    r80721 r99404  
    2424EFIAPI
    2525TestFspMemoryInitApiOutput (
    26   IN  VOID        *FspmUpdDataPtr,
    27   IN  VOID        **HobListPtr
     26  IN  VOID  *FspmUpdDataPtr,
     27  IN  VOID  **HobListPtr
    2828  )
    2929{
    3030  DEBUG_CODE_BEGIN ();
    31   EFI_PEI_HOB_POINTERS        Hob;
     31  EFI_PEI_HOB_POINTERS  Hob;
    3232
    3333  Hob.Raw = (UINT8 *)(*(HobListPtr));
    3434  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"));
    3737      break;
    3838    }
     39
    3940    if ((CompareGuid (&Hob.ResourceDescriptor->Owner, &gFspBootLoaderTolumHobGuid))) {
    4041      DEBUG ((DEBUG_INFO, "gFspBootLoaderTolumHobGuid Found\n"));
     
    4344      break;
    4445    }
     46
    4547    Hob.Raw = GET_NEXT_HOB (Hob);
    4648  }
     49
    4750  DEBUG_CODE_END ();
    4851
     
    6063EFIAPI
    6164TestFspTempRamExitApiOutput (
    62   IN VOID         *TempRamExitParam
     65  IN VOID  *TempRamExitParam
    6366  )
    6467{
     
    7679EFIAPI
    7780TestFspSiliconInitApiOutput (
    78   IN  VOID        *FspsUpdDataPtr
     81  IN  VOID  *FspsUpdDataPtr
    7982  )
    8083{
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/PeiFspWrapperHobProcessLibSample/FspWrapperHobProcessLibSample.c

    r85718 r99404  
    2727// It should be consistent between RetrieveRequiredMemorySize() and GetPeiMemSize()
    2828//
    29 #define PEI_ADDITIONAL_MEMORY_SIZE    (16 * EFI_PAGE_SIZE)
     29#define PEI_ADDITIONAL_MEMORY_SIZE  (16 * EFI_PAGE_SIZE)
    3030
    3131/**
     
    3838UINT64
    3939GetMemorySizeInMemoryTypeInformation (
    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;
     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;
    4848
    4949  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);
    5151  ASSERT_EFI_ERROR (Status);
    5252  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));
    5657      break;
    5758    }
     
    8485UINT64
    8586RetrieveRequiredMemorySize (
    86   IN EFI_PEI_SERVICES **PeiServices
    87   )
    88 {
    89   UINT64                      Size;
     87  IN EFI_PEI_SERVICES  **PeiServices
     88  )
     89{
     90  UINT64  Size;
    9091
    9192  Size = GetMemorySizeInMemoryTypeInformation (PeiServices);
     
    103104UINT64
    104105GetPeiMemSize (
    105   IN EFI_PEI_SERVICES **PeiServices,
    106   IN UINT32           BootMode
    107   )
    108 {
    109   UINT64                      Size;
    110   UINT64                      MinSize;
     106  IN EFI_PEI_SERVICES  **PeiServices,
     107  IN UINT32            BootMode
     108  )
     109{
     110  UINT64  Size;
     111  UINT64  MinSize;
    111112
    112113  if (BootMode == BOOT_IN_RECOVERY_MODE) {
     
    138139EFIAPI
    139140PostFspmHobProcess (
    140   IN VOID                 *FspHobList
    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;
    159160
    160161  PeiServices = (EFI_PEI_SERVICES **)GetPeiServicesTablePointer ();
     
    162163  PeiServicesGetBootMode (&BootMode);
    163164
    164   PeiMemBase = 0;
    165   LowMemorySize = 0;
    166   FspMemorySize = 0;
    167   FspMemoryBase = 0;
     165  PeiMemBase     = 0;
     166  LowMemorySize  = 0;
     167  FspMemorySize  = 0;
     168  FspMemoryBase  = 0;
    168169  FoundFspMemHob = FALSE;
    169170
     
    173174  //
    174175  Hob.Raw = (UINT8 *)(UINTN)FspHobList;
    175   DEBUG((DEBUG_INFO, "FspHobList - 0x%x\n", FspHobList));
     176  DEBUG ((DEBUG_INFO, "FspHobList - 0x%x\n", FspHobList));
    176177
    177178  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));
    179180    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);
    192195      continue;
    193196    }
    194197
    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    {
    199203      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));
    203207    }
    204208
     
    217221
    218222  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));
    226230
    227231  if (BootMode == BOOT_ON_S3_RESUME) {
     
    229233      EFI_RESOURCE_SYSTEM_MEMORY,
    230234      (
    231          EFI_RESOURCE_ATTRIBUTE_PRESENT |
    232          EFI_RESOURCE_ATTRIBUTE_INITIALIZED |
    233          // EFI_RESOURCE_ATTRIBUTE_TESTED |
    234          EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE |
    235          EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |
    236          EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |
    237          EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE
     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
    238242      ),
    239243      BASE_1MB,
     
    243247    S3PeiMemBase = 0;
    244248    S3PeiMemSize = 0;
    245     Status = GetS3MemoryInfo (&S3PeiMemSize, &S3PeiMemBase);
     249    Status       = GetS3MemoryInfo (&S3PeiMemSize, &S3PeiMemBase);
    246250    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));
    248252
    249253    //
     
    258262  } else {
    259263    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));
    261265
    262266    //
    263267    // Capsule mode
    264268    //
    265     Capsule = NULL;
    266     CapsuleBuffer = NULL;
     269    Capsule             = NULL;
     270    CapsuleBuffer       = NULL;
    267271    CapsuleBufferLength = 0;
    268272    if (BootMode == BOOT_ON_FLASH_UPDATE) {
     
    271275                 0,
    272276                 NULL,
    273                  (VOID **) &Capsule
     277                 (VOID **)&Capsule
    274278                 );
    275279      ASSERT_EFI_ERROR (Status);
     
    279283        // Make sure Stack and CapsuleBuffer are not overlap
    280284        //
    281         CapsuleBuffer = (VOID *)(UINTN)BASE_1MB;
     285        CapsuleBuffer       = (VOID *)(UINTN)BASE_1MB;
    282286        CapsuleBufferLength = (UINTN)(LowMemorySize - PeiMemSize);
    283287        //
     
    289293
    290294    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));
    292296
    293297    //
     
    297301      EFI_RESOURCE_SYSTEM_MEMORY,
    298302      (
    299          EFI_RESOURCE_ATTRIBUTE_PRESENT |
    300          EFI_RESOURCE_ATTRIBUTE_INITIALIZED |
    301          EFI_RESOURCE_ATTRIBUTE_TESTED |
    302          EFI_RESOURCE_ATTRIBUTE_UNCACHEABLE |
    303          EFI_RESOURCE_ATTRIBUTE_WRITE_COMBINEABLE |
    304          EFI_RESOURCE_ATTRIBUTE_WRITE_THROUGH_CACHEABLE |
    305          EFI_RESOURCE_ATTRIBUTE_WRITE_BACK_CACHEABLE
     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
    306310      ),
    307311      BASE_1MB,
     
    317321    //
    318322    PeiMemBase = BASE_1MB + LowMemorySize - PeiMemSize;
    319     Status = PeiServicesInstallPeiMemory (
    320                PeiMemBase,
    321                PeiMemSize - RequiredMemSize
    322                );
     323    Status     = PeiServicesInstallPeiMemory (
     324                   PeiMemBase,
     325                   PeiMemSize - RequiredMemSize
     326                   );
    323327    ASSERT_EFI_ERROR (Status);
    324328
     
    339343VOID
    340344ProcessFspHobList (
    341   IN VOID                 *FspHobList
     345  IN VOID  *FspHobList
    342346  )
    343347{
     
    354358      // Skip FSP binary creates PcdDataBaseHobGuid
    355359      //
    356       if (!CompareGuid(&FspHob.Guid->Name, &gPcdDataBaseHobGuid)) {
     360      if (!CompareGuid (&FspHob.Guid->Name, &gPcdDataBaseHobGuid)) {
    357361        BuildGuidDataHob (
    358362          &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          );
    362366      }
    363367    }
     368
    364369    FspHob.Raw = GET_NEXT_HOB (FspHob);
    365370  }
     
    376381EFIAPI
    377382PostFspsHobProcess (
    378   IN VOID                 *FspHobList
     383  IN VOID  *FspHobList
    379384  )
    380385{
     
    393398    ProcessFspHobList (FspHobList);
    394399  }
     400
    395401  return EFI_SUCCESS;
    396402}
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/FspWrapperPlatformSecLibSample.c

    r80721 r99404  
    3030EFIAPI
    3131SecPlatformInformation (
    32   IN CONST EFI_PEI_SERVICES                     **PeiServices,
    33   IN OUT   UINT64                               *StructureSize,
    34      OUT   EFI_SEC_PLATFORM_INFORMATION_RECORD  *PlatformInformationRecord
     32  IN CONST EFI_PEI_SERVICES                  **PeiServices,
     33  IN OUT   UINT64                            *StructureSize,
     34  OUT   EFI_SEC_PLATFORM_INFORMATION_RECORD  *PlatformInformationRecord
    3535  );
    3636
     
    9696EFIAPI
    9797SecPlatformMain (
    98   IN OUT   EFI_SEC_PEI_HAND_OFF        *SecCoreData
     98  IN OUT   EFI_SEC_PEI_HAND_OFF  *SecCoreData
    9999  )
    100100{
    101   EFI_PEI_PPI_DESCRIPTOR      *PpiList;
     101  EFI_PEI_PPI_DESCRIPTOR  *PpiList;
    102102
    103   DEBUG((DEBUG_INFO, "SecPlatformMain\n"));
     103  DEBUG ((DEBUG_INFO, "SecPlatformMain\n"));
    104104
    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));
    113113
    114   InitializeApicTimer (0, (UINT32) -1, TRUE, 5);
     114  InitializeApicTimer (0, (UINT32)-1, TRUE, 5);
    115115
    116116  //
     
    119119  //
    120120  PpiList = (VOID *)((UINTN)SecCoreData->PeiTemporaryRamBase + (UINTN)SecCoreData->PeiTemporaryRamSize/2);
    121   CopyMem (PpiList, mPeiSecPlatformPpi, sizeof(mPeiSecPlatformPpi));
     121  CopyMem (PpiList, mPeiSecPlatformPpi, sizeof (mPeiSecPlatformPpi));
    122122
    123123  //
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/PeiCoreEntry.nasm

    • Property svn:mime-type set to text/x-asm
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/SecEntry.nasm

    • Property svn:mime-type set to text/x-asm
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/Stack.nasm

    • Property svn:mime-type set to text/x-asm
    r85718 r99404  
    11;------------------------------------------------------------------------------
    22;
    3 ; Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
     3; Copyright (c) 2016 - 2022, Intel Corporation. All rights reserved.<BR>
    44; SPDX-License-Identifier: BSD-2-Clause-Patent
    55;
     
    2323ASM_PFX(SecSwitchStack):
    2424    ;
    25     ; Save three register: eax, ebx, ecx
     25    ; Save four register: eax, ebx, ecx, edx
    2626    ;
    2727    push  eax
     
    5656    mov   edx, dword [esp + 16]    ; Update this function's return address into permanent memory
    5757    mov   dword [eax + 16], edx
    58     mov   esp, eax                     ; From now, esp is pointed to permanent memory
     58    mov   esp, eax                 ; From now, esp is pointed to permanent memory
    5959
    6060    ;
     
    6464    sub   eax, ebx
    6565    add   eax, ecx
    66     mov   ebp, eax                ; From now, ebp is pointed to permanent memory
     66    mov   ebp, eax                 ; From now, ebp is pointed to permanent memory
    6767
    6868    pop   edx
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/PlatformInit.c

    r80721 r99404  
    66
    77**/
    8 
    98
    109#include <PiPei.h>
     
    2221EFIAPI
    2322PlatformInit (
    24   IN VOID                 *FspHobList,
    25   IN VOID                 *StartOfRange,
    26   IN VOID                 *EndOfRange
     23  IN VOID  *FspHobList,
     24  IN VOID  *StartOfRange,
     25  IN VOID  *EndOfRange
    2726  )
    2827{
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecFspWrapperPlatformSecLibSample.inf

    r80721 r99404  
    22#  Sample to provide FSP wrapper platform sec related function.
    33#
    4 #  Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
     4#  Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    55#
    66#  SPDX-License-Identifier: BSD-2-Clause-Patent
     
    4040  SecTempRamDone.c
    4141  PlatformInit.c
     42  Fsp.h
    4243
    4344[Sources.IA32]
    44   Ia32/Fsp.h
    4545  Ia32/SecEntry.nasm
    4646  Ia32/PeiCoreEntry.nasm
    4747  Ia32/Stack.nasm
     48
     49[Sources.X64]
     50  X64/SecEntry.nasm
     51  X64/PeiCoreEntry.nasm
     52  X64/Stack.nasm
    4853
    4954################################################################################
     
    7782
    7883[FixedPcd]
    79   gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchAddress     ## CONSUMES
    80   gIntelFsp2WrapperTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize  ## CONSUMES
    81   gIntelFsp2WrapperTokenSpaceGuid.PcdFlashMicrocodeOffset         ## CONSUMES
     84  gUefiCpuPkgTokenSpaceGuid.PcdCpuMicrocodePatchAddress           ## CONSUMES
     85  gUefiCpuPkgTokenSpaceGuid.PcdCpuMicrocodePatchRegionSize        ## CONSUMES
    8286  gIntelFsp2WrapperTokenSpaceGuid.PcdFlashCodeCacheAddress        ## CONSUMES
    8387  gIntelFsp2WrapperTokenSpaceGuid.PcdFlashCodeCacheSize           ## CONSUMES
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecGetPerformance.c

    r80721 r99404  
    5454                             0,
    5555                             NULL,
    56                              (VOID **) &TopOfTemporaryRamPpi
     56                             (VOID **)&TopOfTemporaryRamPpi
    5757                             );
    5858  if (EFI_ERROR (Status)) {
     
    7373  // |--------------|
    7474  //
    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);
    7979
    80   Ticker = *(UINT64 *) (UINTN) (TopOfTemporaryRam - sizeof (UINT32) - Size - sizeof (UINT32) * 2);
     80  Ticker                = *(UINT64 *)(UINTN)(TopOfTemporaryRam - sizeof (UINT32) - Size - sizeof (UINT32) * 2);
    8181  Performance->ResetEnd = GetTimeInNanoSecond (Ticker);
    8282
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecPlatformInformation.c

    r80721 r99404  
    2929EFIAPI
    3030SecPlatformInformation (
    31   IN CONST EFI_PEI_SERVICES                     **PeiServices,
    32   IN OUT   UINT64                               *StructureSize,
    33      OUT   EFI_SEC_PLATFORM_INFORMATION_RECORD  *PlatformInformationRecord
     31  IN CONST EFI_PEI_SERVICES                  **PeiServices,
     32  IN OUT   UINT64                            *StructureSize,
     33  OUT   EFI_SEC_PLATFORM_INFORMATION_RECORD  *PlatformInformationRecord
    3434  )
    3535{
     
    4848                             0,
    4949                             NULL,
    50                              (VOID **) &TopOfTemporaryRamPpi
     50                             (VOID **)&TopOfTemporaryRamPpi
    5151                             );
    5252  if (EFI_ERROR (Status)) {
     
    6060  // PlatformInformationRecord for output.
    6161  //
    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);
    6666
    67   if ((*StructureSize) < (UINT64) Size) {
     67  if ((*StructureSize) < (UINT64)Size) {
    6868    *StructureSize = Size;
    6969    return EFI_BUFFER_TOO_SMALL;
    7070  }
    7171
    72   *StructureSize  = Size;
    73   Bist            = (UINT32 *) (TopOfTemporaryRam - sizeof (UINT32) - Size);
     72  *StructureSize = Size;
     73  Bist           = (UINT32 *)(TopOfTemporaryRam - sizeof (UINT32) - Size);
    7474
    7575  CopyMem (PlatformInformationRecord, Bist, Size);
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecRamInitData.c

    r89983 r99404  
    22  Sample to provide TempRamInitParams data.
    33
    4   Copyright (c) 2014 - 2020, Intel Corporation. All rights reserved.<BR>
     4  Copyright (c) 2014 - 2022, Intel Corporation. All rights reserved.<BR>
    55  SPDX-License-Identifier: BSD-2-Clause-Patent
    66
     
    1111
    1212typedef struct {
    13   UINT32                      MicrocodeRegionBase;
    14   UINT32                      MicrocodeRegionSize;
    15   UINT32                      CodeRegionBase;
    16   UINT32                      CodeRegionSize;
     13  EFI_PHYSICAL_ADDRESS    MicrocodeRegionBase;
     14  UINT64                  MicrocodeRegionSize;
     15  EFI_PHYSICAL_ADDRESS    CodeRegionBase;
     16  UINT64                  CodeRegionSize;
    1717} FSPT_CORE_UPD;
    1818
     
    2020  FSP_UPD_HEADER    FspUpdHeader;
    2121  //
    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.
    2325  //
    24   FSPT_ARCH_UPD     FsptArchUpd;
     26  FSPT_ARCH2_UPD    FsptArchUpd;
    2527  FSPT_CORE_UPD     FsptCoreUpd;
    2628} FSPT_UPD_CORE_DATA;
    2729
    28 GLOBAL_REMOVE_IF_UNREFERENCED CONST FSPT_UPD_CORE_DATA FsptUpdDataPtr = {
     30GLOBAL_REMOVE_IF_UNREFERENCED CONST FSPT_UPD_CORE_DATA  FsptUpdDataPtr = {
    2931  {
    3032    0x4450555F54505346,
     
    3436    0x02,
    3537    { 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 }
    3839  },
    3940  //
    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.
    4144  //
    4245  {
    43     0x01,
     46    0x02,
    4447    {
    4548      0x00, 0x00, 0x00
     
    4952    {
    5053      0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    51       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
     54      0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    5255    }
    5356  },
    5457  {
    55     ((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchAddress) + FixedPcdGet32 (PcdFlashMicrocodeOffset)),
    56     ((UINT32)FixedPcdGet64 (PcdCpuMicrocodePatchRegionSize) - FixedPcdGet32 (PcdFlashMicrocodeOffset)),
     58    FixedPcdGet32 (PcdCpuMicrocodePatchAddress),
     59    FixedPcdGet32 (PcdCpuMicrocodePatchRegionSize),
    5760    FixedPcdGet32 (PcdFlashCodeCacheAddress),
    5861    FixedPcdGet32 (PcdFlashCodeCacheSize),
    5962  }
    6063};
    61 
  • trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecTempRamDone.c

    r80721 r99404  
    2424  )
    2525{
    26   EFI_STATUS                Status;
    27   VOID                      *TempRamExitParam;
    28   FSP_INFO_HEADER           *FspHeader;
     26  EFI_STATUS       Status;
     27  VOID             *TempRamExitParam;
     28  FSP_INFO_HEADER  *FspHeader;
    2929
    30   FspHeader = FspFindFspHeader (PcdGet32(PcdFspmBaseAddress));
     30  FspHeader = FspFindFspHeader (PcdGet32 (PcdFspmBaseAddress));
    3131  if (FspHeader == NULL) {
    32     return ;
     32    return;
    3333  }
    3434
    35   DEBUG((DEBUG_INFO, "SecPlatformDisableTemporaryMemory enter\n"));
     35  DEBUG ((DEBUG_INFO, "SecPlatformDisableTemporaryMemory enter\n"));
    3636
    3737  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);
    4141
    42   return ;
     42  return;
    4343}
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette