xref: /openbmc/qemu/backends/igvm.h (revision b92b39af4219df4250f121f64d215506909c7404)
1 /*
2  * QEMU IGVM configuration backend for Confidential Guests
3  *
4  * Copyright (C) 2023-2024 SUSE
5  *
6  * Authors:
7  *  Roy Hopkins <roy.hopkins@randomman.co.uk>
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef BACKENDS_IGVM_H
13 #define BACKENDS_IGVM_H
14 
15 #include "system/confidential-guest-support.h"
16 #include "system/igvm-cfg.h"
17 #include "qapi/error.h"
18 
19 int qigvm_process_file(IgvmCfg *igvm, ConfidentialGuestSupport *cgs,
20                       bool onlyVpContext, Error **errp);
21 
22 #endif
23