2 * Copyright (c) 2007, Neocleus Corporation.
3 * Copyright (c) 2007, Intel Corporation.
5 * This work is licensed under the terms of the GNU GPL, version 2. See
6 * the COPYING file in the top-level directory.
8 * Alex Novik <alex@neocleus.com>
9 * Allen Kay <allen.m.kay@intel.com>
10 * Guy Zana <guy@neocleus.com>
12 * This file implements direct PCI assignment to a HVM guest
16 * Interrupt Disable policy:
19 * Initialize(register_real_device)
20 * Map INTx(xc_physdev_map_pirq):
22 * - Set real Interrupt Disable bit to '1'.
23 * - Set machine_irq and assigned_device->machine_irq to '0'.
26 * Bind INTx(xc_domain_bind_pt_pci_irq):
28 * - Set real Interrupt Disable bit to '1'.
30 * - Decrement xen_pt_mapped_machine_irq[machine_irq]
31 * - Set assigned_device->machine_irq to '0'.
33 * Write to Interrupt Disable bit by guest software(xen_pt_cmd_reg_write)
35 * - Set real bit to '0' if assigned_device->machine_irq isn't '0'.
38 * - Set real bit to '1'.
41 * Initialize MSI register(xen_pt_msi_setup, xen_pt_msi_update)
42 * Bind MSI(xc_domain_update_msi_irq)
45 * - Set dev->msi->pirq to '-1'.
48 * Initialize MSI-X register(xen_pt_msix_update_one)
49 * Bind MSI-X(xc_domain_update_msi_irq)
52 * - Set entry->pirq to '-1'.
55 #include <sys/ioctl.h>
59 #include "xen_backend.h"
63 #define XEN_PT_NR_IRQS (256)
64 static uint8_t xen_pt_mapped_machine_irq
[XEN_PT_NR_IRQS
] = {0};
66 void xen_pt_log(const PCIDevice
*d
, const char *f
, ...)
72 fprintf(stderr
, "[%02x:%02x.%d] ", pci_bus_num(d
->bus
),
73 PCI_SLOT(d
->devfn
), PCI_FUNC(d
->devfn
));
75 vfprintf(stderr
, f
, ap
);
81 static int xen_pt_pci_config_access_check(PCIDevice
*d
, uint32_t addr
, int len
)
83 /* check offset range */
85 XEN_PT_ERR(d
, "Failed to access register with offset exceeding 0xFF. "
86 "(addr: 0x%02x, len: %d)\n", addr
, len
);
91 if ((len
!= 1) && (len
!= 2) && (len
!= 4)) {
92 XEN_PT_ERR(d
, "Failed to access register with invalid access length. "
93 "(addr: 0x%02x, len: %d)\n", addr
, len
);
97 /* check offset alignment */
98 if (addr
& (len
- 1)) {
99 XEN_PT_ERR(d
, "Failed to access register with invalid access size "
100 "alignment. (addr: 0x%02x, len: %d)\n", addr
, len
);
107 int xen_pt_bar_offset_to_index(uint32_t offset
)
111 /* check Exp ROM BAR */
112 if (offset
== PCI_ROM_ADDRESS
) {
116 /* calculate BAR index */
117 index
= (offset
- PCI_BASE_ADDRESS_0
) >> 2;
118 if (index
>= PCI_NUM_REGIONS
) {
125 static uint32_t xen_pt_pci_read_config(PCIDevice
*d
, uint32_t addr
, int len
)
127 XenPCIPassthroughState
*s
= DO_UPCAST(XenPCIPassthroughState
, dev
, d
);
129 XenPTRegGroup
*reg_grp_entry
= NULL
;
130 XenPTReg
*reg_entry
= NULL
;
133 uint32_t find_addr
= addr
;
135 if (xen_pt_pci_config_access_check(d
, addr
, len
)) {
139 /* find register group entry */
140 reg_grp_entry
= xen_pt_find_reg_grp(s
, addr
);
142 /* check 0-Hardwired register group */
143 if (reg_grp_entry
->reg_grp
->grp_type
== XEN_PT_GRP_TYPE_HARDWIRED
) {
144 /* no need to emulate, just return 0 */
150 /* read I/O device register value */
151 rc
= xen_host_pci_get_block(&s
->real_device
, addr
, (uint8_t *)&val
, len
);
153 XEN_PT_ERR(d
, "pci_read_block failed. return value: %d.\n", rc
);
154 memset(&val
, 0xff, len
);
157 /* just return the I/O device register value for
158 * passthrough type register group */
159 if (reg_grp_entry
== NULL
) {
163 /* adjust the read value to appropriate CFC-CFF window */
164 val
<<= (addr
& 3) << 3;
167 /* loop around the guest requested size */
168 while (emul_len
> 0) {
169 /* find register entry to be emulated */
170 reg_entry
= xen_pt_find_reg(reg_grp_entry
, find_addr
);
172 XenPTRegInfo
*reg
= reg_entry
->reg
;
173 uint32_t real_offset
= reg_grp_entry
->base_offset
+ reg
->offset
;
174 uint32_t valid_mask
= 0xFFFFFFFF >> ((4 - emul_len
) << 3);
175 uint8_t *ptr_val
= NULL
;
177 valid_mask
<<= (find_addr
- real_offset
) << 3;
178 ptr_val
= (uint8_t *)&val
+ (real_offset
& 3);
180 /* do emulation based on register size */
184 rc
= reg
->u
.b
.read(s
, reg_entry
, ptr_val
, valid_mask
);
189 rc
= reg
->u
.w
.read(s
, reg_entry
,
190 (uint16_t *)ptr_val
, valid_mask
);
194 if (reg
->u
.dw
.read
) {
195 rc
= reg
->u
.dw
.read(s
, reg_entry
,
196 (uint32_t *)ptr_val
, valid_mask
);
202 xen_shutdown_fatal_error("Internal error: Invalid read "
203 "emulation. (%s, rc: %d)\n",
208 /* calculate next address to find */
209 emul_len
-= reg
->size
;
211 find_addr
= real_offset
+ reg
->size
;
214 /* nothing to do with passthrough type register,
215 * continue to find next byte */
221 /* need to shift back before returning them to pci bus emulator */
222 val
>>= ((addr
& 3) << 3);
225 XEN_PT_LOG_CONFIG(d
, addr
, val
, len
);
229 static void xen_pt_pci_write_config(PCIDevice
*d
, uint32_t addr
,
230 uint32_t val
, int len
)
232 XenPCIPassthroughState
*s
= DO_UPCAST(XenPCIPassthroughState
, dev
, d
);
234 XenPTRegGroup
*reg_grp_entry
= NULL
;
236 uint32_t read_val
= 0;
238 XenPTReg
*reg_entry
= NULL
;
239 uint32_t find_addr
= addr
;
240 XenPTRegInfo
*reg
= NULL
;
242 if (xen_pt_pci_config_access_check(d
, addr
, len
)) {
246 XEN_PT_LOG_CONFIG(d
, addr
, val
, len
);
248 /* check unused BAR register */
249 index
= xen_pt_bar_offset_to_index(addr
);
250 if ((index
>= 0) && (val
> 0 && val
< XEN_PT_BAR_ALLF
) &&
251 (s
->bases
[index
].bar_flag
== XEN_PT_BAR_FLAG_UNUSED
)) {
252 XEN_PT_WARN(d
, "Guest attempt to set address to unused Base Address "
253 "Register. (addr: 0x%02x, len: %d)\n", addr
, len
);
256 /* find register group entry */
257 reg_grp_entry
= xen_pt_find_reg_grp(s
, addr
);
259 /* check 0-Hardwired register group */
260 if (reg_grp_entry
->reg_grp
->grp_type
== XEN_PT_GRP_TYPE_HARDWIRED
) {
261 /* ignore silently */
262 XEN_PT_WARN(d
, "Access to 0-Hardwired register. "
263 "(addr: 0x%02x, len: %d)\n", addr
, len
);
268 rc
= xen_host_pci_get_block(&s
->real_device
, addr
,
269 (uint8_t *)&read_val
, len
);
271 XEN_PT_ERR(d
, "pci_read_block failed. return value: %d.\n", rc
);
272 memset(&read_val
, 0xff, len
);
275 /* pass directly to the real device for passthrough type register group */
276 if (reg_grp_entry
== NULL
) {
280 memory_region_transaction_begin();
281 pci_default_write_config(d
, addr
, val
, len
);
283 /* adjust the read and write value to appropriate CFC-CFF window */
284 read_val
<<= (addr
& 3) << 3;
285 val
<<= (addr
& 3) << 3;
288 /* loop around the guest requested size */
289 while (emul_len
> 0) {
290 /* find register entry to be emulated */
291 reg_entry
= xen_pt_find_reg(reg_grp_entry
, find_addr
);
293 reg
= reg_entry
->reg
;
294 uint32_t real_offset
= reg_grp_entry
->base_offset
+ reg
->offset
;
295 uint32_t valid_mask
= 0xFFFFFFFF >> ((4 - emul_len
) << 3);
296 uint8_t *ptr_val
= NULL
;
298 valid_mask
<<= (find_addr
- real_offset
) << 3;
299 ptr_val
= (uint8_t *)&val
+ (real_offset
& 3);
301 /* do emulation based on register size */
304 if (reg
->u
.b
.write
) {
305 rc
= reg
->u
.b
.write(s
, reg_entry
, ptr_val
,
306 read_val
>> ((real_offset
& 3) << 3),
311 if (reg
->u
.w
.write
) {
312 rc
= reg
->u
.w
.write(s
, reg_entry
, (uint16_t *)ptr_val
,
313 (read_val
>> ((real_offset
& 3) << 3)),
318 if (reg
->u
.dw
.write
) {
319 rc
= reg
->u
.dw
.write(s
, reg_entry
, (uint32_t *)ptr_val
,
320 (read_val
>> ((real_offset
& 3) << 3)),
327 xen_shutdown_fatal_error("Internal error: Invalid write"
328 " emulation. (%s, rc: %d)\n",
333 /* calculate next address to find */
334 emul_len
-= reg
->size
;
336 find_addr
= real_offset
+ reg
->size
;
339 /* nothing to do with passthrough type register,
340 * continue to find next byte */
346 /* need to shift back before passing them to xen_host_pci_device */
347 val
>>= (addr
& 3) << 3;
349 memory_region_transaction_commit();
352 if (!(reg
&& reg
->no_wb
)) {
353 /* unknown regs are passed through */
354 rc
= xen_host_pci_set_block(&s
->real_device
, addr
,
355 (uint8_t *)&val
, len
);
358 XEN_PT_ERR(d
, "pci_write_block failed. return value: %d.\n", rc
);
363 /* register regions */
365 static uint64_t xen_pt_bar_read(void *o
, target_phys_addr_t addr
,
369 /* if this function is called, that probably means that there is a
370 * misconfiguration of the IOMMU. */
371 XEN_PT_ERR(d
, "Should not read BAR through QEMU. @0x"TARGET_FMT_plx
"\n",
375 static void xen_pt_bar_write(void *o
, target_phys_addr_t addr
, uint64_t val
,
379 /* Same comment as xen_pt_bar_read function */
380 XEN_PT_ERR(d
, "Should not write BAR through QEMU. @0x"TARGET_FMT_plx
"\n",
384 static const MemoryRegionOps ops
= {
385 .endianness
= DEVICE_NATIVE_ENDIAN
,
386 .read
= xen_pt_bar_read
,
387 .write
= xen_pt_bar_write
,
390 static int xen_pt_register_regions(XenPCIPassthroughState
*s
)
393 XenHostPCIDevice
*d
= &s
->real_device
;
395 /* Register PIO/MMIO BARs */
396 for (i
= 0; i
< PCI_ROM_SLOT
; i
++) {
397 XenHostPCIIORegion
*r
= &d
->io_regions
[i
];
400 if (r
->base_addr
== 0 || r
->size
== 0) {
404 s
->bases
[i
].access
.u
= r
->base_addr
;
406 if (r
->type
& XEN_HOST_PCI_REGION_TYPE_IO
) {
407 type
= PCI_BASE_ADDRESS_SPACE_IO
;
409 type
= PCI_BASE_ADDRESS_SPACE_MEMORY
;
410 if (r
->type
& XEN_HOST_PCI_REGION_TYPE_PREFETCH
) {
411 type
|= PCI_BASE_ADDRESS_MEM_PREFETCH
;
415 memory_region_init_io(&s
->bar
[i
], &ops
, &s
->dev
,
416 "xen-pci-pt-bar", r
->size
);
417 pci_register_bar(&s
->dev
, i
, type
, &s
->bar
[i
]);
419 XEN_PT_LOG(&s
->dev
, "IO region %i registered (size=0x%08"PRIx64
420 " base_addr=0x%08"PRIx64
" type: %#x)\n",
421 i
, r
->size
, r
->base_addr
, type
);
424 /* Register expansion ROM address */
425 if (d
->rom
.base_addr
&& d
->rom
.size
) {
426 uint32_t bar_data
= 0;
428 /* Re-set BAR reported by OS, otherwise ROM can't be read. */
429 if (xen_host_pci_get_long(d
, PCI_ROM_ADDRESS
, &bar_data
)) {
432 if ((bar_data
& PCI_ROM_ADDRESS_MASK
) == 0) {
433 bar_data
|= d
->rom
.base_addr
& PCI_ROM_ADDRESS_MASK
;
434 xen_host_pci_set_long(d
, PCI_ROM_ADDRESS
, bar_data
);
437 s
->bases
[PCI_ROM_SLOT
].access
.maddr
= d
->rom
.base_addr
;
439 memory_region_init_rom_device(&s
->rom
, NULL
, NULL
,
440 "xen-pci-pt-rom", d
->rom
.size
);
441 pci_register_bar(&s
->dev
, PCI_ROM_SLOT
, PCI_BASE_ADDRESS_MEM_PREFETCH
,
444 XEN_PT_LOG(&s
->dev
, "Expansion ROM registered (size=0x%08"PRIx64
445 " base_addr=0x%08"PRIx64
")\n",
446 d
->rom
.size
, d
->rom
.base_addr
);
452 static void xen_pt_unregister_regions(XenPCIPassthroughState
*s
)
454 XenHostPCIDevice
*d
= &s
->real_device
;
457 for (i
= 0; i
< PCI_NUM_REGIONS
- 1; i
++) {
458 XenHostPCIIORegion
*r
= &d
->io_regions
[i
];
460 if (r
->base_addr
== 0 || r
->size
== 0) {
464 memory_region_destroy(&s
->bar
[i
]);
466 if (d
->rom
.base_addr
&& d
->rom
.size
) {
467 memory_region_destroy(&s
->rom
);
473 static int xen_pt_bar_from_region(XenPCIPassthroughState
*s
, MemoryRegion
*mr
)
477 for (i
= 0; i
< PCI_NUM_REGIONS
- 1; i
++) {
478 if (mr
== &s
->bar
[i
]) {
489 * This function checks if an io_region overlaps an io_region from another
490 * device. The io_region to check is provided with (addr, size and type)
491 * A callback can be provided and will be called for every region that is
493 * The return value indicates if the region is overlappsed */
494 struct CheckBarArgs
{
495 XenPCIPassthroughState
*s
;
501 static void xen_pt_check_bar_overlap(PCIBus
*bus
, PCIDevice
*d
, void *opaque
)
503 struct CheckBarArgs
*arg
= opaque
;
504 XenPCIPassthroughState
*s
= arg
->s
;
505 uint8_t type
= arg
->type
;
508 if (d
->devfn
== s
->dev
.devfn
) {
512 /* xxx: This ignores bridges. */
513 for (i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
514 const PCIIORegion
*r
= &d
->io_regions
[i
];
519 if ((type
& PCI_BASE_ADDRESS_SPACE_IO
)
520 != (r
->type
& PCI_BASE_ADDRESS_SPACE_IO
)) {
524 if (ranges_overlap(arg
->addr
, arg
->size
, r
->addr
, r
->size
)) {
526 "Overlapped to device [%02x:%02x.%d] Region: %i"
527 " (addr: %#"FMT_PCIBUS
", len: %#"FMT_PCIBUS
")\n",
528 pci_bus_num(bus
), PCI_SLOT(d
->devfn
),
529 PCI_FUNC(d
->devfn
), i
, r
->addr
, r
->size
);
535 static void xen_pt_region_update(XenPCIPassthroughState
*s
,
536 MemoryRegionSection
*sec
, bool adding
)
538 PCIDevice
*d
= &s
->dev
;
539 MemoryRegion
*mr
= sec
->mr
;
542 int op
= adding
? DPCI_ADD_MAPPING
: DPCI_REMOVE_MAPPING
;
543 struct CheckBarArgs args
= {
545 .addr
= sec
->offset_within_address_space
,
550 bar
= xen_pt_bar_from_region(s
, mr
);
551 if (bar
== -1 && (!s
->msix
|| &s
->msix
->mmio
!= mr
)) {
555 if (s
->msix
&& &s
->msix
->mmio
== mr
) {
557 s
->msix
->mmio_base_addr
= sec
->offset_within_address_space
;
558 rc
= xen_pt_msix_update_remap(s
, s
->msix
->bar_index
);
563 args
.type
= d
->io_regions
[bar
].type
;
564 pci_for_each_device(d
->bus
, pci_bus_num(d
->bus
),
565 xen_pt_check_bar_overlap
, &args
);
567 XEN_PT_WARN(d
, "Region: %d (addr: %#"FMT_PCIBUS
568 ", len: %#"FMT_PCIBUS
") is overlapped.\n",
569 bar
, sec
->offset_within_address_space
, sec
->size
);
572 if (d
->io_regions
[bar
].type
& PCI_BASE_ADDRESS_SPACE_IO
) {
573 uint32_t guest_port
= sec
->offset_within_address_space
;
574 uint32_t machine_port
= s
->bases
[bar
].access
.pio_base
;
575 uint32_t size
= sec
->size
;
576 rc
= xc_domain_ioport_mapping(xen_xc
, xen_domid
,
577 guest_port
, machine_port
, size
,
580 XEN_PT_ERR(d
, "%s ioport mapping failed! (rc: %i)\n",
581 adding
? "create new" : "remove old", rc
);
584 pcibus_t guest_addr
= sec
->offset_within_address_space
;
585 pcibus_t machine_addr
= s
->bases
[bar
].access
.maddr
586 + sec
->offset_within_region
;
587 pcibus_t size
= sec
->size
;
588 rc
= xc_domain_memory_mapping(xen_xc
, xen_domid
,
589 XEN_PFN(guest_addr
+ XC_PAGE_SIZE
- 1),
590 XEN_PFN(machine_addr
+ XC_PAGE_SIZE
- 1),
591 XEN_PFN(size
+ XC_PAGE_SIZE
- 1),
594 XEN_PT_ERR(d
, "%s mem mapping failed! (rc: %i)\n",
595 adding
? "create new" : "remove old", rc
);
600 static void xen_pt_begin(MemoryListener
*l
)
604 static void xen_pt_commit(MemoryListener
*l
)
608 static void xen_pt_region_add(MemoryListener
*l
, MemoryRegionSection
*sec
)
610 XenPCIPassthroughState
*s
= container_of(l
, XenPCIPassthroughState
,
613 xen_pt_region_update(s
, sec
, true);
616 static void xen_pt_region_del(MemoryListener
*l
, MemoryRegionSection
*sec
)
618 XenPCIPassthroughState
*s
= container_of(l
, XenPCIPassthroughState
,
621 xen_pt_region_update(s
, sec
, false);
624 static void xen_pt_region_nop(MemoryListener
*l
, MemoryRegionSection
*s
)
628 static void xen_pt_log_fns(MemoryListener
*l
, MemoryRegionSection
*s
)
632 static void xen_pt_log_global_fns(MemoryListener
*l
)
636 static void xen_pt_eventfd_fns(MemoryListener
*l
, MemoryRegionSection
*s
,
637 bool match_data
, uint64_t data
, EventNotifier
*n
)
641 static const MemoryListener xen_pt_memory_listener
= {
642 .begin
= xen_pt_begin
,
643 .commit
= xen_pt_commit
,
644 .region_add
= xen_pt_region_add
,
645 .region_nop
= xen_pt_region_nop
,
646 .region_del
= xen_pt_region_del
,
647 .log_start
= xen_pt_log_fns
,
648 .log_stop
= xen_pt_log_fns
,
649 .log_sync
= xen_pt_log_fns
,
650 .log_global_start
= xen_pt_log_global_fns
,
651 .log_global_stop
= xen_pt_log_global_fns
,
652 .eventfd_add
= xen_pt_eventfd_fns
,
653 .eventfd_del
= xen_pt_eventfd_fns
,
659 static int xen_pt_initfn(PCIDevice
*d
)
661 XenPCIPassthroughState
*s
= DO_UPCAST(XenPCIPassthroughState
, dev
, d
);
663 uint8_t machine_irq
= 0;
664 int pirq
= XEN_PT_UNASSIGNED_PIRQ
;
666 /* register real device */
667 XEN_PT_LOG(d
, "Assigning real physical device %02x:%02x.%d"
669 s
->hostaddr
.bus
, s
->hostaddr
.slot
, s
->hostaddr
.function
,
672 rc
= xen_host_pci_device_get(&s
->real_device
,
673 s
->hostaddr
.domain
, s
->hostaddr
.bus
,
674 s
->hostaddr
.slot
, s
->hostaddr
.function
);
676 XEN_PT_ERR(d
, "Failed to \"open\" the real pci device. rc: %i\n", rc
);
680 s
->is_virtfn
= s
->real_device
.is_virtfn
;
682 XEN_PT_LOG(d
, "%04x:%02x:%02x.%d is a SR-IOV Virtual Function\n",
683 s
->real_device
.domain
, bus
, slot
, func
);
686 /* Initialize virtualized PCI configuration (Extended 256 Bytes) */
687 if (xen_host_pci_get_block(&s
->real_device
, 0, d
->config
,
688 PCI_CONFIG_SPACE_SIZE
) == -1) {
689 xen_host_pci_device_put(&s
->real_device
);
693 s
->memory_listener
= xen_pt_memory_listener
;
695 /* Handle real device's MMIO/PIO BARs */
696 xen_pt_register_regions(s
);
698 /* reinitialize each config register to be emulated */
699 if (xen_pt_config_init(s
)) {
700 XEN_PT_ERR(d
, "PCI Config space initialisation failed.\n");
701 xen_host_pci_device_put(&s
->real_device
);
706 if (!s
->dev
.config
[PCI_INTERRUPT_PIN
]) {
707 XEN_PT_LOG(d
, "no pin interrupt\n");
711 machine_irq
= s
->real_device
.irq
;
712 rc
= xc_physdev_map_pirq(xen_xc
, xen_domid
, machine_irq
, &pirq
);
715 XEN_PT_ERR(d
, "Mapping machine irq %u to pirq %i failed, (rc: %d)\n",
716 machine_irq
, pirq
, rc
);
718 /* Disable PCI intx assertion (turn on bit10 of devctl) */
719 xen_host_pci_set_word(&s
->real_device
,
721 pci_get_word(s
->dev
.config
+ PCI_COMMAND
)
722 | PCI_COMMAND_INTX_DISABLE
);
727 s
->machine_irq
= pirq
;
728 xen_pt_mapped_machine_irq
[machine_irq
]++;
731 /* bind machine_irq to device */
732 if (machine_irq
!= 0) {
733 uint8_t e_intx
= xen_pt_pci_intx(s
);
735 rc
= xc_domain_bind_pt_pci_irq(xen_xc
, xen_domid
, machine_irq
,
740 XEN_PT_ERR(d
, "Binding of interrupt %i failed! (rc: %d)\n",
743 /* Disable PCI intx assertion (turn on bit10 of devctl) */
744 xen_host_pci_set_word(&s
->real_device
, PCI_COMMAND
,
745 *(uint16_t *)(&s
->dev
.config
[PCI_COMMAND
])
746 | PCI_COMMAND_INTX_DISABLE
);
747 xen_pt_mapped_machine_irq
[machine_irq
]--;
749 if (xen_pt_mapped_machine_irq
[machine_irq
] == 0) {
750 if (xc_physdev_unmap_pirq(xen_xc
, xen_domid
, machine_irq
)) {
751 XEN_PT_ERR(d
, "Unmapping of machine interrupt %i failed!"
752 " (rc: %d)\n", machine_irq
, rc
);
760 memory_listener_register(&s
->memory_listener
, NULL
);
761 XEN_PT_LOG(d
, "Real physical device %02x:%02x.%d registered successfuly!\n",
767 static void xen_pt_unregister_device(PCIDevice
*d
)
769 XenPCIPassthroughState
*s
= DO_UPCAST(XenPCIPassthroughState
, dev
, d
);
770 uint8_t machine_irq
= s
->machine_irq
;
771 uint8_t intx
= xen_pt_pci_intx(s
);
775 rc
= xc_domain_unbind_pt_irq(xen_xc
, xen_domid
, machine_irq
,
778 PCI_SLOT(s
->dev
.devfn
),
782 XEN_PT_ERR(d
, "unbinding of interrupt INT%c failed."
783 " (machine irq: %i, rc: %d)"
784 " But bravely continuing on..\n",
785 'a' + intx
, machine_irq
, rc
);
790 xen_pt_msi_disable(s
);
793 xen_pt_msix_disable(s
);
797 xen_pt_mapped_machine_irq
[machine_irq
]--;
799 if (xen_pt_mapped_machine_irq
[machine_irq
] == 0) {
800 rc
= xc_physdev_unmap_pirq(xen_xc
, xen_domid
, machine_irq
);
803 XEN_PT_ERR(d
, "unmapping of interrupt %i failed. (rc: %d)"
804 " But bravely continuing on..\n",
810 /* delete all emulated config registers */
811 xen_pt_config_delete(s
);
813 xen_pt_unregister_regions(s
);
814 memory_listener_unregister(&s
->memory_listener
);
816 xen_host_pci_device_put(&s
->real_device
);
819 static Property xen_pci_passthrough_properties
[] = {
820 DEFINE_PROP_PCI_HOST_DEVADDR("hostaddr", XenPCIPassthroughState
, hostaddr
),
821 DEFINE_PROP_END_OF_LIST(),
824 static void xen_pci_passthrough_class_init(ObjectClass
*klass
, void *data
)
826 DeviceClass
*dc
= DEVICE_CLASS(klass
);
827 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
829 k
->init
= xen_pt_initfn
;
830 k
->exit
= xen_pt_unregister_device
;
831 k
->config_read
= xen_pt_pci_read_config
;
832 k
->config_write
= xen_pt_pci_write_config
;
833 dc
->desc
= "Assign an host PCI device with Xen";
834 dc
->props
= xen_pci_passthrough_properties
;
837 static TypeInfo xen_pci_passthrough_info
= {
838 .name
= "xen-pci-passthrough",
839 .parent
= TYPE_PCI_DEVICE
,
840 .instance_size
= sizeof(XenPCIPassthroughState
),
841 .class_init
= xen_pci_passthrough_class_init
,
844 static void xen_pci_passthrough_register_types(void)
846 type_register_static(&xen_pci_passthrough_info
);
849 type_init(xen_pci_passthrough_register_types
)