blob: 9b174893f0f5bd7c19810dc2840b3fef2728e9ad [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>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070011#include <asm/io_apic.h>
Yinghai Lu17483a12008-12-12 13:14:18 -080012#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +053013#include <asm/cpu.h>
Suresh Siddha8a8f4222012-03-30 11:47:08 -070014#include <asm/irq_remapping.h>
Weidong Hanf007e992009-05-23 00:41:15 +080015#include <asm/pci-direct.h>
Joerg Roedel5e2b9302012-03-30 11:47:05 -070016#include <asm/msidef.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070017
Suresh Siddha8a8f4222012-03-30 11:47:08 -070018#include "irq_remapping.h"
Joerg Roedel736baef2012-03-30 11:47:00 -070019
Joerg Roedeleef93fd2012-03-30 11:46:59 -070020struct 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)
Joerg Roedel0c3f1732012-03-30 11:47:02 -070035#define IRTE_DEST(dest) ((x2apic_mode) ? dest : dest << 8)
Joerg Roedeleef93fd2012-03-30 11:46:59 -070036
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070037static struct ioapic_scope ir_ioapic[MAX_IO_APICS];
Suresh Siddha20f30972009-08-04 12:07:08 -070038static struct hpet_scope ir_hpet[MAX_HPET_TBS];
39static int ir_ioapic_num, ir_hpet_num;
Chris Wrightd1423d52010-07-20 11:06:49 -070040
Jiang Liu3a5670e2014-02-19 14:07:33 +080041/*
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 */
Thomas Gleixner96f8e982011-07-19 16:28:19 +020052static DEFINE_RAW_SPINLOCK(irq_2_ir_lock);
Thomas Gleixnerd585d062010-10-10 12:34:27 +020053
Jiang Liu694835d2014-01-06 14:18:16 +080054static int __init parse_ioapics_under_ir(void);
55
Yinghai Lue420dfb2008-08-19 20:50:21 -070056static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
57{
Thomas Gleixnerdced35a2011-03-28 17:49:12 +020058 struct irq_cfg *cfg = irq_get_chip_data(irq);
Thomas Gleixner349d6762010-10-10 12:29:27 +020059 return cfg ? &cfg->irq_2_iommu : NULL;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080060}
61
Rashika Kheria6a7885c2013-12-18 12:04:27 +053062static int get_irte(int irq, struct irte *entry)
Suresh Siddhab6fcb332008-07-10 11:16:44 -070063{
Thomas Gleixnerd585d062010-10-10 12:34:27 +020064 struct irq_2_iommu *irq_iommu = irq_2_iommu(irq);
Suresh Siddha4c5502b2009-03-16 17:04:53 -070065 unsigned long flags;
Thomas Gleixnerd585d062010-10-10 12:34:27 +020066 int index;
Suresh Siddhab6fcb332008-07-10 11:16:44 -070067
Thomas Gleixnerd585d062010-10-10 12:34:27 +020068 if (!entry || !irq_iommu)
Suresh Siddhab6fcb332008-07-10 11:16:44 -070069 return -1;
70
Thomas Gleixner96f8e982011-07-19 16:28:19 +020071 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -070072
Yinghai Lue420dfb2008-08-19 20:50:21 -070073 index = irq_iommu->irte_index + irq_iommu->sub_handle;
74 *entry = *(irq_iommu->iommu->ir_table->base + index);
Suresh Siddhab6fcb332008-07-10 11:16:44 -070075
Thomas Gleixner96f8e982011-07-19 16:28:19 +020076 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -070077 return 0;
78}
79
Joerg Roedel263b5e82012-03-30 11:47:06 -070080static int alloc_irte(struct intel_iommu *iommu, int irq, u16 count)
Suresh Siddhab6fcb332008-07-10 11:16:44 -070081{
82 struct ir_table *table = iommu->ir_table;
Thomas Gleixnerd585d062010-10-10 12:34:27 +020083 struct irq_2_iommu *irq_iommu = irq_2_iommu(irq);
Joerg Roedel9b1b0e42012-09-26 12:44:45 +020084 struct irq_cfg *cfg = irq_get_chip_data(irq);
Suresh Siddhab6fcb332008-07-10 11:16:44 -070085 unsigned int mask = 0;
Suresh Siddha4c5502b2009-03-16 17:04:53 -070086 unsigned long flags;
Dan Carpenter9f4c7442014-01-09 08:32:36 +030087 int index;
Suresh Siddhab6fcb332008-07-10 11:16:44 -070088
Thomas Gleixnerd585d062010-10-10 12:34:27 +020089 if (!count || !irq_iommu)
Suresh Siddhab6fcb332008-07-10 11:16:44 -070090 return -1;
91
Suresh Siddhab6fcb332008-07-10 11:16:44 -070092 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
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200105 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Jiang Liu360eb3c52014-01-06 14:18:08 +0800106 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 }
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200117 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700118
119 return index;
120}
121
Yu Zhao704126a2009-01-04 16:28:52 +0800122static int qi_flush_iec(struct intel_iommu *iommu, int index, int mask)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700123{
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
Yu Zhao704126a2009-01-04 16:28:52 +0800130 return qi_submit_sync(&desc, iommu);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700131}
132
Joerg Roedel263b5e82012-03-30 11:47:06 -0700133static int map_irq_to_irte_handle(int irq, u16 *sub_handle)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700134{
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200135 struct irq_2_iommu *irq_iommu = irq_2_iommu(irq);
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700136 unsigned long flags;
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200137 int index;
138
139 if (!irq_iommu)
140 return -1;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700141
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200142 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700143 *sub_handle = irq_iommu->sub_handle;
144 index = irq_iommu->irte_index;
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200145 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700146 return index;
147}
148
Joerg Roedel263b5e82012-03-30 11:47:06 -0700149static int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index, u16 subhandle)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700150{
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200151 struct irq_2_iommu *irq_iommu = irq_2_iommu(irq);
Joerg Roedel9b1b0e42012-09-26 12:44:45 +0200152 struct irq_cfg *cfg = irq_get_chip_data(irq);
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700153 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700154
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200155 if (!irq_iommu)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800156 return -1;
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200157
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200158 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800159
Joerg Roedel9b1b0e42012-09-26 12:44:45 +0200160 cfg->remapped = 1;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700161 irq_iommu->iommu = iommu;
162 irq_iommu->irte_index = index;
163 irq_iommu->sub_handle = subhandle;
164 irq_iommu->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700165
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200166 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700167
168 return 0;
169}
170
Joerg Roedel263b5e82012-03-30 11:47:06 -0700171static int modify_irte(int irq, struct irte *irte_modified)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700172{
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200173 struct irq_2_iommu *irq_iommu = irq_2_iommu(irq);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700174 struct intel_iommu *iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700175 unsigned long flags;
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200176 struct irte *irte;
177 int rc, index;
178
179 if (!irq_iommu)
180 return -1;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700181
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200182 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700183
Yinghai Lue420dfb2008-08-19 20:50:21 -0700184 iommu = irq_iommu->iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700185
Yinghai Lue420dfb2008-08-19 20:50:21 -0700186 index = irq_iommu->irte_index + irq_iommu->sub_handle;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700187 irte = &iommu->ir_table->base[index];
188
Linus Torvaldsc513b672010-08-06 11:02:31 -0700189 set_64bit(&irte->low, irte_modified->low);
190 set_64bit(&irte->high, irte_modified->high);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700191 __iommu_flush_cache(iommu, irte, sizeof(*irte));
192
Yu Zhao704126a2009-01-04 16:28:52 +0800193 rc = qi_flush_iec(iommu, index, 0);
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200194 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yu Zhao704126a2009-01-04 16:28:52 +0800195
196 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700197}
198
Joerg Roedel263b5e82012-03-30 11:47:06 -0700199static struct intel_iommu *map_hpet_to_ir(u8 hpet_id)
Suresh Siddha20f30972009-08-04 12:07:08 -0700200{
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
Joerg Roedel263b5e82012-03-30 11:47:06 -0700209static struct intel_iommu *map_ioapic_to_ir(int apic)
Suresh Siddha89027d32008-07-10 11:16:56 -0700210{
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
Joerg Roedel263b5e82012-03-30 11:47:06 -0700219static struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
Suresh Siddha75c46fa2008-07-10 11:16:57 -0700220{
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
Weidong Hanc4658b42009-05-23 00:41:14 +0800230static 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++) {
Linus Torvaldsc513b672010-08-06 11:02:31 -0700246 set_64bit(&entry->low, 0);
247 set_64bit(&entry->high, 0);
Weidong Hanc4658b42009-05-23 00:41:14 +0800248 }
Jiang Liu360eb3c52014-01-06 14:18:08 +0800249 bitmap_release_region(iommu->ir_table->bitmap, index,
250 irq_iommu->irte_mask);
Weidong Hanc4658b42009-05-23 00:41:14 +0800251
252 return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
253}
254
Joerg Roedel9d619f62012-03-30 11:47:04 -0700255static int free_irte(int irq)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700256{
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200257 struct irq_2_iommu *irq_iommu = irq_2_iommu(irq);
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700258 unsigned long flags;
Thomas Gleixnerd585d062010-10-10 12:34:27 +0200259 int rc;
260
261 if (!irq_iommu)
262 return -1;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700263
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200264 raw_spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700265
Weidong Hanc4658b42009-05-23 00:41:14 +0800266 rc = clear_entries(irq_iommu);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700267
Yinghai Lue420dfb2008-08-19 20:50:21 -0700268 irq_iommu->iommu = NULL;
269 irq_iommu->irte_index = 0;
270 irq_iommu->sub_handle = 0;
271 irq_iommu->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700272
Thomas Gleixner96f8e982011-07-19 16:28:19 +0200273 raw_spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700274
Yu Zhao704126a2009-01-04 16:28:52 +0800275 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700276}
277
Weidong Hanf007e992009-05-23 00:41:15 +0800278/*
279 * source validation type
280 */
281#define SVT_NO_VERIFY 0x0 /* no verification is required */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300282#define SVT_VERIFY_SID_SQ 0x1 /* verify using SID and SQ fields */
Weidong Hanf007e992009-05-23 00:41:15 +0800283#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{
Chris Wrightd1423d52010-07-20 11:06:49 -0700306 if (disable_sourceid_checking)
307 svt = SVT_NO_VERIFY;
Weidong Hanf007e992009-05-23 00:41:15 +0800308 irte->svt = svt;
309 irte->sq = sq;
310 irte->sid = sid;
311}
312
Joerg Roedel263b5e82012-03-30 11:47:06 -0700313static int set_ioapic_sid(struct irte *irte, int apic)
Weidong Hanf007e992009-05-23 00:41:15 +0800314{
315 int i;
316 u16 sid = 0;
317
318 if (!irte)
319 return -1;
320
Jiang Liu3a5670e2014-02-19 14:07:33 +0800321 down_read(&dmar_global_lock);
Weidong Hanf007e992009-05-23 00:41:15 +0800322 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 }
Jiang Liu3a5670e2014-02-19 14:07:33 +0800328 up_read(&dmar_global_lock);
Weidong Hanf007e992009-05-23 00:41:15 +0800329
330 if (sid == 0) {
331 pr_warning("Failed to set source-id of IOAPIC (%d)\n", apic);
332 return -1;
333 }
334
Jiang Liu2fe2c602014-01-06 14:18:17 +0800335 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16, sid);
Weidong Hanf007e992009-05-23 00:41:15 +0800336
337 return 0;
338}
339
Joerg Roedel263b5e82012-03-30 11:47:06 -0700340static int set_hpet_sid(struct irte *irte, u8 id)
Suresh Siddha20f30972009-08-04 12:07:08 -0700341{
342 int i;
343 u16 sid = 0;
344
345 if (!irte)
346 return -1;
347
Jiang Liu3a5670e2014-02-19 14:07:33 +0800348 down_read(&dmar_global_lock);
Suresh Siddha20f30972009-08-04 12:07:08 -0700349 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 }
Jiang Liu3a5670e2014-02-19 14:07:33 +0800355 up_read(&dmar_global_lock);
Suresh Siddha20f30972009-08-04 12:07:08 -0700356
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
Joerg Roedel263b5e82012-03-30 11:47:06 -0700372static int set_msi_sid(struct irte *irte, struct pci_dev *dev)
Weidong Hanf007e992009-05-23 00:41:15 +0800373{
374 struct pci_dev *bridge;
375
376 if (!irte || !dev)
377 return -1;
378
379 /* PCIe device or Root Complex integrated PCI device */
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +0900380 if (pci_is_pcie(dev) || !dev->bus->parent) {
Weidong Hanf007e992009-05-23 00:41:15 +0800381 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16,
382 (dev->bus->number << 8) | dev->devfn);
383 return 0;
384 }
385
386 bridge = pci_find_upstream_pcie_bridge(dev);
387 if (bridge) {
Stefan Assmann45e829e2009-12-03 06:49:24 -0500388 if (pci_is_pcie(bridge))/* this is a PCIe-to-PCI/PCIX bridge */
Weidong Hanf007e992009-05-23 00:41:15 +0800389 set_irte_sid(irte, SVT_VERIFY_BUS, SQ_ALL_16,
390 (bridge->bus->number << 8) | dev->bus->number);
391 else /* this is a legacy PCI bridge */
392 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16,
393 (bridge->bus->number << 8) | bridge->devfn);
394 }
395
396 return 0;
397}
398
Suresh Siddha95a02e92012-03-30 11:47:07 -0700399static void iommu_set_irq_remapping(struct intel_iommu *iommu, int mode)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700400{
401 u64 addr;
David Woodhousec416daa2009-05-10 20:30:58 +0100402 u32 sts;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700403 unsigned long flags;
404
405 addr = virt_to_phys((void *)iommu->ir_table->base);
406
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200407 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700408
409 dmar_writeq(iommu->reg + DMAR_IRTA_REG,
410 (addr) | IR_X2APIC_MODE(mode) | INTR_REMAP_TABLE_REG_SIZE);
411
412 /* Set interrupt-remapping table pointer */
Han, Weidong161fde02009-04-03 17:15:47 +0800413 iommu->gcmd |= DMA_GCMD_SIRTP;
David Woodhousec416daa2009-05-10 20:30:58 +0100414 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700415
416 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
417 readl, (sts & DMA_GSTS_IRTPS), sts);
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200418 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700419
420 /*
421 * global invalidation of interrupt entry cache before enabling
422 * interrupt-remapping.
423 */
424 qi_global_iec(iommu);
425
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200426 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700427
428 /* Enable interrupt-remapping */
Suresh Siddha2ae21012008-07-10 11:16:43 -0700429 iommu->gcmd |= DMA_GCMD_IRE;
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800430 iommu->gcmd &= ~DMA_GCMD_CFI; /* Block compatibility-format MSIs */
David Woodhousec416daa2009-05-10 20:30:58 +0100431 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700432
433 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
434 readl, (sts & DMA_GSTS_IRES), sts);
435
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800436 /*
437 * With CFI clear in the Global Command register, we should be
438 * protected from dangerous (i.e. compatibility) interrupts
439 * regardless of x2apic status. Check just to be sure.
440 */
441 if (sts & DMA_GSTS_CFIS)
442 WARN(1, KERN_WARNING
443 "Compatibility-format IRQs enabled despite intr remapping;\n"
444 "you are vulnerable to IRQ injection.\n");
445
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200446 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700447}
448
449
Suresh Siddha95a02e92012-03-30 11:47:07 -0700450static int intel_setup_irq_remapping(struct intel_iommu *iommu, int mode)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700451{
452 struct ir_table *ir_table;
453 struct page *pages;
Jiang Liu360eb3c52014-01-06 14:18:08 +0800454 unsigned long *bitmap;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700455
456 ir_table = iommu->ir_table = kzalloc(sizeof(struct ir_table),
Suresh Siddhafa4b57c2009-03-16 17:05:05 -0700457 GFP_ATOMIC);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700458
459 if (!iommu->ir_table)
460 return -ENOMEM;
461
Suresh Siddha824cd752009-10-02 11:01:23 -0700462 pages = alloc_pages_node(iommu->node, GFP_ATOMIC | __GFP_ZERO,
463 INTR_REMAP_PAGE_ORDER);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700464
465 if (!pages) {
Jiang Liu360eb3c52014-01-06 14:18:08 +0800466 pr_err("IR%d: failed to allocate pages of order %d\n",
467 iommu->seq_id, INTR_REMAP_PAGE_ORDER);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700468 kfree(iommu->ir_table);
469 return -ENOMEM;
470 }
471
Jiang Liu360eb3c52014-01-06 14:18:08 +0800472 bitmap = kcalloc(BITS_TO_LONGS(INTR_REMAP_TABLE_ENTRIES),
473 sizeof(long), GFP_ATOMIC);
474 if (bitmap == NULL) {
475 pr_err("IR%d: failed to allocate bitmap\n", iommu->seq_id);
476 __free_pages(pages, INTR_REMAP_PAGE_ORDER);
477 kfree(ir_table);
478 return -ENOMEM;
479 }
480
Suresh Siddha2ae21012008-07-10 11:16:43 -0700481 ir_table->base = page_address(pages);
Jiang Liu360eb3c52014-01-06 14:18:08 +0800482 ir_table->bitmap = bitmap;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700483
Suresh Siddha95a02e92012-03-30 11:47:07 -0700484 iommu_set_irq_remapping(iommu, mode);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700485 return 0;
486}
487
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700488/*
489 * Disable Interrupt Remapping.
490 */
Suresh Siddha95a02e92012-03-30 11:47:07 -0700491static void iommu_disable_irq_remapping(struct intel_iommu *iommu)
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700492{
493 unsigned long flags;
494 u32 sts;
495
496 if (!ecap_ir_support(iommu->ecap))
497 return;
498
Fenghua Yub24696b2009-03-27 14:22:44 -0700499 /*
500 * global invalidation of interrupt entry cache before disabling
501 * interrupt-remapping.
502 */
503 qi_global_iec(iommu);
504
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200505 raw_spin_lock_irqsave(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700506
507 sts = dmar_readq(iommu->reg + DMAR_GSTS_REG);
508 if (!(sts & DMA_GSTS_IRES))
509 goto end;
510
511 iommu->gcmd &= ~DMA_GCMD_IRE;
512 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
513
514 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
515 readl, !(sts & DMA_GSTS_IRES), sts);
516
517end:
Thomas Gleixner1f5b3c32011-07-19 16:19:51 +0200518 raw_spin_unlock_irqrestore(&iommu->register_lock, flags);
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700519}
520
Suresh Siddha41750d32011-08-23 17:05:18 -0700521static int __init dmar_x2apic_optout(void)
522{
523 struct acpi_table_dmar *dmar;
524 dmar = (struct acpi_table_dmar *)dmar_tbl;
525 if (!dmar || no_x2apic_optout)
526 return 0;
527 return dmar->flags & DMAR_X2APIC_OPT_OUT;
528}
529
Suresh Siddha95a02e92012-03-30 11:47:07 -0700530static int __init intel_irq_remapping_supported(void)
Weidong Han93758232009-04-17 16:42:14 +0800531{
532 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +0800533 struct intel_iommu *iommu;
Weidong Han93758232009-04-17 16:42:14 +0800534
Suresh Siddha95a02e92012-03-30 11:47:07 -0700535 if (disable_irq_remap)
Weidong Han03ea8152009-04-17 16:42:15 +0800536 return 0;
Neil Horman03bbcb22013-04-16 16:38:32 -0400537 if (irq_remap_broken) {
Neil Horman05104a42013-09-27 12:53:35 -0400538 printk(KERN_WARNING
539 "This system BIOS has enabled interrupt remapping\n"
540 "on a chipset that contains an erratum making that\n"
541 "feature unstable. To maintain system stability\n"
542 "interrupt remapping is being disabled. Please\n"
543 "contact your BIOS vendor for an update\n");
544 add_taint(TAINT_FIRMWARE_WORKAROUND, LOCKDEP_STILL_OK);
Neil Horman03bbcb22013-04-16 16:38:32 -0400545 disable_irq_remap = 1;
546 return 0;
547 }
Weidong Han03ea8152009-04-17 16:42:15 +0800548
Youquan Song074835f2009-09-09 12:05:39 -0400549 if (!dmar_ir_support())
550 return 0;
551
Jiang Liu7c919772014-01-06 14:18:18 +0800552 for_each_iommu(iommu, drhd)
Weidong Han93758232009-04-17 16:42:14 +0800553 if (!ecap_ir_support(iommu->ecap))
554 return 0;
Weidong Han93758232009-04-17 16:42:14 +0800555
556 return 1;
557}
558
Suresh Siddha95a02e92012-03-30 11:47:07 -0700559static int __init intel_enable_irq_remapping(void)
Suresh Siddha2ae21012008-07-10 11:16:43 -0700560{
561 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +0800562 struct intel_iommu *iommu;
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800563 bool x2apic_present;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700564 int setup = 0;
Suresh Siddha41750d32011-08-23 17:05:18 -0700565 int eim = 0;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700566
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800567 x2apic_present = x2apic_supported();
568
Youquan Songe936d072009-09-07 10:58:07 -0400569 if (parse_ioapics_under_ir() != 1) {
570 printk(KERN_INFO "Not enable interrupt remapping\n");
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800571 goto error;
Youquan Songe936d072009-09-07 10:58:07 -0400572 }
573
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800574 if (x2apic_present) {
Jiang Liub977e732014-01-06 14:18:14 +0800575 pr_info("Queued invalidation will be enabled to support x2apic and Intr-remapping.\n");
576
Suresh Siddha41750d32011-08-23 17:05:18 -0700577 eim = !dmar_x2apic_optout();
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800578 if (!eim)
579 printk(KERN_WARNING
580 "Your BIOS is broken and requested that x2apic be disabled.\n"
581 "This will slightly decrease performance.\n"
582 "Use 'intremap=no_x2apic_optout' to override BIOS request.\n");
Suresh Siddha41750d32011-08-23 17:05:18 -0700583 }
584
Jiang Liu7c919772014-01-06 14:18:18 +0800585 for_each_iommu(iommu, drhd) {
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700586 /*
Han, Weidong34aaaa92009-04-04 17:21:26 +0800587 * If the queued invalidation is already initialized,
588 * shouldn't disable it.
589 */
590 if (iommu->qi)
591 continue;
592
593 /*
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700594 * Clear previous faults.
595 */
596 dmar_fault(-1, iommu);
597
598 /*
599 * Disable intr remapping and queued invalidation, if already
600 * enabled prior to OS handover.
601 */
Suresh Siddha95a02e92012-03-30 11:47:07 -0700602 iommu_disable_irq_remapping(iommu);
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700603
604 dmar_disable_qi(iommu);
605 }
606
Suresh Siddha2ae21012008-07-10 11:16:43 -0700607 /*
608 * check for the Interrupt-remapping support
609 */
Jiang Liu7c919772014-01-06 14:18:18 +0800610 for_each_iommu(iommu, drhd) {
Suresh Siddha2ae21012008-07-10 11:16:43 -0700611 if (!ecap_ir_support(iommu->ecap))
612 continue;
613
614 if (eim && !ecap_eim_support(iommu->ecap)) {
615 printk(KERN_INFO "DRHD %Lx: EIM not supported by DRHD, "
616 " ecap %Lx\n", drhd->reg_base_addr, iommu->ecap);
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800617 goto error;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700618 }
619 }
620
621 /*
622 * Enable queued invalidation for all the DRHD's.
623 */
Jiang Liu7c919772014-01-06 14:18:18 +0800624 for_each_iommu(iommu, drhd) {
625 int ret = dmar_enable_qi(iommu);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700626
627 if (ret) {
628 printk(KERN_ERR "DRHD %Lx: failed to enable queued, "
629 " invalidation, ecap %Lx, ret %d\n",
630 drhd->reg_base_addr, iommu->ecap, ret);
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800631 goto error;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700632 }
633 }
634
635 /*
636 * Setup Interrupt-remapping for all the DRHD's now.
637 */
Jiang Liu7c919772014-01-06 14:18:18 +0800638 for_each_iommu(iommu, drhd) {
Suresh Siddha2ae21012008-07-10 11:16:43 -0700639 if (!ecap_ir_support(iommu->ecap))
640 continue;
641
Suresh Siddha95a02e92012-03-30 11:47:07 -0700642 if (intel_setup_irq_remapping(iommu, eim))
Suresh Siddha2ae21012008-07-10 11:16:43 -0700643 goto error;
644
645 setup = 1;
646 }
647
648 if (!setup)
649 goto error;
650
Suresh Siddha95a02e92012-03-30 11:47:07 -0700651 irq_remapping_enabled = 1;
Joerg Roedelafcc8a42012-09-26 12:44:36 +0200652
653 /*
654 * VT-d has a different layout for IO-APIC entries when
655 * interrupt remapping is enabled. So it needs a special routine
656 * to print IO-APIC entries for debugging purposes too.
657 */
658 x86_io_apic_ops.print_entries = intel_ir_io_apic_print_entries;
659
Suresh Siddha41750d32011-08-23 17:05:18 -0700660 pr_info("Enabled IRQ remapping in %s mode\n", eim ? "x2apic" : "xapic");
Suresh Siddha2ae21012008-07-10 11:16:43 -0700661
Suresh Siddha41750d32011-08-23 17:05:18 -0700662 return eim ? IRQ_REMAP_X2APIC_MODE : IRQ_REMAP_XAPIC_MODE;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700663
664error:
665 /*
666 * handle error condition gracefully here!
667 */
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800668
669 if (x2apic_present)
Andy Lutomirskid01140d2013-05-13 15:22:42 -0700670 pr_warn("Failed to enable irq remapping. You are vulnerable to irq-injection attacks.\n");
Andy Lutomirskiaf8d1022013-02-01 14:57:43 -0800671
Suresh Siddha2ae21012008-07-10 11:16:43 -0700672 return -1;
673}
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700674
Suresh Siddha20f30972009-08-04 12:07:08 -0700675static void ir_parse_one_hpet_scope(struct acpi_dmar_device_scope *scope,
676 struct intel_iommu *iommu)
677{
678 struct acpi_dmar_pci_path *path;
679 u8 bus;
680 int count;
681
682 bus = scope->bus;
683 path = (struct acpi_dmar_pci_path *)(scope + 1);
684 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
685 / sizeof(struct acpi_dmar_pci_path);
686
687 while (--count > 0) {
688 /*
689 * Access PCI directly due to the PCI
690 * subsystem isn't initialized yet.
691 */
Lv Zhengfa5f5082013-10-31 09:30:22 +0800692 bus = read_pci_config_byte(bus, path->device, path->function,
Suresh Siddha20f30972009-08-04 12:07:08 -0700693 PCI_SECONDARY_BUS);
694 path++;
695 }
696 ir_hpet[ir_hpet_num].bus = bus;
Lv Zhengfa5f5082013-10-31 09:30:22 +0800697 ir_hpet[ir_hpet_num].devfn = PCI_DEVFN(path->device, path->function);
Suresh Siddha20f30972009-08-04 12:07:08 -0700698 ir_hpet[ir_hpet_num].iommu = iommu;
699 ir_hpet[ir_hpet_num].id = scope->enumeration_id;
700 ir_hpet_num++;
701}
702
Weidong Hanf007e992009-05-23 00:41:15 +0800703static void ir_parse_one_ioapic_scope(struct acpi_dmar_device_scope *scope,
704 struct intel_iommu *iommu)
705{
706 struct acpi_dmar_pci_path *path;
707 u8 bus;
708 int count;
709
710 bus = scope->bus;
711 path = (struct acpi_dmar_pci_path *)(scope + 1);
712 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
713 / sizeof(struct acpi_dmar_pci_path);
714
715 while (--count > 0) {
716 /*
717 * Access PCI directly due to the PCI
718 * subsystem isn't initialized yet.
719 */
Lv Zhengfa5f5082013-10-31 09:30:22 +0800720 bus = read_pci_config_byte(bus, path->device, path->function,
Weidong Hanf007e992009-05-23 00:41:15 +0800721 PCI_SECONDARY_BUS);
722 path++;
723 }
724
725 ir_ioapic[ir_ioapic_num].bus = bus;
Lv Zhengfa5f5082013-10-31 09:30:22 +0800726 ir_ioapic[ir_ioapic_num].devfn = PCI_DEVFN(path->device, path->function);
Weidong Hanf007e992009-05-23 00:41:15 +0800727 ir_ioapic[ir_ioapic_num].iommu = iommu;
728 ir_ioapic[ir_ioapic_num].id = scope->enumeration_id;
729 ir_ioapic_num++;
730}
731
Suresh Siddha20f30972009-08-04 12:07:08 -0700732static int ir_parse_ioapic_hpet_scope(struct acpi_dmar_header *header,
733 struct intel_iommu *iommu)
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700734{
735 struct acpi_dmar_hardware_unit *drhd;
736 struct acpi_dmar_device_scope *scope;
737 void *start, *end;
738
739 drhd = (struct acpi_dmar_hardware_unit *)header;
740
741 start = (void *)(drhd + 1);
742 end = ((void *)drhd) + header->length;
743
744 while (start < end) {
745 scope = start;
746 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_IOAPIC) {
747 if (ir_ioapic_num == MAX_IO_APICS) {
748 printk(KERN_WARNING "Exceeded Max IO APICS\n");
749 return -1;
750 }
751
Yinghai Lu680a7522010-04-08 19:58:23 +0100752 printk(KERN_INFO "IOAPIC id %d under DRHD base "
753 " 0x%Lx IOMMU %d\n", scope->enumeration_id,
754 drhd->address, iommu->seq_id);
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700755
Weidong Hanf007e992009-05-23 00:41:15 +0800756 ir_parse_one_ioapic_scope(scope, iommu);
Suresh Siddha20f30972009-08-04 12:07:08 -0700757 } else if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_HPET) {
758 if (ir_hpet_num == MAX_HPET_TBS) {
759 printk(KERN_WARNING "Exceeded Max HPET blocks\n");
760 return -1;
761 }
762
763 printk(KERN_INFO "HPET id %d under DRHD base"
764 " 0x%Lx\n", scope->enumeration_id,
765 drhd->address);
766
767 ir_parse_one_hpet_scope(scope, iommu);
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700768 }
769 start += scope->length;
770 }
771
772 return 0;
773}
774
775/*
776 * Finds the assocaition between IOAPIC's and its Interrupt-remapping
777 * hardware unit.
778 */
Jiang Liu694835d2014-01-06 14:18:16 +0800779static int __init parse_ioapics_under_ir(void)
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700780{
781 struct dmar_drhd_unit *drhd;
Jiang Liu7c919772014-01-06 14:18:18 +0800782 struct intel_iommu *iommu;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700783 int ir_supported = 0;
Seth Forshee32ab31e2012-08-08 08:27:03 -0500784 int ioapic_idx;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700785
Jiang Liu7c919772014-01-06 14:18:18 +0800786 for_each_iommu(iommu, drhd)
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700787 if (ecap_ir_support(iommu->ecap)) {
Suresh Siddha20f30972009-08-04 12:07:08 -0700788 if (ir_parse_ioapic_hpet_scope(drhd->hdr, iommu))
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700789 return -1;
790
791 ir_supported = 1;
792 }
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700793
Seth Forshee32ab31e2012-08-08 08:27:03 -0500794 if (!ir_supported)
795 return 0;
796
797 for (ioapic_idx = 0; ioapic_idx < nr_ioapics; ioapic_idx++) {
798 int ioapic_id = mpc_ioapic_id(ioapic_idx);
799 if (!map_ioapic_to_ir(ioapic_id)) {
800 pr_err(FW_BUG "ioapic %d has no mapping iommu, "
801 "interrupt remapping will be disabled\n",
802 ioapic_id);
803 return -1;
804 }
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700805 }
806
Seth Forshee32ab31e2012-08-08 08:27:03 -0500807 return 1;
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700808}
Fenghua Yub24696b2009-03-27 14:22:44 -0700809
Rashika Kheria6a7885c2013-12-18 12:04:27 +0530810static int __init ir_dev_scope_init(void)
Suresh Siddhac2c72862011-08-23 17:05:19 -0700811{
Jiang Liu3a5670e2014-02-19 14:07:33 +0800812 int ret;
813
Suresh Siddha95a02e92012-03-30 11:47:07 -0700814 if (!irq_remapping_enabled)
Suresh Siddhac2c72862011-08-23 17:05:19 -0700815 return 0;
816
Jiang Liu3a5670e2014-02-19 14:07:33 +0800817 down_write(&dmar_global_lock);
818 ret = dmar_dev_scope_init();
819 up_write(&dmar_global_lock);
820
821 return ret;
Suresh Siddhac2c72862011-08-23 17:05:19 -0700822}
823rootfs_initcall(ir_dev_scope_init);
824
Suresh Siddha95a02e92012-03-30 11:47:07 -0700825static void disable_irq_remapping(void)
Fenghua Yub24696b2009-03-27 14:22:44 -0700826{
827 struct dmar_drhd_unit *drhd;
828 struct intel_iommu *iommu = NULL;
829
830 /*
831 * Disable Interrupt-remapping for all the DRHD's now.
832 */
833 for_each_iommu(iommu, drhd) {
834 if (!ecap_ir_support(iommu->ecap))
835 continue;
836
Suresh Siddha95a02e92012-03-30 11:47:07 -0700837 iommu_disable_irq_remapping(iommu);
Fenghua Yub24696b2009-03-27 14:22:44 -0700838 }
839}
840
Suresh Siddha95a02e92012-03-30 11:47:07 -0700841static int reenable_irq_remapping(int eim)
Fenghua Yub24696b2009-03-27 14:22:44 -0700842{
843 struct dmar_drhd_unit *drhd;
844 int setup = 0;
845 struct intel_iommu *iommu = NULL;
846
847 for_each_iommu(iommu, drhd)
848 if (iommu->qi)
849 dmar_reenable_qi(iommu);
850
851 /*
852 * Setup Interrupt-remapping for all the DRHD's now.
853 */
854 for_each_iommu(iommu, drhd) {
855 if (!ecap_ir_support(iommu->ecap))
856 continue;
857
858 /* Set up interrupt remapping for iommu.*/
Suresh Siddha95a02e92012-03-30 11:47:07 -0700859 iommu_set_irq_remapping(iommu, eim);
Fenghua Yub24696b2009-03-27 14:22:44 -0700860 setup = 1;
861 }
862
863 if (!setup)
864 goto error;
865
866 return 0;
867
868error:
869 /*
870 * handle error condition gracefully here!
871 */
872 return -1;
873}
874
Joerg Roedel0c3f1732012-03-30 11:47:02 -0700875static void prepare_irte(struct irte *irte, int vector,
876 unsigned int dest)
877{
878 memset(irte, 0, sizeof(*irte));
879
880 irte->present = 1;
881 irte->dst_mode = apic->irq_dest_mode;
882 /*
883 * Trigger mode in the IRTE will always be edge, and for IO-APIC, the
884 * actual level or edge trigger will be setup in the IO-APIC
885 * RTE. This will help simplify level triggered irq migration.
886 * For more details, see the comments (in io_apic.c) explainig IO-APIC
887 * irq migration in the presence of interrupt-remapping.
888 */
889 irte->trigger_mode = 0;
890 irte->dlvry_mode = apic->irq_delivery_mode;
891 irte->vector = vector;
892 irte->dest_id = IRTE_DEST(dest);
893 irte->redir_hint = 1;
894}
895
896static int intel_setup_ioapic_entry(int irq,
897 struct IO_APIC_route_entry *route_entry,
898 unsigned int destination, int vector,
899 struct io_apic_irq_attr *attr)
900{
901 int ioapic_id = mpc_ioapic_id(attr->ioapic);
Jiang Liu3a5670e2014-02-19 14:07:33 +0800902 struct intel_iommu *iommu;
Joerg Roedel0c3f1732012-03-30 11:47:02 -0700903 struct IR_IO_APIC_route_entry *entry;
904 struct irte irte;
905 int index;
906
Jiang Liu3a5670e2014-02-19 14:07:33 +0800907 down_read(&dmar_global_lock);
908 iommu = map_ioapic_to_ir(ioapic_id);
Joerg Roedel0c3f1732012-03-30 11:47:02 -0700909 if (!iommu) {
910 pr_warn("No mapping iommu for ioapic %d\n", ioapic_id);
Jiang Liu3a5670e2014-02-19 14:07:33 +0800911 index = -ENODEV;
912 } else {
913 index = alloc_irte(iommu, irq, 1);
914 if (index < 0) {
915 pr_warn("Failed to allocate IRTE for ioapic %d\n",
916 ioapic_id);
917 index = -ENOMEM;
918 }
Joerg Roedel0c3f1732012-03-30 11:47:02 -0700919 }
Jiang Liu3a5670e2014-02-19 14:07:33 +0800920 up_read(&dmar_global_lock);
921 if (index < 0)
922 return index;
Joerg Roedel0c3f1732012-03-30 11:47:02 -0700923
924 prepare_irte(&irte, vector, destination);
925
926 /* Set source-id of interrupt request */
927 set_ioapic_sid(&irte, ioapic_id);
928
929 modify_irte(irq, &irte);
930
931 apic_printk(APIC_VERBOSE, KERN_DEBUG "IOAPIC[%d]: "
932 "Set IRTE entry (P:%d FPD:%d Dst_Mode:%d "
933 "Redir_hint:%d Trig_Mode:%d Dlvry_Mode:%X "
934 "Avail:%X Vector:%02X Dest:%08X "
935 "SID:%04X SQ:%X SVT:%X)\n",
936 attr->ioapic, irte.present, irte.fpd, irte.dst_mode,
937 irte.redir_hint, irte.trigger_mode, irte.dlvry_mode,
938 irte.avail, irte.vector, irte.dest_id,
939 irte.sid, irte.sq, irte.svt);
940
Jiang Liu3a5670e2014-02-19 14:07:33 +0800941 entry = (struct IR_IO_APIC_route_entry *)route_entry;
Joerg Roedel0c3f1732012-03-30 11:47:02 -0700942 memset(entry, 0, sizeof(*entry));
943
944 entry->index2 = (index >> 15) & 0x1;
945 entry->zero = 0;
946 entry->format = 1;
947 entry->index = (index & 0x7fff);
948 /*
949 * IO-APIC RTE will be configured with virtual vector.
950 * irq handler will do the explicit EOI to the io-apic.
951 */
952 entry->vector = attr->ioapic_pin;
953 entry->mask = 0; /* enable IRQ */
954 entry->trigger = attr->trigger;
955 entry->polarity = attr->polarity;
956
957 /* Mask level triggered irqs.
958 * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
959 */
960 if (attr->trigger)
961 entry->mask = 1;
962
963 return 0;
964}
965
Joerg Roedel4c1bad62012-03-30 11:47:03 -0700966/*
967 * Migrate the IO-APIC irq in the presence of intr-remapping.
968 *
969 * For both level and edge triggered, irq migration is a simple atomic
970 * update(of vector and cpu destination) of IRTE and flush the hardware cache.
971 *
972 * For level triggered, we eliminate the io-apic RTE modification (with the
973 * updated vector information), by using a virtual vector (io-apic pin number).
974 * Real vector that is used for interrupting cpu will be coming from
975 * the interrupt-remapping table entry.
976 *
977 * As the migration is a simple atomic update of IRTE, the same mechanism
978 * is used to migrate MSI irq's in the presence of interrupt-remapping.
979 */
980static int
981intel_ioapic_set_affinity(struct irq_data *data, const struct cpumask *mask,
982 bool force)
983{
984 struct irq_cfg *cfg = data->chip_data;
985 unsigned int dest, irq = data->irq;
986 struct irte irte;
Alexander Gordeevff164322012-06-07 15:15:59 +0200987 int err;
Joerg Roedel4c1bad62012-03-30 11:47:03 -0700988
Suresh Siddha7eb9ae02012-06-14 18:28:49 -0700989 if (!config_enabled(CONFIG_SMP))
990 return -EINVAL;
991
Joerg Roedel4c1bad62012-03-30 11:47:03 -0700992 if (!cpumask_intersects(mask, cpu_online_mask))
993 return -EINVAL;
994
995 if (get_irte(irq, &irte))
996 return -EBUSY;
997
Alexander Gordeevff164322012-06-07 15:15:59 +0200998 err = assign_irq_vector(irq, cfg, mask);
999 if (err)
1000 return err;
Joerg Roedel4c1bad62012-03-30 11:47:03 -07001001
Alexander Gordeevff164322012-06-07 15:15:59 +02001002 err = apic->cpu_mask_to_apicid_and(cfg->domain, mask, &dest);
1003 if (err) {
Dan Carpentered88bed2012-06-12 19:26:33 +03001004 if (assign_irq_vector(irq, cfg, data->affinity))
Alexander Gordeevff164322012-06-07 15:15:59 +02001005 pr_err("Failed to recover vector for irq %d\n", irq);
1006 return err;
1007 }
Joerg Roedel4c1bad62012-03-30 11:47:03 -07001008
1009 irte.vector = cfg->vector;
1010 irte.dest_id = IRTE_DEST(dest);
1011
1012 /*
1013 * Atomically updates the IRTE with the new destination, vector
1014 * and flushes the interrupt entry cache.
1015 */
1016 modify_irte(irq, &irte);
1017
1018 /*
1019 * After this point, all the interrupts will start arriving
1020 * at the new destination. So, time to cleanup the previous
1021 * vector allocation.
1022 */
1023 if (cfg->move_in_progress)
1024 send_cleanup_vector(cfg);
1025
1026 cpumask_copy(data->affinity, mask);
1027 return 0;
1028}
Joerg Roedel0c3f1732012-03-30 11:47:02 -07001029
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001030static void intel_compose_msi_msg(struct pci_dev *pdev,
1031 unsigned int irq, unsigned int dest,
1032 struct msi_msg *msg, u8 hpet_id)
1033{
1034 struct irq_cfg *cfg;
1035 struct irte irte;
Suresh Siddhac558df42012-05-08 00:08:54 -07001036 u16 sub_handle = 0;
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001037 int ir_index;
1038
1039 cfg = irq_get_chip_data(irq);
1040
1041 ir_index = map_irq_to_irte_handle(irq, &sub_handle);
1042 BUG_ON(ir_index == -1);
1043
1044 prepare_irte(&irte, cfg->vector, dest);
1045
1046 /* Set source-id of interrupt request */
1047 if (pdev)
1048 set_msi_sid(&irte, pdev);
1049 else
1050 set_hpet_sid(&irte, hpet_id);
1051
1052 modify_irte(irq, &irte);
1053
1054 msg->address_hi = MSI_ADDR_BASE_HI;
1055 msg->data = sub_handle;
1056 msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
1057 MSI_ADDR_IR_SHV |
1058 MSI_ADDR_IR_INDEX1(ir_index) |
1059 MSI_ADDR_IR_INDEX2(ir_index);
1060}
1061
1062/*
1063 * Map the PCI dev to the corresponding remapping hardware unit
1064 * and allocate 'nvec' consecutive interrupt-remapping table entries
1065 * in it.
1066 */
1067static int intel_msi_alloc_irq(struct pci_dev *dev, int irq, int nvec)
1068{
1069 struct intel_iommu *iommu;
1070 int index;
1071
Jiang Liu3a5670e2014-02-19 14:07:33 +08001072 down_read(&dmar_global_lock);
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001073 iommu = map_dev_to_ir(dev);
1074 if (!iommu) {
1075 printk(KERN_ERR
1076 "Unable to map PCI %s to iommu\n", pci_name(dev));
Jiang Liu3a5670e2014-02-19 14:07:33 +08001077 index = -ENOENT;
1078 } else {
1079 index = alloc_irte(iommu, irq, nvec);
1080 if (index < 0) {
1081 printk(KERN_ERR
1082 "Unable to allocate %d IRTE for PCI %s\n",
1083 nvec, pci_name(dev));
1084 index = -ENOSPC;
1085 }
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001086 }
Jiang Liu3a5670e2014-02-19 14:07:33 +08001087 up_read(&dmar_global_lock);
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001088
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001089 return index;
1090}
1091
1092static int intel_msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
1093 int index, int sub_handle)
1094{
1095 struct intel_iommu *iommu;
Jiang Liu3a5670e2014-02-19 14:07:33 +08001096 int ret = -ENOENT;
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001097
Jiang Liu3a5670e2014-02-19 14:07:33 +08001098 down_read(&dmar_global_lock);
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001099 iommu = map_dev_to_ir(pdev);
Jiang Liu3a5670e2014-02-19 14:07:33 +08001100 if (iommu) {
1101 /*
1102 * setup the mapping between the irq and the IRTE
1103 * base index, the sub_handle pointing to the
1104 * appropriate interrupt remap table entry.
1105 */
1106 set_irte_irq(irq, iommu, index, sub_handle);
1107 ret = 0;
1108 }
1109 up_read(&dmar_global_lock);
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001110
Jiang Liu3a5670e2014-02-19 14:07:33 +08001111 return ret;
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001112}
1113
1114static int intel_setup_hpet_msi(unsigned int irq, unsigned int id)
1115{
Jiang Liu3a5670e2014-02-19 14:07:33 +08001116 int ret = -1;
1117 struct intel_iommu *iommu;
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001118 int index;
1119
Jiang Liu3a5670e2014-02-19 14:07:33 +08001120 down_read(&dmar_global_lock);
1121 iommu = map_hpet_to_ir(id);
1122 if (iommu) {
1123 index = alloc_irte(iommu, irq, 1);
1124 if (index >= 0)
1125 ret = 0;
1126 }
1127 up_read(&dmar_global_lock);
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001128
Jiang Liu3a5670e2014-02-19 14:07:33 +08001129 return ret;
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001130}
1131
Joerg Roedel736baef2012-03-30 11:47:00 -07001132struct irq_remap_ops intel_irq_remap_ops = {
Suresh Siddha95a02e92012-03-30 11:47:07 -07001133 .supported = intel_irq_remapping_supported,
1134 .prepare = dmar_table_init,
1135 .enable = intel_enable_irq_remapping,
1136 .disable = disable_irq_remapping,
1137 .reenable = reenable_irq_remapping,
Joerg Roedel4f3d8b62012-03-30 11:47:01 -07001138 .enable_faulting = enable_drhd_fault_handling,
Joerg Roedel0c3f1732012-03-30 11:47:02 -07001139 .setup_ioapic_entry = intel_setup_ioapic_entry,
Joerg Roedel4c1bad62012-03-30 11:47:03 -07001140 .set_affinity = intel_ioapic_set_affinity,
Joerg Roedel9d619f62012-03-30 11:47:04 -07001141 .free_irq = free_irte,
Joerg Roedel5e2b9302012-03-30 11:47:05 -07001142 .compose_msi_msg = intel_compose_msi_msg,
1143 .msi_alloc_irq = intel_msi_alloc_irq,
1144 .msi_setup_irq = intel_msi_setup_irq,
1145 .setup_hpet_msi = intel_setup_hpet_msi,
Joerg Roedel736baef2012-03-30 11:47:00 -07001146};