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