dmar.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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. /* DMAR Flags */
  27. #define DMAR_INTR_REMAP 0x1
  28. #define DMAR_X2APIC_OPT_OUT 0x2
  29. struct intel_iommu;
  30. #if defined(CONFIG_DMAR) || defined(CONFIG_INTR_REMAP)
  31. extern struct acpi_table_header *dmar_tbl;
  32. struct dmar_drhd_unit {
  33. struct list_head list; /* list of drhd units */
  34. struct acpi_dmar_header *hdr; /* ACPI header */
  35. u64 reg_base_addr; /* register base address*/
  36. struct pci_dev **devices; /* target device array */
  37. int devices_cnt; /* target device count */
  38. u16 segment; /* PCI domain */
  39. u8 ignored:1; /* ignore drhd */
  40. u8 include_all:1;
  41. struct intel_iommu *iommu;
  42. };
  43. extern struct list_head dmar_drhd_units;
  44. #define for_each_drhd_unit(drhd) \
  45. list_for_each_entry(drhd, &dmar_drhd_units, list)
  46. #define for_each_active_iommu(i, drhd) \
  47. list_for_each_entry(drhd, &dmar_drhd_units, list) \
  48. if (i=drhd->iommu, drhd->ignored) {} else
  49. #define for_each_iommu(i, drhd) \
  50. list_for_each_entry(drhd, &dmar_drhd_units, list) \
  51. if (i=drhd->iommu, 0) {} else
  52. extern int dmar_table_init(void);
  53. extern int dmar_dev_scope_init(void);
  54. /* Intel IOMMU detection */
  55. extern int detect_intel_iommu(void);
  56. extern int enable_drhd_fault_handling(void);
  57. extern int parse_ioapics_under_ir(void);
  58. extern int alloc_iommu(struct dmar_drhd_unit *);
  59. #else
  60. static inline int detect_intel_iommu(void)
  61. {
  62. return -ENODEV;
  63. }
  64. static inline int dmar_table_init(void)
  65. {
  66. return -ENODEV;
  67. }
  68. static inline int enable_drhd_fault_handling(void)
  69. {
  70. return -1;
  71. }
  72. #endif /* !CONFIG_DMAR && !CONFIG_INTR_REMAP */
  73. struct irte {
  74. union {
  75. struct {
  76. __u64 present : 1,
  77. fpd : 1,
  78. dst_mode : 1,
  79. redir_hint : 1,
  80. trigger_mode : 1,
  81. dlvry_mode : 3,
  82. avail : 4,
  83. __reserved_1 : 4,
  84. vector : 8,
  85. __reserved_2 : 8,
  86. dest_id : 32;
  87. };
  88. __u64 low;
  89. };
  90. union {
  91. struct {
  92. __u64 sid : 16,
  93. sq : 2,
  94. svt : 2,
  95. __reserved_3 : 44;
  96. };
  97. __u64 high;
  98. };
  99. };
  100. #ifdef CONFIG_INTR_REMAP
  101. extern int intr_remapping_enabled;
  102. extern int intr_remapping_supported(void);
  103. extern int enable_intr_remapping(void);
  104. extern void disable_intr_remapping(void);
  105. extern int reenable_intr_remapping(int);
  106. extern int get_irte(int irq, struct irte *entry);
  107. extern int modify_irte(int irq, struct irte *irte_modified);
  108. extern int alloc_irte(struct intel_iommu *iommu, int irq, u16 count);
  109. extern int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index,
  110. u16 sub_handle);
  111. extern int map_irq_to_irte_handle(int irq, u16 *sub_handle);
  112. extern int free_irte(int irq);
  113. extern struct intel_iommu *map_dev_to_ir(struct pci_dev *dev);
  114. extern struct intel_iommu *map_ioapic_to_ir(int apic);
  115. extern struct intel_iommu *map_hpet_to_ir(u8 id);
  116. extern int set_ioapic_sid(struct irte *irte, int apic);
  117. extern int set_hpet_sid(struct irte *irte, u8 id);
  118. extern int set_msi_sid(struct irte *irte, struct pci_dev *dev);
  119. #else
  120. static inline int alloc_irte(struct intel_iommu *iommu, int irq, u16 count)
  121. {
  122. return -1;
  123. }
  124. static inline int modify_irte(int irq, struct irte *irte_modified)
  125. {
  126. return -1;
  127. }
  128. static inline int free_irte(int irq)
  129. {
  130. return -1;
  131. }
  132. static inline int map_irq_to_irte_handle(int irq, u16 *sub_handle)
  133. {
  134. return -1;
  135. }
  136. static inline int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index,
  137. u16 sub_handle)
  138. {
  139. return -1;
  140. }
  141. static inline struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
  142. {
  143. return NULL;
  144. }
  145. static inline struct intel_iommu *map_ioapic_to_ir(int apic)
  146. {
  147. return NULL;
  148. }
  149. static inline struct intel_iommu *map_hpet_to_ir(unsigned int hpet_id)
  150. {
  151. return NULL;
  152. }
  153. static inline int set_ioapic_sid(struct irte *irte, int apic)
  154. {
  155. return 0;
  156. }
  157. static inline int set_hpet_sid(struct irte *irte, u8 id)
  158. {
  159. return -1;
  160. }
  161. static inline int set_msi_sid(struct irte *irte, struct pci_dev *dev)
  162. {
  163. return 0;
  164. }
  165. #define intr_remapping_enabled (0)
  166. static inline int enable_intr_remapping(void)
  167. {
  168. return -1;
  169. }
  170. static inline void disable_intr_remapping(void)
  171. {
  172. }
  173. static inline int reenable_intr_remapping(int eim)
  174. {
  175. return 0;
  176. }
  177. #endif
  178. enum {
  179. IRQ_REMAP_XAPIC_MODE,
  180. IRQ_REMAP_X2APIC_MODE,
  181. };
  182. /* Can't use the common MSI interrupt functions
  183. * since DMAR is not a pci device
  184. */
  185. struct irq_data;
  186. extern void dmar_msi_unmask(struct irq_data *data);
  187. extern void dmar_msi_mask(struct irq_data *data);
  188. extern void dmar_msi_read(int irq, struct msi_msg *msg);
  189. extern void dmar_msi_write(int irq, struct msi_msg *msg);
  190. extern int dmar_set_interrupt(struct intel_iommu *iommu);
  191. extern irqreturn_t dmar_fault(int irq, void *dev_id);
  192. extern int arch_setup_dmar_msi(unsigned int irq);
  193. #ifdef CONFIG_DMAR
  194. extern int iommu_detected, no_iommu;
  195. extern struct list_head dmar_rmrr_units;
  196. struct dmar_rmrr_unit {
  197. struct list_head list; /* list of rmrr units */
  198. struct acpi_dmar_header *hdr; /* ACPI header */
  199. u64 base_address; /* reserved base address*/
  200. u64 end_address; /* reserved end address */
  201. struct pci_dev **devices; /* target devices */
  202. int devices_cnt; /* target device count */
  203. };
  204. #define for_each_rmrr_units(rmrr) \
  205. list_for_each_entry(rmrr, &dmar_rmrr_units, list)
  206. struct dmar_atsr_unit {
  207. struct list_head list; /* list of ATSR units */
  208. struct acpi_dmar_header *hdr; /* ACPI header */
  209. struct pci_dev **devices; /* target devices */
  210. int devices_cnt; /* target device count */
  211. u8 include_all:1; /* include all ports */
  212. };
  213. extern int intel_iommu_init(void);
  214. #else /* !CONFIG_DMAR: */
  215. static inline int intel_iommu_init(void) { return -ENODEV; }
  216. #endif /* CONFIG_DMAR */
  217. #endif /* __DMAR_H__ */