]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/iommu/intel_irq_remapping.c
x86/irq: Avoid memory allocation in __assign_irq_vector()
[mirror_ubuntu-eoan-kernel.git] / drivers / iommu / intel_irq_remapping.c
CommitLineData
5aeecaf4 1#include <linux/interrupt.h>
ad3ad3f6 2#include <linux/dmar.h>
2ae21010 3#include <linux/spinlock.h>
5a0e3ad6 4#include <linux/slab.h>
2ae21010 5#include <linux/jiffies.h>
20f3097b 6#include <linux/hpet.h>
2ae21010 7#include <linux/pci.h>
b6fcb33a 8#include <linux/irq.h>
8b48463f
LZ
9#include <linux/intel-iommu.h>
10#include <linux/acpi.h>
b106ee63 11#include <linux/irqdomain.h>
ad3ad3f6 12#include <asm/io_apic.h>
17483a1f 13#include <asm/smp.h>
6d652ea1 14#include <asm/cpu.h>
8a8f422d 15#include <asm/irq_remapping.h>
f007e99c 16#include <asm/pci-direct.h>
5e2b930b 17#include <asm/msidef.h>
ad3ad3f6 18
8a8f422d 19#include "irq_remapping.h"
736baef4 20
eef93fdb
JR
21struct ioapic_scope {
22 struct intel_iommu *iommu;
23 unsigned int id;
24 unsigned int bus; /* PCI bus number */
25 unsigned int devfn; /* PCI devfn number */
26};
27
28struct hpet_scope {
29 struct intel_iommu *iommu;
30 u8 id;
31 unsigned int bus;
32 unsigned int devfn;
33};
34
099c5c03
JL
35struct irq_2_iommu {
36 struct intel_iommu *iommu;
37 u16 irte_index;
38 u16 sub_handle;
39 u8 irte_mask;
40};
41
b106ee63
JL
42struct intel_ir_data {
43 struct irq_2_iommu irq_2_iommu;
44 struct irte irte_entry;
45 union {
46 struct msi_msg msi_entry;
47 };
48};
49
eef93fdb 50#define IR_X2APIC_MODE(mode) (mode ? (1 << 11) : 0)
13d09b66 51#define IRTE_DEST(dest) ((eim_mode) ? dest : dest << 8)
eef93fdb 52
13d09b66 53static int __read_mostly eim_mode;
ad3ad3f6 54static struct ioapic_scope ir_ioapic[MAX_IO_APICS];
20f3097b 55static struct hpet_scope ir_hpet[MAX_HPET_TBS];
d1423d56 56
3a5670e8
JL
57/*
58 * Lock ordering:
59 * ->dmar_global_lock
60 * ->irq_2_ir_lock
61 * ->qi->q_lock
62 * ->iommu->register_lock
63 * Note:
64 * intel_irq_remap_ops.{supported,prepare,enable,disable,reenable} are called
65 * in single-threaded environment with interrupt disabled, so no need to tabke
66 * the dmar_global_lock.
67 */
96f8e98b 68static DEFINE_RAW_SPINLOCK(irq_2_ir_lock);
b106ee63 69static struct irq_domain_ops intel_ir_domain_ops;
d585d060 70
694835dc
JL
71static int __init parse_ioapics_under_ir(void);
72
8dedf4cf
JL
73static int alloc_irte(struct intel_iommu *iommu, int irq,
74 struct irq_2_iommu *irq_iommu, u16 count)
b6fcb33a
SS
75{
76 struct ir_table *table = iommu->ir_table;
b6fcb33a 77 unsigned int mask = 0;
4c5502b1 78 unsigned long flags;
9f4c7448 79 int index;
b6fcb33a 80
d585d060 81 if (!count || !irq_iommu)
e420dfb4 82 return -1;
e420dfb4 83
b6fcb33a
SS
84 if (count > 1) {
85 count = __roundup_pow_of_two(count);
86 mask = ilog2(count);
87 }
88
89 if (mask > ecap_max_handle_mask(iommu->ecap)) {
90 printk(KERN_ERR
91 "Requested mask %x exceeds the max invalidation handle"
92 " mask value %Lx\n", mask,
93 ecap_max_handle_mask(iommu->ecap));
94 return -1;
95 }
96
96f8e98b 97 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
360eb3c5
JL
98 index = bitmap_find_free_region(table->bitmap,
99 INTR_REMAP_TABLE_ENTRIES, mask);
100 if (index < 0) {
101 pr_warn("IR%d: can't allocate an IRTE\n", iommu->seq_id);
102 } else {
360eb3c5
JL
103 irq_iommu->iommu = iommu;
104 irq_iommu->irte_index = index;
105 irq_iommu->sub_handle = 0;
106 irq_iommu->irte_mask = mask;
107 }
96f8e98b 108 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
b6fcb33a
SS
109
110 return index;
111}
112
704126ad 113static int qi_flush_iec(struct intel_iommu *iommu, int index, int mask)
b6fcb33a
SS
114{
115 struct qi_desc desc;
116
117 desc.low = QI_IEC_IIDEX(index) | QI_IEC_TYPE | QI_IEC_IM(mask)
118 | QI_IEC_SELECTIVE;
119 desc.high = 0;
120
704126ad 121 return qi_submit_sync(&desc, iommu);
b6fcb33a
SS
122}
123
8dedf4cf
JL
124static int modify_irte(struct irq_2_iommu *irq_iommu,
125 struct irte *irte_modified)
b6fcb33a 126{
b6fcb33a 127 struct intel_iommu *iommu;
4c5502b1 128 unsigned long flags;
d585d060
TG
129 struct irte *irte;
130 int rc, index;
b6fcb33a 131
d585d060 132 if (!irq_iommu)
b6fcb33a 133 return -1;
d585d060 134
96f8e98b 135 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
b6fcb33a 136
e420dfb4 137 iommu = irq_iommu->iommu;
b6fcb33a 138
e420dfb4 139 index = irq_iommu->irte_index + irq_iommu->sub_handle;
b6fcb33a
SS
140 irte = &iommu->ir_table->base[index];
141
c513b67e
LT
142 set_64bit(&irte->low, irte_modified->low);
143 set_64bit(&irte->high, irte_modified->high);
b6fcb33a
SS
144 __iommu_flush_cache(iommu, irte, sizeof(*irte));
145
704126ad 146 rc = qi_flush_iec(iommu, index, 0);
96f8e98b 147 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
704126ad
YZ
148
149 return rc;
b6fcb33a
SS
150}
151
263b5e86 152static struct intel_iommu *map_hpet_to_ir(u8 hpet_id)
20f3097b
SS
153{
154 int i;
155
156 for (i = 0; i < MAX_HPET_TBS; i++)
a7a3dad9 157 if (ir_hpet[i].id == hpet_id && ir_hpet[i].iommu)
20f3097b
SS
158 return ir_hpet[i].iommu;
159 return NULL;
160}
161
263b5e86 162static struct intel_iommu *map_ioapic_to_ir(int apic)
89027d35
SS
163{
164 int i;
165
166 for (i = 0; i < MAX_IO_APICS; i++)
a7a3dad9 167 if (ir_ioapic[i].id == apic && ir_ioapic[i].iommu)
89027d35
SS
168 return ir_ioapic[i].iommu;
169 return NULL;
170}
171
263b5e86 172static struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
75c46fa6
SS
173{
174 struct dmar_drhd_unit *drhd;
175
176 drhd = dmar_find_matched_drhd_unit(dev);
177 if (!drhd)
178 return NULL;
179
180 return drhd->iommu;
181}
182
c4658b4e
WH
183static int clear_entries(struct irq_2_iommu *irq_iommu)
184{
185 struct irte *start, *entry, *end;
186 struct intel_iommu *iommu;
187 int index;
188
189 if (irq_iommu->sub_handle)
190 return 0;
191
192 iommu = irq_iommu->iommu;
8dedf4cf 193 index = irq_iommu->irte_index;
c4658b4e
WH
194
195 start = iommu->ir_table->base + index;
196 end = start + (1 << irq_iommu->irte_mask);
197
198 for (entry = start; entry < end; entry++) {
c513b67e
LT
199 set_64bit(&entry->low, 0);
200 set_64bit(&entry->high, 0);
c4658b4e 201 }
360eb3c5
JL
202 bitmap_release_region(iommu->ir_table->bitmap, index,
203 irq_iommu->irte_mask);
c4658b4e
WH
204
205 return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
206}
207
f007e99c
WH
208/*
209 * source validation type
210 */
211#define SVT_NO_VERIFY 0x0 /* no verification is required */
25985edc 212#define SVT_VERIFY_SID_SQ 0x1 /* verify using SID and SQ fields */
f007e99c
WH
213#define SVT_VERIFY_BUS 0x2 /* verify bus of request-id */
214
215/*
216 * source-id qualifier
217 */
218#define SQ_ALL_16 0x0 /* verify all 16 bits of request-id */
219#define SQ_13_IGNORE_1 0x1 /* verify most significant 13 bits, ignore
220 * the third least significant bit
221 */
222#define SQ_13_IGNORE_2 0x2 /* verify most significant 13 bits, ignore
223 * the second and third least significant bits
224 */
225#define SQ_13_IGNORE_3 0x3 /* verify most significant 13 bits, ignore
226 * the least three significant bits
227 */
228
229/*
230 * set SVT, SQ and SID fields of irte to verify
231 * source ids of interrupt requests
232 */
233static void set_irte_sid(struct irte *irte, unsigned int svt,
234 unsigned int sq, unsigned int sid)
235{
d1423d56
CW
236 if (disable_sourceid_checking)
237 svt = SVT_NO_VERIFY;
f007e99c
WH
238 irte->svt = svt;
239 irte->sq = sq;
240 irte->sid = sid;
241}
242
263b5e86 243static int set_ioapic_sid(struct irte *irte, int apic)
f007e99c
WH
244{
245 int i;
246 u16 sid = 0;
247
248 if (!irte)
249 return -1;
250
3a5670e8 251 down_read(&dmar_global_lock);
f007e99c 252 for (i = 0; i < MAX_IO_APICS; i++) {
a7a3dad9 253 if (ir_ioapic[i].iommu && ir_ioapic[i].id == apic) {
f007e99c
WH
254 sid = (ir_ioapic[i].bus << 8) | ir_ioapic[i].devfn;
255 break;
256 }
257 }
3a5670e8 258 up_read(&dmar_global_lock);
f007e99c
WH
259
260 if (sid == 0) {
261 pr_warning("Failed to set source-id of IOAPIC (%d)\n", apic);
262 return -1;
263 }
264
2fe2c602 265 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16, sid);
f007e99c
WH
266
267 return 0;
268}
269
263b5e86 270static int set_hpet_sid(struct irte *irte, u8 id)
20f3097b
SS
271{
272 int i;
273 u16 sid = 0;
274
275 if (!irte)
276 return -1;
277
3a5670e8 278 down_read(&dmar_global_lock);
20f3097b 279 for (i = 0; i < MAX_HPET_TBS; i++) {
a7a3dad9 280 if (ir_hpet[i].iommu && ir_hpet[i].id == id) {
20f3097b
SS
281 sid = (ir_hpet[i].bus << 8) | ir_hpet[i].devfn;
282 break;
283 }
284 }
3a5670e8 285 up_read(&dmar_global_lock);
20f3097b
SS
286
287 if (sid == 0) {
288 pr_warning("Failed to set source-id of HPET block (%d)\n", id);
289 return -1;
290 }
291
292 /*
293 * Should really use SQ_ALL_16. Some platforms are broken.
294 * While we figure out the right quirks for these broken platforms, use
295 * SQ_13_IGNORE_3 for now.
296 */
297 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_13_IGNORE_3, sid);
298
299 return 0;
300}
301
579305f7
AW
302struct set_msi_sid_data {
303 struct pci_dev *pdev;
304 u16 alias;
305};
306
307static int set_msi_sid_cb(struct pci_dev *pdev, u16 alias, void *opaque)
308{
309 struct set_msi_sid_data *data = opaque;
310
311 data->pdev = pdev;
312 data->alias = alias;
313
314 return 0;
315}
316
263b5e86 317static int set_msi_sid(struct irte *irte, struct pci_dev *dev)
f007e99c 318{
579305f7 319 struct set_msi_sid_data data;
f007e99c
WH
320
321 if (!irte || !dev)
322 return -1;
323
579305f7 324 pci_for_each_dma_alias(dev, set_msi_sid_cb, &data);
f007e99c 325
579305f7
AW
326 /*
327 * DMA alias provides us with a PCI device and alias. The only case
328 * where the it will return an alias on a different bus than the
329 * device is the case of a PCIe-to-PCI bridge, where the alias is for
330 * the subordinate bus. In this case we can only verify the bus.
331 *
332 * If the alias device is on a different bus than our source device
333 * then we have a topology based alias, use it.
334 *
335 * Otherwise, the alias is for a device DMA quirk and we cannot
336 * assume that MSI uses the same requester ID. Therefore use the
337 * original device.
338 */
339 if (PCI_BUS_NUM(data.alias) != data.pdev->bus->number)
340 set_irte_sid(irte, SVT_VERIFY_BUS, SQ_ALL_16,
341 PCI_DEVID(PCI_BUS_NUM(data.alias),
342 dev->bus->number));
343 else if (data.pdev->bus->number != dev->bus->number)
344 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16, data.alias);
345 else
346 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16,
347 PCI_DEVID(dev->bus->number, dev->devfn));
f007e99c
WH
348
349 return 0;
350}
351
95a02e97 352static void iommu_set_irq_remapping(struct intel_iommu *iommu, int mode)
2ae21010
SS
353{
354 u64 addr;
c416daa9 355 u32 sts;
2ae21010
SS
356 unsigned long flags;
357
358 addr = virt_to_phys((void *)iommu->ir_table->base);
359
1f5b3c3f 360 raw_spin_lock_irqsave(&iommu->register_lock, flags);
2ae21010
SS
361
362 dmar_writeq(iommu->reg + DMAR_IRTA_REG,
363 (addr) | IR_X2APIC_MODE(mode) | INTR_REMAP_TABLE_REG_SIZE);
364
365 /* Set interrupt-remapping table pointer */
f63ef690 366 writel(iommu->gcmd | DMA_GCMD_SIRTP, iommu->reg + DMAR_GCMD_REG);
2ae21010
SS
367
368 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
369 readl, (sts & DMA_GSTS_IRTPS), sts);
1f5b3c3f 370 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
2ae21010
SS
371
372 /*
373 * global invalidation of interrupt entry cache before enabling
374 * interrupt-remapping.
375 */
376 qi_global_iec(iommu);
377
1f5b3c3f 378 raw_spin_lock_irqsave(&iommu->register_lock, flags);
2ae21010
SS
379
380 /* Enable interrupt-remapping */
2ae21010 381 iommu->gcmd |= DMA_GCMD_IRE;
af8d102f 382 iommu->gcmd &= ~DMA_GCMD_CFI; /* Block compatibility-format MSIs */
c416daa9 383 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
2ae21010
SS
384
385 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
386 readl, (sts & DMA_GSTS_IRES), sts);
387
af8d102f
AL
388 /*
389 * With CFI clear in the Global Command register, we should be
390 * protected from dangerous (i.e. compatibility) interrupts
391 * regardless of x2apic status. Check just to be sure.
392 */
393 if (sts & DMA_GSTS_CFIS)
394 WARN(1, KERN_WARNING
395 "Compatibility-format IRQs enabled despite intr remapping;\n"
396 "you are vulnerable to IRQ injection.\n");
397
1f5b3c3f 398 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
2ae21010
SS
399}
400
a7a3dad9 401static int intel_setup_irq_remapping(struct intel_iommu *iommu)
2ae21010
SS
402{
403 struct ir_table *ir_table;
404 struct page *pages;
360eb3c5 405 unsigned long *bitmap;
2ae21010 406
a7a3dad9
JL
407 if (iommu->ir_table)
408 return 0;
2ae21010 409
e3a981d6 410 ir_table = kzalloc(sizeof(struct ir_table), GFP_KERNEL);
a7a3dad9 411 if (!ir_table)
2ae21010
SS
412 return -ENOMEM;
413
e3a981d6 414 pages = alloc_pages_node(iommu->node, GFP_KERNEL | __GFP_ZERO,
824cd75b 415 INTR_REMAP_PAGE_ORDER);
2ae21010 416 if (!pages) {
360eb3c5
JL
417 pr_err("IR%d: failed to allocate pages of order %d\n",
418 iommu->seq_id, INTR_REMAP_PAGE_ORDER);
a7a3dad9 419 goto out_free_table;
2ae21010
SS
420 }
421
360eb3c5
JL
422 bitmap = kcalloc(BITS_TO_LONGS(INTR_REMAP_TABLE_ENTRIES),
423 sizeof(long), GFP_ATOMIC);
424 if (bitmap == NULL) {
425 pr_err("IR%d: failed to allocate bitmap\n", iommu->seq_id);
a7a3dad9 426 goto out_free_pages;
360eb3c5
JL
427 }
428
b106ee63
JL
429 iommu->ir_domain = irq_domain_add_hierarchy(arch_get_ir_parent_domain(),
430 0, INTR_REMAP_TABLE_ENTRIES,
431 NULL, &intel_ir_domain_ops,
432 iommu);
433 if (!iommu->ir_domain) {
434 pr_err("IR%d: failed to allocate irqdomain\n", iommu->seq_id);
435 goto out_free_bitmap;
436 }
437 iommu->ir_msi_domain = arch_create_msi_irq_domain(iommu->ir_domain);
438
2ae21010 439 ir_table->base = page_address(pages);
360eb3c5 440 ir_table->bitmap = bitmap;
a7a3dad9 441 iommu->ir_table = ir_table;
2ae21010 442 return 0;
a7a3dad9 443
b106ee63
JL
444out_free_bitmap:
445 kfree(bitmap);
a7a3dad9
JL
446out_free_pages:
447 __free_pages(pages, INTR_REMAP_PAGE_ORDER);
448out_free_table:
449 kfree(ir_table);
450 return -ENOMEM;
451}
452
453static void intel_teardown_irq_remapping(struct intel_iommu *iommu)
454{
455 if (iommu && iommu->ir_table) {
b106ee63
JL
456 if (iommu->ir_msi_domain) {
457 irq_domain_remove(iommu->ir_msi_domain);
458 iommu->ir_msi_domain = NULL;
459 }
460 if (iommu->ir_domain) {
461 irq_domain_remove(iommu->ir_domain);
462 iommu->ir_domain = NULL;
463 }
a7a3dad9
JL
464 free_pages((unsigned long)iommu->ir_table->base,
465 INTR_REMAP_PAGE_ORDER);
466 kfree(iommu->ir_table->bitmap);
467 kfree(iommu->ir_table);
468 iommu->ir_table = NULL;
469 }
2ae21010
SS
470}
471
eba67e5d
SS
472/*
473 * Disable Interrupt Remapping.
474 */
95a02e97 475static void iommu_disable_irq_remapping(struct intel_iommu *iommu)
eba67e5d
SS
476{
477 unsigned long flags;
478 u32 sts;
479
480 if (!ecap_ir_support(iommu->ecap))
481 return;
482
b24696bc
FY
483 /*
484 * global invalidation of interrupt entry cache before disabling
485 * interrupt-remapping.
486 */
487 qi_global_iec(iommu);
488
1f5b3c3f 489 raw_spin_lock_irqsave(&iommu->register_lock, flags);
eba67e5d
SS
490
491 sts = dmar_readq(iommu->reg + DMAR_GSTS_REG);
492 if (!(sts & DMA_GSTS_IRES))
493 goto end;
494
495 iommu->gcmd &= ~DMA_GCMD_IRE;
496 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
497
498 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
499 readl, !(sts & DMA_GSTS_IRES), sts);
500
501end:
1f5b3c3f 502 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
eba67e5d
SS
503}
504
41750d31
SS
505static int __init dmar_x2apic_optout(void)
506{
507 struct acpi_table_dmar *dmar;
508 dmar = (struct acpi_table_dmar *)dmar_tbl;
509 if (!dmar || no_x2apic_optout)
510 return 0;
511 return dmar->flags & DMAR_X2APIC_OPT_OUT;
512}
513
11190302
TG
514static void __init intel_cleanup_irq_remapping(void)
515{
516 struct dmar_drhd_unit *drhd;
517 struct intel_iommu *iommu;
518
519 for_each_iommu(iommu, drhd) {
520 if (ecap_ir_support(iommu->ecap)) {
521 iommu_disable_irq_remapping(iommu);
522 intel_teardown_irq_remapping(iommu);
523 }
524 }
525
526 if (x2apic_supported())
527 pr_warn("Failed to enable irq remapping. You are vulnerable to irq-injection attacks.\n");
528}
529
530static int __init intel_prepare_irq_remapping(void)
2ae21010
SS
531{
532 struct dmar_drhd_unit *drhd;
7c919779 533 struct intel_iommu *iommu;
2ae21010 534
2966d956
JL
535 if (irq_remap_broken) {
536 printk(KERN_WARNING
537 "This system BIOS has enabled interrupt remapping\n"
538 "on a chipset that contains an erratum making that\n"
539 "feature unstable. To maintain system stability\n"
540 "interrupt remapping is being disabled. Please\n"
541 "contact your BIOS vendor for an update\n");
542 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
2966d956
JL
543 return -ENODEV;
544 }
545
11190302 546 if (dmar_table_init() < 0)
2966d956
JL
547 return -ENODEV;
548
549 if (!dmar_ir_support())
550 return -ENODEV;
af8d102f 551
e936d077 552 if (parse_ioapics_under_ir() != 1) {
11190302 553 printk(KERN_INFO "Not enabling interrupt remapping\n");
af8d102f 554 goto error;
e936d077
YS
555 }
556
69cf1d8a 557 /* First make sure all IOMMUs support IRQ remapping */
2966d956 558 for_each_iommu(iommu, drhd)
69cf1d8a
JR
559 if (!ecap_ir_support(iommu->ecap))
560 goto error;
561
562 /* Do the allocations early */
563 for_each_iommu(iommu, drhd)
564 if (intel_setup_irq_remapping(iommu))
11190302 565 goto error;
69cf1d8a 566
11190302 567 return 0;
2966d956 568
11190302
TG
569error:
570 intel_cleanup_irq_remapping();
2966d956 571 return -ENODEV;
11190302
TG
572}
573
574static int __init intel_enable_irq_remapping(void)
575{
576 struct dmar_drhd_unit *drhd;
577 struct intel_iommu *iommu;
2f119c78 578 bool setup = false;
11190302
TG
579 int eim = 0;
580
581 if (x2apic_supported()) {
41750d31 582 eim = !dmar_x2apic_optout();
af8d102f
AL
583 if (!eim)
584 printk(KERN_WARNING
585 "Your BIOS is broken and requested that x2apic be disabled.\n"
586 "This will slightly decrease performance.\n"
587 "Use 'intremap=no_x2apic_optout' to override BIOS request.\n");
41750d31
SS
588 }
589
7c919779 590 for_each_iommu(iommu, drhd) {
34aaaa94
HW
591 /*
592 * If the queued invalidation is already initialized,
593 * shouldn't disable it.
594 */
595 if (iommu->qi)
596 continue;
597
1531a6a6
SS
598 /*
599 * Clear previous faults.
600 */
601 dmar_fault(-1, iommu);
602
603 /*
604 * Disable intr remapping and queued invalidation, if already
605 * enabled prior to OS handover.
606 */
95a02e97 607 iommu_disable_irq_remapping(iommu);
1531a6a6
SS
608
609 dmar_disable_qi(iommu);
610 }
611
2ae21010
SS
612 /*
613 * check for the Interrupt-remapping support
614 */
69cf1d8a 615 for_each_iommu(iommu, drhd)
2ae21010
SS
616 if (eim && !ecap_eim_support(iommu->ecap)) {
617 printk(KERN_INFO "DRHD %Lx: EIM not supported by DRHD, "
618 " ecap %Lx\n", drhd->reg_base_addr, iommu->ecap);
13d09b66 619 eim = 0;
2ae21010 620 }
13d09b66
JL
621 eim_mode = eim;
622 if (eim)
623 pr_info("Queued invalidation will be enabled to support x2apic and Intr-remapping.\n");
2ae21010
SS
624
625 /*
626 * Enable queued invalidation for all the DRHD's.
627 */
7c919779
JL
628 for_each_iommu(iommu, drhd) {
629 int ret = dmar_enable_qi(iommu);
2ae21010
SS
630
631 if (ret) {
632 printk(KERN_ERR "DRHD %Lx: failed to enable queued, "
633 " invalidation, ecap %Lx, ret %d\n",
634 drhd->reg_base_addr, iommu->ecap, ret);
af8d102f 635 goto error;
2ae21010
SS
636 }
637 }
638
639 /*
640 * Setup Interrupt-remapping for all the DRHD's now.
641 */
7c919779 642 for_each_iommu(iommu, drhd) {
a7a3dad9 643 iommu_set_irq_remapping(iommu, eim);
2f119c78 644 setup = true;
2ae21010
SS
645 }
646
647 if (!setup)
648 goto error;
649
95a02e97 650 irq_remapping_enabled = 1;
afcc8a40 651
41750d31 652 pr_info("Enabled IRQ remapping in %s mode\n", eim ? "x2apic" : "xapic");
2ae21010 653
41750d31 654 return eim ? IRQ_REMAP_X2APIC_MODE : IRQ_REMAP_XAPIC_MODE;
2ae21010
SS
655
656error:
11190302 657 intel_cleanup_irq_remapping();
2ae21010
SS
658 return -1;
659}
ad3ad3f6 660
a7a3dad9
JL
661static int ir_parse_one_hpet_scope(struct acpi_dmar_device_scope *scope,
662 struct intel_iommu *iommu,
663 struct acpi_dmar_hardware_unit *drhd)
20f3097b
SS
664{
665 struct acpi_dmar_pci_path *path;
666 u8 bus;
a7a3dad9 667 int count, free = -1;
20f3097b
SS
668
669 bus = scope->bus;
670 path = (struct acpi_dmar_pci_path *)(scope + 1);
671 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
672 / sizeof(struct acpi_dmar_pci_path);
673
674 while (--count > 0) {
675 /*
676 * Access PCI directly due to the PCI
677 * subsystem isn't initialized yet.
678 */
fa5f508f 679 bus = read_pci_config_byte(bus, path->device, path->function,
20f3097b
SS
680 PCI_SECONDARY_BUS);
681 path++;
682 }
a7a3dad9
JL
683
684 for (count = 0; count < MAX_HPET_TBS; count++) {
685 if (ir_hpet[count].iommu == iommu &&
686 ir_hpet[count].id == scope->enumeration_id)
687 return 0;
688 else if (ir_hpet[count].iommu == NULL && free == -1)
689 free = count;
690 }
691 if (free == -1) {
692 pr_warn("Exceeded Max HPET blocks\n");
693 return -ENOSPC;
694 }
695
696 ir_hpet[free].iommu = iommu;
697 ir_hpet[free].id = scope->enumeration_id;
698 ir_hpet[free].bus = bus;
699 ir_hpet[free].devfn = PCI_DEVFN(path->device, path->function);
700 pr_info("HPET id %d under DRHD base 0x%Lx\n",
701 scope->enumeration_id, drhd->address);
702
703 return 0;
20f3097b
SS
704}
705
a7a3dad9
JL
706static int ir_parse_one_ioapic_scope(struct acpi_dmar_device_scope *scope,
707 struct intel_iommu *iommu,
708 struct acpi_dmar_hardware_unit *drhd)
f007e99c
WH
709{
710 struct acpi_dmar_pci_path *path;
711 u8 bus;
a7a3dad9 712 int count, free = -1;
f007e99c
WH
713
714 bus = scope->bus;
715 path = (struct acpi_dmar_pci_path *)(scope + 1);
716 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
717 / sizeof(struct acpi_dmar_pci_path);
718
719 while (--count > 0) {
720 /*
721 * Access PCI directly due to the PCI
722 * subsystem isn't initialized yet.
723 */
fa5f508f 724 bus = read_pci_config_byte(bus, path->device, path->function,
f007e99c
WH
725 PCI_SECONDARY_BUS);
726 path++;
727 }
728
a7a3dad9
JL
729 for (count = 0; count < MAX_IO_APICS; count++) {
730 if (ir_ioapic[count].iommu == iommu &&
731 ir_ioapic[count].id == scope->enumeration_id)
732 return 0;
733 else if (ir_ioapic[count].iommu == NULL && free == -1)
734 free = count;
735 }
736 if (free == -1) {
737 pr_warn("Exceeded Max IO APICS\n");
738 return -ENOSPC;
739 }
740
741 ir_ioapic[free].bus = bus;
742 ir_ioapic[free].devfn = PCI_DEVFN(path->device, path->function);
743 ir_ioapic[free].iommu = iommu;
744 ir_ioapic[free].id = scope->enumeration_id;
745 pr_info("IOAPIC id %d under DRHD base 0x%Lx IOMMU %d\n",
746 scope->enumeration_id, drhd->address, iommu->seq_id);
747
748 return 0;
f007e99c
WH
749}
750
20f3097b
SS
751static int ir_parse_ioapic_hpet_scope(struct acpi_dmar_header *header,
752 struct intel_iommu *iommu)
ad3ad3f6 753{
a7a3dad9 754 int ret = 0;
ad3ad3f6
SS
755 struct acpi_dmar_hardware_unit *drhd;
756 struct acpi_dmar_device_scope *scope;
757 void *start, *end;
758
759 drhd = (struct acpi_dmar_hardware_unit *)header;
ad3ad3f6
SS
760 start = (void *)(drhd + 1);
761 end = ((void *)drhd) + header->length;
762
a7a3dad9 763 while (start < end && ret == 0) {
ad3ad3f6 764 scope = start;
a7a3dad9
JL
765 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_IOAPIC)
766 ret = ir_parse_one_ioapic_scope(scope, iommu, drhd);
767 else if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_HPET)
768 ret = ir_parse_one_hpet_scope(scope, iommu, drhd);
769 start += scope->length;
770 }
ad3ad3f6 771
a7a3dad9
JL
772 return ret;
773}
20f3097b 774
a7a3dad9
JL
775static void ir_remove_ioapic_hpet_scope(struct intel_iommu *iommu)
776{
777 int i;
20f3097b 778
a7a3dad9
JL
779 for (i = 0; i < MAX_HPET_TBS; i++)
780 if (ir_hpet[i].iommu == iommu)
781 ir_hpet[i].iommu = NULL;
ad3ad3f6 782
a7a3dad9
JL
783 for (i = 0; i < MAX_IO_APICS; i++)
784 if (ir_ioapic[i].iommu == iommu)
785 ir_ioapic[i].iommu = NULL;
ad3ad3f6
SS
786}
787
788/*
789 * Finds the assocaition between IOAPIC's and its Interrupt-remapping
790 * hardware unit.
791 */
694835dc 792static int __init parse_ioapics_under_ir(void)
ad3ad3f6
SS
793{
794 struct dmar_drhd_unit *drhd;
7c919779 795 struct intel_iommu *iommu;
2f119c78 796 bool ir_supported = false;
32ab31e0 797 int ioapic_idx;
ad3ad3f6 798
7c919779 799 for_each_iommu(iommu, drhd)
ad3ad3f6 800 if (ecap_ir_support(iommu->ecap)) {
20f3097b 801 if (ir_parse_ioapic_hpet_scope(drhd->hdr, iommu))
ad3ad3f6
SS
802 return -1;
803
2f119c78 804 ir_supported = true;
ad3ad3f6 805 }
ad3ad3f6 806
32ab31e0
SF
807 if (!ir_supported)
808 return 0;
809
810 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++) {
811 int ioapic_id = mpc_ioapic_id(ioapic_idx);
812 if (!map_ioapic_to_ir(ioapic_id)) {
813 pr_err(FW_BUG "ioapic %d has no mapping iommu, "
814 "interrupt remapping will be disabled\n",
815 ioapic_id);
816 return -1;
817 }
ad3ad3f6
SS
818 }
819
32ab31e0 820 return 1;
ad3ad3f6 821}
b24696bc 822
6a7885c4 823static int __init ir_dev_scope_init(void)
c2c7286a 824{
3a5670e8
JL
825 int ret;
826
95a02e97 827 if (!irq_remapping_enabled)
c2c7286a
SS
828 return 0;
829
3a5670e8
JL
830 down_write(&dmar_global_lock);
831 ret = dmar_dev_scope_init();
832 up_write(&dmar_global_lock);
833
834 return ret;
c2c7286a
SS
835}
836rootfs_initcall(ir_dev_scope_init);
837
95a02e97 838static void disable_irq_remapping(void)
b24696bc
FY
839{
840 struct dmar_drhd_unit *drhd;
841 struct intel_iommu *iommu = NULL;
842
843 /*
844 * Disable Interrupt-remapping for all the DRHD's now.
845 */
846 for_each_iommu(iommu, drhd) {
847 if (!ecap_ir_support(iommu->ecap))
848 continue;
849
95a02e97 850 iommu_disable_irq_remapping(iommu);
b24696bc
FY
851 }
852}
853
95a02e97 854static int reenable_irq_remapping(int eim)
b24696bc
FY
855{
856 struct dmar_drhd_unit *drhd;
2f119c78 857 bool setup = false;
b24696bc
FY
858 struct intel_iommu *iommu = NULL;
859
860 for_each_iommu(iommu, drhd)
861 if (iommu->qi)
862 dmar_reenable_qi(iommu);
863
864 /*
865 * Setup Interrupt-remapping for all the DRHD's now.
866 */
867 for_each_iommu(iommu, drhd) {
868 if (!ecap_ir_support(iommu->ecap))
869 continue;
870
871 /* Set up interrupt remapping for iommu.*/
95a02e97 872 iommu_set_irq_remapping(iommu, eim);
2f119c78 873 setup = true;
b24696bc
FY
874 }
875
876 if (!setup)
877 goto error;
878
879 return 0;
880
881error:
882 /*
883 * handle error condition gracefully here!
884 */
885 return -1;
886}
887
3c6e5675 888static void prepare_irte(struct irte *irte, int vector, unsigned int dest)
0c3f173a
JR
889{
890 memset(irte, 0, sizeof(*irte));
891
892 irte->present = 1;
893 irte->dst_mode = apic->irq_dest_mode;
894 /*
895 * Trigger mode in the IRTE will always be edge, and for IO-APIC, the
896 * actual level or edge trigger will be setup in the IO-APIC
897 * RTE. This will help simplify level triggered irq migration.
898 * For more details, see the comments (in io_apic.c) explainig IO-APIC
899 * irq migration in the presence of interrupt-remapping.
900 */
901 irte->trigger_mode = 0;
902 irte->dlvry_mode = apic->irq_delivery_mode;
903 irte->vector = vector;
904 irte->dest_id = IRTE_DEST(dest);
905 irte->redir_hint = 1;
906}
907
b106ee63
JL
908static struct irq_domain *intel_get_ir_irq_domain(struct irq_alloc_info *info)
909{
910 struct intel_iommu *iommu = NULL;
911
912 if (!info)
913 return NULL;
914
915 switch (info->type) {
916 case X86_IRQ_ALLOC_TYPE_IOAPIC:
917 iommu = map_ioapic_to_ir(info->ioapic_id);
918 break;
919 case X86_IRQ_ALLOC_TYPE_HPET:
920 iommu = map_hpet_to_ir(info->hpet_id);
921 break;
922 case X86_IRQ_ALLOC_TYPE_MSI:
923 case X86_IRQ_ALLOC_TYPE_MSIX:
924 iommu = map_dev_to_ir(info->msi_dev);
925 break;
926 default:
927 BUG_ON(1);
928 break;
929 }
930
931 return iommu ? iommu->ir_domain : NULL;
932}
933
934static struct irq_domain *intel_get_irq_domain(struct irq_alloc_info *info)
935{
936 struct intel_iommu *iommu;
937
938 if (!info)
939 return NULL;
940
941 switch (info->type) {
942 case X86_IRQ_ALLOC_TYPE_MSI:
943 case X86_IRQ_ALLOC_TYPE_MSIX:
944 iommu = map_dev_to_ir(info->msi_dev);
945 if (iommu)
946 return iommu->ir_msi_domain;
947 break;
948 default:
949 break;
950 }
951
952 return NULL;
953}
954
736baef4 955struct irq_remap_ops intel_irq_remap_ops = {
11190302 956 .prepare = intel_prepare_irq_remapping,
95a02e97
SS
957 .enable = intel_enable_irq_remapping,
958 .disable = disable_irq_remapping,
959 .reenable = reenable_irq_remapping,
4f3d8b67 960 .enable_faulting = enable_drhd_fault_handling,
b106ee63
JL
961 .get_ir_irq_domain = intel_get_ir_irq_domain,
962 .get_irq_domain = intel_get_irq_domain,
963};
964
965/*
966 * Migrate the IO-APIC irq in the presence of intr-remapping.
967 *
968 * For both level and edge triggered, irq migration is a simple atomic
969 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
970 *
971 * For level triggered, we eliminate the io-apic RTE modification (with the
972 * updated vector information), by using a virtual vector (io-apic pin number).
973 * Real vector that is used for interrupting cpu will be coming from
974 * the interrupt-remapping table entry.
975 *
976 * As the migration is a simple atomic update of IRTE, the same mechanism
977 * is used to migrate MSI irq's in the presence of interrupt-remapping.
978 */
979static int
980intel_ir_set_affinity(struct irq_data *data, const struct cpumask *mask,
981 bool force)
982{
983 struct intel_ir_data *ir_data = data->chip_data;
984 struct irte *irte = &ir_data->irte_entry;
985 struct irq_cfg *cfg = irqd_cfg(data);
986 struct irq_data *parent = data->parent_data;
987 int ret;
988
989 ret = parent->chip->irq_set_affinity(parent, mask, force);
990 if (ret < 0 || ret == IRQ_SET_MASK_OK_DONE)
991 return ret;
992
993 /*
994 * Atomically updates the IRTE with the new destination, vector
995 * and flushes the interrupt entry cache.
996 */
997 irte->vector = cfg->vector;
998 irte->dest_id = IRTE_DEST(cfg->dest_apicid);
999 modify_irte(&ir_data->irq_2_iommu, irte);
1000
1001 /*
1002 * After this point, all the interrupts will start arriving
1003 * at the new destination. So, time to cleanup the previous
1004 * vector allocation.
1005 */
c6c2002b 1006 send_cleanup_vector(cfg);
b106ee63
JL
1007
1008 return IRQ_SET_MASK_OK_DONE;
1009}
1010
1011static void intel_ir_compose_msi_msg(struct irq_data *irq_data,
1012 struct msi_msg *msg)
1013{
1014 struct intel_ir_data *ir_data = irq_data->chip_data;
1015
1016 *msg = ir_data->msi_entry;
1017}
1018
1019static struct irq_chip intel_ir_chip = {
1020 .irq_ack = ir_ack_apic_edge,
1021 .irq_set_affinity = intel_ir_set_affinity,
1022 .irq_compose_msi_msg = intel_ir_compose_msi_msg,
1023};
1024
1025static void intel_irq_remapping_prepare_irte(struct intel_ir_data *data,
1026 struct irq_cfg *irq_cfg,
1027 struct irq_alloc_info *info,
1028 int index, int sub_handle)
1029{
1030 struct IR_IO_APIC_route_entry *entry;
1031 struct irte *irte = &data->irte_entry;
1032 struct msi_msg *msg = &data->msi_entry;
1033
1034 prepare_irte(irte, irq_cfg->vector, irq_cfg->dest_apicid);
1035 switch (info->type) {
1036 case X86_IRQ_ALLOC_TYPE_IOAPIC:
1037 /* Set source-id of interrupt request */
1038 set_ioapic_sid(irte, info->ioapic_id);
1039 apic_printk(APIC_VERBOSE, KERN_DEBUG "IOAPIC[%d]: Set IRTE entry (P:%d FPD:%d Dst_Mode:%d Redir_hint:%d Trig_Mode:%d Dlvry_Mode:%X Avail:%X Vector:%02X Dest:%08X SID:%04X SQ:%X SVT:%X)\n",
1040 info->ioapic_id, irte->present, irte->fpd,
1041 irte->dst_mode, irte->redir_hint,
1042 irte->trigger_mode, irte->dlvry_mode,
1043 irte->avail, irte->vector, irte->dest_id,
1044 irte->sid, irte->sq, irte->svt);
1045
1046 entry = (struct IR_IO_APIC_route_entry *)info->ioapic_entry;
1047 info->ioapic_entry = NULL;
1048 memset(entry, 0, sizeof(*entry));
1049 entry->index2 = (index >> 15) & 0x1;
1050 entry->zero = 0;
1051 entry->format = 1;
1052 entry->index = (index & 0x7fff);
1053 /*
1054 * IO-APIC RTE will be configured with virtual vector.
1055 * irq handler will do the explicit EOI to the io-apic.
1056 */
1057 entry->vector = info->ioapic_pin;
1058 entry->mask = 0; /* enable IRQ */
1059 entry->trigger = info->ioapic_trigger;
1060 entry->polarity = info->ioapic_polarity;
1061 if (info->ioapic_trigger)
1062 entry->mask = 1; /* Mask level triggered irqs. */
1063 break;
1064
1065 case X86_IRQ_ALLOC_TYPE_HPET:
1066 case X86_IRQ_ALLOC_TYPE_MSI:
1067 case X86_IRQ_ALLOC_TYPE_MSIX:
1068 if (info->type == X86_IRQ_ALLOC_TYPE_HPET)
1069 set_hpet_sid(irte, info->hpet_id);
1070 else
1071 set_msi_sid(irte, info->msi_dev);
1072
1073 msg->address_hi = MSI_ADDR_BASE_HI;
1074 msg->data = sub_handle;
1075 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
1076 MSI_ADDR_IR_SHV |
1077 MSI_ADDR_IR_INDEX1(index) |
1078 MSI_ADDR_IR_INDEX2(index);
1079 break;
1080
1081 default:
1082 BUG_ON(1);
1083 break;
1084 }
1085}
1086
1087static void intel_free_irq_resources(struct irq_domain *domain,
1088 unsigned int virq, unsigned int nr_irqs)
1089{
1090 struct irq_data *irq_data;
1091 struct intel_ir_data *data;
1092 struct irq_2_iommu *irq_iommu;
1093 unsigned long flags;
1094 int i;
1095
1096 for (i = 0; i < nr_irqs; i++) {
1097 irq_data = irq_domain_get_irq_data(domain, virq + i);
1098 if (irq_data && irq_data->chip_data) {
1099 data = irq_data->chip_data;
1100 irq_iommu = &data->irq_2_iommu;
1101 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
1102 clear_entries(irq_iommu);
1103 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
1104 irq_domain_reset_irq_data(irq_data);
1105 kfree(data);
1106 }
1107 }
1108}
1109
1110static int intel_irq_remapping_alloc(struct irq_domain *domain,
1111 unsigned int virq, unsigned int nr_irqs,
1112 void *arg)
1113{
1114 struct intel_iommu *iommu = domain->host_data;
1115 struct irq_alloc_info *info = arg;
1116 struct intel_ir_data *data;
1117 struct irq_data *irq_data;
1118 struct irq_cfg *irq_cfg;
1119 int i, ret, index;
1120
1121 if (!info || !iommu)
1122 return -EINVAL;
1123 if (nr_irqs > 1 && info->type != X86_IRQ_ALLOC_TYPE_MSI &&
1124 info->type != X86_IRQ_ALLOC_TYPE_MSIX)
1125 return -EINVAL;
1126
1127 /*
1128 * With IRQ remapping enabled, don't need contiguous CPU vectors
1129 * to support multiple MSI interrupts.
1130 */
1131 if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
1132 info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS;
1133
1134 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
1135 if (ret < 0)
1136 return ret;
1137
1138 ret = -ENOMEM;
1139 data = kzalloc(sizeof(*data), GFP_KERNEL);
1140 if (!data)
1141 goto out_free_parent;
1142
1143 down_read(&dmar_global_lock);
1144 index = alloc_irte(iommu, virq, &data->irq_2_iommu, nr_irqs);
1145 up_read(&dmar_global_lock);
1146 if (index < 0) {
1147 pr_warn("Failed to allocate IRTE\n");
1148 kfree(data);
1149 goto out_free_parent;
1150 }
1151
1152 for (i = 0; i < nr_irqs; i++) {
1153 irq_data = irq_domain_get_irq_data(domain, virq + i);
1154 irq_cfg = irqd_cfg(irq_data);
1155 if (!irq_data || !irq_cfg) {
1156 ret = -EINVAL;
1157 goto out_free_data;
1158 }
1159
1160 if (i > 0) {
1161 data = kzalloc(sizeof(*data), GFP_KERNEL);
1162 if (!data)
1163 goto out_free_data;
1164 }
1165 irq_data->hwirq = (index << 16) + i;
1166 irq_data->chip_data = data;
1167 irq_data->chip = &intel_ir_chip;
1168 intel_irq_remapping_prepare_irte(data, irq_cfg, info, index, i);
1169 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
1170 }
1171 return 0;
1172
1173out_free_data:
1174 intel_free_irq_resources(domain, virq, i);
1175out_free_parent:
1176 irq_domain_free_irqs_common(domain, virq, nr_irqs);
1177 return ret;
1178}
1179
1180static void intel_irq_remapping_free(struct irq_domain *domain,
1181 unsigned int virq, unsigned int nr_irqs)
1182{
1183 intel_free_irq_resources(domain, virq, nr_irqs);
1184 irq_domain_free_irqs_common(domain, virq, nr_irqs);
1185}
1186
1187static void intel_irq_remapping_activate(struct irq_domain *domain,
1188 struct irq_data *irq_data)
1189{
1190 struct intel_ir_data *data = irq_data->chip_data;
1191
1192 modify_irte(&data->irq_2_iommu, &data->irte_entry);
1193}
1194
1195static void intel_irq_remapping_deactivate(struct irq_domain *domain,
1196 struct irq_data *irq_data)
1197{
1198 struct intel_ir_data *data = irq_data->chip_data;
1199 struct irte entry;
1200
1201 memset(&entry, 0, sizeof(entry));
1202 modify_irte(&data->irq_2_iommu, &entry);
1203}
1204
1205static struct irq_domain_ops intel_ir_domain_ops = {
1206 .alloc = intel_irq_remapping_alloc,
1207 .free = intel_irq_remapping_free,
1208 .activate = intel_irq_remapping_activate,
1209 .deactivate = intel_irq_remapping_deactivate,
736baef4 1210};
6b197249 1211
a7a3dad9
JL
1212/*
1213 * Support of Interrupt Remapping Unit Hotplug
1214 */
1215static int dmar_ir_add(struct dmar_drhd_unit *dmaru, struct intel_iommu *iommu)
1216{
1217 int ret;
1218 int eim = x2apic_enabled();
1219
1220 if (eim && !ecap_eim_support(iommu->ecap)) {
1221 pr_info("DRHD %Lx: EIM not supported by DRHD, ecap %Lx\n",
1222 iommu->reg_phys, iommu->ecap);
1223 return -ENODEV;
1224 }
1225
1226 if (ir_parse_ioapic_hpet_scope(dmaru->hdr, iommu)) {
1227 pr_warn("DRHD %Lx: failed to parse managed IOAPIC/HPET\n",
1228 iommu->reg_phys);
1229 return -ENODEV;
1230 }
1231
1232 /* TODO: check all IOAPICs are covered by IOMMU */
1233
1234 /* Setup Interrupt-remapping now. */
1235 ret = intel_setup_irq_remapping(iommu);
1236 if (ret) {
1237 pr_err("DRHD %Lx: failed to allocate resource\n",
1238 iommu->reg_phys);
1239 ir_remove_ioapic_hpet_scope(iommu);
1240 return ret;
1241 }
1242
1243 if (!iommu->qi) {
1244 /* Clear previous faults. */
1245 dmar_fault(-1, iommu);
1246 iommu_disable_irq_remapping(iommu);
1247 dmar_disable_qi(iommu);
1248 }
1249
1250 /* Enable queued invalidation */
1251 ret = dmar_enable_qi(iommu);
1252 if (!ret) {
1253 iommu_set_irq_remapping(iommu, eim);
1254 } else {
1255 pr_err("DRHD %Lx: failed to enable queued invalidation, ecap %Lx, ret %d\n",
1256 iommu->reg_phys, iommu->ecap, ret);
1257 intel_teardown_irq_remapping(iommu);
1258 ir_remove_ioapic_hpet_scope(iommu);
1259 }
1260
1261 return ret;
1262}
1263
6b197249
JL
1264int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
1265{
a7a3dad9
JL
1266 int ret = 0;
1267 struct intel_iommu *iommu = dmaru->iommu;
1268
1269 if (!irq_remapping_enabled)
1270 return 0;
1271 if (iommu == NULL)
1272 return -EINVAL;
1273 if (!ecap_ir_support(iommu->ecap))
1274 return 0;
1275
1276 if (insert) {
1277 if (!iommu->ir_table)
1278 ret = dmar_ir_add(dmaru, iommu);
1279 } else {
1280 if (iommu->ir_table) {
1281 if (!bitmap_empty(iommu->ir_table->bitmap,
1282 INTR_REMAP_TABLE_ENTRIES)) {
1283 ret = -EBUSY;
1284 } else {
1285 iommu_disable_irq_remapping(iommu);
1286 intel_teardown_irq_remapping(iommu);
1287 ir_remove_ioapic_hpet_scope(iommu);
1288 }
1289 }
1290 }
1291
1292 return ret;
6b197249 1293}