Lines Matching defs:intel_iommu

689 struct intel_iommu {  struct
690 void __iomem *reg; /* Pointer to hardware regs, virtual addr */
691 u64 reg_phys; /* physical address of hw register set */
692 u64 reg_size; /* size of hw register set */
693 u64 cap;
694 u64 ecap;
695 u64 vccap;
696 u64 ecmdcap[DMA_MAX_NUM_ECMDCAP];
697 u32 gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */
698 raw_spinlock_t register_lock; /* protect register handling */
699 int seq_id; /* sequence id of the iommu */
700 int agaw; /* agaw of this iommu */
701 int msagaw; /* max sagaw of this iommu */
702 unsigned int irq, pr_irq, perf_irq;
703 u16 segment; /* PCI segment# */
704 unsigned char name[13]; /* Device Name */
707 unsigned long *domain_ids; /* bitmap of domains */
708 unsigned long *copied_tables; /* bitmap of copied tables */
709 spinlock_t lock; /* protect context, domain ids */
710 struct root_entry *root_entry; /* virtual address */
712 struct iommu_flush flush;
715 struct page_req_dsc *prq;
716 unsigned char prq_name[16]; /* Name for PRQ interrupt */
717 unsigned long prq_seq_number;
718 struct completion prq_complete;
720 struct iopf_queue *iopf_queue;
721 unsigned char iopfq_name[16];
722 struct q_inval *qi; /* Queued invalidation info */
723 u32 iommu_state[MAX_SR_DMAR_REGS]; /* Store iommu states between suspend and resume.*/
726 struct ir_table *ir_table; /* Interrupt remapping info */
727 struct irq_domain *ir_domain;
729 struct iommu_device iommu; /* IOMMU core code handle */
730 int node;
731 u32 flags; /* Software defined flags */
755 struct intel_iommu *iommu; /* IOMMU used by this device */ argument