]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/xen/xen-bus.h
Use DECLARE_*CHECKER* macros
[mirror_qemu.git] / include / hw / xen / xen-bus.h
CommitLineData
108f7bba
PD
1/*
2 * Copyright (c) 2018 Citrix Systems Inc.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
8#ifndef HW_XEN_BUS_H
9#define HW_XEN_BUS_H
10
094a2239 11#include "hw/xen/xen_common.h"
108f7bba 12#include "hw/sysbus.h"
82a29e30 13#include "qemu/notify.h"
db1015e9 14#include "qom/object.h"
82a29e30
PD
15
16typedef void (*XenWatchHandler)(void *opaque);
17
374752a2 18typedef struct XenWatchList XenWatchList;
82a29e30 19typedef struct XenWatch XenWatch;
c0b336ea 20typedef struct XenEventChannel XenEventChannel;
108f7bba 21
db1015e9 22struct XenDevice {
108f7bba 23 DeviceState qdev;
094a2239
PD
24 domid_t frontend_id;
25 char *name;
d198b711
PD
26 struct xs_handle *xsh;
27 XenWatchList *watch_list;
094a2239
PD
28 char *backend_path, *frontend_path;
29 enum xenbus_state backend_state, frontend_state;
30 Notifier exit;
b6af8926
PD
31 XenWatch *backend_state_watch, *frontend_state_watch;
32 bool backend_online;
33 XenWatch *backend_online_watch;
4b34b5b1
PD
34 xengnttab_handle *xgth;
35 bool feature_grant_copy;
3809f758 36 bool inactive;
c0b336ea 37 QLIST_HEAD(, XenEventChannel) event_channels;
3809f758 38 QLIST_ENTRY(XenDevice) list;
db1015e9
EH
39};
40typedef struct XenDevice XenDevice;
108f7bba 41
094a2239 42typedef char *(*XenDeviceGetName)(XenDevice *xendev, Error **errp);
108f7bba 43typedef void (*XenDeviceRealize)(XenDevice *xendev, Error **errp);
82a29e30
PD
44typedef void (*XenDeviceFrontendChanged)(XenDevice *xendev,
45 enum xenbus_state frontend_state,
46 Error **errp);
b69c3c21 47typedef void (*XenDeviceUnrealize)(XenDevice *xendev);
108f7bba 48
db1015e9 49struct XenDeviceClass {
108f7bba
PD
50 /*< private >*/
51 DeviceClass parent_class;
52 /*< public >*/
094a2239
PD
53 const char *backend;
54 const char *device;
55 XenDeviceGetName get_name;
108f7bba 56 XenDeviceRealize realize;
82a29e30 57 XenDeviceFrontendChanged frontend_changed;
108f7bba 58 XenDeviceUnrealize unrealize;
db1015e9
EH
59};
60typedef struct XenDeviceClass XenDeviceClass;
108f7bba
PD
61
62#define TYPE_XEN_DEVICE "xen-device"
8110fa1d
EH
63DECLARE_OBJ_CHECKERS(XenDevice, XenDeviceClass,
64 XEN_DEVICE, TYPE_XEN_DEVICE)
108f7bba 65
db1015e9 66struct XenBus {
108f7bba 67 BusState qbus;
094a2239
PD
68 domid_t backend_id;
69 struct xs_handle *xsh;
374752a2 70 XenWatchList *watch_list;
a783f8ad 71 XenWatch *backend_watch;
3809f758 72 QLIST_HEAD(, XenDevice) inactive_devices;
db1015e9
EH
73};
74typedef struct XenBus XenBus;
108f7bba 75
db1015e9 76struct XenBusClass {
108f7bba
PD
77 /*< private >*/
78 BusClass parent_class;
db1015e9
EH
79};
80typedef struct XenBusClass XenBusClass;
108f7bba
PD
81
82#define TYPE_XEN_BUS "xen-bus"
8110fa1d
EH
83DECLARE_OBJ_CHECKERS(XenBus, XenBusClass,
84 XEN_BUS, TYPE_XEN_BUS)
108f7bba
PD
85
86void xen_bus_init(void);
87
82a29e30
PD
88void xen_device_backend_set_state(XenDevice *xendev,
89 enum xenbus_state state);
90enum xenbus_state xen_device_backend_get_state(XenDevice *xendev);
91
b6af8926
PD
92void xen_device_backend_printf(XenDevice *xendev, const char *key,
93 const char *fmt, ...)
94 GCC_FMT_ATTR(3, 4);
95void xen_device_frontend_printf(XenDevice *xendev, const char *key,
96 const char *fmt, ...)
97 GCC_FMT_ATTR(3, 4);
98
99int xen_device_frontend_scanf(XenDevice *xendev, const char *key,
100 const char *fmt, ...);
101
4b34b5b1
PD
102void xen_device_set_max_grant_refs(XenDevice *xendev, unsigned int nr_refs,
103 Error **errp);
104void *xen_device_map_grant_refs(XenDevice *xendev, uint32_t *refs,
105 unsigned int nr_refs, int prot,
106 Error **errp);
107void xen_device_unmap_grant_refs(XenDevice *xendev, void *map,
108 unsigned int nr_refs, Error **errp);
109
110typedef struct XenDeviceGrantCopySegment {
111 union {
112 void *virt;
113 struct {
114 uint32_t ref;
115 off_t offset;
116 } foreign;
117 } source, dest;
118 size_t len;
119} XenDeviceGrantCopySegment;
120
121void xen_device_copy_grant_refs(XenDevice *xendev, bool to_domain,
122 XenDeviceGrantCopySegment segs[],
123 unsigned int nr_segs, Error **errp);
124
345f42b4 125typedef bool (*XenEventHandler)(void *opaque);
a3d669c8
PD
126
127XenEventChannel *xen_device_bind_event_channel(XenDevice *xendev,
128 unsigned int port,
129 XenEventHandler handler,
130 void *opaque, Error **errp);
32d0b7be
PD
131void xen_device_set_event_channel_context(XenDevice *xendev,
132 XenEventChannel *channel,
133 AioContext *ctx,
134 Error **errp);
a3d669c8
PD
135void xen_device_notify_event_channel(XenDevice *xendev,
136 XenEventChannel *channel,
137 Error **errp);
138void xen_device_unbind_event_channel(XenDevice *xendev,
139 XenEventChannel *channel,
140 Error **errp);
141
108f7bba 142#endif /* HW_XEN_BUS_H */