blob: 9eff36a293e0621627bfef40314fe4bee97a15d3 [file] [log] [blame]
Yinghai Lu5aeecaf2008-08-19 20:49:59 -07001#include <linux/interrupt.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -07002#include <linux/dmar.h>
Suresh Siddha2ae21012008-07-10 11:16:43 -07003#include <linux/spinlock.h>
4#include <linux/jiffies.h>
5#include <linux/pci.h>
Suresh Siddhab6fcb332008-07-10 11:16:44 -07006#include <linux/irq.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -07007#include <asm/io_apic.h>
Yinghai Lu17483a12008-12-12 13:14:18 -08008#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +05309#include <asm/cpu.h>
Kay, Allen M38717942008-09-09 18:37:29 +030010#include <linux/intel-iommu.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070011#include "intr_remapping.h"
Alexander Beregalov46f06b722009-04-06 16:45:28 +010012#include <acpi/acpi.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070013
14static struct ioapic_scope ir_ioapic[MAX_IO_APICS];
15static int ir_ioapic_num;
Suresh Siddha2ae21012008-07-10 11:16:43 -070016int intr_remapping_enabled;
17
Yinghai Lu5aeecaf2008-08-19 20:49:59 -070018struct irq_2_iommu {
Suresh Siddhab6fcb332008-07-10 11:16:44 -070019 struct intel_iommu *iommu;
20 u16 irte_index;
21 u16 sub_handle;
22 u8 irte_mask;
Yinghai Lu5aeecaf2008-08-19 20:49:59 -070023};
24
Yinghai Lud7e51e62009-01-07 15:03:13 -080025#ifdef CONFIG_GENERIC_HARDIRQS
Yinghai Lu85ac16d2009-04-27 18:00:38 -070026static struct irq_2_iommu *get_one_free_irq_2_iommu(int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080027{
28 struct irq_2_iommu *iommu;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080029
30 iommu = kzalloc_node(sizeof(*iommu), GFP_ATOMIC, node);
Yinghai Lu85ac16d2009-04-27 18:00:38 -070031 printk(KERN_DEBUG "alloc irq_2_iommu on node %d\n", node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080032
33 return iommu;
34}
Yinghai Lue420dfb2008-08-19 20:50:21 -070035
36static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
37{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080038 struct irq_desc *desc;
39
40 desc = irq_to_desc(irq);
41
42 if (WARN_ON_ONCE(!desc))
43 return NULL;
44
45 return desc->irq_2_iommu;
46}
47
Yinghai Lu85ac16d2009-04-27 18:00:38 -070048static struct irq_2_iommu *irq_2_iommu_alloc_node(unsigned int irq, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080049{
50 struct irq_desc *desc;
51 struct irq_2_iommu *irq_iommu;
52
53 /*
54 * alloc irq desc if not allocated already.
55 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -070056 desc = irq_to_desc_alloc_node(irq, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080057 if (!desc) {
58 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
59 return NULL;
60 }
61
62 irq_iommu = desc->irq_2_iommu;
63
64 if (!irq_iommu)
Yinghai Lu85ac16d2009-04-27 18:00:38 -070065 desc->irq_2_iommu = get_one_free_irq_2_iommu(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080066
67 return desc->irq_2_iommu;
Yinghai Lue420dfb2008-08-19 20:50:21 -070068}
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020069
Yinghai Lue420dfb2008-08-19 20:50:21 -070070static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
71{
Yinghai Lu85ac16d2009-04-27 18:00:38 -070072 return irq_2_iommu_alloc_node(irq, cpu_to_node(boot_cpu_id));
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080073}
74
75#else /* !CONFIG_SPARSE_IRQ */
76
77static struct irq_2_iommu irq_2_iommuX[NR_IRQS];
78
79static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
80{
81 if (irq < nr_irqs)
82 return &irq_2_iommuX[irq];
83
84 return NULL;
85}
86static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
87{
Yinghai Lue420dfb2008-08-19 20:50:21 -070088 return irq_2_iommu(irq);
89}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080090#endif
Suresh Siddhab6fcb332008-07-10 11:16:44 -070091
92static DEFINE_SPINLOCK(irq_2_ir_lock);
93
Yinghai Lue420dfb2008-08-19 20:50:21 -070094static struct irq_2_iommu *valid_irq_2_iommu(unsigned int irq)
95{
96 struct irq_2_iommu *irq_iommu;
97
98 irq_iommu = irq_2_iommu(irq);
99
100 if (!irq_iommu)
101 return NULL;
102
103 if (!irq_iommu->iommu)
104 return NULL;
105
106 return irq_iommu;
107}
108
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700109int irq_remapped(int irq)
110{
Yinghai Lue420dfb2008-08-19 20:50:21 -0700111 return valid_irq_2_iommu(irq) != NULL;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700112}
113
114int get_irte(int irq, struct irte *entry)
115{
116 int index;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700117 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700118 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700119
Yinghai Lue420dfb2008-08-19 20:50:21 -0700120 if (!entry)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700121 return -1;
122
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700123 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700124 irq_iommu = valid_irq_2_iommu(irq);
125 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700126 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700127 return -1;
128 }
129
Yinghai Lue420dfb2008-08-19 20:50:21 -0700130 index = irq_iommu->irte_index + irq_iommu->sub_handle;
131 *entry = *(irq_iommu->iommu->ir_table->base + index);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700132
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700133 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700134 return 0;
135}
136
137int alloc_irte(struct intel_iommu *iommu, int irq, u16 count)
138{
139 struct ir_table *table = iommu->ir_table;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700140 struct irq_2_iommu *irq_iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700141 u16 index, start_index;
142 unsigned int mask = 0;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700143 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700144 int i;
145
146 if (!count)
147 return -1;
148
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800149#ifndef CONFIG_SPARSE_IRQ
Yinghai Lue420dfb2008-08-19 20:50:21 -0700150 /* protect irq_2_iommu_alloc later */
151 if (irq >= nr_irqs)
152 return -1;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800153#endif
Yinghai Lue420dfb2008-08-19 20:50:21 -0700154
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700155 /*
156 * start the IRTE search from index 0.
157 */
158 index = start_index = 0;
159
160 if (count > 1) {
161 count = __roundup_pow_of_two(count);
162 mask = ilog2(count);
163 }
164
165 if (mask > ecap_max_handle_mask(iommu->ecap)) {
166 printk(KERN_ERR
167 "Requested mask %x exceeds the max invalidation handle"
168 " mask value %Lx\n", mask,
169 ecap_max_handle_mask(iommu->ecap));
170 return -1;
171 }
172
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700173 spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700174 do {
175 for (i = index; i < index + count; i++)
176 if (table->base[i].present)
177 break;
178 /* empty index found */
179 if (i == index + count)
180 break;
181
182 index = (index + count) % INTR_REMAP_TABLE_ENTRIES;
183
184 if (index == start_index) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700185 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700186 printk(KERN_ERR "can't allocate an IRTE\n");
187 return -1;
188 }
189 } while (1);
190
191 for (i = index; i < index + count; i++)
192 table->base[i].present = 1;
193
Yinghai Lue420dfb2008-08-19 20:50:21 -0700194 irq_iommu = irq_2_iommu_alloc(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800195 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700196 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800197 printk(KERN_ERR "can't allocate irq_2_iommu\n");
198 return -1;
199 }
200
Yinghai Lue420dfb2008-08-19 20:50:21 -0700201 irq_iommu->iommu = iommu;
202 irq_iommu->irte_index = index;
203 irq_iommu->sub_handle = 0;
204 irq_iommu->irte_mask = mask;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700205
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700206 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700207
208 return index;
209}
210
Yu Zhao704126a2009-01-04 16:28:52 +0800211static int qi_flush_iec(struct intel_iommu *iommu, int index, int mask)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700212{
213 struct qi_desc desc;
214
215 desc.low = QI_IEC_IIDEX(index) | QI_IEC_TYPE | QI_IEC_IM(mask)
216 | QI_IEC_SELECTIVE;
217 desc.high = 0;
218
Yu Zhao704126a2009-01-04 16:28:52 +0800219 return qi_submit_sync(&desc, iommu);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700220}
221
222int map_irq_to_irte_handle(int irq, u16 *sub_handle)
223{
224 int index;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700225 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700226 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700227
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700228 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700229 irq_iommu = valid_irq_2_iommu(irq);
230 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700231 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700232 return -1;
233 }
234
Yinghai Lue420dfb2008-08-19 20:50:21 -0700235 *sub_handle = irq_iommu->sub_handle;
236 index = irq_iommu->irte_index;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700237 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700238 return index;
239}
240
241int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index, u16 subhandle)
242{
Yinghai Lue420dfb2008-08-19 20:50:21 -0700243 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700244 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700245
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700246 spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddha7ddfb652008-08-20 17:22:51 -0700247
248 irq_iommu = irq_2_iommu_alloc(irq);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700249
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800250 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700251 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800252 printk(KERN_ERR "can't allocate irq_2_iommu\n");
253 return -1;
254 }
255
Yinghai Lue420dfb2008-08-19 20:50:21 -0700256 irq_iommu->iommu = iommu;
257 irq_iommu->irte_index = index;
258 irq_iommu->sub_handle = subhandle;
259 irq_iommu->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700260
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700261 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700262
263 return 0;
264}
265
266int clear_irte_irq(int irq, struct intel_iommu *iommu, u16 index)
267{
Yinghai Lue420dfb2008-08-19 20:50:21 -0700268 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700269 unsigned long flags;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700270
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700271 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700272 irq_iommu = valid_irq_2_iommu(irq);
273 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700274 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700275 return -1;
276 }
277
Yinghai Lue420dfb2008-08-19 20:50:21 -0700278 irq_iommu->iommu = NULL;
279 irq_iommu->irte_index = 0;
280 irq_iommu->sub_handle = 0;
281 irq_2_iommu(irq)->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700282
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700283 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700284
285 return 0;
286}
287
288int modify_irte(int irq, struct irte *irte_modified)
289{
Yu Zhao704126a2009-01-04 16:28:52 +0800290 int rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700291 int index;
292 struct irte *irte;
293 struct intel_iommu *iommu;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700294 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700295 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700296
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700297 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700298 irq_iommu = valid_irq_2_iommu(irq);
299 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700300 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700301 return -1;
302 }
303
Yinghai Lue420dfb2008-08-19 20:50:21 -0700304 iommu = irq_iommu->iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700305
Yinghai Lue420dfb2008-08-19 20:50:21 -0700306 index = irq_iommu->irte_index + irq_iommu->sub_handle;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700307 irte = &iommu->ir_table->base[index];
308
Suresh Siddha9d783ba2009-03-16 17:04:55 -0700309 set_64bit((unsigned long *)irte, irte_modified->low);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700310 __iommu_flush_cache(iommu, irte, sizeof(*irte));
311
Yu Zhao704126a2009-01-04 16:28:52 +0800312 rc = qi_flush_iec(iommu, index, 0);
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700313 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yu Zhao704126a2009-01-04 16:28:52 +0800314
315 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700316}
317
318int flush_irte(int irq)
319{
Yu Zhao704126a2009-01-04 16:28:52 +0800320 int rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700321 int index;
322 struct intel_iommu *iommu;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700323 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700324 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700325
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700326 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700327 irq_iommu = valid_irq_2_iommu(irq);
328 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700329 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700330 return -1;
331 }
332
Yinghai Lue420dfb2008-08-19 20:50:21 -0700333 iommu = irq_iommu->iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700334
Yinghai Lue420dfb2008-08-19 20:50:21 -0700335 index = irq_iommu->irte_index + irq_iommu->sub_handle;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700336
Yu Zhao704126a2009-01-04 16:28:52 +0800337 rc = qi_flush_iec(iommu, index, irq_iommu->irte_mask);
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700338 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700339
Yu Zhao704126a2009-01-04 16:28:52 +0800340 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700341}
342
Suresh Siddha89027d32008-07-10 11:16:56 -0700343struct intel_iommu *map_ioapic_to_ir(int apic)
344{
345 int i;
346
347 for (i = 0; i < MAX_IO_APICS; i++)
348 if (ir_ioapic[i].id == apic)
349 return ir_ioapic[i].iommu;
350 return NULL;
351}
352
Suresh Siddha75c46fa2008-07-10 11:16:57 -0700353struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
354{
355 struct dmar_drhd_unit *drhd;
356
357 drhd = dmar_find_matched_drhd_unit(dev);
358 if (!drhd)
359 return NULL;
360
361 return drhd->iommu;
362}
363
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700364int free_irte(int irq)
365{
Yu Zhao704126a2009-01-04 16:28:52 +0800366 int rc = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700367 int index, i;
368 struct irte *irte;
369 struct intel_iommu *iommu;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700370 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700371 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700372
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700373 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700374 irq_iommu = valid_irq_2_iommu(irq);
375 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700376 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700377 return -1;
378 }
379
Yinghai Lue420dfb2008-08-19 20:50:21 -0700380 iommu = irq_iommu->iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700381
Yinghai Lue420dfb2008-08-19 20:50:21 -0700382 index = irq_iommu->irte_index + irq_iommu->sub_handle;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700383 irte = &iommu->ir_table->base[index];
384
Yinghai Lue420dfb2008-08-19 20:50:21 -0700385 if (!irq_iommu->sub_handle) {
386 for (i = 0; i < (1 << irq_iommu->irte_mask); i++)
Suresh Siddha2e934562009-03-16 17:04:58 -0700387 set_64bit((unsigned long *)(irte + i), 0);
Yu Zhao704126a2009-01-04 16:28:52 +0800388 rc = qi_flush_iec(iommu, index, irq_iommu->irte_mask);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700389 }
390
Yinghai Lue420dfb2008-08-19 20:50:21 -0700391 irq_iommu->iommu = NULL;
392 irq_iommu->irte_index = 0;
393 irq_iommu->sub_handle = 0;
394 irq_iommu->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700395
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700396 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700397
Yu Zhao704126a2009-01-04 16:28:52 +0800398 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700399}
400
Suresh Siddha2ae21012008-07-10 11:16:43 -0700401static void iommu_set_intr_remapping(struct intel_iommu *iommu, int mode)
402{
403 u64 addr;
404 u32 cmd, sts;
405 unsigned long flags;
406
407 addr = virt_to_phys((void *)iommu->ir_table->base);
408
409 spin_lock_irqsave(&iommu->register_lock, flags);
410
411 dmar_writeq(iommu->reg + DMAR_IRTA_REG,
412 (addr) | IR_X2APIC_MODE(mode) | INTR_REMAP_TABLE_REG_SIZE);
413
414 /* Set interrupt-remapping table pointer */
415 cmd = iommu->gcmd | DMA_GCMD_SIRTP;
Han, Weidong161fde02009-04-03 17:15:47 +0800416 iommu->gcmd |= DMA_GCMD_SIRTP;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700417 writel(cmd, iommu->reg + DMAR_GCMD_REG);
418
419 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
420 readl, (sts & DMA_GSTS_IRTPS), sts);
421 spin_unlock_irqrestore(&iommu->register_lock, flags);
422
Han, Weidong161fde02009-04-03 17:15:47 +0800423 if (mode == 0) {
424 spin_lock_irqsave(&iommu->register_lock, flags);
425
426 /* enable comaptiblity format interrupt pass through */
427 cmd = iommu->gcmd | DMA_GCMD_CFI;
428 iommu->gcmd |= DMA_GCMD_CFI;
429 writel(cmd, iommu->reg + DMAR_GCMD_REG);
430
431 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
432 readl, (sts & DMA_GSTS_CFIS), sts);
433
434 spin_unlock_irqrestore(&iommu->register_lock, flags);
435 }
436
Suresh Siddha2ae21012008-07-10 11:16:43 -0700437 /*
438 * global invalidation of interrupt entry cache before enabling
439 * interrupt-remapping.
440 */
441 qi_global_iec(iommu);
442
443 spin_lock_irqsave(&iommu->register_lock, flags);
444
445 /* Enable interrupt-remapping */
446 cmd = iommu->gcmd | DMA_GCMD_IRE;
447 iommu->gcmd |= DMA_GCMD_IRE;
448 writel(cmd, iommu->reg + DMAR_GCMD_REG);
449
450 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
451 readl, (sts & DMA_GSTS_IRES), sts);
452
453 spin_unlock_irqrestore(&iommu->register_lock, flags);
454}
455
456
457static int setup_intr_remapping(struct intel_iommu *iommu, int mode)
458{
459 struct ir_table *ir_table;
460 struct page *pages;
461
462 ir_table = iommu->ir_table = kzalloc(sizeof(struct ir_table),
Suresh Siddhafa4b57c2009-03-16 17:05:05 -0700463 GFP_ATOMIC);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700464
465 if (!iommu->ir_table)
466 return -ENOMEM;
467
Suresh Siddhafa4b57c2009-03-16 17:05:05 -0700468 pages = alloc_pages(GFP_ATOMIC | __GFP_ZERO, INTR_REMAP_PAGE_ORDER);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700469
470 if (!pages) {
471 printk(KERN_ERR "failed to allocate pages of order %d\n",
472 INTR_REMAP_PAGE_ORDER);
473 kfree(iommu->ir_table);
474 return -ENOMEM;
475 }
476
477 ir_table->base = page_address(pages);
478
479 iommu_set_intr_remapping(iommu, mode);
480 return 0;
481}
482
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700483/*
484 * Disable Interrupt Remapping.
485 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700486static void iommu_disable_intr_remapping(struct intel_iommu *iommu)
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700487{
488 unsigned long flags;
489 u32 sts;
490
491 if (!ecap_ir_support(iommu->ecap))
492 return;
493
Fenghua Yub24696b2009-03-27 14:22:44 -0700494 /*
495 * global invalidation of interrupt entry cache before disabling
496 * interrupt-remapping.
497 */
498 qi_global_iec(iommu);
499
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700500 spin_lock_irqsave(&iommu->register_lock, flags);
501
502 sts = dmar_readq(iommu->reg + DMAR_GSTS_REG);
503 if (!(sts & DMA_GSTS_IRES))
504 goto end;
505
506 iommu->gcmd &= ~DMA_GCMD_IRE;
507 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
508
509 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
510 readl, !(sts & DMA_GSTS_IRES), sts);
511
512end:
513 spin_unlock_irqrestore(&iommu->register_lock, flags);
514}
515
Suresh Siddha2ae21012008-07-10 11:16:43 -0700516int __init enable_intr_remapping(int eim)
517{
518 struct dmar_drhd_unit *drhd;
519 int setup = 0;
520
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700521 for_each_drhd_unit(drhd) {
522 struct intel_iommu *iommu = drhd->iommu;
523
524 /*
Han, Weidong34aaaa92009-04-04 17:21:26 +0800525 * If the queued invalidation is already initialized,
526 * shouldn't disable it.
527 */
528 if (iommu->qi)
529 continue;
530
531 /*
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700532 * Clear previous faults.
533 */
534 dmar_fault(-1, iommu);
535
536 /*
537 * Disable intr remapping and queued invalidation, if already
538 * enabled prior to OS handover.
539 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700540 iommu_disable_intr_remapping(iommu);
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700541
542 dmar_disable_qi(iommu);
543 }
544
Suresh Siddha2ae21012008-07-10 11:16:43 -0700545 /*
546 * check for the Interrupt-remapping support
547 */
548 for_each_drhd_unit(drhd) {
549 struct intel_iommu *iommu = drhd->iommu;
550
551 if (!ecap_ir_support(iommu->ecap))
552 continue;
553
554 if (eim && !ecap_eim_support(iommu->ecap)) {
555 printk(KERN_INFO "DRHD %Lx: EIM not supported by DRHD, "
556 " ecap %Lx\n", drhd->reg_base_addr, iommu->ecap);
557 return -1;
558 }
559 }
560
561 /*
562 * Enable queued invalidation for all the DRHD's.
563 */
564 for_each_drhd_unit(drhd) {
565 int ret;
566 struct intel_iommu *iommu = drhd->iommu;
567 ret = dmar_enable_qi(iommu);
568
569 if (ret) {
570 printk(KERN_ERR "DRHD %Lx: failed to enable queued, "
571 " invalidation, ecap %Lx, ret %d\n",
572 drhd->reg_base_addr, iommu->ecap, ret);
573 return -1;
574 }
575 }
576
577 /*
578 * Setup Interrupt-remapping for all the DRHD's now.
579 */
580 for_each_drhd_unit(drhd) {
581 struct intel_iommu *iommu = drhd->iommu;
582
583 if (!ecap_ir_support(iommu->ecap))
584 continue;
585
586 if (setup_intr_remapping(iommu, eim))
587 goto error;
588
589 setup = 1;
590 }
591
592 if (!setup)
593 goto error;
594
595 intr_remapping_enabled = 1;
596
597 return 0;
598
599error:
600 /*
601 * handle error condition gracefully here!
602 */
603 return -1;
604}
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700605
606static int ir_parse_ioapic_scope(struct acpi_dmar_header *header,
607 struct intel_iommu *iommu)
608{
609 struct acpi_dmar_hardware_unit *drhd;
610 struct acpi_dmar_device_scope *scope;
611 void *start, *end;
612
613 drhd = (struct acpi_dmar_hardware_unit *)header;
614
615 start = (void *)(drhd + 1);
616 end = ((void *)drhd) + header->length;
617
618 while (start < end) {
619 scope = start;
620 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_IOAPIC) {
621 if (ir_ioapic_num == MAX_IO_APICS) {
622 printk(KERN_WARNING "Exceeded Max IO APICS\n");
623 return -1;
624 }
625
626 printk(KERN_INFO "IOAPIC id %d under DRHD base"
627 " 0x%Lx\n", scope->enumeration_id,
628 drhd->address);
629
630 ir_ioapic[ir_ioapic_num].iommu = iommu;
631 ir_ioapic[ir_ioapic_num].id = scope->enumeration_id;
632 ir_ioapic_num++;
633 }
634 start += scope->length;
635 }
636
637 return 0;
638}
639
640/*
641 * Finds the assocaition between IOAPIC's and its Interrupt-remapping
642 * hardware unit.
643 */
644int __init parse_ioapics_under_ir(void)
645{
646 struct dmar_drhd_unit *drhd;
647 int ir_supported = 0;
648
649 for_each_drhd_unit(drhd) {
650 struct intel_iommu *iommu = drhd->iommu;
651
652 if (ecap_ir_support(iommu->ecap)) {
653 if (ir_parse_ioapic_scope(drhd->hdr, iommu))
654 return -1;
655
656 ir_supported = 1;
657 }
658 }
659
660 if (ir_supported && ir_ioapic_num != nr_ioapics) {
661 printk(KERN_WARNING
662 "Not all IO-APIC's listed under remapping hardware\n");
663 return -1;
664 }
665
666 return ir_supported;
667}
Fenghua Yub24696b2009-03-27 14:22:44 -0700668
669void disable_intr_remapping(void)
670{
671 struct dmar_drhd_unit *drhd;
672 struct intel_iommu *iommu = NULL;
673
674 /*
675 * Disable Interrupt-remapping for all the DRHD's now.
676 */
677 for_each_iommu(iommu, drhd) {
678 if (!ecap_ir_support(iommu->ecap))
679 continue;
680
681 iommu_disable_intr_remapping(iommu);
682 }
683}
684
685int reenable_intr_remapping(int eim)
686{
687 struct dmar_drhd_unit *drhd;
688 int setup = 0;
689 struct intel_iommu *iommu = NULL;
690
691 for_each_iommu(iommu, drhd)
692 if (iommu->qi)
693 dmar_reenable_qi(iommu);
694
695 /*
696 * Setup Interrupt-remapping for all the DRHD's now.
697 */
698 for_each_iommu(iommu, drhd) {
699 if (!ecap_ir_support(iommu->ecap))
700 continue;
701
702 /* Set up interrupt remapping for iommu.*/
703 iommu_set_intr_remapping(iommu, eim);
704 setup = 1;
705 }
706
707 if (!setup)
708 goto error;
709
710 return 0;
711
712error:
713 /*
714 * handle error condition gracefully here!
715 */
716 return -1;
717}
718