Merge tag 'v9.1.0'
[qemu/ar7.git] / include / hw / remote / machine.h
blobac32fda3875e58258de66d890a2fab59d4eea416
1 /*
2 * Remote machine configuration
4 * Copyright © 2018, 2021 Oracle and/or its affiliates.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
9 */
11 #ifndef REMOTE_MACHINE_H
12 #define REMOTE_MACHINE_H
14 #include "qom/object.h"
15 #include "hw/boards.h"
16 #include "hw/pci-host/remote.h"
17 #include "io/channel.h"
18 #include "hw/remote/iohub.h"
20 struct RemoteMachineState {
21 MachineState parent_obj;
23 RemotePCIHost *host;
24 RemoteIOHubState iohub;
26 bool vfio_user;
28 bool auto_shutdown;
31 /* Used to pass to co-routine device and ioc. */
32 typedef struct RemoteCommDev {
33 PCIDevice *dev;
34 QIOChannel *ioc;
35 } RemoteCommDev;
37 #define TYPE_REMOTE_MACHINE "x-remote-machine"
38 OBJECT_DECLARE_SIMPLE_TYPE(RemoteMachineState, REMOTE_MACHINE)
40 void coroutine_fn mpqemu_remote_msg_loop_co(void *data);
42 #endif