mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
target/i386/sev: Declare system-specific functions in 'sev.h'
"sysemu/sev.h" is only used from x86-specific files. Let's move it to include/hw/i386, and merge it with target/i386/sev.h. Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20211007161716.453984-16-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
93777de365
commit
deae846f94
6 changed files with 13 additions and 33 deletions
|
@ -14,7 +14,7 @@
|
|||
#ifndef QEMU_SEV_I386_H
|
||||
#define QEMU_SEV_I386_H
|
||||
|
||||
#include "sysemu/sev.h"
|
||||
#include "exec/confidential-guest-support.h"
|
||||
#include "qapi/qapi-types-misc-target.h"
|
||||
|
||||
#define SEV_POLICY_NODBG 0x1
|
||||
|
@ -35,6 +35,7 @@ typedef struct SevKernelLoaderContext {
|
|||
size_t cmdline_size;
|
||||
} SevKernelLoaderContext;
|
||||
|
||||
bool sev_enabled(void);
|
||||
extern bool sev_es_enabled(void);
|
||||
extern SevInfo *sev_get_info(void);
|
||||
extern uint32_t sev_get_cbit_position(void);
|
||||
|
@ -45,4 +46,13 @@ extern SevAttestationReport *
|
|||
sev_get_attestation_report(const char *mnonce, Error **errp);
|
||||
extern bool sev_add_kernel_loader_hashes(SevKernelLoaderContext *ctx, Error **errp);
|
||||
|
||||
int sev_encrypt_flash(uint8_t *ptr, uint64_t len, Error **errp);
|
||||
int sev_inject_launch_secret(const char *hdr, const char *secret,
|
||||
uint64_t gpa, Error **errp);
|
||||
|
||||
int sev_es_save_reset_vector(void *flash_ptr, uint64_t flash_size);
|
||||
void sev_es_set_reset_vector(CPUState *cpu);
|
||||
|
||||
int sev_kvm_init(ConfidentialGuestSupport *cgs, Error **errp);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue