mirror of https://github.com/acidanthera/audk.git
ArmPkg/BdsLib: Exposed ShutdownUefiBootServices() in the BdsLib interface
Other libraries/modules could use it (eg: EFI Shell command `runaxf`). Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> Reviewed-by: Ronald Cron <Ronald.Cron@arm.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17297 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b330087bab
commit
cc053ee6da
|
@ -1,6 +1,6 @@
|
||||||
/** @file
|
/** @file
|
||||||
*
|
*
|
||||||
* Copyright (c) 2013, ARM Limited. All rights reserved.
|
* Copyright (c) 2013-2015, ARM Limited. All rights reserved.
|
||||||
*
|
*
|
||||||
* This program and the accompanying materials
|
* This program and the accompanying materials
|
||||||
* are licensed and made available under the terms and conditions of the BSD License
|
* are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
@ -221,4 +221,12 @@ BdsLoadImage (
|
||||||
OUT UINTN *FileSize
|
OUT UINTN *FileSize
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Call BS.ExitBootServices with the appropriate Memory Map information
|
||||||
|
*/
|
||||||
|
EFI_STATUS
|
||||||
|
ShutdownUefiBootServices (
|
||||||
|
VOID
|
||||||
|
);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -103,11 +103,6 @@ typedef struct {
|
||||||
} BDS_TFTP_CONTEXT;
|
} BDS_TFTP_CONTEXT;
|
||||||
|
|
||||||
// BdsHelper.c
|
// BdsHelper.c
|
||||||
EFI_STATUS
|
|
||||||
ShutdownUefiBootServices (
|
|
||||||
VOID
|
|
||||||
);
|
|
||||||
|
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
GetSystemMemoryResources (
|
GetSystemMemoryResources (
|
||||||
LIST_ENTRY *ResourceList
|
LIST_ENTRY *ResourceList
|
||||||
|
|
|
@ -44,6 +44,7 @@
|
||||||
ArmLib
|
ArmLib
|
||||||
ArmPlatformLib
|
ArmPlatformLib
|
||||||
BaseMemoryLib
|
BaseMemoryLib
|
||||||
|
DxeServicesTableLib
|
||||||
MemoryAllocationLib
|
MemoryAllocationLib
|
||||||
UefiDriverEntryPoint
|
UefiDriverEntryPoint
|
||||||
UefiBootServicesTableLib
|
UefiBootServicesTableLib
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
[LibraryClasses]
|
[LibraryClasses]
|
||||||
ArmShellCmdRunAxfLib
|
ArmShellCmdRunAxfLib
|
||||||
|
DxeServicesTableLib
|
||||||
MemoryAllocationLib
|
MemoryAllocationLib
|
||||||
UefiDriverEntryPoint
|
UefiDriverEntryPoint
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
[LibraryClasses]
|
[LibraryClasses]
|
||||||
ArmLib
|
ArmLib
|
||||||
BaseLib
|
BaseLib
|
||||||
|
BdsLib
|
||||||
DebugLib
|
DebugLib
|
||||||
HiiLib
|
HiiLib
|
||||||
ShellLib
|
ShellLib
|
||||||
|
|
|
@ -15,11 +15,13 @@
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#include <Guid/GlobalVariable.h>
|
#include <Guid/GlobalVariable.h>
|
||||||
|
|
||||||
#include <Library/PrintLib.h>
|
#include <Library/PrintLib.h>
|
||||||
#include <Library/HandleParsingLib.h>
|
#include <Library/HandleParsingLib.h>
|
||||||
#include <Library/DevicePathLib.h>
|
#include <Library/DevicePathLib.h>
|
||||||
#include <Library/BaseLib.h>
|
#include <Library/BaseLib.h>
|
||||||
#include <Library/BaseMemoryLib.h>
|
#include <Library/BaseMemoryLib.h>
|
||||||
|
#include <Library/BdsLib.h>
|
||||||
#include <Library/MemoryAllocationLib.h>
|
#include <Library/MemoryAllocationLib.h>
|
||||||
#include <Library/DebugLib.h>
|
#include <Library/DebugLib.h>
|
||||||
|
|
||||||
|
@ -34,64 +36,6 @@ typedef VOID (*ELF_ENTRYPOINT)(UINTN arg0, UINTN arg1,
|
||||||
UINTN arg2, UINTN arg3);
|
UINTN arg2, UINTN arg3);
|
||||||
|
|
||||||
|
|
||||||
STATIC
|
|
||||||
EFI_STATUS
|
|
||||||
ShutdownUefiBootServices (
|
|
||||||
VOID
|
|
||||||
)
|
|
||||||
{
|
|
||||||
EFI_STATUS Status;
|
|
||||||
UINTN MemoryMapSize;
|
|
||||||
EFI_MEMORY_DESCRIPTOR *MemoryMap;
|
|
||||||
UINTN MapKey;
|
|
||||||
UINTN DescriptorSize;
|
|
||||||
UINT32 DescriptorVersion;
|
|
||||||
UINTN Pages;
|
|
||||||
|
|
||||||
MemoryMap = NULL;
|
|
||||||
MemoryMapSize = 0;
|
|
||||||
Pages = 0;
|
|
||||||
|
|
||||||
do {
|
|
||||||
Status = gBS->GetMemoryMap (
|
|
||||||
&MemoryMapSize,
|
|
||||||
MemoryMap,
|
|
||||||
&MapKey,
|
|
||||||
&DescriptorSize,
|
|
||||||
&DescriptorVersion
|
|
||||||
);
|
|
||||||
if (Status == EFI_BUFFER_TOO_SMALL) {
|
|
||||||
|
|
||||||
Pages = EFI_SIZE_TO_PAGES (MemoryMapSize) + 1;
|
|
||||||
MemoryMap = AllocatePages (Pages);
|
|
||||||
|
|
||||||
//
|
|
||||||
// Get System MemoryMap
|
|
||||||
//
|
|
||||||
Status = gBS->GetMemoryMap (
|
|
||||||
&MemoryMapSize,
|
|
||||||
MemoryMap,
|
|
||||||
&MapKey,
|
|
||||||
&DescriptorSize,
|
|
||||||
&DescriptorVersion
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Don't do anything between the GetMemoryMap() and ExitBootServices()
|
|
||||||
if (!EFI_ERROR (Status)) {
|
|
||||||
Status = gBS->ExitBootServices (gImageHandle, MapKey);
|
|
||||||
if (EFI_ERROR (Status)) {
|
|
||||||
FreePages (MemoryMap, Pages);
|
|
||||||
MemoryMap = NULL;
|
|
||||||
MemoryMapSize = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} while (EFI_ERROR (Status));
|
|
||||||
|
|
||||||
return Status;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
STATIC
|
STATIC
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
PreparePlatformHardware (
|
PreparePlatformHardware (
|
||||||
|
|
Loading…
Reference in New Issue