pci-assign: Use pci_intx_route_changed()
[qemu/kevin.git] / hw / kvm / pci-assign.c
blobab01205666d11fb71ce2588dd63c24bf130da67b
1 /*
2 * Copyright (c) 2007, Neocleus Corporation.
4 * This work is licensed under the terms of the GNU GPL, version 2. See
5 * the COPYING file in the top-level directory.
8 * Assign a PCI device from the host to a guest VM.
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.
14 * Adapted for KVM (qemu-kvm) by Qumranet. QEMU version was based on qemu-kvm
15 * revision 4144fe9d48. See its repository for the history.
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)
23 #include <stdio.h>
24 #include <unistd.h>
25 #include <sys/io.h>
26 #include <sys/mman.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include "hw/hw.h"
30 #include "hw/pc.h"
31 #include "qemu-error.h"
32 #include "console.h"
33 #include "hw/loader.h"
34 #include "monitor.h"
35 #include "range.h"
36 #include "sysemu.h"
37 #include "hw/pci.h"
38 #include "hw/msi.h"
39 #include "kvm_i386.h"
41 #define MSIX_PAGE_SIZE 0x1000
43 /* From linux/ioport.h */
44 #define IORESOURCE_IO 0x00000100 /* Resource type */
45 #define IORESOURCE_MEM 0x00000200
46 #define IORESOURCE_IRQ 0x00000400
47 #define IORESOURCE_DMA 0x00000800
48 #define IORESOURCE_PREFETCH 0x00002000 /* No side effects */
50 //#define DEVICE_ASSIGNMENT_DEBUG
52 #ifdef DEVICE_ASSIGNMENT_DEBUG
53 #define DEBUG(fmt, ...) \
54 do { \
55 fprintf(stderr, "%s: " fmt, __func__ , __VA_ARGS__); \
56 } while (0)
57 #else
58 #define DEBUG(fmt, ...)
59 #endif
61 typedef struct PCIRegion {
62 int type; /* Memory or port I/O */
63 int valid;
64 uint64_t base_addr;
65 uint64_t size; /* size of the region */
66 int resource_fd;
67 } PCIRegion;
69 typedef struct PCIDevRegions {
70 uint8_t bus, dev, func; /* Bus inside domain, device and function */
71 int irq; /* IRQ number */
72 uint16_t region_number; /* number of active regions */
74 /* Port I/O or MMIO Regions */
75 PCIRegion regions[PCI_NUM_REGIONS - 1];
76 int config_fd;
77 } PCIDevRegions;
79 typedef struct AssignedDevRegion {
80 MemoryRegion container;
81 MemoryRegion real_iomem;
82 union {
83 uint8_t *r_virtbase; /* mmapped access address for memory regions */
84 uint32_t r_baseport; /* the base guest port for I/O regions */
85 } u;
86 pcibus_t e_size; /* emulated size of region in bytes */
87 pcibus_t r_size; /* real size of region in bytes */
88 PCIRegion *region;
89 } AssignedDevRegion;
91 #define ASSIGNED_DEVICE_PREFER_MSI_BIT 0
92 #define ASSIGNED_DEVICE_SHARE_INTX_BIT 1
94 #define ASSIGNED_DEVICE_PREFER_MSI_MASK (1 << ASSIGNED_DEVICE_PREFER_MSI_BIT)
95 #define ASSIGNED_DEVICE_SHARE_INTX_MASK (1 << ASSIGNED_DEVICE_SHARE_INTX_BIT)
97 typedef struct MSIXTableEntry {
98 uint32_t addr_lo;
99 uint32_t addr_hi;
100 uint32_t data;
101 uint32_t ctrl;
102 } MSIXTableEntry;
104 typedef enum AssignedIRQType {
105 ASSIGNED_IRQ_NONE = 0,
106 ASSIGNED_IRQ_INTX_HOST_INTX,
107 ASSIGNED_IRQ_INTX_HOST_MSI,
108 ASSIGNED_IRQ_MSI,
109 ASSIGNED_IRQ_MSIX
110 } AssignedIRQType;
112 typedef struct AssignedDevice {
113 PCIDevice dev;
114 PCIHostDeviceAddress host;
115 uint32_t dev_id;
116 uint32_t features;
117 int intpin;
118 AssignedDevRegion v_addrs[PCI_NUM_REGIONS - 1];
119 PCIDevRegions real_device;
120 PCIINTxRoute intx_route;
121 AssignedIRQType assigned_irq_type;
122 struct {
123 #define ASSIGNED_DEVICE_CAP_MSI (1 << 0)
124 #define ASSIGNED_DEVICE_CAP_MSIX (1 << 1)
125 uint32_t available;
126 #define ASSIGNED_DEVICE_MSI_ENABLED (1 << 0)
127 #define ASSIGNED_DEVICE_MSIX_ENABLED (1 << 1)
128 #define ASSIGNED_DEVICE_MSIX_MASKED (1 << 2)
129 uint32_t state;
130 } cap;
131 uint8_t emulate_config_read[PCI_CONFIG_SPACE_SIZE];
132 uint8_t emulate_config_write[PCI_CONFIG_SPACE_SIZE];
133 int msi_virq_nr;
134 int *msi_virq;
135 MSIXTableEntry *msix_table;
136 hwaddr msix_table_addr;
137 uint16_t msix_max;
138 MemoryRegion mmio;
139 char *configfd_name;
140 int32_t bootindex;
141 } AssignedDevice;
143 static void assigned_dev_update_irq_routing(PCIDevice *dev);
145 static void assigned_dev_load_option_rom(AssignedDevice *dev);
147 static void assigned_dev_unregister_msix_mmio(AssignedDevice *dev);
149 static uint64_t assigned_dev_ioport_rw(AssignedDevRegion *dev_region,
150 hwaddr addr, int size,
151 uint64_t *data)
153 uint64_t val = 0;
154 int fd = dev_region->region->resource_fd;
156 if (fd >= 0) {
157 if (data) {
158 DEBUG("pwrite data=%" PRIx64 ", size=%d, e_phys=" TARGET_FMT_plx
159 ", addr="TARGET_FMT_plx"\n", *data, size, addr, addr);
160 if (pwrite(fd, data, size, addr) != size) {
161 error_report("%s - pwrite failed %s",
162 __func__, strerror(errno));
164 } else {
165 if (pread(fd, &val, size, addr) != size) {
166 error_report("%s - pread failed %s",
167 __func__, strerror(errno));
168 val = (1UL << (size * 8)) - 1;
170 DEBUG("pread val=%" PRIx64 ", size=%d, e_phys=" TARGET_FMT_plx
171 ", addr=" TARGET_FMT_plx "\n", val, size, addr, addr);
173 } else {
174 uint32_t port = addr + dev_region->u.r_baseport;
176 if (data) {
177 DEBUG("out data=%" PRIx64 ", size=%d, e_phys=" TARGET_FMT_plx
178 ", host=%x\n", *data, size, addr, port);
179 switch (size) {
180 case 1:
181 outb(*data, port);
182 break;
183 case 2:
184 outw(*data, port);
185 break;
186 case 4:
187 outl(*data, port);
188 break;
190 } else {
191 switch (size) {
192 case 1:
193 val = inb(port);
194 break;
195 case 2:
196 val = inw(port);
197 break;
198 case 4:
199 val = inl(port);
200 break;
202 DEBUG("in data=%" PRIx64 ", size=%d, e_phys=" TARGET_FMT_plx
203 ", host=%x\n", val, size, addr, port);
206 return val;
209 static void assigned_dev_ioport_write(void *opaque, hwaddr addr,
210 uint64_t data, unsigned size)
212 assigned_dev_ioport_rw(opaque, addr, size, &data);
215 static uint64_t assigned_dev_ioport_read(void *opaque,
216 hwaddr addr, unsigned size)
218 return assigned_dev_ioport_rw(opaque, addr, size, NULL);
221 static uint32_t slow_bar_readb(void *opaque, hwaddr addr)
223 AssignedDevRegion *d = opaque;
224 uint8_t *in = d->u.r_virtbase + addr;
225 uint32_t r;
227 r = *in;
228 DEBUG("slow_bar_readl addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r);
230 return r;
233 static uint32_t slow_bar_readw(void *opaque, hwaddr addr)
235 AssignedDevRegion *d = opaque;
236 uint16_t *in = (uint16_t *)(d->u.r_virtbase + addr);
237 uint32_t r;
239 r = *in;
240 DEBUG("slow_bar_readl addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r);
242 return r;
245 static uint32_t slow_bar_readl(void *opaque, hwaddr addr)
247 AssignedDevRegion *d = opaque;
248 uint32_t *in = (uint32_t *)(d->u.r_virtbase + addr);
249 uint32_t r;
251 r = *in;
252 DEBUG("slow_bar_readl addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r);
254 return r;
257 static void slow_bar_writeb(void *opaque, hwaddr addr, uint32_t val)
259 AssignedDevRegion *d = opaque;
260 uint8_t *out = d->u.r_virtbase + addr;
262 DEBUG("slow_bar_writeb addr=0x" TARGET_FMT_plx " val=0x%02x\n", addr, val);
263 *out = val;
266 static void slow_bar_writew(void *opaque, hwaddr addr, uint32_t val)
268 AssignedDevRegion *d = opaque;
269 uint16_t *out = (uint16_t *)(d->u.r_virtbase + addr);
271 DEBUG("slow_bar_writew addr=0x" TARGET_FMT_plx " val=0x%04x\n", addr, val);
272 *out = val;
275 static void slow_bar_writel(void *opaque, hwaddr addr, uint32_t val)
277 AssignedDevRegion *d = opaque;
278 uint32_t *out = (uint32_t *)(d->u.r_virtbase + addr);
280 DEBUG("slow_bar_writel addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, val);
281 *out = val;
284 static const MemoryRegionOps slow_bar_ops = {
285 .old_mmio = {
286 .read = { slow_bar_readb, slow_bar_readw, slow_bar_readl, },
287 .write = { slow_bar_writeb, slow_bar_writew, slow_bar_writel, },
289 .endianness = DEVICE_NATIVE_ENDIAN,
292 static void assigned_dev_iomem_setup(PCIDevice *pci_dev, int region_num,
293 pcibus_t e_size)
295 AssignedDevice *r_dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
296 AssignedDevRegion *region = &r_dev->v_addrs[region_num];
297 PCIRegion *real_region = &r_dev->real_device.regions[region_num];
299 if (e_size > 0) {
300 memory_region_init(&region->container, "assigned-dev-container",
301 e_size);
302 memory_region_add_subregion(&region->container, 0, &region->real_iomem);
304 /* deal with MSI-X MMIO page */
305 if (real_region->base_addr <= r_dev->msix_table_addr &&
306 real_region->base_addr + real_region->size >
307 r_dev->msix_table_addr) {
308 uint64_t offset = r_dev->msix_table_addr - real_region->base_addr;
310 memory_region_add_subregion_overlap(&region->container,
311 offset,
312 &r_dev->mmio,
318 static const MemoryRegionOps assigned_dev_ioport_ops = {
319 .read = assigned_dev_ioport_read,
320 .write = assigned_dev_ioport_write,
321 .endianness = DEVICE_NATIVE_ENDIAN,
324 static void assigned_dev_ioport_setup(PCIDevice *pci_dev, int region_num,
325 pcibus_t size)
327 AssignedDevice *r_dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
328 AssignedDevRegion *region = &r_dev->v_addrs[region_num];
330 region->e_size = size;
331 memory_region_init(&region->container, "assigned-dev-container", size);
332 memory_region_init_io(&region->real_iomem, &assigned_dev_ioport_ops,
333 r_dev->v_addrs + region_num,
334 "assigned-dev-iomem", size);
335 memory_region_add_subregion(&region->container, 0, &region->real_iomem);
338 static uint32_t assigned_dev_pci_read(PCIDevice *d, int pos, int len)
340 AssignedDevice *pci_dev = DO_UPCAST(AssignedDevice, dev, d);
341 uint32_t val;
342 ssize_t ret;
343 int fd = pci_dev->real_device.config_fd;
345 again:
346 ret = pread(fd, &val, len, pos);
347 if (ret != len) {
348 if ((ret < 0) && (errno == EINTR || errno == EAGAIN)) {
349 goto again;
352 hw_error("pci read failed, ret = %zd errno = %d\n", ret, errno);
355 return val;
358 static uint8_t assigned_dev_pci_read_byte(PCIDevice *d, int pos)
360 return (uint8_t)assigned_dev_pci_read(d, pos, 1);
363 static void assigned_dev_pci_write(PCIDevice *d, int pos, uint32_t val, int len)
365 AssignedDevice *pci_dev = DO_UPCAST(AssignedDevice, dev, d);
366 ssize_t ret;
367 int fd = pci_dev->real_device.config_fd;
369 again:
370 ret = pwrite(fd, &val, len, pos);
371 if (ret != len) {
372 if ((ret < 0) && (errno == EINTR || errno == EAGAIN)) {
373 goto again;
376 hw_error("pci write failed, ret = %zd errno = %d\n", ret, errno);
380 static void assigned_dev_emulate_config_read(AssignedDevice *dev,
381 uint32_t offset, uint32_t len)
383 memset(dev->emulate_config_read + offset, 0xff, len);
386 static void assigned_dev_direct_config_read(AssignedDevice *dev,
387 uint32_t offset, uint32_t len)
389 memset(dev->emulate_config_read + offset, 0, len);
392 static void assigned_dev_direct_config_write(AssignedDevice *dev,
393 uint32_t offset, uint32_t len)
395 memset(dev->emulate_config_write + offset, 0, len);
398 static uint8_t pci_find_cap_offset(PCIDevice *d, uint8_t cap, uint8_t start)
400 int id;
401 int max_cap = 48;
402 int pos = start ? start : PCI_CAPABILITY_LIST;
403 int status;
405 status = assigned_dev_pci_read_byte(d, PCI_STATUS);
406 if ((status & PCI_STATUS_CAP_LIST) == 0) {
407 return 0;
410 while (max_cap--) {
411 pos = assigned_dev_pci_read_byte(d, pos);
412 if (pos < 0x40) {
413 break;
416 pos &= ~3;
417 id = assigned_dev_pci_read_byte(d, pos + PCI_CAP_LIST_ID);
419 if (id == 0xff) {
420 break;
422 if (id == cap) {
423 return pos;
426 pos += PCI_CAP_LIST_NEXT;
428 return 0;
431 static int assigned_dev_register_regions(PCIRegion *io_regions,
432 unsigned long regions_num,
433 AssignedDevice *pci_dev)
435 uint32_t i;
436 PCIRegion *cur_region = io_regions;
438 for (i = 0; i < regions_num; i++, cur_region++) {
439 if (!cur_region->valid) {
440 continue;
443 /* handle memory io regions */
444 if (cur_region->type & IORESOURCE_MEM) {
445 int t = cur_region->type & IORESOURCE_PREFETCH
446 ? PCI_BASE_ADDRESS_MEM_PREFETCH
447 : PCI_BASE_ADDRESS_SPACE_MEMORY;
449 /* map physical memory */
450 pci_dev->v_addrs[i].u.r_virtbase = mmap(NULL, cur_region->size,
451 PROT_WRITE | PROT_READ,
452 MAP_SHARED,
453 cur_region->resource_fd,
454 (off_t)0);
456 if (pci_dev->v_addrs[i].u.r_virtbase == MAP_FAILED) {
457 pci_dev->v_addrs[i].u.r_virtbase = NULL;
458 error_report("%s: Error: Couldn't mmap 0x%" PRIx64 "!",
459 __func__, cur_region->base_addr);
460 return -1;
463 pci_dev->v_addrs[i].r_size = cur_region->size;
464 pci_dev->v_addrs[i].e_size = 0;
466 /* add offset */
467 pci_dev->v_addrs[i].u.r_virtbase +=
468 (cur_region->base_addr & 0xFFF);
470 if (cur_region->size & 0xFFF) {
471 error_report("PCI region %d at address 0x%" PRIx64 " has "
472 "size 0x%" PRIx64 ", which is not a multiple of "
473 "4K. You might experience some performance hit "
474 "due to that.",
475 i, cur_region->base_addr, cur_region->size);
476 memory_region_init_io(&pci_dev->v_addrs[i].real_iomem,
477 &slow_bar_ops, &pci_dev->v_addrs[i],
478 "assigned-dev-slow-bar",
479 cur_region->size);
480 } else {
481 void *virtbase = pci_dev->v_addrs[i].u.r_virtbase;
482 char name[32];
483 snprintf(name, sizeof(name), "%s.bar%d",
484 object_get_typename(OBJECT(pci_dev)), i);
485 memory_region_init_ram_ptr(&pci_dev->v_addrs[i].real_iomem,
486 name, cur_region->size,
487 virtbase);
488 vmstate_register_ram(&pci_dev->v_addrs[i].real_iomem,
489 &pci_dev->dev.qdev);
492 assigned_dev_iomem_setup(&pci_dev->dev, i, cur_region->size);
493 pci_register_bar((PCIDevice *) pci_dev, i, t,
494 &pci_dev->v_addrs[i].container);
495 continue;
496 } else {
497 /* handle port io regions */
498 uint32_t val;
499 int ret;
501 /* Test kernel support for ioport resource read/write. Old
502 * kernels return EIO. New kernels only allow 1/2/4 byte reads
503 * so should return EINVAL for a 3 byte read */
504 ret = pread(pci_dev->v_addrs[i].region->resource_fd, &val, 3, 0);
505 if (ret >= 0) {
506 error_report("Unexpected return from I/O port read: %d", ret);
507 abort();
508 } else if (errno != EINVAL) {
509 error_report("Kernel doesn't support ioport resource "
510 "access, hiding this region.");
511 close(pci_dev->v_addrs[i].region->resource_fd);
512 cur_region->valid = 0;
513 continue;
516 pci_dev->v_addrs[i].u.r_baseport = cur_region->base_addr;
517 pci_dev->v_addrs[i].r_size = cur_region->size;
518 pci_dev->v_addrs[i].e_size = 0;
520 assigned_dev_ioport_setup(&pci_dev->dev, i, cur_region->size);
521 pci_register_bar((PCIDevice *) pci_dev, i,
522 PCI_BASE_ADDRESS_SPACE_IO,
523 &pci_dev->v_addrs[i].container);
527 /* success */
528 return 0;
531 static int get_real_id(const char *devpath, const char *idname, uint16_t *val)
533 FILE *f;
534 char name[128];
535 long id;
537 snprintf(name, sizeof(name), "%s%s", devpath, idname);
538 f = fopen(name, "r");
539 if (f == NULL) {
540 error_report("%s: %s: %m", __func__, name);
541 return -1;
543 if (fscanf(f, "%li\n", &id) == 1) {
544 *val = id;
545 } else {
546 return -1;
548 fclose(f);
550 return 0;
553 static int get_real_vendor_id(const char *devpath, uint16_t *val)
555 return get_real_id(devpath, "vendor", val);
558 static int get_real_device_id(const char *devpath, uint16_t *val)
560 return get_real_id(devpath, "device", val);
563 static int get_real_device(AssignedDevice *pci_dev, uint16_t r_seg,
564 uint8_t r_bus, uint8_t r_dev, uint8_t r_func)
566 char dir[128], name[128];
567 int fd, r = 0, v;
568 FILE *f;
569 uint64_t start, end, size, flags;
570 uint16_t id;
571 PCIRegion *rp;
572 PCIDevRegions *dev = &pci_dev->real_device;
574 dev->region_number = 0;
576 snprintf(dir, sizeof(dir), "/sys/bus/pci/devices/%04x:%02x:%02x.%x/",
577 r_seg, r_bus, r_dev, r_func);
579 snprintf(name, sizeof(name), "%sconfig", dir);
581 if (pci_dev->configfd_name && *pci_dev->configfd_name) {
582 dev->config_fd = monitor_handle_fd_param(cur_mon, pci_dev->configfd_name);
583 if (dev->config_fd < 0) {
584 return 1;
586 } else {
587 dev->config_fd = open(name, O_RDWR);
589 if (dev->config_fd == -1) {
590 error_report("%s: %s: %m", __func__, name);
591 return 1;
594 again:
595 r = read(dev->config_fd, pci_dev->dev.config,
596 pci_config_size(&pci_dev->dev));
597 if (r < 0) {
598 if (errno == EINTR || errno == EAGAIN) {
599 goto again;
601 error_report("%s: read failed, errno = %d", __func__, errno);
604 /* Restore or clear multifunction, this is always controlled by qemu */
605 if (pci_dev->dev.cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
606 pci_dev->dev.config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION;
607 } else {
608 pci_dev->dev.config[PCI_HEADER_TYPE] &= ~PCI_HEADER_TYPE_MULTI_FUNCTION;
611 /* Clear host resource mapping info. If we choose not to register a
612 * BAR, such as might be the case with the option ROM, we can get
613 * confusing, unwritable, residual addresses from the host here. */
614 memset(&pci_dev->dev.config[PCI_BASE_ADDRESS_0], 0, 24);
615 memset(&pci_dev->dev.config[PCI_ROM_ADDRESS], 0, 4);
617 snprintf(name, sizeof(name), "%sresource", dir);
619 f = fopen(name, "r");
620 if (f == NULL) {
621 error_report("%s: %s: %m", __func__, name);
622 return 1;
625 for (r = 0; r < PCI_ROM_SLOT; r++) {
626 if (fscanf(f, "%" SCNi64 " %" SCNi64 " %" SCNi64 "\n",
627 &start, &end, &flags) != 3) {
628 break;
631 rp = dev->regions + r;
632 rp->valid = 0;
633 rp->resource_fd = -1;
634 size = end - start + 1;
635 flags &= IORESOURCE_IO | IORESOURCE_MEM | IORESOURCE_PREFETCH;
636 if (size == 0 || (flags & ~IORESOURCE_PREFETCH) == 0) {
637 continue;
639 if (flags & IORESOURCE_MEM) {
640 flags &= ~IORESOURCE_IO;
641 } else {
642 flags &= ~IORESOURCE_PREFETCH;
644 snprintf(name, sizeof(name), "%sresource%d", dir, r);
645 fd = open(name, O_RDWR);
646 if (fd == -1) {
647 continue;
649 rp->resource_fd = fd;
651 rp->type = flags;
652 rp->valid = 1;
653 rp->base_addr = start;
654 rp->size = size;
655 pci_dev->v_addrs[r].region = rp;
656 DEBUG("region %d size %" PRIu64 " start 0x%" PRIx64
657 " type %d resource_fd %d\n",
658 r, rp->size, start, rp->type, rp->resource_fd);
661 fclose(f);
663 /* read and fill vendor ID */
664 v = get_real_vendor_id(dir, &id);
665 if (v) {
666 return 1;
668 pci_dev->dev.config[0] = id & 0xff;
669 pci_dev->dev.config[1] = (id & 0xff00) >> 8;
671 /* read and fill device ID */
672 v = get_real_device_id(dir, &id);
673 if (v) {
674 return 1;
676 pci_dev->dev.config[2] = id & 0xff;
677 pci_dev->dev.config[3] = (id & 0xff00) >> 8;
679 pci_word_test_and_clear_mask(pci_dev->emulate_config_write + PCI_COMMAND,
680 PCI_COMMAND_MASTER | PCI_COMMAND_INTX_DISABLE);
682 dev->region_number = r;
683 return 0;
686 static void free_msi_virqs(AssignedDevice *dev)
688 int i;
690 for (i = 0; i < dev->msi_virq_nr; i++) {
691 if (dev->msi_virq[i] >= 0) {
692 kvm_irqchip_release_virq(kvm_state, dev->msi_virq[i]);
693 dev->msi_virq[i] = -1;
696 g_free(dev->msi_virq);
697 dev->msi_virq = NULL;
698 dev->msi_virq_nr = 0;
701 static void free_assigned_device(AssignedDevice *dev)
703 int i;
705 if (dev->cap.available & ASSIGNED_DEVICE_CAP_MSIX) {
706 assigned_dev_unregister_msix_mmio(dev);
708 for (i = 0; i < dev->real_device.region_number; i++) {
709 PCIRegion *pci_region = &dev->real_device.regions[i];
710 AssignedDevRegion *region = &dev->v_addrs[i];
712 if (!pci_region->valid) {
713 continue;
715 if (pci_region->type & IORESOURCE_IO) {
716 if (region->u.r_baseport) {
717 memory_region_del_subregion(&region->container,
718 &region->real_iomem);
719 memory_region_destroy(&region->real_iomem);
720 memory_region_destroy(&region->container);
722 } else if (pci_region->type & IORESOURCE_MEM) {
723 if (region->u.r_virtbase) {
724 memory_region_del_subregion(&region->container,
725 &region->real_iomem);
727 /* Remove MSI-X table subregion */
728 if (pci_region->base_addr <= dev->msix_table_addr &&
729 pci_region->base_addr + pci_region->size >
730 dev->msix_table_addr) {
731 memory_region_del_subregion(&region->container,
732 &dev->mmio);
735 memory_region_destroy(&region->real_iomem);
736 memory_region_destroy(&region->container);
737 if (munmap(region->u.r_virtbase,
738 (pci_region->size + 0xFFF) & 0xFFFFF000)) {
739 error_report("Failed to unmap assigned device region: %s",
740 strerror(errno));
744 if (pci_region->resource_fd >= 0) {
745 close(pci_region->resource_fd);
749 if (dev->real_device.config_fd >= 0) {
750 close(dev->real_device.config_fd);
753 free_msi_virqs(dev);
756 static void assign_failed_examine(AssignedDevice *dev)
758 char name[PATH_MAX], dir[PATH_MAX], driver[PATH_MAX] = {}, *ns;
759 uint16_t vendor_id, device_id;
760 int r;
762 snprintf(dir, sizeof(dir), "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/",
763 dev->host.domain, dev->host.bus, dev->host.slot,
764 dev->host.function);
766 snprintf(name, sizeof(name), "%sdriver", dir);
768 r = readlink(name, driver, sizeof(driver));
769 if ((r <= 0) || r >= sizeof(driver)) {
770 goto fail;
773 ns = strrchr(driver, '/');
774 if (!ns) {
775 goto fail;
778 ns++;
780 if (get_real_vendor_id(dir, &vendor_id) ||
781 get_real_device_id(dir, &device_id)) {
782 goto fail;
785 error_report("*** The driver '%s' is occupying your device "
786 "%04x:%02x:%02x.%x.",
787 ns, dev->host.domain, dev->host.bus, dev->host.slot,
788 dev->host.function);
789 error_report("***");
790 error_report("*** You can try the following commands to free it:");
791 error_report("***");
792 error_report("*** $ echo \"%04x %04x\" > /sys/bus/pci/drivers/pci-stub/"
793 "new_id", vendor_id, device_id);
794 error_report("*** $ echo \"%04x:%02x:%02x.%x\" > /sys/bus/pci/drivers/"
795 "%s/unbind",
796 dev->host.domain, dev->host.bus, dev->host.slot,
797 dev->host.function, ns);
798 error_report("*** $ echo \"%04x:%02x:%02x.%x\" > /sys/bus/pci/drivers/"
799 "pci-stub/bind",
800 dev->host.domain, dev->host.bus, dev->host.slot,
801 dev->host.function);
802 error_report("*** $ echo \"%04x %04x\" > /sys/bus/pci/drivers/pci-stub"
803 "/remove_id", vendor_id, device_id);
804 error_report("***");
806 return;
808 fail:
809 error_report("Couldn't find out why.");
812 static int assign_device(AssignedDevice *dev)
814 uint32_t flags = KVM_DEV_ASSIGN_ENABLE_IOMMU;
815 int r;
817 /* Only pass non-zero PCI segment to capable module */
818 if (!kvm_check_extension(kvm_state, KVM_CAP_PCI_SEGMENT) &&
819 dev->host.domain) {
820 error_report("Can't assign device inside non-zero PCI segment "
821 "as this KVM module doesn't support it.");
822 return -ENODEV;
825 if (!kvm_check_extension(kvm_state, KVM_CAP_IOMMU)) {
826 error_report("No IOMMU found. Unable to assign device \"%s\"",
827 dev->dev.qdev.id);
828 return -ENODEV;
831 if (dev->features & ASSIGNED_DEVICE_SHARE_INTX_MASK &&
832 kvm_has_intx_set_mask()) {
833 flags |= KVM_DEV_ASSIGN_PCI_2_3;
836 r = kvm_device_pci_assign(kvm_state, &dev->host, flags, &dev->dev_id);
837 if (r < 0) {
838 error_report("Failed to assign device \"%s\" : %s",
839 dev->dev.qdev.id, strerror(-r));
841 switch (r) {
842 case -EBUSY:
843 assign_failed_examine(dev);
844 break;
845 default:
846 break;
849 return r;
852 static bool check_irqchip_in_kernel(void)
854 if (kvm_irqchip_in_kernel()) {
855 return true;
857 error_report("pci-assign: error: requires KVM with in-kernel irqchip "
858 "enabled");
859 return false;
862 static int assign_intx(AssignedDevice *dev)
864 AssignedIRQType new_type;
865 PCIINTxRoute intx_route;
866 bool intx_host_msi;
867 int r;
869 /* Interrupt PIN 0 means don't use INTx */
870 if (assigned_dev_pci_read_byte(&dev->dev, PCI_INTERRUPT_PIN) == 0) {
871 pci_device_set_intx_routing_notifier(&dev->dev, NULL);
872 return 0;
875 if (!check_irqchip_in_kernel()) {
876 return -ENOTSUP;
879 pci_device_set_intx_routing_notifier(&dev->dev,
880 assigned_dev_update_irq_routing);
882 intx_route = pci_device_route_intx_to_irq(&dev->dev, dev->intpin);
883 assert(intx_route.mode != PCI_INTX_INVERTED);
885 if (!pci_intx_route_changed(&dev->intx_route, &intx_route)) {
886 return 0;
889 switch (dev->assigned_irq_type) {
890 case ASSIGNED_IRQ_INTX_HOST_INTX:
891 case ASSIGNED_IRQ_INTX_HOST_MSI:
892 intx_host_msi = dev->assigned_irq_type == ASSIGNED_IRQ_INTX_HOST_MSI;
893 r = kvm_device_intx_deassign(kvm_state, dev->dev_id, intx_host_msi);
894 break;
895 case ASSIGNED_IRQ_MSI:
896 r = kvm_device_msi_deassign(kvm_state, dev->dev_id);
897 break;
898 case ASSIGNED_IRQ_MSIX:
899 r = kvm_device_msix_deassign(kvm_state, dev->dev_id);
900 break;
901 default:
902 r = 0;
903 break;
905 if (r) {
906 perror("assign_intx: deassignment of previous interrupt failed");
908 dev->assigned_irq_type = ASSIGNED_IRQ_NONE;
910 if (intx_route.mode == PCI_INTX_DISABLED) {
911 dev->intx_route = intx_route;
912 return 0;
915 retry:
916 if (dev->features & ASSIGNED_DEVICE_PREFER_MSI_MASK &&
917 dev->cap.available & ASSIGNED_DEVICE_CAP_MSI) {
918 intx_host_msi = true;
919 new_type = ASSIGNED_IRQ_INTX_HOST_MSI;
920 } else {
921 intx_host_msi = false;
922 new_type = ASSIGNED_IRQ_INTX_HOST_INTX;
925 r = kvm_device_intx_assign(kvm_state, dev->dev_id, intx_host_msi,
926 intx_route.irq);
927 if (r < 0) {
928 if (r == -EIO && !(dev->features & ASSIGNED_DEVICE_PREFER_MSI_MASK) &&
929 dev->cap.available & ASSIGNED_DEVICE_CAP_MSI) {
930 /* Retry with host-side MSI. There might be an IRQ conflict and
931 * either the kernel or the device doesn't support sharing. */
932 error_report("Host-side INTx sharing not supported, "
933 "using MSI instead.\n"
934 "Some devices do not to work properly in this mode.");
935 dev->features |= ASSIGNED_DEVICE_PREFER_MSI_MASK;
936 goto retry;
938 error_report("Failed to assign irq for \"%s\": %s",
939 dev->dev.qdev.id, strerror(-r));
940 error_report("Perhaps you are assigning a device "
941 "that shares an IRQ with another device?");
942 return r;
945 dev->intx_route = intx_route;
946 dev->assigned_irq_type = new_type;
947 return r;
950 static void deassign_device(AssignedDevice *dev)
952 int r;
954 r = kvm_device_pci_deassign(kvm_state, dev->dev_id);
955 assert(r == 0);
958 /* The pci config space got updated. Check if irq numbers have changed
959 * for our devices
961 static void assigned_dev_update_irq_routing(PCIDevice *dev)
963 AssignedDevice *assigned_dev = DO_UPCAST(AssignedDevice, dev, dev);
964 Error *err = NULL;
965 int r;
967 r = assign_intx(assigned_dev);
968 if (r < 0) {
969 qdev_unplug(&dev->qdev, &err);
970 assert(!err);
974 static void assigned_dev_update_msi(PCIDevice *pci_dev)
976 AssignedDevice *assigned_dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
977 uint8_t ctrl_byte = pci_get_byte(pci_dev->config + pci_dev->msi_cap +
978 PCI_MSI_FLAGS);
979 int r;
981 /* Some guests gratuitously disable MSI even if they're not using it,
982 * try to catch this by only deassigning irqs if the guest is using
983 * MSI or intends to start. */
984 if (assigned_dev->assigned_irq_type == ASSIGNED_IRQ_MSI ||
985 (ctrl_byte & PCI_MSI_FLAGS_ENABLE)) {
986 r = kvm_device_msi_deassign(kvm_state, assigned_dev->dev_id);
987 /* -ENXIO means no assigned irq */
988 if (r && r != -ENXIO) {
989 perror("assigned_dev_update_msi: deassign irq");
992 free_msi_virqs(assigned_dev);
994 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_NONE;
995 pci_device_set_intx_routing_notifier(pci_dev, NULL);
998 if (ctrl_byte & PCI_MSI_FLAGS_ENABLE) {
999 uint8_t *pos = pci_dev->config + pci_dev->msi_cap;
1000 MSIMessage msg;
1001 int virq;
1003 msg.address = pci_get_long(pos + PCI_MSI_ADDRESS_LO);
1004 msg.data = pci_get_word(pos + PCI_MSI_DATA_32);
1005 virq = kvm_irqchip_add_msi_route(kvm_state, msg);
1006 if (virq < 0) {
1007 perror("assigned_dev_update_msi: kvm_irqchip_add_msi_route");
1008 return;
1011 assigned_dev->msi_virq = g_malloc(sizeof(*assigned_dev->msi_virq));
1012 assigned_dev->msi_virq_nr = 1;
1013 assigned_dev->msi_virq[0] = virq;
1014 if (kvm_device_msi_assign(kvm_state, assigned_dev->dev_id, virq) < 0) {
1015 perror("assigned_dev_update_msi: kvm_device_msi_assign");
1018 assigned_dev->intx_route.mode = PCI_INTX_DISABLED;
1019 assigned_dev->intx_route.irq = -1;
1020 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_MSI;
1021 } else {
1022 assign_intx(assigned_dev);
1026 static bool assigned_dev_msix_masked(MSIXTableEntry *entry)
1028 return (entry->ctrl & cpu_to_le32(0x1)) != 0;
1031 static int assigned_dev_update_msix_mmio(PCIDevice *pci_dev)
1033 AssignedDevice *adev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1034 uint16_t entries_nr = 0;
1035 int i, r = 0;
1036 MSIXTableEntry *entry = adev->msix_table;
1037 MSIMessage msg;
1039 /* Get the usable entry number for allocating */
1040 for (i = 0; i < adev->msix_max; i++, entry++) {
1041 if (assigned_dev_msix_masked(entry)) {
1042 continue;
1044 entries_nr++;
1047 DEBUG("MSI-X entries: %d\n", entries_nr);
1049 /* It's valid to enable MSI-X with all entries masked */
1050 if (!entries_nr) {
1051 return 0;
1054 r = kvm_device_msix_init_vectors(kvm_state, adev->dev_id, entries_nr);
1055 if (r != 0) {
1056 error_report("fail to set MSI-X entry number for MSIX! %s",
1057 strerror(-r));
1058 return r;
1061 free_msi_virqs(adev);
1063 adev->msi_virq_nr = adev->msix_max;
1064 adev->msi_virq = g_malloc(adev->msix_max * sizeof(*adev->msi_virq));
1066 entry = adev->msix_table;
1067 for (i = 0; i < adev->msix_max; i++, entry++) {
1068 adev->msi_virq[i] = -1;
1070 if (assigned_dev_msix_masked(entry)) {
1071 continue;
1074 msg.address = entry->addr_lo | ((uint64_t)entry->addr_hi << 32);
1075 msg.data = entry->data;
1076 r = kvm_irqchip_add_msi_route(kvm_state, msg);
1077 if (r < 0) {
1078 return r;
1080 adev->msi_virq[i] = r;
1082 DEBUG("MSI-X vector %d, gsi %d, addr %08x_%08x, data %08x\n", i,
1083 r, entry->addr_hi, entry->addr_lo, entry->data);
1085 r = kvm_device_msix_set_vector(kvm_state, adev->dev_id, i,
1086 adev->msi_virq[i]);
1087 if (r) {
1088 error_report("fail to set MSI-X entry! %s", strerror(-r));
1089 break;
1093 return r;
1096 static void assigned_dev_update_msix(PCIDevice *pci_dev)
1098 AssignedDevice *assigned_dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1099 uint16_t ctrl_word = pci_get_word(pci_dev->config + pci_dev->msix_cap +
1100 PCI_MSIX_FLAGS);
1101 int r;
1103 /* Some guests gratuitously disable MSIX even if they're not using it,
1104 * try to catch this by only deassigning irqs if the guest is using
1105 * MSIX or intends to start. */
1106 if ((assigned_dev->assigned_irq_type == ASSIGNED_IRQ_MSIX) ||
1107 (ctrl_word & PCI_MSIX_FLAGS_ENABLE)) {
1108 r = kvm_device_msix_deassign(kvm_state, assigned_dev->dev_id);
1109 /* -ENXIO means no assigned irq */
1110 if (r && r != -ENXIO) {
1111 perror("assigned_dev_update_msix: deassign irq");
1114 free_msi_virqs(assigned_dev);
1116 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_NONE;
1117 pci_device_set_intx_routing_notifier(pci_dev, NULL);
1120 if (ctrl_word & PCI_MSIX_FLAGS_ENABLE) {
1121 if (assigned_dev_update_msix_mmio(pci_dev) < 0) {
1122 perror("assigned_dev_update_msix_mmio");
1123 return;
1126 if (assigned_dev->msi_virq_nr > 0) {
1127 if (kvm_device_msix_assign(kvm_state, assigned_dev->dev_id) < 0) {
1128 perror("assigned_dev_enable_msix: assign irq");
1129 return;
1132 assigned_dev->intx_route.mode = PCI_INTX_DISABLED;
1133 assigned_dev->intx_route.irq = -1;
1134 assigned_dev->assigned_irq_type = ASSIGNED_IRQ_MSIX;
1135 } else {
1136 assign_intx(assigned_dev);
1140 static uint32_t assigned_dev_pci_read_config(PCIDevice *pci_dev,
1141 uint32_t address, int len)
1143 AssignedDevice *assigned_dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1144 uint32_t virt_val = pci_default_read_config(pci_dev, address, len);
1145 uint32_t real_val, emulate_mask, full_emulation_mask;
1147 emulate_mask = 0;
1148 memcpy(&emulate_mask, assigned_dev->emulate_config_read + address, len);
1149 emulate_mask = le32_to_cpu(emulate_mask);
1151 full_emulation_mask = 0xffffffff >> (32 - len * 8);
1153 if (emulate_mask != full_emulation_mask) {
1154 real_val = assigned_dev_pci_read(pci_dev, address, len);
1155 return (virt_val & emulate_mask) | (real_val & ~emulate_mask);
1156 } else {
1157 return virt_val;
1161 static void assigned_dev_pci_write_config(PCIDevice *pci_dev, uint32_t address,
1162 uint32_t val, int len)
1164 AssignedDevice *assigned_dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1165 uint16_t old_cmd = pci_get_word(pci_dev->config + PCI_COMMAND);
1166 uint32_t emulate_mask, full_emulation_mask;
1167 int ret;
1169 pci_default_write_config(pci_dev, address, val, len);
1171 if (kvm_has_intx_set_mask() &&
1172 range_covers_byte(address, len, PCI_COMMAND + 1)) {
1173 bool intx_masked = (pci_get_word(pci_dev->config + PCI_COMMAND) &
1174 PCI_COMMAND_INTX_DISABLE);
1176 if (intx_masked != !!(old_cmd & PCI_COMMAND_INTX_DISABLE)) {
1177 ret = kvm_device_intx_set_mask(kvm_state, assigned_dev->dev_id,
1178 intx_masked);
1179 if (ret) {
1180 perror("assigned_dev_pci_write_config: set intx mask");
1184 if (assigned_dev->cap.available & ASSIGNED_DEVICE_CAP_MSI) {
1185 if (range_covers_byte(address, len,
1186 pci_dev->msi_cap + PCI_MSI_FLAGS)) {
1187 assigned_dev_update_msi(pci_dev);
1190 if (assigned_dev->cap.available & ASSIGNED_DEVICE_CAP_MSIX) {
1191 if (range_covers_byte(address, len,
1192 pci_dev->msix_cap + PCI_MSIX_FLAGS + 1)) {
1193 assigned_dev_update_msix(pci_dev);
1197 emulate_mask = 0;
1198 memcpy(&emulate_mask, assigned_dev->emulate_config_write + address, len);
1199 emulate_mask = le32_to_cpu(emulate_mask);
1201 full_emulation_mask = 0xffffffff >> (32 - len * 8);
1203 if (emulate_mask != full_emulation_mask) {
1204 if (emulate_mask) {
1205 val &= ~emulate_mask;
1206 val |= assigned_dev_pci_read(pci_dev, address, len) & emulate_mask;
1208 assigned_dev_pci_write(pci_dev, address, val, len);
1212 static void assigned_dev_setup_cap_read(AssignedDevice *dev, uint32_t offset,
1213 uint32_t len)
1215 assigned_dev_direct_config_read(dev, offset, len);
1216 assigned_dev_emulate_config_read(dev, offset + PCI_CAP_LIST_NEXT, 1);
1219 static int assigned_device_pci_cap_init(PCIDevice *pci_dev)
1221 AssignedDevice *dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1222 PCIRegion *pci_region = dev->real_device.regions;
1223 int ret, pos;
1225 /* Clear initial capabilities pointer and status copied from hw */
1226 pci_set_byte(pci_dev->config + PCI_CAPABILITY_LIST, 0);
1227 pci_set_word(pci_dev->config + PCI_STATUS,
1228 pci_get_word(pci_dev->config + PCI_STATUS) &
1229 ~PCI_STATUS_CAP_LIST);
1231 /* Expose MSI capability
1232 * MSI capability is the 1st capability in capability config */
1233 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_MSI, 0);
1234 if (pos != 0 && kvm_check_extension(kvm_state, KVM_CAP_ASSIGN_DEV_IRQ)) {
1235 if (!check_irqchip_in_kernel()) {
1236 return -ENOTSUP;
1238 dev->cap.available |= ASSIGNED_DEVICE_CAP_MSI;
1239 /* Only 32-bit/no-mask currently supported */
1240 ret = pci_add_capability(pci_dev, PCI_CAP_ID_MSI, pos, 10);
1241 if (ret < 0) {
1242 return ret;
1244 pci_dev->msi_cap = pos;
1246 pci_set_word(pci_dev->config + pos + PCI_MSI_FLAGS,
1247 pci_get_word(pci_dev->config + pos + PCI_MSI_FLAGS) &
1248 PCI_MSI_FLAGS_QMASK);
1249 pci_set_long(pci_dev->config + pos + PCI_MSI_ADDRESS_LO, 0);
1250 pci_set_word(pci_dev->config + pos + PCI_MSI_DATA_32, 0);
1252 /* Set writable fields */
1253 pci_set_word(pci_dev->wmask + pos + PCI_MSI_FLAGS,
1254 PCI_MSI_FLAGS_QSIZE | PCI_MSI_FLAGS_ENABLE);
1255 pci_set_long(pci_dev->wmask + pos + PCI_MSI_ADDRESS_LO, 0xfffffffc);
1256 pci_set_word(pci_dev->wmask + pos + PCI_MSI_DATA_32, 0xffff);
1258 /* Expose MSI-X capability */
1259 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_MSIX, 0);
1260 if (pos != 0 && kvm_device_msix_supported(kvm_state)) {
1261 int bar_nr;
1262 uint32_t msix_table_entry;
1264 if (!check_irqchip_in_kernel()) {
1265 return -ENOTSUP;
1267 dev->cap.available |= ASSIGNED_DEVICE_CAP_MSIX;
1268 ret = pci_add_capability(pci_dev, PCI_CAP_ID_MSIX, pos, 12);
1269 if (ret < 0) {
1270 return ret;
1272 pci_dev->msix_cap = pos;
1274 pci_set_word(pci_dev->config + pos + PCI_MSIX_FLAGS,
1275 pci_get_word(pci_dev->config + pos + PCI_MSIX_FLAGS) &
1276 PCI_MSIX_FLAGS_QSIZE);
1278 /* Only enable and function mask bits are writable */
1279 pci_set_word(pci_dev->wmask + pos + PCI_MSIX_FLAGS,
1280 PCI_MSIX_FLAGS_ENABLE | PCI_MSIX_FLAGS_MASKALL);
1282 msix_table_entry = pci_get_long(pci_dev->config + pos + PCI_MSIX_TABLE);
1283 bar_nr = msix_table_entry & PCI_MSIX_FLAGS_BIRMASK;
1284 msix_table_entry &= ~PCI_MSIX_FLAGS_BIRMASK;
1285 dev->msix_table_addr = pci_region[bar_nr].base_addr + msix_table_entry;
1286 dev->msix_max = pci_get_word(pci_dev->config + pos + PCI_MSIX_FLAGS);
1287 dev->msix_max &= PCI_MSIX_FLAGS_QSIZE;
1288 dev->msix_max += 1;
1291 /* Minimal PM support, nothing writable, device appears to NAK changes */
1292 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_PM, 0);
1293 if (pos) {
1294 uint16_t pmc;
1296 ret = pci_add_capability(pci_dev, PCI_CAP_ID_PM, pos, PCI_PM_SIZEOF);
1297 if (ret < 0) {
1298 return ret;
1301 assigned_dev_setup_cap_read(dev, pos, PCI_PM_SIZEOF);
1303 pmc = pci_get_word(pci_dev->config + pos + PCI_CAP_FLAGS);
1304 pmc &= (PCI_PM_CAP_VER_MASK | PCI_PM_CAP_DSI);
1305 pci_set_word(pci_dev->config + pos + PCI_CAP_FLAGS, pmc);
1307 /* assign_device will bring the device up to D0, so we don't need
1308 * to worry about doing that ourselves here. */
1309 pci_set_word(pci_dev->config + pos + PCI_PM_CTRL,
1310 PCI_PM_CTRL_NO_SOFT_RESET);
1312 pci_set_byte(pci_dev->config + pos + PCI_PM_PPB_EXTENSIONS, 0);
1313 pci_set_byte(pci_dev->config + pos + PCI_PM_DATA_REGISTER, 0);
1316 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_EXP, 0);
1317 if (pos) {
1318 uint8_t version, size = 0;
1319 uint16_t type, devctl, lnksta;
1320 uint32_t devcap, lnkcap;
1322 version = pci_get_byte(pci_dev->config + pos + PCI_EXP_FLAGS);
1323 version &= PCI_EXP_FLAGS_VERS;
1324 if (version == 1) {
1325 size = 0x14;
1326 } else if (version == 2) {
1328 * Check for non-std size, accept reduced size to 0x34,
1329 * which is what bcm5761 implemented, violating the
1330 * PCIe v3.0 spec that regs should exist and be read as 0,
1331 * not optionally provided and shorten the struct size.
1333 size = MIN(0x3c, PCI_CONFIG_SPACE_SIZE - pos);
1334 if (size < 0x34) {
1335 error_report("%s: Invalid size PCIe cap-id 0x%x",
1336 __func__, PCI_CAP_ID_EXP);
1337 return -EINVAL;
1338 } else if (size != 0x3c) {
1339 error_report("WARNING, %s: PCIe cap-id 0x%x has "
1340 "non-standard size 0x%x; std size should be 0x3c",
1341 __func__, PCI_CAP_ID_EXP, size);
1343 } else if (version == 0) {
1344 uint16_t vid, did;
1345 vid = pci_get_word(pci_dev->config + PCI_VENDOR_ID);
1346 did = pci_get_word(pci_dev->config + PCI_DEVICE_ID);
1347 if (vid == PCI_VENDOR_ID_INTEL && did == 0x10ed) {
1349 * quirk for Intel 82599 VF with invalid PCIe capability
1350 * version, should really be version 2 (same as PF)
1352 size = 0x3c;
1356 if (size == 0) {
1357 error_report("%s: Unsupported PCI express capability version %d",
1358 __func__, version);
1359 return -EINVAL;
1362 ret = pci_add_capability(pci_dev, PCI_CAP_ID_EXP, pos, size);
1363 if (ret < 0) {
1364 return ret;
1367 assigned_dev_setup_cap_read(dev, pos, size);
1369 type = pci_get_word(pci_dev->config + pos + PCI_EXP_FLAGS);
1370 type = (type & PCI_EXP_FLAGS_TYPE) >> 4;
1371 if (type != PCI_EXP_TYPE_ENDPOINT &&
1372 type != PCI_EXP_TYPE_LEG_END && type != PCI_EXP_TYPE_RC_END) {
1373 error_report("Device assignment only supports endpoint assignment,"
1374 " device type %d", type);
1375 return -EINVAL;
1378 /* capabilities, pass existing read-only copy
1379 * PCI_EXP_FLAGS_IRQ: updated by hardware, should be direct read */
1381 /* device capabilities: hide FLR */
1382 devcap = pci_get_long(pci_dev->config + pos + PCI_EXP_DEVCAP);
1383 devcap &= ~PCI_EXP_DEVCAP_FLR;
1384 pci_set_long(pci_dev->config + pos + PCI_EXP_DEVCAP, devcap);
1386 /* device control: clear all error reporting enable bits, leaving
1387 * only a few host values. Note, these are
1388 * all writable, but not passed to hw.
1390 devctl = pci_get_word(pci_dev->config + pos + PCI_EXP_DEVCTL);
1391 devctl = (devctl & (PCI_EXP_DEVCTL_READRQ | PCI_EXP_DEVCTL_PAYLOAD)) |
1392 PCI_EXP_DEVCTL_RELAX_EN | PCI_EXP_DEVCTL_NOSNOOP_EN;
1393 pci_set_word(pci_dev->config + pos + PCI_EXP_DEVCTL, devctl);
1394 devctl = PCI_EXP_DEVCTL_BCR_FLR | PCI_EXP_DEVCTL_AUX_PME;
1395 pci_set_word(pci_dev->wmask + pos + PCI_EXP_DEVCTL, ~devctl);
1397 /* Clear device status */
1398 pci_set_word(pci_dev->config + pos + PCI_EXP_DEVSTA, 0);
1400 /* Link capabilities, expose links and latencues, clear reporting */
1401 lnkcap = pci_get_long(pci_dev->config + pos + PCI_EXP_LNKCAP);
1402 lnkcap &= (PCI_EXP_LNKCAP_SLS | PCI_EXP_LNKCAP_MLW |
1403 PCI_EXP_LNKCAP_ASPMS | PCI_EXP_LNKCAP_L0SEL |
1404 PCI_EXP_LNKCAP_L1EL);
1405 pci_set_long(pci_dev->config + pos + PCI_EXP_LNKCAP, lnkcap);
1407 /* Link control, pass existing read-only copy. Should be writable? */
1409 /* Link status, only expose current speed and width */
1410 lnksta = pci_get_word(pci_dev->config + pos + PCI_EXP_LNKSTA);
1411 lnksta &= (PCI_EXP_LNKSTA_CLS | PCI_EXP_LNKSTA_NLW);
1412 pci_set_word(pci_dev->config + pos + PCI_EXP_LNKSTA, lnksta);
1414 if (version >= 2) {
1415 /* Slot capabilities, control, status - not needed for endpoints */
1416 pci_set_long(pci_dev->config + pos + PCI_EXP_SLTCAP, 0);
1417 pci_set_word(pci_dev->config + pos + PCI_EXP_SLTCTL, 0);
1418 pci_set_word(pci_dev->config + pos + PCI_EXP_SLTSTA, 0);
1420 /* Root control, capabilities, status - not needed for endpoints */
1421 pci_set_word(pci_dev->config + pos + PCI_EXP_RTCTL, 0);
1422 pci_set_word(pci_dev->config + pos + PCI_EXP_RTCAP, 0);
1423 pci_set_long(pci_dev->config + pos + PCI_EXP_RTSTA, 0);
1425 /* Device capabilities/control 2, pass existing read-only copy */
1426 /* Link control 2, pass existing read-only copy */
1430 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_PCIX, 0);
1431 if (pos) {
1432 uint16_t cmd;
1433 uint32_t status;
1435 /* Only expose the minimum, 8 byte capability */
1436 ret = pci_add_capability(pci_dev, PCI_CAP_ID_PCIX, pos, 8);
1437 if (ret < 0) {
1438 return ret;
1441 assigned_dev_setup_cap_read(dev, pos, 8);
1443 /* Command register, clear upper bits, including extended modes */
1444 cmd = pci_get_word(pci_dev->config + pos + PCI_X_CMD);
1445 cmd &= (PCI_X_CMD_DPERR_E | PCI_X_CMD_ERO | PCI_X_CMD_MAX_READ |
1446 PCI_X_CMD_MAX_SPLIT);
1447 pci_set_word(pci_dev->config + pos + PCI_X_CMD, cmd);
1449 /* Status register, update with emulated PCI bus location, clear
1450 * error bits, leave the rest. */
1451 status = pci_get_long(pci_dev->config + pos + PCI_X_STATUS);
1452 status &= ~(PCI_X_STATUS_BUS | PCI_X_STATUS_DEVFN);
1453 status |= (pci_bus_num(pci_dev->bus) << 8) | pci_dev->devfn;
1454 status &= ~(PCI_X_STATUS_SPL_DISC | PCI_X_STATUS_UNX_SPL |
1455 PCI_X_STATUS_SPL_ERR);
1456 pci_set_long(pci_dev->config + pos + PCI_X_STATUS, status);
1459 pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_VPD, 0);
1460 if (pos) {
1461 /* Direct R/W passthrough */
1462 ret = pci_add_capability(pci_dev, PCI_CAP_ID_VPD, pos, 8);
1463 if (ret < 0) {
1464 return ret;
1467 assigned_dev_setup_cap_read(dev, pos, 8);
1469 /* direct write for cap content */
1470 assigned_dev_direct_config_write(dev, pos + 2, 6);
1473 /* Devices can have multiple vendor capabilities, get them all */
1474 for (pos = 0; (pos = pci_find_cap_offset(pci_dev, PCI_CAP_ID_VNDR, pos));
1475 pos += PCI_CAP_LIST_NEXT) {
1476 uint8_t len = pci_get_byte(pci_dev->config + pos + PCI_CAP_FLAGS);
1477 /* Direct R/W passthrough */
1478 ret = pci_add_capability(pci_dev, PCI_CAP_ID_VNDR, pos, len);
1479 if (ret < 0) {
1480 return ret;
1483 assigned_dev_setup_cap_read(dev, pos, len);
1485 /* direct write for cap content */
1486 assigned_dev_direct_config_write(dev, pos + 2, len - 2);
1489 /* If real and virtual capability list status bits differ, virtualize the
1490 * access. */
1491 if ((pci_get_word(pci_dev->config + PCI_STATUS) & PCI_STATUS_CAP_LIST) !=
1492 (assigned_dev_pci_read_byte(pci_dev, PCI_STATUS) &
1493 PCI_STATUS_CAP_LIST)) {
1494 dev->emulate_config_read[PCI_STATUS] |= PCI_STATUS_CAP_LIST;
1497 return 0;
1500 static uint64_t
1501 assigned_dev_msix_mmio_read(void *opaque, hwaddr addr,
1502 unsigned size)
1504 AssignedDevice *adev = opaque;
1505 uint64_t val;
1507 memcpy(&val, (void *)((uint8_t *)adev->msix_table + addr), size);
1509 return val;
1512 static void assigned_dev_msix_mmio_write(void *opaque, hwaddr addr,
1513 uint64_t val, unsigned size)
1515 AssignedDevice *adev = opaque;
1516 PCIDevice *pdev = &adev->dev;
1517 uint16_t ctrl;
1518 MSIXTableEntry orig;
1519 int i = addr >> 4;
1521 if (i >= adev->msix_max) {
1522 return; /* Drop write */
1525 ctrl = pci_get_word(pdev->config + pdev->msix_cap + PCI_MSIX_FLAGS);
1527 DEBUG("write to MSI-X table offset 0x%lx, val 0x%lx\n", addr, val);
1529 if (ctrl & PCI_MSIX_FLAGS_ENABLE) {
1530 orig = adev->msix_table[i];
1533 memcpy((uint8_t *)adev->msix_table + addr, &val, size);
1535 if (ctrl & PCI_MSIX_FLAGS_ENABLE) {
1536 MSIXTableEntry *entry = &adev->msix_table[i];
1538 if (!assigned_dev_msix_masked(&orig) &&
1539 assigned_dev_msix_masked(entry)) {
1541 * Vector masked, disable it
1543 * XXX It's not clear if we can or should actually attempt
1544 * to mask or disable the interrupt. KVM doesn't have
1545 * support for pending bits and kvm_assign_set_msix_entry
1546 * doesn't modify the device hardware mask. Interrupts
1547 * while masked are simply not injected to the guest, so
1548 * are lost. Can we get away with always injecting an
1549 * interrupt on unmask?
1551 } else if (assigned_dev_msix_masked(&orig) &&
1552 !assigned_dev_msix_masked(entry)) {
1553 /* Vector unmasked */
1554 if (i >= adev->msi_virq_nr || adev->msi_virq[i] < 0) {
1555 /* Previously unassigned vector, start from scratch */
1556 assigned_dev_update_msix(pdev);
1557 return;
1558 } else {
1559 /* Update an existing, previously masked vector */
1560 MSIMessage msg;
1561 int ret;
1563 msg.address = entry->addr_lo |
1564 ((uint64_t)entry->addr_hi << 32);
1565 msg.data = entry->data;
1567 ret = kvm_irqchip_update_msi_route(kvm_state,
1568 adev->msi_virq[i], msg);
1569 if (ret) {
1570 error_report("Error updating irq routing entry (%d)", ret);
1577 static const MemoryRegionOps assigned_dev_msix_mmio_ops = {
1578 .read = assigned_dev_msix_mmio_read,
1579 .write = assigned_dev_msix_mmio_write,
1580 .endianness = DEVICE_NATIVE_ENDIAN,
1581 .valid = {
1582 .min_access_size = 4,
1583 .max_access_size = 8,
1585 .impl = {
1586 .min_access_size = 4,
1587 .max_access_size = 8,
1591 static void assigned_dev_msix_reset(AssignedDevice *dev)
1593 MSIXTableEntry *entry;
1594 int i;
1596 if (!dev->msix_table) {
1597 return;
1600 memset(dev->msix_table, 0, MSIX_PAGE_SIZE);
1602 for (i = 0, entry = dev->msix_table; i < dev->msix_max; i++, entry++) {
1603 entry->ctrl = cpu_to_le32(0x1); /* Masked */
1607 static int assigned_dev_register_msix_mmio(AssignedDevice *dev)
1609 dev->msix_table = mmap(NULL, MSIX_PAGE_SIZE, PROT_READ|PROT_WRITE,
1610 MAP_ANONYMOUS|MAP_PRIVATE, 0, 0);
1611 if (dev->msix_table == MAP_FAILED) {
1612 error_report("fail allocate msix_table! %s", strerror(errno));
1613 return -EFAULT;
1616 assigned_dev_msix_reset(dev);
1618 memory_region_init_io(&dev->mmio, &assigned_dev_msix_mmio_ops, dev,
1619 "assigned-dev-msix", MSIX_PAGE_SIZE);
1620 return 0;
1623 static void assigned_dev_unregister_msix_mmio(AssignedDevice *dev)
1625 if (!dev->msix_table) {
1626 return;
1629 memory_region_destroy(&dev->mmio);
1631 if (munmap(dev->msix_table, MSIX_PAGE_SIZE) == -1) {
1632 error_report("error unmapping msix_table! %s", strerror(errno));
1634 dev->msix_table = NULL;
1637 static const VMStateDescription vmstate_assigned_device = {
1638 .name = "pci-assign",
1639 .unmigratable = 1,
1642 static void reset_assigned_device(DeviceState *dev)
1644 PCIDevice *pci_dev = DO_UPCAST(PCIDevice, qdev, dev);
1645 AssignedDevice *adev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1646 char reset_file[64];
1647 const char reset[] = "1";
1648 int fd, ret;
1651 * If a guest is reset without being shutdown, MSI/MSI-X can still
1652 * be running. We want to return the device to a known state on
1653 * reset, so disable those here. We especially do not want MSI-X
1654 * enabled since it lives in MMIO space, which is about to get
1655 * disabled.
1657 if (adev->assigned_irq_type == ASSIGNED_IRQ_MSIX) {
1658 uint16_t ctrl = pci_get_word(pci_dev->config +
1659 pci_dev->msix_cap + PCI_MSIX_FLAGS);
1661 pci_set_word(pci_dev->config + pci_dev->msix_cap + PCI_MSIX_FLAGS,
1662 ctrl & ~PCI_MSIX_FLAGS_ENABLE);
1663 assigned_dev_update_msix(pci_dev);
1664 } else if (adev->assigned_irq_type == ASSIGNED_IRQ_MSI) {
1665 uint8_t ctrl = pci_get_byte(pci_dev->config +
1666 pci_dev->msi_cap + PCI_MSI_FLAGS);
1668 pci_set_byte(pci_dev->config + pci_dev->msi_cap + PCI_MSI_FLAGS,
1669 ctrl & ~PCI_MSI_FLAGS_ENABLE);
1670 assigned_dev_update_msi(pci_dev);
1673 snprintf(reset_file, sizeof(reset_file),
1674 "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/reset",
1675 adev->host.domain, adev->host.bus, adev->host.slot,
1676 adev->host.function);
1679 * Issue a device reset via pci-sysfs. Note that we use write(2) here
1680 * and ignore the return value because some kernels have a bug that
1681 * returns 0 rather than bytes written on success, sending us into an
1682 * infinite retry loop using other write mechanisms.
1684 fd = open(reset_file, O_WRONLY);
1685 if (fd != -1) {
1686 ret = write(fd, reset, strlen(reset));
1687 (void)ret;
1688 close(fd);
1692 * When a 0 is written to the bus master register, the device is logically
1693 * disconnected from the PCI bus. This avoids further DMA transfers.
1695 assigned_dev_pci_write_config(pci_dev, PCI_COMMAND, 0, 1);
1698 static int assigned_initfn(struct PCIDevice *pci_dev)
1700 AssignedDevice *dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1701 uint8_t e_intx;
1702 int r;
1704 if (!kvm_enabled()) {
1705 error_report("pci-assign: error: requires KVM support");
1706 return -1;
1709 if (!dev->host.domain && !dev->host.bus && !dev->host.slot &&
1710 !dev->host.function) {
1711 error_report("pci-assign: error: no host device specified");
1712 return -1;
1716 * Set up basic config space access control. Will be further refined during
1717 * device initialization.
1719 assigned_dev_emulate_config_read(dev, 0, PCI_CONFIG_SPACE_SIZE);
1720 assigned_dev_direct_config_read(dev, PCI_STATUS, 2);
1721 assigned_dev_direct_config_read(dev, PCI_REVISION_ID, 1);
1722 assigned_dev_direct_config_read(dev, PCI_CLASS_PROG, 3);
1723 assigned_dev_direct_config_read(dev, PCI_CACHE_LINE_SIZE, 1);
1724 assigned_dev_direct_config_read(dev, PCI_LATENCY_TIMER, 1);
1725 assigned_dev_direct_config_read(dev, PCI_BIST, 1);
1726 assigned_dev_direct_config_read(dev, PCI_CARDBUS_CIS, 4);
1727 assigned_dev_direct_config_read(dev, PCI_SUBSYSTEM_VENDOR_ID, 2);
1728 assigned_dev_direct_config_read(dev, PCI_SUBSYSTEM_ID, 2);
1729 assigned_dev_direct_config_read(dev, PCI_CAPABILITY_LIST + 1, 7);
1730 assigned_dev_direct_config_read(dev, PCI_MIN_GNT, 1);
1731 assigned_dev_direct_config_read(dev, PCI_MAX_LAT, 1);
1732 memcpy(dev->emulate_config_write, dev->emulate_config_read,
1733 sizeof(dev->emulate_config_read));
1735 if (get_real_device(dev, dev->host.domain, dev->host.bus,
1736 dev->host.slot, dev->host.function)) {
1737 error_report("pci-assign: Error: Couldn't get real device (%s)!",
1738 dev->dev.qdev.id);
1739 goto out;
1742 if (assigned_device_pci_cap_init(pci_dev) < 0) {
1743 goto out;
1746 /* intercept MSI-X entry page in the MMIO */
1747 if (dev->cap.available & ASSIGNED_DEVICE_CAP_MSIX) {
1748 if (assigned_dev_register_msix_mmio(dev)) {
1749 goto out;
1753 /* handle real device's MMIO/PIO BARs */
1754 if (assigned_dev_register_regions(dev->real_device.regions,
1755 dev->real_device.region_number,
1756 dev)) {
1757 goto out;
1760 /* handle interrupt routing */
1761 e_intx = dev->dev.config[PCI_INTERRUPT_PIN] - 1;
1762 dev->intpin = e_intx;
1763 dev->intx_route.mode = PCI_INTX_DISABLED;
1764 dev->intx_route.irq = -1;
1766 /* assign device to guest */
1767 r = assign_device(dev);
1768 if (r < 0) {
1769 goto out;
1772 /* assign legacy INTx to the device */
1773 r = assign_intx(dev);
1774 if (r < 0) {
1775 goto assigned_out;
1778 assigned_dev_load_option_rom(dev);
1780 add_boot_device_path(dev->bootindex, &pci_dev->qdev, NULL);
1782 return 0;
1784 assigned_out:
1785 deassign_device(dev);
1786 out:
1787 free_assigned_device(dev);
1788 return -1;
1791 static void assigned_exitfn(struct PCIDevice *pci_dev)
1793 AssignedDevice *dev = DO_UPCAST(AssignedDevice, dev, pci_dev);
1795 deassign_device(dev);
1796 free_assigned_device(dev);
1799 static Property assigned_dev_properties[] = {
1800 DEFINE_PROP_PCI_HOST_DEVADDR("host", AssignedDevice, host),
1801 DEFINE_PROP_BIT("prefer_msi", AssignedDevice, features,
1802 ASSIGNED_DEVICE_PREFER_MSI_BIT, false),
1803 DEFINE_PROP_BIT("share_intx", AssignedDevice, features,
1804 ASSIGNED_DEVICE_SHARE_INTX_BIT, true),
1805 DEFINE_PROP_INT32("bootindex", AssignedDevice, bootindex, -1),
1806 DEFINE_PROP_STRING("configfd", AssignedDevice, configfd_name),
1807 DEFINE_PROP_END_OF_LIST(),
1810 static void assign_class_init(ObjectClass *klass, void *data)
1812 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1813 DeviceClass *dc = DEVICE_CLASS(klass);
1815 k->init = assigned_initfn;
1816 k->exit = assigned_exitfn;
1817 k->config_read = assigned_dev_pci_read_config;
1818 k->config_write = assigned_dev_pci_write_config;
1819 dc->props = assigned_dev_properties;
1820 dc->vmsd = &vmstate_assigned_device;
1821 dc->reset = reset_assigned_device;
1822 dc->desc = "KVM-based PCI passthrough";
1825 static const TypeInfo assign_info = {
1826 .name = "kvm-pci-assign",
1827 .parent = TYPE_PCI_DEVICE,
1828 .instance_size = sizeof(AssignedDevice),
1829 .class_init = assign_class_init,
1832 static void assign_register_types(void)
1834 type_register_static(&assign_info);
1837 type_init(assign_register_types)
1840 * Scan the assigned devices for the devices that have an option ROM, and then
1841 * load the corresponding ROM data to RAM. If an error occurs while loading an
1842 * option ROM, we just ignore that option ROM and continue with the next one.
1844 static void assigned_dev_load_option_rom(AssignedDevice *dev)
1846 char name[32], rom_file[64];
1847 FILE *fp;
1848 uint8_t val;
1849 struct stat st;
1850 void *ptr;
1852 /* If loading ROM from file, pci handles it */
1853 if (dev->dev.romfile || !dev->dev.rom_bar) {
1854 return;
1857 snprintf(rom_file, sizeof(rom_file),
1858 "/sys/bus/pci/devices/%04x:%02x:%02x.%01x/rom",
1859 dev->host.domain, dev->host.bus, dev->host.slot,
1860 dev->host.function);
1862 if (stat(rom_file, &st)) {
1863 return;
1866 if (access(rom_file, F_OK)) {
1867 error_report("pci-assign: Insufficient privileges for %s", rom_file);
1868 return;
1871 /* Write "1" to the ROM file to enable it */
1872 fp = fopen(rom_file, "r+");
1873 if (fp == NULL) {
1874 return;
1876 val = 1;
1877 if (fwrite(&val, 1, 1, fp) != 1) {
1878 goto close_rom;
1880 fseek(fp, 0, SEEK_SET);
1882 snprintf(name, sizeof(name), "%s.rom",
1883 object_get_typename(OBJECT(dev)));
1884 memory_region_init_ram(&dev->dev.rom, name, st.st_size);
1885 vmstate_register_ram(&dev->dev.rom, &dev->dev.qdev);
1886 ptr = memory_region_get_ram_ptr(&dev->dev.rom);
1887 memset(ptr, 0xff, st.st_size);
1889 if (!fread(ptr, 1, st.st_size, fp)) {
1890 error_report("pci-assign: Cannot read from host %s\n"
1891 "\tDevice option ROM contents are probably invalid "
1892 "(check dmesg).\n\tSkip option ROM probe with rombar=0, "
1893 "or load from file with romfile=", rom_file);
1894 memory_region_destroy(&dev->dev.rom);
1895 goto close_rom;
1898 pci_register_bar(&dev->dev, PCI_ROM_SLOT, 0, &dev->dev.rom);
1899 dev->dev.has_rom = true;
1900 close_rom:
1901 /* Write "0" to disable ROM */
1902 fseek(fp, 0, SEEK_SET);
1903 val = 0;
1904 if (!fwrite(&val, 1, 1, fp)) {
1905 DEBUG("%s\n", "Failed to disable pci-sysfs rom file");
1907 fclose(fp);