i8257: Make device "i8257" unavailable with -device
[qemu/ar7.git] / hw / virtio / virtio-bus.c
blob14927935aef7c09035b0825b788d5ec32e6a9490
1 /*
2 * VirtioBus
4 * Copyright (C) 2012 : GreenSocs Ltd
5 * http://www.greensocs.com/ , email: info@greensocs.com
7 * Developed by :
8 * Frederic Konrad <fred.konrad@greensocs.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, see <http://www.gnu.org/licenses/>.
25 #include "qemu/osdep.h"
26 #include "hw/hw.h"
27 #include "qemu/error-report.h"
28 #include "hw/qdev.h"
29 #include "hw/virtio/virtio-bus.h"
30 #include "hw/virtio/virtio.h"
32 /* #define DEBUG_VIRTIO_BUS */
34 #ifdef DEBUG_VIRTIO_BUS
35 #define DPRINTF(fmt, ...) \
36 do { printf("virtio_bus: " fmt , ## __VA_ARGS__); } while (0)
37 #else
38 #define DPRINTF(fmt, ...) do { } while (0)
39 #endif
41 /* A VirtIODevice is being plugged */
42 void virtio_bus_device_plugged(VirtIODevice *vdev, Error **errp)
44 DeviceState *qdev = DEVICE(vdev);
45 BusState *qbus = BUS(qdev_get_parent_bus(qdev));
46 VirtioBusState *bus = VIRTIO_BUS(qbus);
47 VirtioBusClass *klass = VIRTIO_BUS_GET_CLASS(bus);
48 VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(vdev);
50 DPRINTF("%s: plug device.\n", qbus->name);
52 if (klass->device_plugged != NULL) {
53 klass->device_plugged(qbus->parent, errp);
56 /* Get the features of the plugged device. */
57 assert(vdc->get_features != NULL);
58 vdev->host_features = vdc->get_features(vdev, vdev->host_features,
59 errp);
60 if (klass->post_plugged != NULL) {
61 klass->post_plugged(qbus->parent, errp);
65 /* Reset the virtio_bus */
66 void virtio_bus_reset(VirtioBusState *bus)
68 VirtIODevice *vdev = virtio_bus_get_device(bus);
70 DPRINTF("%s: reset device.\n", BUS(bus)->name);
71 if (vdev != NULL) {
72 virtio_reset(vdev);
76 /* A VirtIODevice is being unplugged */
77 void virtio_bus_device_unplugged(VirtIODevice *vdev)
79 DeviceState *qdev = DEVICE(vdev);
80 BusState *qbus = BUS(qdev_get_parent_bus(qdev));
81 VirtioBusClass *klass = VIRTIO_BUS_GET_CLASS(qbus);
83 DPRINTF("%s: remove device.\n", qbus->name);
85 if (vdev != NULL) {
86 if (klass->device_unplugged != NULL) {
87 klass->device_unplugged(qbus->parent);
92 /* Get the device id of the plugged device. */
93 uint16_t virtio_bus_get_vdev_id(VirtioBusState *bus)
95 VirtIODevice *vdev = virtio_bus_get_device(bus);
96 assert(vdev != NULL);
97 return vdev->device_id;
100 /* Get the config_len field of the plugged device. */
101 size_t virtio_bus_get_vdev_config_len(VirtioBusState *bus)
103 VirtIODevice *vdev = virtio_bus_get_device(bus);
104 assert(vdev != NULL);
105 return vdev->config_len;
108 /* Get bad features of the plugged device. */
109 uint32_t virtio_bus_get_vdev_bad_features(VirtioBusState *bus)
111 VirtIODevice *vdev = virtio_bus_get_device(bus);
112 VirtioDeviceClass *k;
114 assert(vdev != NULL);
115 k = VIRTIO_DEVICE_GET_CLASS(vdev);
116 if (k->bad_features != NULL) {
117 return k->bad_features(vdev);
118 } else {
119 return 0;
123 /* Get config of the plugged device. */
124 void virtio_bus_get_vdev_config(VirtioBusState *bus, uint8_t *config)
126 VirtIODevice *vdev = virtio_bus_get_device(bus);
127 VirtioDeviceClass *k;
129 assert(vdev != NULL);
130 k = VIRTIO_DEVICE_GET_CLASS(vdev);
131 if (k->get_config != NULL) {
132 k->get_config(vdev, config);
136 /* Set config of the plugged device. */
137 void virtio_bus_set_vdev_config(VirtioBusState *bus, uint8_t *config)
139 VirtIODevice *vdev = virtio_bus_get_device(bus);
140 VirtioDeviceClass *k;
142 assert(vdev != NULL);
143 k = VIRTIO_DEVICE_GET_CLASS(vdev);
144 if (k->set_config != NULL) {
145 k->set_config(vdev, config);
150 * This function handles both assigning the ioeventfd handler and
151 * registering it with the kernel.
152 * assign: register/deregister ioeventfd with the kernel
153 * set_handler: use the generic ioeventfd handler
155 static int set_host_notifier_internal(DeviceState *proxy, VirtioBusState *bus,
156 int n, bool assign, bool set_handler)
158 VirtIODevice *vdev = virtio_bus_get_device(bus);
159 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(bus);
160 VirtQueue *vq = virtio_get_queue(vdev, n);
161 EventNotifier *notifier = virtio_queue_get_host_notifier(vq);
162 int r = 0;
164 if (assign) {
165 r = event_notifier_init(notifier, 1);
166 if (r < 0) {
167 error_report("%s: unable to init event notifier: %s (%d)",
168 __func__, strerror(-r), r);
169 return r;
171 virtio_queue_set_host_notifier_fd_handler(vq, true, set_handler);
172 r = k->ioeventfd_assign(proxy, notifier, n, assign);
173 if (r < 0) {
174 error_report("%s: unable to assign ioeventfd: %d", __func__, r);
175 virtio_queue_set_host_notifier_fd_handler(vq, false, false);
176 event_notifier_cleanup(notifier);
177 return r;
179 } else {
180 k->ioeventfd_assign(proxy, notifier, n, assign);
181 virtio_queue_set_host_notifier_fd_handler(vq, false, false);
182 event_notifier_cleanup(notifier);
184 return r;
187 void virtio_bus_start_ioeventfd(VirtioBusState *bus)
189 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(bus);
190 DeviceState *proxy = DEVICE(BUS(bus)->parent);
191 VirtIODevice *vdev;
192 int n, r;
194 if (!k->ioeventfd_started || k->ioeventfd_started(proxy)) {
195 return;
197 if (k->ioeventfd_disabled(proxy)) {
198 return;
200 vdev = virtio_bus_get_device(bus);
201 for (n = 0; n < VIRTIO_QUEUE_MAX; n++) {
202 if (!virtio_queue_get_num(vdev, n)) {
203 continue;
205 r = set_host_notifier_internal(proxy, bus, n, true, true);
206 if (r < 0) {
207 goto assign_error;
210 k->ioeventfd_set_started(proxy, true, false);
211 return;
213 assign_error:
214 while (--n >= 0) {
215 if (!virtio_queue_get_num(vdev, n)) {
216 continue;
219 r = set_host_notifier_internal(proxy, bus, n, false, false);
220 assert(r >= 0);
222 k->ioeventfd_set_started(proxy, false, true);
223 error_report("%s: failed. Fallback to userspace (slower).", __func__);
226 void virtio_bus_stop_ioeventfd(VirtioBusState *bus)
228 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(bus);
229 DeviceState *proxy = DEVICE(BUS(bus)->parent);
230 VirtIODevice *vdev;
231 int n, r;
233 if (!k->ioeventfd_started || !k->ioeventfd_started(proxy)) {
234 return;
236 vdev = virtio_bus_get_device(bus);
237 for (n = 0; n < VIRTIO_QUEUE_MAX; n++) {
238 if (!virtio_queue_get_num(vdev, n)) {
239 continue;
241 r = set_host_notifier_internal(proxy, bus, n, false, false);
242 assert(r >= 0);
244 k->ioeventfd_set_started(proxy, false, false);
248 * This function switches from/to the generic ioeventfd handler.
249 * assign==false means 'use generic ioeventfd handler'.
251 int virtio_bus_set_host_notifier(VirtioBusState *bus, int n, bool assign)
253 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(bus);
254 DeviceState *proxy = DEVICE(BUS(bus)->parent);
256 if (!k->ioeventfd_started) {
257 return -ENOSYS;
259 k->ioeventfd_set_disabled(proxy, assign);
260 if (assign) {
262 * Stop using the generic ioeventfd, we are doing eventfd handling
263 * ourselves below
265 * FIXME: We should just switch the handler and not deassign the
266 * ioeventfd.
267 * Otherwise, there's a window where we don't have an
268 * ioeventfd and we may end up with a notification where
269 * we don't expect one.
271 virtio_bus_stop_ioeventfd(bus);
273 return set_host_notifier_internal(proxy, bus, n, assign, false);
276 static char *virtio_bus_get_dev_path(DeviceState *dev)
278 BusState *bus = qdev_get_parent_bus(dev);
279 DeviceState *proxy = DEVICE(bus->parent);
280 return qdev_get_dev_path(proxy);
283 static char *virtio_bus_get_fw_dev_path(DeviceState *dev)
285 return NULL;
288 static void virtio_bus_class_init(ObjectClass *klass, void *data)
290 BusClass *bus_class = BUS_CLASS(klass);
291 bus_class->get_dev_path = virtio_bus_get_dev_path;
292 bus_class->get_fw_dev_path = virtio_bus_get_fw_dev_path;
295 static const TypeInfo virtio_bus_info = {
296 .name = TYPE_VIRTIO_BUS,
297 .parent = TYPE_BUS,
298 .instance_size = sizeof(VirtioBusState),
299 .abstract = true,
300 .class_size = sizeof(VirtioBusClass),
301 .class_init = virtio_bus_class_init
304 static void virtio_register_types(void)
306 type_register_static(&virtio_bus_info);
309 type_init(virtio_register_types)