search for: 4e112a3

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

2009 Jun 02
0
[PATCHv2 05/13] qemu: MSI-X support functions
...x_vector_use(PCIDevice *dev, unsigned vector); +void msix_vector_unuse(PCIDevice *dev, unsigned vector); + +void msix_notify(PCIDevice *dev, unsigned vector); + +void msix_reset(PCIDevice *dev); + +extern int msix_disable; +extern int msix_supported; + +#endif diff --git a/hw/pci.h b/hw/pci.h index 4e112a3..6da626b 100644 --- a/hw/pci.h +++ b/hw/pci.h @@ -156,6 +156,11 @@ typedef struct PCIIORegion { /* Size of the standard PCI config space */ #define PCI_CONFIG_SPACE_SIZE 0x100 +/* Bits in cap_supported/cap_present fields. */ +enum { + QEMU_PCI_CAP_MSIX = 0x1, +}; + struct PCIDevice { D...
2009 Jun 02
0
[PATCHv2 05/13] qemu: MSI-X support functions
...x_vector_use(PCIDevice *dev, unsigned vector); +void msix_vector_unuse(PCIDevice *dev, unsigned vector); + +void msix_notify(PCIDevice *dev, unsigned vector); + +void msix_reset(PCIDevice *dev); + +extern int msix_disable; +extern int msix_supported; + +#endif diff --git a/hw/pci.h b/hw/pci.h index 4e112a3..6da626b 100644 --- a/hw/pci.h +++ b/hw/pci.h @@ -156,6 +156,11 @@ typedef struct PCIIORegion { /* Size of the standard PCI config space */ #define PCI_CONFIG_SPACE_SIZE 0x100 +/* Bits in cap_supported/cap_present fields. */ +enum { + QEMU_PCI_CAP_MSIX = 0x1, +}; + struct PCIDevice { D...
2009 May 25
1
[PATCH 05/11] qemu: MSI-X support functions
...x_vector_use(PCIDevice *dev, unsigned vector); +void msix_vector_unuse(PCIDevice *dev, unsigned vector); + +void msix_notify(PCIDevice *dev, unsigned vector); + +void msix_reset(PCIDevice *dev); + +extern int msix_disable; +extern int msix_supported; + +#endif diff --git a/hw/pci.h b/hw/pci.h index 4e112a3..6da626b 100644 --- a/hw/pci.h +++ b/hw/pci.h @@ -156,6 +156,11 @@ typedef struct PCIIORegion { /* Size of the standard PCI config space */ #define PCI_CONFIG_SPACE_SIZE 0x100 +/* Bits in cap_supported/cap_present fields. */ +enum { + QEMU_PCI_CAP_MSIX = 0x1, +}; + struct PCIDevice { D...
2009 May 25
1
[PATCH 05/11] qemu: MSI-X support functions
...x_vector_use(PCIDevice *dev, unsigned vector); +void msix_vector_unuse(PCIDevice *dev, unsigned vector); + +void msix_notify(PCIDevice *dev, unsigned vector); + +void msix_reset(PCIDevice *dev); + +extern int msix_disable; +extern int msix_supported; + +#endif diff --git a/hw/pci.h b/hw/pci.h index 4e112a3..6da626b 100644 --- a/hw/pci.h +++ b/hw/pci.h @@ -156,6 +156,11 @@ typedef struct PCIIORegion { /* Size of the standard PCI config space */ #define PCI_CONFIG_SPACE_SIZE 0x100 +/* Bits in cap_supported/cap_present fields. */ +enum { + QEMU_PCI_CAP_MSIX = 0x1, +}; + struct PCIDevice { D...