Lines Matching refs:PciIrqError

32 pub enum PciIrqError {  enum
197 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_enable()
200 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_enable()
204 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_enable()
228 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_enable()
231 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_enable()
235 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_enable()
259 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_enable()
262 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_enable()
266 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_enable()
279 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in irq_install()
294 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_install()
297 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_install()
301 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_install()
318 return Err(PciError::PciIrqError(PciIrqError::DeviceIrqOverflow)); in msi_install()
334 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqNum(irq_num))); in msi_install()
337 return Err(PciError::PciIrqError(PciIrqError::IrqNumOccupied( in msi_install()
348 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_install()
437 return Err(PciError::PciIrqError(PciIrqError::MxiIrqNumWrong)); in msi_install()
444 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_install()
447 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_install()
451 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_install()
467 return Err(PciError::PciIrqError(PciIrqError::DeviceIrqOverflow)); in msix_install()
483 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqNum(irq_num))); in msix_install()
486 return Err(PciError::PciIrqError(PciIrqError::IrqNumOccupied( in msix_install()
496 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_install()
504 .ok_or(PciError::PciIrqError(PciIrqError::PciBarNotInited))?; in msix_install()
508 .ok_or(PciError::PciIrqError(PciIrqError::BarGetVaddrFailed))? in msix_install()
522 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_install()
525 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_install()
529 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_install()
544 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_uninstall()
547 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_uninstall()
551 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_uninstall()
589 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_uninstall()
592 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_uninstall()
596 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_uninstall()
618 .ok_or(PciError::PciIrqError(PciIrqError::PciBarNotInited)) in msix_uninstall()
624 .ok_or(PciError::PciIrqError(PciIrqError::BarGetVaddrFailed)) in msix_uninstall()
639 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_uninstall()
642 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_uninstall()
646 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_uninstall()
661 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_mask()
664 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_mask()
668 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_mask()
683 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msi_mask()
716 return Err(PciError::PciIrqError(PciIrqError::MaskNotSupported)); in msi_mask()
719 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_mask()
722 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_mask()
726 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_mask()
741 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msix_mask()
747 .ok_or(PciError::PciIrqError(PciIrqError::PciBarNotInited)) in msix_mask()
760 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_mask()
763 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_mask()
767 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_mask()
782 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_unmask()
785 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_unmask()
789 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_unmask()
804 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msi_unmask()
836 return Err(PciError::PciIrqError(PciIrqError::MaskNotSupported)); in msi_unmask()
839 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_unmask()
842 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_unmask()
846 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_unmask()
861 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msix_unmask()
867 .ok_or(PciError::PciIrqError(PciIrqError::PciBarNotInited)) in msix_unmask()
880 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_unmask()
883 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_unmask()
887 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_unmask()
903 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_check_pending()
906 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_check_pending()
910 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_check_pending()
926 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msi_check_pending()
952 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_check_pending()
955 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_check_pending()
959 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_check_pending()
975 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msix_check_pending()
981 .ok_or(PciError::PciIrqError(PciIrqError::PciBarNotInited)) in msix_check_pending()
992 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_check_pending()
995 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_check_pending()
999 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_check_pending()