Last change
on this file since 106129 was 105670, checked in by vboxsync, 8 months ago |
Devices/EFI/FirmwareNew: Merge edk2-stable-202405 and make it build on aarch64, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
649 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 |
|
---|
3 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
4 |
|
---|
5 | **/
|
---|
6 |
|
---|
7 | #include <Library/BaseLib.h>
|
---|
8 | #include <Library/DebugLib.h>
|
---|
9 | #include <Library/HstiLib.h>
|
---|
10 | #include <Library/PcdLib.h>
|
---|
11 | #include <Library/PciLib.h>
|
---|
12 |
|
---|
13 | #include <IndustryStandard/Hsti.h>
|
---|
14 | #include <IndustryStandard/Q35MchIch9.h>
|
---|
15 |
|
---|
16 | #include "VirtHstiDxe.h"
|
---|
17 |
|
---|
18 | STATIC VIRT_ADAPTER_INFO_PLATFORM_SECURITY mHstiPC = {
|
---|
19 | PLATFORM_SECURITY_VERSION_VNEXTCS,
|
---|
20 | PLATFORM_SECURITY_ROLE_PLATFORM_REFERENCE,
|
---|
21 | { L"OVMF (Qemu PC)" },
|
---|
22 | VIRT_HSTI_SECURITY_FEATURE_SIZE,
|
---|
23 | };
|
---|
24 |
|
---|
25 | VIRT_ADAPTER_INFO_PLATFORM_SECURITY *
|
---|
26 | VirtHstiQemuPCInit (
|
---|
27 | VOID
|
---|
28 | )
|
---|
29 | {
|
---|
30 | return &mHstiPC;
|
---|
31 | }
|
---|
32 |
|
---|
33 | VOID
|
---|
34 | VirtHstiQemuPCVerify (
|
---|
35 | VOID
|
---|
36 | )
|
---|
37 | {
|
---|
38 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.