]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/Library/PlatformInitLib/IntelTdxNull.c
OvmfPkg: Refactor ProcessHobList
[mirror_edk2.git] / OvmfPkg / Library / PlatformInitLib / IntelTdxNull.c
1 /** @file
2 Initialize Intel TDX support.
3
4 Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #include <PiPei.h>
11
12 /**
13 In Tdx guest, the system memory is passed in TdHob by host VMM. So
14 the major task of PlatformTdxPublishRamRegions is to walk thru the
15 TdHob list and transfer the ResourceDescriptorHob and MemoryAllocationHob
16 to the hobs in DXE phase.
17
18 MemoryAllocationHob should also be created for Mailbox and Ovmf work area.
19 **/
20 VOID
21 EFIAPI
22 PlatformTdxPublishRamRegions (
23 VOID
24 )
25 {
26 }