]>
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" | |
19 | #include "pci.h" | |
d176c495 | 20 | #include "sysemu.h" |
aba800a3 | 21 | #include "msix.h" |
a1e0fea5 | 22 | #include "net.h" |
53c25cea PB |
23 | |
24 | /* from Linux's linux/virtio_pci.h */ | |
25 | ||
26 | /* A 32-bit r/o bitmask of the features supported by the host */ | |
27 | #define VIRTIO_PCI_HOST_FEATURES 0 | |
28 | ||
29 | /* A 32-bit r/w bitmask of features activated by the guest */ | |
30 | #define VIRTIO_PCI_GUEST_FEATURES 4 | |
31 | ||
32 | /* A 32-bit r/w PFN for the currently selected queue */ | |
33 | #define VIRTIO_PCI_QUEUE_PFN 8 | |
34 | ||
35 | /* A 16-bit r/o queue size for the currently selected queue */ | |
36 | #define VIRTIO_PCI_QUEUE_NUM 12 | |
37 | ||
38 | /* A 16-bit r/w queue selector */ | |
39 | #define VIRTIO_PCI_QUEUE_SEL 14 | |
40 | ||
41 | /* A 16-bit r/w queue notifier */ | |
42 | #define VIRTIO_PCI_QUEUE_NOTIFY 16 | |
43 | ||
44 | /* An 8-bit device status register. */ | |
45 | #define VIRTIO_PCI_STATUS 18 | |
46 | ||
47 | /* An 8-bit r/o interrupt status register. Reading the value will return the | |
48 | * current contents of the ISR and will also clear it. This is effectively | |
49 | * a read-and-acknowledge. */ | |
50 | #define VIRTIO_PCI_ISR 19 | |
51 | ||
aba800a3 MT |
52 | /* MSI-X registers: only enabled if MSI-X is enabled. */ |
53 | /* A 16-bit vector for configuration changes. */ | |
54 | #define VIRTIO_MSI_CONFIG_VECTOR 20 | |
55 | /* A 16-bit vector for selected queue notifications. */ | |
56 | #define VIRTIO_MSI_QUEUE_VECTOR 22 | |
57 | ||
58 | /* Config space size */ | |
59 | #define VIRTIO_PCI_CONFIG_NOMSI 20 | |
60 | #define VIRTIO_PCI_CONFIG_MSI 24 | |
61 | #define VIRTIO_PCI_REGION_SIZE(dev) (msix_present(dev) ? \ | |
62 | VIRTIO_PCI_CONFIG_MSI : \ | |
63 | VIRTIO_PCI_CONFIG_NOMSI) | |
64 | ||
65 | /* The remaining space is defined by each driver as the per-driver | |
66 | * configuration space */ | |
67 | #define VIRTIO_PCI_CONFIG(dev) (msix_enabled(dev) ? \ | |
68 | VIRTIO_PCI_CONFIG_MSI : \ | |
69 | VIRTIO_PCI_CONFIG_NOMSI) | |
53c25cea PB |
70 | |
71 | /* Virtio ABI version, if we increment this, we break the guest driver. */ | |
72 | #define VIRTIO_PCI_ABI_VERSION 0 | |
73 | ||
74 | /* How many bits to shift physical queue address written to QUEUE_PFN. | |
75 | * 12 is historical, and due to x86 page size. */ | |
76 | #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12 | |
77 | ||
78 | /* QEMU doesn't strictly need write barriers since everything runs in | |
79 | * lock-step. We'll leave the calls to wmb() in though to make it obvious for | |
80 | * KVM or if kqemu gets SMP support. | |
81 | */ | |
82 | #define wmb() do { } while (0) | |
83 | ||
84 | /* PCI bindings. */ | |
85 | ||
86 | typedef struct { | |
87 | PCIDevice pci_dev; | |
88 | VirtIODevice *vdev; | |
89 | uint32_t addr; | |
ab73ff29 | 90 | uint32_t class_code; |
a1e0fea5 | 91 | uint32_t nvectors; |
d176c495 | 92 | DriveInfo *dinfo; |
53c25cea PB |
93 | } VirtIOPCIProxy; |
94 | ||
95 | /* virtio device */ | |
96 | ||
7055e687 | 97 | static void virtio_pci_notify(void *opaque, uint16_t vector) |
53c25cea PB |
98 | { |
99 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
100 | if (msix_enabled(&proxy->pci_dev)) |
101 | msix_notify(&proxy->pci_dev, vector); | |
102 | else | |
103 | qemu_set_irq(proxy->pci_dev.irq[0], proxy->vdev->isr & 1); | |
53c25cea PB |
104 | } |
105 | ||
ff24bd58 MT |
106 | static void virtio_pci_save_config(void * opaque, QEMUFile *f) |
107 | { | |
108 | VirtIOPCIProxy *proxy = opaque; | |
109 | pci_device_save(&proxy->pci_dev, f); | |
110 | msix_save(&proxy->pci_dev, f); | |
111 | if (msix_present(&proxy->pci_dev)) | |
112 | qemu_put_be16(f, proxy->vdev->config_vector); | |
113 | } | |
114 | ||
115 | static void virtio_pci_save_queue(void * opaque, int n, QEMUFile *f) | |
116 | { | |
117 | VirtIOPCIProxy *proxy = opaque; | |
118 | if (msix_present(&proxy->pci_dev)) | |
119 | qemu_put_be16(f, virtio_queue_vector(proxy->vdev, n)); | |
120 | } | |
121 | ||
122 | static int virtio_pci_load_config(void * opaque, QEMUFile *f) | |
123 | { | |
124 | VirtIOPCIProxy *proxy = opaque; | |
125 | int ret; | |
126 | ret = pci_device_load(&proxy->pci_dev, f); | |
e6da7680 | 127 | if (ret) { |
ff24bd58 | 128 | return ret; |
e6da7680 | 129 | } |
ff24bd58 | 130 | msix_load(&proxy->pci_dev, f); |
e6da7680 | 131 | if (msix_present(&proxy->pci_dev)) { |
ff24bd58 | 132 | qemu_get_be16s(f, &proxy->vdev->config_vector); |
e6da7680 MT |
133 | } else { |
134 | proxy->vdev->config_vector = VIRTIO_NO_VECTOR; | |
135 | } | |
136 | if (proxy->vdev->config_vector != VIRTIO_NO_VECTOR) { | |
137 | return msix_vector_use(&proxy->pci_dev, proxy->vdev->config_vector); | |
138 | } | |
ff24bd58 MT |
139 | return 0; |
140 | } | |
141 | ||
142 | static int virtio_pci_load_queue(void * opaque, int n, QEMUFile *f) | |
143 | { | |
144 | VirtIOPCIProxy *proxy = opaque; | |
145 | uint16_t vector; | |
e6da7680 MT |
146 | if (msix_present(&proxy->pci_dev)) { |
147 | qemu_get_be16s(f, &vector); | |
148 | } else { | |
149 | vector = VIRTIO_NO_VECTOR; | |
150 | } | |
ff24bd58 | 151 | virtio_queue_set_vector(proxy->vdev, n, vector); |
e6da7680 MT |
152 | if (vector != VIRTIO_NO_VECTOR) { |
153 | return msix_vector_use(&proxy->pci_dev, vector); | |
154 | } | |
ff24bd58 MT |
155 | return 0; |
156 | } | |
157 | ||
7055e687 MT |
158 | static void virtio_pci_reset(void *opaque) |
159 | { | |
160 | VirtIOPCIProxy *proxy = opaque; | |
161 | virtio_reset(proxy->vdev); | |
aba800a3 | 162 | msix_reset(&proxy->pci_dev); |
7055e687 MT |
163 | } |
164 | ||
53c25cea PB |
165 | static void virtio_ioport_write(void *opaque, uint32_t addr, uint32_t val) |
166 | { | |
167 | VirtIOPCIProxy *proxy = opaque; | |
168 | VirtIODevice *vdev = proxy->vdev; | |
c227f099 | 169 | target_phys_addr_t pa; |
53c25cea | 170 | |
53c25cea PB |
171 | switch (addr) { |
172 | case VIRTIO_PCI_GUEST_FEATURES: | |
173 | /* Guest does not negotiate properly? We have to assume nothing. */ | |
174 | if (val & (1 << VIRTIO_F_BAD_FEATURE)) { | |
175 | if (vdev->bad_features) | |
176 | val = vdev->bad_features(vdev); | |
177 | else | |
178 | val = 0; | |
179 | } | |
180 | if (vdev->set_features) | |
181 | vdev->set_features(vdev, val); | |
182 | vdev->features = val; | |
183 | break; | |
184 | case VIRTIO_PCI_QUEUE_PFN: | |
c227f099 | 185 | pa = (target_phys_addr_t)val << VIRTIO_PCI_QUEUE_ADDR_SHIFT; |
7055e687 MT |
186 | if (pa == 0) |
187 | virtio_pci_reset(proxy); | |
188 | else | |
189 | virtio_queue_set_addr(vdev, vdev->queue_sel, pa); | |
53c25cea PB |
190 | break; |
191 | case VIRTIO_PCI_QUEUE_SEL: | |
192 | if (val < VIRTIO_PCI_QUEUE_MAX) | |
193 | vdev->queue_sel = val; | |
194 | break; | |
195 | case VIRTIO_PCI_QUEUE_NOTIFY: | |
196 | virtio_queue_notify(vdev, val); | |
197 | break; | |
198 | case VIRTIO_PCI_STATUS: | |
199 | vdev->status = val & 0xFF; | |
200 | if (vdev->status == 0) | |
7055e687 | 201 | virtio_pci_reset(proxy); |
53c25cea | 202 | break; |
aba800a3 MT |
203 | case VIRTIO_MSI_CONFIG_VECTOR: |
204 | msix_vector_unuse(&proxy->pci_dev, vdev->config_vector); | |
205 | /* Make it possible for guest to discover an error took place. */ | |
206 | if (msix_vector_use(&proxy->pci_dev, val) < 0) | |
207 | val = VIRTIO_NO_VECTOR; | |
208 | vdev->config_vector = val; | |
209 | break; | |
210 | case VIRTIO_MSI_QUEUE_VECTOR: | |
211 | msix_vector_unuse(&proxy->pci_dev, | |
212 | virtio_queue_vector(vdev, vdev->queue_sel)); | |
213 | /* Make it possible for guest to discover an error took place. */ | |
214 | if (msix_vector_use(&proxy->pci_dev, val) < 0) | |
215 | val = VIRTIO_NO_VECTOR; | |
216 | virtio_queue_set_vector(vdev, vdev->queue_sel, val); | |
217 | break; | |
218 | default: | |
219 | fprintf(stderr, "%s: unexpected address 0x%x value 0x%x\n", | |
220 | __func__, addr, val); | |
221 | break; | |
53c25cea PB |
222 | } |
223 | } | |
224 | ||
aba800a3 | 225 | static uint32_t virtio_ioport_read(VirtIOPCIProxy *proxy, uint32_t addr) |
53c25cea | 226 | { |
53c25cea PB |
227 | VirtIODevice *vdev = proxy->vdev; |
228 | uint32_t ret = 0xFFFFFFFF; | |
229 | ||
53c25cea PB |
230 | switch (addr) { |
231 | case VIRTIO_PCI_HOST_FEATURES: | |
232 | ret = vdev->get_features(vdev); | |
efeea6d0 MM |
233 | ret |= (1 << VIRTIO_F_NOTIFY_ON_EMPTY); |
234 | ret |= (1 << VIRTIO_RING_F_INDIRECT_DESC); | |
235 | ret |= (1 << VIRTIO_F_BAD_FEATURE); | |
53c25cea PB |
236 | break; |
237 | case VIRTIO_PCI_GUEST_FEATURES: | |
238 | ret = vdev->features; | |
239 | break; | |
240 | case VIRTIO_PCI_QUEUE_PFN: | |
241 | ret = virtio_queue_get_addr(vdev, vdev->queue_sel) | |
242 | >> VIRTIO_PCI_QUEUE_ADDR_SHIFT; | |
243 | break; | |
244 | case VIRTIO_PCI_QUEUE_NUM: | |
245 | ret = virtio_queue_get_num(vdev, vdev->queue_sel); | |
246 | break; | |
247 | case VIRTIO_PCI_QUEUE_SEL: | |
248 | ret = vdev->queue_sel; | |
249 | break; | |
250 | case VIRTIO_PCI_STATUS: | |
251 | ret = vdev->status; | |
252 | break; | |
253 | case VIRTIO_PCI_ISR: | |
254 | /* reading from the ISR also clears it. */ | |
255 | ret = vdev->isr; | |
256 | vdev->isr = 0; | |
7055e687 | 257 | qemu_set_irq(proxy->pci_dev.irq[0], 0); |
53c25cea | 258 | break; |
aba800a3 MT |
259 | case VIRTIO_MSI_CONFIG_VECTOR: |
260 | ret = vdev->config_vector; | |
261 | break; | |
262 | case VIRTIO_MSI_QUEUE_VECTOR: | |
263 | ret = virtio_queue_vector(vdev, vdev->queue_sel); | |
264 | break; | |
53c25cea PB |
265 | default: |
266 | break; | |
267 | } | |
268 | ||
269 | return ret; | |
270 | } | |
271 | ||
272 | static uint32_t virtio_pci_config_readb(void *opaque, uint32_t addr) | |
273 | { | |
274 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
275 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
276 | addr -= proxy->addr; | |
277 | if (addr < config) | |
278 | return virtio_ioport_read(proxy, addr); | |
279 | addr -= config; | |
53c25cea PB |
280 | return virtio_config_readb(proxy->vdev, addr); |
281 | } | |
282 | ||
283 | static uint32_t virtio_pci_config_readw(void *opaque, uint32_t addr) | |
284 | { | |
285 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
286 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
287 | addr -= proxy->addr; | |
288 | if (addr < config) | |
289 | return virtio_ioport_read(proxy, addr); | |
290 | addr -= config; | |
53c25cea PB |
291 | return virtio_config_readw(proxy->vdev, addr); |
292 | } | |
293 | ||
294 | static uint32_t virtio_pci_config_readl(void *opaque, uint32_t addr) | |
295 | { | |
296 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
297 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
298 | addr -= proxy->addr; | |
299 | if (addr < config) | |
300 | return virtio_ioport_read(proxy, addr); | |
301 | addr -= config; | |
53c25cea PB |
302 | return virtio_config_readl(proxy->vdev, addr); |
303 | } | |
304 | ||
305 | static void virtio_pci_config_writeb(void *opaque, uint32_t addr, uint32_t val) | |
306 | { | |
307 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
308 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
309 | addr -= proxy->addr; | |
310 | if (addr < config) { | |
311 | virtio_ioport_write(proxy, addr, val); | |
312 | return; | |
313 | } | |
314 | addr -= config; | |
53c25cea PB |
315 | virtio_config_writeb(proxy->vdev, addr, val); |
316 | } | |
317 | ||
318 | static void virtio_pci_config_writew(void *opaque, uint32_t addr, uint32_t val) | |
319 | { | |
320 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
321 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
322 | addr -= proxy->addr; | |
323 | if (addr < config) { | |
324 | virtio_ioport_write(proxy, addr, val); | |
325 | return; | |
326 | } | |
327 | addr -= config; | |
53c25cea PB |
328 | virtio_config_writew(proxy->vdev, addr, val); |
329 | } | |
330 | ||
331 | static void virtio_pci_config_writel(void *opaque, uint32_t addr, uint32_t val) | |
332 | { | |
333 | VirtIOPCIProxy *proxy = opaque; | |
aba800a3 MT |
334 | uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev); |
335 | addr -= proxy->addr; | |
336 | if (addr < config) { | |
337 | virtio_ioport_write(proxy, addr, val); | |
338 | return; | |
339 | } | |
340 | addr -= config; | |
53c25cea PB |
341 | virtio_config_writel(proxy->vdev, addr, val); |
342 | } | |
343 | ||
344 | static void virtio_map(PCIDevice *pci_dev, int region_num, | |
345 | uint32_t addr, uint32_t size, int type) | |
346 | { | |
347 | VirtIOPCIProxy *proxy = container_of(pci_dev, VirtIOPCIProxy, pci_dev); | |
348 | VirtIODevice *vdev = proxy->vdev; | |
aba800a3 | 349 | unsigned config_len = VIRTIO_PCI_REGION_SIZE(pci_dev) + vdev->config_len; |
53c25cea PB |
350 | |
351 | proxy->addr = addr; | |
53c25cea | 352 | |
aba800a3 MT |
353 | register_ioport_write(addr, config_len, 1, virtio_pci_config_writeb, proxy); |
354 | register_ioport_write(addr, config_len, 2, virtio_pci_config_writew, proxy); | |
355 | register_ioport_write(addr, config_len, 4, virtio_pci_config_writel, proxy); | |
356 | register_ioport_read(addr, config_len, 1, virtio_pci_config_readb, proxy); | |
357 | register_ioport_read(addr, config_len, 2, virtio_pci_config_readw, proxy); | |
358 | register_ioport_read(addr, config_len, 4, virtio_pci_config_readl, proxy); | |
53c25cea | 359 | |
aba800a3 | 360 | if (vdev->config_len) |
53c25cea | 361 | vdev->get_config(vdev, vdev->config); |
aba800a3 MT |
362 | } |
363 | ||
364 | static void virtio_write_config(PCIDevice *pci_dev, uint32_t address, | |
365 | uint32_t val, int len) | |
366 | { | |
ed757e14 YV |
367 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); |
368 | ||
369 | if (PCI_COMMAND == address) { | |
370 | if (!(val & PCI_COMMAND_MASTER)) { | |
371 | proxy->vdev->status &= !VIRTIO_CONFIG_S_DRIVER_OK; | |
372 | } | |
373 | } | |
374 | ||
aba800a3 | 375 | pci_default_write_config(pci_dev, address, val, len); |
ed757e14 YV |
376 | if(proxy->vdev->nvectors) |
377 | msix_write_config(pci_dev, address, val, len); | |
53c25cea PB |
378 | } |
379 | ||
380 | static const VirtIOBindings virtio_pci_bindings = { | |
ff24bd58 MT |
381 | .notify = virtio_pci_notify, |
382 | .save_config = virtio_pci_save_config, | |
383 | .load_config = virtio_pci_load_config, | |
384 | .save_queue = virtio_pci_save_queue, | |
385 | .load_queue = virtio_pci_load_queue, | |
53c25cea PB |
386 | }; |
387 | ||
388 | static void virtio_init_pci(VirtIOPCIProxy *proxy, VirtIODevice *vdev, | |
389 | uint16_t vendor, uint16_t device, | |
390 | uint16_t class_code, uint8_t pif) | |
391 | { | |
392 | uint8_t *config; | |
393 | uint32_t size; | |
394 | ||
395 | proxy->vdev = vdev; | |
396 | ||
397 | config = proxy->pci_dev.config; | |
398 | pci_config_set_vendor_id(config, vendor); | |
399 | pci_config_set_device_id(config, device); | |
400 | ||
401 | config[0x08] = VIRTIO_PCI_ABI_VERSION; | |
402 | ||
403 | config[0x09] = pif; | |
404 | pci_config_set_class(config, class_code); | |
405 | config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; | |
406 | ||
407 | config[0x2c] = vendor & 0xFF; | |
408 | config[0x2d] = (vendor >> 8) & 0xFF; | |
409 | config[0x2e] = vdev->device_id & 0xFF; | |
410 | config[0x2f] = (vdev->device_id >> 8) & 0xFF; | |
411 | ||
412 | config[0x3d] = 1; | |
413 | ||
5e520a7d BS |
414 | if (vdev->nvectors && !msix_init(&proxy->pci_dev, vdev->nvectors, 1, 0, |
415 | TARGET_PAGE_SIZE)) { | |
aba800a3 MT |
416 | pci_register_bar(&proxy->pci_dev, 1, |
417 | msix_bar_size(&proxy->pci_dev), | |
418 | PCI_ADDRESS_SPACE_MEM, | |
419 | msix_mmio_map); | |
aba800a3 MT |
420 | proxy->pci_dev.unregister = msix_uninit; |
421 | } else | |
422 | vdev->nvectors = 0; | |
423 | ||
ed757e14 YV |
424 | proxy->pci_dev.config_write = virtio_write_config; |
425 | ||
aba800a3 | 426 | size = VIRTIO_PCI_REGION_SIZE(&proxy->pci_dev) + vdev->config_len; |
53c25cea PB |
427 | if (size & (size-1)) |
428 | size = 1 << qemu_fls(size); | |
429 | ||
28c2c264 | 430 | pci_register_bar(&proxy->pci_dev, 0, size, PCI_ADDRESS_SPACE_IO, |
53c25cea PB |
431 | virtio_map); |
432 | ||
a08d4367 | 433 | qemu_register_reset(virtio_pci_reset, proxy); |
7055e687 | 434 | |
53c25cea PB |
435 | virtio_bind_device(vdev, &virtio_pci_bindings, proxy); |
436 | } | |
437 | ||
81a322d4 | 438 | static int virtio_blk_init_pci(PCIDevice *pci_dev) |
53c25cea PB |
439 | { |
440 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
441 | VirtIODevice *vdev; | |
442 | ||
ab73ff29 GH |
443 | if (proxy->class_code != PCI_CLASS_STORAGE_SCSI && |
444 | proxy->class_code != PCI_CLASS_STORAGE_OTHER) | |
445 | proxy->class_code = PCI_CLASS_STORAGE_SCSI; | |
53c25cea | 446 | |
d176c495 | 447 | if (!proxy->dinfo) { |
84fc5589 | 448 | qemu_error("virtio-blk-pci: drive property not set\n"); |
81a322d4 | 449 | return -1; |
d176c495 GH |
450 | } |
451 | vdev = virtio_blk_init(&pci_dev->qdev, proxy->dinfo); | |
177539e0 | 452 | vdev->nvectors = proxy->nvectors; |
53c25cea PB |
453 | virtio_init_pci(proxy, vdev, |
454 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
85c2c735 MM |
455 | PCI_DEVICE_ID_VIRTIO_BLOCK, |
456 | proxy->class_code, 0x00); | |
177539e0 GH |
457 | /* make the actual value visible */ |
458 | proxy->nvectors = vdev->nvectors; | |
81a322d4 | 459 | return 0; |
21d58b57 MM |
460 | } |
461 | ||
81a322d4 | 462 | static int virtio_console_init_pci(PCIDevice *pci_dev) |
21d58b57 | 463 | { |
d6beee99 | 464 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); |
85c2c735 MM |
465 | VirtIODevice *vdev; |
466 | ||
d6beee99 GH |
467 | if (proxy->class_code != PCI_CLASS_COMMUNICATION_OTHER && |
468 | proxy->class_code != PCI_CLASS_DISPLAY_OTHER && /* qemu 0.10 */ | |
469 | proxy->class_code != PCI_CLASS_OTHERS) /* qemu-kvm */ | |
470 | proxy->class_code = PCI_CLASS_COMMUNICATION_OTHER; | |
471 | ||
85c2c735 MM |
472 | vdev = virtio_console_init(&pci_dev->qdev); |
473 | virtio_init_pci(proxy, vdev, | |
474 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
475 | PCI_DEVICE_ID_VIRTIO_CONSOLE, | |
476 | proxy->class_code, 0x00); | |
81a322d4 | 477 | return 0; |
53c25cea PB |
478 | } |
479 | ||
81a322d4 | 480 | static int virtio_net_init_pci(PCIDevice *pci_dev) |
53c25cea PB |
481 | { |
482 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
483 | VirtIODevice *vdev; | |
484 | ||
485 | vdev = virtio_net_init(&pci_dev->qdev); | |
a1e0fea5 GH |
486 | |
487 | /* set nvectors from property, unless the user specified something | |
488 | * via -net nic,model=virtio,vectors=n command line option */ | |
489 | if (pci_dev->qdev.nd->nvectors == NIC_NVECTORS_UNSPECIFIED) | |
490 | if (proxy->nvectors != NIC_NVECTORS_UNSPECIFIED) | |
491 | vdev->nvectors = proxy->nvectors; | |
492 | ||
53c25cea PB |
493 | virtio_init_pci(proxy, vdev, |
494 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
495 | PCI_DEVICE_ID_VIRTIO_NET, | |
496 | PCI_CLASS_NETWORK_ETHERNET, | |
497 | 0x00); | |
a1e0fea5 GH |
498 | |
499 | /* make the actual value visible */ | |
500 | proxy->nvectors = vdev->nvectors; | |
81a322d4 | 501 | return 0; |
53c25cea PB |
502 | } |
503 | ||
81a322d4 | 504 | static int virtio_balloon_init_pci(PCIDevice *pci_dev) |
53c25cea PB |
505 | { |
506 | VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev); | |
507 | VirtIODevice *vdev; | |
508 | ||
509 | vdev = virtio_balloon_init(&pci_dev->qdev); | |
510 | virtio_init_pci(proxy, vdev, | |
511 | PCI_VENDOR_ID_REDHAT_QUMRANET, | |
512 | PCI_DEVICE_ID_VIRTIO_BALLOON, | |
513 | PCI_CLASS_MEMORY_RAM, | |
514 | 0x00); | |
81a322d4 | 515 | return 0; |
53c25cea PB |
516 | } |
517 | ||
0aab0d3a GH |
518 | static PCIDeviceInfo virtio_info[] = { |
519 | { | |
520 | .qdev.name = "virtio-blk-pci", | |
521 | .qdev.size = sizeof(VirtIOPCIProxy), | |
522 | .init = virtio_blk_init_pci, | |
ab73ff29 | 523 | .qdev.props = (Property[]) { |
72c61d0b GH |
524 | DEFINE_PROP_HEX32("class", VirtIOPCIProxy, class_code, 0), |
525 | DEFINE_PROP_DRIVE("drive", VirtIOPCIProxy, dinfo), | |
177539e0 | 526 | DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 2), |
72c61d0b | 527 | DEFINE_PROP_END_OF_LIST(), |
ab73ff29 | 528 | }, |
0aab0d3a | 529 | },{ |
a1e0fea5 GH |
530 | .qdev.name = "virtio-net-pci", |
531 | .qdev.size = sizeof(VirtIOPCIProxy), | |
532 | .init = virtio_net_init_pci, | |
533 | .qdev.props = (Property[]) { | |
177539e0 GH |
534 | DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, |
535 | NIC_NVECTORS_UNSPECIFIED), | |
72c61d0b | 536 | DEFINE_PROP_END_OF_LIST(), |
a1e0fea5 | 537 | }, |
0aab0d3a GH |
538 | },{ |
539 | .qdev.name = "virtio-console-pci", | |
540 | .qdev.size = sizeof(VirtIOPCIProxy), | |
541 | .init = virtio_console_init_pci, | |
d6beee99 | 542 | .qdev.props = (Property[]) { |
72c61d0b GH |
543 | DEFINE_PROP_HEX32("class", VirtIOPCIProxy, class_code, 0), |
544 | DEFINE_PROP_END_OF_LIST(), | |
d6beee99 | 545 | }, |
0aab0d3a GH |
546 | },{ |
547 | .qdev.name = "virtio-balloon-pci", | |
548 | .qdev.size = sizeof(VirtIOPCIProxy), | |
549 | .init = virtio_balloon_init_pci, | |
550 | },{ | |
551 | /* end of list */ | |
552 | } | |
553 | }; | |
554 | ||
53c25cea PB |
555 | static void virtio_pci_register_devices(void) |
556 | { | |
0aab0d3a | 557 | pci_qdev_register_many(virtio_info); |
53c25cea PB |
558 | } |
559 | ||
560 | device_init(virtio_pci_register_devices) |