blob: 7ecc6b3180ba8b1b9aa5e065ddc42851a5cc5dbd [file] [log] [blame]
Yinghai Lu5aeecaf2008-08-19 20:49:59 -07001#include <linux/interrupt.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -07002#include <linux/dmar.h>
Suresh Siddha2ae21012008-07-10 11:16:43 -07003#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Suresh Siddha2ae21012008-07-10 11:16:43 -07005#include <linux/jiffies.h>
Suresh Siddha20f30972009-08-04 12:07:08 -07006#include <linux/hpet.h>
Suresh Siddha2ae21012008-07-10 11:16:43 -07007#include <linux/pci.h>
Suresh Siddhab6fcb332008-07-10 11:16:44 -07008#include <linux/irq.h>
Lv Zheng8b484632013-12-03 08:49:16 +08009#include <linux/intel-iommu.h>
10#include <linux/acpi.h>
Jiang Liub106ee62015-04-13 14:11:32 +080011#include <linux/irqdomain.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070012#include <asm/io_apic.h>
Yinghai Lu17483a12008-12-12 13:14:18 -080013#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053014#include <asm/cpu.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070015#include <asm/irq_remapping.h>
Weidong Hanf007e992009-05-23 00:41:15 +080016#include <asm/pci-direct.h>
Joerg Roedel5e2b9302012-03-30 11:47:05 -070017#include <asm/msidef.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070018
Suresh Siddha8a8f4222012-03-30 11:47:08 -070019#include "irq_remapping.h"
Joerg Roedel736baef2012-03-30 11:47:00 -070020
Joerg Roedeleef93fd2012-03-30 11:46:59 -070021struct 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
Jiang Liu099c5c02015-04-14 10:29:51 +080035struct irq_2_iommu {
36 struct intel_iommu *iommu;
37 u16 irte_index;
38 u16 sub_handle;
39 u8 irte_mask;
40};
41
Jiang Liub106ee62015-04-13 14:11:32 +080042struct 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
Joerg Roedeleef93fd2012-03-30 11:46:59 -070050#define IR_X2APIC_MODE(mode) (mode ? (1 << 11) : 0)
Jiang Liu13d09b62015-01-07 15:31:37 +080051#define IRTE_DEST(dest) ((eim_mode) ? dest : dest << 8)
Joerg Roedeleef93fd2012-03-30 11:46:59 -070052
Jiang Liu13d09b62015-01-07 15:31:37 +080053static int __read_mostly eim_mode;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070054static struct ioapic_scope ir_ioapic[MAX_IO_APICS];
Suresh Siddha20f30972009-08-04 12:07:08 -070055static struct hpet_scope ir_hpet[MAX_HPET_TBS];
Chris Wrightd1423d52010-07-20 11:06:49 -070056
Jiang Liu3a5670e2014-02-19 14:07:33 +080057/*
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 */
Thomas Gleixner96f8e982011-07-19 16:28:19 +020068static DEFINE_RAW_SPINLOCK(irq_2_ir_lock);
Jiang Liub106ee62015-04-13 14:11:32 +080069static struct irq_domain_ops intel_ir_domain_ops;
Thomas Gleixnerd585d062010-10-10 12:34:27 +020070
Jiang Liu694835d2014-01-06 14:18:16 +080071static int __init parse_ioapics_under_ir(void);
72
Jiang Liu8dedf4c2015-04-13 14:11:31 +080073static int alloc_irte(struct intel_iommu *iommu, int irq,
74 struct irq_2_iommu *irq_iommu, u16 count)
Suresh Siddhab6fcb332008-07-10 11:16:44 -070075{
76 struct ir_table *table = iommu->ir_table;
Suresh Siddhab6fcb332008-07-10 11:16:44 -070077 unsigned int mask = 0;
Suresh Siddha4c5502b2009-03-16 17:04:53 -070078 unsigned long flags;
Dan Carpenter9f4c7442014-01-09 08:32:36 +030079 int index;
Suresh Siddhab6fcb332008-07-10 11:16:44 -070080
Thomas Gleixnerd585d062010-10-10 12:34:27 +020081 if (!count || !irq_iommu)
Suresh Siddhab6fcb332008-07-10 11:16:44 -070082 return -1;
83
Suresh Siddhab6fcb332008-07-10 11:16:44 -070084 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
Thomas Gleixner96f8e982011-07-19 16:28:19 +020097 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Jiang Liu360eb3c52014-01-06 14:18:08 +080098 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 {
Jiang Liu360eb3c52014-01-06 14:18:08 +0800103 irq_iommu->iommu = iommu;
104 irq_iommu->irte_index = index;
105 irq_iommu->sub_handle = 0;
106 irq_iommu->irte_mask = mask;
107 }
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200108 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700109
110 return index;
111}
112
Yu Zhao704126a2009-01-04 16:28:52 +0800113static int qi_flush_iec(struct intel_iommu *iommu, int index, int mask)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700114{
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
Yu Zhao704126a2009-01-04 16:28:52 +0800121 return qi_submit_sync(&desc, iommu);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700122}
123
Jiang Liu8dedf4c2015-04-13 14:11:31 +0800124static int modify_irte(struct irq_2_iommu *irq_iommu,
125 struct irte *irte_modified)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700126{
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700127 struct intel_iommu *iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700128 unsigned long flags;
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200129 struct irte *irte;
130 int rc, index;
131
132 if (!irq_iommu)
133 return -1;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700134
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200135 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700136
Yinghai Lue420dfb2008-08-19 20:50:21 -0700137 iommu = irq_iommu->iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700138
Yinghai Lue420dfb2008-08-19 20:50:21 -0700139 index = irq_iommu->irte_index + irq_iommu->sub_handle;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700140 irte = &iommu->ir_table->base[index];
141
Linus Torvaldsc513b672010-08-06 11:02:31 -0700142 set_64bit(&irte->low, irte_modified->low);
143 set_64bit(&irte->high, irte_modified->high);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700144 __iommu_flush_cache(iommu, irte, sizeof(*irte));
145
Yu Zhao704126a2009-01-04 16:28:52 +0800146 rc = qi_flush_iec(iommu, index, 0);
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200147 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yu Zhao704126a2009-01-04 16:28:52 +0800148
149 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700150}
151
Joerg Roedel263b5e82012-03-30 11:47:06 -0700152static struct intel_iommu *map_hpet_to_ir(u8 hpet_id)
Suresh Siddha20f30972009-08-04 12:07:08 -0700153{
154 int i;
155
156 for (i = 0; i < MAX_HPET_TBS; i++)
Jiang Liua7a3dad2014-11-09 22:48:00 +0800157 if (ir_hpet[i].id == hpet_id && ir_hpet[i].iommu)
Suresh Siddha20f30972009-08-04 12:07:08 -0700158 return ir_hpet[i].iommu;
159 return NULL;
160}
161
Joerg Roedel263b5e82012-03-30 11:47:06 -0700162static struct intel_iommu *map_ioapic_to_ir(int apic)
Suresh Siddha89027d32008-07-10 11:16:56 -0700163{
164 int i;
165
166 for (i = 0; i < MAX_IO_APICS; i++)
Jiang Liua7a3dad2014-11-09 22:48:00 +0800167 if (ir_ioapic[i].id == apic && ir_ioapic[i].iommu)
Suresh Siddha89027d32008-07-10 11:16:56 -0700168 return ir_ioapic[i].iommu;
169 return NULL;
170}
171
Joerg Roedel263b5e82012-03-30 11:47:06 -0700172static struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
Suresh Siddha75c46fa2008-07-10 11:16:57 -0700173{
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
Weidong Hanc4658b42009-05-23 00:41:14 +0800183static 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;
Jiang Liu8dedf4c2015-04-13 14:11:31 +0800193 index = irq_iommu->irte_index;
Weidong Hanc4658b42009-05-23 00:41:14 +0800194
195 start = iommu->ir_table->base + index;
196 end = start + (1 << irq_iommu->irte_mask);
197
198 for (entry = start; entry < end; entry++) {
Linus Torvaldsc513b672010-08-06 11:02:31 -0700199 set_64bit(&entry->low, 0);
200 set_64bit(&entry->high, 0);
Weidong Hanc4658b42009-05-23 00:41:14 +0800201 }
Jiang Liu360eb3c52014-01-06 14:18:08 +0800202 bitmap_release_region(iommu->ir_table->bitmap, index,
203 irq_iommu->irte_mask);
Weidong Hanc4658b42009-05-23 00:41:14 +0800204
205 return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
206}
207
Weidong Hanf007e992009-05-23 00:41:15 +0800208/*
209 * source validation type
210 */
211#define SVT_NO_VERIFY 0x0 /* no verification is required */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300212#define SVT_VERIFY_SID_SQ 0x1 /* verify using SID and SQ fields */
Weidong Hanf007e992009-05-23 00:41:15 +0800213#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{
Chris Wrightd1423d52010-07-20 11:06:49 -0700236 if (disable_sourceid_checking)
237 svt = SVT_NO_VERIFY;
Weidong Hanf007e992009-05-23 00:41:15 +0800238 irte->svt = svt;
239 irte->sq = sq;
240 irte->sid = sid;
241}
242
Joerg Roedel263b5e82012-03-30 11:47:06 -0700243static int set_ioapic_sid(struct irte *irte, int apic)
Weidong Hanf007e992009-05-23 00:41:15 +0800244{
245 int i;
246 u16 sid = 0;
247
248 if (!irte)
249 return -1;
250
Jiang Liu3a5670e2014-02-19 14:07:33 +0800251 down_read(&dmar_global_lock);
Weidong Hanf007e992009-05-23 00:41:15 +0800252 for (i = 0; i < MAX_IO_APICS; i++) {
Jiang Liua7a3dad2014-11-09 22:48:00 +0800253 if (ir_ioapic[i].iommu && ir_ioapic[i].id == apic) {
Weidong Hanf007e992009-05-23 00:41:15 +0800254 sid = (ir_ioapic[i].bus << 8) | ir_ioapic[i].devfn;
255 break;
256 }
257 }
Jiang Liu3a5670e2014-02-19 14:07:33 +0800258 up_read(&dmar_global_lock);
Weidong Hanf007e992009-05-23 00:41:15 +0800259
260 if (sid == 0) {
261 pr_warning("Failed to set source-id of IOAPIC (%d)\n", apic);
262 return -1;
263 }
264
Jiang Liu2fe2c602014-01-06 14:18:17 +0800265 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16, sid);
Weidong Hanf007e992009-05-23 00:41:15 +0800266
267 return 0;
268}
269
Joerg Roedel263b5e82012-03-30 11:47:06 -0700270static int set_hpet_sid(struct irte *irte, u8 id)
Suresh Siddha20f30972009-08-04 12:07:08 -0700271{
272 int i;
273 u16 sid = 0;
274
275 if (!irte)
276 return -1;
277
Jiang Liu3a5670e2014-02-19 14:07:33 +0800278 down_read(&dmar_global_lock);
Suresh Siddha20f30972009-08-04 12:07:08 -0700279 for (i = 0; i < MAX_HPET_TBS; i++) {
Jiang Liua7a3dad2014-11-09 22:48:00 +0800280 if (ir_hpet[i].iommu && ir_hpet[i].id == id) {
Suresh Siddha20f30972009-08-04 12:07:08 -0700281 sid = (ir_hpet[i].bus << 8) | ir_hpet[i].devfn;
282 break;
283 }
284 }
Jiang Liu3a5670e2014-02-19 14:07:33 +0800285 up_read(&dmar_global_lock);
Suresh Siddha20f30972009-08-04 12:07:08 -0700286
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
Alex Williamson579305f2014-07-03 09:51:43 -0600302struct 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
Joerg Roedel263b5e82012-03-30 11:47:06 -0700317static int set_msi_sid(struct irte *irte, struct pci_dev *dev)
Weidong Hanf007e992009-05-23 00:41:15 +0800318{
Alex Williamson579305f2014-07-03 09:51:43 -0600319 struct set_msi_sid_data data;
Weidong Hanf007e992009-05-23 00:41:15 +0800320
321 if (!irte || !dev)
322 return -1;
323
Alex Williamson579305f2014-07-03 09:51:43 -0600324 pci_for_each_dma_alias(dev, set_msi_sid_cb, &data);
Weidong Hanf007e992009-05-23 00:41:15 +0800325
Alex Williamson579305f2014-07-03 09:51:43 -0600326 /*
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));
Weidong Hanf007e992009-05-23 00:41:15 +0800348
349 return 0;
350}
351
Suresh Siddha95a02e92012-03-30 11:47:07 -0700352static void iommu_set_irq_remapping(struct intel_iommu *iommu, int mode)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700353{
354 u64 addr;
David Woodhousec416daa2009-05-10 20:30:58 +0100355 u32 sts;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700356 unsigned long flags;
357
358 addr = virt_to_phys((void *)iommu->ir_table->base);
359
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200360 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700361
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 */
Jan Kiszkaf63ef692014-08-11 13:13:25 +0200366 writel(iommu->gcmd | DMA_GCMD_SIRTP, iommu->reg + DMAR_GCMD_REG);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700367
368 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
369 readl, (sts & DMA_GSTS_IRTPS), sts);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200370 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700371
372 /*
373 * global invalidation of interrupt entry cache before enabling
374 * interrupt-remapping.
375 */
376 qi_global_iec(iommu);
377
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200378 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700379
380 /* Enable interrupt-remapping */
Suresh Siddha2ae21012008-07-10 11:16:43 -0700381 iommu->gcmd |= DMA_GCMD_IRE;
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800382 iommu->gcmd &= ~DMA_GCMD_CFI; /* Block compatibility-format MSIs */
David Woodhousec416daa2009-05-10 20:30:58 +0100383 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700384
385 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
386 readl, (sts & DMA_GSTS_IRES), sts);
387
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800388 /*
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
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200398 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700399}
400
Jiang Liua7a3dad2014-11-09 22:48:00 +0800401static int intel_setup_irq_remapping(struct intel_iommu *iommu)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700402{
403 struct ir_table *ir_table;
404 struct page *pages;
Jiang Liu360eb3c52014-01-06 14:18:08 +0800405 unsigned long *bitmap;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700406
Jiang Liua7a3dad2014-11-09 22:48:00 +0800407 if (iommu->ir_table)
408 return 0;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700409
Thomas Gleixnere3a981d2015-01-07 15:31:30 +0800410 ir_table = kzalloc(sizeof(struct ir_table), GFP_KERNEL);
Jiang Liua7a3dad2014-11-09 22:48:00 +0800411 if (!ir_table)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700412 return -ENOMEM;
413
Thomas Gleixnere3a981d2015-01-07 15:31:30 +0800414 pages = alloc_pages_node(iommu->node, GFP_KERNEL | __GFP_ZERO,
Suresh Siddha824cd752009-10-02 11:01:23 -0700415 INTR_REMAP_PAGE_ORDER);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700416 if (!pages) {
Jiang Liu360eb3c52014-01-06 14:18:08 +0800417 pr_err("IR%d: failed to allocate pages of order %d\n",
418 iommu->seq_id, INTR_REMAP_PAGE_ORDER);
Jiang Liua7a3dad2014-11-09 22:48:00 +0800419 goto out_free_table;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700420 }
421
Jiang Liu360eb3c52014-01-06 14:18:08 +0800422 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);
Jiang Liua7a3dad2014-11-09 22:48:00 +0800426 goto out_free_pages;
Jiang Liu360eb3c52014-01-06 14:18:08 +0800427 }
428
Jiang Liub106ee62015-04-13 14:11:32 +0800429 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
Suresh Siddha2ae21012008-07-10 11:16:43 -0700439 ir_table->base = page_address(pages);
Jiang Liu360eb3c52014-01-06 14:18:08 +0800440 ir_table->bitmap = bitmap;
Jiang Liua7a3dad2014-11-09 22:48:00 +0800441 iommu->ir_table = ir_table;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700442 return 0;
Jiang Liua7a3dad2014-11-09 22:48:00 +0800443
Jiang Liub106ee62015-04-13 14:11:32 +0800444out_free_bitmap:
445 kfree(bitmap);
Jiang Liua7a3dad2014-11-09 22:48:00 +0800446out_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) {
Jiang Liub106ee62015-04-13 14:11:32 +0800456 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 }
Jiang Liua7a3dad2014-11-09 22:48:00 +0800464 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 }
Suresh Siddha2ae21012008-07-10 11:16:43 -0700470}
471
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700472/*
473 * Disable Interrupt Remapping.
474 */
Suresh Siddha95a02e92012-03-30 11:47:07 -0700475static void iommu_disable_irq_remapping(struct intel_iommu *iommu)
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700476{
477 unsigned long flags;
478 u32 sts;
479
480 if (!ecap_ir_support(iommu->ecap))
481 return;
482
Fenghua Yub24696b2009-03-27 14:22:44 -0700483 /*
484 * global invalidation of interrupt entry cache before disabling
485 * interrupt-remapping.
486 */
487 qi_global_iec(iommu);
488
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200489 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700490
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:
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200502 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700503}
504
Suresh Siddha41750d32011-08-23 17:05:18 -0700505static 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
Thomas Gleixner11190302015-01-07 15:31:29 +0800514static 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)
531{
532 struct dmar_drhd_unit *drhd;
533 struct intel_iommu *iommu;
534
Jiang Liu2966d952015-01-07 15:31:35 +0800535 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);
Jiang Liu2966d952015-01-07 15:31:35 +0800543 return -ENODEV;
544 }
545
Thomas Gleixner11190302015-01-07 15:31:29 +0800546 if (dmar_table_init() < 0)
Jiang Liu2966d952015-01-07 15:31:35 +0800547 return -ENODEV;
548
549 if (!dmar_ir_support())
550 return -ENODEV;
Thomas Gleixner11190302015-01-07 15:31:29 +0800551
552 if (parse_ioapics_under_ir() != 1) {
553 printk(KERN_INFO "Not enabling interrupt remapping\n");
554 goto error;
555 }
556
Joerg Roedel69cf1d82015-01-07 15:31:36 +0800557 /* First make sure all IOMMUs support IRQ remapping */
Jiang Liu2966d952015-01-07 15:31:35 +0800558 for_each_iommu(iommu, drhd)
Joerg Roedel69cf1d82015-01-07 15:31:36 +0800559 if (!ecap_ir_support(iommu->ecap))
Thomas Gleixner11190302015-01-07 15:31:29 +0800560 goto error;
Joerg Roedel69cf1d82015-01-07 15:31:36 +0800561
562 /* Do the allocations early */
563 for_each_iommu(iommu, drhd)
564 if (intel_setup_irq_remapping(iommu))
565 goto error;
566
Thomas Gleixner11190302015-01-07 15:31:29 +0800567 return 0;
Jiang Liu2966d952015-01-07 15:31:35 +0800568
Thomas Gleixner11190302015-01-07 15:31:29 +0800569error:
570 intel_cleanup_irq_remapping();
Jiang Liu2966d952015-01-07 15:31:35 +0800571 return -ENODEV;
Thomas Gleixner11190302015-01-07 15:31:29 +0800572}
573
Suresh Siddha95a02e92012-03-30 11:47:07 -0700574static int __init intel_enable_irq_remapping(void)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700575{
576 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +0800577 struct intel_iommu *iommu;
Quentin Lambert2f119c72015-02-06 10:59:53 +0100578 bool setup = false;
Suresh Siddha41750d32011-08-23 17:05:18 -0700579 int eim = 0;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700580
Thomas Gleixner11190302015-01-07 15:31:29 +0800581 if (x2apic_supported()) {
Suresh Siddha41750d32011-08-23 17:05:18 -0700582 eim = !dmar_x2apic_optout();
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800583 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");
Suresh Siddha41750d32011-08-23 17:05:18 -0700588 }
589
Jiang Liu7c919772014-01-06 14:18:18 +0800590 for_each_iommu(iommu, drhd) {
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700591 /*
Han, Weidong34aaaa92009-04-04 17:21:26 +0800592 * If the queued invalidation is already initialized,
593 * shouldn't disable it.
594 */
595 if (iommu->qi)
596 continue;
597
598 /*
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700599 * 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 */
Suresh Siddha95a02e92012-03-30 11:47:07 -0700607 iommu_disable_irq_remapping(iommu);
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700608
609 dmar_disable_qi(iommu);
610 }
611
Suresh Siddha2ae21012008-07-10 11:16:43 -0700612 /*
613 * check for the Interrupt-remapping support
614 */
Joerg Roedel69cf1d82015-01-07 15:31:36 +0800615 for_each_iommu(iommu, drhd)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700616 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);
Jiang Liu13d09b62015-01-07 15:31:37 +0800619 eim = 0;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700620 }
Jiang Liu13d09b62015-01-07 15:31:37 +0800621 eim_mode = eim;
622 if (eim)
623 pr_info("Queued invalidation will be enabled to support x2apic and Intr-remapping.\n");
Suresh Siddha2ae21012008-07-10 11:16:43 -0700624
625 /*
626 * Enable queued invalidation for all the DRHD's.
627 */
Jiang Liu7c919772014-01-06 14:18:18 +0800628 for_each_iommu(iommu, drhd) {
629 int ret = dmar_enable_qi(iommu);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700630
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);
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800635 goto error;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700636 }
637 }
638
639 /*
640 * Setup Interrupt-remapping for all the DRHD's now.
641 */
Jiang Liu7c919772014-01-06 14:18:18 +0800642 for_each_iommu(iommu, drhd) {
Jiang Liua7a3dad2014-11-09 22:48:00 +0800643 iommu_set_irq_remapping(iommu, eim);
Quentin Lambert2f119c72015-02-06 10:59:53 +0100644 setup = true;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700645 }
646
647 if (!setup)
648 goto error;
649
Suresh Siddha95a02e92012-03-30 11:47:07 -0700650 irq_remapping_enabled = 1;
Joerg Roedelafcc8a42012-09-26 12:44:36 +0200651
Suresh Siddha41750d32011-08-23 17:05:18 -0700652 pr_info("Enabled IRQ remapping in %s mode\n", eim ? "x2apic" : "xapic");
Suresh Siddha2ae21012008-07-10 11:16:43 -0700653
Suresh Siddha41750d32011-08-23 17:05:18 -0700654 return eim ? IRQ_REMAP_X2APIC_MODE : IRQ_REMAP_XAPIC_MODE;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700655
656error:
Thomas Gleixner11190302015-01-07 15:31:29 +0800657 intel_cleanup_irq_remapping();
Suresh Siddha2ae21012008-07-10 11:16:43 -0700658 return -1;
659}
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700660
Jiang Liua7a3dad2014-11-09 22:48:00 +0800661static int ir_parse_one_hpet_scope(struct acpi_dmar_device_scope *scope,
662 struct intel_iommu *iommu,
663 struct acpi_dmar_hardware_unit *drhd)
Suresh Siddha20f30972009-08-04 12:07:08 -0700664{
665 struct acpi_dmar_pci_path *path;
666 u8 bus;
Jiang Liua7a3dad2014-11-09 22:48:00 +0800667 int count, free = -1;
Suresh Siddha20f30972009-08-04 12:07:08 -0700668
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 */
Lv Zhengfa5f5082013-10-31 09:30:22 +0800679 bus = read_pci_config_byte(bus, path->device, path->function,
Suresh Siddha20f30972009-08-04 12:07:08 -0700680 PCI_SECONDARY_BUS);
681 path++;
682 }
Jiang Liua7a3dad2014-11-09 22:48:00 +0800683
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;
Suresh Siddha20f30972009-08-04 12:07:08 -0700704}
705
Jiang Liua7a3dad2014-11-09 22:48:00 +0800706static int ir_parse_one_ioapic_scope(struct acpi_dmar_device_scope *scope,
707 struct intel_iommu *iommu,
708 struct acpi_dmar_hardware_unit *drhd)
Weidong Hanf007e992009-05-23 00:41:15 +0800709{
710 struct acpi_dmar_pci_path *path;
711 u8 bus;
Jiang Liua7a3dad2014-11-09 22:48:00 +0800712 int count, free = -1;
Weidong Hanf007e992009-05-23 00:41:15 +0800713
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 */
Lv Zhengfa5f5082013-10-31 09:30:22 +0800724 bus = read_pci_config_byte(bus, path->device, path->function,
Weidong Hanf007e992009-05-23 00:41:15 +0800725 PCI_SECONDARY_BUS);
726 path++;
727 }
728
Jiang Liua7a3dad2014-11-09 22:48:00 +0800729 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;
Weidong Hanf007e992009-05-23 00:41:15 +0800749}
750
Suresh Siddha20f30972009-08-04 12:07:08 -0700751static int ir_parse_ioapic_hpet_scope(struct acpi_dmar_header *header,
752 struct intel_iommu *iommu)
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700753{
Jiang Liua7a3dad2014-11-09 22:48:00 +0800754 int ret = 0;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700755 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;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700760 start = (void *)(drhd + 1);
761 end = ((void *)drhd) + header->length;
762
Jiang Liua7a3dad2014-11-09 22:48:00 +0800763 while (start < end && ret == 0) {
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700764 scope = start;
Jiang Liua7a3dad2014-11-09 22:48:00 +0800765 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);
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700769 start += scope->length;
770 }
771
Jiang Liua7a3dad2014-11-09 22:48:00 +0800772 return ret;
773}
774
775static void ir_remove_ioapic_hpet_scope(struct intel_iommu *iommu)
776{
777 int i;
778
779 for (i = 0; i < MAX_HPET_TBS; i++)
780 if (ir_hpet[i].iommu == iommu)
781 ir_hpet[i].iommu = NULL;
782
783 for (i = 0; i < MAX_IO_APICS; i++)
784 if (ir_ioapic[i].iommu == iommu)
785 ir_ioapic[i].iommu = NULL;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700786}
787
788/*
789 * Finds the assocaition between IOAPIC's and its Interrupt-remapping
790 * hardware unit.
791 */
Jiang Liu694835d2014-01-06 14:18:16 +0800792static int __init parse_ioapics_under_ir(void)
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700793{
794 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +0800795 struct intel_iommu *iommu;
Quentin Lambert2f119c72015-02-06 10:59:53 +0100796 bool ir_supported = false;
Seth Forshee32ab31e2012-08-08 08:27:03 -0500797 int ioapic_idx;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700798
Jiang Liu7c919772014-01-06 14:18:18 +0800799 for_each_iommu(iommu, drhd)
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700800 if (ecap_ir_support(iommu->ecap)) {
Suresh Siddha20f30972009-08-04 12:07:08 -0700801 if (ir_parse_ioapic_hpet_scope(drhd->hdr, iommu))
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700802 return -1;
803
Quentin Lambert2f119c72015-02-06 10:59:53 +0100804 ir_supported = true;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700805 }
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700806
Seth Forshee32ab31e2012-08-08 08:27:03 -0500807 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 }
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700818 }
819
Seth Forshee32ab31e2012-08-08 08:27:03 -0500820 return 1;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700821}
Fenghua Yub24696b2009-03-27 14:22:44 -0700822
Rashika Kheria6a7885c2013-12-18 12:04:27 +0530823static int __init ir_dev_scope_init(void)
Suresh Siddhac2c72862011-08-23 17:05:19 -0700824{
Jiang Liu3a5670e2014-02-19 14:07:33 +0800825 int ret;
826
Suresh Siddha95a02e92012-03-30 11:47:07 -0700827 if (!irq_remapping_enabled)
Suresh Siddhac2c72862011-08-23 17:05:19 -0700828 return 0;
829
Jiang Liu3a5670e2014-02-19 14:07:33 +0800830 down_write(&dmar_global_lock);
831 ret = dmar_dev_scope_init();
832 up_write(&dmar_global_lock);
833
834 return ret;
Suresh Siddhac2c72862011-08-23 17:05:19 -0700835}
836rootfs_initcall(ir_dev_scope_init);
837
Suresh Siddha95a02e92012-03-30 11:47:07 -0700838static void disable_irq_remapping(void)
Fenghua Yub24696b2009-03-27 14:22:44 -0700839{
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
Suresh Siddha95a02e92012-03-30 11:47:07 -0700850 iommu_disable_irq_remapping(iommu);
Fenghua Yub24696b2009-03-27 14:22:44 -0700851 }
852}
853
Suresh Siddha95a02e92012-03-30 11:47:07 -0700854static int reenable_irq_remapping(int eim)
Fenghua Yub24696b2009-03-27 14:22:44 -0700855{
856 struct dmar_drhd_unit *drhd;
Quentin Lambert2f119c72015-02-06 10:59:53 +0100857 bool setup = false;
Fenghua Yub24696b2009-03-27 14:22:44 -0700858 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.*/
Suresh Siddha95a02e92012-03-30 11:47:07 -0700872 iommu_set_irq_remapping(iommu, eim);
Quentin Lambert2f119c72015-02-06 10:59:53 +0100873 setup = true;
Fenghua Yub24696b2009-03-27 14:22:44 -0700874 }
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
Jiang Liu3c6e5672015-04-14 10:29:47 +0800888static void prepare_irte(struct irte *irte, int vector, unsigned int dest)
Joerg Roedel0c3f1732012-03-30 11:47:02 -0700889{
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
Jiang Liub106ee62015-04-13 14:11:32 +0800908static 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
Joerg Roedel736baef2012-03-30 11:47:00 -0700955struct irq_remap_ops intel_irq_remap_ops = {
Thomas Gleixner11190302015-01-07 15:31:29 +0800956 .prepare = intel_prepare_irq_remapping,
Suresh Siddha95a02e92012-03-30 11:47:07 -0700957 .enable = intel_enable_irq_remapping,
958 .disable = disable_irq_remapping,
959 .reenable = reenable_irq_remapping,
Joerg Roedel4f3d8b62012-03-30 11:47:01 -0700960 .enable_faulting = enable_drhd_fault_handling,
Jiang Liub106ee62015-04-13 14:11:32 +0800961 .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 */
Jiang Liuc6c20022015-04-14 10:30:02 +08001006 send_cleanup_vector(cfg);
Jiang Liub106ee62015-04-13 14:11:32 +08001007
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;
Thomas Gleixner9d4c0312015-05-04 10:47:40 +08001116 struct intel_ir_data *data, *ird;
Jiang Liub106ee62015-04-13 14:11:32 +08001117 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) {
Thomas Gleixner9d4c0312015-05-04 10:47:40 +08001161 ird = kzalloc(sizeof(*ird), GFP_KERNEL);
1162 if (!ird)
Jiang Liub106ee62015-04-13 14:11:32 +08001163 goto out_free_data;
Thomas Gleixner9d4c0312015-05-04 10:47:40 +08001164 /* Initialize the common data */
1165 ird->irq_2_iommu = data->irq_2_iommu;
1166 ird->irq_2_iommu.sub_handle = i;
1167 } else {
1168 ird = data;
Jiang Liub106ee62015-04-13 14:11:32 +08001169 }
Thomas Gleixner9d4c0312015-05-04 10:47:40 +08001170
Jiang Liub106ee62015-04-13 14:11:32 +08001171 irq_data->hwirq = (index << 16) + i;
Thomas Gleixner9d4c0312015-05-04 10:47:40 +08001172 irq_data->chip_data = ird;
Jiang Liub106ee62015-04-13 14:11:32 +08001173 irq_data->chip = &intel_ir_chip;
Thomas Gleixner9d4c0312015-05-04 10:47:40 +08001174 intel_irq_remapping_prepare_irte(ird, irq_cfg, info, index, i);
Jiang Liub106ee62015-04-13 14:11:32 +08001175 irq_set_status_flags(virq + i, IRQ_MOVE_PCNTXT);
1176 }
1177 return 0;
1178
1179out_free_data:
1180 intel_free_irq_resources(domain, virq, i);
1181out_free_parent:
1182 irq_domain_free_irqs_common(domain, virq, nr_irqs);
1183 return ret;
1184}
1185
1186static void intel_irq_remapping_free(struct irq_domain *domain,
1187 unsigned int virq, unsigned int nr_irqs)
1188{
1189 intel_free_irq_resources(domain, virq, nr_irqs);
1190 irq_domain_free_irqs_common(domain, virq, nr_irqs);
1191}
1192
1193static void intel_irq_remapping_activate(struct irq_domain *domain,
1194 struct irq_data *irq_data)
1195{
1196 struct intel_ir_data *data = irq_data->chip_data;
1197
1198 modify_irte(&data->irq_2_iommu, &data->irte_entry);
1199}
1200
1201static void intel_irq_remapping_deactivate(struct irq_domain *domain,
1202 struct irq_data *irq_data)
1203{
1204 struct intel_ir_data *data = irq_data->chip_data;
1205 struct irte entry;
1206
1207 memset(&entry, 0, sizeof(entry));
1208 modify_irte(&data->irq_2_iommu, &entry);
1209}
1210
1211static struct irq_domain_ops intel_ir_domain_ops = {
1212 .alloc = intel_irq_remapping_alloc,
1213 .free = intel_irq_remapping_free,
1214 .activate = intel_irq_remapping_activate,
1215 .deactivate = intel_irq_remapping_deactivate,
Joerg Roedel736baef2012-03-30 11:47:00 -07001216};
Jiang Liu6b197242014-11-09 22:47:58 +08001217
Jiang Liua7a3dad2014-11-09 22:48:00 +08001218/*
1219 * Support of Interrupt Remapping Unit Hotplug
1220 */
1221static int dmar_ir_add(struct dmar_drhd_unit *dmaru, struct intel_iommu *iommu)
1222{
1223 int ret;
1224 int eim = x2apic_enabled();
1225
1226 if (eim && !ecap_eim_support(iommu->ecap)) {
1227 pr_info("DRHD %Lx: EIM not supported by DRHD, ecap %Lx\n",
1228 iommu->reg_phys, iommu->ecap);
1229 return -ENODEV;
1230 }
1231
1232 if (ir_parse_ioapic_hpet_scope(dmaru->hdr, iommu)) {
1233 pr_warn("DRHD %Lx: failed to parse managed IOAPIC/HPET\n",
1234 iommu->reg_phys);
1235 return -ENODEV;
1236 }
1237
1238 /* TODO: check all IOAPICs are covered by IOMMU */
1239
1240 /* Setup Interrupt-remapping now. */
1241 ret = intel_setup_irq_remapping(iommu);
1242 if (ret) {
1243 pr_err("DRHD %Lx: failed to allocate resource\n",
1244 iommu->reg_phys);
1245 ir_remove_ioapic_hpet_scope(iommu);
1246 return ret;
1247 }
1248
1249 if (!iommu->qi) {
1250 /* Clear previous faults. */
1251 dmar_fault(-1, iommu);
1252 iommu_disable_irq_remapping(iommu);
1253 dmar_disable_qi(iommu);
1254 }
1255
1256 /* Enable queued invalidation */
1257 ret = dmar_enable_qi(iommu);
1258 if (!ret) {
1259 iommu_set_irq_remapping(iommu, eim);
1260 } else {
1261 pr_err("DRHD %Lx: failed to enable queued invalidation, ecap %Lx, ret %d\n",
1262 iommu->reg_phys, iommu->ecap, ret);
1263 intel_teardown_irq_remapping(iommu);
1264 ir_remove_ioapic_hpet_scope(iommu);
1265 }
1266
1267 return ret;
1268}
1269
Jiang Liu6b197242014-11-09 22:47:58 +08001270int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert)
1271{
Jiang Liua7a3dad2014-11-09 22:48:00 +08001272 int ret = 0;
1273 struct intel_iommu *iommu = dmaru->iommu;
1274
1275 if (!irq_remapping_enabled)
1276 return 0;
1277 if (iommu == NULL)
1278 return -EINVAL;
1279 if (!ecap_ir_support(iommu->ecap))
1280 return 0;
1281
1282 if (insert) {
1283 if (!iommu->ir_table)
1284 ret = dmar_ir_add(dmaru, iommu);
1285 } else {
1286 if (iommu->ir_table) {
1287 if (!bitmap_empty(iommu->ir_table->bitmap,
1288 INTR_REMAP_TABLE_ENTRIES)) {
1289 ret = -EBUSY;
1290 } else {
1291 iommu_disable_irq_remapping(iommu);
1292 intel_teardown_irq_remapping(iommu);
1293 ir_remove_ioapic_hpet_scope(iommu);
1294 }
1295 }
1296 }
1297
1298 return ret;
Jiang Liu6b197242014-11-09 22:47:58 +08001299}