-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
ConfidentialComputingGuestAttr.h
48 lines (35 loc) · 1.36 KB
/
ConfidentialComputingGuestAttr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @file
Definitions for Confidential Computing Guest Attributes
Copyright (c) 2021 AMD Inc. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef CONFIDENTIAL_COMPUTING_GUEST_ATTR_H_
#define CONFIDENTIAL_COMPUTING_GUEST_ATTR_H_
//
// Confidential computing guest type
//
typedef enum {
CcGuestTypeNonEncrypted = 0,
CcGuestTypeAmdSev,
CcGuestTypeIntelTdx,
} CC_GUEST_TYPE;
typedef enum {
/* The guest is running with memory encryption disabled. */
CCAttrNotEncrypted = 0,
/* The guest is running with AMD SEV memory encryption enabled. */
CCAttrAmdSev = 0x100,
CCAttrAmdSevEs = 0x101,
CCAttrAmdSevSnp = 0x102,
/* The guest is running with Intel TDX memory encryption enabled. */
CCAttrIntelTdx = 0x200,
CCAttrTypeMask = 0x000000000000ffff,
/* Features */
/* The AMD SEV-ES DebugVirtualization feature is enabled in SEV_STATUS */
CCAttrFeatureAmdSevEsDebugVirtualization = 0x0000000000010000,
CCAttrFeatureMask = 0xffffffffffff0000,
} CONFIDENTIAL_COMPUTING_GUEST_ATTR;
#define _CC_GUEST_IS_TDX(x) ((x) == CCAttrIntelTdx)
#define CC_GUEST_IS_TDX(x) _CC_GUEST_IS_TDX((x) & CCAttrTypeMask)
#define _CC_GUEST_IS_SEV(x) ((x) == CCAttrAmdSev || (x) == CCAttrAmdSevEs || (x) == CCAttrAmdSevSnp)
#define CC_GUEST_IS_SEV(x) _CC_GUEST_IS_SEV((x) & CCAttrTypeMask)
#endif