mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
sev/i386: add command to initialize the memory encryption context
When memory encryption is enabled, KVM_SEV_INIT command is used to initialize the platform. The command loads the SEV related persistent data from non-volatile storage and initializes the platform context. This command should be first issued before invoking any other guest commands provided by the SEV firmware. Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Richard Henderson <rth@twiddle.net> Cc: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Brijesh Singh <brijesh.singh@amd.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
9d8ad11429
commit
d8575c6c02
6 changed files with 303 additions and 2 deletions
41
target/i386/sev-stub.c
Normal file
41
target/i386/sev-stub.c
Normal file
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* QEMU SEV stub
|
||||
*
|
||||
* Copyright Advanced Micro Devices 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.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu-common.h"
|
||||
#include "sev_i386.h"
|
||||
|
||||
SevInfo *sev_get_info(void)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
bool sev_enabled(void)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
uint64_t sev_get_me_mask(void)
|
||||
{
|
||||
return ~0;
|
||||
}
|
||||
|
||||
uint32_t sev_get_cbit_position(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
uint32_t sev_get_reduced_phys_bits(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue