dmar.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * Copyright (c) 2006, Intel Corporation.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  15. * Place - Suite 330, Boston, MA 02111-1307 USA.
  16. *
  17. * Copyright (C) Ashok Raj <ashok.raj@intel.com>
  18. * Copyright (C) Shaohua Li <shaohua.li@intel.com>
  19. */
  20. #ifndef __DMAR_H__
  21. #define __DMAR_H__
  22. #include <linux/acpi.h>
  23. #include <linux/types.h>
  24. #include <linux/msi.h>
  25. #include <linux/irqreturn.h>
  26. struct intel_iommu;
  27. #if defined(CONFIG_DMAR) || defined(CONFIG_INTR_REMAP)
  28. struct dmar_drhd_unit {
  29. struct list_head list; /* list of drhd units */
  30. struct acpi_dmar_header *hdr; /* ACPI header */
  31. u64 reg_base_addr; /* register base address*/
  32. struct pci_dev **devices; /* target device array */
  33. int devices_cnt; /* target device count */
  34. u16 segment; /* PCI domain */
  35. u8 ignored:1; /* ignore drhd */
  36. u8 include_all:1;
  37. struct intel_iommu *iommu;
  38. };
  39. extern struct list_head dmar_drhd_units;
  40. #define for_each_drhd_unit(drhd) \
  41. list_for_each_entry(drhd, &dmar_drhd_units, list)
  42. #define for_each_active_iommu(i, drhd) \
  43. list_for_each_entry(drhd, &dmar_drhd_units, list) \
  44. if (i=drhd->iommu, drhd->ignored) {} else
  45. #define for_each_iommu(i, drhd) \
  46. list_for_each_entry(drhd, &dmar_drhd_units, list) \
  47. if (i=drhd->iommu, 0) {} else
  48. extern int dmar_table_init(void);
  49. extern int dmar_dev_scope_init(void);
  50. /* Intel IOMMU detection */
  51. extern void detect_intel_iommu(void);
  52. extern int enable_drhd_fault_handling(void);
  53. extern int parse_ioapics_under_ir(void);
  54. extern int alloc_iommu(struct dmar_drhd_unit *);
  55. #else
  56. static inline void detect_intel_iommu(void)
  57. {
  58. return;
  59. }
  60. static inline int dmar_table_init(void)
  61. {
  62. return -ENODEV;
  63. }
  64. static inline int enable_drhd_fault_handling(void)
  65. {
  66. return -1;
  67. }
  68. #endif /* !CONFIG_DMAR && !CONFIG_INTR_REMAP */
  69. struct irte {
  70. union {
  71. struct {
  72. __u64 present : 1,
  73. fpd : 1,
  74. dst_mode : 1,
  75. redir_hint : 1,
  76. trigger_mode : 1,
  77. dlvry_mode : 3,
  78. avail : 4,
  79. __reserved_1 : 4,
  80. vector : 8,
  81. __reserved_2 : 8,
  82. dest_id : 32;
  83. };
  84. __u64 low;
  85. };
  86. union {
  87. struct {
  88. __u64 sid : 16,
  89. sq : 2,
  90. svt : 2,
  91. __reserved_3 : 44;
  92. };
  93. __u64 high;
  94. };
  95. };
  96. #ifdef CONFIG_INTR_REMAP
  97. extern int intr_remapping_enabled;
  98. extern int intr_remapping_supported(void);
  99. extern int enable_intr_remapping(int);
  100. extern void disable_intr_remapping(void);
  101. extern int reenable_intr_remapping(int);
  102. extern int get_irte(int irq, struct irte *entry);
  103. extern int modify_irte(int irq, struct irte *irte_modified);
  104. extern int alloc_irte(struct intel_iommu *iommu, int irq, u16 count);
  105. extern int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index,
  106. u16 sub_handle);
  107. extern int map_irq_to_irte_handle(int irq, u16 *sub_handle);
  108. extern int clear_irte_irq(int irq, struct intel_iommu *iommu, u16 index);
  109. extern int flush_irte(int irq);
  110. extern int free_irte(int irq);
  111. extern int irq_remapped(int irq);
  112. extern struct intel_iommu *map_dev_to_ir(struct pci_dev *dev);
  113. extern struct intel_iommu *map_ioapic_to_ir(int apic);
  114. #else
  115. static inline int alloc_irte(struct intel_iommu *iommu, int irq, u16 count)
  116. {
  117. return -1;
  118. }
  119. static inline int modify_irte(int irq, struct irte *irte_modified)
  120. {
  121. return -1;
  122. }
  123. static inline int free_irte(int irq)
  124. {
  125. return -1;
  126. }
  127. static inline int map_irq_to_irte_handle(int irq, u16 *sub_handle)
  128. {
  129. return -1;
  130. }
  131. static inline int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index,
  132. u16 sub_handle)
  133. {
  134. return -1;
  135. }
  136. static inline struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
  137. {
  138. return NULL;
  139. }
  140. static inline struct intel_iommu *map_ioapic_to_ir(int apic)
  141. {
  142. return NULL;
  143. }
  144. #define irq_remapped(irq) (0)
  145. #define enable_intr_remapping(mode) (-1)
  146. #define disable_intr_remapping() (0)
  147. #define reenable_intr_remapping(mode) (0)
  148. #define intr_remapping_enabled (0)
  149. #endif
  150. /* Can't use the common MSI interrupt functions
  151. * since DMAR is not a pci device
  152. */
  153. extern void dmar_msi_unmask(unsigned int irq);
  154. extern void dmar_msi_mask(unsigned int irq);
  155. extern void dmar_msi_read(int irq, struct msi_msg *msg);
  156. extern void dmar_msi_write(int irq, struct msi_msg *msg);
  157. extern int dmar_set_interrupt(struct intel_iommu *iommu);
  158. extern irqreturn_t dmar_fault(int irq, void *dev_id);
  159. extern int arch_setup_dmar_msi(unsigned int irq);
  160. #ifdef CONFIG_DMAR
  161. extern int iommu_detected, no_iommu;
  162. extern struct list_head dmar_rmrr_units;
  163. struct dmar_rmrr_unit {
  164. struct list_head list; /* list of rmrr units */
  165. struct acpi_dmar_header *hdr; /* ACPI header */
  166. u64 base_address; /* reserved base address*/
  167. u64 end_address; /* reserved end address */
  168. struct pci_dev **devices; /* target devices */
  169. int devices_cnt; /* target device count */
  170. };
  171. #define for_each_rmrr_units(rmrr) \
  172. list_for_each_entry(rmrr, &dmar_rmrr_units, list)
  173. struct dmar_atsr_unit {
  174. struct list_head list; /* list of ATSR units */
  175. struct acpi_dmar_header *hdr; /* ACPI header */
  176. struct pci_dev **devices; /* target devices */
  177. int devices_cnt; /* target device count */
  178. u8 include_all:1; /* include all ports */
  179. };
  180. /* Intel DMAR initialization functions */
  181. extern int intel_iommu_init(void);
  182. #else
  183. static inline int intel_iommu_init(void)
  184. {
  185. #ifdef CONFIG_INTR_REMAP
  186. return dmar_dev_scope_init();
  187. #else
  188. return -ENODEV;
  189. #endif
  190. }
  191. #endif /* !CONFIG_DMAR */
  192. #endif /* __DMAR_H__ */