xref: /openbmc/qemu/hw/virtio/virtio-qmp.h (revision fb418b51)
1 /*
2  * Virtio QMP helpers
3  *
4  * Copyright IBM, Corp. 2007
5  *
6  * Authors:
7  *  Anthony Liguori   <aliguori@us.ibm.com>
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 #ifndef HW_VIRTIO_QMP_H
12 #define HW_VIRTIO_QMP_H
13 
14 #include "qapi/qapi-types-virtio.h"
15 
16 VirtioDeviceStatus *qmp_decode_status(uint8_t bitmap);
17 VhostDeviceProtocols *qmp_decode_protocols(uint64_t bitmap);
18 VirtioDeviceFeatures *qmp_decode_features(uint16_t device_id, uint64_t bitmap);
19 
20 #endif
21