]>
Commit | Line | Data |
---|---|---|
53c25cea PB |
1 | /* |
2 | * Virtio PCI Bindings | |
3 | * | |
4 | * Copyright IBM, Corp. 2007 | |
5 | * Copyright (c) 2009 CodeSourcery | |
6 | * | |
7 | * Authors: | |
8 | * Anthony Liguori <[email protected]> | |
9 | * Paul Brook <[email protected]> | |
10 | * | |
11 | * This work is licensed under the terms of the GNU GPL, version 2. See | |
12 | * the COPYING file in the top-level directory. | |
13 | * | |
14 | */ | |
15 | ||
16 | #include <inttypes.h> | |
17 | ||
18 | #include "virtio.h" | |
8172539d MT |
19 | #include "virtio-blk.h" |
20 | #include "virtio-net.h" | |
6b331efb | 21 | #include "virtio-serial.h" |
53c25cea | 22 | #include "pci.h" |
2f792016 | 23 | #include "qemu-error.h" |
aba800a3 | 24 | #include "msix.h" |
a1e0fea5 | 25 | #include "net.h" |
97b15621 | 26 | #include "loader.h" |
ade80dc8 | 27 | #include "kvm.h" |
2446333c | 28 | #include "blockdev.h" |
53c25cea PB |
29 | |
30 | /* from Linux's linux/virtio_pci.h */ | |
31 | ||
32 | /* A 32-bit r/o bitmask of the features supported by the host */ | |
33 | #define VIRTIO_PCI_HOST_FEATURES 0 | |
34 | ||
35 | /* A 32-bit r/w bitmask of features activated by the guest */ | |
36 | #define VIRTIO_PCI_GUEST_FEATURES 4 | |
37 | ||
38 | /* A 32-bit r/w PFN for the currently selected queue */ | |
39 | #define VIRTIO_PCI_QUEUE_PFN 8 | |
40 | ||
41 | /* A 16-bit r/o queue size for the currently selected queue */ | |
42 | #define VIRTIO_PCI_QUEUE_NUM 12 | |
43 | ||
44 | /* A 16-bit r/w queue selector */ | |
45 | #define VIRTIO_PCI_QUEUE_SEL 14 | |
46 | ||
47 | /* A 16-bit r/w queue notifier */ | |
48 | #define VIRTIO_PCI_QUEUE_NOTIFY 16 | |
49 | ||
50 | /* An 8-bit device status register. */ | |
51 | #define VIRTIO_PCI_STATUS 18 | |
52 | ||
53 | /* An 8-bit r/o interrupt status register. Reading the value will return the | |
54 | * current contents of the ISR and will also clear it. This is effectively | |
55 | * a read-and-acknowledge. */ | |
56 | #define VIRTIO_PCI_ISR 19 | |
57 | ||
aba800a3 MT |
58 | /* MSI-X registers: only enabled if MSI-X is enabled. */ |
59 | /* A 16-bit vector for configuration changes. */ | |
60 | #define VIRTIO_MSI_CONFIG_VECTOR 20 | |
61 | /* A 16-bit vector for selected queue notifications. */ | |
62 | #define VIRTIO_MSI_QUEUE_VECTOR 22 | |
63 | ||
64 | /* Config space size */ | |
65 | #define VIRTIO_PCI_CONFIG_NOMSI 20 | |
66 | #define VIRTIO_PCI_CONFIG_MSI 24 | |
67 | #define VIRTIO_PCI_REGION_SIZE(dev) (msix_present(dev) ? \ | |
68 | VIRTIO_PCI_CONFIG_MSI : \ | |
69 | VIRTIO_PCI_CONFIG_NOMSI) | |
70 | ||
71 | /* The remaining space is defined by each driver as the per-driver | |
72 | * configuration space */ | |
73 | #define VIRTIO_PCI_CONFIG(dev) (msix_enabled(dev) ? \ | |
74 | VIRTIO_PCI_CONFIG_MSI : \ | |
75 | VIRTIO_PCI_CONFIG_NOMSI) | |
53c25cea PB |
76 | |
77 | /* Virtio ABI version, if we increment this, we break the guest driver. */ | |
78 | #define VIRTIO_PCI_ABI_VERSION 0 | |
79 | ||
80 | /* How many bits to shift physical queue address written to QUEUE_PFN. | |
81 | * 12 is historical, and due to x86 page size. */ | |
82 | #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12 | |
83 | ||
3dbca8e6 SH |
84 | /* Flags track per-device state like workarounds for quirks in older guests. */ |
85 | #define VIRTIO_PCI_FLAG_BUS_MASTER_BUG (1 << 0) | |
c81131db | 86 | |
25db9ebe SH |
87 | /* Performance improves when virtqueue kick processing is decoupled from the |
88 | * vcpu thread using ioeventfd for some devices. */ | |
89 | #define VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT 1 | |
90 | #define VIRTIO_PCI_FLAG_USE_IOEVENTFD (1 << VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT) | |
91 | ||
53c25cea PB |
92 | /* QEMU doesn't strictly need write barriers since everything runs in |
93 | * lock-step. We'll leave the calls to wmb() in though to make it obvious for | |
94 | * KVM or if kqemu gets SMP support. | |
95 | */ | |
96 | #define wmb() do { } while (0) | |
97 | ||
98 | /* PCI bindings. */ | |
99 | ||
100 | typedef struct { | |
101 | PCIDevice pci_dev; | |
102 | VirtIODevice *vdev; | |
3dbca8e6 | 103 | uint32_t flags; |
53c25cea | 104 | uint32_t addr; |
ab73ff29 | 105 | uint32_t class_code; |
a1e0fea5 | 106 | uint32_t nvectors; |
428c149b | 107 | BlockConf block; |
97b15621 | 108 | NICConf nic; |
8172539d | 109 | uint32_t host_features; |
9f107513 AL |
110 | #ifdef CONFIG_LINUX |
111 | V9fsConf fsconf; | |
112 | #endif | |
6b331efb | 113 | virtio_serial_conf serial; |
f0c07c7c | 114 | virtio_net_conf net; |
25db9ebe SH |
115 | bool ioeventfd_disabled; |
116 | bool ioeventfd_started; | |
53c25cea PB |
117 | } VirtIOPCIProxy; |
118 | ||
119 | /* virtio device */ | |
120 | ||
7055e687 | 121 | static void virtio_pci_notify(void *opaque, uint16_t vector) |
53c25cea PB |
122 | { |
123 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
124 | if (msix_enabled(&proxy->pci_dev)) |
125 | msix_notify(&proxy->pci_dev, vector); | |
126 | else | |
127 | qemu_set_irq(proxy->pci_dev.irq[0], proxy->vdev->isr & 1); | |
53c25cea PB |
128 | } |
129 | ||
ff24bd58 MT |
130 | static void virtio_pci_save_config(void * opaque, QEMUFile *f) |
131 | { | |
132 | VirtIOPCIProxy *proxy = opaque; | |
133 | pci_device_save(&proxy->pci_dev, f); | |
134 | msix_save(&proxy->pci_dev, f); | |
135 | if (msix_present(&proxy->pci_dev)) | |
136 | qemu_put_be16(f, proxy->vdev->config_vector); | |
137 | } | |
138 | ||
139 | static void virtio_pci_save_queue(void * opaque, int n, QEMUFile *f) | |
140 | { | |
141 | VirtIOPCIProxy *proxy = opaque; | |
142 | if (msix_present(&proxy->pci_dev)) | |
143 | qemu_put_be16(f, virtio_queue_vector(proxy->vdev, n)); | |
144 | } | |
145 | ||
146 | static int virtio_pci_load_config(void * opaque, QEMUFile *f) | |
147 | { | |
148 | VirtIOPCIProxy *proxy = opaque; | |
149 | int ret; | |
150 | ret = pci_device_load(&proxy->pci_dev, f); | |
e6da7680 | 151 | if (ret) { |
ff24bd58 | 152 | return ret; |
e6da7680 | 153 | } |
ff24bd58 | 154 | msix_load(&proxy->pci_dev, f); |
e6da7680 | 155 | if (msix_present(&proxy->pci_dev)) { |
ff24bd58 | 156 | qemu_get_be16s(f, &proxy->vdev->config_vector); |
e6da7680 MT |
157 | } else { |
158 | proxy->vdev->config_vector = VIRTIO_NO_VECTOR; | |
159 | } | |
160 | if (proxy->vdev->config_vector != VIRTIO_NO_VECTOR) { | |
161 | return msix_vector_use(&proxy->pci_dev, proxy->vdev->config_vector); | |
162 | } | |
ff24bd58 MT |
163 | return 0; |
164 | } | |
165 | ||
166 | static int virtio_pci_load_queue(void * opaque, int n, QEMUFile *f) | |
167 | { | |
168 | VirtIOPCIProxy *proxy = opaque; | |
169 | uint16_t vector; | |
e6da7680 MT |
170 | if (msix_present(&proxy->pci_dev)) { |
171 | qemu_get_be16s(f, &vector); | |
172 | } else { | |
173 | vector = VIRTIO_NO_VECTOR; | |
174 | } | |
ff24bd58 | 175 | virtio_queue_set_vector(proxy->vdev, n, vector); |
e6da7680 MT |
176 | if (vector != VIRTIO_NO_VECTOR) { |
177 | return msix_vector_use(&proxy->pci_dev, vector); | |
178 | } | |
ff24bd58 MT |
179 | return 0; |
180 | } | |
181 | ||
25db9ebe SH |
182 | static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy *proxy, |
183 | int n, bool assign) | |
184 | { | |
185 | VirtQueue *vq = virtio_get_queue(proxy->vdev, n); | |
186 | EventNotifier *notifier = virtio_queue_get_host_notifier(vq); | |
187 | int r; | |
188 | if (assign) { | |
189 | r = event_notifier_init(notifier, 1); | |
190 | if (r < 0) { | |
b36e3914 MT |
191 | error_report("%s: unable to init event notifier: %d", |
192 | __func__, r); | |
25db9ebe SH |
193 | return r; |
194 | } | |
195 | r = kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier), | |
196 | proxy->addr + VIRTIO_PCI_QUEUE_NOTIFY, | |
197 | n, assign); | |
198 | if (r < 0) { | |
b36e3914 MT |
199 | error_report("%s: unable to map ioeventfd: %d", |
200 | __func__, r); | |
25db9ebe SH |
201 | event_notifier_cleanup(notifier); |
202 | } | |
203 | } else { | |
204 | r = kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier), | |
205 | proxy->addr + VIRTIO_PCI_QUEUE_NOTIFY, | |
206 | n, assign); | |
207 | if (r < 0) { | |
b36e3914 MT |
208 | error_report("%s: unable to unmap ioeventfd: %d", |
209 | __func__, r); | |
25db9ebe SH |
210 | return r; |
211 | } | |
212 | ||
213 | /* Handle the race condition where the guest kicked and we deassigned | |
214 | * before we got around to handling the kick. | |
215 | */ | |
216 | if (event_notifier_test_and_clear(notifier)) { | |
217 | virtio_queue_notify_vq(vq); | |
218 | } | |
219 | ||
220 | event_notifier_cleanup(notifier); | |
221 | } | |
222 | return r; | |
223 | } | |
224 | ||
225 | static void virtio_pci_host_notifier_read(void *opaque) | |
226 | { | |
227 | VirtQueue *vq = opaque; | |
228 | EventNotifier *n = virtio_queue_get_host_notifier(vq); | |
229 | if (event_notifier_test_and_clear(n)) { | |
230 | virtio_queue_notify_vq(vq); | |
231 | } | |
232 | } | |
233 | ||
234 | static void virtio_pci_set_host_notifier_fd_handler(VirtIOPCIProxy *proxy, | |
235 | int n, bool assign) | |
236 | { | |
237 | VirtQueue *vq = virtio_get_queue(proxy->vdev, n); | |
238 | EventNotifier *notifier = virtio_queue_get_host_notifier(vq); | |
239 | if (assign) { | |
240 | qemu_set_fd_handler(event_notifier_get_fd(notifier), | |
241 | virtio_pci_host_notifier_read, NULL, vq); | |
242 | } else { | |
243 | qemu_set_fd_handler(event_notifier_get_fd(notifier), | |
244 | NULL, NULL, NULL); | |
245 | } | |
246 | } | |
247 | ||
b36e3914 | 248 | static void virtio_pci_start_ioeventfd(VirtIOPCIProxy *proxy) |
25db9ebe SH |
249 | { |
250 | int n, r; | |
251 | ||
252 | if (!(proxy->flags & VIRTIO_PCI_FLAG_USE_IOEVENTFD) || | |
253 | proxy->ioeventfd_disabled || | |
254 | proxy->ioeventfd_started) { | |
b36e3914 | 255 | return; |
25db9ebe SH |
256 | } |
257 | ||
258 | for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) { | |
259 | if (!virtio_queue_get_num(proxy->vdev, n)) { | |
260 | continue; | |
261 | } | |
262 | ||
263 | r = virtio_pci_set_host_notifier_internal(proxy, n, true); | |
264 | if (r < 0) { | |
265 | goto assign_error; | |
266 | } | |
267 | ||
268 | virtio_pci_set_host_notifier_fd_handler(proxy, n, true); | |
269 | } | |
270 | proxy->ioeventfd_started = true; | |
b36e3914 | 271 | return; |
25db9ebe SH |
272 | |
273 | assign_error: | |
274 | while (--n >= 0) { | |
275 | if (!virtio_queue_get_num(proxy->vdev, n)) { | |
276 | continue; | |
277 | } | |
278 | ||
279 | virtio_pci_set_host_notifier_fd_handler(proxy, n, false); | |
b36e3914 MT |
280 | r = virtio_pci_set_host_notifier_internal(proxy, n, false); |
281 | assert(r >= 0); | |
25db9ebe SH |
282 | } |
283 | proxy->ioeventfd_started = false; | |
b36e3914 | 284 | error_report("%s: failed. Fallback to a userspace (slower).", __func__); |
25db9ebe SH |
285 | } |
286 | ||
b36e3914 | 287 | static void virtio_pci_stop_ioeventfd(VirtIOPCIProxy *proxy) |
25db9ebe | 288 | { |
b36e3914 | 289 | int r; |
25db9ebe SH |
290 | int n; |
291 | ||
292 | if (!proxy->ioeventfd_started) { | |
b36e3914 | 293 | return; |
25db9ebe SH |
294 | } |
295 | ||
296 | for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) { | |
297 | if (!virtio_queue_get_num(proxy->vdev, n)) { | |
298 | continue; | |
299 | } | |
300 | ||
301 | virtio_pci_set_host_notifier_fd_handler(proxy, n, false); | |
b36e3914 MT |
302 | r = virtio_pci_set_host_notifier_internal(proxy, n, false); |
303 | assert(r >= 0); | |
25db9ebe SH |
304 | } |
305 | proxy->ioeventfd_started = false; | |
25db9ebe SH |
306 | } |
307 | ||
e489030d | 308 | static void virtio_pci_reset(DeviceState *d) |
7055e687 | 309 | { |
e489030d | 310 | VirtIOPCIProxy *proxy = container_of(d, VirtIOPCIProxy, pci_dev.qdev); |
25db9ebe | 311 | virtio_pci_stop_ioeventfd(proxy); |
7055e687 | 312 | virtio_reset(proxy->vdev); |
aba800a3 | 313 | msix_reset(&proxy->pci_dev); |
25db9ebe | 314 | proxy->flags &= ~VIRTIO_PCI_FLAG_BUS_MASTER_BUG; |
7055e687 MT |
315 | } |
316 | ||
53c25cea PB |
317 | static void virtio_ioport_write(void *opaque, uint32_t addr, uint32_t val) |
318 | { | |
319 | VirtIOPCIProxy *proxy = opaque; | |
320 | VirtIODevice *vdev = proxy->vdev; | |
c227f099 | 321 | target_phys_addr_t pa; |
53c25cea | 322 | |
53c25cea PB |
323 | switch (addr) { |
324 | case VIRTIO_PCI_GUEST_FEATURES: | |
325 | /* Guest does not negotiate properly? We have to assume nothing. */ | |
326 | if (val & (1 << VIRTIO_F_BAD_FEATURE)) { | |
327 | if (vdev->bad_features) | |
8172539d | 328 | val = proxy->host_features & vdev->bad_features(vdev); |
53c25cea PB |
329 | else |
330 | val = 0; | |
331 | } | |
332 | if (vdev->set_features) | |
333 | vdev->set_features(vdev, val); | |
704a76fc | 334 | vdev->guest_features = val; |
53c25cea PB |
335 | break; |
336 | case VIRTIO_PCI_QUEUE_PFN: | |
c227f099 | 337 | pa = (target_phys_addr_t)val << VIRTIO_PCI_QUEUE_ADDR_SHIFT; |
1b8e9b27 | 338 | if (pa == 0) { |
25db9ebe | 339 | virtio_pci_stop_ioeventfd(proxy); |
1b8e9b27 MT |
340 | virtio_reset(proxy->vdev); |
341 | msix_unuse_all_vectors(&proxy->pci_dev); | |
342 | } | |
7055e687 MT |
343 | else |
344 | virtio_queue_set_addr(vdev, vdev->queue_sel, pa); | |
53c25cea PB |
345 | break; |
346 | case VIRTIO_PCI_QUEUE_SEL: | |
347 | if (val < VIRTIO_PCI_QUEUE_MAX) | |
348 | vdev->queue_sel = val; | |
349 | break; | |
350 | case VIRTIO_PCI_QUEUE_NOTIFY: | |
351 | virtio_queue_notify(vdev, val); | |
352 | break; | |
353 | case VIRTIO_PCI_STATUS: | |
25db9ebe SH |
354 | if (!(val & VIRTIO_CONFIG_S_DRIVER_OK)) { |
355 | virtio_pci_stop_ioeventfd(proxy); | |
356 | } | |
357 | ||
3e607cb5 | 358 | virtio_set_status(vdev, val & 0xFF); |
25db9ebe SH |
359 | |
360 | if (val & VIRTIO_CONFIG_S_DRIVER_OK) { | |
361 | virtio_pci_start_ioeventfd(proxy); | |
362 | } | |
363 | ||
1b8e9b27 MT |
364 | if (vdev->status == 0) { |
365 | virtio_reset(proxy->vdev); | |
366 | msix_unuse_all_vectors(&proxy->pci_dev); | |
367 | } | |
c81131db AG |
368 | |
369 | /* Linux before 2.6.34 sets the device as OK without enabling | |
370 | the PCI device bus master bit. In this case we need to disable | |
371 | some safety checks. */ | |
372 | if ((val & VIRTIO_CONFIG_S_DRIVER_OK) && | |
373 | !(proxy->pci_dev.config[PCI_COMMAND] & PCI_COMMAND_MASTER)) { | |
3dbca8e6 | 374 | proxy->flags |= VIRTIO_PCI_FLAG_BUS_MASTER_BUG; |
c81131db | 375 | } |
53c25cea | 376 | break; |
aba800a3 MT |
377 | case VIRTIO_MSI_CONFIG_VECTOR: |
378 | msix_vector_unuse(&proxy->pci_dev, vdev->config_vector); | |
379 | /* Make it possible for guest to discover an error took place. */ | |
380 | if (msix_vector_use(&proxy->pci_dev, val) < 0) | |
381 | val = VIRTIO_NO_VECTOR; | |
382 | vdev->config_vector = val; | |
383 | break; | |
384 | case VIRTIO_MSI_QUEUE_VECTOR: | |
385 | msix_vector_unuse(&proxy->pci_dev, | |
386 | virtio_queue_vector(vdev, vdev->queue_sel)); | |
387 | /* Make it possible for guest to discover an error took place. */ | |
388 | if (msix_vector_use(&proxy->pci_dev, val) < 0) | |
389 | val = VIRTIO_NO_VECTOR; | |
390 | virtio_queue_set_vector(vdev, vdev->queue_sel, val); | |
391 | break; | |
392 | default: | |
4e02d460 SH |
393 | error_report("%s: unexpected address 0x%x value 0x%x", |
394 | __func__, addr, val); | |
aba800a3 | 395 | break; |
53c25cea PB |
396 | } |
397 | } | |
398 | ||
aba800a3 | 399 | static uint32_t virtio_ioport_read(VirtIOPCIProxy *proxy, uint32_t addr) |
53c25cea | 400 | { |
53c25cea PB |
401 | VirtIODevice *vdev = proxy->vdev; |
402 | uint32_t ret = 0xFFFFFFFF; | |
403 | ||
53c25cea PB |
404 | switch (addr) { |
405 | case VIRTIO_PCI_HOST_FEATURES: | |
8172539d | 406 | ret = proxy->host_features; |
53c25cea PB |
407 | break; |
408 | case VIRTIO_PCI_GUEST_FEATURES: | |
704a76fc | 409 | ret = vdev->guest_features; |
53c25cea PB |
410 | break; |
411 | case VIRTIO_PCI_QUEUE_PFN: | |
412 | ret = virtio_queue_get_addr(vdev, vdev->queue_sel) | |
413 | >> VIRTIO_PCI_QUEUE_ADDR_SHIFT; | |
414 | break; | |
415 | case VIRTIO_PCI_QUEUE_NUM: | |
416 | ret = virtio_queue_get_num(vdev, vdev->queue_sel); | |
417 | break; | |
418 | case VIRTIO_PCI_QUEUE_SEL: | |
419 | ret = vdev->queue_sel; | |
420 | break; | |
421 | case VIRTIO_PCI_STATUS: | |
422 | ret = vdev->status; | |
423 | break; | |
424 | case VIRTIO_PCI_ISR: | |
425 | /* reading from the ISR also clears it. */ | |
426 | ret = vdev->isr; | |
427 | vdev->isr = 0; | |
7055e687 | 428 | qemu_set_irq(proxy->pci_dev.irq[0], 0); |
53c25cea | 429 | break; |
aba800a3 MT |
430 | case VIRTIO_MSI_CONFIG_VECTOR: |
431 | ret = vdev->config_vector; | |
432 | break; | |
433 | case VIRTIO_MSI_QUEUE_VECTOR: | |
434 | ret = virtio_queue_vector(vdev, vdev->queue_sel); | |
435 | break; | |
53c25cea PB |
436 | default: |
437 | break; | |
438 | } | |
439 | ||
440 | return ret; | |
441 | } | |
442 | ||
443 | static uint32_t virtio_pci_config_readb(void *opaque, uint32_t addr) | |
444 | { | |
445 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
446 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
447 | addr -= proxy->addr; | |
448 | if (addr < config) | |
449 | return virtio_ioport_read(proxy, addr); | |
450 | addr -= config; | |
53c25cea PB |
451 | return virtio_config_readb(proxy->vdev, addr); |
452 | } | |
453 | ||
454 | static uint32_t virtio_pci_config_readw(void *opaque, uint32_t addr) | |
455 | { | |
456 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
457 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
458 | addr -= proxy->addr; | |
459 | if (addr < config) | |
460 | return virtio_ioport_read(proxy, addr); | |
461 | addr -= config; | |
53c25cea PB |
462 | return virtio_config_readw(proxy->vdev, addr); |
463 | } | |
464 | ||
465 | static uint32_t virtio_pci_config_readl(void *opaque, uint32_t addr) | |
466 | { | |
467 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
468 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
469 | addr -= proxy->addr; | |
470 | if (addr < config) | |
471 | return virtio_ioport_read(proxy, addr); | |
472 | addr -= config; | |
53c25cea PB |
473 | return virtio_config_readl(proxy->vdev, addr); |
474 | } | |
475 | ||
476 | static void virtio_pci_config_writeb(void *opaque, uint32_t addr, uint32_t val) | |
477 | { | |
478 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
479 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
480 | addr -= proxy->addr; | |
481 | if (addr < config) { | |
482 | virtio_ioport_write(proxy, addr, val); | |
483 | return; | |
484 | } | |
485 | addr -= config; | |
53c25cea PB |
486 | virtio_config_writeb(proxy->vdev, addr, val); |
487 | } | |
488 | ||
489 | static void virtio_pci_config_writew(void *opaque, uint32_t addr, uint32_t val) | |
490 | { | |
491 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
492 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
493 | addr -= proxy->addr; | |
494 | if (addr < config) { | |
495 | virtio_ioport_write(proxy, addr, val); | |
496 | return; | |
497 | } | |
498 | addr -= config; | |
53c25cea PB |
499 | virtio_config_writew(proxy->vdev, addr, val); |
500 | } | |
501 | ||
502 | static void virtio_pci_config_writel(void *opaque, uint32_t addr, uint32_t val) | |
503 | { | |
504 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
505 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
506 | addr -= proxy->addr; | |
507 | if (addr < config) { | |
508 | virtio_ioport_write(proxy, addr, val); | |
509 | return; | |
510 | } | |
511 | addr -= config; | |
53c25cea PB |
512 | virtio_config_writel(proxy->vdev, addr, val); |
513 | } | |
514 | ||
515 | static void virtio_map(PCIDevice *pci_dev, int region_num, | |
6e355d90 | 516 | pcibus_t addr, pcibus_t size, int type) |
53c25cea PB |
517 | { |
518 | VirtIOPCIProxy *proxy = container_of(pci_dev, VirtIOPCIProxy, pci_dev); | |
519 | VirtIODevice *vdev = proxy->vdev; | |
aba800a3 | 520 | unsigned config_len = VIRTIO_PCI_REGION_SIZE(pci_dev) + vdev->config_len; |
53c25cea PB |
521 | |
522 | proxy->addr = addr; | |
53c25cea | 523 | |
aba800a3 MT |
524 | register_ioport_write(addr, config_len, 1, virtio_pci_config_writeb, proxy); |
525 | register_ioport_write(addr, config_len, 2, virtio_pci_config_writew, proxy); | |
526 | register_ioport_write(addr, config_len, 4, virtio_pci_config_writel, proxy); | |
527 | register_ioport_read(addr, config_len, 1, virtio_pci_config_readb, proxy); | |
528 | register_ioport_read(addr, config_len, 2, virtio_pci_config_readw, proxy); | |
529 | register_ioport_read(addr, config_len, 4, virtio_pci_config_readl, proxy); | |
53c25cea | 530 | |
aba800a3 | 531 | if (vdev->config_len) |
53c25cea | 532 | vdev->get_config(vdev, vdev->config); |
aba800a3 MT |
533 | } |
534 | ||
535 | static void virtio_write_config(PCIDevice *pci_dev, uint32_t address, | |
536 | uint32_t val, int len) | |
537 | { | |
ed757e14 YV |
538 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); |
539 | ||
540 | if (PCI_COMMAND == address) { | |
541 | if (!(val & PCI_COMMAND_MASTER)) { | |
3dbca8e6 | 542 | if (!(proxy->flags & VIRTIO_PCI_FLAG_BUS_MASTER_BUG)) { |
25db9ebe | 543 | virtio_pci_stop_ioeventfd(proxy); |
3e607cb5 MT |
544 | virtio_set_status(proxy->vdev, |
545 | proxy->vdev->status & ~VIRTIO_CONFIG_S_DRIVER_OK); | |
c81131db | 546 | } |
ed757e14 YV |
547 | } |
548 | } | |
549 | ||
aba800a3 | 550 | pci_default_write_config(pci_dev, address, val, len); |
85352471 | 551 | msix_write_config(pci_dev, address, val, len); |
53c25cea PB |
552 | } |
553 | ||
6d74ca5a MT |
554 | static unsigned virtio_pci_get_features(void *opaque) |
555 | { | |
8172539d MT |
556 | VirtIOPCIProxy *proxy = opaque; |
557 | return proxy->host_features; | |
6d74ca5a MT |
558 | } |
559 | ||
ade80dc8 MT |
560 | static void virtio_pci_guest_notifier_read(void *opaque) |
561 | { | |
562 | VirtQueue *vq = opaque; | |
563 | EventNotifier *n = virtio_queue_get_guest_notifier(vq); | |
564 | if (event_notifier_test_and_clear(n)) { | |
565 | virtio_irq(vq); | |
566 | } | |
567 | } | |
568 | ||
569 | static int virtio_pci_set_guest_notifier(void *opaque, int n, bool assign) | |
570 | { | |
571 | VirtIOPCIProxy *proxy = opaque; | |
572 | VirtQueue *vq = virtio_get_queue(proxy->vdev, n); | |
573 | EventNotifier *notifier = virtio_queue_get_guest_notifier(vq); | |
574 | ||
575 | if (assign) { | |
576 | int r = event_notifier_init(notifier, 0); | |
577 | if (r < 0) { | |
578 | return r; | |
579 | } | |
580 | qemu_set_fd_handler(event_notifier_get_fd(notifier), | |
581 | virtio_pci_guest_notifier_read, NULL, vq); | |
582 | } else { | |
583 | qemu_set_fd_handler(event_notifier_get_fd(notifier), | |
584 | NULL, NULL, NULL); | |
585 | event_notifier_cleanup(notifier); | |
586 | } | |
587 | ||
588 | return 0; | |
589 | } | |
590 | ||
5430a28f MT |
591 | static bool virtio_pci_query_guest_notifiers(void *opaque) |
592 | { | |
593 | VirtIOPCIProxy *proxy = opaque; | |
594 | return msix_enabled(&proxy->pci_dev); | |
595 | } | |
596 | ||
54dd9321 MT |
597 | static int virtio_pci_set_guest_notifiers(void *opaque, bool assign) |
598 | { | |
599 | VirtIOPCIProxy *proxy = opaque; | |
600 | VirtIODevice *vdev = proxy->vdev; | |
601 | int r, n; | |
602 | ||
603 | for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) { | |
604 | if (!virtio_queue_get_num(vdev, n)) { | |
605 | break; | |
606 | } | |
607 | ||
608 | r = virtio_pci_set_guest_notifier(opaque, n, assign); | |
609 | if (r < 0) { | |
610 | goto assign_error; | |
611 | } | |
612 | } | |
613 | ||
614 | return 0; | |
615 | ||
616 | assign_error: | |
617 | /* We get here on assignment failure. Recover by undoing for VQs 0 .. n. */ | |
618 | while (--n >= 0) { | |
619 | virtio_pci_set_guest_notifier(opaque, n, !assign); | |
620 | } | |
621 | return r; | |
622 | } | |
623 | ||
ade80dc8 MT |
624 | static int virtio_pci_set_host_notifier(void *opaque, int n, bool assign) |
625 | { | |
626 | VirtIOPCIProxy *proxy = opaque; | |
25db9ebe SH |
627 | |
628 | /* Stop using ioeventfd for virtqueue kick if the device starts using host | |
629 | * notifiers. This makes it easy to avoid stepping on each others' toes. | |
630 | */ | |
631 | proxy->ioeventfd_disabled = assign; | |
ade80dc8 | 632 | if (assign) { |
25db9ebe SH |
633 | virtio_pci_stop_ioeventfd(proxy); |
634 | } | |
635 | /* We don't need to start here: it's not needed because backend | |
636 | * currently only stops on status change away from ok, | |
637 | * reset, vmstop and such. If we do add code to start here, | |
638 | * need to check vmstate, device state etc. */ | |
639 | return virtio_pci_set_host_notifier_internal(proxy, n, assign); | |
640 | } | |
641 | ||
642 | static void virtio_pci_vmstate_change(void *opaque, bool running) | |
643 | { | |
644 | VirtIOPCIProxy *proxy = opaque; | |
645 | ||
646 | if (running) { | |
89c473fd MT |
647 | /* Try to find out if the guest has bus master disabled, but is |
648 | in ready state. Then we have a buggy guest OS. */ | |
649 | if ((proxy->vdev->status & VIRTIO_CONFIG_S_DRIVER_OK) && | |
650 | !(proxy->pci_dev.config[PCI_COMMAND] & PCI_COMMAND_MASTER)) { | |
651 | proxy->flags |= VIRTIO_PCI_FLAG_BUS_MASTER_BUG; | |
652 | } | |
25db9ebe | 653 | virtio_pci_start_ioeventfd(proxy); |
ade80dc8 | 654 | } else { |
25db9ebe | 655 | virtio_pci_stop_ioeventfd(proxy); |
ade80dc8 | 656 | } |
ade80dc8 MT |
657 | } |
658 | ||
53c25cea | 659 | static const VirtIOBindings virtio_pci_bindings = { |
ff24bd58 MT |
660 | .notify = virtio_pci_notify, |
661 | .save_config = virtio_pci_save_config, | |
662 | .load_config = virtio_pci_load_config, | |
663 | .save_queue = virtio_pci_save_queue, | |
664 | .load_queue = virtio_pci_load_queue, | |
6d74ca5a | 665 | .get_features = virtio_pci_get_features, |
5430a28f | 666 | .query_guest_notifiers = virtio_pci_query_guest_notifiers, |
ade80dc8 | 667 | .set_host_notifier = virtio_pci_set_host_notifier, |
54dd9321 | 668 | .set_guest_notifiers = virtio_pci_set_guest_notifiers, |
25db9ebe | 669 | .vmstate_change = virtio_pci_vmstate_change, |
53c25cea PB |
670 | }; |
671 | ||
672 | static void virtio_init_pci(VirtIOPCIProxy *proxy, VirtIODevice *vdev, | |
673 | uint16_t vendor, uint16_t device, | |
674 | uint16_t class_code, uint8_t pif) | |
675 | { | |
676 | uint8_t *config; | |
677 | uint32_t size; | |
678 | ||
679 | proxy->vdev = vdev; | |
680 | ||
681 | config = proxy->pci_dev.config; | |
682 | pci_config_set_vendor_id(config, vendor); | |
683 | pci_config_set_device_id(config, device); | |
684 | ||
685 | config[0x08] = VIRTIO_PCI_ABI_VERSION; | |
686 | ||
687 | config[0x09] = pif; | |
688 | pci_config_set_class(config, class_code); | |
53c25cea PB |
689 | |
690 | config[0x2c] = vendor & 0xFF; | |
691 | config[0x2d] = (vendor >> 8) & 0xFF; | |
692 | config[0x2e] = vdev->device_id & 0xFF; | |
693 | config[0x2f] = (vdev->device_id >> 8) & 0xFF; | |
694 | ||
695 | config[0x3d] = 1; | |
696 | ||
5a1fc5e8 | 697 | if (vdev->nvectors && !msix_init(&proxy->pci_dev, vdev->nvectors, 1, 0)) { |
aba800a3 MT |
698 | pci_register_bar(&proxy->pci_dev, 1, |
699 | msix_bar_size(&proxy->pci_dev), | |
0392a017 | 700 | PCI_BASE_ADDRESS_SPACE_MEMORY, |
aba800a3 | 701 | msix_mmio_map); |
aba800a3 MT |
702 | } else |
703 | vdev->nvectors = 0; | |
704 | ||
ed757e14 YV |
705 | proxy->pci_dev.config_write = virtio_write_config; |
706 | ||
aba800a3 | 707 | size = VIRTIO_PCI_REGION_SIZE(&proxy->pci_dev) + vdev->config_len; |
53c25cea PB |
708 | if (size & (size-1)) |
709 | size = 1 << qemu_fls(size); | |
710 | ||
0392a017 | 711 | pci_register_bar(&proxy->pci_dev, 0, size, PCI_BASE_ADDRESS_SPACE_IO, |
53c25cea PB |
712 | virtio_map); |
713 | ||
25db9ebe SH |
714 | if (!kvm_has_many_ioeventfds()) { |
715 | proxy->flags &= ~VIRTIO_PCI_FLAG_USE_IOEVENTFD; | |
716 | } | |
717 | ||
53c25cea | 718 | virtio_bind_device(vdev, &virtio_pci_bindings, proxy); |
8172539d MT |
719 | proxy->host_features |= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY; |
720 | proxy->host_features |= 0x1 << VIRTIO_F_BAD_FEATURE; | |
721 | proxy->host_features = vdev->get_features(vdev, proxy->host_features); | |
53c25cea PB |
722 | } |
723 | ||
81a322d4 | 724 | static int virtio_blk_init_pci(PCIDevice *pci_dev) |
53c25cea PB |
725 | { |
726 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
727 | VirtIODevice *vdev; | |
728 | ||
ab73ff29 GH |
729 | if (proxy->class_code != PCI_CLASS_STORAGE_SCSI && |
730 | proxy->class_code != PCI_CLASS_STORAGE_OTHER) | |
731 | proxy->class_code = PCI_CLASS_STORAGE_SCSI; | |
53c25cea | 732 | |
428c149b | 733 | vdev = virtio_blk_init(&pci_dev->qdev, &proxy->block); |
ac0c14d7 MA |
734 | if (!vdev) { |
735 | return -1; | |
736 | } | |
177539e0 | 737 | vdev->nvectors = proxy->nvectors; |
53c25cea PB |
738 | virtio_init_pci(proxy, vdev, |
739 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
85c2c735 MM |
740 | PCI_DEVICE_ID_VIRTIO_BLOCK, |
741 | proxy->class_code, 0x00); | |
177539e0 GH |
742 | /* make the actual value visible */ |
743 | proxy->nvectors = vdev->nvectors; | |
81a322d4 | 744 | return 0; |
21d58b57 MM |
745 | } |
746 | ||
0f457d91 MT |
747 | static int virtio_exit_pci(PCIDevice *pci_dev) |
748 | { | |
749 | return msix_uninit(pci_dev); | |
750 | } | |
751 | ||
56a14938 GH |
752 | static int virtio_blk_exit_pci(PCIDevice *pci_dev) |
753 | { | |
754 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
755 | ||
25db9ebe | 756 | virtio_pci_stop_ioeventfd(proxy); |
9d0d3138 | 757 | virtio_blk_exit(proxy->vdev); |
f8b6cc00 | 758 | blockdev_mark_auto_del(proxy->block.bs); |
0f457d91 | 759 | return virtio_exit_pci(pci_dev); |
56a14938 GH |
760 | } |
761 | ||
98b19252 | 762 | static int virtio_serial_init_pci(PCIDevice *pci_dev) |
21d58b57 | 763 | { |
d6beee99 | 764 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); |
85c2c735 MM |
765 | VirtIODevice *vdev; |
766 | ||
d6beee99 GH |
767 | if (proxy->class_code != PCI_CLASS_COMMUNICATION_OTHER && |
768 | proxy->class_code != PCI_CLASS_DISPLAY_OTHER && /* qemu 0.10 */ | |
769 | proxy->class_code != PCI_CLASS_OTHERS) /* qemu-kvm */ | |
770 | proxy->class_code = PCI_CLASS_COMMUNICATION_OTHER; | |
771 | ||
6b331efb | 772 | vdev = virtio_serial_init(&pci_dev->qdev, &proxy->serial); |
25fe3654 AS |
773 | if (!vdev) { |
774 | return -1; | |
775 | } | |
573fb60c | 776 | vdev->nvectors = proxy->nvectors == DEV_NVECTORS_UNSPECIFIED |
6b331efb | 777 | ? proxy->serial.max_virtserial_ports + 1 |
573fb60c | 778 | : proxy->nvectors; |
85c2c735 MM |
779 | virtio_init_pci(proxy, vdev, |
780 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
781 | PCI_DEVICE_ID_VIRTIO_CONSOLE, | |
782 | proxy->class_code, 0x00); | |
a1829205 | 783 | proxy->nvectors = vdev->nvectors; |
81a322d4 | 784 | return 0; |
53c25cea PB |
785 | } |
786 | ||
8b53a865 AS |
787 | static int virtio_serial_exit_pci(PCIDevice *pci_dev) |
788 | { | |
789 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
790 | ||
32059220 | 791 | virtio_pci_stop_ioeventfd(proxy); |
8b53a865 AS |
792 | virtio_serial_exit(proxy->vdev); |
793 | return virtio_exit_pci(pci_dev); | |
794 | } | |
795 | ||
81a322d4 | 796 | static int virtio_net_init_pci(PCIDevice *pci_dev) |
53c25cea PB |
797 | { |
798 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
799 | VirtIODevice *vdev; | |
800 | ||
f0c07c7c | 801 | vdev = virtio_net_init(&pci_dev->qdev, &proxy->nic, &proxy->net); |
a1e0fea5 | 802 | |
97b15621 | 803 | vdev->nvectors = proxy->nvectors; |
53c25cea PB |
804 | virtio_init_pci(proxy, vdev, |
805 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
806 | PCI_DEVICE_ID_VIRTIO_NET, | |
807 | PCI_CLASS_NETWORK_ETHERNET, | |
808 | 0x00); | |
a1e0fea5 GH |
809 | |
810 | /* make the actual value visible */ | |
811 | proxy->nvectors = vdev->nvectors; | |
81a322d4 | 812 | return 0; |
53c25cea PB |
813 | } |
814 | ||
97b15621 GH |
815 | static int virtio_net_exit_pci(PCIDevice *pci_dev) |
816 | { | |
817 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
818 | ||
25db9ebe | 819 | virtio_pci_stop_ioeventfd(proxy); |
97b15621 GH |
820 | virtio_net_exit(proxy->vdev); |
821 | return virtio_exit_pci(pci_dev); | |
822 | } | |
823 | ||
81a322d4 | 824 | static int virtio_balloon_init_pci(PCIDevice *pci_dev) |
53c25cea PB |
825 | { |
826 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
827 | VirtIODevice *vdev; | |
828 | ||
829 | vdev = virtio_balloon_init(&pci_dev->qdev); | |
830 | virtio_init_pci(proxy, vdev, | |
831 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
832 | PCI_DEVICE_ID_VIRTIO_BALLOON, | |
833 | PCI_CLASS_MEMORY_RAM, | |
834 | 0x00); | |
81a322d4 | 835 | return 0; |
53c25cea PB |
836 | } |
837 | ||
758e8e38 | 838 | #ifdef CONFIG_VIRTFS |
9f107513 AL |
839 | static int virtio_9p_init_pci(PCIDevice *pci_dev) |
840 | { | |
841 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
842 | VirtIODevice *vdev; | |
843 | ||
844 | vdev = virtio_9p_init(&pci_dev->qdev, &proxy->fsconf); | |
9dbcca5a | 845 | vdev->nvectors = proxy->nvectors; |
9f107513 AL |
846 | virtio_init_pci(proxy, vdev, |
847 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
848 | 0x1009, | |
849 | 0x2, | |
850 | 0x00); | |
9dbcca5a GH |
851 | /* make the actual value visible */ |
852 | proxy->nvectors = vdev->nvectors; | |
9f107513 AL |
853 | return 0; |
854 | } | |
855 | #endif | |
856 | ||
0aab0d3a GH |
857 | static PCIDeviceInfo virtio_info[] = { |
858 | { | |
859 | .qdev.name = "virtio-blk-pci", | |
779206de | 860 | .qdev.alias = "virtio-blk", |
0aab0d3a GH |
861 | .qdev.size = sizeof(VirtIOPCIProxy), |
862 | .init = virtio_blk_init_pci, | |
56a14938 | 863 | .exit = virtio_blk_exit_pci, |
ab73ff29 | 864 | .qdev.props = (Property[]) { |
72c61d0b | 865 | DEFINE_PROP_HEX32("class", VirtIOPCIProxy, class_code, 0), |
428c149b | 866 | DEFINE_BLOCK_PROPERTIES(VirtIOPCIProxy, block), |
25db9ebe SH |
867 | DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags, |
868 | VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, true), | |
177539e0 | 869 | DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 2), |
8172539d | 870 | DEFINE_VIRTIO_BLK_FEATURES(VirtIOPCIProxy, host_features), |
72c61d0b | 871 | DEFINE_PROP_END_OF_LIST(), |
ab73ff29 | 872 | }, |
e489030d | 873 | .qdev.reset = virtio_pci_reset, |
0aab0d3a | 874 | },{ |
a1e0fea5 | 875 | .qdev.name = "virtio-net-pci", |
29f82b37 | 876 | .qdev.alias = "virtio-net", |
a1e0fea5 GH |
877 | .qdev.size = sizeof(VirtIOPCIProxy), |
878 | .init = virtio_net_init_pci, | |
97b15621 | 879 | .exit = virtio_net_exit_pci, |
5ee8ad71 | 880 | .romfile = "pxe-virtio.rom", |
a1e0fea5 | 881 | .qdev.props = (Property[]) { |
25db9ebe SH |
882 | DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags, |
883 | VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, false), | |
97b15621 | 884 | DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 3), |
8172539d | 885 | DEFINE_VIRTIO_NET_FEATURES(VirtIOPCIProxy, host_features), |
97b15621 | 886 | DEFINE_NIC_PROPERTIES(VirtIOPCIProxy, nic), |
f0c07c7c AW |
887 | DEFINE_PROP_UINT32("x-txtimer", VirtIOPCIProxy, |
888 | net.txtimer, TX_TIMER_INTERVAL), | |
e3f30488 AW |
889 | DEFINE_PROP_INT32("x-txburst", VirtIOPCIProxy, |
890 | net.txburst, TX_BURST), | |
a697a334 | 891 | DEFINE_PROP_STRING("tx", VirtIOPCIProxy, net.tx), |
72c61d0b | 892 | DEFINE_PROP_END_OF_LIST(), |
a1e0fea5 | 893 | }, |
e489030d | 894 | .qdev.reset = virtio_pci_reset, |
0aab0d3a | 895 | },{ |
98b19252 AS |
896 | .qdev.name = "virtio-serial-pci", |
897 | .qdev.alias = "virtio-serial", | |
0aab0d3a | 898 | .qdev.size = sizeof(VirtIOPCIProxy), |
98b19252 | 899 | .init = virtio_serial_init_pci, |
8b53a865 | 900 | .exit = virtio_serial_exit_pci, |
d6beee99 | 901 | .qdev.props = (Property[]) { |
32059220 AS |
902 | DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags, |
903 | VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, true), | |
573fb60c AS |
904 | DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, |
905 | DEV_NVECTORS_UNSPECIFIED), | |
72c61d0b | 906 | DEFINE_PROP_HEX32("class", VirtIOPCIProxy, class_code, 0), |
8172539d | 907 | DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy, host_features), |
6b331efb AS |
908 | DEFINE_PROP_UINT32("max_ports", VirtIOPCIProxy, |
909 | serial.max_virtserial_ports, 31), | |
72c61d0b | 910 | DEFINE_PROP_END_OF_LIST(), |
d6beee99 | 911 | }, |
e489030d | 912 | .qdev.reset = virtio_pci_reset, |
0aab0d3a GH |
913 | },{ |
914 | .qdev.name = "virtio-balloon-pci", | |
29f82b37 | 915 | .qdev.alias = "virtio-balloon", |
0aab0d3a GH |
916 | .qdev.size = sizeof(VirtIOPCIProxy), |
917 | .init = virtio_balloon_init_pci, | |
0f457d91 | 918 | .exit = virtio_exit_pci, |
8172539d MT |
919 | .qdev.props = (Property[]) { |
920 | DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy, host_features), | |
921 | DEFINE_PROP_END_OF_LIST(), | |
922 | }, | |
e489030d | 923 | .qdev.reset = virtio_pci_reset, |
0aab0d3a | 924 | },{ |
758e8e38 | 925 | #ifdef CONFIG_VIRTFS |
9f107513 | 926 | .qdev.name = "virtio-9p-pci", |
29f82b37 | 927 | .qdev.alias = "virtio-9p", |
9f107513 AL |
928 | .qdev.size = sizeof(VirtIOPCIProxy), |
929 | .init = virtio_9p_init_pci, | |
930 | .qdev.props = (Property[]) { | |
9dbcca5a | 931 | DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 2), |
9f107513 AL |
932 | DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy, host_features), |
933 | DEFINE_PROP_STRING("mount_tag", VirtIOPCIProxy, fsconf.tag), | |
934 | DEFINE_PROP_STRING("fsdev", VirtIOPCIProxy, fsconf.fsdev_id), | |
935 | DEFINE_PROP_END_OF_LIST(), | |
936 | }, | |
937 | }, { | |
938 | #endif | |
0aab0d3a GH |
939 | /* end of list */ |
940 | } | |
941 | }; | |
942 | ||
53c25cea PB |
943 | static void virtio_pci_register_devices(void) |
944 | { | |
0aab0d3a | 945 | pci_qdev_register_many(virtio_info); |
53c25cea PB |
946 | } |
947 | ||
948 | device_init(virtio_pci_register_devices) |