2008-04-08 05:01:25 +02:00
|
|
|
/** @file
|
2007-09-24 13:38:43 +02:00
|
|
|
Last PEIM.
|
|
|
|
Responsibility of this module is to load the DXE Core from a Firmware Volume.
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2011-05-26 08:29:30 +02:00
|
|
|
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 11:49:11 +02:00
|
|
|
This program and the accompanying materials
|
2007-07-05 09:05:28 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
**/
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
#include "DxeIpl.h"
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
//
|
2008-12-23 17:20:43 +01:00
|
|
|
// Module Globals used in the DXE to PEI hand off
|
2007-07-05 09:05:28 +02:00
|
|
|
// These must be module globals, so the stack can be switched
|
|
|
|
//
|
2008-07-18 04:47:57 +02:00
|
|
|
CONST EFI_DXE_IPL_PPI mDxeIplPpi = {
|
2007-07-05 09:05:28 +02:00
|
|
|
DxeLoadCore
|
|
|
|
};
|
|
|
|
|
2008-07-18 04:47:57 +02:00
|
|
|
CONST EFI_PEI_GUIDED_SECTION_EXTRACTION_PPI mCustomGuidedSectionExtractionPpi = {
|
2007-09-29 10:04:29 +02:00
|
|
|
CustomGuidedSectionExtract
|
2007-07-05 09:05:28 +02:00
|
|
|
};
|
|
|
|
|
2008-07-18 04:47:57 +02:00
|
|
|
CONST EFI_PEI_DECOMPRESS_PPI mDecompressPpi = {
|
2007-09-24 13:38:43 +02:00
|
|
|
Decompress
|
2007-08-08 12:17:57 +02:00
|
|
|
};
|
|
|
|
|
2008-12-23 17:20:43 +01:00
|
|
|
CONST EFI_PEI_PPI_DESCRIPTOR mPpiList[] = {
|
2007-07-05 09:05:28 +02:00
|
|
|
{
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_PEI_PPI_DESCRIPTOR_PPI,
|
|
|
|
&gEfiDxeIplPpiGuid,
|
2008-07-18 04:47:57 +02:00
|
|
|
(VOID *) &mDxeIplPpi
|
2007-07-05 09:05:28 +02:00
|
|
|
},
|
|
|
|
{
|
2007-09-24 13:38:43 +02:00
|
|
|
(EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
|
|
|
&gEfiPeiDecompressPpiGuid,
|
2008-07-18 04:47:57 +02:00
|
|
|
(VOID *) &mDecompressPpi
|
2007-07-05 09:05:28 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-12-23 17:20:43 +01:00
|
|
|
CONST EFI_PEI_PPI_DESCRIPTOR gEndOfPeiSignalPpi = {
|
2007-07-05 09:05:28 +02:00
|
|
|
(EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
|
|
|
&gEfiEndOfPeiSignalPpiGuid,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
/**
|
2008-12-23 17:20:43 +01:00
|
|
|
Entry point of DXE IPL PEIM.
|
|
|
|
|
|
|
|
This function installs DXE IPL PPI and Decompress PPI. It also reloads
|
|
|
|
itself to memory on non-S3 resume boot path.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-11-27 06:24:29 +01:00
|
|
|
@param FileHandle Handle of the file being invoked.
|
|
|
|
@param PeiServices Describes the list of possible PEI Services.
|
2008-05-07 08:58:06 +02:00
|
|
|
|
2008-12-23 17:20:43 +01:00
|
|
|
@retval EFI_SUCESS The entry point of DXE IPL PEIM executes successfully.
|
|
|
|
@retval Others Some error occurs during the execution of this function.
|
|
|
|
|
2008-05-07 08:58:06 +02:00
|
|
|
**/
|
2007-07-05 09:05:28 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeimInitializeDxeIpl (
|
2008-11-27 06:24:29 +01:00
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices
|
2007-07-05 09:05:28 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_BOOT_MODE BootMode;
|
2007-09-29 10:04:29 +02:00
|
|
|
EFI_GUID *ExtractHandlerGuidTable;
|
|
|
|
UINTN ExtractHandlerNumber;
|
2007-08-08 12:17:57 +02:00
|
|
|
EFI_PEI_PPI_DESCRIPTOR *GuidPpi;
|
|
|
|
|
2008-07-16 15:17:50 +02:00
|
|
|
BootMode = GetBootModeHob ();
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
if (BootMode != BOOT_ON_S3_RESUME) {
|
2008-11-27 06:24:29 +01:00
|
|
|
Status = PeiServicesRegisterForShadow (FileHandle);
|
2007-09-24 13:38:43 +02:00
|
|
|
if (Status == EFI_SUCCESS) {
|
|
|
|
//
|
2008-12-23 17:20:43 +01:00
|
|
|
// EFI_SUCESS means it is the first time to call register for shadow.
|
2007-09-24 13:38:43 +02:00
|
|
|
//
|
|
|
|
return Status;
|
2008-12-23 17:20:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Ensure that DXE IPL is shadowed to permanent memory.
|
|
|
|
//
|
|
|
|
ASSERT (Status == EFI_ALREADY_STARTED);
|
2008-07-16 15:17:50 +02:00
|
|
|
|
2008-12-23 17:20:43 +01:00
|
|
|
//
|
|
|
|
// Get custom extract guided section method guid list
|
|
|
|
//
|
|
|
|
ExtractHandlerNumber = ExtractGuidedSectionGetGuidList (&ExtractHandlerGuidTable);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Install custom extraction guid PPI
|
|
|
|
//
|
|
|
|
if (ExtractHandlerNumber > 0) {
|
|
|
|
GuidPpi = (EFI_PEI_PPI_DESCRIPTOR *) AllocatePool (ExtractHandlerNumber * sizeof (EFI_PEI_PPI_DESCRIPTOR));
|
|
|
|
ASSERT (GuidPpi != NULL);
|
|
|
|
while (ExtractHandlerNumber-- > 0) {
|
|
|
|
GuidPpi->Flags = EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST;
|
|
|
|
GuidPpi->Ppi = (VOID *) &mCustomGuidedSectionExtractionPpi;
|
|
|
|
GuidPpi->Guid = &ExtractHandlerGuidTable[ExtractHandlerNumber];
|
|
|
|
Status = PeiServicesInstallPpi (GuidPpi++);
|
|
|
|
ASSERT_EFI_ERROR(Status);
|
2007-09-24 13:38:43 +02:00
|
|
|
}
|
2007-08-08 12:17:57 +02:00
|
|
|
}
|
2008-12-23 17:20:43 +01:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
}
|
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
//
|
2007-12-06 10:52:27 +01:00
|
|
|
// Install DxeIpl and Decompress PPIs.
|
2007-09-24 13:38:43 +02:00
|
|
|
//
|
|
|
|
Status = PeiServicesInstallPpi (mPpiList);
|
2007-12-06 10:52:27 +01:00
|
|
|
ASSERT_EFI_ERROR(Status);
|
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
/**
|
2008-07-16 15:17:50 +02:00
|
|
|
Main entry point to last PEIM.
|
2008-12-23 17:20:43 +01:00
|
|
|
|
|
|
|
This function finds DXE Core in the firmware volume and transfer the control to
|
|
|
|
DXE core.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-16 15:17:50 +02:00
|
|
|
@param This Entry point for DXE IPL PPI.
|
2007-09-24 13:38:43 +02:00
|
|
|
@param PeiServices General purpose services available to every PEIM.
|
2008-07-16 15:17:50 +02:00
|
|
|
@param HobList Address to the Pei HOB list.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
|
|
|
@return EFI_SUCCESS DXE core was successfully loaded.
|
|
|
|
@return EFI_OUT_OF_RESOURCES There are not enough resources to load DXE core.
|
2008-05-07 08:58:06 +02:00
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
**/
|
2007-07-05 09:05:28 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
DxeLoadCore (
|
2008-09-04 11:17:17 +02:00
|
|
|
IN CONST EFI_DXE_IPL_PPI *This,
|
2007-07-05 09:05:28 +02:00
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_HOB_POINTERS HobList
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
2008-07-19 03:38:40 +02:00
|
|
|
EFI_FV_FILE_INFO DxeCoreFileInfo;
|
2007-07-05 09:05:28 +02:00
|
|
|
EFI_PHYSICAL_ADDRESS DxeCoreAddress;
|
|
|
|
UINT64 DxeCoreSize;
|
|
|
|
EFI_PHYSICAL_ADDRESS DxeCoreEntryPoint;
|
|
|
|
EFI_BOOT_MODE BootMode;
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_PEI_FILE_HANDLE FileHandle;
|
2007-11-27 03:47:37 +01:00
|
|
|
EFI_PEI_READ_ONLY_VARIABLE2_PPI *Variable;
|
2009-08-11 17:49:15 +02:00
|
|
|
EFI_PEI_LOAD_FILE_PPI *LoadFile;
|
|
|
|
UINTN Instance;
|
|
|
|
UINT32 AuthenticationState;
|
2007-11-27 03:47:37 +01:00
|
|
|
UINTN DataSize;
|
2010-03-01 08:11:28 +01:00
|
|
|
EFI_PEI_S3_RESUME2_PPI *S3Resume;
|
2009-08-11 17:49:15 +02:00
|
|
|
EFI_PEI_RECOVERY_MODULE_PPI *PeiRecovery;
|
2008-05-13 11:09:41 +02:00
|
|
|
EFI_MEMORY_TYPE_INFORMATION MemoryData[EfiMaxMemoryType + 1];
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// if in S3 Resume, restore configure
|
|
|
|
//
|
2008-07-16 15:17:50 +02:00
|
|
|
BootMode = GetBootModeHob ();
|
2007-07-05 09:05:28 +02:00
|
|
|
|
|
|
|
if (BootMode == BOOT_ON_S3_RESUME) {
|
2009-08-11 17:49:15 +02:00
|
|
|
Status = PeiServicesLocatePpi (
|
2010-03-01 08:11:28 +01:00
|
|
|
&gEfiPeiS3Resume2PpiGuid,
|
2009-08-11 17:49:15 +02:00
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
(VOID **) &S3Resume
|
|
|
|
);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
2010-03-01 08:11:28 +01:00
|
|
|
Status = S3Resume->S3RestoreConfig2 (S3Resume);
|
2007-07-05 09:05:28 +02:00
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
} else if (BootMode == BOOT_IN_RECOVERY_MODE) {
|
2009-08-11 17:49:15 +02:00
|
|
|
Status = PeiServicesLocatePpi (
|
|
|
|
&gEfiPeiRecoveryModulePpiGuid,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
(VOID **) &PeiRecovery
|
|
|
|
);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
Status = PeiRecovery->LoadRecoveryCapsule (PeiServices, PeiRecovery);
|
2007-07-05 09:05:28 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
2008-05-07 08:58:06 +02:00
|
|
|
DEBUG ((DEBUG_ERROR, "Load Recovery Capsule Failed.(Status = %r)\n", Status));
|
2007-07-05 09:05:28 +02:00
|
|
|
CpuDeadLoop ();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-12-23 17:20:43 +01:00
|
|
|
// Now should have a HOB with the DXE core
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
|
|
|
}
|
2007-12-06 10:52:27 +01:00
|
|
|
|
2007-11-27 03:47:37 +01:00
|
|
|
Status = PeiServicesLocatePpi (
|
|
|
|
&gEfiPeiReadOnlyVariable2PpiGuid,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
(VOID **)&Variable
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
2008-05-30 01:09:04 +02:00
|
|
|
DataSize = sizeof (MemoryData);
|
|
|
|
Status = Variable->GetVariable (
|
|
|
|
Variable,
|
|
|
|
EFI_MEMORY_TYPE_INFORMATION_VARIABLE_NAME,
|
|
|
|
&gEfiMemoryTypeInformationGuid,
|
|
|
|
NULL,
|
|
|
|
&DataSize,
|
|
|
|
&MemoryData
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
|
|
|
//
|
|
|
|
// Build the GUID'd HOB for DXE
|
|
|
|
//
|
|
|
|
BuildGuidDataHob (
|
|
|
|
&gEfiMemoryTypeInformationGuid,
|
|
|
|
MemoryData,
|
|
|
|
DataSize
|
|
|
|
);
|
|
|
|
}
|
2007-11-27 03:47:37 +01:00
|
|
|
}
|
2007-12-06 10:52:27 +01:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
2008-07-19 03:38:40 +02:00
|
|
|
// Look in all the FVs present in PEI and find the DXE Core FileHandle
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
2008-07-19 03:38:40 +02:00
|
|
|
FileHandle = DxeIplFindDxeCore ();
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
2009-08-11 17:49:15 +02:00
|
|
|
// Load the DXE Core from a Firmware Volume.
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
2009-08-11 17:49:15 +02:00
|
|
|
Instance = 0;
|
|
|
|
do {
|
|
|
|
Status = PeiServicesLocatePpi (&gEfiPeiLoadFilePpiGuid, Instance++, NULL, (VOID **) &LoadFile);
|
|
|
|
//
|
|
|
|
// These must exist an instance of EFI_PEI_LOAD_FILE_PPI to support to load DxeCore file handle successfully.
|
|
|
|
//
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
Status = LoadFile->LoadFile (
|
|
|
|
LoadFile,
|
|
|
|
FileHandle,
|
|
|
|
&DxeCoreAddress,
|
|
|
|
&DxeCoreSize,
|
|
|
|
&DxeCoreEntryPoint,
|
|
|
|
&AuthenticationState
|
|
|
|
);
|
|
|
|
} while (EFI_ERROR (Status));
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2008-07-19 03:38:40 +02:00
|
|
|
//
|
|
|
|
// Get the DxeCore File Info from the FileHandle for the DxeCore GUID file name.
|
|
|
|
//
|
|
|
|
Status = PeiServicesFfsGetFileInfo (FileHandle, &DxeCoreFileInfo);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
|
|
|
// Add HOB for the DXE Core
|
|
|
|
//
|
|
|
|
BuildModuleHob (
|
2008-07-19 03:38:40 +02:00
|
|
|
&DxeCoreFileInfo.FileName,
|
2007-07-05 09:05:28 +02:00
|
|
|
DxeCoreAddress,
|
2008-12-23 17:20:43 +01:00
|
|
|
ALIGN_VALUE (DxeCoreSize, EFI_PAGE_SIZE),
|
2007-07-05 09:05:28 +02:00
|
|
|
DxeCoreEntryPoint
|
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Report Status Code EFI_SW_PEI_PC_HANDOFF_TO_NEXT
|
|
|
|
//
|
2010-01-27 05:00:58 +01:00
|
|
|
REPORT_STATUS_CODE (EFI_PROGRESS_CODE, (EFI_SOFTWARE_PEI_CORE | EFI_SW_PEI_CORE_PC_HANDOFF_TO_NEXT));
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2008-12-06 00:26:01 +01:00
|
|
|
DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Loading DXE CORE at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN)DxeCoreAddress, FUNCTION_ENTRY_POINT (DxeCoreEntryPoint)));
|
2007-10-31 12:46:42 +01:00
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
|
|
|
// Transfer control to the DXE Core
|
2008-12-23 17:20:43 +01:00
|
|
|
// The hand off state is simply a pointer to the HOB list
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
2008-07-18 04:47:57 +02:00
|
|
|
HandOffToDxeCore (DxeCoreEntryPoint, HobList);
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
|
|
|
// If we get here, then the DXE Core returned. This is an error
|
2008-12-23 17:20:43 +01:00
|
|
|
// DxeCore should not return.
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
|
|
|
ASSERT (FALSE);
|
|
|
|
CpuDeadLoop ();
|
|
|
|
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
2008-05-07 08:58:06 +02:00
|
|
|
|
2007-09-24 13:38:43 +02:00
|
|
|
/**
|
2008-07-18 04:47:57 +02:00
|
|
|
Searches DxeCore in all firmware Volumes and loads the first
|
|
|
|
instance that contains DxeCore.
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-07-18 04:47:57 +02:00
|
|
|
@return FileHandle of DxeCore to load DxeCore.
|
|
|
|
|
2008-05-07 08:58:06 +02:00
|
|
|
**/
|
2008-07-18 04:47:57 +02:00
|
|
|
EFI_PEI_FILE_HANDLE
|
2007-12-06 10:52:27 +01:00
|
|
|
DxeIplFindDxeCore (
|
2008-07-19 03:38:40 +02:00
|
|
|
VOID
|
2007-09-24 13:38:43 +02:00
|
|
|
)
|
2007-07-05 09:05:28 +02:00
|
|
|
{
|
2008-07-18 04:47:57 +02:00
|
|
|
EFI_STATUS Status;
|
|
|
|
UINTN Instance;
|
|
|
|
EFI_PEI_FV_HANDLE VolumeHandle;
|
|
|
|
EFI_PEI_FILE_HANDLE FileHandle;
|
2007-12-06 10:52:27 +01:00
|
|
|
|
|
|
|
Instance = 0;
|
2008-07-18 04:47:57 +02:00
|
|
|
while (TRUE) {
|
|
|
|
//
|
|
|
|
// Traverse all firmware volume instances
|
|
|
|
//
|
|
|
|
Status = PeiServicesFfsFindNextVolume (Instance, &VolumeHandle);
|
|
|
|
//
|
|
|
|
// If some error occurs here, then we cannot find any firmware
|
|
|
|
// volume that may contain DxeCore.
|
|
|
|
//
|
2011-05-26 08:29:30 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
REPORT_STATUS_CODE (EFI_PROGRESS_CODE, (EFI_SOFTWARE_PEI_MODULE | EFI_SW_PEI_CORE_EC_DXE_CORRUPT));
|
|
|
|
}
|
2008-07-18 04:47:57 +02:00
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Find the DxeCore file type from the beginning in this firmware volume.
|
|
|
|
//
|
|
|
|
FileHandle = NULL;
|
|
|
|
Status = PeiServicesFfsFindNextFile (EFI_FV_FILETYPE_DXE_CORE, VolumeHandle, &FileHandle);
|
2007-12-06 10:52:27 +01:00
|
|
|
if (!EFI_ERROR (Status)) {
|
2008-07-18 04:47:57 +02:00
|
|
|
//
|
2008-07-19 03:38:40 +02:00
|
|
|
// Find DxeCore FileHandle in this volume, then we skip other firmware volume and
|
|
|
|
// return the FileHandle.
|
2008-07-18 04:47:57 +02:00
|
|
|
//
|
2008-07-19 03:38:40 +02:00
|
|
|
return FileHandle;
|
2007-07-05 09:05:28 +02:00
|
|
|
}
|
2008-07-18 04:47:57 +02:00
|
|
|
//
|
|
|
|
// We cannot find DxeCore in this firmware volume, then search the next volume.
|
|
|
|
//
|
|
|
|
Instance++;
|
|
|
|
}
|
2007-07-05 09:05:28 +02:00
|
|
|
}
|
|
|
|
|
2008-05-07 08:58:06 +02:00
|
|
|
|
|
|
|
|
2007-08-08 12:17:57 +02:00
|
|
|
/**
|
|
|
|
The ExtractSection() function processes the input section and
|
|
|
|
returns a pointer to the section contents. If the section being
|
|
|
|
extracted does not require processing (if the section
|
|
|
|
GuidedSectionHeader.Attributes has the
|
|
|
|
EFI_GUIDED_SECTION_PROCESSING_REQUIRED field cleared), then
|
|
|
|
OutputBuffer is just updated to point to the start of the
|
|
|
|
section's contents. Otherwise, *Buffer must be allocated
|
|
|
|
from PEI permanent memory.
|
|
|
|
|
|
|
|
@param This Indicates the
|
|
|
|
EFI_PEI_GUIDED_SECTION_EXTRACTION_PPI instance.
|
|
|
|
Buffer containing the input GUIDed section to be
|
|
|
|
processed. OutputBuffer OutputBuffer is
|
|
|
|
allocated from PEI permanent memory and contains
|
|
|
|
the new section stream.
|
2008-05-07 08:58:06 +02:00
|
|
|
@param InputSection A pointer to the input buffer, which contains
|
|
|
|
the input section to be processed.
|
|
|
|
@param OutputBuffer A pointer to a caller-allocated buffer, whose
|
|
|
|
size is specified by the contents of OutputSize.
|
2007-08-08 12:17:57 +02:00
|
|
|
@param OutputSize A pointer to a caller-allocated
|
|
|
|
UINTN in which the size of *OutputBuffer
|
|
|
|
allocation is stored. If the function
|
|
|
|
returns anything other than EFI_SUCCESS,
|
|
|
|
the value of OutputSize is undefined.
|
|
|
|
@param AuthenticationStatus A pointer to a caller-allocated
|
|
|
|
UINT32 that indicates the
|
|
|
|
authentication status of the
|
|
|
|
output buffer. If the input
|
|
|
|
section's GuidedSectionHeader.
|
|
|
|
Attributes field has the
|
|
|
|
EFI_GUIDED_SECTION_AUTH_STATUS_VALID
|
|
|
|
bit as clear,
|
|
|
|
AuthenticationStatus must return
|
|
|
|
zero. These bits reflect the
|
|
|
|
status of the extraction
|
|
|
|
operation. If the function
|
|
|
|
returns anything other than
|
|
|
|
EFI_SUCCESS, the value of
|
|
|
|
AuthenticationStatus is
|
|
|
|
undefined.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The InputSection was
|
|
|
|
successfully processed and the
|
|
|
|
section contents were returned.
|
|
|
|
|
|
|
|
@retval EFI_OUT_OF_RESOURCES The system has insufficient
|
|
|
|
resources to process the request.
|
|
|
|
|
2008-05-13 11:09:41 +02:00
|
|
|
@retval EFI_INVALID_PARAMETER The GUID in InputSection does
|
2007-08-08 12:17:57 +02:00
|
|
|
not match this instance of the
|
|
|
|
GUIDed Section Extraction PPI.
|
2008-05-07 08:58:06 +02:00
|
|
|
|
2007-08-08 12:17:57 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2009-04-10 22:58:18 +02:00
|
|
|
EFIAPI
|
2007-09-29 10:04:29 +02:00
|
|
|
CustomGuidedSectionExtract (
|
2007-08-08 12:17:57 +02:00
|
|
|
IN CONST EFI_PEI_GUIDED_SECTION_EXTRACTION_PPI *This,
|
|
|
|
IN CONST VOID *InputSection,
|
|
|
|
OUT VOID **OutputBuffer,
|
|
|
|
OUT UINTN *OutputSize,
|
|
|
|
OUT UINT32 *AuthenticationStatus
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINT8 *ScratchBuffer;
|
2007-09-29 10:04:29 +02:00
|
|
|
UINT32 ScratchBufferSize;
|
|
|
|
UINT32 OutputBufferSize;
|
|
|
|
UINT16 SectionAttribute;
|
2007-08-08 12:17:57 +02:00
|
|
|
|
|
|
|
//
|
2007-09-29 10:04:29 +02:00
|
|
|
// Init local variable
|
2007-08-08 12:17:57 +02:00
|
|
|
//
|
2007-09-29 10:04:29 +02:00
|
|
|
ScratchBuffer = NULL;
|
|
|
|
|
2007-08-08 12:17:57 +02:00
|
|
|
//
|
2007-09-29 10:04:29 +02:00
|
|
|
// Call GetInfo to get the size and attribute of input guided section data.
|
2007-08-08 12:17:57 +02:00
|
|
|
//
|
2007-09-29 10:04:29 +02:00
|
|
|
Status = ExtractGuidedSectionGetInfo (
|
2008-07-19 03:38:40 +02:00
|
|
|
InputSection,
|
|
|
|
&OutputBufferSize,
|
|
|
|
&ScratchBufferSize,
|
|
|
|
&SectionAttribute
|
|
|
|
);
|
2007-09-29 10:04:29 +02:00
|
|
|
|
2007-08-08 12:17:57 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
2008-05-07 08:58:06 +02:00
|
|
|
DEBUG ((DEBUG_ERROR, "GetInfo from guided section Failed - %r\n", Status));
|
2007-09-29 10:04:29 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ScratchBufferSize != 0) {
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
2007-09-29 10:04:29 +02:00
|
|
|
// Allocate scratch buffer
|
2007-07-05 09:05:28 +02:00
|
|
|
//
|
2007-09-29 10:04:29 +02:00
|
|
|
ScratchBuffer = AllocatePages (EFI_SIZE_TO_PAGES (ScratchBufferSize));
|
|
|
|
if (ScratchBuffer == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
2007-08-08 12:17:57 +02:00
|
|
|
}
|
2007-07-05 09:05:28 +02:00
|
|
|
|
2008-05-13 11:09:41 +02:00
|
|
|
if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) {
|
2007-09-29 10:04:29 +02:00
|
|
|
//
|
|
|
|
// Allocate output buffer
|
|
|
|
//
|
2007-12-06 10:52:27 +01:00
|
|
|
*OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1);
|
2007-09-29 10:04:29 +02:00
|
|
|
if (*OutputBuffer == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
2008-12-23 17:20:43 +01:00
|
|
|
DEBUG ((DEBUG_INFO, "Customized Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffer));
|
2007-12-06 10:52:27 +01:00
|
|
|
//
|
|
|
|
// *OutputBuffer still is one section. Adjust *OutputBuffer offset,
|
|
|
|
// skip EFI section header to make section data at page alignment.
|
|
|
|
//
|
|
|
|
*OutputBuffer = (VOID *)((UINT8 *) *OutputBuffer + EFI_PAGE_SIZE - sizeof (EFI_COMMON_SECTION_HEADER));
|
2007-07-05 09:05:28 +02:00
|
|
|
}
|
2007-09-29 10:04:29 +02:00
|
|
|
|
|
|
|
Status = ExtractGuidedSectionDecode (
|
|
|
|
InputSection,
|
|
|
|
OutputBuffer,
|
|
|
|
ScratchBuffer,
|
|
|
|
AuthenticationStatus
|
2008-12-23 17:20:43 +01:00
|
|
|
);
|
2007-08-08 12:17:57 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
//
|
2007-09-29 10:04:29 +02:00
|
|
|
// Decode failed
|
2007-08-08 12:17:57 +02:00
|
|
|
//
|
2008-05-07 08:58:06 +02:00
|
|
|
DEBUG ((DEBUG_ERROR, "Extract guided section Failed - %r\n", Status));
|
2007-08-08 12:17:57 +02:00
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2007-09-29 10:04:29 +02:00
|
|
|
*OutputSize = (UINTN) OutputBufferSize;
|
|
|
|
|
2007-07-05 09:05:28 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
2007-09-24 13:38:43 +02:00
|
|
|
|
2008-05-07 08:58:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Decompresses a section to the output buffer.
|
|
|
|
|
2008-12-23 17:20:43 +01:00
|
|
|
This function looks up the compression type field in the input section and
|
2008-05-07 08:58:06 +02:00
|
|
|
applies the appropriate compression algorithm to compress the section to a
|
|
|
|
callee allocated buffer.
|
|
|
|
|
|
|
|
@param This Points to this instance of the
|
|
|
|
EFI_PEI_DECOMPRESS_PEI PPI.
|
|
|
|
@param CompressionSection Points to the compressed section.
|
|
|
|
@param OutputBuffer Holds the returned pointer to the decompressed
|
|
|
|
sections.
|
|
|
|
@param OutputSize Holds the returned size of the decompress
|
|
|
|
section streams.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The section was decompressed successfully.
|
|
|
|
OutputBuffer contains the resulting data and
|
|
|
|
OutputSize contains the resulting size.
|
|
|
|
|
|
|
|
**/
|
2007-09-24 13:38:43 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
Decompress (
|
|
|
|
IN CONST EFI_PEI_DECOMPRESS_PPI *This,
|
|
|
|
IN CONST EFI_COMPRESSION_SECTION *CompressionSection,
|
|
|
|
OUT VOID **OutputBuffer,
|
|
|
|
OUT UINTN *OutputSize
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
UINT8 *DstBuffer;
|
|
|
|
UINT8 *ScratchBuffer;
|
2010-07-18 19:56:06 +02:00
|
|
|
UINT32 DstBufferSize;
|
2007-09-24 13:38:43 +02:00
|
|
|
UINT32 ScratchBufferSize;
|
|
|
|
EFI_COMMON_SECTION_HEADER *Section;
|
2010-07-18 19:56:06 +02:00
|
|
|
UINT32 SectionLength;
|
2007-09-24 13:38:43 +02:00
|
|
|
|
|
|
|
if (CompressionSection->CommonHeader.Type != EFI_SECTION_COMPRESSION) {
|
|
|
|
ASSERT (FALSE);
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
Section = (EFI_COMMON_SECTION_HEADER *) CompressionSection;
|
2008-07-16 15:17:50 +02:00
|
|
|
SectionLength = *(UINT32 *) (Section->Size) & 0x00ffffff;
|
2007-09-24 13:38:43 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// This is a compression set, expand it
|
|
|
|
//
|
|
|
|
switch (CompressionSection->CompressionType) {
|
|
|
|
case EFI_STANDARD_COMPRESSION:
|
2009-04-27 20:26:15 +02:00
|
|
|
if (FeaturePcdGet(PcdDxeIplSupportUefiDecompress)) {
|
2007-09-24 13:38:43 +02:00
|
|
|
//
|
2009-04-27 20:26:15 +02:00
|
|
|
// Load EFI standard compression.
|
|
|
|
// For compressed data, decompress them to destination buffer.
|
2007-09-24 13:38:43 +02:00
|
|
|
//
|
2009-04-27 20:26:15 +02:00
|
|
|
Status = UefiDecompressGetInfo (
|
|
|
|
(UINT8 *) ((EFI_COMPRESSION_SECTION *) Section + 1),
|
2010-07-18 19:56:06 +02:00
|
|
|
SectionLength - sizeof (EFI_COMPRESSION_SECTION),
|
|
|
|
&DstBufferSize,
|
2009-04-27 20:26:15 +02:00
|
|
|
&ScratchBufferSize
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
//
|
|
|
|
// GetInfo failed
|
|
|
|
//
|
|
|
|
DEBUG ((DEBUG_ERROR, "Decompress GetInfo Failed - %r\n", Status));
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Allocate scratch buffer
|
2007-09-24 13:38:43 +02:00
|
|
|
//
|
2009-04-27 20:26:15 +02:00
|
|
|
ScratchBuffer = AllocatePages (EFI_SIZE_TO_PAGES (ScratchBufferSize));
|
|
|
|
if (ScratchBuffer == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Allocate destination buffer, extra one page for adjustment
|
|
|
|
//
|
|
|
|
DstBuffer = AllocatePages (EFI_SIZE_TO_PAGES (DstBufferSize) + 1);
|
|
|
|
if (DstBuffer == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
2007-09-24 13:38:43 +02:00
|
|
|
//
|
2009-04-27 20:26:15 +02:00
|
|
|
// DstBuffer still is one section. Adjust DstBuffer offset, skip EFI section header
|
|
|
|
// to make section data at page alignment.
|
|
|
|
//
|
|
|
|
DstBuffer = DstBuffer + EFI_PAGE_SIZE - sizeof (EFI_COMMON_SECTION_HEADER);
|
|
|
|
//
|
|
|
|
// Call decompress function
|
|
|
|
//
|
|
|
|
Status = UefiDecompress (
|
|
|
|
(CHAR8 *) ((EFI_COMPRESSION_SECTION *) Section + 1),
|
|
|
|
DstBuffer,
|
|
|
|
ScratchBuffer
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
//
|
|
|
|
// Decompress failed
|
|
|
|
//
|
|
|
|
DEBUG ((DEBUG_ERROR, "Decompress Failed - %r\n", Status));
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} else {
|
2009-04-28 03:37:19 +02:00
|
|
|
//
|
|
|
|
// PcdDxeIplSupportUefiDecompress is FALSE
|
|
|
|
// Don't support UEFI decompression algorithm.
|
|
|
|
//
|
|
|
|
ASSERT (FALSE);
|
2007-09-24 13:38:43 +02:00
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EFI_NOT_COMPRESSED:
|
|
|
|
//
|
|
|
|
// Allocate destination buffer
|
|
|
|
//
|
|
|
|
DstBufferSize = CompressionSection->UncompressedLength;
|
2007-12-06 10:52:27 +01:00
|
|
|
DstBuffer = AllocatePages (EFI_SIZE_TO_PAGES (DstBufferSize) + 1);
|
2007-09-24 13:38:43 +02:00
|
|
|
if (DstBuffer == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
//
|
2007-12-06 10:52:27 +01:00
|
|
|
// Adjust DstBuffer offset, skip EFI section header
|
|
|
|
// to make section data at page alignment.
|
|
|
|
//
|
|
|
|
DstBuffer = DstBuffer + EFI_PAGE_SIZE - sizeof (EFI_COMMON_SECTION_HEADER);
|
|
|
|
//
|
2007-09-24 13:38:43 +02:00
|
|
|
// stream is not actually compressed, just encapsulated. So just copy it.
|
|
|
|
//
|
|
|
|
CopyMem (DstBuffer, CompressionSection + 1, DstBufferSize);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
//
|
|
|
|
// Don't support other unknown compression type.
|
|
|
|
//
|
|
|
|
ASSERT (FALSE);
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
*OutputSize = DstBufferSize;
|
|
|
|
*OutputBuffer = DstBuffer;
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-05-07 08:58:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
Updates the Stack HOB passed to DXE phase.
|
|
|
|
|
|
|
|
This function traverses the whole HOB list and update the stack HOB to
|
|
|
|
reflect the real stack that is used by DXE core.
|
|
|
|
|
|
|
|
@param BaseAddress The lower address of stack used by DxeCore.
|
|
|
|
@param Length The length of stack used by DxeCore.
|
|
|
|
|
|
|
|
**/
|
2007-11-08 04:57:04 +01:00
|
|
|
VOID
|
|
|
|
UpdateStackHob (
|
|
|
|
IN EFI_PHYSICAL_ADDRESS BaseAddress,
|
|
|
|
IN UINT64 Length
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_PEI_HOB_POINTERS Hob;
|
|
|
|
|
|
|
|
Hob.Raw = GetHobList ();
|
|
|
|
while ((Hob.Raw = GetNextHob (EFI_HOB_TYPE_MEMORY_ALLOCATION, Hob.Raw)) != NULL) {
|
|
|
|
if (CompareGuid (&gEfiHobMemoryAllocStackGuid, &(Hob.MemoryAllocationStack->AllocDescriptor.Name))) {
|
|
|
|
//
|
2010-08-26 10:26:14 +02:00
|
|
|
// Build a new memory allocation HOB with old stack info with EfiBootServicesData type. Need to
|
|
|
|
// avoid this region be reclaimed by DXE core as the IDT built in SEC might be on stack, and some
|
|
|
|
// PEIMs may also keep key information on stack
|
2007-11-08 04:57:04 +01:00
|
|
|
//
|
|
|
|
BuildMemoryAllocationHob (
|
|
|
|
Hob.MemoryAllocationStack->AllocDescriptor.MemoryBaseAddress,
|
|
|
|
Hob.MemoryAllocationStack->AllocDescriptor.MemoryLength,
|
2010-08-26 10:26:14 +02:00
|
|
|
EfiBootServicesData
|
2007-11-08 04:57:04 +01:00
|
|
|
);
|
|
|
|
//
|
|
|
|
// Update the BSP Stack Hob to reflect the new stack info.
|
|
|
|
//
|
|
|
|
Hob.MemoryAllocationStack->AllocDescriptor.MemoryBaseAddress = BaseAddress;
|
|
|
|
Hob.MemoryAllocationStack->AllocDescriptor.MemoryLength = Length;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Hob.Raw = GET_NEXT_HOB (Hob);
|
|
|
|
}
|
|
|
|
}
|