msi.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * msi.h
  3. *
  4. * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
  5. * VA Linux Systems Japan K.K.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef QEMU_MSI_H
  19. #define QEMU_MSI_H
  20. #include "qemu-common.h"
  21. #include "hw/pci/pci.h"
  22. struct MSIMessage {
  23. uint64_t address;
  24. uint32_t data;
  25. };
  26. extern bool msi_supported;
  27. void msi_set_message(PCIDevice *dev, MSIMessage msg);
  28. MSIMessage msi_get_message(PCIDevice *dev, unsigned int vector);
  29. bool msi_enabled(const PCIDevice *dev);
  30. int msi_init(struct PCIDevice *dev, uint8_t offset,
  31. unsigned int nr_vectors, bool msi64bit, bool msi_per_vector_mask);
  32. void msi_uninit(struct PCIDevice *dev);
  33. void msi_reset(PCIDevice *dev);
  34. void msi_notify(PCIDevice *dev, unsigned int vector);
  35. void msi_write_config(PCIDevice *dev, uint32_t addr, uint32_t val, int len);
  36. unsigned int msi_nr_vectors_allocated(const PCIDevice *dev);
  37. static inline bool msi_present(const PCIDevice *dev)
  38. {
  39. return dev->cap_present & QEMU_PCI_CAP_MSI;
  40. }
  41. #endif /* QEMU_MSI_H */