Searched refs:msi64bit (Results 1 – 3 of 3) sorted by relevance
108 static inline uint8_t msi_data_off(const PCIDevice* dev, bool msi64bit) in msi_data_off() argument110 return dev->msi_cap + (msi64bit ? PCI_MSI_DATA_64 : PCI_MSI_DATA_32); in msi_data_off()113 static inline uint8_t msi_mask_off(const PCIDevice* dev, bool msi64bit) in msi_mask_off() argument115 return dev->msi_cap + (msi64bit ? PCI_MSI_MASK_64 : PCI_MSI_MASK_32); in msi_mask_off()118 static inline uint8_t msi_pending_off(const PCIDevice* dev, bool msi64bit) in msi_pending_off() argument120 return dev->msi_cap + (msi64bit ? PCI_MSI_PENDING_64 : PCI_MSI_PENDING_32); in msi_pending_off()130 bool msi64bit = flags & PCI_MSI_FLAGS_64BIT; in msi_set_message() local132 if (msi64bit) { in msi_set_message()137 pci_set_word(dev->config + msi_data_off(dev, msi64bit), msg.data); in msi_set_message()143 bool msi64bit = flags & PCI_MSI_FLAGS_64BIT; in msi_prepare_message() local[all …]
38 unsigned int nr_vectors, bool msi64bit,
94 PG_PCI_MAX_MSI_VECTORS, true /* msi64bit */,