1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2006, Intel Corporation.
5 * Copyright (C) Ashok Raj <ashok.raj@intel.com>
6 * Copyright (C) Shaohua Li <shaohua.li@intel.com>
12 #include <linux/acpi.h>
13 #include <linux/types.h>
14 #include <linux/msi.h>
15 #include <linux/irqreturn.h>
16 #include <linux/rwsem.h>
17 #include <linux/rculist.h>
19 struct acpi_dmar_header;
21 #define DMAR_UNITS_SUPPORTED 1024
24 #define DMAR_INTR_REMAP 0x1
25 #define DMAR_X2APIC_OPT_OUT 0x2
26 #define DMAR_PLATFORM_OPT_IN 0x4
30 struct dmar_dev_scope {
31 struct device __rcu *dev;
36 #ifdef CONFIG_DMAR_TABLE
37 extern struct acpi_table_header *dmar_tbl;
38 struct dmar_drhd_unit {
39 struct list_head list; /* list of drhd units */
40 struct acpi_dmar_header *hdr; /* ACPI header */
41 u64 reg_base_addr; /* register base address*/
42 struct dmar_dev_scope *devices;/* target device array */
43 int devices_cnt; /* target device count */
44 u16 segment; /* PCI domain */
45 u8 ignored:1; /* ignore drhd */
47 u8 gfx_dedicated:1; /* graphic dedicated */
48 struct intel_iommu *iommu;
51 struct dmar_pci_path {
57 struct dmar_pci_notify_info {
63 struct dmar_pci_path path[];
64 } __attribute__((packed));
66 extern struct rw_semaphore dmar_global_lock;
67 extern struct list_head dmar_drhd_units;
69 #define for_each_drhd_unit(drhd) \
70 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
73 #define for_each_active_drhd_unit(drhd) \
74 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
76 if (drhd->ignored) {} else
78 #define for_each_active_iommu(i, drhd) \
79 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
81 if (i=drhd->iommu, drhd->ignored) {} else
83 #define for_each_iommu(i, drhd) \
84 list_for_each_entry_rcu(drhd, &dmar_drhd_units, list, \
86 if (i=drhd->iommu, 0) {} else
88 static inline bool dmar_rcu_check(void)
90 return rwsem_is_locked(&dmar_global_lock) ||
91 system_state == SYSTEM_BOOTING;
94 #define dmar_rcu_dereference(p) rcu_dereference_check((p), dmar_rcu_check())
96 #define for_each_dev_scope(devs, cnt, i, tmp) \
97 for ((i) = 0; ((tmp) = (i) < (cnt) ? \
98 dmar_rcu_dereference((devs)[(i)].dev) : NULL, (i) < (cnt)); \
101 #define for_each_active_dev_scope(devs, cnt, i, tmp) \
102 for_each_dev_scope((devs), (cnt), (i), (tmp)) \
103 if (!(tmp)) { continue; } else
105 extern int dmar_table_init(void);
106 extern int dmar_dev_scope_init(void);
107 extern void dmar_register_bus_notifier(void);
108 extern int dmar_parse_dev_scope(void *start, void *end, int *cnt,
109 struct dmar_dev_scope **devices, u16 segment);
110 extern void *dmar_alloc_dev_scope(void *start, void *end, int *cnt);
111 extern void dmar_free_dev_scope(struct dmar_dev_scope **devices, int *cnt);
112 extern int dmar_insert_dev_scope(struct dmar_pci_notify_info *info,
113 void *start, void*end, u16 segment,
114 struct dmar_dev_scope *devices,
116 extern int dmar_remove_dev_scope(struct dmar_pci_notify_info *info,
117 u16 segment, struct dmar_dev_scope *devices,
119 /* Intel IOMMU detection */
120 void detect_intel_iommu(void);
121 extern int enable_drhd_fault_handling(void);
122 extern int dmar_device_add(acpi_handle handle);
123 extern int dmar_device_remove(acpi_handle handle);
125 static inline int dmar_res_noop(struct acpi_dmar_header *hdr, void *arg)
130 #ifdef CONFIG_DMAR_DEBUG
131 void dmar_fault_dump_ptes(struct intel_iommu *iommu, u16 source_id,
132 unsigned long long addr, u32 pasid);
134 static inline void dmar_fault_dump_ptes(struct intel_iommu *iommu, u16 source_id,
135 unsigned long long addr, u32 pasid) {}
138 #ifdef CONFIG_INTEL_IOMMU
139 extern int iommu_detected, no_iommu;
140 extern int intel_iommu_init(void);
141 extern void intel_iommu_shutdown(void);
142 extern int dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg);
143 extern int dmar_parse_one_atsr(struct acpi_dmar_header *header, void *arg);
144 extern int dmar_check_one_atsr(struct acpi_dmar_header *hdr, void *arg);
145 extern int dmar_parse_one_satc(struct acpi_dmar_header *hdr, void *arg);
146 extern int dmar_release_one_atsr(struct acpi_dmar_header *hdr, void *arg);
147 extern int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert);
148 extern int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info);
149 #else /* !CONFIG_INTEL_IOMMU: */
150 static inline int intel_iommu_init(void) { return -ENODEV; }
151 static inline void intel_iommu_shutdown(void) { }
153 #define dmar_parse_one_rmrr dmar_res_noop
154 #define dmar_parse_one_atsr dmar_res_noop
155 #define dmar_check_one_atsr dmar_res_noop
156 #define dmar_release_one_atsr dmar_res_noop
157 #define dmar_parse_one_satc dmar_res_noop
159 static inline int dmar_iommu_notify_scope_dev(struct dmar_pci_notify_info *info)
164 static inline int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
168 #endif /* CONFIG_INTEL_IOMMU */
170 #ifdef CONFIG_IRQ_REMAP
171 extern int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert);
172 #else /* CONFIG_IRQ_REMAP */
173 static inline int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
175 #endif /* CONFIG_IRQ_REMAP */
177 extern bool dmar_platform_optin(void);
179 #else /* CONFIG_DMAR_TABLE */
181 static inline int dmar_device_add(void *handle)
186 static inline int dmar_device_remove(void *handle)
191 static inline bool dmar_platform_optin(void)
196 static inline void detect_intel_iommu(void)
200 #endif /* CONFIG_DMAR_TABLE */
204 /* Shared between remapped and posted mode*/
206 __u64 present : 1, /* 0 */
208 __res0 : 6, /* 2 - 6 */
209 avail : 4, /* 8 - 11 */
210 __res1 : 3, /* 12 - 14 */
212 vector : 8, /* 16 - 23 */
213 __res2 : 40; /* 24 - 63 */
218 __u64 r_present : 1, /* 0 */
220 dst_mode : 1, /* 2 */
221 redir_hint : 1, /* 3 */
222 trigger_mode : 1, /* 4 */
223 dlvry_mode : 3, /* 5 - 7 */
224 r_avail : 4, /* 8 - 11 */
225 r_res0 : 4, /* 12 - 15 */
226 r_vector : 8, /* 16 - 23 */
227 r_res1 : 8, /* 24 - 31 */
228 dest_id : 32; /* 32 - 63 */
233 __u64 p_present : 1, /* 0 */
235 p_res0 : 6, /* 2 - 7 */
236 p_avail : 4, /* 8 - 11 */
237 p_res1 : 2, /* 12 - 13 */
238 p_urgent : 1, /* 14 */
240 p_vector : 8, /* 16 - 23 */
241 p_res2 : 14, /* 24 - 37 */
242 pda_l : 26; /* 38 - 63 */
248 /* Shared between remapped and posted mode*/
250 __u64 sid : 16, /* 64 - 79 */
251 sq : 2, /* 80 - 81 */
252 svt : 2, /* 82 - 83 */
253 __res3 : 44; /* 84 - 127 */
258 __u64 p_sid : 16, /* 64 - 79 */
259 p_sq : 2, /* 80 - 81 */
260 p_svt : 2, /* 82 - 83 */
261 p_res3 : 12, /* 84 - 95 */
262 pda_h : 32; /* 96 - 127 */
268 static inline void dmar_copy_shared_irte(struct irte *dst, struct irte *src)
270 dst->present = src->present;
272 dst->avail = src->avail;
274 dst->vector = src->vector;
280 #define PDA_LOW_BIT 26
281 #define PDA_HIGH_BIT 32
283 /* Can't use the common MSI interrupt functions
284 * since DMAR is not a pci device
287 extern void dmar_msi_unmask(struct irq_data *data);
288 extern void dmar_msi_mask(struct irq_data *data);
289 extern void dmar_msi_read(int irq, struct msi_msg *msg);
290 extern void dmar_msi_write(int irq, struct msi_msg *msg);
291 extern int dmar_set_interrupt(struct intel_iommu *iommu);
292 extern irqreturn_t dmar_fault(int irq, void *dev_id);
293 extern int dmar_alloc_hwirq(int id, int node, void *arg);
294 extern void dmar_free_hwirq(int irq);
296 #endif /* __DMAR_H__ */