]> git.proxmox.com Git - mirror_qemu.git/blob - hw/i386/kvm/pci-assign.c
kvm-irqchip: do explicit commit when update irq
[mirror_qemu.git] / hw / i386 / kvm / pci-assign.c
1 /*
2 * Copyright (c) 2007, Neocleus Corporation.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
6 *
7 *
8 * Assign a PCI device from the host to a guest VM.
9 *
10 * This implementation uses the classic device assignment interface of KVM
11 * and is only available on x86 hosts. It is expected to be obsoleted by VFIO
12 * based device assignment.
13 *
14 * Adapted for KVM (qemu-kvm) by Qumranet. QEMU version was based on qemu-kvm
15 * revision 4144fe9d48. See its repository for the history.
16 *
17 * Copyright (c) 2007, Neocleus, Alex Novik (alex@neocleus.com)
18 * Copyright (c) 2007, Neocleus, Guy Zana (guy@neocleus.com)
19 * Copyright (C) 2008, Qumranet, Amit Shah (amit.shah@qumranet.com)
20 * Copyright (C) 2008, Red Hat, Amit Shah (amit.shah@redhat.com)
21 * Copyright (C) 2008, IBM, Muli Ben-Yehuda (muli@il.ibm.com)
22 */
23
24 #include "qemu/osdep.h"
25 #include <linux/kvm.h>
26 #include "qapi/error.h"
27 #include "hw/hw.h"
28 #include "hw/i386/pc.h"
29 #include "qemu/error-report.h"
30 #include "ui/console.h"
31 #include "hw/loader.h"
32 #include "monitor/monitor.h"
33 #include "qemu/range.h"
34 #include "sysemu/sysemu.h"
35 #include "hw/pci/pci.h"
36 #include "hw/pci/msi.h"
37 #include "kvm_i386.h"
38 #include "hw/pci/pci-assign.h"
39
40 /* From linux/ioport.h */
41 #define IORESOURCE_IO 0x00000100 /* Resource type */
42 #define IORESOURCE_MEM 0x00000200
43 #define IORESOURCE_IRQ 0x00000400
44 #define IORESOURCE_DMA 0x00000800
45 #define IORESOURCE_PREFETCH 0x00002000 /* No side effects */
46 #define IORESOURCE_MEM_64 0x00100000
47
48 typedef struct PCIRegion {
49 int type; /* Memory or port I/O */
50 int valid;
51 uint64_t base_addr;
52 uint64_t size; /* size of the region */
53 int resource_fd;
54 } PCIRegion;
55
56 typedef struct PCIDevRegions {
57 uint8_t bus, dev, func; /* Bus inside domain, device and function */
58 int irq; /* IRQ number */
59 uint16_t region_number; /* number of active regions */
60
61 /* Port I/O or MMIO Regions */
62 PCIRegion regions[PCI_NUM_REGIONS - 1];
63 int config_fd;
64 } PCIDevRegions;
65
66 typedef struct AssignedDevRegion {
67 MemoryRegion container;
68 MemoryRegion real_iomem;
69 union {
70 uint8_t *r_virtbase; /* mmapped access address for memory regions */
71 uint32_t r_baseport; /* the base guest port for I/O regions */
72 } u;
73 pcibus_t e_size; /* emulated size of region in bytes */
74 pcibus_t r_size; /* real size of region in bytes */
75 PCIRegion *region;
76 } AssignedDevRegion;
77
78 #define ASSIGNED_DEVICE_PREFER_MSI_BIT 0
79 #define ASSIGNED_DEVICE_SHARE_INTX_BIT 1
80
81 #define ASSIGNED_DEVICE_PREFER_MSI_MASK (1 << ASSIGNED_DEVICE_PREFER_MSI_BIT)
82 #define ASSIGNED_DEVICE_SHARE_INTX_MASK (1 << ASSIGNED_DEVICE_SHARE_INTX_BIT)
83
84 typedef struct MSIXTableEntry {
85 uint32_t addr_lo;
86 uint32_t addr_hi;
87 uint32_t data;
88 uint32_t ctrl;
89 } MSIXTableEntry;
90
91 typedef enum AssignedIRQType {
92 ASSIGNED_IRQ_NONE = 0,
93 ASSIGNED_IRQ_INTX_HOST_INTX,
94 ASSIGNED_IRQ_INTX_HOST_MSI,
95 ASSIGNED_IRQ_MSI,
96 ASSIGNED_IRQ_MSIX
97 } AssignedIRQType;
98
99 typedef struct AssignedDevice {
100 PCIDevice dev;
101 PCIHostDeviceAddress host;
102 uint32_t dev_id;
103 uint32_t features;
104 int intpin;
105 AssignedDevRegion v_addrs[PCI_NUM_REGIONS - 1];
106 PCIDevRegions real_device;
107 PCIINTxRoute intx_route;
108 AssignedIRQType assigned_irq_type;
109 struct {
110 #define ASSIGNED_DEVICE_CAP_MSI (1 << 0)
111 #define ASSIGNED_DEVICE_CAP_MSIX (1 << 1)
112 uint32_t available;
113 #define ASSIGNED_DEVICE_MSI_ENABLED (1 << 0)
114 #define ASSIGNED_DEVICE_MSIX_ENABLED (1 << 1)
115 #define ASSIGNED_DEVICE_MSIX_MASKED (1 << 2)
116 uint32_t state;
117 } cap;
118 uint8_t emulate_config_read[PCI_CONFIG_SPACE_SIZE];
119 uint8_t emulate_config_write[PCI_CONFIG_SPACE_SIZE];
120 int msi_virq_nr;
121 int *msi_virq;
122 MSIXTableEntry *msix_table;
123 hwaddr msix_table_addr;
124 uint16_t msix_table_size;
125 uint16_t msix_max;
126 MemoryRegion mmio;
127 char *configfd_name;
128 int32_t bootindex;
129 } AssignedDevice;
130
131 #define TYPE_PCI_ASSIGN "kvm-pci-assign"
132 #define PCI_ASSIGN(obj) OBJECT_CHECK(AssignedDevice, (obj), TYPE_PCI_ASSIGN)
133
134 static void assigned_dev_update_irq_routing(PCIDevice *dev);
135
136 static void assigned_dev_load_option_rom(AssignedDevice *dev);
137
138 static void assigned_dev_unregister_msix_mmio(AssignedDevice *dev);
139
140 static uint64_t assigned_dev_ioport_rw(AssignedDevRegion *dev_region,
141 hwaddr addr, int size,
142 uint64_t *data)
143 {
144 uint64_t val = 0;
145 int fd = dev_region->region->resource_fd;
146
147 if (data) {
148 DEBUG("pwrite data=%" PRIx64 ", size=%d, e_phys=" TARGET_FMT_plx
149 ", addr="TARGET_FMT_plx"\n", *data, size, addr, addr);
150 if (pwrite(fd, data, size, addr) != size) {
151 error_report("%s - pwrite failed %s", __func__, strerror(errno));
152 }
153 } else {
154 if (pread(fd, &val, size, addr) != size) {
155 error_report("%s - pread failed %s", __func__, strerror(errno));
156 val = (1UL << (size * 8)) - 1;
157 }
158 DEBUG("pread val=%" PRIx64 ", size=%d, e_phys=" TARGET_FMT_plx
159 ", addr=" TARGET_FMT_plx "\n", val, size, addr, addr);
160 }
161 return val;
162 }
163
164 static void assigned_dev_ioport_write(void *opaque, hwaddr addr,
165 uint64_t data, unsigned size)
166 {
167 assigned_dev_ioport_rw(opaque, addr, size, &data);
168 }
169
170 static uint64_t assigned_dev_ioport_read(void *opaque,
171 hwaddr addr, unsigned size)
172 {
173 return assigned_dev_ioport_rw(opaque, addr, size, NULL);
174 }
175
176 static uint32_t slow_bar_readb(void *opaque, hwaddr addr)
177 {
178 AssignedDevRegion *d = opaque;
179 uint8_t *in = d->u.r_virtbase + addr;
180 uint32_t r;
181
182 r = *in;
183 DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r);
184
185 return r;
186 }
187
188 static uint32_t slow_bar_readw(void *opaque, hwaddr addr)
189 {
190 AssignedDevRegion *d = opaque;
191 uint16_t *in = (uint16_t *)(d->u.r_virtbase + addr);
192 uint32_t r;
193
194 r = *in;
195 DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r);
196
197 return r;
198 }
199
200 static uint32_t slow_bar_readl(void *opaque, hwaddr addr)
201 {
202 AssignedDevRegion *d = opaque;
203 uint32_t *in = (uint32_t *)(d->u.r_virtbase + addr);
204 uint32_t r;
205
206 r = *in;
207 DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r);
208
209 return r;
210 }
211
212 static void slow_bar_writeb(void *opaque, hwaddr addr, uint32_t val)
213 {
214 AssignedDevRegion *d = opaque;
215 uint8_t *out = d->u.r_virtbase + addr;
216
217 DEBUG("addr=0x" TARGET_FMT_plx " val=0x%02x\n", addr, val);
218 *out = val;
219 }
220
221 static void slow_bar_writew(void *opaque, hwaddr addr, uint32_t val)
222 {
223 AssignedDevRegion *d = opaque;
224 uint16_t *out = (uint16_t *)(d->u.r_virtbase + addr);
225
226 DEBUG("addr=0x" TARGET_FMT_plx " val=0x%04x\n", addr, val);
227 *out = val;
228 }
229
230 static void slow_bar_writel(void *opaque, hwaddr addr, uint32_t val)
231 {
232 AssignedDevRegion *d = opaque;
233 uint32_t *out = (uint32_t *)(d->u.r_virtbase + addr);
234
235 DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, val);
236 *out = val;
237 }
238
239 static const MemoryRegionOps slow_bar_ops = {
240 .old_mmio = {
241 .read = { slow_bar_readb, slow_bar_readw, slow_bar_readl, },
242 .write = { slow_bar_writeb, slow_bar_writew, slow_bar_writel, },
243 },
244 .endianness = DEVICE_NATIVE_ENDIAN,
245 };
246
247 static void assigned_dev_iomem_setup(PCIDevice *pci_dev, int region_num,
248 pcibus_t e_size)
249 {
250 AssignedDevice *r_dev = PCI_ASSIGN(pci_dev);
251 AssignedDevRegion *region = &r_dev->v_addrs[region_num];
252 PCIRegion *real_region = &r_dev->real_device.regions[region_num];
253
254 if (e_size > 0) {
255 memory_region_init(&region->container, OBJECT(pci_dev),
256 "assigned-dev-container", e_size);
257 memory_region_add_subregion(&region->container, 0, &region->real_iomem);
258
259 /* deal with MSI-X MMIO page */
260 if (real_region->base_addr <= r_dev->msix_table_addr &&
261 real_region->base_addr + real_region->size >
262 r_dev->msix_table_addr) {
263 uint64_t offset = r_dev->msix_table_addr - real_region->base_addr;
264
265 memory_region_add_subregion_overlap(&region->container,
266 offset,
267 &r_dev->mmio,
268 1);
269 }
270 }
271 }
272
273 static const MemoryRegionOps assigned_dev_ioport_ops = {
274 .read = assigned_dev_ioport_read,
275 .write = assigned_dev_ioport_write,
276 .endianness = DEVICE_NATIVE_ENDIAN,
277 };
278
279 static void assigned_dev_ioport_setup(PCIDevice *pci_dev, int region_num,
280 pcibus_t size)
281 {
282 AssignedDevice *r_dev = PCI_ASSIGN(pci_dev);
283 AssignedDevRegion *region = &r_dev->v_addrs[region_num];
284
285 region->e_size = size;
286 memory_region_init(&region->container, OBJECT(pci_dev),
287 "assigned-dev-container", size);
288 memory_region_init_io(&region->real_iomem, OBJECT(pci_dev),
289 &assigned_dev_ioport_ops, r_dev->v_addrs + region_num,
290 "assigned-dev-iomem", size);
291 memory_region_add_subregion(&region->container, 0, &region->real_iomem);
292 }
293
294 static uint32_t assigned_dev_pci_read(PCIDevice *d, int pos, int len)
295 {
296 AssignedDevice *pci_dev = PCI_ASSIGN(d);
297 uint32_t val;
298 ssize_t ret;
299 int fd = pci_dev->real_device.config_fd;
300
301 again:
302 ret = pread(fd, &val, len, pos);
303 if (ret != len) {
304 if ((ret < 0) && (errno == EINTR || errno == EAGAIN)) {
305 goto again;
306 }
307
308 hw_error("pci read failed, ret = %zd errno = %d\n", ret, errno);
309 }
310
311 return val;
312 }
313
314 static uint8_t assigned_dev_pci_read_byte(PCIDevice *d, int pos)
315 {
316 return (uint8_t)assigned_dev_pci_read(d, pos, 1);
317 }
318
319 static void assigned_dev_pci_write(PCIDevice *d, int pos, uint32_t val, int len)
320 {
321 AssignedDevice *pci_dev = PCI_ASSIGN(d);
322 ssize_t ret;
323 int fd = pci_dev->real_device.config_fd;
324
325 again:
326 ret = pwrite(fd, &val, len, pos);
327 if (ret != len) {
328 if ((ret < 0) && (errno == EINTR || errno == EAGAIN)) {
329 goto again;
330 }
331
332 hw_error("pci write failed, ret = %zd errno = %d\n", ret, errno);
333 }
334 }
335
336 static void assigned_dev_emulate_config_read(AssignedDevice *dev,
337 uint32_t offset, uint32_t len)
338 {
339 memset(dev->emulate_config_read + offset, 0xff, len);
340 }
341
342 static void assigned_dev_direct_config_read(AssignedDevice *dev,
343 uint32_t offset, uint32_t len)
344 {
345 memset(dev->emulate_config_read + offset, 0, len);
346 }
347
348 static void assigned_dev_direct_config_write(AssignedDevice *dev,
349 uint32_t offset, uint32_t len)
350 {
351 memset(dev->emulate_config_write + offset, 0, len);
352 }
353
354 static uint8_t pci_find_cap_offset(PCIDevice *d, uint8_t cap, uint8_t start)
355 {
356 int id;
357 int max_cap = 48;
358 int pos = start ? start : PCI_CAPABILITY_LIST;
359 int status;
360
361 status = assigned_dev_pci_read_byte(d, PCI_STATUS);
362 if ((status & PCI_STATUS_CAP_LIST) == 0) {
363 return 0;
364 }
365
366 while (max_cap--) {
367 pos = assigned_dev_pci_read_byte(d, pos);
368 if (pos < 0x40) {
369 break;
370 }
371
372 pos &= ~3;
373 id = assigned_dev_pci_read_byte(d, pos + PCI_CAP_LIST_ID);
374
375 if (id == 0xff) {
376 break;
377 }
378 if (id == cap) {
379 return pos;
380 }
381
382 pos += PCI_CAP_LIST_NEXT;
383 }
384 return 0;
385 }
386
387 static void assigned_dev_register_regions(PCIRegion *io_regions,
388 unsigned long regions_num,
389 AssignedDevice *pci_dev,
390 Error **errp)
391 {
392 uint32_t i;
393 PCIRegion *cur_region = io_regions;
394
395 for (i = 0; i < regions_num; i++, cur_region++) {
396 if (!cur_region->valid) {
397 continue;
398 }
399
400 /* handle memory io regions */
401 if (cur_region->type & IORESOURCE_MEM) {
402 int t = PCI_BASE_ADDRESS_SPACE_MEMORY;
403 if (cur_region->type & IORESOURCE_PREFETCH) {
404 t |= PCI_BASE_ADDRESS_MEM_PREFETCH;
405 }
406 if (cur_region->type & IORESOURCE_MEM_64) {
407 t |= PCI_BASE_ADDRESS_MEM_TYPE_64;
408 }
409
410 /* map physical memory */
411 pci_dev->v_addrs[i].u.r_virtbase = mmap(NULL, cur_region->size,
412 PROT_WRITE | PROT_READ,
413 MAP_SHARED,
414 cur_region->resource_fd,
415 (off_t)0);
416
417 if (pci_dev->v_addrs[i].u.r_virtbase == MAP_FAILED) {
418 pci_dev->v_addrs[i].u.r_virtbase = NULL;
419 error_setg_errno(errp, errno, "Couldn't mmap 0x%" PRIx64 "!",
420 cur_region->base_addr);
421 return;
422 }
423
424 pci_dev->v_addrs[i].r_size = cur_region->size;
425 pci_dev->v_addrs[i].e_size = 0;
426
427 /* add offset */
428 pci_dev->v_addrs[i].u.r_virtbase +=
429 (cur_region->base_addr & 0xFFF);
430
431 if (cur_region->size & 0xFFF) {
432 error_report("PCI region %d at address 0x%" PRIx64 " has "
433 "size 0x%" PRIx64 ", which is not a multiple of "
434 "4K. You might experience some performance hit "
435 "due to that.",
436 i, cur_region->base_addr, cur_region->size);
437 memory_region_init_io(&pci_dev->v_addrs[i].real_iomem,
438 OBJECT(pci_dev), &slow_bar_ops,
439 &pci_dev->v_addrs[i],
440 "assigned-dev-slow-bar",
441 cur_region->size);
442 } else {
443 void *virtbase = pci_dev->v_addrs[i].u.r_virtbase;
444 char name[32];
445 snprintf(name, sizeof(name), "%s.bar%d",
446 object_get_typename(OBJECT(pci_dev)), i);
447 memory_region_init_ram_ptr(&pci_dev->v_addrs[i].real_iomem,
448 OBJECT(pci_dev), name,
449 cur_region->size, virtbase);
450 vmstate_register_ram(&pci_dev->v_addrs[i].real_iomem,
451 &pci_dev->dev.qdev);
452 }
453
454 assigned_dev_iomem_setup(&pci_dev->dev, i, cur_region->size);
455 pci_register_bar((PCIDevice *) pci_dev, i, t,
456 &pci_dev->v_addrs[i].container);
457 continue;
458 } else {
459 /* handle port io regions */
460 uint32_t val;
461 int ret;
462
463 /* Test kernel support for ioport resource read/write. Old
464 * kernels return EIO. New kernels only allow 1/2/4 byte reads
465 * so should return EINVAL for a 3 byte read */
466 ret = pread(pci_dev->v_addrs[i].region->resource_fd, &val, 3, 0);
467 if (ret >= 0) {
468 error_report("Unexpected return from I/O port read: %d", ret);
469 abort();
470 } else if (errno != EINVAL) {
471 error_report("Kernel doesn't support ioport resource "
472 "access, hiding this region.");
473 close(pci_dev->v_addrs[i].region->resource_fd);
474 cur_region->valid = 0;
475 continue;
476 }
477
478 pci_dev->v_addrs[i].u.r_baseport = cur_region->base_addr;
479 pci_dev->v_addrs[i].r_size = cur_region->size;
480 pci_dev->v_addrs[i].e_size = 0;
481
482 assigned_dev_ioport_setup(&pci_dev->dev, i, cur_region->size);
483 pci_register_bar((PCIDevice *) pci_dev, i,
484 PCI_BASE_ADDRESS_SPACE_IO,
485 &pci_dev->v_addrs[i].container);
486 }
487 }
488
489 /* success */
490 }
491
492 static void get_real_id(const char *devpath, const char *idname, uint16_t *val,
493 Error **errp)
494 {
495 FILE *f;
496 char name[128];
497 long id;
498
499 snprintf(name, sizeof(name), "%s%s", devpath, idname);
500 f = fopen(name, "r");
501 if (f == NULL) {
502 error_setg_file_open(errp, errno, name);
503 return;
504 }
505 if (fscanf(f, "%li\n", &id) == 1) {
506 *val = id;
507 } else {
508 error_setg(errp, "Failed to parse contents of '%s'", name);
509 }
510 fclose(f);
511 }
512
513 static void get_real_vendor_id(const char *devpath, uint16_t *val,
514 Error **errp)
515 {
516 get_real_id(devpath, "vendor", val, errp);
517 }
518
519 static void get_real_device_id(const char *devpath, uint16_t *val,
520 Error **errp)
521 {
522 get_real_id(devpath, "device", val, errp);
523 }
524
525 static void get_real_device(AssignedDevice *pci_dev, Error **errp)
526 {
527 char dir[128], name[128];
528 int fd, r = 0;
529 FILE *f;
530 uint64_t start, end, size, flags;
531 uint16_t id;
532 PCIRegion *rp;
533 PCIDevRegions *dev = &pci_dev->real_device;
534 Error *local_err = NULL;
535
536 dev->region_number = 0;
537
538 snprintf(dir, sizeof(dir), "/sys/bus/pci/devices/%04x:%02x:%02x.%x/",
539 pci_dev->host.domain, pci_dev->host.bus,
540 pci_dev->host.slot, pci_dev->host.function);
541
542 snprintf(name, sizeof(name), "%sconfig", dir);
543
544 if (pci_dev->configfd_name && *pci_dev->configfd_name) {
545 dev->config_fd = monitor_fd_param(cur_mon, pci_dev->configfd_name,
546 &local_err);
547 if (local_err) {
548 error_propagate(errp, local_err);
549 return;
550 }
551 } else {
552 dev->config_fd = open(name, O_RDWR);
553
554 if (dev->config_fd == -1) {
555 error_setg_file_open(errp, errno, name);
556 return;
557 }
558 }
559 again:
560 r = read(dev->config_fd, pci_dev->dev.config,
561 pci_config_size(&pci_dev->dev));
562 if (r < 0) {
563 if (errno == EINTR || errno == EAGAIN) {
564 goto again;
565 }
566 error_setg_errno(errp, errno, "read(\"%s\")",
567 (pci_dev->configfd_name && *pci_dev->configfd_name) ?
568 pci_dev->configfd_name : name);
569 return;
570 }
571
572 /* Restore or clear multifunction, this is always controlled by qemu */
573 if (pci_dev->dev.cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
574 pci_dev->dev.config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION;
575 } else {
576 pci_dev->dev.config[PCI_HEADER_TYPE] &= ~PCI_HEADER_TYPE_MULTI_FUNCTION;
577 }
578
579 /* Clear host resource mapping info. If we choose not to register a
580 * BAR, such as might be the case with the option ROM, we can get
581 * confusing, unwritable, residual addresses from the host here. */
582 memset(&pci_dev->dev.config[PCI_BASE_ADDRESS_0], 0, 24);
583 memset(&pci_dev->dev.config[PCI_ROM_ADDRESS], 0, 4);
584
585 snprintf(name, sizeof(name), "%sresource", dir);
586
587 f = fopen(name, "r");
588 if (f == NULL) {
589 error_setg_file_open(errp, errno, name);
590 return;
591 }
592
593 for (r = 0; r < PCI_ROM_SLOT; r++) {
594 if (fscanf(f, "%" SCNi64 " %" SCNi64 " %" SCNi64 "\n",
595 &start, &end, &flags) != 3) {
596 break;
597 }
598
599 rp = dev->regions + r;
600 rp->valid = 0;
601 rp->resource_fd = -1;
602 size = end - start + 1;
603 flags &= IORESOURCE_IO | IORESOURCE_MEM | IORESOURCE_PREFETCH
604 | IORESOURCE_MEM_64;
605 if (size == 0 || (flags & ~IORESOURCE_PREFETCH) == 0) {
606 continue;
607 }
608 if (flags & IORESOURCE_MEM) {
609 flags &= ~IORESOURCE_IO;
610 } else {
611 flags &= ~IORESOURCE_PREFETCH;
612 }
613 snprintf(name, sizeof(name), "%sresource%d", dir, r);
614 fd = open(name, O_RDWR);
615 if (fd == -1) {
616 continue;
617 }
618 rp->resource_fd = fd;
619
620 rp->type = flags;
621 rp->valid = 1;
622 rp->base_addr = start;
623 rp->size = size;
624 pci_dev->v_addrs[r].region = rp;
625 DEBUG("region %d size %" PRIu64 " start 0x%" PRIx64
626 " type %d resource_fd %d\n",
627 r, rp->size, start, rp->type, rp->resource_fd);
628 }
629
630 fclose(f);
631
632 /* read and fill vendor ID */
633 get_real_vendor_id(dir, &id, &local_err);
634 if (local_err) {
635 error_propagate(errp, local_err);
636 return;
637 }
638 pci_dev->dev.config[0] = id & 0xff;
639 pci_dev->dev.config[1] = (id & 0xff00) >> 8;
640
641 /* read and fill device ID */
642 get_real_device_id(dir, &id, &local_err);
643 if (local_err) {
644 error_propagate(errp, local_err);
645 return;
646 }
647 pci_dev->dev.config[2] = id & 0xff;
648 pci_dev->dev.config[3] = (id & 0xff00) >> 8;
649
650 pci_word_test_and_clear_mask(pci_dev->emulate_config_write + PCI_COMMAND,
651 PCI_COMMAND_MASTER | PCI_COMMAND_INTX_DISABLE);
652
653 dev->region_number = r;
654 }
655
656 static void free_msi_virqs(AssignedDevice *dev)
657 {
658 int i;
659
660 for (i = 0; i < dev->msi_virq_nr; i++) {
661 if (dev->msi_virq[i] >= 0) {
662 kvm_irqchip_release_virq(kvm_state, dev->msi_virq[i]);
663 dev->msi_virq[i] = -1;
664 }
665 }
666 g_free(dev->msi_virq);
667 dev->msi_virq = NULL;
668 dev->msi_virq_nr = 0;
669 }
670
671 static void free_assigned_device(AssignedDevice *dev)
672 {
673 int i;
674
675 if (dev->cap.available & ASSIGNED_DEVICE_CAP_MSIX) {
676 assigned_dev_unregister_msix_mmio(dev);
677 }
678 for (i = 0; i < dev->real_device.region_number; i++) {
679 PCIRegion *pci_region = &dev->real_device.regions[i];
680 AssignedDevRegion *region = &dev->v_addrs[i];
681
682 if (!pci_region->valid) {
683 continue;
684 }
685 if (pci_region->type & IORESOURCE_IO) {
686 if (region->u.r_baseport) {
687 memory_region_del_subregion(&region->container,
688 &region->real_iomem);
689 }
690 } else if (pci_region->type & IORESOURCE_MEM) {
691 if (region->u.r_virtbase) {
692 memory_region_del_subregion(&region->container,
693 &region->real_iomem);
694
695 /* Remove MSI-X table subregion */
696 if (pci_region->base_addr <= dev->msix_table_addr &&
697 pci_region->base_addr + pci_region->size >
698 dev->msix_table_addr) {
699 memory_region_del_subregion(&region->container,
700 &dev->mmio);
701 }
702 if (munmap(region->u.r_virtbase,
703 (pci_region->size + 0xFFF) & 0xFFFFF000)) {
704 error_report("Failed to unmap assigned device region: %s",
705 strerror(errno));
706 }
707 }
708 }
709 if (pci_region->resource_fd >= 0) {
710 close(pci_region->resource_fd);
711 }
712 }
713
714 if (dev->real_device.config_fd >= 0) {
715 close(dev->real_device.config_fd);
716 }
717
718 free_msi_virqs(dev);
719 }
720
721 /* This function tries to determine the cause of the PCI assignment failure. It
722 * always returns the cause as a dynamically allocated, human readable string.
723 * If the function fails to determine the cause for any internal reason, then
724 * the returned string will state that fact.
725 */
726 static char *assign_failed_examine(const AssignedDevice *dev)
727 {
728 char name[PATH_MAX], dir[PATH_MAX], driver[PATH_MAX] = {}, *ns;
729 uint16_t vendor_id, device_id;
730 int r;
731 Error *local_err = NULL;
732
733 snprintf(dir, sizeof(dir), "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/",
734 dev->host.domain, dev->host.bus, dev->host.slot,
735 dev->host.function);
736
737 snprintf(name, sizeof(name), "%sdriver", dir);
738
739 r = readlink(name, driver, sizeof(driver));
740 if ((r <= 0) || r >= sizeof(driver)) {
741 goto fail;
742 }
743
744 driver[r] = 0;
745 ns = strrchr(driver, '/');
746 if (!ns) {
747 goto fail;
748 }
749
750 ns++;
751
752 if ((get_real_vendor_id(dir, &vendor_id, &local_err), local_err) ||
753 (get_real_device_id(dir, &device_id, &local_err), local_err)) {
754 /* We're already analyzing an assignment error, so we suppress this
755 * one just like the others above.
756 */
757 error_free(local_err);
758 goto fail;
759 }
760
761 return g_strdup_printf(
762 "*** The driver '%s' is occupying your device %04x:%02x:%02x.%x.\n"
763 "***\n"
764 "*** You can try the following commands to free it:\n"
765 "***\n"
766 "*** $ echo \"%04x %04x\" > /sys/bus/pci/drivers/pci-stub/new_id\n"
767 "*** $ echo \"%04x:%02x:%02x.%x\" > /sys/bus/pci/drivers/%s/unbind\n"
768 "*** $ echo \"%04x:%02x:%02x.%x\" > /sys/bus/pci/drivers/"
769 "pci-stub/bind\n"
770 "*** $ echo \"%04x %04x\" > /sys/bus/pci/drivers/pci-stub/remove_id\n"
771 "***\n",
772 ns, dev->host.domain, dev->host.bus, dev->host.slot,
773 dev->host.function, vendor_id, device_id,
774 dev->host.domain, dev->host.bus, dev->host.slot, dev->host.function,
775 ns, dev->host.domain, dev->host.bus, dev->host.slot,
776 dev->host.function, vendor_id, device_id);
777
778 fail:
779 return g_strdup("Couldn't find out why.\n");
780 }
781
782 static void assign_device(AssignedDevice *dev, Error **errp)
783 {
784 uint32_t flags = KVM_DEV_ASSIGN_ENABLE_IOMMU;
785 int r;
786
787 /* Only pass non-zero PCI segment to capable module */
788 if (!kvm_check_extension(kvm_state, KVM_CAP_PCI_SEGMENT) &&
789 dev->host.domain) {
790 error_setg(errp, "Can't assign device inside non-zero PCI segment "
791 "as this KVM module doesn't support it.");
792 return;
793 }
794
795 if (!kvm_check_extension(kvm_state, KVM_CAP_IOMMU)) {
796 error_setg(errp, "No IOMMU found. Unable to assign device \"%s\"",
797 dev->dev.qdev.id);
798 return;
799 }
800
801 if (dev->features & ASSIGNED_DEVICE_SHARE_INTX_MASK &&
802 kvm_has_intx_set_mask()) {
803 flags |= KVM_DEV_ASSIGN_PCI_2_3;
804 }
805
806 r = kvm_device_pci_assign(kvm_state, &dev->host, flags, &dev->dev_id);
807 if (r < 0) {
808 switch (r) {
809 case -EBUSY: {
810 char *cause;
811
812 cause = assign_failed_examine(dev);
813 error_setg_errno(errp, -r, "Failed to assign device \"%s\"",
814 dev->dev.qdev.id);
815 error_append_hint(errp, "%s", cause);
816 g_free(cause);
817 break;
818 }
819 default:
820 error_setg_errno(errp, -r, "Failed to assign device \"%s\"",
821 dev->dev.qdev.id);
822 break;
823 }
824 }
825 }
826
827 static void verify_irqchip_in_kernel(Error **errp)
828 {
829 if (kvm_irqchip_in_kernel()) {
830 return;
831 }
832 error_setg(errp, "pci-assign requires KVM with in-kernel irqchip enabled");
833 }
834
835 static int assign_intx(AssignedDevice *dev, Error **errp)
836 {
837 AssignedIRQType new_type;
838 PCIINTxRoute intx_route;
839 bool intx_host_msi;
840 int r;
841 Error *local_err = NULL;
842
843 /* Interrupt PIN 0 means don't use INTx */
844 if (assigned_dev_pci_read_byte(&dev->dev, PCI_INTERRUPT_PIN) == 0) {
845 pci_device_set_intx_routing_notifier(&dev->dev, NULL);
846 return 0;
847 }
848
849 verify_irqchip_in_kernel(&local_err);
850 if (local_err) {
851 error_propagate(errp, local_err);
852 return -ENOTSUP;
853 }
854
855 pci_device_set_intx_routing_notifier(&dev->dev,
856 assigned_dev_update_irq_routing);
857
858 intx_route = pci_device_route_intx_to_irq(&dev->dev, dev->intpin);
859 assert(intx_route.mode != PCI_INTX_INVERTED);
860
861 if (!pci_intx_route_changed(&dev->intx_route, &intx_route)) {
862 return 0;
863 }
864
865 switch (dev->assigned_irq_type) {
866 case ASSIGNED_IRQ_INTX_HOST_INTX:
867 case ASSIGNED_IRQ_INTX_HOST_MSI:
868 intx_host_msi = dev->assigned_irq_type == ASSIGNED_IRQ_INTX_HOST_MSI;
869 r = kvm_device_intx_deassign(kvm_state, dev->dev_id, intx_host_msi);
870 break;
871 case ASSIGNED_IRQ_MSI:
872 r = kvm_device_msi_deassign(kvm_state, dev->dev_id);
873 break;
874 case ASSIGNED_IRQ_MSIX:
875 r = kvm_device_msix_deassign(kvm_state, dev->dev_id);
876 break;
877 default:
878 r = 0;
879 break;
880 }
881 if (r) {
882 perror("assign_intx: deassignment of previous interrupt failed");
883 }
884 dev->assigned_irq_type = ASSIGNED_IRQ_NONE;
885
886 if (intx_route.mode == PCI_INTX_DISABLED) {
887 dev->intx_route = intx_route;
888 return 0;
889 }
890
891 retry:
892 if (dev->features & ASSIGNED_DEVICE_PREFER_MSI_MASK &&
893 dev->cap.available & ASSIGNED_DEVICE_CAP_MSI) {
894 intx_host_msi = true;
895 new_type = ASSIGNED_IRQ_INTX_HOST_MSI;
896 } else {
897 intx_host_msi = false;
898 new_type = ASSIGNED_IRQ_INTX_HOST_INTX;
899 }
900
901 r = kvm_device_intx_assign(kvm_state, dev->dev_id, intx_host_msi,
902 intx_route.irq);
903 if (r < 0) {
904 if (r == -EIO && !(dev->features & ASSIGNED_DEVICE_PREFER_MSI_MASK) &&
905 dev->cap.available & ASSIGNED_DEVICE_CAP_MSI) {
906 /* Retry with host-side MSI. There might be an IRQ conflict and
907 * either the kernel or the device doesn't support sharing. */
908 error_report("Host-side INTx sharing not supported, "
909 "using MSI instead");
910 error_printf("Some devices do not work properly in this mode.\n");
911 dev->features |= ASSIGNED_DEVICE_PREFER_MSI_MASK;
912 goto retry;
913 }
914 error_setg_errno(errp, -r, "Failed to assign irq for \"%s\"",
915 dev->dev.qdev.id);
916 error_append_hint(errp, "Perhaps you are assigning a device "
917 "that shares an IRQ with another device?\n");
918 return r;
919 }
920
921 dev->intx_route = intx_route;
922 dev->assigned_irq_type = new_type;
923 return r;
924 }
925
926 static void deassign_device(AssignedDevice *dev)
927 {
928 int r;
929
930 r = kvm_device_pci_deassign(kvm_state, dev->dev_id);
931 assert(r == 0);
932 }
933
934 /* The pci config space got updated. Check if irq numbers have changed
935 * for our devices
936 */
937 static void assigned_dev_update_irq_routing(PCIDevice *dev)
938 {
939 AssignedDevice *assigned_dev = PCI_ASSIGN(dev);
940 Error *err = NULL;
941 int r;
942
943 r = assign_intx(assigned_dev, &err);
944 if (r < 0) {
945 error_report_err(err);
946 err = NULL;
947 qdev_unplug(&dev->qdev, &err);
948 assert(!err);
949 }
950 }
951
952 static void assigned_dev_update_msi(PCIDevice *pci_dev)
953 {
954 AssignedDevice *assigned_dev = PCI_ASSIGN(pci_dev);
955 uint8_t ctrl_byte = pci_get_byte(pci_dev->config + pci_dev->msi_cap +
956 PCI_MSI_FLAGS);
957 int r;
958
959 /* Some guests gratuitously disable MSI even if they're not using it,
960 * try to catch this by only deassigning irqs if the guest is using
961 * MSI or intends to start. */
962 if (assigned_dev->assigned_irq_type == ASSIGNED_IRQ_MSI ||
963 (ctrl_byte & PCI_MSI_FLAGS_ENABLE)) {
964 r = kvm_device_msi_deassign(kvm_state, assigned_dev->dev_id);
965 /* -ENXIO means no assigned irq */
966 if (r && r != -ENXIO) {
967 perror("assigned_dev_update_msi: deassign irq");
968 }
969
970 free_msi_virqs(assigned_dev);
971
972 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_NONE;
973 pci_device_set_intx_routing_notifier(pci_dev, NULL);
974 }
975
976 if (ctrl_byte & PCI_MSI_FLAGS_ENABLE) {
977 int virq;
978
979 virq = kvm_irqchip_add_msi_route(kvm_state, 0, pci_dev);
980 if (virq < 0) {
981 perror("assigned_dev_update_msi: kvm_irqchip_add_msi_route");
982 return;
983 }
984
985 assigned_dev->msi_virq = g_malloc(sizeof(*assigned_dev->msi_virq));
986 assigned_dev->msi_virq_nr = 1;
987 assigned_dev->msi_virq[0] = virq;
988 if (kvm_device_msi_assign(kvm_state, assigned_dev->dev_id, virq) < 0) {
989 perror("assigned_dev_update_msi: kvm_device_msi_assign");
990 }
991
992 assigned_dev->intx_route.mode = PCI_INTX_DISABLED;
993 assigned_dev->intx_route.irq = -1;
994 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_MSI;
995 } else {
996 Error *local_err = NULL;
997
998 assign_intx(assigned_dev, &local_err);
999 if (local_err) {
1000 error_report_err(local_err);
1001 }
1002 }
1003 }
1004
1005 static void assigned_dev_update_msi_msg(PCIDevice *pci_dev)
1006 {
1007 AssignedDevice *assigned_dev = PCI_ASSIGN(pci_dev);
1008 uint8_t ctrl_byte = pci_get_byte(pci_dev->config + pci_dev->msi_cap +
1009 PCI_MSI_FLAGS);
1010
1011 if (assigned_dev->assigned_irq_type != ASSIGNED_IRQ_MSI ||
1012 !(ctrl_byte & PCI_MSI_FLAGS_ENABLE)) {
1013 return;
1014 }
1015
1016 kvm_irqchip_update_msi_route(kvm_state, assigned_dev->msi_virq[0],
1017 msi_get_message(pci_dev, 0), pci_dev);
1018 kvm_irqchip_commit_routes(kvm_state);
1019 }
1020
1021 static bool assigned_dev_msix_masked(MSIXTableEntry *entry)
1022 {
1023 return (entry->ctrl & cpu_to_le32(0x1)) != 0;
1024 }
1025
1026 /*
1027 * When MSI-X is first enabled the vector table typically has all the
1028 * vectors masked, so we can't use that as the obvious test to figure out
1029 * how many vectors to initially enable. Instead we look at the data field
1030 * because this is what worked for pci-assign for a long time. This makes
1031 * sure the physical MSI-X state tracks the guest's view, which is important
1032 * for some VF/PF and PF/fw communication channels.
1033 */
1034 static bool assigned_dev_msix_skipped(MSIXTableEntry *entry)
1035 {
1036 return !entry->data;
1037 }
1038
1039 static int assigned_dev_update_msix_mmio(PCIDevice *pci_dev)
1040 {
1041 AssignedDevice *adev = PCI_ASSIGN(pci_dev);
1042 uint16_t entries_nr = 0;
1043 int i, r = 0;
1044 MSIXTableEntry *entry = adev->msix_table;
1045
1046 /* Get the usable entry number for allocating */
1047 for (i = 0; i < adev->msix_max; i++, entry++) {
1048 if (assigned_dev_msix_skipped(entry)) {
1049 continue;
1050 }
1051 entries_nr++;
1052 }
1053
1054 DEBUG("MSI-X entries: %d\n", entries_nr);
1055
1056 /* It's valid to enable MSI-X with all entries masked */
1057 if (!entries_nr) {
1058 return 0;
1059 }
1060
1061 r = kvm_device_msix_init_vectors(kvm_state, adev->dev_id, entries_nr);
1062 if (r != 0) {
1063 error_report("fail to set MSI-X entry number for MSIX! %s",
1064 strerror(-r));
1065 return r;
1066 }
1067
1068 free_msi_virqs(adev);
1069
1070 adev->msi_virq_nr = adev->msix_max;
1071 adev->msi_virq = g_malloc(adev->msix_max * sizeof(*adev->msi_virq));
1072
1073 entry = adev->msix_table;
1074 for (i = 0; i < adev->msix_max; i++, entry++) {
1075 adev->msi_virq[i] = -1;
1076
1077 if (assigned_dev_msix_skipped(entry)) {
1078 continue;
1079 }
1080
1081 r = kvm_irqchip_add_msi_route(kvm_state, i, pci_dev);
1082 if (r < 0) {
1083 return r;
1084 }
1085 adev->msi_virq[i] = r;
1086
1087 DEBUG("MSI-X vector %d, gsi %d, addr %08x_%08x, data %08x\n", i,
1088 r, entry->addr_hi, entry->addr_lo, entry->data);
1089
1090 r = kvm_device_msix_set_vector(kvm_state, adev->dev_id, i,
1091 adev->msi_virq[i]);
1092 if (r) {
1093 error_report("fail to set MSI-X entry! %s", strerror(-r));
1094 break;
1095 }
1096 }
1097
1098 return r;
1099 }
1100
1101 static void assigned_dev_update_msix(PCIDevice *pci_dev)
1102 {
1103 AssignedDevice *assigned_dev = PCI_ASSIGN(pci_dev);
1104 uint16_t ctrl_word = pci_get_word(pci_dev->config + pci_dev->msix_cap +
1105 PCI_MSIX_FLAGS);
1106 int r;
1107
1108 /* Some guests gratuitously disable MSIX even if they're not using it,
1109 * try to catch this by only deassigning irqs if the guest is using
1110 * MSIX or intends to start. */
1111 if ((assigned_dev->assigned_irq_type == ASSIGNED_IRQ_MSIX) ||
1112 (ctrl_word & PCI_MSIX_FLAGS_ENABLE)) {
1113 r = kvm_device_msix_deassign(kvm_state, assigned_dev->dev_id);
1114 /* -ENXIO means no assigned irq */
1115 if (r && r != -ENXIO) {
1116 perror("assigned_dev_update_msix: deassign irq");
1117 }
1118
1119 free_msi_virqs(assigned_dev);
1120
1121 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_NONE;
1122 pci_device_set_intx_routing_notifier(pci_dev, NULL);
1123 }
1124
1125 if (ctrl_word & PCI_MSIX_FLAGS_ENABLE) {
1126 if (assigned_dev_update_msix_mmio(pci_dev) < 0) {
1127 perror("assigned_dev_update_msix_mmio");
1128 return;
1129 }
1130
1131 if (assigned_dev->msi_virq_nr > 0) {
1132 if (kvm_device_msix_assign(kvm_state, assigned_dev->dev_id) < 0) {
1133 perror("assigned_dev_enable_msix: assign irq");
1134 return;
1135 }
1136 }
1137 assigned_dev->intx_route.mode = PCI_INTX_DISABLED;
1138 assigned_dev->intx_route.irq = -1;
1139 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_MSIX;
1140 } else {
1141 Error *local_err = NULL;
1142
1143 assign_intx(assigned_dev, &local_err);
1144 if (local_err) {
1145 error_report_err(local_err);
1146 }
1147 }
1148 }
1149
1150 static uint32_t assigned_dev_pci_read_config(PCIDevice *pci_dev,
1151 uint32_t address, int len)
1152 {
1153 AssignedDevice *assigned_dev = PCI_ASSIGN(pci_dev);
1154 uint32_t virt_val = pci_default_read_config(pci_dev, address, len);
1155 uint32_t real_val, emulate_mask, full_emulation_mask;
1156
1157 emulate_mask = 0;
1158 memcpy(&emulate_mask, assigned_dev->emulate_config_read + address, len);
1159 emulate_mask = le32_to_cpu(emulate_mask);
1160
1161 full_emulation_mask = 0xffffffff >> (32 - len * 8);
1162
1163 if (emulate_mask != full_emulation_mask) {
1164 real_val = assigned_dev_pci_read(pci_dev, address, len);
1165 return (virt_val & emulate_mask) | (real_val & ~emulate_mask);
1166 } else {
1167 return virt_val;
1168 }
1169 }
1170
1171 static void assigned_dev_pci_write_config(PCIDevice *pci_dev, uint32_t address,
1172 uint32_t val, int len)
1173 {
1174 AssignedDevice *assigned_dev = PCI_ASSIGN(pci_dev);
1175 uint16_t old_cmd = pci_get_word(pci_dev->config + PCI_COMMAND);
1176 uint32_t emulate_mask, full_emulation_mask;
1177 int ret;
1178
1179 pci_default_write_config(pci_dev, address, val, len);
1180
1181 if (kvm_has_intx_set_mask() &&
1182 range_covers_byte(address, len, PCI_COMMAND + 1)) {
1183 bool intx_masked = (pci_get_word(pci_dev->config + PCI_COMMAND) &
1184 PCI_COMMAND_INTX_DISABLE);
1185
1186 if (intx_masked != !!(old_cmd & PCI_COMMAND_INTX_DISABLE)) {
1187 ret = kvm_device_intx_set_mask(kvm_state, assigned_dev->dev_id,
1188 intx_masked);
1189 if (ret) {
1190 perror("assigned_dev_pci_write_config: set intx mask");
1191 }
1192 }
1193 }
1194 if (assigned_dev->cap.available & ASSIGNED_DEVICE_CAP_MSI) {
1195 if (range_covers_byte(address, len,
1196 pci_dev->msi_cap + PCI_MSI_FLAGS)) {
1197 assigned_dev_update_msi(pci_dev);
1198 } else if (ranges_overlap(address, len, /* 32bit MSI only */
1199 pci_dev->msi_cap + PCI_MSI_ADDRESS_LO, 6)) {
1200 assigned_dev_update_msi_msg(pci_dev);
1201 }
1202 }
1203 if (assigned_dev->cap.available & ASSIGNED_DEVICE_CAP_MSIX) {
1204 if (range_covers_byte(address, len,
1205 pci_dev->msix_cap + PCI_MSIX_FLAGS + 1)) {
1206 assigned_dev_update_msix(pci_dev);
1207 }
1208 }
1209
1210 emulate_mask = 0;
1211 memcpy(&emulate_mask, assigned_dev->emulate_config_write + address, len);
1212 emulate_mask = le32_to_cpu(emulate_mask);
1213
1214 full_emulation_mask = 0xffffffff >> (32 - len * 8);
1215
1216 if (emulate_mask != full_emulation_mask) {
1217 if (emulate_mask) {
1218 val &= ~emulate_mask;
1219 val |= assigned_dev_pci_read(pci_dev, address, len) & emulate_mask;
1220 }
1221 assigned_dev_pci_write(pci_dev, address, val, len);
1222 }
1223 }
1224
1225 static void assigned_dev_setup_cap_read(AssignedDevice *dev, uint32_t offset,
1226 uint32_t len)
1227 {
1228 assigned_dev_direct_config_read(dev, offset, len);
1229 assigned_dev_emulate_config_read(dev, offset + PCI_CAP_LIST_NEXT, 1);
1230 }
1231
1232 static int assigned_device_pci_cap_init(PCIDevice *pci_dev, Error **errp)
1233 {
1234 AssignedDevice *dev = PCI_ASSIGN(pci_dev);
1235 PCIRegion *pci_region = dev->real_device.regions;
1236 int ret, pos;
1237 Error *local_err = NULL;
1238
1239 /* Clear initial capabilities pointer and status copied from hw */
1240 pci_set_byte(pci_dev->config + PCI_CAPABILITY_LIST, 0);
1241 pci_set_word(pci_dev->config + PCI_STATUS,
1242 pci_get_word(pci_dev->config + PCI_STATUS) &
1243 ~PCI_STATUS_CAP_LIST);
1244
1245 /* Expose MSI capability
1246 * MSI capability is the 1st capability in capability config */
1247 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_MSI, 0);
1248 if (pos != 0 && kvm_check_extension(kvm_state, KVM_CAP_ASSIGN_DEV_IRQ)) {
1249 verify_irqchip_in_kernel(&local_err);
1250 if (local_err) {
1251 error_propagate(errp, local_err);
1252 return -ENOTSUP;
1253 }
1254 dev->cap.available |= ASSIGNED_DEVICE_CAP_MSI;
1255 /* Only 32-bit/no-mask currently supported */
1256 ret = pci_add_capability2(pci_dev, PCI_CAP_ID_MSI, pos, 10,
1257 &local_err);
1258 if (ret < 0) {
1259 error_propagate(errp, local_err);
1260 return ret;
1261 }
1262 pci_dev->msi_cap = pos;
1263
1264 pci_set_word(pci_dev->config + pos + PCI_MSI_FLAGS,
1265 pci_get_word(pci_dev->config + pos + PCI_MSI_FLAGS) &
1266 PCI_MSI_FLAGS_QMASK);
1267 pci_set_long(pci_dev->config + pos + PCI_MSI_ADDRESS_LO, 0);
1268 pci_set_word(pci_dev->config + pos + PCI_MSI_DATA_32, 0);
1269
1270 /* Set writable fields */
1271 pci_set_word(pci_dev->wmask + pos + PCI_MSI_FLAGS,
1272 PCI_MSI_FLAGS_QSIZE | PCI_MSI_FLAGS_ENABLE);
1273 pci_set_long(pci_dev->wmask + pos + PCI_MSI_ADDRESS_LO, 0xfffffffc);
1274 pci_set_word(pci_dev->wmask + pos + PCI_MSI_DATA_32, 0xffff);
1275 }
1276 /* Expose MSI-X capability */
1277 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_MSIX, 0);
1278 if (pos != 0 && kvm_device_msix_supported(kvm_state)) {
1279 int bar_nr;
1280 uint32_t msix_table_entry;
1281 uint16_t msix_max;
1282
1283 verify_irqchip_in_kernel(&local_err);
1284 if (local_err) {
1285 error_propagate(errp, local_err);
1286 return -ENOTSUP;
1287 }
1288 dev->cap.available |= ASSIGNED_DEVICE_CAP_MSIX;
1289 ret = pci_add_capability2(pci_dev, PCI_CAP_ID_MSIX, pos, 12,
1290 &local_err);
1291 if (ret < 0) {
1292 error_propagate(errp, local_err);
1293 return ret;
1294 }
1295 pci_dev->msix_cap = pos;
1296
1297 msix_max = (pci_get_word(pci_dev->config + pos + PCI_MSIX_FLAGS) &
1298 PCI_MSIX_FLAGS_QSIZE) + 1;
1299 msix_max = MIN(msix_max, KVM_MAX_MSIX_PER_DEV);
1300 pci_set_word(pci_dev->config + pos + PCI_MSIX_FLAGS, msix_max - 1);
1301
1302 /* Only enable and function mask bits are writable */
1303 pci_set_word(pci_dev->wmask + pos + PCI_MSIX_FLAGS,
1304 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
1305
1306 msix_table_entry = pci_get_long(pci_dev->config + pos + PCI_MSIX_TABLE);
1307 bar_nr = msix_table_entry & PCI_MSIX_FLAGS_BIRMASK;
1308 msix_table_entry &= ~PCI_MSIX_FLAGS_BIRMASK;
1309 dev->msix_table_addr = pci_region[bar_nr].base_addr + msix_table_entry;
1310 dev->msix_table_size = msix_max * sizeof(MSIXTableEntry);
1311 dev->msix_max = msix_max;
1312 }
1313
1314 /* Minimal PM support, nothing writable, device appears to NAK changes */
1315 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_PM, 0);
1316 if (pos) {
1317 uint16_t pmc;
1318
1319 ret = pci_add_capability2(pci_dev, PCI_CAP_ID_PM, pos, PCI_PM_SIZEOF,
1320 &local_err);
1321 if (ret < 0) {
1322 error_propagate(errp, local_err);
1323 return ret;
1324 }
1325
1326 assigned_dev_setup_cap_read(dev, pos, PCI_PM_SIZEOF);
1327
1328 pmc = pci_get_word(pci_dev->config + pos + PCI_CAP_FLAGS);
1329 pmc &= (PCI_PM_CAP_VER_MASK | PCI_PM_CAP_DSI);
1330 pci_set_word(pci_dev->config + pos + PCI_CAP_FLAGS, pmc);
1331
1332 /* assign_device will bring the device up to D0, so we don't need
1333 * to worry about doing that ourselves here. */
1334 pci_set_word(pci_dev->config + pos + PCI_PM_CTRL,
1335 PCI_PM_CTRL_NO_SOFT_RESET);
1336
1337 pci_set_byte(pci_dev->config + pos + PCI_PM_PPB_EXTENSIONS, 0);
1338 pci_set_byte(pci_dev->config + pos + PCI_PM_DATA_REGISTER, 0);
1339 }
1340
1341 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_EXP, 0);
1342 if (pos) {
1343 uint8_t version, size = 0;
1344 uint16_t type, devctl, lnksta;
1345 uint32_t devcap, lnkcap;
1346
1347 version = pci_get_byte(pci_dev->config + pos + PCI_EXP_FLAGS);
1348 version &= PCI_EXP_FLAGS_VERS;
1349 if (version == 1) {
1350 size = 0x14;
1351 } else if (version == 2) {
1352 /*
1353 * Check for non-std size, accept reduced size to 0x34,
1354 * which is what bcm5761 implemented, violating the
1355 * PCIe v3.0 spec that regs should exist and be read as 0,
1356 * not optionally provided and shorten the struct size.
1357 */
1358 size = MIN(0x3c, PCI_CONFIG_SPACE_SIZE - pos);
1359 if (size < 0x34) {
1360 error_setg(errp, "Invalid size PCIe cap-id 0x%x",
1361 PCI_CAP_ID_EXP);
1362 return -EINVAL;
1363 } else if (size != 0x3c) {
1364 error_report("WARNING, %s: PCIe cap-id 0x%x has "
1365 "non-standard size 0x%x; std size should be 0x3c",
1366 __func__, PCI_CAP_ID_EXP, size);
1367 }
1368 } else if (version == 0) {
1369 uint16_t vid, did;
1370 vid = pci_get_word(pci_dev->config + PCI_VENDOR_ID);
1371 did = pci_get_word(pci_dev->config + PCI_DEVICE_ID);
1372 if (vid == PCI_VENDOR_ID_INTEL && did == 0x10ed) {
1373 /*
1374 * quirk for Intel 82599 VF with invalid PCIe capability
1375 * version, should really be version 2 (same as PF)
1376 */
1377 size = 0x3c;
1378 }
1379 }
1380
1381 if (size == 0) {
1382 error_setg(errp, "Unsupported PCI express capability version %d",
1383 version);
1384 return -EINVAL;
1385 }
1386
1387 ret = pci_add_capability2(pci_dev, PCI_CAP_ID_EXP, pos, size,
1388 &local_err);
1389 if (ret < 0) {
1390 error_propagate(errp, local_err);
1391 return ret;
1392 }
1393
1394 assigned_dev_setup_cap_read(dev, pos, size);
1395
1396 type = pci_get_word(pci_dev->config + pos + PCI_EXP_FLAGS);
1397 type = (type & PCI_EXP_FLAGS_TYPE) >> 4;
1398 if (type != PCI_EXP_TYPE_ENDPOINT &&
1399 type != PCI_EXP_TYPE_LEG_END && type != PCI_EXP_TYPE_RC_END) {
1400 error_setg(errp, "Device assignment only supports endpoint "
1401 "assignment, device type %d", type);
1402 return -EINVAL;
1403 }
1404
1405 /* capabilities, pass existing read-only copy
1406 * PCI_EXP_FLAGS_IRQ: updated by hardware, should be direct read */
1407
1408 /* device capabilities: hide FLR */
1409 devcap = pci_get_long(pci_dev->config + pos + PCI_EXP_DEVCAP);
1410 devcap &= ~PCI_EXP_DEVCAP_FLR;
1411 pci_set_long(pci_dev->config + pos + PCI_EXP_DEVCAP, devcap);
1412
1413 /* device control: clear all error reporting enable bits, leaving
1414 * only a few host values. Note, these are
1415 * all writable, but not passed to hw.
1416 */
1417 devctl = pci_get_word(pci_dev->config + pos + PCI_EXP_DEVCTL);
1418 devctl = (devctl & (PCI_EXP_DEVCTL_READRQ | PCI_EXP_DEVCTL_PAYLOAD)) |
1419 PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
1420 pci_set_word(pci_dev->config + pos + PCI_EXP_DEVCTL, devctl);
1421 devctl = PCI_EXP_DEVCTL_BCR_FLR | PCI_EXP_DEVCTL_AUX_PME;
1422 pci_set_word(pci_dev->wmask + pos + PCI_EXP_DEVCTL, ~devctl);
1423
1424 /* Clear device status */
1425 pci_set_word(pci_dev->config + pos + PCI_EXP_DEVSTA, 0);
1426
1427 /* Link capabilities, expose links and latencues, clear reporting */
1428 lnkcap = pci_get_long(pci_dev->config + pos + PCI_EXP_LNKCAP);
1429 lnkcap &= (PCI_EXP_LNKCAP_SLS | PCI_EXP_LNKCAP_MLW |
1430 PCI_EXP_LNKCAP_ASPMS | PCI_EXP_LNKCAP_L0SEL |
1431 PCI_EXP_LNKCAP_L1EL);
1432 pci_set_long(pci_dev->config + pos + PCI_EXP_LNKCAP, lnkcap);
1433
1434 /* Link control, pass existing read-only copy. Should be writable? */
1435
1436 /* Link status, only expose current speed and width */
1437 lnksta = pci_get_word(pci_dev->config + pos + PCI_EXP_LNKSTA);
1438 lnksta &= (PCI_EXP_LNKSTA_CLS | PCI_EXP_LNKSTA_NLW);
1439 pci_set_word(pci_dev->config + pos + PCI_EXP_LNKSTA, lnksta);
1440
1441 if (version >= 2) {
1442 /* Slot capabilities, control, status - not needed for endpoints */
1443 pci_set_long(pci_dev->config + pos + PCI_EXP_SLTCAP, 0);
1444 pci_set_word(pci_dev->config + pos + PCI_EXP_SLTCTL, 0);
1445 pci_set_word(pci_dev->config + pos + PCI_EXP_SLTSTA, 0);
1446
1447 /* Root control, capabilities, status - not needed for endpoints */
1448 pci_set_word(pci_dev->config + pos + PCI_EXP_RTCTL, 0);
1449 pci_set_word(pci_dev->config + pos + PCI_EXP_RTCAP, 0);
1450 pci_set_long(pci_dev->config + pos + PCI_EXP_RTSTA, 0);
1451
1452 /* Device capabilities/control 2, pass existing read-only copy */
1453 /* Link control 2, pass existing read-only copy */
1454 }
1455 }
1456
1457 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_PCIX, 0);
1458 if (pos) {
1459 uint16_t cmd;
1460 uint32_t status;
1461
1462 /* Only expose the minimum, 8 byte capability */
1463 ret = pci_add_capability2(pci_dev, PCI_CAP_ID_PCIX, pos, 8,
1464 &local_err);
1465 if (ret < 0) {
1466 error_propagate(errp, local_err);
1467 return ret;
1468 }
1469
1470 assigned_dev_setup_cap_read(dev, pos, 8);
1471
1472 /* Command register, clear upper bits, including extended modes */
1473 cmd = pci_get_word(pci_dev->config + pos + PCI_X_CMD);
1474 cmd &= (PCI_X_CMD_DPERR_E | PCI_X_CMD_ERO | PCI_X_CMD_MAX_READ |
1475 PCI_X_CMD_MAX_SPLIT);
1476 pci_set_word(pci_dev->config + pos + PCI_X_CMD, cmd);
1477
1478 /* Status register, update with emulated PCI bus location, clear
1479 * error bits, leave the rest. */
1480 status = pci_get_long(pci_dev->config + pos + PCI_X_STATUS);
1481 status &= ~(PCI_X_STATUS_BUS | PCI_X_STATUS_DEVFN);
1482 status |= pci_get_bdf(pci_dev);
1483 status &= ~(PCI_X_STATUS_SPL_DISC | PCI_X_STATUS_UNX_SPL |
1484 PCI_X_STATUS_SPL_ERR);
1485 pci_set_long(pci_dev->config + pos + PCI_X_STATUS, status);
1486 }
1487
1488 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_VPD, 0);
1489 if (pos) {
1490 /* Direct R/W passthrough */
1491 ret = pci_add_capability2(pci_dev, PCI_CAP_ID_VPD, pos, 8,
1492 &local_err);
1493 if (ret < 0) {
1494 error_propagate(errp, local_err);
1495 return ret;
1496 }
1497
1498 assigned_dev_setup_cap_read(dev, pos, 8);
1499
1500 /* direct write for cap content */
1501 assigned_dev_direct_config_write(dev, pos + 2, 6);
1502 }
1503
1504 /* Devices can have multiple vendor capabilities, get them all */
1505 for (pos = 0; (pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_VNDR, pos));
1506 pos += PCI_CAP_LIST_NEXT) {
1507 uint8_t len = pci_get_byte(pci_dev->config + pos + PCI_CAP_FLAGS);
1508 /* Direct R/W passthrough */
1509 ret = pci_add_capability2(pci_dev, PCI_CAP_ID_VNDR, pos, len,
1510 &local_err);
1511 if (ret < 0) {
1512 error_propagate(errp, local_err);
1513 return ret;
1514 }
1515
1516 assigned_dev_setup_cap_read(dev, pos, len);
1517
1518 /* direct write for cap content */
1519 assigned_dev_direct_config_write(dev, pos + 2, len - 2);
1520 }
1521
1522 /* If real and virtual capability list status bits differ, virtualize the
1523 * access. */
1524 if ((pci_get_word(pci_dev->config + PCI_STATUS) & PCI_STATUS_CAP_LIST) !=
1525 (assigned_dev_pci_read_byte(pci_dev, PCI_STATUS) &
1526 PCI_STATUS_CAP_LIST)) {
1527 dev->emulate_config_read[PCI_STATUS] |= PCI_STATUS_CAP_LIST;
1528 }
1529
1530 return 0;
1531 }
1532
1533 static uint64_t
1534 assigned_dev_msix_mmio_read(void *opaque, hwaddr addr,
1535 unsigned size)
1536 {
1537 AssignedDevice *adev = opaque;
1538 uint64_t val;
1539
1540 memcpy(&val, (void *)((uint8_t *)adev->msix_table + addr), size);
1541
1542 return val;
1543 }
1544
1545 static void assigned_dev_msix_mmio_write(void *opaque, hwaddr addr,
1546 uint64_t val, unsigned size)
1547 {
1548 AssignedDevice *adev = opaque;
1549 PCIDevice *pdev = &adev->dev;
1550 uint16_t ctrl;
1551 MSIXTableEntry orig;
1552 int i = addr >> 4;
1553
1554 if (i >= adev->msix_max) {
1555 return; /* Drop write */
1556 }
1557
1558 ctrl = pci_get_word(pdev->config + pdev->msix_cap + PCI_MSIX_FLAGS);
1559
1560 DEBUG("write to MSI-X table offset 0x%lx, val 0x%lx\n", addr, val);
1561
1562 if (ctrl & PCI_MSIX_FLAGS_ENABLE) {
1563 orig = adev->msix_table[i];
1564 }
1565
1566 memcpy((uint8_t *)adev->msix_table + addr, &val, size);
1567
1568 if (ctrl & PCI_MSIX_FLAGS_ENABLE) {
1569 MSIXTableEntry *entry = &adev->msix_table[i];
1570
1571 if (!assigned_dev_msix_masked(&orig) &&
1572 assigned_dev_msix_masked(entry)) {
1573 /*
1574 * Vector masked, disable it
1575 *
1576 * XXX It's not clear if we can or should actually attempt
1577 * to mask or disable the interrupt. KVM doesn't have
1578 * support for pending bits and kvm_assign_set_msix_entry
1579 * doesn't modify the device hardware mask. Interrupts
1580 * while masked are simply not injected to the guest, so
1581 * are lost. Can we get away with always injecting an
1582 * interrupt on unmask?
1583 */
1584 } else if (assigned_dev_msix_masked(&orig) &&
1585 !assigned_dev_msix_masked(entry)) {
1586 /* Vector unmasked */
1587 if (i >= adev->msi_virq_nr || adev->msi_virq[i] < 0) {
1588 /* Previously unassigned vector, start from scratch */
1589 assigned_dev_update_msix(pdev);
1590 return;
1591 } else {
1592 /* Update an existing, previously masked vector */
1593 MSIMessage msg;
1594 int ret;
1595
1596 msg.address = entry->addr_lo |
1597 ((uint64_t)entry->addr_hi << 32);
1598 msg.data = entry->data;
1599
1600 ret = kvm_irqchip_update_msi_route(kvm_state,
1601 adev->msi_virq[i], msg,
1602 pdev);
1603 if (ret) {
1604 error_report("Error updating irq routing entry (%d)", ret);
1605 }
1606 kvm_irqchip_commit_routes(kvm_state);
1607 }
1608 }
1609 }
1610 }
1611
1612 static const MemoryRegionOps assigned_dev_msix_mmio_ops = {
1613 .read = assigned_dev_msix_mmio_read,
1614 .write = assigned_dev_msix_mmio_write,
1615 .endianness = DEVICE_NATIVE_ENDIAN,
1616 .valid = {
1617 .min_access_size = 4,
1618 .max_access_size = 8,
1619 },
1620 .impl = {
1621 .min_access_size = 4,
1622 .max_access_size = 8,
1623 },
1624 };
1625
1626 static void assigned_dev_msix_reset(AssignedDevice *dev)
1627 {
1628 MSIXTableEntry *entry;
1629 int i;
1630
1631 if (!dev->msix_table) {
1632 return;
1633 }
1634
1635 memset(dev->msix_table, 0, dev->msix_table_size);
1636
1637 for (i = 0, entry = dev->msix_table; i < dev->msix_max; i++, entry++) {
1638 entry->ctrl = cpu_to_le32(0x1); /* Masked */
1639 }
1640 }
1641
1642 static void assigned_dev_register_msix_mmio(AssignedDevice *dev, Error **errp)
1643 {
1644 dev->msix_table = mmap(NULL, dev->msix_table_size, PROT_READ | PROT_WRITE,
1645 MAP_ANONYMOUS | MAP_PRIVATE, 0, 0);
1646 if (dev->msix_table == MAP_FAILED) {
1647 error_setg_errno(errp, errno, "failed to allocate msix_table");
1648 dev->msix_table = NULL;
1649 return;
1650 }
1651
1652 assigned_dev_msix_reset(dev);
1653
1654 memory_region_init_io(&dev->mmio, OBJECT(dev), &assigned_dev_msix_mmio_ops,
1655 dev, "assigned-dev-msix", dev->msix_table_size);
1656 }
1657
1658 static void assigned_dev_unregister_msix_mmio(AssignedDevice *dev)
1659 {
1660 if (!dev->msix_table) {
1661 return;
1662 }
1663
1664 if (munmap(dev->msix_table, dev->msix_table_size) == -1) {
1665 error_report("error unmapping msix_table! %s", strerror(errno));
1666 }
1667 dev->msix_table = NULL;
1668 }
1669
1670 static const VMStateDescription vmstate_assigned_device = {
1671 .name = "pci-assign",
1672 .unmigratable = 1,
1673 };
1674
1675 static void reset_assigned_device(DeviceState *dev)
1676 {
1677 PCIDevice *pci_dev = PCI_DEVICE(dev);
1678 AssignedDevice *adev = PCI_ASSIGN(pci_dev);
1679 char reset_file[64];
1680 const char reset[] = "1";
1681 int fd, ret;
1682
1683 /*
1684 * If a guest is reset without being shutdown, MSI/MSI-X can still
1685 * be running. We want to return the device to a known state on
1686 * reset, so disable those here. We especially do not want MSI-X
1687 * enabled since it lives in MMIO space, which is about to get
1688 * disabled.
1689 */
1690 if (adev->assigned_irq_type == ASSIGNED_IRQ_MSIX) {
1691 uint16_t ctrl = pci_get_word(pci_dev->config +
1692 pci_dev->msix_cap + PCI_MSIX_FLAGS);
1693
1694 pci_set_word(pci_dev->config + pci_dev->msix_cap + PCI_MSIX_FLAGS,
1695 ctrl & ~PCI_MSIX_FLAGS_ENABLE);
1696 assigned_dev_update_msix(pci_dev);
1697 } else if (adev->assigned_irq_type == ASSIGNED_IRQ_MSI) {
1698 uint8_t ctrl = pci_get_byte(pci_dev->config +
1699 pci_dev->msi_cap + PCI_MSI_FLAGS);
1700
1701 pci_set_byte(pci_dev->config + pci_dev->msi_cap + PCI_MSI_FLAGS,
1702 ctrl & ~PCI_MSI_FLAGS_ENABLE);
1703 assigned_dev_update_msi(pci_dev);
1704 }
1705
1706 snprintf(reset_file, sizeof(reset_file),
1707 "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/reset",
1708 adev->host.domain, adev->host.bus, adev->host.slot,
1709 adev->host.function);
1710
1711 /*
1712 * Issue a device reset via pci-sysfs. Note that we use write(2) here
1713 * and ignore the return value because some kernels have a bug that
1714 * returns 0 rather than bytes written on success, sending us into an
1715 * infinite retry loop using other write mechanisms.
1716 */
1717 fd = open(reset_file, O_WRONLY);
1718 if (fd != -1) {
1719 ret = write(fd, reset, strlen(reset));
1720 (void)ret;
1721 close(fd);
1722 }
1723
1724 /*
1725 * When a 0 is written to the bus master register, the device is logically
1726 * disconnected from the PCI bus. This avoids further DMA transfers.
1727 */
1728 assigned_dev_pci_write_config(pci_dev, PCI_COMMAND, 0, 1);
1729 }
1730
1731 static void assigned_realize(struct PCIDevice *pci_dev, Error **errp)
1732 {
1733 AssignedDevice *dev = PCI_ASSIGN(pci_dev);
1734 uint8_t e_intx;
1735 int r;
1736 Error *local_err = NULL;
1737
1738 if (!kvm_enabled()) {
1739 error_setg(&local_err, "pci-assign requires KVM support");
1740 goto exit_with_error;
1741 }
1742
1743 if (!dev->host.domain && !dev->host.bus && !dev->host.slot &&
1744 !dev->host.function) {
1745 error_setg(&local_err, "no host device specified");
1746 goto exit_with_error;
1747 }
1748
1749 /*
1750 * Set up basic config space access control. Will be further refined during
1751 * device initialization.
1752 */
1753 assigned_dev_emulate_config_read(dev, 0, PCI_CONFIG_SPACE_SIZE);
1754 assigned_dev_direct_config_read(dev, PCI_STATUS, 2);
1755 assigned_dev_direct_config_read(dev, PCI_REVISION_ID, 1);
1756 assigned_dev_direct_config_read(dev, PCI_CLASS_PROG, 3);
1757 assigned_dev_direct_config_read(dev, PCI_CACHE_LINE_SIZE, 1);
1758 assigned_dev_direct_config_read(dev, PCI_LATENCY_TIMER, 1);
1759 assigned_dev_direct_config_read(dev, PCI_BIST, 1);
1760 assigned_dev_direct_config_read(dev, PCI_CARDBUS_CIS, 4);
1761 assigned_dev_direct_config_read(dev, PCI_SUBSYSTEM_VENDOR_ID, 2);
1762 assigned_dev_direct_config_read(dev, PCI_SUBSYSTEM_ID, 2);
1763 assigned_dev_direct_config_read(dev, PCI_CAPABILITY_LIST + 1, 7);
1764 assigned_dev_direct_config_read(dev, PCI_MIN_GNT, 1);
1765 assigned_dev_direct_config_read(dev, PCI_MAX_LAT, 1);
1766 memcpy(dev->emulate_config_write, dev->emulate_config_read,
1767 sizeof(dev->emulate_config_read));
1768
1769 get_real_device(dev, &local_err);
1770 if (local_err) {
1771 goto out;
1772 }
1773
1774 if (assigned_device_pci_cap_init(pci_dev, &local_err) < 0) {
1775 goto out;
1776 }
1777
1778 /* intercept MSI-X entry page in the MMIO */
1779 if (dev->cap.available & ASSIGNED_DEVICE_CAP_MSIX) {
1780 assigned_dev_register_msix_mmio(dev, &local_err);
1781 if (local_err) {
1782 goto out;
1783 }
1784 }
1785
1786 /* handle real device's MMIO/PIO BARs */
1787 assigned_dev_register_regions(dev->real_device.regions,
1788 dev->real_device.region_number, dev,
1789 &local_err);
1790 if (local_err) {
1791 goto out;
1792 }
1793
1794 /* handle interrupt routing */
1795 e_intx = dev->dev.config[PCI_INTERRUPT_PIN] - 1;
1796 dev->intpin = e_intx;
1797 dev->intx_route.mode = PCI_INTX_DISABLED;
1798 dev->intx_route.irq = -1;
1799
1800 /* assign device to guest */
1801 assign_device(dev, &local_err);
1802 if (local_err) {
1803 goto out;
1804 }
1805
1806 /* assign legacy INTx to the device */
1807 r = assign_intx(dev, &local_err);
1808 if (r < 0) {
1809 goto assigned_out;
1810 }
1811
1812 assigned_dev_load_option_rom(dev);
1813
1814 return;
1815
1816 assigned_out:
1817 deassign_device(dev);
1818
1819 out:
1820 free_assigned_device(dev);
1821
1822 exit_with_error:
1823 assert(local_err);
1824 error_propagate(errp, local_err);
1825 }
1826
1827 static void assigned_exitfn(struct PCIDevice *pci_dev)
1828 {
1829 AssignedDevice *dev = PCI_ASSIGN(pci_dev);
1830
1831 deassign_device(dev);
1832 free_assigned_device(dev);
1833 }
1834
1835 static void assigned_dev_instance_init(Object *obj)
1836 {
1837 PCIDevice *pci_dev = PCI_DEVICE(obj);
1838 AssignedDevice *d = PCI_ASSIGN(pci_dev);
1839
1840 device_add_bootindex_property(obj, &d->bootindex,
1841 "bootindex", NULL,
1842 &pci_dev->qdev, NULL);
1843 }
1844
1845 static Property assigned_dev_properties[] = {
1846 DEFINE_PROP_PCI_HOST_DEVADDR("host", AssignedDevice, host),
1847 DEFINE_PROP_BIT("prefer_msi", AssignedDevice, features,
1848 ASSIGNED_DEVICE_PREFER_MSI_BIT, false),
1849 DEFINE_PROP_BIT("share_intx", AssignedDevice, features,
1850 ASSIGNED_DEVICE_SHARE_INTX_BIT, true),
1851 DEFINE_PROP_STRING("configfd", AssignedDevice, configfd_name),
1852 DEFINE_PROP_END_OF_LIST(),
1853 };
1854
1855 static void assign_class_init(ObjectClass *klass, void *data)
1856 {
1857 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1858 DeviceClass *dc = DEVICE_CLASS(klass);
1859
1860 k->realize = assigned_realize;
1861 k->exit = assigned_exitfn;
1862 k->config_read = assigned_dev_pci_read_config;
1863 k->config_write = assigned_dev_pci_write_config;
1864 dc->props = assigned_dev_properties;
1865 dc->vmsd = &vmstate_assigned_device;
1866 dc->reset = reset_assigned_device;
1867 set_bit(DEVICE_CATEGORY_MISC, dc->categories);
1868 dc->desc = "KVM-based PCI passthrough";
1869 }
1870
1871 static const TypeInfo assign_info = {
1872 .name = TYPE_PCI_ASSIGN,
1873 .parent = TYPE_PCI_DEVICE,
1874 .instance_size = sizeof(AssignedDevice),
1875 .class_init = assign_class_init,
1876 .instance_init = assigned_dev_instance_init,
1877 };
1878
1879 static void assign_register_types(void)
1880 {
1881 type_register_static(&assign_info);
1882 }
1883
1884 type_init(assign_register_types)
1885
1886 static void assigned_dev_load_option_rom(AssignedDevice *dev)
1887 {
1888 int size = 0;
1889
1890 pci_assign_dev_load_option_rom(&dev->dev, OBJECT(dev), &size,
1891 dev->host.domain, dev->host.bus,
1892 dev->host.slot, dev->host.function);
1893 }