blob: 6f89fc8d4b8ea362654b7d4e42effe0fe0389c5a [file] [log] [blame]
Brijesh Singh592d5e72017-12-04 10:57:27 -06001/*
2 * AMD Secure Encrypted Virtualization (SEV) driver interface
3 *
4 * Copyright (C) 2016-2017 Advanced Micro Devices, Inc.
5 *
6 * Author: Brijesh Singh <brijesh.singh@amd.com>
7 *
Singh, Brijeshd6112ea2019-03-28 21:58:52 +00008 * SEV API spec is available at https://developer.amd.com/sev
Brijesh Singh592d5e72017-12-04 10:57:27 -06009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#ifndef __PSP_SEV_H__
16#define __PSP_SEV_H__
17
18#include <uapi/linux/psp-sev.h>
19
20#ifdef CONFIG_X86
21#include <linux/mem_encrypt.h>
22
23#define __psp_pa(x) __sme_pa(x)
24#else
25#define __psp_pa(x) __pa(x)
26#endif
27
28#define SEV_FW_BLOB_MAX_SIZE 0x4000 /* 16KB */
29
30/**
31 * SEV platform state
32 */
33enum sev_state {
34 SEV_STATE_UNINIT = 0x0,
35 SEV_STATE_INIT = 0x1,
36 SEV_STATE_WORKING = 0x2,
37
38 SEV_STATE_MAX
39};
40
41/**
42 * SEV platform and guest management commands
43 */
44enum sev_cmd {
45 /* platform commands */
46 SEV_CMD_INIT = 0x001,
47 SEV_CMD_SHUTDOWN = 0x002,
48 SEV_CMD_FACTORY_RESET = 0x003,
49 SEV_CMD_PLATFORM_STATUS = 0x004,
50 SEV_CMD_PEK_GEN = 0x005,
51 SEV_CMD_PEK_CSR = 0x006,
52 SEV_CMD_PEK_CERT_IMPORT = 0x007,
53 SEV_CMD_PDH_CERT_EXPORT = 0x008,
54 SEV_CMD_PDH_GEN = 0x009,
55 SEV_CMD_DF_FLUSH = 0x00A,
Janakarajan Natarajanedd303f2018-05-25 15:23:29 -050056 SEV_CMD_DOWNLOAD_FIRMWARE = 0x00B,
Janakarajan Natarajan0b3a8302018-05-25 15:23:30 -050057 SEV_CMD_GET_ID = 0x00C,
Brijesh Singh592d5e72017-12-04 10:57:27 -060058
59 /* Guest commands */
60 SEV_CMD_DECOMMISSION = 0x020,
61 SEV_CMD_ACTIVATE = 0x021,
62 SEV_CMD_DEACTIVATE = 0x022,
63 SEV_CMD_GUEST_STATUS = 0x023,
64
65 /* Guest launch commands */
66 SEV_CMD_LAUNCH_START = 0x030,
67 SEV_CMD_LAUNCH_UPDATE_DATA = 0x031,
68 SEV_CMD_LAUNCH_UPDATE_VMSA = 0x032,
69 SEV_CMD_LAUNCH_MEASURE = 0x033,
70 SEV_CMD_LAUNCH_UPDATE_SECRET = 0x034,
71 SEV_CMD_LAUNCH_FINISH = 0x035,
72
73 /* Guest migration commands (outgoing) */
74 SEV_CMD_SEND_START = 0x040,
75 SEV_CMD_SEND_UPDATE_DATA = 0x041,
76 SEV_CMD_SEND_UPDATE_VMSA = 0x042,
77 SEV_CMD_SEND_FINISH = 0x043,
78
79 /* Guest migration commands (incoming) */
80 SEV_CMD_RECEIVE_START = 0x050,
81 SEV_CMD_RECEIVE_UPDATE_DATA = 0x051,
82 SEV_CMD_RECEIVE_UPDATE_VMSA = 0x052,
83 SEV_CMD_RECEIVE_FINISH = 0x053,
84
85 /* Guest debug commands */
86 SEV_CMD_DBG_DECRYPT = 0x060,
87 SEV_CMD_DBG_ENCRYPT = 0x061,
88
89 SEV_CMD_MAX,
90};
91
92/**
93 * struct sev_data_init - INIT command parameters
94 *
95 * @flags: processing flags
96 * @tmr_address: system physical address used for SEV-ES
97 * @tmr_len: len of tmr_address
98 */
99struct sev_data_init {
100 u32 flags; /* In */
101 u32 reserved; /* In */
102 u64 tmr_address; /* In */
103 u32 tmr_len; /* In */
104} __packed;
105
106/**
107 * struct sev_data_pek_csr - PEK_CSR command parameters
108 *
109 * @address: PEK certificate chain
110 * @len: len of certificate
111 */
112struct sev_data_pek_csr {
113 u64 address; /* In */
114 u32 len; /* In/Out */
115} __packed;
116
117/**
118 * struct sev_data_cert_import - PEK_CERT_IMPORT command parameters
119 *
120 * @pek_address: PEK certificate chain
121 * @pek_len: len of PEK certificate
122 * @oca_address: OCA certificate chain
123 * @oca_len: len of OCA certificate
124 */
125struct sev_data_pek_cert_import {
126 u64 pek_cert_address; /* In */
127 u32 pek_cert_len; /* In */
128 u32 reserved; /* In */
129 u64 oca_cert_address; /* In */
130 u32 oca_cert_len; /* In */
131} __packed;
132
133/**
Janakarajan Natarajanedd303f2018-05-25 15:23:29 -0500134 * struct sev_data_download_firmware - DOWNLOAD_FIRMWARE command parameters
135 *
136 * @address: physical address of firmware image
137 * @len: len of the firmware image
138 */
139struct sev_data_download_firmware {
140 u64 address; /* In */
141 u32 len; /* In */
142} __packed;
143
144/**
Janakarajan Natarajan0b3a8302018-05-25 15:23:30 -0500145 * struct sev_data_get_id - GET_ID command parameters
146 *
147 * @address: physical address of region to place unique CPU ID(s)
148 * @len: len of the region
149 */
150struct sev_data_get_id {
151 u64 address; /* In */
152 u32 len; /* In/Out */
153} __packed;
154/**
Brijesh Singh592d5e72017-12-04 10:57:27 -0600155 * struct sev_data_pdh_cert_export - PDH_CERT_EXPORT command parameters
156 *
157 * @pdh_address: PDH certificate address
158 * @pdh_len: len of PDH certificate
159 * @cert_chain_address: PDH certificate chain
160 * @cert_chain_len: len of PDH certificate chain
161 */
162struct sev_data_pdh_cert_export {
163 u64 pdh_cert_address; /* In */
164 u32 pdh_cert_len; /* In/Out */
165 u32 reserved; /* In */
166 u64 cert_chain_address; /* In */
167 u32 cert_chain_len; /* In/Out */
168} __packed;
169
170/**
171 * struct sev_data_decommission - DECOMMISSION command parameters
172 *
173 * @handle: handle of the VM to decommission
174 */
175struct sev_data_decommission {
176 u32 handle; /* In */
177} __packed;
178
179/**
180 * struct sev_data_activate - ACTIVATE command parameters
181 *
182 * @handle: handle of the VM to activate
183 * @asid: asid assigned to the VM
184 */
185struct sev_data_activate {
186 u32 handle; /* In */
187 u32 asid; /* In */
188} __packed;
189
190/**
191 * struct sev_data_deactivate - DEACTIVATE command parameters
192 *
193 * @handle: handle of the VM to deactivate
194 */
195struct sev_data_deactivate {
196 u32 handle; /* In */
197} __packed;
198
199/**
200 * struct sev_data_guest_status - SEV GUEST_STATUS command parameters
201 *
202 * @handle: handle of the VM to retrieve status
203 * @policy: policy information for the VM
204 * @asid: current ASID of the VM
205 * @state: current state of the VM
206 */
207struct sev_data_guest_status {
208 u32 handle; /* In */
209 u32 policy; /* Out */
210 u32 asid; /* Out */
211 u8 state; /* Out */
212} __packed;
213
214/**
215 * struct sev_data_launch_start - LAUNCH_START command parameters
216 *
217 * @handle: handle assigned to the VM
218 * @policy: guest launch policy
219 * @dh_cert_address: physical address of DH certificate blob
220 * @dh_cert_len: len of DH certificate blob
221 * @session_address: physical address of session parameters
222 * @session_len: len of session parameters
223 */
224struct sev_data_launch_start {
225 u32 handle; /* In/Out */
226 u32 policy; /* In */
227 u64 dh_cert_address; /* In */
228 u32 dh_cert_len; /* In */
229 u32 reserved; /* In */
230 u64 session_address; /* In */
231 u32 session_len; /* In */
232} __packed;
233
234/**
235 * struct sev_data_launch_update_data - LAUNCH_UPDATE_DATA command parameter
236 *
237 * @handle: handle of the VM to update
238 * @len: len of memory to be encrypted
239 * @address: physical address of memory region to encrypt
240 */
241struct sev_data_launch_update_data {
242 u32 handle; /* In */
243 u32 reserved;
244 u64 address; /* In */
245 u32 len; /* In */
246} __packed;
247
248/**
249 * struct sev_data_launch_update_vmsa - LAUNCH_UPDATE_VMSA command
250 *
251 * @handle: handle of the VM
252 * @address: physical address of memory region to encrypt
253 * @len: len of memory region to encrypt
254 */
255struct sev_data_launch_update_vmsa {
256 u32 handle; /* In */
257 u32 reserved;
258 u64 address; /* In */
259 u32 len; /* In */
260} __packed;
261
262/**
263 * struct sev_data_launch_measure - LAUNCH_MEASURE command parameters
264 *
265 * @handle: handle of the VM to process
266 * @address: physical address containing the measurement blob
267 * @len: len of measurement blob
268 */
269struct sev_data_launch_measure {
270 u32 handle; /* In */
271 u32 reserved;
272 u64 address; /* In */
273 u32 len; /* In/Out */
274} __packed;
275
276/**
277 * struct sev_data_launch_secret - LAUNCH_SECRET command parameters
278 *
279 * @handle: handle of the VM to process
280 * @hdr_address: physical address containing the packet header
281 * @hdr_len: len of packet header
282 * @guest_address: system physical address of guest memory region
283 * @guest_len: len of guest_paddr
284 * @trans_address: physical address of transport memory buffer
285 * @trans_len: len of transport memory buffer
286 */
287struct sev_data_launch_secret {
288 u32 handle; /* In */
289 u32 reserved1;
290 u64 hdr_address; /* In */
291 u32 hdr_len; /* In */
292 u32 reserved2;
293 u64 guest_address; /* In */
294 u32 guest_len; /* In */
295 u32 reserved3;
296 u64 trans_address; /* In */
297 u32 trans_len; /* In */
298} __packed;
299
300/**
301 * struct sev_data_launch_finish - LAUNCH_FINISH command parameters
302 *
303 * @handle: handle of the VM to process
304 */
305struct sev_data_launch_finish {
306 u32 handle; /* In */
307} __packed;
308
309/**
310 * struct sev_data_send_start - SEND_START command parameters
311 *
312 * @handle: handle of the VM to process
313 * @policy: policy information for the VM
314 * @pdh_cert_address: physical address containing PDH certificate
315 * @pdh_cert_len: len of PDH certificate
316 * @plat_certs_address: physical address containing platform certificate
317 * @plat_certs_len: len of platform certificate
318 * @amd_certs_address: physical address containing AMD certificate
319 * @amd_certs_len: len of AMD certificate
320 * @session_address: physical address containing Session data
321 * @session_len: len of session data
322 */
323struct sev_data_send_start {
324 u32 handle; /* In */
325 u32 policy; /* Out */
326 u64 pdh_cert_address; /* In */
327 u32 pdh_cert_len; /* In */
328 u32 reserved1;
329 u64 plat_cert_address; /* In */
330 u32 plat_cert_len; /* In */
331 u32 reserved2;
332 u64 amd_cert_address; /* In */
333 u32 amd_cert_len; /* In */
334 u32 reserved3;
335 u64 session_address; /* In */
336 u32 session_len; /* In/Out */
337} __packed;
338
339/**
340 * struct sev_data_send_update - SEND_UPDATE_DATA command
341 *
342 * @handle: handle of the VM to process
343 * @hdr_address: physical address containing packet header
344 * @hdr_len: len of packet header
345 * @guest_address: physical address of guest memory region to send
346 * @guest_len: len of guest memory region to send
347 * @trans_address: physical address of host memory region
348 * @trans_len: len of host memory region
349 */
350struct sev_data_send_update_data {
351 u32 handle; /* In */
352 u32 reserved1;
353 u64 hdr_address; /* In */
354 u32 hdr_len; /* In/Out */
355 u32 reserved2;
356 u64 guest_address; /* In */
357 u32 guest_len; /* In */
358 u32 reserved3;
359 u64 trans_address; /* In */
360 u32 trans_len; /* In */
361} __packed;
362
363/**
364 * struct sev_data_send_update - SEND_UPDATE_VMSA command
365 *
366 * @handle: handle of the VM to process
367 * @hdr_address: physical address containing packet header
368 * @hdr_len: len of packet header
369 * @guest_address: physical address of guest memory region to send
370 * @guest_len: len of guest memory region to send
371 * @trans_address: physical address of host memory region
372 * @trans_len: len of host memory region
373 */
374struct sev_data_send_update_vmsa {
375 u32 handle; /* In */
376 u64 hdr_address; /* In */
377 u32 hdr_len; /* In/Out */
378 u32 reserved2;
379 u64 guest_address; /* In */
380 u32 guest_len; /* In */
381 u32 reserved3;
382 u64 trans_address; /* In */
383 u32 trans_len; /* In */
384} __packed;
385
386/**
387 * struct sev_data_send_finish - SEND_FINISH command parameters
388 *
389 * @handle: handle of the VM to process
390 */
391struct sev_data_send_finish {
392 u32 handle; /* In */
393} __packed;
394
395/**
396 * struct sev_data_receive_start - RECEIVE_START command parameters
397 *
398 * @handle: handle of the VM to perform receive operation
399 * @pdh_cert_address: system physical address containing PDH certificate blob
400 * @pdh_cert_len: len of PDH certificate blob
401 * @session_address: system physical address containing session blob
402 * @session_len: len of session blob
403 */
404struct sev_data_receive_start {
405 u32 handle; /* In/Out */
406 u32 policy; /* In */
407 u64 pdh_cert_address; /* In */
408 u32 pdh_cert_len; /* In */
409 u32 reserved1;
410 u64 session_address; /* In */
411 u32 session_len; /* In */
412} __packed;
413
414/**
415 * struct sev_data_receive_update_data - RECEIVE_UPDATE_DATA command parameters
416 *
417 * @handle: handle of the VM to update
418 * @hdr_address: physical address containing packet header blob
419 * @hdr_len: len of packet header
420 * @guest_address: system physical address of guest memory region
421 * @guest_len: len of guest memory region
422 * @trans_address: system physical address of transport buffer
423 * @trans_len: len of transport buffer
424 */
425struct sev_data_receive_update_data {
426 u32 handle; /* In */
427 u32 reserved1;
428 u64 hdr_address; /* In */
429 u32 hdr_len; /* In */
430 u32 reserved2;
431 u64 guest_address; /* In */
432 u32 guest_len; /* In */
433 u32 reserved3;
434 u64 trans_address; /* In */
435 u32 trans_len; /* In */
436} __packed;
437
438/**
439 * struct sev_data_receive_update_vmsa - RECEIVE_UPDATE_VMSA command parameters
440 *
441 * @handle: handle of the VM to update
442 * @hdr_address: physical address containing packet header blob
443 * @hdr_len: len of packet header
444 * @guest_address: system physical address of guest memory region
445 * @guest_len: len of guest memory region
446 * @trans_address: system physical address of transport buffer
447 * @trans_len: len of transport buffer
448 */
449struct sev_data_receive_update_vmsa {
450 u32 handle; /* In */
451 u32 reserved1;
452 u64 hdr_address; /* In */
453 u32 hdr_len; /* In */
454 u32 reserved2;
455 u64 guest_address; /* In */
456 u32 guest_len; /* In */
457 u32 reserved3;
458 u64 trans_address; /* In */
459 u32 trans_len; /* In */
460} __packed;
461
462/**
463 * struct sev_data_receive_finish - RECEIVE_FINISH command parameters
464 *
465 * @handle: handle of the VM to finish
466 */
467struct sev_data_receive_finish {
468 u32 handle; /* In */
469} __packed;
470
471/**
472 * struct sev_data_dbg - DBG_ENCRYPT/DBG_DECRYPT command parameters
473 *
474 * @handle: handle of the VM to perform debug operation
475 * @src_addr: source address of data to operate on
476 * @dst_addr: destination address of data to operate on
477 * @len: len of data to operate on
478 */
479struct sev_data_dbg {
480 u32 handle; /* In */
481 u32 reserved;
482 u64 src_addr; /* In */
483 u64 dst_addr; /* In */
484 u32 len; /* In */
485} __packed;
486
Brijesh Singh200664d2017-12-04 10:57:28 -0600487#ifdef CONFIG_CRYPTO_DEV_SP_PSP
488
489/**
490 * sev_platform_init - perform SEV INIT command
491 *
492 * @error: SEV command return code
493 *
494 * Returns:
495 * 0 if the SEV successfully processed the command
496 * -%ENODEV if the SEV device is not available
497 * -%ENOTSUPP if the SEV does not support SEV
498 * -%ETIMEDOUT if the SEV command timed out
499 * -%EIO if the SEV returned a non-zero return code
500 */
501int sev_platform_init(int *error);
502
503/**
504 * sev_platform_status - perform SEV PLATFORM_STATUS command
505 *
506 * @status: sev_user_data_status structure to be processed
507 * @error: SEV command return code
508 *
509 * Returns:
510 * 0 if the SEV successfully processed the command
511 * -%ENODEV if the SEV device is not available
512 * -%ENOTSUPP if the SEV does not support SEV
513 * -%ETIMEDOUT if the SEV command timed out
514 * -%EIO if the SEV returned a non-zero return code
515 */
516int sev_platform_status(struct sev_user_data_status *status, int *error);
517
518/**
519 * sev_issue_cmd_external_user - issue SEV command by other driver with a file
520 * handle.
521 *
522 * This function can be used by other drivers to issue a SEV command on
523 * behalf of userspace. The caller must pass a valid SEV file descriptor
524 * so that we know that it has access to SEV device.
525 *
526 * @filep - SEV device file pointer
527 * @cmd - command to issue
528 * @data - command buffer
529 * @error: SEV command return code
530 *
531 * Returns:
532 * 0 if the SEV successfully processed the command
533 * -%ENODEV if the SEV device is not available
534 * -%ENOTSUPP if the SEV does not support SEV
535 * -%ETIMEDOUT if the SEV command timed out
536 * -%EIO if the SEV returned a non-zero return code
537 * -%EINVAL if the SEV file descriptor is not valid
538 */
539int sev_issue_cmd_external_user(struct file *filep, unsigned int id,
540 void *data, int *error);
541
542/**
543 * sev_guest_deactivate - perform SEV DEACTIVATE command
544 *
545 * @deactivate: sev_data_deactivate structure to be processed
546 * @sev_ret: sev command return code
547 *
548 * Returns:
549 * 0 if the sev successfully processed the command
550 * -%ENODEV if the sev device is not available
551 * -%ENOTSUPP if the sev does not support SEV
552 * -%ETIMEDOUT if the sev command timed out
553 * -%EIO if the sev returned a non-zero return code
554 */
555int sev_guest_deactivate(struct sev_data_deactivate *data, int *error);
556
557/**
558 * sev_guest_activate - perform SEV ACTIVATE command
559 *
560 * @activate: sev_data_activate structure to be processed
561 * @sev_ret: sev command return code
562 *
563 * Returns:
564 * 0 if the sev successfully processed the command
565 * -%ENODEV if the sev device is not available
566 * -%ENOTSUPP if the sev does not support SEV
567 * -%ETIMEDOUT if the sev command timed out
568 * -%EIO if the sev returned a non-zero return code
569 */
570int sev_guest_activate(struct sev_data_activate *data, int *error);
571
572/**
573 * sev_guest_df_flush - perform SEV DF_FLUSH command
574 *
575 * @sev_ret: sev command return code
576 *
577 * Returns:
578 * 0 if the sev successfully processed the command
579 * -%ENODEV if the sev device is not available
580 * -%ENOTSUPP if the sev does not support SEV
581 * -%ETIMEDOUT if the sev command timed out
582 * -%EIO if the sev returned a non-zero return code
583 */
584int sev_guest_df_flush(int *error);
585
586/**
587 * sev_guest_decommission - perform SEV DECOMMISSION command
588 *
589 * @decommission: sev_data_decommission structure to be processed
590 * @sev_ret: sev command return code
591 *
592 * Returns:
593 * 0 if the sev successfully processed the command
594 * -%ENODEV if the sev device is not available
595 * -%ENOTSUPP if the sev does not support SEV
596 * -%ETIMEDOUT if the sev command timed out
597 * -%EIO if the sev returned a non-zero return code
598 */
599int sev_guest_decommission(struct sev_data_decommission *data, int *error);
600
Brijesh Singh7360e4b2017-12-04 10:57:31 -0600601void *psp_copy_user_blob(u64 __user uaddr, u32 len);
602
Brijesh Singh200664d2017-12-04 10:57:28 -0600603#else /* !CONFIG_CRYPTO_DEV_SP_PSP */
604
605static inline int
606sev_platform_status(struct sev_user_data_status *status, int *error) { return -ENODEV; }
607
608static inline int sev_platform_init(int *error) { return -ENODEV; }
609
610static inline int
611sev_guest_deactivate(struct sev_data_deactivate *data, int *error) { return -ENODEV; }
612
613static inline int
614sev_guest_decommission(struct sev_data_decommission *data, int *error) { return -ENODEV; }
615
616static inline int
617sev_guest_activate(struct sev_data_activate *data, int *error) { return -ENODEV; }
618
619static inline int sev_guest_df_flush(int *error) { return -ENODEV; }
620
621static inline int
622sev_issue_cmd_external_user(struct file *filep, unsigned int id, void *data, int *error) { return -ENODEV; }
623
Brijesh Singh7360e4b2017-12-04 10:57:31 -0600624static inline void *psp_copy_user_blob(u64 __user uaddr, u32 len) { return ERR_PTR(-EINVAL); }
625
Brijesh Singh200664d2017-12-04 10:57:28 -0600626#endif /* CONFIG_CRYPTO_DEV_SP_PSP */
627
Brijesh Singh592d5e72017-12-04 10:57:27 -0600628#endif /* __PSP_SEV_H__ */