Home
last modified time | relevance | path

Searched refs:pi_msi (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/bhyve/common/
H A Dpci_emul.c1292 pi->pi_msi.enabled = msgctrl & PCIM_MSICTRL_MSI_ENABLE ? 1 : 0; in msicap_cfgwrite()
1293 if (pi->pi_msi.enabled) { in msicap_cfgwrite()
1294 pi->pi_msi.addr = addrlo; in msicap_cfgwrite()
1295 pi->pi_msi.msg_data = msgdata; in msicap_cfgwrite()
1296 pi->pi_msi.maxmsgnum = 1 << (mme >> 4); in msicap_cfgwrite()
1298 pi->pi_msi.maxmsgnum = 0; in msicap_cfgwrite()
1872 return (pi->pi_msi.enabled); in pci_msi_enabled()
1878 if (pi->pi_msi.enabled) in pci_msi_maxmsgnum()
1879 return (pi->pi_msi.maxmsgnum); in pci_msi_maxmsgnum()
1888 return (pi->pi_msix.enabled && !pi->pi_msi.enabled); in pci_msix_enabled()
[all …]
H A Dpci_passthru.c938 pi->pi_msi.addr, pi->pi_msi.msg_data, pi->pi_msi.maxmsgnum); in passthru_cfgwrite_default()
H A Dpci_emul.h145 } pi_msi; member