REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the OvmfPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Andrew Fish <afish@apple.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /** @file
 | |
| 
 | |
|   Secure Encrypted Virtualization (SEV) library helper function
 | |
| 
 | |
|   Copyright (c) 2017 - 2020, AMD Incorporated. All rights reserved.<BR>
 | |
| 
 | |
|   SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| 
 | |
| **/
 | |
| 
 | |
| #include <Library/BaseLib.h>
 | |
| #include <Library/DebugLib.h>
 | |
| #include <Library/MemEncryptSevLib.h>
 | |
| #include <Library/PcdLib.h>
 | |
| #include <Register/QemuSmramSaveStateMap.h>
 | |
| #include <Register/SmramSaveStateMap.h>
 | |
| #include <Uefi/UefiBaseType.h>
 | |
| 
 | |
| /**
 | |
|   Locate the page range that covers the initial (pre-SMBASE-relocation) SMRAM
 | |
|   Save State Map.
 | |
| 
 | |
|   @param[out] BaseAddress     The base address of the lowest-address page that
 | |
|                               covers the initial SMRAM Save State Map.
 | |
| 
 | |
|   @param[out] NumberOfPages   The number of pages in the page range that covers
 | |
|                               the initial SMRAM Save State Map.
 | |
| 
 | |
|   @retval RETURN_SUCCESS      BaseAddress and NumberOfPages have been set on
 | |
|                               output.
 | |
| 
 | |
|   @retval RETURN_UNSUPPORTED  SMM is unavailable.
 | |
| **/
 | |
| RETURN_STATUS
 | |
| EFIAPI
 | |
| MemEncryptSevLocateInitialSmramSaveStateMapPages (
 | |
|   OUT UINTN  *BaseAddress,
 | |
|   OUT UINTN  *NumberOfPages
 | |
|   )
 | |
| {
 | |
|   UINTN  MapStart;
 | |
|   UINTN  MapEnd;
 | |
|   UINTN  MapPagesStart; // MapStart rounded down to page boundary
 | |
|   UINTN  MapPagesEnd;   // MapEnd rounded up to page boundary
 | |
|   UINTN  MapPagesSize;  // difference between MapPagesStart and MapPagesEnd
 | |
| 
 | |
|   if (!FeaturePcdGet (PcdSmmSmramRequire)) {
 | |
|     return RETURN_UNSUPPORTED;
 | |
|   }
 | |
| 
 | |
|   MapStart      = SMM_DEFAULT_SMBASE + SMRAM_SAVE_STATE_MAP_OFFSET;
 | |
|   MapEnd        = MapStart + sizeof (QEMU_SMRAM_SAVE_STATE_MAP);
 | |
|   MapPagesStart = MapStart & ~(UINTN)EFI_PAGE_MASK;
 | |
|   MapPagesEnd   = ALIGN_VALUE (MapEnd, EFI_PAGE_SIZE);
 | |
|   MapPagesSize  = MapPagesEnd - MapPagesStart;
 | |
| 
 | |
|   ASSERT ((MapPagesSize & EFI_PAGE_MASK) == 0);
 | |
| 
 | |
|   *BaseAddress   = MapPagesStart;
 | |
|   *NumberOfPages = MapPagesSize >> EFI_PAGE_SHIFT;
 | |
| 
 | |
|   return RETURN_SUCCESS;
 | |
| }
 |