2 * Inter-VM Shared Memory PCI device.
5 * Cam Macdonell <cam@cs.ualberta.ca>
7 * Based On: cirrus_vga.c
8 * Copyright (c) 2004 Fabrice Bellard
9 * Copyright (c) 2004 Makoto Suzuki (suzu)
12 * Copyright (c) 2006 Igor Kovalenko
14 * This code is licensed under the GNU GPL v2.
23 #include <sys/types.h>
25 #define IVSHMEM_IOEVENTFD 0
28 #define IVSHMEM_PEER 0
29 #define IVSHMEM_MASTER 1
31 #define IVSHMEM_REG_BAR_SIZE 0x100
33 //#define DEBUG_IVSHMEM
35 #define IVSHMEM_DPRINTF(fmt, ...) \
36 do {printf("IVSHMEM: " fmt, ## __VA_ARGS__); } while (0)
38 #define IVSHMEM_DPRINTF(fmt, ...)
46 typedef struct EventfdEntry
{
51 typedef struct IVShmemState
{
57 CharDriverState
**eventfd_chr
;
58 CharDriverState
*server_chr
;
59 int ivshmem_mmio_io_addr
;
62 pcibus_t shm_pci_addr
;
63 uint64_t ivshmem_offset
;
64 uint64_t ivshmem_size
; /* size of shared memory region */
65 int shm_fd
; /* shared memory file descriptor */
68 int nb_peers
; /* how many guests we have space for */
69 int max_peer
; /* maximum numbered peer */
74 EventfdEntry
*eventfd_table
;
79 int role_val
; /* scalar to avoid multiple string comparisons */
82 /* registers for the Inter-VM shared memory device */
83 enum ivshmem_registers
{
90 static inline uint32_t ivshmem_has_feature(IVShmemState
*ivs
,
91 unsigned int feature
) {
92 return (ivs
->features
& (1 << feature
));
95 static inline bool is_power_of_two(uint64_t x
) {
96 return (x
& (x
- 1)) == 0;
99 static void ivshmem_map(PCIDevice
*pci_dev
, int region_num
,
100 pcibus_t addr
, pcibus_t size
, int type
)
102 IVShmemState
*s
= DO_UPCAST(IVShmemState
, dev
, pci_dev
);
104 s
->shm_pci_addr
= addr
;
106 if (s
->ivshmem_offset
> 0) {
107 cpu_register_physical_memory(s
->shm_pci_addr
, s
->ivshmem_size
,
111 IVSHMEM_DPRINTF("guest pci addr = %" FMT_PCIBUS
", guest h/w addr = %"
112 PRIu64
", size = %" FMT_PCIBUS
"\n", addr
, s
->ivshmem_offset
, size
);
116 /* accessing registers - based on rtl8139 */
117 static void ivshmem_update_irq(IVShmemState
*s
, int val
)
120 isr
= (s
->intrstatus
& s
->intrmask
) & 0xffffffff;
122 /* don't print ISR resets */
124 IVSHMEM_DPRINTF("Set IRQ to %d (%04x %04x)\n",
125 isr
? 1 : 0, s
->intrstatus
, s
->intrmask
);
128 qemu_set_irq(s
->dev
.irq
[0], (isr
!= 0));
131 static void ivshmem_IntrMask_write(IVShmemState
*s
, uint32_t val
)
133 IVSHMEM_DPRINTF("IntrMask write(w) val = 0x%04x\n", val
);
137 ivshmem_update_irq(s
, val
);
140 static uint32_t ivshmem_IntrMask_read(IVShmemState
*s
)
142 uint32_t ret
= s
->intrmask
;
144 IVSHMEM_DPRINTF("intrmask read(w) val = 0x%04x\n", ret
);
149 static void ivshmem_IntrStatus_write(IVShmemState
*s
, uint32_t val
)
151 IVSHMEM_DPRINTF("IntrStatus write(w) val = 0x%04x\n", val
);
155 ivshmem_update_irq(s
, val
);
159 static uint32_t ivshmem_IntrStatus_read(IVShmemState
*s
)
161 uint32_t ret
= s
->intrstatus
;
163 /* reading ISR clears all interrupts */
166 ivshmem_update_irq(s
, 0);
171 static void ivshmem_io_writew(void *opaque
, target_phys_addr_t addr
,
175 IVSHMEM_DPRINTF("We shouldn't be writing words\n");
178 static void ivshmem_io_writel(void *opaque
, target_phys_addr_t addr
,
181 IVShmemState
*s
= opaque
;
183 uint64_t write_one
= 1;
184 uint16_t dest
= val
>> 16;
185 uint16_t vector
= val
& 0xff;
189 IVSHMEM_DPRINTF("writing to addr " TARGET_FMT_plx
"\n", addr
);
193 ivshmem_IntrMask_write(s
, val
);
197 ivshmem_IntrStatus_write(s
, val
);
201 /* check that dest VM ID is reasonable */
202 if (dest
> s
->max_peer
) {
203 IVSHMEM_DPRINTF("Invalid destination VM ID (%d)\n", dest
);
207 /* check doorbell range */
208 if (vector
< s
->peers
[dest
].nb_eventfds
) {
209 IVSHMEM_DPRINTF("Writing %" PRId64
" to VM %d on vector %d\n",
210 write_one
, dest
, vector
);
211 if (write(s
->peers
[dest
].eventfds
[vector
],
212 &(write_one
), 8) != 8) {
213 IVSHMEM_DPRINTF("error writing to eventfd\n");
218 IVSHMEM_DPRINTF("Invalid VM Doorbell VM %d\n", dest
);
222 static void ivshmem_io_writeb(void *opaque
, target_phys_addr_t addr
,
225 IVSHMEM_DPRINTF("We shouldn't be writing bytes\n");
228 static uint32_t ivshmem_io_readw(void *opaque
, target_phys_addr_t addr
)
231 IVSHMEM_DPRINTF("We shouldn't be reading words\n");
235 static uint32_t ivshmem_io_readl(void *opaque
, target_phys_addr_t addr
)
238 IVShmemState
*s
= opaque
;
244 ret
= ivshmem_IntrMask_read(s
);
248 ret
= ivshmem_IntrStatus_read(s
);
252 /* return my VM ID if the memory is mapped */
261 IVSHMEM_DPRINTF("why are we reading " TARGET_FMT_plx
"\n", addr
);
268 static uint32_t ivshmem_io_readb(void *opaque
, target_phys_addr_t addr
)
270 IVSHMEM_DPRINTF("We shouldn't be reading bytes\n");
275 static CPUReadMemoryFunc
* const ivshmem_mmio_read
[3] = {
281 static CPUWriteMemoryFunc
* const ivshmem_mmio_write
[3] = {
287 static void ivshmem_receive(void *opaque
, const uint8_t *buf
, int size
)
289 IVShmemState
*s
= opaque
;
291 ivshmem_IntrStatus_write(s
, *buf
);
293 IVSHMEM_DPRINTF("ivshmem_receive 0x%02x\n", *buf
);
296 static int ivshmem_can_receive(void * opaque
)
301 static void ivshmem_event(void *opaque
, int event
)
303 IVSHMEM_DPRINTF("ivshmem_event %d\n", event
);
306 static void fake_irqfd(void *opaque
, const uint8_t *buf
, int size
) {
308 EventfdEntry
*entry
= opaque
;
309 PCIDevice
*pdev
= entry
->pdev
;
311 IVSHMEM_DPRINTF("interrupt on vector %p %d\n", pdev
, entry
->vector
);
312 msix_notify(pdev
, entry
->vector
);
315 static CharDriverState
* create_eventfd_chr_device(void * opaque
, int eventfd
,
318 /* create a event character device based on the passed eventfd */
319 IVShmemState
*s
= opaque
;
320 CharDriverState
* chr
;
322 chr
= qemu_chr_open_eventfd(eventfd
);
325 fprintf(stderr
, "creating eventfd for eventfd %d failed\n", eventfd
);
329 /* if MSI is supported we need multiple interrupts */
330 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
331 s
->eventfd_table
[vector
].pdev
= &s
->dev
;
332 s
->eventfd_table
[vector
].vector
= vector
;
334 qemu_chr_add_handlers(chr
, ivshmem_can_receive
, fake_irqfd
,
335 ivshmem_event
, &s
->eventfd_table
[vector
]);
337 qemu_chr_add_handlers(chr
, ivshmem_can_receive
, ivshmem_receive
,
345 static int check_shm_size(IVShmemState
*s
, int fd
) {
346 /* check that the guest isn't going to try and map more memory than the
347 * the object has allocated return -1 to indicate error */
353 if (s
->ivshmem_size
> buf
.st_size
) {
355 "IVSHMEM ERROR: Requested memory size greater"
356 " than shared object size (%" PRIu64
" > %" PRIu64
")\n",
357 s
->ivshmem_size
, (uint64_t)buf
.st_size
);
364 /* create the shared memory BAR when we are not using the server, so we can
365 * create the BAR and map the memory immediately */
366 static void create_shared_memory_BAR(IVShmemState
*s
, int fd
) {
372 ptr
= mmap(0, s
->ivshmem_size
, PROT_READ
|PROT_WRITE
, MAP_SHARED
, fd
, 0);
374 s
->ivshmem_offset
= qemu_ram_alloc_from_ptr(&s
->dev
.qdev
, "ivshmem.bar2",
375 s
->ivshmem_size
, ptr
);
377 /* region for shared memory */
378 pci_register_bar(&s
->dev
, 2, s
->ivshmem_size
,
379 PCI_BASE_ADDRESS_SPACE_MEMORY
, ivshmem_map
);
382 static void close_guest_eventfds(IVShmemState
*s
, int posn
)
384 int i
, guest_curr_max
;
386 guest_curr_max
= s
->peers
[posn
].nb_eventfds
;
388 for (i
= 0; i
< guest_curr_max
; i
++) {
389 kvm_set_ioeventfd_mmio_long(s
->peers
[posn
].eventfds
[i
],
390 s
->mmio_addr
+ DOORBELL
, (posn
<< 16) | i
, 0);
391 close(s
->peers
[posn
].eventfds
[i
]);
394 qemu_free(s
->peers
[posn
].eventfds
);
395 s
->peers
[posn
].nb_eventfds
= 0;
398 static void setup_ioeventfds(IVShmemState
*s
) {
402 for (i
= 0; i
<= s
->max_peer
; i
++) {
403 for (j
= 0; j
< s
->peers
[i
].nb_eventfds
; j
++) {
404 kvm_set_ioeventfd_mmio_long(s
->peers
[i
].eventfds
[j
],
405 s
->mmio_addr
+ DOORBELL
, (i
<< 16) | j
, 1);
410 /* this function increase the dynamic storage need to store data about other
412 static void increase_dynamic_storage(IVShmemState
*s
, int new_min_size
) {
416 old_nb_alloc
= s
->nb_peers
;
418 while (new_min_size
>= s
->nb_peers
)
419 s
->nb_peers
= s
->nb_peers
* 2;
421 IVSHMEM_DPRINTF("bumping storage to %d guests\n", s
->nb_peers
);
422 s
->peers
= qemu_realloc(s
->peers
, s
->nb_peers
* sizeof(Peer
));
424 /* zero out new pointers */
425 for (j
= old_nb_alloc
; j
< s
->nb_peers
; j
++) {
426 s
->peers
[j
].eventfds
= NULL
;
427 s
->peers
[j
].nb_eventfds
= 0;
431 static void ivshmem_read(void *opaque
, const uint8_t * buf
, int flags
)
433 IVShmemState
*s
= opaque
;
434 int incoming_fd
, tmp_fd
;
435 int guest_max_eventfd
;
438 memcpy(&incoming_posn
, buf
, sizeof(long));
439 /* pick off s->server_chr->msgfd and store it, posn should accompany msg */
440 tmp_fd
= qemu_chr_get_msgfd(s
->server_chr
);
441 IVSHMEM_DPRINTF("posn is %ld, fd is %d\n", incoming_posn
, tmp_fd
);
443 /* make sure we have enough space for this guest */
444 if (incoming_posn
>= s
->nb_peers
) {
445 increase_dynamic_storage(s
, incoming_posn
);
449 /* if posn is positive and unseen before then this is our posn*/
450 if ((incoming_posn
>= 0) &&
451 (s
->peers
[incoming_posn
].eventfds
== NULL
)) {
452 /* receive our posn */
453 s
->vm_id
= incoming_posn
;
456 /* otherwise an fd == -1 means an existing guest has gone away */
457 IVSHMEM_DPRINTF("posn %ld has gone away\n", incoming_posn
);
458 close_guest_eventfds(s
, incoming_posn
);
463 /* because of the implementation of get_msgfd, we need a dup */
464 incoming_fd
= dup(tmp_fd
);
466 if (incoming_fd
== -1) {
467 fprintf(stderr
, "could not allocate file descriptor %s\n",
472 /* if the position is -1, then it's shared memory region fd */
473 if (incoming_posn
== -1) {
479 if (check_shm_size(s
, incoming_fd
) == -1) {
483 /* mmap the region and map into the BAR2 */
484 map_ptr
= mmap(0, s
->ivshmem_size
, PROT_READ
|PROT_WRITE
, MAP_SHARED
,
486 s
->ivshmem_offset
= qemu_ram_alloc_from_ptr(&s
->dev
.qdev
,
487 "ivshmem.bar2", s
->ivshmem_size
, map_ptr
);
489 IVSHMEM_DPRINTF("guest pci addr = %" FMT_PCIBUS
", guest h/w addr = %"
490 PRIu64
", size = %" PRIu64
"\n", s
->shm_pci_addr
,
491 s
->ivshmem_offset
, s
->ivshmem_size
);
493 if (s
->shm_pci_addr
> 0) {
494 /* map memory into BAR2 */
495 cpu_register_physical_memory(s
->shm_pci_addr
, s
->ivshmem_size
,
499 /* only store the fd if it is successfully mapped */
500 s
->shm_fd
= incoming_fd
;
505 /* each guest has an array of eventfds, and we keep track of how many
506 * guests for each VM */
507 guest_max_eventfd
= s
->peers
[incoming_posn
].nb_eventfds
;
509 if (guest_max_eventfd
== 0) {
510 /* one eventfd per MSI vector */
511 s
->peers
[incoming_posn
].eventfds
= (int *) qemu_malloc(s
->vectors
*
515 /* this is an eventfd for a particular guest VM */
516 IVSHMEM_DPRINTF("eventfds[%ld][%d] = %d\n", incoming_posn
,
517 guest_max_eventfd
, incoming_fd
);
518 s
->peers
[incoming_posn
].eventfds
[guest_max_eventfd
] = incoming_fd
;
520 /* increment count for particular guest */
521 s
->peers
[incoming_posn
].nb_eventfds
++;
523 /* keep track of the maximum VM ID */
524 if (incoming_posn
> s
->max_peer
) {
525 s
->max_peer
= incoming_posn
;
528 if (incoming_posn
== s
->vm_id
) {
529 s
->eventfd_chr
[guest_max_eventfd
] = create_eventfd_chr_device(s
,
530 s
->peers
[s
->vm_id
].eventfds
[guest_max_eventfd
],
534 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
)) {
535 if (kvm_set_ioeventfd_mmio_long(incoming_fd
, s
->mmio_addr
+ DOORBELL
,
536 (incoming_posn
<< 16) | guest_max_eventfd
, 1) < 0) {
537 fprintf(stderr
, "ivshmem: ioeventfd not available\n");
544 static void ivshmem_reset(DeviceState
*d
)
546 IVShmemState
*s
= DO_UPCAST(IVShmemState
, dev
.qdev
, d
);
552 static void ivshmem_mmio_map(PCIDevice
*pci_dev
, int region_num
,
553 pcibus_t addr
, pcibus_t size
, int type
)
555 IVShmemState
*s
= DO_UPCAST(IVShmemState
, dev
, pci_dev
);
558 cpu_register_physical_memory(addr
+ 0, IVSHMEM_REG_BAR_SIZE
,
559 s
->ivshmem_mmio_io_addr
);
561 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
)) {
566 static uint64_t ivshmem_get_size(IVShmemState
* s
) {
571 value
= strtoull(s
->sizearg
, &ptr
, 10);
573 case 0: case 'M': case 'm':
580 fprintf(stderr
, "qemu: invalid ram size: %s\n", s
->sizearg
);
584 /* BARs must be a power of 2 */
585 if (!is_power_of_two(value
)) {
586 fprintf(stderr
, "ivshmem: size must be power of 2\n");
593 static void ivshmem_setup_msi(IVShmemState
* s
) {
597 /* allocate the MSI-X vectors */
599 if (!msix_init(&s
->dev
, s
->vectors
, 1, 0)) {
600 pci_register_bar(&s
->dev
, 1,
601 msix_bar_size(&s
->dev
),
602 PCI_BASE_ADDRESS_SPACE_MEMORY
,
604 IVSHMEM_DPRINTF("msix initialized (%d vectors)\n", s
->vectors
);
606 IVSHMEM_DPRINTF("msix initialization failed\n");
610 /* 'activate' the vectors */
611 for (i
= 0; i
< s
->vectors
; i
++) {
612 msix_vector_use(&s
->dev
, i
);
615 /* allocate Qemu char devices for receiving interrupts */
616 s
->eventfd_table
= qemu_mallocz(s
->vectors
* sizeof(EventfdEntry
));
619 static void ivshmem_save(QEMUFile
* f
, void *opaque
)
621 IVShmemState
*proxy
= opaque
;
623 IVSHMEM_DPRINTF("ivshmem_save\n");
624 pci_device_save(&proxy
->dev
, f
);
626 if (ivshmem_has_feature(proxy
, IVSHMEM_MSI
)) {
627 msix_save(&proxy
->dev
, f
);
629 qemu_put_be32(f
, proxy
->intrstatus
);
630 qemu_put_be32(f
, proxy
->intrmask
);
635 static int ivshmem_load(QEMUFile
* f
, void *opaque
, int version_id
)
637 IVSHMEM_DPRINTF("ivshmem_load\n");
639 IVShmemState
*proxy
= opaque
;
642 if (version_id
> 0) {
646 if (proxy
->role_val
== IVSHMEM_PEER
) {
647 fprintf(stderr
, "ivshmem: 'peer' devices are not migratable\n");
651 ret
= pci_device_load(&proxy
->dev
, f
);
656 if (ivshmem_has_feature(proxy
, IVSHMEM_MSI
)) {
657 msix_load(&proxy
->dev
, f
);
658 for (i
= 0; i
< proxy
->vectors
; i
++) {
659 msix_vector_use(&proxy
->dev
, i
);
662 proxy
->intrstatus
= qemu_get_be32(f
);
663 proxy
->intrmask
= qemu_get_be32(f
);
669 static int pci_ivshmem_init(PCIDevice
*dev
)
671 IVShmemState
*s
= DO_UPCAST(IVShmemState
, dev
, dev
);
674 if (s
->sizearg
== NULL
)
675 s
->ivshmem_size
= 4 << 20; /* 4 MB default */
677 s
->ivshmem_size
= ivshmem_get_size(s
);
680 register_savevm(&s
->dev
.qdev
, "ivshmem", 0, 0, ivshmem_save
, ivshmem_load
,
683 /* IRQFD requires MSI */
684 if (ivshmem_has_feature(s
, IVSHMEM_IOEVENTFD
) &&
685 !ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
686 fprintf(stderr
, "ivshmem: ioeventfd/irqfd requires MSI\n");
690 /* check that role is reasonable */
692 if (strncmp(s
->role
, "peer", 5) == 0) {
693 s
->role_val
= IVSHMEM_PEER
;
694 } else if (strncmp(s
->role
, "master", 7) == 0) {
695 s
->role_val
= IVSHMEM_MASTER
;
697 fprintf(stderr
, "ivshmem: 'role' must be 'peer' or 'master'\n");
701 s
->role_val
= IVSHMEM_MASTER
; /* default */
704 if (s
->role_val
== IVSHMEM_PEER
) {
705 register_device_unmigratable(&s
->dev
.qdev
, "ivshmem", s
);
708 pci_conf
= s
->dev
.config
;
709 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_REDHAT_QUMRANET
);
710 pci_conf
[0x02] = 0x10;
711 pci_conf
[0x03] = 0x11;
712 pci_conf
[PCI_COMMAND
] = PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
;
713 pci_config_set_class(pci_conf
, PCI_CLASS_MEMORY_RAM
);
714 pci_conf
[PCI_HEADER_TYPE
] = PCI_HEADER_TYPE_NORMAL
;
716 pci_config_set_interrupt_pin(pci_conf
, 1);
719 s
->ivshmem_offset
= 0;
722 s
->ivshmem_mmio_io_addr
= cpu_register_io_memory(ivshmem_mmio_read
,
723 ivshmem_mmio_write
, s
);
724 /* region for registers*/
725 pci_register_bar(&s
->dev
, 0, IVSHMEM_REG_BAR_SIZE
,
726 PCI_BASE_ADDRESS_SPACE_MEMORY
, ivshmem_mmio_map
);
728 if ((s
->server_chr
!= NULL
) &&
729 (strncmp(s
->server_chr
->filename
, "unix:", 5) == 0)) {
730 /* if we get a UNIX socket as the parameter we will talk
731 * to the ivshmem server to receive the memory region */
733 if (s
->shmobj
!= NULL
) {
734 fprintf(stderr
, "WARNING: do not specify both 'chardev' "
735 "and 'shm' with ivshmem\n");
738 IVSHMEM_DPRINTF("using shared memory server (socket = %s)\n",
739 s
->server_chr
->filename
);
741 if (ivshmem_has_feature(s
, IVSHMEM_MSI
)) {
742 ivshmem_setup_msi(s
);
745 /* we allocate enough space for 16 guests and grow as needed */
749 /* allocate/initialize space for interrupt handling */
750 s
->peers
= qemu_mallocz(s
->nb_peers
* sizeof(Peer
));
752 pci_register_bar(&s
->dev
, 2, s
->ivshmem_size
,
753 PCI_BASE_ADDRESS_SPACE_MEMORY
, ivshmem_map
);
755 s
->eventfd_chr
= qemu_mallocz(s
->vectors
* sizeof(CharDriverState
*));
757 qemu_chr_add_handlers(s
->server_chr
, ivshmem_can_receive
, ivshmem_read
,
760 /* just map the file immediately, we're not using a server */
763 if (s
->shmobj
== NULL
) {
764 fprintf(stderr
, "Must specify 'chardev' or 'shm' to ivshmem\n");
767 IVSHMEM_DPRINTF("using shm_open (shm object = %s)\n", s
->shmobj
);
769 /* try opening with O_EXCL and if it succeeds zero the memory
770 * by truncating to 0 */
771 if ((fd
= shm_open(s
->shmobj
, O_CREAT
|O_RDWR
|O_EXCL
,
772 S_IRWXU
|S_IRWXG
|S_IRWXO
)) > 0) {
773 /* truncate file to length PCI device's memory */
774 if (ftruncate(fd
, s
->ivshmem_size
) != 0) {
775 fprintf(stderr
, "ivshmem: could not truncate shared file\n");
778 } else if ((fd
= shm_open(s
->shmobj
, O_CREAT
|O_RDWR
,
779 S_IRWXU
|S_IRWXG
|S_IRWXO
)) < 0) {
780 fprintf(stderr
, "ivshmem: could not open shared file\n");
785 if (check_shm_size(s
, fd
) == -1) {
789 create_shared_memory_BAR(s
, fd
);
796 static int pci_ivshmem_uninit(PCIDevice
*dev
)
798 IVShmemState
*s
= DO_UPCAST(IVShmemState
, dev
, dev
);
800 cpu_unregister_io_memory(s
->ivshmem_mmio_io_addr
);
801 unregister_savevm(&dev
->qdev
, "ivshmem", s
);
806 static PCIDeviceInfo ivshmem_info
= {
807 .qdev
.name
= "ivshmem",
808 .qdev
.size
= sizeof(IVShmemState
),
809 .qdev
.reset
= ivshmem_reset
,
810 .init
= pci_ivshmem_init
,
811 .exit
= pci_ivshmem_uninit
,
812 .qdev
.props
= (Property
[]) {
813 DEFINE_PROP_CHR("chardev", IVShmemState
, server_chr
),
814 DEFINE_PROP_STRING("size", IVShmemState
, sizearg
),
815 DEFINE_PROP_UINT32("vectors", IVShmemState
, vectors
, 1),
816 DEFINE_PROP_BIT("ioeventfd", IVShmemState
, features
, IVSHMEM_IOEVENTFD
, false),
817 DEFINE_PROP_BIT("msi", IVShmemState
, features
, IVSHMEM_MSI
, true),
818 DEFINE_PROP_STRING("shm", IVShmemState
, shmobj
),
819 DEFINE_PROP_STRING("role", IVShmemState
, role
),
820 DEFINE_PROP_END_OF_LIST(),
824 static void ivshmem_register_devices(void)
826 pci_qdev_register(&ivshmem_info
);
829 device_init(ivshmem_register_devices
)