target/ppc: Add support for scv and rfscv instructions
[qemu/ar7.git] / include / sysemu / sev.h
blob98c1ec8d38aaf8d11f882bee40101f522887ab78
1 /*
2 * QEMU Secure Encrypted Virutualization (SEV) support
4 * Copyright: Advanced Micro Devices, 2016-2018
6 * Authors:
7 * Brijesh Singh <brijesh.singh@amd.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #ifndef QEMU_SEV_H
15 #define QEMU_SEV_H
17 #include "sysemu/kvm.h"
19 void *sev_guest_init(const char *id);
20 int sev_encrypt_data(void *handle, uint8_t *ptr, uint64_t len);
21 #endif