2018-03-08 15:48:44 +03:00
|
|
|
/*
|
|
|
|
* 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 "sysemu/sev.h"
|
|
|
|
|
2020-06-04 07:18:52 +03:00
|
|
|
int sev_kvm_init(ConfidentialGuestSupport *cgs, Error **errp)
|
2018-03-08 15:48:46 +03:00
|
|
|
{
|
2020-12-04 04:51:51 +03:00
|
|
|
/* SEV can't be selected if it's not compiled */
|
|
|
|
g_assert_not_reached();
|
2018-03-08 15:48:44 +03:00
|
|
|
}
|