2018-03-08 13:48:41 +01:00
|
|
|
/*
|
|
|
|
* QEMU Secure Encrypted Virutualization (SEV) support
|
|
|
|
*
|
|
|
|
* Copyright: Advanced Micro Devices, 2016-2018
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Brijesh Singh <brijesh.singh@amd.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_SEV_I386_H
|
|
|
|
#define QEMU_SEV_I386_H
|
|
|
|
|
|
|
|
#include "qom/object.h"
|
|
|
|
#include "qapi/error.h"
|
|
|
|
#include "sysemu/kvm.h"
|
2018-03-08 13:48:44 +01:00
|
|
|
#include "sysemu/sev.h"
|
2018-03-08 13:48:41 +01:00
|
|
|
#include "qemu/error-report.h"
|
2019-08-12 07:23:32 +02:00
|
|
|
#include "qapi/qapi-types-misc-target.h"
|
2018-03-08 13:48:41 +01:00
|
|
|
|
|
|
|
#define SEV_POLICY_NODBG 0x1
|
|
|
|
#define SEV_POLICY_NOKS 0x2
|
|
|
|
#define SEV_POLICY_ES 0x4
|
|
|
|
#define SEV_POLICY_NOSEND 0x8
|
|
|
|
#define SEV_POLICY_DOMAIN 0x10
|
|
|
|
#define SEV_POLICY_SEV 0x20
|
|
|
|
|
2021-01-26 18:36:44 +01:00
|
|
|
extern bool sev_es_enabled(void);
|
2018-03-08 13:48:44 +01:00
|
|
|
extern uint64_t sev_get_me_mask(void);
|
|
|
|
extern SevInfo *sev_get_info(void);
|
|
|
|
extern uint32_t sev_get_cbit_position(void);
|
|
|
|
extern uint32_t sev_get_reduced_phys_bits(void);
|
2018-03-08 13:48:51 +01:00
|
|
|
extern char *sev_get_launch_measurement(void);
|
2020-06-30 17:35:46 +02:00
|
|
|
extern SevCapability *sev_get_capabilities(Error **errp);
|
2021-04-29 19:07:28 +02:00
|
|
|
extern SevAttestationReport *
|
|
|
|
sev_get_attestation_report(const char *mnonce, Error **errp);
|
2018-03-08 13:48:44 +01:00
|
|
|
|
2018-03-08 13:48:41 +01:00
|
|
|
#endif
|