dmar.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. #if defined(CONFIG_DMAR) || defined(CONFIG_INTR_REMAP)
  26. struct intel_iommu;
  27. struct dmar_drhd_unit {
  28. struct list_head list; /* list of drhd units */
  29. struct acpi_dmar_header *hdr; /* ACPI header */
  30. u64 reg_base_addr; /* register base address*/
  31. struct pci_dev **devices; /* target device array */
  32. int devices_cnt; /* target device count */
  33. u8 ignored:1; /* ignore drhd */
  34. u8 include_all:1;
  35. struct intel_iommu *iommu;
  36. };
  37. extern struct list_head dmar_drhd_units;
  38. #define for_each_drhd_unit(drhd) \
  39. list_for_each_entry(drhd, &dmar_drhd_units, list)
  40. extern int dmar_table_init(void);
  41. extern int dmar_dev_scope_init(void);
  42. /* Intel IOMMU detection */
  43. extern void detect_intel_iommu(void);
  44. extern int parse_ioapics_under_ir(void);
  45. extern int alloc_iommu(struct dmar_drhd_unit *);
  46. #else
  47. static inline void detect_intel_iommu(void)
  48. {
  49. return;
  50. }
  51. static inline int dmar_table_init(void)
  52. {
  53. return -ENODEV;
  54. }
  55. #endif /* !CONFIG_DMAR && !CONFIG_INTR_REMAP */
  56. #ifdef CONFIG_INTR_REMAP
  57. extern int intr_remapping_enabled;
  58. extern int enable_intr_remapping(int);
  59. struct irte {
  60. union {
  61. struct {
  62. __u64 present : 1,
  63. fpd : 1,
  64. dst_mode : 1,
  65. redir_hint : 1,
  66. trigger_mode : 1,
  67. dlvry_mode : 3,
  68. avail : 4,
  69. __reserved_1 : 4,
  70. vector : 8,
  71. __reserved_2 : 8,
  72. dest_id : 32;
  73. };
  74. __u64 low;
  75. };
  76. union {
  77. struct {
  78. __u64 sid : 16,
  79. sq : 2,
  80. svt : 2,
  81. __reserved_3 : 44;
  82. };
  83. __u64 high;
  84. };
  85. };
  86. extern int get_irte(int irq, struct irte *entry);
  87. extern int modify_irte(int irq, struct irte *irte_modified);
  88. extern int alloc_irte(struct intel_iommu *iommu, int irq, u16 count);
  89. extern int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index,
  90. u16 sub_handle);
  91. extern int map_irq_to_irte_handle(int irq, u16 *sub_handle);
  92. extern int clear_irte_irq(int irq, struct intel_iommu *iommu, u16 index);
  93. extern int flush_irte(int irq);
  94. extern int free_irte(int irq);
  95. extern int irq_remapped(int irq);
  96. extern struct intel_iommu *map_dev_to_ir(struct pci_dev *dev);
  97. extern struct intel_iommu *map_ioapic_to_ir(int apic);
  98. #else
  99. #define irq_remapped(irq) (0)
  100. #define enable_intr_remapping(mode) (-1)
  101. #define intr_remapping_enabled (0)
  102. #endif
  103. #ifdef CONFIG_DMAR
  104. extern const char *dmar_get_fault_reason(u8 fault_reason);
  105. /* Can't use the common MSI interrupt functions
  106. * since DMAR is not a pci device
  107. */
  108. extern void dmar_msi_unmask(unsigned int irq);
  109. extern void dmar_msi_mask(unsigned int irq);
  110. extern void dmar_msi_read(int irq, struct msi_msg *msg);
  111. extern void dmar_msi_write(int irq, struct msi_msg *msg);
  112. extern int dmar_set_interrupt(struct intel_iommu *iommu);
  113. extern int arch_setup_dmar_msi(unsigned int irq);
  114. extern int iommu_detected, no_iommu;
  115. extern struct list_head dmar_rmrr_units;
  116. struct dmar_rmrr_unit {
  117. struct list_head list; /* list of rmrr units */
  118. struct acpi_dmar_header *hdr; /* ACPI header */
  119. u64 base_address; /* reserved base address*/
  120. u64 end_address; /* reserved end address */
  121. struct pci_dev **devices; /* target devices */
  122. int devices_cnt; /* target device count */
  123. };
  124. #define for_each_rmrr_units(rmrr) \
  125. list_for_each_entry(rmrr, &dmar_rmrr_units, list)
  126. /* Intel DMAR initialization functions */
  127. extern int intel_iommu_init(void);
  128. #else
  129. static inline int intel_iommu_init(void)
  130. {
  131. #ifdef CONFIG_INTR_REMAP
  132. return dmar_dev_scope_init();
  133. #else
  134. return -ENODEV;
  135. #endif
  136. }
  137. #endif /* !CONFIG_DMAR */
  138. #endif /* __DMAR_H__ */