Last change
on this file since 99404 was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
822 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | UEFI Configuration Table for exposing the SEV Launch Secret location to UEFI
|
---|
3 | applications (boot loaders).
|
---|
4 |
|
---|
5 | Copyright (C) 2020 James Bottomley, IBM Corporation.
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #ifndef CONFIDENTIAL_COMPUTING_SECRET_H_
|
---|
10 | #define CONFIDENTIAL_COMPUTING_SECRET_H_
|
---|
11 |
|
---|
12 | #include <Uefi/UefiBaseType.h>
|
---|
13 |
|
---|
14 | #define CONFIDENTIAL_COMPUTING_SECRET_GUID \
|
---|
15 | { 0xadf956ad, \
|
---|
16 | 0xe98c, \
|
---|
17 | 0x484c, \
|
---|
18 | { 0xae, 0x11, 0xb5, 0x1c, 0x7d, 0x33, 0x64, 0x47 }, \
|
---|
19 | }
|
---|
20 |
|
---|
21 | typedef struct {
|
---|
22 | UINT64 Base;
|
---|
23 | UINT64 Size;
|
---|
24 | } CONFIDENTIAL_COMPUTING_SECRET_LOCATION;
|
---|
25 |
|
---|
26 | extern EFI_GUID gConfidentialComputingSecretGuid;
|
---|
27 |
|
---|
28 | #endif // SEV_LAUNCH_SECRET_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.