mirror of
https://github.com/qemu/qemu.git
synced 2024-12-15 23:43:31 +08:00
21 lines
415 B
C
21 lines
415 B
C
|
/*
|
||
|
* 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_H
|
||
|
#define QEMU_SEV_H
|
||
|
|
||
|
#include "sysemu/kvm.h"
|
||
|
|
||
|
void *sev_guest_init(const char *id);
|
||
|
#endif
|