blob: ac065144c01cbff2ca57846b6b3c6a9153935498 [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>
4#include <linux/jiffies.h>
5#include <linux/pci.h>
Suresh Siddhab6fcb332008-07-10 11:16:44 -07006#include <linux/irq.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -07007#include <asm/io_apic.h>
Yinghai Lu17483a12008-12-12 13:14:18 -08008#include <asm/smp.h>
Jaswinder Singh Rajput6d652ea2009-01-07 21:38:59 +05309#include <asm/cpu.h>
Kay, Allen M38717942008-09-09 18:37:29 +030010#include <linux/intel-iommu.h>
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070011#include "intr_remapping.h"
Alexander Beregalov46f06b722009-04-06 16:45:28 +010012#include <acpi/acpi.h>
Weidong Hanf007e992009-05-23 00:41:15 +080013#include <asm/pci-direct.h>
14#include "pci.h"
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -070015
16static struct ioapic_scope ir_ioapic[MAX_IO_APICS];
17static int ir_ioapic_num;
Suresh Siddha2ae21012008-07-10 11:16:43 -070018int intr_remapping_enabled;
19
Weidong Han03ea8152009-04-17 16:42:15 +080020static int disable_intremap;
21static __init int setup_nointremap(char *str)
22{
23 disable_intremap = 1;
24 return 0;
25}
26early_param("nointremap", setup_nointremap);
27
Yinghai Lu5aeecaf2008-08-19 20:49:59 -070028struct irq_2_iommu {
Suresh Siddhab6fcb332008-07-10 11:16:44 -070029 struct intel_iommu *iommu;
30 u16 irte_index;
31 u16 sub_handle;
32 u8 irte_mask;
Yinghai Lu5aeecaf2008-08-19 20:49:59 -070033};
34
Yinghai Lud7e51e62009-01-07 15:03:13 -080035#ifdef CONFIG_GENERIC_HARDIRQS
Yinghai Lu85ac16d2009-04-27 18:00:38 -070036static struct irq_2_iommu *get_one_free_irq_2_iommu(int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080037{
38 struct irq_2_iommu *iommu;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080039
40 iommu = kzalloc_node(sizeof(*iommu), GFP_ATOMIC, node);
Yinghai Lu85ac16d2009-04-27 18:00:38 -070041 printk(KERN_DEBUG "alloc irq_2_iommu on node %d\n", node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080042
43 return iommu;
44}
Yinghai Lue420dfb2008-08-19 20:50:21 -070045
46static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
47{
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080048 struct irq_desc *desc;
49
50 desc = irq_to_desc(irq);
51
52 if (WARN_ON_ONCE(!desc))
53 return NULL;
54
55 return desc->irq_2_iommu;
56}
57
Yinghai Lu85ac16d2009-04-27 18:00:38 -070058static struct irq_2_iommu *irq_2_iommu_alloc_node(unsigned int irq, int node)
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080059{
60 struct irq_desc *desc;
61 struct irq_2_iommu *irq_iommu;
62
63 /*
64 * alloc irq desc if not allocated already.
65 */
Yinghai Lu85ac16d2009-04-27 18:00:38 -070066 desc = irq_to_desc_alloc_node(irq, node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080067 if (!desc) {
68 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
69 return NULL;
70 }
71
72 irq_iommu = desc->irq_2_iommu;
73
74 if (!irq_iommu)
Yinghai Lu85ac16d2009-04-27 18:00:38 -070075 desc->irq_2_iommu = get_one_free_irq_2_iommu(node);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080076
77 return desc->irq_2_iommu;
Yinghai Lue420dfb2008-08-19 20:50:21 -070078}
Thomas Gleixnerd6c88a52008-10-15 15:27:23 +020079
Yinghai Lue420dfb2008-08-19 20:50:21 -070080static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
81{
Yinghai Lu85ac16d2009-04-27 18:00:38 -070082 return irq_2_iommu_alloc_node(irq, cpu_to_node(boot_cpu_id));
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -080083}
84
85#else /* !CONFIG_SPARSE_IRQ */
86
87static struct irq_2_iommu irq_2_iommuX[NR_IRQS];
88
89static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
90{
91 if (irq < nr_irqs)
92 return &irq_2_iommuX[irq];
93
94 return NULL;
95}
96static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
97{
Yinghai Lue420dfb2008-08-19 20:50:21 -070098 return irq_2_iommu(irq);
99}
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800100#endif
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700101
102static DEFINE_SPINLOCK(irq_2_ir_lock);
103
Yinghai Lue420dfb2008-08-19 20:50:21 -0700104static struct irq_2_iommu *valid_irq_2_iommu(unsigned int irq)
105{
106 struct irq_2_iommu *irq_iommu;
107
108 irq_iommu = irq_2_iommu(irq);
109
110 if (!irq_iommu)
111 return NULL;
112
113 if (!irq_iommu->iommu)
114 return NULL;
115
116 return irq_iommu;
117}
118
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700119int irq_remapped(int irq)
120{
Yinghai Lue420dfb2008-08-19 20:50:21 -0700121 return valid_irq_2_iommu(irq) != NULL;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700122}
123
124int get_irte(int irq, struct irte *entry)
125{
126 int index;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700127 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700128 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700129
Yinghai Lue420dfb2008-08-19 20:50:21 -0700130 if (!entry)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700131 return -1;
132
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700133 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700134 irq_iommu = valid_irq_2_iommu(irq);
135 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700136 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700137 return -1;
138 }
139
Yinghai Lue420dfb2008-08-19 20:50:21 -0700140 index = irq_iommu->irte_index + irq_iommu->sub_handle;
141 *entry = *(irq_iommu->iommu->ir_table->base + index);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700142
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700143 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700144 return 0;
145}
146
147int alloc_irte(struct intel_iommu *iommu, int irq, u16 count)
148{
149 struct ir_table *table = iommu->ir_table;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700150 struct irq_2_iommu *irq_iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700151 u16 index, start_index;
152 unsigned int mask = 0;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700153 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700154 int i;
155
156 if (!count)
157 return -1;
158
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800159#ifndef CONFIG_SPARSE_IRQ
Yinghai Lue420dfb2008-08-19 20:50:21 -0700160 /* protect irq_2_iommu_alloc later */
161 if (irq >= nr_irqs)
162 return -1;
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800163#endif
Yinghai Lue420dfb2008-08-19 20:50:21 -0700164
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700165 /*
166 * start the IRTE search from index 0.
167 */
168 index = start_index = 0;
169
170 if (count > 1) {
171 count = __roundup_pow_of_two(count);
172 mask = ilog2(count);
173 }
174
175 if (mask > ecap_max_handle_mask(iommu->ecap)) {
176 printk(KERN_ERR
177 "Requested mask %x exceeds the max invalidation handle"
178 " mask value %Lx\n", mask,
179 ecap_max_handle_mask(iommu->ecap));
180 return -1;
181 }
182
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700183 spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700184 do {
185 for (i = index; i < index + count; i++)
186 if (table->base[i].present)
187 break;
188 /* empty index found */
189 if (i == index + count)
190 break;
191
192 index = (index + count) % INTR_REMAP_TABLE_ENTRIES;
193
194 if (index == start_index) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700195 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700196 printk(KERN_ERR "can't allocate an IRTE\n");
197 return -1;
198 }
199 } while (1);
200
201 for (i = index; i < index + count; i++)
202 table->base[i].present = 1;
203
Yinghai Lue420dfb2008-08-19 20:50:21 -0700204 irq_iommu = irq_2_iommu_alloc(irq);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800205 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700206 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800207 printk(KERN_ERR "can't allocate irq_2_iommu\n");
208 return -1;
209 }
210
Yinghai Lue420dfb2008-08-19 20:50:21 -0700211 irq_iommu->iommu = iommu;
212 irq_iommu->irte_index = index;
213 irq_iommu->sub_handle = 0;
214 irq_iommu->irte_mask = mask;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700215
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700216 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700217
218 return index;
219}
220
Yu Zhao704126a2009-01-04 16:28:52 +0800221static int qi_flush_iec(struct intel_iommu *iommu, int index, int mask)
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700222{
223 struct qi_desc desc;
224
225 desc.low = QI_IEC_IIDEX(index) | QI_IEC_TYPE | QI_IEC_IM(mask)
226 | QI_IEC_SELECTIVE;
227 desc.high = 0;
228
Yu Zhao704126a2009-01-04 16:28:52 +0800229 return qi_submit_sync(&desc, iommu);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700230}
231
232int map_irq_to_irte_handle(int irq, u16 *sub_handle)
233{
234 int index;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700235 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700236 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700237
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700238 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700239 irq_iommu = valid_irq_2_iommu(irq);
240 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700241 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700242 return -1;
243 }
244
Yinghai Lue420dfb2008-08-19 20:50:21 -0700245 *sub_handle = irq_iommu->sub_handle;
246 index = irq_iommu->irte_index;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700247 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700248 return index;
249}
250
251int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index, u16 subhandle)
252{
Yinghai Lue420dfb2008-08-19 20:50:21 -0700253 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700254 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700255
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700256 spin_lock_irqsave(&irq_2_ir_lock, flags);
Suresh Siddha7ddfb652008-08-20 17:22:51 -0700257
258 irq_iommu = irq_2_iommu_alloc(irq);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700259
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800260 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700261 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800262 printk(KERN_ERR "can't allocate irq_2_iommu\n");
263 return -1;
264 }
265
Yinghai Lue420dfb2008-08-19 20:50:21 -0700266 irq_iommu->iommu = iommu;
267 irq_iommu->irte_index = index;
268 irq_iommu->sub_handle = subhandle;
269 irq_iommu->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700270
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700271 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700272
273 return 0;
274}
275
276int clear_irte_irq(int irq, struct intel_iommu *iommu, u16 index)
277{
Yinghai Lue420dfb2008-08-19 20:50:21 -0700278 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700279 unsigned long flags;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700280
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700281 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700282 irq_iommu = valid_irq_2_iommu(irq);
283 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700284 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700285 return -1;
286 }
287
Yinghai Lue420dfb2008-08-19 20:50:21 -0700288 irq_iommu->iommu = NULL;
289 irq_iommu->irte_index = 0;
290 irq_iommu->sub_handle = 0;
291 irq_2_iommu(irq)->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700292
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700293 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700294
295 return 0;
296}
297
298int modify_irte(int irq, struct irte *irte_modified)
299{
Yu Zhao704126a2009-01-04 16:28:52 +0800300 int rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700301 int index;
302 struct irte *irte;
303 struct intel_iommu *iommu;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700304 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700305 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700306
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700307 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700308 irq_iommu = valid_irq_2_iommu(irq);
309 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700310 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700311 return -1;
312 }
313
Yinghai Lue420dfb2008-08-19 20:50:21 -0700314 iommu = irq_iommu->iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700315
Yinghai Lue420dfb2008-08-19 20:50:21 -0700316 index = irq_iommu->irte_index + irq_iommu->sub_handle;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700317 irte = &iommu->ir_table->base[index];
318
Weidong Hanc4658b42009-05-23 00:41:14 +0800319 set_64bit((unsigned long *)&irte->low, irte_modified->low);
320 set_64bit((unsigned long *)&irte->high, irte_modified->high);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700321 __iommu_flush_cache(iommu, irte, sizeof(*irte));
322
Yu Zhao704126a2009-01-04 16:28:52 +0800323 rc = qi_flush_iec(iommu, index, 0);
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700324 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Yu Zhao704126a2009-01-04 16:28:52 +0800325
326 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700327}
328
329int flush_irte(int irq)
330{
Yu Zhao704126a2009-01-04 16:28:52 +0800331 int rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700332 int index;
333 struct intel_iommu *iommu;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700334 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700335 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700336
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700337 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700338 irq_iommu = valid_irq_2_iommu(irq);
339 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700340 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700341 return -1;
342 }
343
Yinghai Lue420dfb2008-08-19 20:50:21 -0700344 iommu = irq_iommu->iommu;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700345
Yinghai Lue420dfb2008-08-19 20:50:21 -0700346 index = irq_iommu->irte_index + irq_iommu->sub_handle;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700347
Yu Zhao704126a2009-01-04 16:28:52 +0800348 rc = qi_flush_iec(iommu, index, irq_iommu->irte_mask);
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700349 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700350
Yu Zhao704126a2009-01-04 16:28:52 +0800351 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700352}
353
Suresh Siddha89027d32008-07-10 11:16:56 -0700354struct intel_iommu *map_ioapic_to_ir(int apic)
355{
356 int i;
357
358 for (i = 0; i < MAX_IO_APICS; i++)
359 if (ir_ioapic[i].id == apic)
360 return ir_ioapic[i].iommu;
361 return NULL;
362}
363
Suresh Siddha75c46fa2008-07-10 11:16:57 -0700364struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
365{
366 struct dmar_drhd_unit *drhd;
367
368 drhd = dmar_find_matched_drhd_unit(dev);
369 if (!drhd)
370 return NULL;
371
372 return drhd->iommu;
373}
374
Weidong Hanc4658b42009-05-23 00:41:14 +0800375static int clear_entries(struct irq_2_iommu *irq_iommu)
376{
377 struct irte *start, *entry, *end;
378 struct intel_iommu *iommu;
379 int index;
380
381 if (irq_iommu->sub_handle)
382 return 0;
383
384 iommu = irq_iommu->iommu;
385 index = irq_iommu->irte_index + irq_iommu->sub_handle;
386
387 start = iommu->ir_table->base + index;
388 end = start + (1 << irq_iommu->irte_mask);
389
390 for (entry = start; entry < end; entry++) {
391 set_64bit((unsigned long *)&entry->low, 0);
392 set_64bit((unsigned long *)&entry->high, 0);
393 }
394
395 return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
396}
397
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700398int free_irte(int irq)
399{
Yu Zhao704126a2009-01-04 16:28:52 +0800400 int rc = 0;
Yinghai Lue420dfb2008-08-19 20:50:21 -0700401 struct irq_2_iommu *irq_iommu;
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700402 unsigned long flags;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700403
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700404 spin_lock_irqsave(&irq_2_ir_lock, flags);
Yinghai Lue420dfb2008-08-19 20:50:21 -0700405 irq_iommu = valid_irq_2_iommu(irq);
406 if (!irq_iommu) {
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700407 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700408 return -1;
409 }
410
Weidong Hanc4658b42009-05-23 00:41:14 +0800411 rc = clear_entries(irq_iommu);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700412
Yinghai Lue420dfb2008-08-19 20:50:21 -0700413 irq_iommu->iommu = NULL;
414 irq_iommu->irte_index = 0;
415 irq_iommu->sub_handle = 0;
416 irq_iommu->irte_mask = 0;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700417
Suresh Siddha4c5502b2009-03-16 17:04:53 -0700418 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700419
Yu Zhao704126a2009-01-04 16:28:52 +0800420 return rc;
Suresh Siddhab6fcb332008-07-10 11:16:44 -0700421}
422
Weidong Hanf007e992009-05-23 00:41:15 +0800423/*
424 * source validation type
425 */
426#define SVT_NO_VERIFY 0x0 /* no verification is required */
427#define SVT_VERIFY_SID_SQ 0x1 /* verify using SID and SQ fiels */
428#define SVT_VERIFY_BUS 0x2 /* verify bus of request-id */
429
430/*
431 * source-id qualifier
432 */
433#define SQ_ALL_16 0x0 /* verify all 16 bits of request-id */
434#define SQ_13_IGNORE_1 0x1 /* verify most significant 13 bits, ignore
435 * the third least significant bit
436 */
437#define SQ_13_IGNORE_2 0x2 /* verify most significant 13 bits, ignore
438 * the second and third least significant bits
439 */
440#define SQ_13_IGNORE_3 0x3 /* verify most significant 13 bits, ignore
441 * the least three significant bits
442 */
443
444/*
445 * set SVT, SQ and SID fields of irte to verify
446 * source ids of interrupt requests
447 */
448static void set_irte_sid(struct irte *irte, unsigned int svt,
449 unsigned int sq, unsigned int sid)
450{
451 irte->svt = svt;
452 irte->sq = sq;
453 irte->sid = sid;
454}
455
456int set_ioapic_sid(struct irte *irte, int apic)
457{
458 int i;
459 u16 sid = 0;
460
461 if (!irte)
462 return -1;
463
464 for (i = 0; i < MAX_IO_APICS; i++) {
465 if (ir_ioapic[i].id == apic) {
466 sid = (ir_ioapic[i].bus << 8) | ir_ioapic[i].devfn;
467 break;
468 }
469 }
470
471 if (sid == 0) {
472 pr_warning("Failed to set source-id of IOAPIC (%d)\n", apic);
473 return -1;
474 }
475
476 set_irte_sid(irte, 1, 0, sid);
477
478 return 0;
479}
480
481int set_msi_sid(struct irte *irte, struct pci_dev *dev)
482{
483 struct pci_dev *bridge;
484
485 if (!irte || !dev)
486 return -1;
487
488 /* PCIe device or Root Complex integrated PCI device */
489 if (dev->is_pcie || !dev->bus->parent) {
490 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16,
491 (dev->bus->number << 8) | dev->devfn);
492 return 0;
493 }
494
495 bridge = pci_find_upstream_pcie_bridge(dev);
496 if (bridge) {
497 if (bridge->is_pcie) /* this is a PCIE-to-PCI/PCIX bridge */
498 set_irte_sid(irte, SVT_VERIFY_BUS, SQ_ALL_16,
499 (bridge->bus->number << 8) | dev->bus->number);
500 else /* this is a legacy PCI bridge */
501 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16,
502 (bridge->bus->number << 8) | bridge->devfn);
503 }
504
505 return 0;
506}
507
Suresh Siddha2ae21012008-07-10 11:16:43 -0700508static void iommu_set_intr_remapping(struct intel_iommu *iommu, int mode)
509{
510 u64 addr;
David Woodhousec416daa2009-05-10 20:30:58 +0100511 u32 sts;
Suresh Siddha2ae21012008-07-10 11:16:43 -0700512 unsigned long flags;
513
514 addr = virt_to_phys((void *)iommu->ir_table->base);
515
516 spin_lock_irqsave(&iommu->register_lock, flags);
517
518 dmar_writeq(iommu->reg + DMAR_IRTA_REG,
519 (addr) | IR_X2APIC_MODE(mode) | INTR_REMAP_TABLE_REG_SIZE);
520
521 /* Set interrupt-remapping table pointer */
Han, Weidong161fde02009-04-03 17:15:47 +0800522 iommu->gcmd |= DMA_GCMD_SIRTP;
David Woodhousec416daa2009-05-10 20:30:58 +0100523 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700524
525 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
526 readl, (sts & DMA_GSTS_IRTPS), sts);
527 spin_unlock_irqrestore(&iommu->register_lock, flags);
528
529 /*
530 * global invalidation of interrupt entry cache before enabling
531 * interrupt-remapping.
532 */
533 qi_global_iec(iommu);
534
535 spin_lock_irqsave(&iommu->register_lock, flags);
536
537 /* Enable interrupt-remapping */
Suresh Siddha2ae21012008-07-10 11:16:43 -0700538 iommu->gcmd |= DMA_GCMD_IRE;
David Woodhousec416daa2009-05-10 20:30:58 +0100539 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700540
541 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
542 readl, (sts & DMA_GSTS_IRES), sts);
543
544 spin_unlock_irqrestore(&iommu->register_lock, flags);
545}
546
547
548static int setup_intr_remapping(struct intel_iommu *iommu, int mode)
549{
550 struct ir_table *ir_table;
551 struct page *pages;
552
553 ir_table = iommu->ir_table = kzalloc(sizeof(struct ir_table),
Suresh Siddhafa4b57c2009-03-16 17:05:05 -0700554 GFP_ATOMIC);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700555
556 if (!iommu->ir_table)
557 return -ENOMEM;
558
Suresh Siddhafa4b57c2009-03-16 17:05:05 -0700559 pages = alloc_pages(GFP_ATOMIC | __GFP_ZERO, INTR_REMAP_PAGE_ORDER);
Suresh Siddha2ae21012008-07-10 11:16:43 -0700560
561 if (!pages) {
562 printk(KERN_ERR "failed to allocate pages of order %d\n",
563 INTR_REMAP_PAGE_ORDER);
564 kfree(iommu->ir_table);
565 return -ENOMEM;
566 }
567
568 ir_table->base = page_address(pages);
569
570 iommu_set_intr_remapping(iommu, mode);
571 return 0;
572}
573
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700574/*
575 * Disable Interrupt Remapping.
576 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700577static void iommu_disable_intr_remapping(struct intel_iommu *iommu)
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700578{
579 unsigned long flags;
580 u32 sts;
581
582 if (!ecap_ir_support(iommu->ecap))
583 return;
584
Fenghua Yub24696b2009-03-27 14:22:44 -0700585 /*
586 * global invalidation of interrupt entry cache before disabling
587 * interrupt-remapping.
588 */
589 qi_global_iec(iommu);
590
Suresh Siddhaeba67e52009-03-16 17:04:56 -0700591 spin_lock_irqsave(&iommu->register_lock, flags);
592
593 sts = dmar_readq(iommu->reg + DMAR_GSTS_REG);
594 if (!(sts & DMA_GSTS_IRES))
595 goto end;
596
597 iommu->gcmd &= ~DMA_GCMD_IRE;
598 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
599
600 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
601 readl, !(sts & DMA_GSTS_IRES), sts);
602
603end:
604 spin_unlock_irqrestore(&iommu->register_lock, flags);
605}
606
Weidong Han93758232009-04-17 16:42:14 +0800607int __init intr_remapping_supported(void)
608{
609 struct dmar_drhd_unit *drhd;
610
Weidong Han03ea8152009-04-17 16:42:15 +0800611 if (disable_intremap)
612 return 0;
613
Youquan Song074835f2009-09-09 12:05:39 -0400614 if (!dmar_ir_support())
615 return 0;
616
Weidong Han93758232009-04-17 16:42:14 +0800617 for_each_drhd_unit(drhd) {
618 struct intel_iommu *iommu = drhd->iommu;
619
620 if (!ecap_ir_support(iommu->ecap))
621 return 0;
622 }
623
624 return 1;
625}
626
Suresh Siddha2ae21012008-07-10 11:16:43 -0700627int __init enable_intr_remapping(int eim)
628{
629 struct dmar_drhd_unit *drhd;
630 int setup = 0;
631
Youquan Songe936d072009-09-07 10:58:07 -0400632 if (parse_ioapics_under_ir() != 1) {
633 printk(KERN_INFO "Not enable interrupt remapping\n");
634 return -1;
635 }
636
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700637 for_each_drhd_unit(drhd) {
638 struct intel_iommu *iommu = drhd->iommu;
639
640 /*
Han, Weidong34aaaa92009-04-04 17:21:26 +0800641 * If the queued invalidation is already initialized,
642 * shouldn't disable it.
643 */
644 if (iommu->qi)
645 continue;
646
647 /*
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700648 * Clear previous faults.
649 */
650 dmar_fault(-1, iommu);
651
652 /*
653 * Disable intr remapping and queued invalidation, if already
654 * enabled prior to OS handover.
655 */
Fenghua Yub24696b2009-03-27 14:22:44 -0700656 iommu_disable_intr_remapping(iommu);
Suresh Siddha1531a6a2009-03-16 17:04:57 -0700657
658 dmar_disable_qi(iommu);
659 }
660
Suresh Siddha2ae21012008-07-10 11:16:43 -0700661 /*
662 * check for the Interrupt-remapping support
663 */
664 for_each_drhd_unit(drhd) {
665 struct intel_iommu *iommu = drhd->iommu;
666
667 if (!ecap_ir_support(iommu->ecap))
668 continue;
669
670 if (eim && !ecap_eim_support(iommu->ecap)) {
671 printk(KERN_INFO "DRHD %Lx: EIM not supported by DRHD, "
672 " ecap %Lx\n", drhd->reg_base_addr, iommu->ecap);
673 return -1;
674 }
675 }
676
677 /*
678 * Enable queued invalidation for all the DRHD's.
679 */
680 for_each_drhd_unit(drhd) {
681 int ret;
682 struct intel_iommu *iommu = drhd->iommu;
683 ret = dmar_enable_qi(iommu);
684
685 if (ret) {
686 printk(KERN_ERR "DRHD %Lx: failed to enable queued, "
687 " invalidation, ecap %Lx, ret %d\n",
688 drhd->reg_base_addr, iommu->ecap, ret);
689 return -1;
690 }
691 }
692
693 /*
694 * Setup Interrupt-remapping for all the DRHD's now.
695 */
696 for_each_drhd_unit(drhd) {
697 struct intel_iommu *iommu = drhd->iommu;
698
699 if (!ecap_ir_support(iommu->ecap))
700 continue;
701
702 if (setup_intr_remapping(iommu, eim))
703 goto error;
704
705 setup = 1;
706 }
707
708 if (!setup)
709 goto error;
710
711 intr_remapping_enabled = 1;
712
713 return 0;
714
715error:
716 /*
717 * handle error condition gracefully here!
718 */
719 return -1;
720}
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700721
Weidong Hanf007e992009-05-23 00:41:15 +0800722static void ir_parse_one_ioapic_scope(struct acpi_dmar_device_scope *scope,
723 struct intel_iommu *iommu)
724{
725 struct acpi_dmar_pci_path *path;
726 u8 bus;
727 int count;
728
729 bus = scope->bus;
730 path = (struct acpi_dmar_pci_path *)(scope + 1);
731 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
732 / sizeof(struct acpi_dmar_pci_path);
733
734 while (--count > 0) {
735 /*
736 * Access PCI directly due to the PCI
737 * subsystem isn't initialized yet.
738 */
739 bus = read_pci_config_byte(bus, path->dev, path->fn,
740 PCI_SECONDARY_BUS);
741 path++;
742 }
743
744 ir_ioapic[ir_ioapic_num].bus = bus;
745 ir_ioapic[ir_ioapic_num].devfn = PCI_DEVFN(path->dev, path->fn);
746 ir_ioapic[ir_ioapic_num].iommu = iommu;
747 ir_ioapic[ir_ioapic_num].id = scope->enumeration_id;
748 ir_ioapic_num++;
749}
750
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700751static int ir_parse_ioapic_scope(struct acpi_dmar_header *header,
752 struct intel_iommu *iommu)
753{
754 struct acpi_dmar_hardware_unit *drhd;
755 struct acpi_dmar_device_scope *scope;
756 void *start, *end;
757
758 drhd = (struct acpi_dmar_hardware_unit *)header;
759
760 start = (void *)(drhd + 1);
761 end = ((void *)drhd) + header->length;
762
763 while (start < end) {
764 scope = start;
765 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_IOAPIC) {
766 if (ir_ioapic_num == MAX_IO_APICS) {
767 printk(KERN_WARNING "Exceeded Max IO APICS\n");
768 return -1;
769 }
770
771 printk(KERN_INFO "IOAPIC id %d under DRHD base"
772 " 0x%Lx\n", scope->enumeration_id,
773 drhd->address);
774
Weidong Hanf007e992009-05-23 00:41:15 +0800775 ir_parse_one_ioapic_scope(scope, iommu);
Suresh Siddhaad3ad3f2008-07-10 11:16:40 -0700776 }
777 start += scope->length;
778 }
779
780 return 0;
781}
782
783/*
784 * Finds the assocaition between IOAPIC's and its Interrupt-remapping
785 * hardware unit.
786 */
787int __init parse_ioapics_under_ir(void)
788{
789 struct dmar_drhd_unit *drhd;
790 int ir_supported = 0;
791
792 for_each_drhd_unit(drhd) {
793 struct intel_iommu *iommu = drhd->iommu;
794
795 if (ecap_ir_support(iommu->ecap)) {
796 if (ir_parse_ioapic_scope(drhd->hdr, iommu))
797 return -1;
798
799 ir_supported = 1;
800 }
801 }
802
803 if (ir_supported && ir_ioapic_num != nr_ioapics) {
804 printk(KERN_WARNING
805 "Not all IO-APIC's listed under remapping hardware\n");
806 return -1;
807 }
808
809 return ir_supported;
810}
Fenghua Yub24696b2009-03-27 14:22:44 -0700811
812void disable_intr_remapping(void)
813{
814 struct dmar_drhd_unit *drhd;
815 struct intel_iommu *iommu = NULL;
816
817 /*
818 * Disable Interrupt-remapping for all the DRHD's now.
819 */
820 for_each_iommu(iommu, drhd) {
821 if (!ecap_ir_support(iommu->ecap))
822 continue;
823
824 iommu_disable_intr_remapping(iommu);
825 }
826}
827
828int reenable_intr_remapping(int eim)
829{
830 struct dmar_drhd_unit *drhd;
831 int setup = 0;
832 struct intel_iommu *iommu = NULL;
833
834 for_each_iommu(iommu, drhd)
835 if (iommu->qi)
836 dmar_reenable_qi(iommu);
837
838 /*
839 * Setup Interrupt-remapping for all the DRHD's now.
840 */
841 for_each_iommu(iommu, drhd) {
842 if (!ecap_ir_support(iommu->ecap))
843 continue;
844
845 /* Set up interrupt remapping for iommu.*/
846 iommu_set_intr_remapping(iommu, eim);
847 setup = 1;
848 }
849
850 if (!setup)
851 goto error;
852
853 return 0;
854
855error:
856 /*
857 * handle error condition gracefully here!
858 */
859 return -1;
860}
861