c227f0995e
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b72
.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
36 lines
916 B
C
36 lines
916 B
C
#ifndef QEMU_MSIX_H
|
|
#define QEMU_MSIX_H
|
|
|
|
#include "qemu-common.h"
|
|
|
|
int msix_init(struct PCIDevice *dev, unsigned short nentries,
|
|
unsigned bar_nr, unsigned bar_size,
|
|
target_phys_addr_t page_size);
|
|
|
|
void msix_write_config(PCIDevice *pci_dev, uint32_t address,
|
|
uint32_t val, int len);
|
|
|
|
void msix_mmio_map(PCIDevice *pci_dev, int region_num,
|
|
uint32_t addr, uint32_t size, int type);
|
|
|
|
int msix_uninit(PCIDevice *d);
|
|
|
|
void msix_save(PCIDevice *dev, QEMUFile *f);
|
|
void msix_load(PCIDevice *dev, QEMUFile *f);
|
|
|
|
int msix_enabled(PCIDevice *dev);
|
|
int msix_present(PCIDevice *dev);
|
|
|
|
uint32_t msix_bar_size(PCIDevice *dev);
|
|
|
|
int msix_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_supported;
|
|
|
|
#endif
|