intel-iommu: Tidy up iommu->gcmd handling
[deliverable/linux.git] / drivers / pci / intr_remapping.c
CommitLineData
5aeecaf4 1#include <linux/interrupt.h>
ad3ad3f6 2#include <linux/dmar.h>
2ae21010
SS
3#include <linux/spinlock.h>
4#include <linux/jiffies.h>
5#include <linux/pci.h>
b6fcb33a 6#include <linux/irq.h>
ad3ad3f6 7#include <asm/io_apic.h>
17483a1f 8#include <asm/smp.h>
6d652ea1 9#include <asm/cpu.h>
38717946 10#include <linux/intel-iommu.h>
ad3ad3f6 11#include "intr_remapping.h"
46f06b72 12#include <acpi/acpi.h>
ad3ad3f6
SS
13
14static struct ioapic_scope ir_ioapic[MAX_IO_APICS];
15static int ir_ioapic_num;
2ae21010
SS
16int intr_remapping_enabled;
17
5aeecaf4 18struct irq_2_iommu {
b6fcb33a
SS
19 struct intel_iommu *iommu;
20 u16 irte_index;
21 u16 sub_handle;
22 u8 irte_mask;
5aeecaf4
YL
23};
24
d7e51e66 25#ifdef CONFIG_GENERIC_HARDIRQS
0b8f1efa
YL
26static struct irq_2_iommu *get_one_free_irq_2_iommu(int cpu)
27{
28 struct irq_2_iommu *iommu;
29 int node;
30
31 node = cpu_to_node(cpu);
32
33 iommu = kzalloc_node(sizeof(*iommu), GFP_ATOMIC, node);
34 printk(KERN_DEBUG "alloc irq_2_iommu on cpu %d node %d\n", cpu, node);
35
36 return iommu;
37}
e420dfb4
YL
38
39static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
40{
0b8f1efa
YL
41 struct irq_desc *desc;
42
43 desc = irq_to_desc(irq);
44
45 if (WARN_ON_ONCE(!desc))
46 return NULL;
47
48 return desc->irq_2_iommu;
49}
50
51static struct irq_2_iommu *irq_2_iommu_alloc_cpu(unsigned int irq, int cpu)
52{
53 struct irq_desc *desc;
54 struct irq_2_iommu *irq_iommu;
55
56 /*
57 * alloc irq desc if not allocated already.
58 */
59 desc = irq_to_desc_alloc_cpu(irq, cpu);
60 if (!desc) {
61 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
62 return NULL;
63 }
64
65 irq_iommu = desc->irq_2_iommu;
66
67 if (!irq_iommu)
68 desc->irq_2_iommu = get_one_free_irq_2_iommu(cpu);
69
70 return desc->irq_2_iommu;
71}
72
73static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
74{
75 return irq_2_iommu_alloc_cpu(irq, boot_cpu_id);
e420dfb4 76}
d6c88a50 77
0b8f1efa
YL
78#else /* !CONFIG_SPARSE_IRQ */
79
80static struct irq_2_iommu irq_2_iommuX[NR_IRQS];
81
82static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
83{
84 if (irq < nr_irqs)
85 return &irq_2_iommuX[irq];
86
87 return NULL;
88}
e420dfb4
YL
89static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
90{
91 return irq_2_iommu(irq);
92}
0b8f1efa 93#endif
b6fcb33a
SS
94
95static DEFINE_SPINLOCK(irq_2_ir_lock);
96
e420dfb4 97static struct irq_2_iommu *valid_irq_2_iommu(unsigned int irq)
b6fcb33a 98{
e420dfb4
YL
99 struct irq_2_iommu *irq_iommu;
100
101 irq_iommu = irq_2_iommu(irq);
b6fcb33a 102
e420dfb4
YL
103 if (!irq_iommu)
104 return NULL;
b6fcb33a 105
e420dfb4
YL
106 if (!irq_iommu->iommu)
107 return NULL;
b6fcb33a 108
e420dfb4
YL
109 return irq_iommu;
110}
b6fcb33a 111
e420dfb4
YL
112int irq_remapped(int irq)
113{
114 return valid_irq_2_iommu(irq) != NULL;
b6fcb33a
SS
115}
116
117int get_irte(int irq, struct irte *entry)
118{
119 int index;
e420dfb4 120 struct irq_2_iommu *irq_iommu;
4c5502b1 121 unsigned long flags;
b6fcb33a 122
e420dfb4 123 if (!entry)
b6fcb33a
SS
124 return -1;
125
4c5502b1 126 spin_lock_irqsave(&irq_2_ir_lock, flags);
e420dfb4
YL
127 irq_iommu = valid_irq_2_iommu(irq);
128 if (!irq_iommu) {
4c5502b1 129 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
130 return -1;
131 }
132
e420dfb4
YL
133 index = irq_iommu->irte_index + irq_iommu->sub_handle;
134 *entry = *(irq_iommu->iommu->ir_table->base + index);
b6fcb33a 135
4c5502b1 136 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
137 return 0;
138}
139
140int alloc_irte(struct intel_iommu *iommu, int irq, u16 count)
141{
142 struct ir_table *table = iommu->ir_table;
e420dfb4 143 struct irq_2_iommu *irq_iommu;
b6fcb33a
SS
144 u16 index, start_index;
145 unsigned int mask = 0;
4c5502b1 146 unsigned long flags;
b6fcb33a
SS
147 int i;
148
149 if (!count)
150 return -1;
151
0b8f1efa 152#ifndef CONFIG_SPARSE_IRQ
e420dfb4
YL
153 /* protect irq_2_iommu_alloc later */
154 if (irq >= nr_irqs)
155 return -1;
0b8f1efa 156#endif
e420dfb4 157
b6fcb33a
SS
158 /*
159 * start the IRTE search from index 0.
160 */
161 index = start_index = 0;
162
163 if (count > 1) {
164 count = __roundup_pow_of_two(count);
165 mask = ilog2(count);
166 }
167
168 if (mask > ecap_max_handle_mask(iommu->ecap)) {
169 printk(KERN_ERR
170 "Requested mask %x exceeds the max invalidation handle"
171 " mask value %Lx\n", mask,
172 ecap_max_handle_mask(iommu->ecap));
173 return -1;
174 }
175
4c5502b1 176 spin_lock_irqsave(&irq_2_ir_lock, flags);
b6fcb33a
SS
177 do {
178 for (i = index; i < index + count; i++)
179 if (table->base[i].present)
180 break;
181 /* empty index found */
182 if (i == index + count)
183 break;
184
185 index = (index + count) % INTR_REMAP_TABLE_ENTRIES;
186
187 if (index == start_index) {
4c5502b1 188 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
189 printk(KERN_ERR "can't allocate an IRTE\n");
190 return -1;
191 }
192 } while (1);
193
194 for (i = index; i < index + count; i++)
195 table->base[i].present = 1;
196
e420dfb4 197 irq_iommu = irq_2_iommu_alloc(irq);
0b8f1efa 198 if (!irq_iommu) {
4c5502b1 199 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
0b8f1efa
YL
200 printk(KERN_ERR "can't allocate irq_2_iommu\n");
201 return -1;
202 }
203
e420dfb4
YL
204 irq_iommu->iommu = iommu;
205 irq_iommu->irte_index = index;
206 irq_iommu->sub_handle = 0;
207 irq_iommu->irte_mask = mask;
b6fcb33a 208
4c5502b1 209 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
210
211 return index;
212}
213
704126ad 214static int qi_flush_iec(struct intel_iommu *iommu, int index, int mask)
b6fcb33a
SS
215{
216 struct qi_desc desc;
217
218 desc.low = QI_IEC_IIDEX(index) | QI_IEC_TYPE | QI_IEC_IM(mask)
219 | QI_IEC_SELECTIVE;
220 desc.high = 0;
221
704126ad 222 return qi_submit_sync(&desc, iommu);
b6fcb33a
SS
223}
224
225int map_irq_to_irte_handle(int irq, u16 *sub_handle)
226{
227 int index;
e420dfb4 228 struct irq_2_iommu *irq_iommu;
4c5502b1 229 unsigned long flags;
b6fcb33a 230
4c5502b1 231 spin_lock_irqsave(&irq_2_ir_lock, flags);
e420dfb4
YL
232 irq_iommu = valid_irq_2_iommu(irq);
233 if (!irq_iommu) {
4c5502b1 234 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
235 return -1;
236 }
237
e420dfb4
YL
238 *sub_handle = irq_iommu->sub_handle;
239 index = irq_iommu->irte_index;
4c5502b1 240 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
241 return index;
242}
243
244int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index, u16 subhandle)
245{
e420dfb4 246 struct irq_2_iommu *irq_iommu;
4c5502b1 247 unsigned long flags;
e420dfb4 248
4c5502b1 249 spin_lock_irqsave(&irq_2_ir_lock, flags);
b6fcb33a 250
7ddfb650 251 irq_iommu = irq_2_iommu_alloc(irq);
b6fcb33a 252
0b8f1efa 253 if (!irq_iommu) {
4c5502b1 254 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
0b8f1efa
YL
255 printk(KERN_ERR "can't allocate irq_2_iommu\n");
256 return -1;
257 }
258
e420dfb4
YL
259 irq_iommu->iommu = iommu;
260 irq_iommu->irte_index = index;
261 irq_iommu->sub_handle = subhandle;
262 irq_iommu->irte_mask = 0;
b6fcb33a 263
4c5502b1 264 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
265
266 return 0;
267}
268
269int clear_irte_irq(int irq, struct intel_iommu *iommu, u16 index)
270{
e420dfb4 271 struct irq_2_iommu *irq_iommu;
4c5502b1 272 unsigned long flags;
e420dfb4 273
4c5502b1 274 spin_lock_irqsave(&irq_2_ir_lock, flags);
e420dfb4
YL
275 irq_iommu = valid_irq_2_iommu(irq);
276 if (!irq_iommu) {
4c5502b1 277 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
278 return -1;
279 }
280
e420dfb4
YL
281 irq_iommu->iommu = NULL;
282 irq_iommu->irte_index = 0;
283 irq_iommu->sub_handle = 0;
284 irq_2_iommu(irq)->irte_mask = 0;
b6fcb33a 285
4c5502b1 286 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
287
288 return 0;
289}
290
291int modify_irte(int irq, struct irte *irte_modified)
292{
704126ad 293 int rc;
b6fcb33a
SS
294 int index;
295 struct irte *irte;
296 struct intel_iommu *iommu;
e420dfb4 297 struct irq_2_iommu *irq_iommu;
4c5502b1 298 unsigned long flags;
b6fcb33a 299
4c5502b1 300 spin_lock_irqsave(&irq_2_ir_lock, flags);
e420dfb4
YL
301 irq_iommu = valid_irq_2_iommu(irq);
302 if (!irq_iommu) {
4c5502b1 303 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
304 return -1;
305 }
306
e420dfb4 307 iommu = irq_iommu->iommu;
b6fcb33a 308
e420dfb4 309 index = irq_iommu->irte_index + irq_iommu->sub_handle;
b6fcb33a
SS
310 irte = &iommu->ir_table->base[index];
311
9d783ba0 312 set_64bit((unsigned long *)irte, irte_modified->low);
b6fcb33a
SS
313 __iommu_flush_cache(iommu, irte, sizeof(*irte));
314
704126ad 315 rc = qi_flush_iec(iommu, index, 0);
4c5502b1 316 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
704126ad
YZ
317
318 return rc;
b6fcb33a
SS
319}
320
321int flush_irte(int irq)
322{
704126ad 323 int rc;
b6fcb33a
SS
324 int index;
325 struct intel_iommu *iommu;
e420dfb4 326 struct irq_2_iommu *irq_iommu;
4c5502b1 327 unsigned long flags;
b6fcb33a 328
4c5502b1 329 spin_lock_irqsave(&irq_2_ir_lock, flags);
e420dfb4
YL
330 irq_iommu = valid_irq_2_iommu(irq);
331 if (!irq_iommu) {
4c5502b1 332 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
333 return -1;
334 }
335
e420dfb4 336 iommu = irq_iommu->iommu;
b6fcb33a 337
e420dfb4 338 index = irq_iommu->irte_index + irq_iommu->sub_handle;
b6fcb33a 339
704126ad 340 rc = qi_flush_iec(iommu, index, irq_iommu->irte_mask);
4c5502b1 341 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a 342
704126ad 343 return rc;
b6fcb33a
SS
344}
345
89027d35
SS
346struct intel_iommu *map_ioapic_to_ir(int apic)
347{
348 int i;
349
350 for (i = 0; i < MAX_IO_APICS; i++)
351 if (ir_ioapic[i].id == apic)
352 return ir_ioapic[i].iommu;
353 return NULL;
354}
355
75c46fa6
SS
356struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
357{
358 struct dmar_drhd_unit *drhd;
359
360 drhd = dmar_find_matched_drhd_unit(dev);
361 if (!drhd)
362 return NULL;
363
364 return drhd->iommu;
365}
366
b6fcb33a
SS
367int free_irte(int irq)
368{
704126ad 369 int rc = 0;
b6fcb33a
SS
370 int index, i;
371 struct irte *irte;
372 struct intel_iommu *iommu;
e420dfb4 373 struct irq_2_iommu *irq_iommu;
4c5502b1 374 unsigned long flags;
b6fcb33a 375
4c5502b1 376 spin_lock_irqsave(&irq_2_ir_lock, flags);
e420dfb4
YL
377 irq_iommu = valid_irq_2_iommu(irq);
378 if (!irq_iommu) {
4c5502b1 379 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
380 return -1;
381 }
382
e420dfb4 383 iommu = irq_iommu->iommu;
b6fcb33a 384
e420dfb4 385 index = irq_iommu->irte_index + irq_iommu->sub_handle;
b6fcb33a
SS
386 irte = &iommu->ir_table->base[index];
387
e420dfb4
YL
388 if (!irq_iommu->sub_handle) {
389 for (i = 0; i < (1 << irq_iommu->irte_mask); i++)
2e93456f 390 set_64bit((unsigned long *)(irte + i), 0);
704126ad 391 rc = qi_flush_iec(iommu, index, irq_iommu->irte_mask);
b6fcb33a
SS
392 }
393
e420dfb4
YL
394 irq_iommu->iommu = NULL;
395 irq_iommu->irte_index = 0;
396 irq_iommu->sub_handle = 0;
397 irq_iommu->irte_mask = 0;
b6fcb33a 398
4c5502b1 399 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a 400
704126ad 401 return rc;
b6fcb33a
SS
402}
403
2ae21010
SS
404static void iommu_set_intr_remapping(struct intel_iommu *iommu, int mode)
405{
406 u64 addr;
c416daa9 407 u32 sts;
2ae21010
SS
408 unsigned long flags;
409
410 addr = virt_to_phys((void *)iommu->ir_table->base);
411
412 spin_lock_irqsave(&iommu->register_lock, flags);
413
414 dmar_writeq(iommu->reg + DMAR_IRTA_REG,
415 (addr) | IR_X2APIC_MODE(mode) | INTR_REMAP_TABLE_REG_SIZE);
416
417 /* Set interrupt-remapping table pointer */
161fde08 418 iommu->gcmd |= DMA_GCMD_SIRTP;
c416daa9 419 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
2ae21010
SS
420
421 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
422 readl, (sts & DMA_GSTS_IRTPS), sts);
423 spin_unlock_irqrestore(&iommu->register_lock, flags);
424
161fde08
HW
425 if (mode == 0) {
426 spin_lock_irqsave(&iommu->register_lock, flags);
427
428 /* enable comaptiblity format interrupt pass through */
161fde08 429 iommu->gcmd |= DMA_GCMD_CFI;
c416daa9 430 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
161fde08
HW
431
432 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
433 readl, (sts & DMA_GSTS_CFIS), sts);
434
435 spin_unlock_irqrestore(&iommu->register_lock, flags);
436 }
437
2ae21010
SS
438 /*
439 * global invalidation of interrupt entry cache before enabling
440 * interrupt-remapping.
441 */
442 qi_global_iec(iommu);
443
444 spin_lock_irqsave(&iommu->register_lock, flags);
445
446 /* Enable interrupt-remapping */
2ae21010 447 iommu->gcmd |= DMA_GCMD_IRE;
c416daa9 448 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
2ae21010
SS
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),
fa4b57cc 463 GFP_ATOMIC);
2ae21010
SS
464
465 if (!iommu->ir_table)
466 return -ENOMEM;
467
fa4b57cc 468 pages = alloc_pages(GFP_ATOMIC | __GFP_ZERO, INTR_REMAP_PAGE_ORDER);
2ae21010
SS
469
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
eba67e5d
SS
483/*
484 * Disable Interrupt Remapping.
485 */
b24696bc 486static void iommu_disable_intr_remapping(struct intel_iommu *iommu)
eba67e5d
SS
487{
488 unsigned long flags;
489 u32 sts;
490
491 if (!ecap_ir_support(iommu->ecap))
492 return;
493
b24696bc
FY
494 /*
495 * global invalidation of interrupt entry cache before disabling
496 * interrupt-remapping.
497 */
498 qi_global_iec(iommu);
499
eba67e5d
SS
500 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
2ae21010
SS
516int __init enable_intr_remapping(int eim)
517{
518 struct dmar_drhd_unit *drhd;
519 int setup = 0;
520
1531a6a6
SS
521 for_each_drhd_unit(drhd) {
522 struct intel_iommu *iommu = drhd->iommu;
523
34aaaa94
HW
524 /*
525 * If the queued invalidation is already initialized,
526 * shouldn't disable it.
527 */
528 if (iommu->qi)
529 continue;
530
1531a6a6
SS
531 /*
532 * 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 */
b24696bc 540 iommu_disable_intr_remapping(iommu);
1531a6a6
SS
541
542 dmar_disable_qi(iommu);
543 }
544
2ae21010
SS
545 /*
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}
ad3ad3f6
SS
605
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}
b24696bc
FY
668
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
This page took 0.100938 seconds and 5 git commands to generate.