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