RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / pci / intr_remapping.c
blob9ee10ed73b767a4bc7c250a4e77319cf79b87ba3
1 #include <linux/interrupt.h>
2 #include <linux/dmar.h>
3 #include <linux/spinlock.h>
4 #include <linux/slab.h>
5 #include <linux/jiffies.h>
6 #include <linux/hpet.h>
7 #include <linux/pci.h>
8 #include <linux/irq.h>
9 #include <asm/io_apic.h>
10 #include <asm/smp.h>
11 #include <asm/cpu.h>
12 #include <linux/intel-iommu.h>
13 #include "intr_remapping.h"
14 #include <acpi/acpi.h>
15 #include <asm/pci-direct.h>
16 #include "pci.h"
18 static struct ioapic_scope ir_ioapic[MAX_IO_APICS];
19 static struct hpet_scope ir_hpet[MAX_HPET_TBS];
20 static int ir_ioapic_num, ir_hpet_num;
21 int intr_remapping_enabled;
23 static int disable_intremap;
24 static int disable_sourceid_checking;
26 static __init int setup_nointremap(char *str)
28 disable_intremap = 1;
29 return 0;
31 early_param("nointremap", setup_nointremap);
33 static __init int setup_intremap(char *str)
35 if (!str)
36 return -EINVAL;
38 if (!strncmp(str, "on", 2))
39 disable_intremap = 0;
40 else if (!strncmp(str, "off", 3))
41 disable_intremap = 1;
42 else if (!strncmp(str, "nosid", 5))
43 disable_sourceid_checking = 1;
45 return 0;
47 early_param("intremap", setup_intremap);
49 struct irq_2_iommu {
50 struct intel_iommu *iommu;
51 u16 irte_index;
52 u16 sub_handle;
53 u8 irte_mask;
56 #ifdef CONFIG_GENERIC_HARDIRQS
57 static struct irq_2_iommu *get_one_free_irq_2_iommu(int node)
59 struct irq_2_iommu *iommu;
61 iommu = kzalloc_node(sizeof(*iommu), GFP_ATOMIC, node);
62 printk(KERN_DEBUG "alloc irq_2_iommu on node %d\n", node);
64 return iommu;
67 static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
69 struct irq_desc *desc;
71 desc = irq_to_desc(irq);
73 if (WARN_ON_ONCE(!desc))
74 return NULL;
76 return desc->irq_2_iommu;
79 static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
81 struct irq_desc *desc;
82 struct irq_2_iommu *irq_iommu;
84 desc = irq_to_desc(irq);
85 if (!desc) {
86 printk(KERN_INFO "can not get irq_desc for %d\n", irq);
87 return NULL;
90 irq_iommu = desc->irq_2_iommu;
92 if (!irq_iommu)
93 desc->irq_2_iommu = get_one_free_irq_2_iommu(irq_node(irq));
95 return desc->irq_2_iommu;
98 #else /* !CONFIG_SPARSE_IRQ */
100 static struct irq_2_iommu irq_2_iommuX[NR_IRQS];
102 static struct irq_2_iommu *irq_2_iommu(unsigned int irq)
104 if (irq < nr_irqs)
105 return &irq_2_iommuX[irq];
107 return NULL;
109 static struct irq_2_iommu *irq_2_iommu_alloc(unsigned int irq)
111 return irq_2_iommu(irq);
113 #endif
115 static DEFINE_SPINLOCK(irq_2_ir_lock);
117 static struct irq_2_iommu *valid_irq_2_iommu(unsigned int irq)
119 struct irq_2_iommu *irq_iommu;
121 irq_iommu = irq_2_iommu(irq);
123 if (!irq_iommu)
124 return NULL;
126 if (!irq_iommu->iommu)
127 return NULL;
129 return irq_iommu;
132 int irq_remapped(int irq)
134 return valid_irq_2_iommu(irq) != NULL;
137 int get_irte(int irq, struct irte *entry)
139 int index;
140 struct irq_2_iommu *irq_iommu;
141 unsigned long flags;
143 if (!entry)
144 return -1;
146 spin_lock_irqsave(&irq_2_ir_lock, flags);
147 irq_iommu = valid_irq_2_iommu(irq);
148 if (!irq_iommu) {
149 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
150 return -1;
153 index = irq_iommu->irte_index + irq_iommu->sub_handle;
154 *entry = *(irq_iommu->iommu->ir_table->base + index);
156 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
157 return 0;
160 int alloc_irte(struct intel_iommu *iommu, int irq, u16 count)
162 struct ir_table *table = iommu->ir_table;
163 struct irq_2_iommu *irq_iommu;
164 u16 index, start_index;
165 unsigned int mask = 0;
166 unsigned long flags;
167 int i;
169 if (!count)
170 return -1;
172 #ifndef CONFIG_SPARSE_IRQ
173 /* protect irq_2_iommu_alloc later */
174 if (irq >= nr_irqs)
175 return -1;
176 #endif
179 * start the IRTE search from index 0.
181 index = start_index = 0;
183 if (count > 1) {
184 count = __roundup_pow_of_two(count);
185 mask = ilog2(count);
188 if (mask > ecap_max_handle_mask(iommu->ecap)) {
189 printk(KERN_ERR
190 "Requested mask %x exceeds the max invalidation handle"
191 " mask value %Lx\n", mask,
192 ecap_max_handle_mask(iommu->ecap));
193 return -1;
196 spin_lock_irqsave(&irq_2_ir_lock, flags);
197 do {
198 for (i = index; i < index + count; i++)
199 if (table->base[i].present)
200 break;
201 /* empty index found */
202 if (i == index + count)
203 break;
205 index = (index + count) % INTR_REMAP_TABLE_ENTRIES;
207 if (index == start_index) {
208 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
209 printk(KERN_ERR "can't allocate an IRTE\n");
210 return -1;
212 } while (1);
214 for (i = index; i < index + count; i++)
215 table->base[i].present = 1;
217 irq_iommu = irq_2_iommu_alloc(irq);
218 if (!irq_iommu) {
219 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
220 printk(KERN_ERR "can't allocate irq_2_iommu\n");
221 return -1;
224 irq_iommu->iommu = iommu;
225 irq_iommu->irte_index = index;
226 irq_iommu->sub_handle = 0;
227 irq_iommu->irte_mask = mask;
229 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
231 return index;
234 static int qi_flush_iec(struct intel_iommu *iommu, int index, int mask)
236 struct qi_desc desc;
238 desc.low = QI_IEC_IIDEX(index) | QI_IEC_TYPE | QI_IEC_IM(mask)
239 | QI_IEC_SELECTIVE;
240 desc.high = 0;
242 return qi_submit_sync(&desc, iommu);
245 int map_irq_to_irte_handle(int irq, u16 *sub_handle)
247 int index;
248 struct irq_2_iommu *irq_iommu;
249 unsigned long flags;
251 spin_lock_irqsave(&irq_2_ir_lock, flags);
252 irq_iommu = valid_irq_2_iommu(irq);
253 if (!irq_iommu) {
254 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
255 return -1;
258 *sub_handle = irq_iommu->sub_handle;
259 index = irq_iommu->irte_index;
260 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
261 return index;
264 int set_irte_irq(int irq, struct intel_iommu *iommu, u16 index, u16 subhandle)
266 struct irq_2_iommu *irq_iommu;
267 unsigned long flags;
269 spin_lock_irqsave(&irq_2_ir_lock, flags);
271 irq_iommu = irq_2_iommu_alloc(irq);
273 if (!irq_iommu) {
274 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
275 printk(KERN_ERR "can't allocate irq_2_iommu\n");
276 return -1;
279 irq_iommu->iommu = iommu;
280 irq_iommu->irte_index = index;
281 irq_iommu->sub_handle = subhandle;
282 irq_iommu->irte_mask = 0;
284 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
286 return 0;
289 int clear_irte_irq(int irq, struct intel_iommu *iommu, u16 index)
291 struct irq_2_iommu *irq_iommu;
292 unsigned long flags;
294 spin_lock_irqsave(&irq_2_ir_lock, flags);
295 irq_iommu = valid_irq_2_iommu(irq);
296 if (!irq_iommu) {
297 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
298 return -1;
301 irq_iommu->iommu = NULL;
302 irq_iommu->irte_index = 0;
303 irq_iommu->sub_handle = 0;
304 irq_2_iommu(irq)->irte_mask = 0;
306 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
308 return 0;
311 int modify_irte(int irq, struct irte *irte_modified)
313 int rc;
314 int index;
315 struct irte *irte;
316 struct intel_iommu *iommu;
317 struct irq_2_iommu *irq_iommu;
318 unsigned long flags;
320 spin_lock_irqsave(&irq_2_ir_lock, flags);
321 irq_iommu = valid_irq_2_iommu(irq);
322 if (!irq_iommu) {
323 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
324 return -1;
327 iommu = irq_iommu->iommu;
329 index = irq_iommu->irte_index + irq_iommu->sub_handle;
330 irte = &iommu->ir_table->base[index];
332 set_64bit(&irte->low, irte_modified->low);
333 set_64bit(&irte->high, irte_modified->high);
334 __iommu_flush_cache(iommu, irte, sizeof(*irte));
336 rc = qi_flush_iec(iommu, index, 0);
337 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
339 return rc;
342 int flush_irte(int irq)
344 int rc;
345 int index;
346 struct intel_iommu *iommu;
347 struct irq_2_iommu *irq_iommu;
348 unsigned long flags;
350 spin_lock_irqsave(&irq_2_ir_lock, flags);
351 irq_iommu = valid_irq_2_iommu(irq);
352 if (!irq_iommu) {
353 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
354 return -1;
357 iommu = irq_iommu->iommu;
359 index = irq_iommu->irte_index + irq_iommu->sub_handle;
361 rc = qi_flush_iec(iommu, index, irq_iommu->irte_mask);
362 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
364 return rc;
367 struct intel_iommu *map_hpet_to_ir(u8 hpet_id)
369 int i;
371 for (i = 0; i < MAX_HPET_TBS; i++)
372 if (ir_hpet[i].id == hpet_id)
373 return ir_hpet[i].iommu;
374 return NULL;
377 struct intel_iommu *map_ioapic_to_ir(int apic)
379 int i;
381 for (i = 0; i < MAX_IO_APICS; i++)
382 if (ir_ioapic[i].id == apic)
383 return ir_ioapic[i].iommu;
384 return NULL;
387 struct intel_iommu *map_dev_to_ir(struct pci_dev *dev)
389 struct dmar_drhd_unit *drhd;
391 drhd = dmar_find_matched_drhd_unit(dev);
392 if (!drhd)
393 return NULL;
395 return drhd->iommu;
398 static int clear_entries(struct irq_2_iommu *irq_iommu)
400 struct irte *start, *entry, *end;
401 struct intel_iommu *iommu;
402 int index;
404 if (irq_iommu->sub_handle)
405 return 0;
407 iommu = irq_iommu->iommu;
408 index = irq_iommu->irte_index + irq_iommu->sub_handle;
410 start = iommu->ir_table->base + index;
411 end = start + (1 << irq_iommu->irte_mask);
413 for (entry = start; entry < end; entry++) {
414 set_64bit(&entry->low, 0);
415 set_64bit(&entry->high, 0);
418 return qi_flush_iec(iommu, index, irq_iommu->irte_mask);
421 int free_irte(int irq)
423 int rc = 0;
424 struct irq_2_iommu *irq_iommu;
425 unsigned long flags;
427 spin_lock_irqsave(&irq_2_ir_lock, flags);
428 irq_iommu = valid_irq_2_iommu(irq);
429 if (!irq_iommu) {
430 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
431 return -1;
434 rc = clear_entries(irq_iommu);
436 irq_iommu->iommu = NULL;
437 irq_iommu->irte_index = 0;
438 irq_iommu->sub_handle = 0;
439 irq_iommu->irte_mask = 0;
441 spin_unlock_irqrestore(&irq_2_ir_lock, flags);
443 return rc;
447 * source validation type
449 #define SVT_NO_VERIFY 0x0 /* no verification is required */
450 #define SVT_VERIFY_SID_SQ 0x1 /* verify using SID and SQ fiels */
451 #define SVT_VERIFY_BUS 0x2 /* verify bus of request-id */
454 * source-id qualifier
456 #define SQ_ALL_16 0x0 /* verify all 16 bits of request-id */
457 #define SQ_13_IGNORE_1 0x1 /* verify most significant 13 bits, ignore
458 * the third least significant bit
460 #define SQ_13_IGNORE_2 0x2 /* verify most significant 13 bits, ignore
461 * the second and third least significant bits
463 #define SQ_13_IGNORE_3 0x3 /* verify most significant 13 bits, ignore
464 * the least three significant bits
468 * set SVT, SQ and SID fields of irte to verify
469 * source ids of interrupt requests
471 static void set_irte_sid(struct irte *irte, unsigned int svt,
472 unsigned int sq, unsigned int sid)
474 if (disable_sourceid_checking)
475 svt = SVT_NO_VERIFY;
476 irte->svt = svt;
477 irte->sq = sq;
478 irte->sid = sid;
481 int set_ioapic_sid(struct irte *irte, int apic)
483 int i;
484 u16 sid = 0;
486 if (!irte)
487 return -1;
489 for (i = 0; i < MAX_IO_APICS; i++) {
490 if (ir_ioapic[i].id == apic) {
491 sid = (ir_ioapic[i].bus << 8) | ir_ioapic[i].devfn;
492 break;
496 if (sid == 0) {
497 pr_warning("Failed to set source-id of IOAPIC (%d)\n", apic);
498 return -1;
501 set_irte_sid(irte, 1, 0, sid);
503 return 0;
506 int set_hpet_sid(struct irte *irte, u8 id)
508 int i;
509 u16 sid = 0;
511 if (!irte)
512 return -1;
514 for (i = 0; i < MAX_HPET_TBS; i++) {
515 if (ir_hpet[i].id == id) {
516 sid = (ir_hpet[i].bus << 8) | ir_hpet[i].devfn;
517 break;
521 if (sid == 0) {
522 pr_warning("Failed to set source-id of HPET block (%d)\n", id);
523 return -1;
527 * Should really use SQ_ALL_16. Some platforms are broken.
528 * While we figure out the right quirks for these broken platforms, use
529 * SQ_13_IGNORE_3 for now.
531 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_13_IGNORE_3, sid);
533 return 0;
536 int set_msi_sid(struct irte *irte, struct pci_dev *dev)
538 struct pci_dev *bridge;
540 if (!irte || !dev)
541 return -1;
543 /* PCIe device or Root Complex integrated PCI device */
544 if (pci_is_pcie(dev) || !dev->bus->parent) {
545 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16,
546 (dev->bus->number << 8) | dev->devfn);
547 return 0;
550 bridge = pci_find_upstream_pcie_bridge(dev);
551 if (bridge) {
552 if (pci_is_pcie(bridge))/* this is a PCIe-to-PCI/PCIX bridge */
553 set_irte_sid(irte, SVT_VERIFY_BUS, SQ_ALL_16,
554 (bridge->bus->number << 8) | dev->bus->number);
555 else /* this is a legacy PCI bridge */
556 set_irte_sid(irte, SVT_VERIFY_SID_SQ, SQ_ALL_16,
557 (bridge->bus->number << 8) | bridge->devfn);
560 return 0;
563 static void iommu_set_intr_remapping(struct intel_iommu *iommu, int mode)
565 u64 addr;
566 u32 sts;
567 unsigned long flags;
569 addr = virt_to_phys((void *)iommu->ir_table->base);
571 spin_lock_irqsave(&iommu->register_lock, flags);
573 dmar_writeq(iommu->reg + DMAR_IRTA_REG,
574 (addr) | IR_X2APIC_MODE(mode) | INTR_REMAP_TABLE_REG_SIZE);
576 /* Set interrupt-remapping table pointer */
577 iommu->gcmd |= DMA_GCMD_SIRTP;
578 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
580 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
581 readl, (sts & DMA_GSTS_IRTPS), sts);
582 spin_unlock_irqrestore(&iommu->register_lock, flags);
585 * global invalidation of interrupt entry cache before enabling
586 * interrupt-remapping.
588 qi_global_iec(iommu);
590 spin_lock_irqsave(&iommu->register_lock, flags);
592 /* Enable interrupt-remapping */
593 iommu->gcmd |= DMA_GCMD_IRE;
594 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
596 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
597 readl, (sts & DMA_GSTS_IRES), sts);
599 spin_unlock_irqrestore(&iommu->register_lock, flags);
603 static int setup_intr_remapping(struct intel_iommu *iommu, int mode)
605 struct ir_table *ir_table;
606 struct page *pages;
608 ir_table = iommu->ir_table = kzalloc(sizeof(struct ir_table),
609 GFP_ATOMIC);
611 if (!iommu->ir_table)
612 return -ENOMEM;
614 pages = alloc_pages_node(iommu->node, GFP_ATOMIC | __GFP_ZERO,
615 INTR_REMAP_PAGE_ORDER);
617 if (!pages) {
618 printk(KERN_ERR "failed to allocate pages of order %d\n",
619 INTR_REMAP_PAGE_ORDER);
620 kfree(iommu->ir_table);
621 return -ENOMEM;
624 ir_table->base = page_address(pages);
626 iommu_set_intr_remapping(iommu, mode);
627 return 0;
631 * Disable Interrupt Remapping.
633 static void iommu_disable_intr_remapping(struct intel_iommu *iommu)
635 unsigned long flags;
636 u32 sts;
638 if (!ecap_ir_support(iommu->ecap))
639 return;
642 * global invalidation of interrupt entry cache before disabling
643 * interrupt-remapping.
645 qi_global_iec(iommu);
647 spin_lock_irqsave(&iommu->register_lock, flags);
649 sts = dmar_readq(iommu->reg + DMAR_GSTS_REG);
650 if (!(sts & DMA_GSTS_IRES))
651 goto end;
653 iommu->gcmd &= ~DMA_GCMD_IRE;
654 writel(iommu->gcmd, iommu->reg + DMAR_GCMD_REG);
656 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG,
657 readl, !(sts & DMA_GSTS_IRES), sts);
659 end:
660 spin_unlock_irqrestore(&iommu->register_lock, flags);
663 int __init intr_remapping_supported(void)
665 struct dmar_drhd_unit *drhd;
667 if (disable_intremap)
668 return 0;
670 if (!dmar_ir_support())
671 return 0;
673 for_each_drhd_unit(drhd) {
674 struct intel_iommu *iommu = drhd->iommu;
676 if (!ecap_ir_support(iommu->ecap))
677 return 0;
680 return 1;
683 int __init enable_intr_remapping(int eim)
685 struct dmar_drhd_unit *drhd;
686 int setup = 0;
688 if (parse_ioapics_under_ir() != 1) {
689 printk(KERN_INFO "Not enable interrupt remapping\n");
690 return -1;
693 for_each_drhd_unit(drhd) {
694 struct intel_iommu *iommu = drhd->iommu;
697 * If the queued invalidation is already initialized,
698 * shouldn't disable it.
700 if (iommu->qi)
701 continue;
704 * Clear previous faults.
706 dmar_fault(-1, iommu);
709 * Disable intr remapping and queued invalidation, if already
710 * enabled prior to OS handover.
712 iommu_disable_intr_remapping(iommu);
714 dmar_disable_qi(iommu);
718 * check for the Interrupt-remapping support
720 for_each_drhd_unit(drhd) {
721 struct intel_iommu *iommu = drhd->iommu;
723 if (!ecap_ir_support(iommu->ecap))
724 continue;
726 if (eim && !ecap_eim_support(iommu->ecap)) {
727 printk(KERN_INFO "DRHD %Lx: EIM not supported by DRHD, "
728 " ecap %Lx\n", drhd->reg_base_addr, iommu->ecap);
729 return -1;
734 * Enable queued invalidation for all the DRHD's.
736 for_each_drhd_unit(drhd) {
737 int ret;
738 struct intel_iommu *iommu = drhd->iommu;
739 ret = dmar_enable_qi(iommu);
741 if (ret) {
742 printk(KERN_ERR "DRHD %Lx: failed to enable queued, "
743 " invalidation, ecap %Lx, ret %d\n",
744 drhd->reg_base_addr, iommu->ecap, ret);
745 return -1;
750 * Setup Interrupt-remapping for all the DRHD's now.
752 for_each_drhd_unit(drhd) {
753 struct intel_iommu *iommu = drhd->iommu;
755 if (!ecap_ir_support(iommu->ecap))
756 continue;
758 if (setup_intr_remapping(iommu, eim))
759 goto error;
761 setup = 1;
764 if (!setup)
765 goto error;
767 intr_remapping_enabled = 1;
769 return 0;
771 error:
773 * handle error condition gracefully here!
775 return -1;
778 static void ir_parse_one_hpet_scope(struct acpi_dmar_device_scope *scope,
779 struct intel_iommu *iommu)
781 struct acpi_dmar_pci_path *path;
782 u8 bus;
783 int count;
785 bus = scope->bus;
786 path = (struct acpi_dmar_pci_path *)(scope + 1);
787 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
788 / sizeof(struct acpi_dmar_pci_path);
790 while (--count > 0) {
792 * Access PCI directly due to the PCI
793 * subsystem isn't initialized yet.
795 bus = read_pci_config_byte(bus, path->dev, path->fn,
796 PCI_SECONDARY_BUS);
797 path++;
799 ir_hpet[ir_hpet_num].bus = bus;
800 ir_hpet[ir_hpet_num].devfn = PCI_DEVFN(path->dev, path->fn);
801 ir_hpet[ir_hpet_num].iommu = iommu;
802 ir_hpet[ir_hpet_num].id = scope->enumeration_id;
803 ir_hpet_num++;
806 static void ir_parse_one_ioapic_scope(struct acpi_dmar_device_scope *scope,
807 struct intel_iommu *iommu)
809 struct acpi_dmar_pci_path *path;
810 u8 bus;
811 int count;
813 bus = scope->bus;
814 path = (struct acpi_dmar_pci_path *)(scope + 1);
815 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
816 / sizeof(struct acpi_dmar_pci_path);
818 while (--count > 0) {
820 * Access PCI directly due to the PCI
821 * subsystem isn't initialized yet.
823 bus = read_pci_config_byte(bus, path->dev, path->fn,
824 PCI_SECONDARY_BUS);
825 path++;
828 ir_ioapic[ir_ioapic_num].bus = bus;
829 ir_ioapic[ir_ioapic_num].devfn = PCI_DEVFN(path->dev, path->fn);
830 ir_ioapic[ir_ioapic_num].iommu = iommu;
831 ir_ioapic[ir_ioapic_num].id = scope->enumeration_id;
832 ir_ioapic_num++;
835 static int ir_parse_ioapic_hpet_scope(struct acpi_dmar_header *header,
836 struct intel_iommu *iommu)
838 struct acpi_dmar_hardware_unit *drhd;
839 struct acpi_dmar_device_scope *scope;
840 void *start, *end;
842 drhd = (struct acpi_dmar_hardware_unit *)header;
844 start = (void *)(drhd + 1);
845 end = ((void *)drhd) + header->length;
847 while (start < end) {
848 scope = start;
849 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_IOAPIC) {
850 if (ir_ioapic_num == MAX_IO_APICS) {
851 printk(KERN_WARNING "Exceeded Max IO APICS\n");
852 return -1;
855 printk(KERN_INFO "IOAPIC id %d under DRHD base "
856 " 0x%Lx IOMMU %d\n", scope->enumeration_id,
857 drhd->address, iommu->seq_id);
859 ir_parse_one_ioapic_scope(scope, iommu);
860 } else if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_HPET) {
861 if (ir_hpet_num == MAX_HPET_TBS) {
862 printk(KERN_WARNING "Exceeded Max HPET blocks\n");
863 return -1;
866 printk(KERN_INFO "HPET id %d under DRHD base"
867 " 0x%Lx\n", scope->enumeration_id,
868 drhd->address);
870 ir_parse_one_hpet_scope(scope, iommu);
872 start += scope->length;
875 return 0;
879 * Finds the assocaition between IOAPIC's and its Interrupt-remapping
880 * hardware unit.
882 int __init parse_ioapics_under_ir(void)
884 struct dmar_drhd_unit *drhd;
885 int ir_supported = 0;
887 for_each_drhd_unit(drhd) {
888 struct intel_iommu *iommu = drhd->iommu;
890 if (ecap_ir_support(iommu->ecap)) {
891 if (ir_parse_ioapic_hpet_scope(drhd->hdr, iommu))
892 return -1;
894 ir_supported = 1;
898 if (ir_supported && ir_ioapic_num != nr_ioapics) {
899 printk(KERN_WARNING
900 "Not all IO-APIC's listed under remapping hardware\n");
901 return -1;
904 return ir_supported;
907 void disable_intr_remapping(void)
909 struct dmar_drhd_unit *drhd;
910 struct intel_iommu *iommu = NULL;
913 * Disable Interrupt-remapping for all the DRHD's now.
915 for_each_iommu(iommu, drhd) {
916 if (!ecap_ir_support(iommu->ecap))
917 continue;
919 iommu_disable_intr_remapping(iommu);
923 int reenable_intr_remapping(int eim)
925 struct dmar_drhd_unit *drhd;
926 int setup = 0;
927 struct intel_iommu *iommu = NULL;
929 for_each_iommu(iommu, drhd)
930 if (iommu->qi)
931 dmar_reenable_qi(iommu);
934 * Setup Interrupt-remapping for all the DRHD's now.
936 for_each_iommu(iommu, drhd) {
937 if (!ecap_ir_support(iommu->ecap))
938 continue;
940 /* Set up interrupt remapping for iommu.*/
941 iommu_set_intr_remapping(iommu, eim);
942 setup = 1;
945 if (!setup)
946 goto error;
948 return 0;
950 error:
952 * handle error condition gracefully here!
954 return -1;