dmar.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 acpi_dmar_header;
  27. /* DMAR Flags */
  28. #define DMAR_INTR_REMAP 0x1
  29. #define DMAR_X2APIC_OPT_OUT 0x2
  30. struct intel_iommu;
  31. #ifdef CONFIG_DMAR_TABLE
  32. extern struct acpi_table_header *dmar_tbl;
  33. struct dmar_drhd_unit {
  34. struct list_head list; /* list of drhd units */
  35. struct acpi_dmar_header *hdr; /* ACPI header */
  36. u64 reg_base_addr; /* register base address*/
  37. struct pci_dev **devices; /* target device array */
  38. int devices_cnt; /* target device count */
  39. u16 segment; /* PCI domain */
  40. u8 ignored:1; /* ignore drhd */
  41. u8 include_all:1;
  42. struct intel_iommu *iommu;
  43. };
  44. extern struct list_head dmar_drhd_units;
  45. #define for_each_drhd_unit(drhd) \
  46. list_for_each_entry(drhd, &dmar_drhd_units, list)
  47. #define for_each_active_iommu(i, drhd) \
  48. list_for_each_entry(drhd, &dmar_drhd_units, list) \
  49. if (i=drhd->iommu, drhd->ignored) {} else
  50. #define for_each_iommu(i, drhd) \
  51. list_for_each_entry(drhd, &dmar_drhd_units, list) \
  52. if (i=drhd->iommu, 0) {} else
  53. extern int dmar_table_init(void);
  54. extern int dmar_dev_scope_init(void);
  55. /* Intel IOMMU detection */
  56. extern int detect_intel_iommu(void);
  57. extern int enable_drhd_fault_handling(void);
  58. extern int parse_ioapics_under_ir(void);
  59. extern int alloc_iommu(struct dmar_drhd_unit *);
  60. #else
  61. static inline int detect_intel_iommu(void)
  62. {
  63. return -ENODEV;
  64. }
  65. static inline int dmar_table_init(void)
  66. {
  67. return -ENODEV;
  68. }
  69. static inline int enable_drhd_fault_handling(void)
  70. {
  71. return -1;
  72. }
  73. #endif /* !CONFIG_DMAR_TABLE */
  74. struct irte {
  75. union {
  76. struct {
  77. __u64 present : 1,
  78. fpd : 1,
  79. dst_mode : 1,
  80. redir_hint : 1,
  81. trigger_mode : 1,
  82. dlvry_mode : 3,
  83. avail : 4,
  84. __reserved_1 : 4,
  85. vector : 8,
  86. __reserved_2 : 8,
  87. dest_id : 32;
  88. };
  89. __u64 low;
  90. };
  91. union {
  92. struct {
  93. __u64 sid : 16,
  94. sq : 2,
  95. svt : 2,
  96. __reserved_3 : 44;
  97. };
  98. __u64 high;
  99. };
  100. };
  101. enum {
  102. IRQ_REMAP_XAPIC_MODE,
  103. IRQ_REMAP_X2APIC_MODE,
  104. };
  105. /* Can't use the common MSI interrupt functions
  106. * since DMAR is not a pci device
  107. */
  108. struct irq_data;
  109. extern void dmar_msi_unmask(struct irq_data *data);
  110. extern void dmar_msi_mask(struct irq_data *data);
  111. extern void dmar_msi_read(int irq, struct msi_msg *msg);
  112. extern void dmar_msi_write(int irq, struct msi_msg *msg);
  113. extern int dmar_set_interrupt(struct intel_iommu *iommu);
  114. extern irqreturn_t dmar_fault(int irq, void *dev_id);
  115. extern int arch_setup_dmar_msi(unsigned int irq);
  116. #ifdef CONFIG_INTEL_IOMMU
  117. extern int iommu_detected, no_iommu;
  118. extern struct list_head dmar_rmrr_units;
  119. struct dmar_rmrr_unit {
  120. struct list_head list; /* list of rmrr units */
  121. struct acpi_dmar_header *hdr; /* ACPI header */
  122. u64 base_address; /* reserved base address*/
  123. u64 end_address; /* reserved end address */
  124. struct pci_dev **devices; /* target devices */
  125. int devices_cnt; /* target device count */
  126. };
  127. #define for_each_rmrr_units(rmrr) \
  128. list_for_each_entry(rmrr, &dmar_rmrr_units, list)
  129. struct dmar_atsr_unit {
  130. struct list_head list; /* list of ATSR units */
  131. struct acpi_dmar_header *hdr; /* ACPI header */
  132. struct pci_dev **devices; /* target devices */
  133. int devices_cnt; /* target device count */
  134. u8 include_all:1; /* include all ports */
  135. };
  136. int dmar_parse_rmrr_atsr_dev(void);
  137. extern int dmar_parse_one_rmrr(struct acpi_dmar_header *header);
  138. extern int dmar_parse_one_atsr(struct acpi_dmar_header *header);
  139. extern int dmar_parse_dev_scope(void *start, void *end, int *cnt,
  140. struct pci_dev ***devices, u16 segment);
  141. extern int intel_iommu_init(void);
  142. #else /* !CONFIG_INTEL_IOMMU: */
  143. static inline int intel_iommu_init(void) { return -ENODEV; }
  144. static inline int dmar_parse_one_rmrr(struct acpi_dmar_header *header)
  145. {
  146. return 0;
  147. }
  148. static inline int dmar_parse_one_atsr(struct acpi_dmar_header *header)
  149. {
  150. return 0;
  151. }
  152. static inline int dmar_parse_rmrr_atsr_dev(void)
  153. {
  154. return 0;
  155. }
  156. #endif /* CONFIG_INTEL_IOMMU */
  157. #endif /* __DMAR_H__ */