]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/RiscVVirt/Sec/Cpu.c
OvmfPkg/RiscVVirt: Add SEC module
[mirror_edk2.git] / OvmfPkg / RiscVVirt / Sec / Cpu.c
CommitLineData
e1aaef00
S
1/** @file\r
2The library call to pass the device tree to DXE via HOB.\r
3\r
4Copyright (c) 2021, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>\r
5\r
6SPDX-License-Identifier: BSD-2-Clause-Patent\r
7\r
8**/\r
9\r
10//\r
11//// The package level header files this module uses\r
12////\r
13#include <PiPei.h>\r
14\r
15#include <Library/DebugLib.h>\r
16#include <Library/HobLib.h>\r
17\r
18/**\r
19 Cpu Peim initialization.\r
20\r
21**/\r
22EFI_STATUS\r
23CpuPeimInitialization (\r
24 VOID\r
25 )\r
26{\r
27 //\r
28 // for MMU type >= sv39\r
29 //\r
30 BuildCpuHob (56, 32);\r
31\r
32 return EFI_SUCCESS;\r
33}\r