Lines Matching refs:msgctrl
1188 msicap->msgctrl = PCIM_MSICTRL_64BIT | (mmc << 1); in pci_populate_msicap()
1216 msixcap->msgctrl = msgnum - 1; in pci_populate_msixcap()
1280 uint16_t msgctrl, rwmask; in msixcap_cfgwrite() local
1287 msgctrl = pci_get_cfgdata16(pi, offset); in msixcap_cfgwrite()
1288 msgctrl &= ~rwmask; in msixcap_cfgwrite()
1289 msgctrl |= val & rwmask; in msixcap_cfgwrite()
1290 val = msgctrl; in msixcap_cfgwrite()
1304 uint16_t msgctrl, rwmask, msgdata, mme; in msicap_cfgwrite() local
1313 msgctrl = pci_get_cfgdata16(pi, offset); in msicap_cfgwrite()
1314 msgctrl &= ~rwmask; in msicap_cfgwrite()
1315 msgctrl |= val & rwmask; in msicap_cfgwrite()
1316 val = msgctrl; in msicap_cfgwrite()
1320 msgctrl = pci_get_cfgdata16(pi, capoff + 2); in msicap_cfgwrite()
1322 if (msgctrl & PCIM_MSICTRL_64BIT) in msicap_cfgwrite()
1327 mme = msgctrl & PCIM_MSICTRL_MME_MASK; in msicap_cfgwrite()
1328 pi->pi_msi.enabled = msgctrl & PCIM_MSICTRL_MSI_ENABLE ? 1 : 0; in msicap_cfgwrite()