1
2
3
4
5
6
7
8
9
10
11
12
13#ifndef __PSP_SEV_USER_H__
14#define __PSP_SEV_USER_H__
15
16#include <linux/types.h>
17
18
19
20
21enum {
22 SEV_FACTORY_RESET = 0,
23 SEV_PLATFORM_STATUS,
24 SEV_PEK_GEN,
25 SEV_PEK_CSR,
26 SEV_PDH_GEN,
27 SEV_PDH_CERT_EXPORT,
28 SEV_PEK_CERT_IMPORT,
29 SEV_GET_ID,
30 SEV_GET_ID2,
31
32 SEV_MAX,
33};
34
35
36
37
38typedef enum {
39 SEV_RET_SUCCESS = 0,
40 SEV_RET_INVALID_PLATFORM_STATE,
41 SEV_RET_INVALID_GUEST_STATE,
42 SEV_RET_INAVLID_CONFIG,
43 SEV_RET_INVALID_LEN,
44 SEV_RET_ALREADY_OWNED,
45 SEV_RET_INVALID_CERTIFICATE,
46 SEV_RET_POLICY_FAILURE,
47 SEV_RET_INACTIVE,
48 SEV_RET_INVALID_ADDRESS,
49 SEV_RET_BAD_SIGNATURE,
50 SEV_RET_BAD_MEASUREMENT,
51 SEV_RET_ASID_OWNED,
52 SEV_RET_INVALID_ASID,
53 SEV_RET_WBINVD_REQUIRED,
54 SEV_RET_DFFLUSH_REQUIRED,
55 SEV_RET_INVALID_GUEST,
56 SEV_RET_INVALID_COMMAND,
57 SEV_RET_ACTIVE,
58 SEV_RET_HWSEV_RET_PLATFORM,
59 SEV_RET_HWSEV_RET_UNSAFE,
60 SEV_RET_UNSUPPORTED,
61 SEV_RET_INVALID_PARAM,
62 SEV_RET_RESOURCE_LIMIT,
63 SEV_RET_SECURE_DATA_INVALID,
64 SEV_RET_MAX,
65} sev_ret_code;
66
67
68
69
70
71
72
73
74
75
76
77struct sev_user_data_status {
78 __u8 api_major;
79 __u8 api_minor;
80 __u8 state;
81 __u32 flags;
82 __u8 build;
83 __u32 guest_count;
84} __attribute__((packed));
85
86#define SEV_STATUS_FLAGS_CONFIG_ES 0x0100
87
88
89
90
91
92
93
94struct sev_user_data_pek_csr {
95 __u64 address;
96 __u32 length;
97} __attribute__((packed));
98
99
100
101
102
103
104
105
106
107struct sev_user_data_pek_cert_import {
108 __u64 pek_cert_address;
109 __u32 pek_cert_len;
110 __u64 oca_cert_address;
111 __u32 oca_cert_len;
112} __attribute__((packed));
113
114
115
116
117
118
119
120
121
122struct sev_user_data_pdh_cert_export {
123 __u64 pdh_cert_address;
124 __u32 pdh_cert_len;
125 __u64 cert_chain_address;
126 __u32 cert_chain_len;
127} __attribute__((packed));
128
129
130
131
132
133
134
135struct sev_user_data_get_id {
136 __u8 socket1[64];
137 __u8 socket2[64];
138} __attribute__((packed));
139
140
141
142
143
144
145struct sev_user_data_get_id2 {
146 __u64 address;
147 __u32 length;
148} __attribute__((packed));
149
150
151
152
153
154
155
156
157struct sev_issue_cmd {
158 __u32 cmd;
159 __u64 data;
160 __u32 error;
161} __attribute__((packed));
162
163#define SEV_IOC_TYPE 'S'
164#define SEV_ISSUE_CMD _IOWR(SEV_IOC_TYPE, 0x0, struct sev_issue_cmd)
165
166#endif
167