Searched refs:MsiSupportLevel (Results 1 – 3 of 3) sorted by relevance
128 enum class MsiSupportLevel { NONE, MSI, MSI_WITH_MASKING }; enum129 explicit PciePlatformInterface(MsiSupportLevel msi_support) in PciePlatformInterface()130 : supports_msi_((msi_support == MsiSupportLevel::MSI) || in PciePlatformInterface()131 (msi_support == MsiSupportLevel::MSI_WITH_MASKING)), in PciePlatformInterface()132 supports_msi_masking_(msi_support == MsiSupportLevel::MSI_WITH_MASKING) { } in PciePlatformInterface()143 : PciePlatformInterface(MsiSupportLevel::NONE) {} in NoMsiPciePlatformInterface()
26 : PciePlatformInterface(has_msi_gic ? MsiSupportLevel::MSI_WITH_MASKING in ArmGicV2PciePlatformSupport()27 : MsiSupportLevel::NONE) {} in ArmGicV2PciePlatformSupport()
29 : PciePlatformInterface(MsiSupportLevel::MSI) {} in X86PciePlatformSupport()
Completed in 7 milliseconds