search for: pcideviceinfo

Displaying 4 results from an estimated 4 matches for "pcideviceinfo".

2012 Jan 24
2
[PATCH 26/28] pci: convert to QEMU Object Model
...insertions(+), 1050 deletions(-) diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 1325f2f..aded048 100644 --- a/hw/9pfs/virtio-9p-device.c +++ b/hw/9pfs/virtio-9p-device.c @@ -163,23 +163,32 @@ static int virtio_9p_init_pci(PCIDevice *pci_dev) return 0; } -static PCIDeviceInfo virtio_9p_info = { - .qdev.name = "virtio-9p-pci", - .qdev.size = sizeof(VirtIOPCIProxy), - .init = virtio_9p_init_pci, - .vendor_id = PCI_VENDOR_ID_REDHAT_QUMRANET, - .device_id = 0x1009, - .revision = VIRTIO_PCI_ABI_VERSION, - .class_id = 0x2, - .qdev.prop...
2009 Oct 27
1
[PATCH 2/4] megasas: LSI MegaRAID SAS HBA emulation
...if (ret) { + DPRINTF("SCSI cmd passthrough not available on dev %d (error %d)\n", + unit, ret); + lun->sdev = NULL; + lun->bdrv = NULL; + } + } + register_savevm("megasas", -1, 0, megasas_scsi_save, megasas_scsi_load, s); + return 0; +} + +static PCIDeviceInfo megasas_info = { + .qdev.name = "LSI MegaRAID SAS 1078", + .qdev.alias = "megasas", + .qdev.size = sizeof(MPTState), + .init = megasas_scsi_init, + .exit = megasas_scsi_uninit, +}; + +static void megaraid1078_register_devices(void) +{ + pci_qdev_r...
2009 Oct 27
1
[PATCH 2/4] megasas: LSI MegaRAID SAS HBA emulation
...if (ret) { + DPRINTF("SCSI cmd passthrough not available on dev %d (error %d)\n", + unit, ret); + lun->sdev = NULL; + lun->bdrv = NULL; + } + } + register_savevm("megasas", -1, 0, megasas_scsi_save, megasas_scsi_load, s); + return 0; +} + +static PCIDeviceInfo megasas_info = { + .qdev.name = "LSI MegaRAID SAS 1078", + .qdev.alias = "megasas", + .qdev.size = sizeof(MPTState), + .init = megasas_scsi_init, + .exit = megasas_scsi_uninit, +}; + +static void megaraid1078_register_devices(void) +{ + pci_qdev_r...
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very