spapr: Abort if XICS interrupt controller cannot be initialized
[qemu/ar7.git] / hw / block / dataplane / virtio-blk.c
blob119906a5fe78dcd165f5775c42a00d8dc94f4bc7
1 /*
2 * Dedicated thread for virtio-blk I/O processing
4 * Copyright 2012 IBM, Corp.
5 * Copyright 2012 Red Hat, Inc. and/or its affiliates
7 * Authors:
8 * Stefan Hajnoczi <stefanha@redhat.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
15 #include "qemu/osdep.h"
16 #include "qapi/error.h"
17 #include "trace.h"
18 #include "qemu/iov.h"
19 #include "qemu/main-loop.h"
20 #include "qemu/thread.h"
21 #include "qemu/error-report.h"
22 #include "hw/virtio/virtio-access.h"
23 #include "hw/virtio/virtio-blk.h"
24 #include "virtio-blk.h"
25 #include "block/aio.h"
26 #include "hw/virtio/virtio-bus.h"
27 #include "qom/object_interfaces.h"
29 struct VirtIOBlockDataPlane {
30 bool starting;
31 bool stopping;
33 VirtIOBlkConf *conf;
34 VirtIODevice *vdev;
35 QEMUBH *bh; /* bh for guest notification */
36 unsigned long *batch_notify_vqs;
37 bool batch_notifications;
39 /* Note that these EventNotifiers are assigned by value. This is
40 * fine as long as you do not call event_notifier_cleanup on them
41 * (because you don't own the file descriptor or handle; you just
42 * use it).
44 IOThread *iothread;
45 AioContext *ctx;
48 /* Raise an interrupt to signal guest, if necessary */
49 void virtio_blk_data_plane_notify(VirtIOBlockDataPlane *s, VirtQueue *vq)
51 if (s->batch_notifications) {
52 set_bit(virtio_get_queue_index(vq), s->batch_notify_vqs);
53 qemu_bh_schedule(s->bh);
54 } else {
55 virtio_notify_irqfd(s->vdev, vq);
59 static void notify_guest_bh(void *opaque)
61 VirtIOBlockDataPlane *s = opaque;
62 unsigned nvqs = s->conf->num_queues;
63 unsigned long bitmap[BITS_TO_LONGS(nvqs)];
64 unsigned j;
66 memcpy(bitmap, s->batch_notify_vqs, sizeof(bitmap));
67 memset(s->batch_notify_vqs, 0, sizeof(bitmap));
69 for (j = 0; j < nvqs; j += BITS_PER_LONG) {
70 unsigned long bits = bitmap[j];
72 while (bits != 0) {
73 unsigned i = j + ctzl(bits);
74 VirtQueue *vq = virtio_get_queue(s->vdev, i);
76 virtio_notify_irqfd(s->vdev, vq);
78 bits &= bits - 1; /* clear right-most bit */
83 /* Context: QEMU global mutex held */
84 bool virtio_blk_data_plane_create(VirtIODevice *vdev, VirtIOBlkConf *conf,
85 VirtIOBlockDataPlane **dataplane,
86 Error **errp)
88 VirtIOBlockDataPlane *s;
89 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(vdev)));
90 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
92 *dataplane = NULL;
94 if (conf->iothread) {
95 if (!k->set_guest_notifiers || !k->ioeventfd_assign) {
96 error_setg(errp,
97 "device is incompatible with iothread "
98 "(transport does not support notifiers)");
99 return false;
101 if (!virtio_device_ioeventfd_enabled(vdev)) {
102 error_setg(errp, "ioeventfd is required for iothread");
103 return false;
106 /* If dataplane is (re-)enabled while the guest is running there could
107 * be block jobs that can conflict.
109 if (blk_op_is_blocked(conf->conf.blk, BLOCK_OP_TYPE_DATAPLANE, errp)) {
110 error_prepend(errp, "cannot start virtio-blk dataplane: ");
111 return false;
114 /* Don't try if transport does not support notifiers. */
115 if (!virtio_device_ioeventfd_enabled(vdev)) {
116 return false;
119 s = g_new0(VirtIOBlockDataPlane, 1);
120 s->vdev = vdev;
121 s->conf = conf;
123 if (conf->iothread) {
124 s->iothread = conf->iothread;
125 object_ref(OBJECT(s->iothread));
126 s->ctx = iothread_get_aio_context(s->iothread);
127 } else {
128 s->ctx = qemu_get_aio_context();
130 s->bh = aio_bh_new(s->ctx, notify_guest_bh, s);
131 s->batch_notify_vqs = bitmap_new(conf->num_queues);
133 *dataplane = s;
135 return true;
138 /* Context: QEMU global mutex held */
139 void virtio_blk_data_plane_destroy(VirtIOBlockDataPlane *s)
141 VirtIOBlock *vblk;
143 if (!s) {
144 return;
147 vblk = VIRTIO_BLK(s->vdev);
148 assert(!vblk->dataplane_started);
149 g_free(s->batch_notify_vqs);
150 qemu_bh_delete(s->bh);
151 if (s->iothread) {
152 object_unref(OBJECT(s->iothread));
154 g_free(s);
157 static bool virtio_blk_data_plane_handle_output(VirtIODevice *vdev,
158 VirtQueue *vq)
160 VirtIOBlock *s = (VirtIOBlock *)vdev;
162 assert(s->dataplane);
163 assert(s->dataplane_started);
165 return virtio_blk_handle_vq(s, vq);
168 /* Context: QEMU global mutex held */
169 int virtio_blk_data_plane_start(VirtIODevice *vdev)
171 VirtIOBlock *vblk = VIRTIO_BLK(vdev);
172 VirtIOBlockDataPlane *s = vblk->dataplane;
173 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(vblk)));
174 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
175 unsigned i;
176 unsigned nvqs = s->conf->num_queues;
177 Error *local_err = NULL;
178 int r;
180 if (vblk->dataplane_started || s->starting) {
181 return 0;
184 s->starting = true;
186 if (!virtio_vdev_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX)) {
187 s->batch_notifications = true;
188 } else {
189 s->batch_notifications = false;
192 /* Set up guest notifier (irq) */
193 r = k->set_guest_notifiers(qbus->parent, nvqs, true);
194 if (r != 0) {
195 error_report("virtio-blk failed to set guest notifier (%d), "
196 "ensure -accel kvm is set.", r);
197 goto fail_guest_notifiers;
200 /* Set up virtqueue notify */
201 for (i = 0; i < nvqs; i++) {
202 r = virtio_bus_set_host_notifier(VIRTIO_BUS(qbus), i, true);
203 if (r != 0) {
204 fprintf(stderr, "virtio-blk failed to set host notifier (%d)\n", r);
205 while (i--) {
206 virtio_bus_set_host_notifier(VIRTIO_BUS(qbus), i, false);
207 virtio_bus_cleanup_host_notifier(VIRTIO_BUS(qbus), i);
209 goto fail_guest_notifiers;
213 s->starting = false;
214 vblk->dataplane_started = true;
215 trace_virtio_blk_data_plane_start(s);
217 r = blk_set_aio_context(s->conf->conf.blk, s->ctx, &local_err);
218 if (r < 0) {
219 error_report_err(local_err);
220 goto fail_guest_notifiers;
223 /* Kick right away to begin processing requests already in vring */
224 for (i = 0; i < nvqs; i++) {
225 VirtQueue *vq = virtio_get_queue(s->vdev, i);
227 event_notifier_set(virtio_queue_get_host_notifier(vq));
230 /* Get this show started by hooking up our callbacks */
231 aio_context_acquire(s->ctx);
232 for (i = 0; i < nvqs; i++) {
233 VirtQueue *vq = virtio_get_queue(s->vdev, i);
235 virtio_queue_aio_set_host_notifier_handler(vq, s->ctx,
236 virtio_blk_data_plane_handle_output);
238 aio_context_release(s->ctx);
239 return 0;
241 fail_guest_notifiers:
242 vblk->dataplane_disabled = true;
243 s->starting = false;
244 vblk->dataplane_started = true;
245 return -ENOSYS;
248 /* Stop notifications for new requests from guest.
250 * Context: BH in IOThread
252 static void virtio_blk_data_plane_stop_bh(void *opaque)
254 VirtIOBlockDataPlane *s = opaque;
255 unsigned i;
257 for (i = 0; i < s->conf->num_queues; i++) {
258 VirtQueue *vq = virtio_get_queue(s->vdev, i);
260 virtio_queue_aio_set_host_notifier_handler(vq, s->ctx, NULL);
264 /* Context: QEMU global mutex held */
265 void virtio_blk_data_plane_stop(VirtIODevice *vdev)
267 VirtIOBlock *vblk = VIRTIO_BLK(vdev);
268 VirtIOBlockDataPlane *s = vblk->dataplane;
269 BusState *qbus = qdev_get_parent_bus(DEVICE(vblk));
270 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
271 unsigned i;
272 unsigned nvqs = s->conf->num_queues;
274 if (!vblk->dataplane_started || s->stopping) {
275 return;
278 /* Better luck next time. */
279 if (vblk->dataplane_disabled) {
280 vblk->dataplane_disabled = false;
281 vblk->dataplane_started = false;
282 return;
284 s->stopping = true;
285 trace_virtio_blk_data_plane_stop(s);
287 aio_context_acquire(s->ctx);
288 aio_wait_bh_oneshot(s->ctx, virtio_blk_data_plane_stop_bh, s);
290 /* Drain and try to switch bs back to the QEMU main loop. If other users
291 * keep the BlockBackend in the iothread, that's ok */
292 blk_set_aio_context(s->conf->conf.blk, qemu_get_aio_context(), NULL);
294 aio_context_release(s->ctx);
296 for (i = 0; i < nvqs; i++) {
297 virtio_bus_set_host_notifier(VIRTIO_BUS(qbus), i, false);
298 virtio_bus_cleanup_host_notifier(VIRTIO_BUS(qbus), i);
301 qemu_bh_cancel(s->bh);
302 notify_guest_bh(s); /* final chance to notify guest */
304 /* Clean up guest notifier (irq) */
305 k->set_guest_notifiers(qbus->parent, nvqs, false);
307 vblk->dataplane_started = false;
308 s->stopping = false;