VT-d: handle Invalidation Queue Error to avoid system hang
[linux-2.6/mini2440.git] / drivers / pci / dmar.c
blob8d3e9c261061fd9448550e82c79d307de5e2663e
1 /*
2 * Copyright (c) 2006, Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 * Copyright (C) 2006-2008 Intel Corporation
18 * Author: Ashok Raj <ashok.raj@intel.com>
19 * Author: Shaohua Li <shaohua.li@intel.com>
20 * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
22 * This file implements early detection/parsing of Remapping Devices
23 * reported to OS through BIOS via DMA remapping reporting (DMAR) ACPI
24 * tables.
26 * These routines are used by both DMA-remapping and Interrupt-remapping
29 #include <linux/pci.h>
30 #include <linux/dmar.h>
31 #include <linux/iova.h>
32 #include <linux/intel-iommu.h>
33 #include <linux/timer.h>
35 #undef PREFIX
36 #define PREFIX "DMAR:"
38 /* No locks are needed as DMA remapping hardware unit
39 * list is constructed at boot time and hotplug of
40 * these units are not supported by the architecture.
42 LIST_HEAD(dmar_drhd_units);
44 static struct acpi_table_header * __initdata dmar_tbl;
46 static void __init dmar_register_drhd_unit(struct dmar_drhd_unit *drhd)
49 * add INCLUDE_ALL at the tail, so scan the list will find it at
50 * the very end.
52 if (drhd->include_all)
53 list_add_tail(&drhd->list, &dmar_drhd_units);
54 else
55 list_add(&drhd->list, &dmar_drhd_units);
58 static int __init dmar_parse_one_dev_scope(struct acpi_dmar_device_scope *scope,
59 struct pci_dev **dev, u16 segment)
61 struct pci_bus *bus;
62 struct pci_dev *pdev = NULL;
63 struct acpi_dmar_pci_path *path;
64 int count;
66 bus = pci_find_bus(segment, scope->bus);
67 path = (struct acpi_dmar_pci_path *)(scope + 1);
68 count = (scope->length - sizeof(struct acpi_dmar_device_scope))
69 / sizeof(struct acpi_dmar_pci_path);
71 while (count) {
72 if (pdev)
73 pci_dev_put(pdev);
75 * Some BIOSes list non-exist devices in DMAR table, just
76 * ignore it
78 if (!bus) {
79 printk(KERN_WARNING
80 PREFIX "Device scope bus [%d] not found\n",
81 scope->bus);
82 break;
84 pdev = pci_get_slot(bus, PCI_DEVFN(path->dev, path->fn));
85 if (!pdev) {
86 printk(KERN_WARNING PREFIX
87 "Device scope device [%04x:%02x:%02x.%02x] not found\n",
88 segment, bus->number, path->dev, path->fn);
89 break;
91 path ++;
92 count --;
93 bus = pdev->subordinate;
95 if (!pdev) {
96 printk(KERN_WARNING PREFIX
97 "Device scope device [%04x:%02x:%02x.%02x] not found\n",
98 segment, scope->bus, path->dev, path->fn);
99 *dev = NULL;
100 return 0;
102 if ((scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT && \
103 pdev->subordinate) || (scope->entry_type == \
104 ACPI_DMAR_SCOPE_TYPE_BRIDGE && !pdev->subordinate)) {
105 pci_dev_put(pdev);
106 printk(KERN_WARNING PREFIX
107 "Device scope type does not match for %s\n",
108 pci_name(pdev));
109 return -EINVAL;
111 *dev = pdev;
112 return 0;
115 static int __init dmar_parse_dev_scope(void *start, void *end, int *cnt,
116 struct pci_dev ***devices, u16 segment)
118 struct acpi_dmar_device_scope *scope;
119 void * tmp = start;
120 int index;
121 int ret;
123 *cnt = 0;
124 while (start < end) {
125 scope = start;
126 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT ||
127 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE)
128 (*cnt)++;
129 else
130 printk(KERN_WARNING PREFIX
131 "Unsupported device scope\n");
132 start += scope->length;
134 if (*cnt == 0)
135 return 0;
137 *devices = kcalloc(*cnt, sizeof(struct pci_dev *), GFP_KERNEL);
138 if (!*devices)
139 return -ENOMEM;
141 start = tmp;
142 index = 0;
143 while (start < end) {
144 scope = start;
145 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT ||
146 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) {
147 ret = dmar_parse_one_dev_scope(scope,
148 &(*devices)[index], segment);
149 if (ret) {
150 kfree(*devices);
151 return ret;
153 index ++;
155 start += scope->length;
158 return 0;
162 * dmar_parse_one_drhd - parses exactly one DMA remapping hardware definition
163 * structure which uniquely represent one DMA remapping hardware unit
164 * present in the platform
166 static int __init
167 dmar_parse_one_drhd(struct acpi_dmar_header *header)
169 struct acpi_dmar_hardware_unit *drhd;
170 struct dmar_drhd_unit *dmaru;
171 int ret = 0;
173 dmaru = kzalloc(sizeof(*dmaru), GFP_KERNEL);
174 if (!dmaru)
175 return -ENOMEM;
177 dmaru->hdr = header;
178 drhd = (struct acpi_dmar_hardware_unit *)header;
179 dmaru->reg_base_addr = drhd->address;
180 dmaru->include_all = drhd->flags & 0x1; /* BIT0: INCLUDE_ALL */
182 ret = alloc_iommu(dmaru);
183 if (ret) {
184 kfree(dmaru);
185 return ret;
187 dmar_register_drhd_unit(dmaru);
188 return 0;
191 static int __init dmar_parse_dev(struct dmar_drhd_unit *dmaru)
193 struct acpi_dmar_hardware_unit *drhd;
194 int ret = 0;
196 drhd = (struct acpi_dmar_hardware_unit *) dmaru->hdr;
198 if (dmaru->include_all)
199 return 0;
201 ret = dmar_parse_dev_scope((void *)(drhd + 1),
202 ((void *)drhd) + drhd->header.length,
203 &dmaru->devices_cnt, &dmaru->devices,
204 drhd->segment);
205 if (ret) {
206 list_del(&dmaru->list);
207 kfree(dmaru);
209 return ret;
212 #ifdef CONFIG_DMAR
213 LIST_HEAD(dmar_rmrr_units);
215 static void __init dmar_register_rmrr_unit(struct dmar_rmrr_unit *rmrr)
217 list_add(&rmrr->list, &dmar_rmrr_units);
221 static int __init
222 dmar_parse_one_rmrr(struct acpi_dmar_header *header)
224 struct acpi_dmar_reserved_memory *rmrr;
225 struct dmar_rmrr_unit *rmrru;
227 rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL);
228 if (!rmrru)
229 return -ENOMEM;
231 rmrru->hdr = header;
232 rmrr = (struct acpi_dmar_reserved_memory *)header;
233 rmrru->base_address = rmrr->base_address;
234 rmrru->end_address = rmrr->end_address;
236 dmar_register_rmrr_unit(rmrru);
237 return 0;
240 static int __init
241 rmrr_parse_dev(struct dmar_rmrr_unit *rmrru)
243 struct acpi_dmar_reserved_memory *rmrr;
244 int ret;
246 rmrr = (struct acpi_dmar_reserved_memory *) rmrru->hdr;
247 ret = dmar_parse_dev_scope((void *)(rmrr + 1),
248 ((void *)rmrr) + rmrr->header.length,
249 &rmrru->devices_cnt, &rmrru->devices, rmrr->segment);
251 if (ret || (rmrru->devices_cnt == 0)) {
252 list_del(&rmrru->list);
253 kfree(rmrru);
255 return ret;
257 #endif
259 static void __init
260 dmar_table_print_dmar_entry(struct acpi_dmar_header *header)
262 struct acpi_dmar_hardware_unit *drhd;
263 struct acpi_dmar_reserved_memory *rmrr;
265 switch (header->type) {
266 case ACPI_DMAR_TYPE_HARDWARE_UNIT:
267 drhd = (struct acpi_dmar_hardware_unit *)header;
268 printk (KERN_INFO PREFIX
269 "DRHD (flags: 0x%08x)base: 0x%016Lx\n",
270 drhd->flags, (unsigned long long)drhd->address);
271 break;
272 case ACPI_DMAR_TYPE_RESERVED_MEMORY:
273 rmrr = (struct acpi_dmar_reserved_memory *)header;
275 printk (KERN_INFO PREFIX
276 "RMRR base: 0x%016Lx end: 0x%016Lx\n",
277 (unsigned long long)rmrr->base_address,
278 (unsigned long long)rmrr->end_address);
279 break;
284 * dmar_table_detect - checks to see if the platform supports DMAR devices
286 static int __init dmar_table_detect(void)
288 acpi_status status = AE_OK;
290 /* if we could find DMAR table, then there are DMAR devices */
291 status = acpi_get_table(ACPI_SIG_DMAR, 0,
292 (struct acpi_table_header **)&dmar_tbl);
294 if (ACPI_SUCCESS(status) && !dmar_tbl) {
295 printk (KERN_WARNING PREFIX "Unable to map DMAR\n");
296 status = AE_NOT_FOUND;
299 return (ACPI_SUCCESS(status) ? 1 : 0);
303 * parse_dmar_table - parses the DMA reporting table
305 static int __init
306 parse_dmar_table(void)
308 struct acpi_table_dmar *dmar;
309 struct acpi_dmar_header *entry_header;
310 int ret = 0;
313 * Do it again, earlier dmar_tbl mapping could be mapped with
314 * fixed map.
316 dmar_table_detect();
318 dmar = (struct acpi_table_dmar *)dmar_tbl;
319 if (!dmar)
320 return -ENODEV;
322 if (dmar->width < PAGE_SHIFT - 1) {
323 printk(KERN_WARNING PREFIX "Invalid DMAR haw\n");
324 return -EINVAL;
327 printk (KERN_INFO PREFIX "Host address width %d\n",
328 dmar->width + 1);
330 entry_header = (struct acpi_dmar_header *)(dmar + 1);
331 while (((unsigned long)entry_header) <
332 (((unsigned long)dmar) + dmar_tbl->length)) {
333 dmar_table_print_dmar_entry(entry_header);
335 switch (entry_header->type) {
336 case ACPI_DMAR_TYPE_HARDWARE_UNIT:
337 ret = dmar_parse_one_drhd(entry_header);
338 break;
339 case ACPI_DMAR_TYPE_RESERVED_MEMORY:
340 #ifdef CONFIG_DMAR
341 ret = dmar_parse_one_rmrr(entry_header);
342 #endif
343 break;
344 default:
345 printk(KERN_WARNING PREFIX
346 "Unknown DMAR structure type\n");
347 ret = 0; /* for forward compatibility */
348 break;
350 if (ret)
351 break;
353 entry_header = ((void *)entry_header + entry_header->length);
355 return ret;
358 int dmar_pci_device_match(struct pci_dev *devices[], int cnt,
359 struct pci_dev *dev)
361 int index;
363 while (dev) {
364 for (index = 0; index < cnt; index++)
365 if (dev == devices[index])
366 return 1;
368 /* Check our parent */
369 dev = dev->bus->self;
372 return 0;
375 struct dmar_drhd_unit *
376 dmar_find_matched_drhd_unit(struct pci_dev *dev)
378 struct dmar_drhd_unit *dmaru = NULL;
379 struct acpi_dmar_hardware_unit *drhd;
381 list_for_each_entry(dmaru, &dmar_drhd_units, list) {
382 drhd = container_of(dmaru->hdr,
383 struct acpi_dmar_hardware_unit,
384 header);
386 if (dmaru->include_all &&
387 drhd->segment == pci_domain_nr(dev->bus))
388 return dmaru;
390 if (dmar_pci_device_match(dmaru->devices,
391 dmaru->devices_cnt, dev))
392 return dmaru;
395 return NULL;
398 int __init dmar_dev_scope_init(void)
400 struct dmar_drhd_unit *drhd, *drhd_n;
401 int ret = -ENODEV;
403 list_for_each_entry_safe(drhd, drhd_n, &dmar_drhd_units, list) {
404 ret = dmar_parse_dev(drhd);
405 if (ret)
406 return ret;
409 #ifdef CONFIG_DMAR
411 struct dmar_rmrr_unit *rmrr, *rmrr_n;
412 list_for_each_entry_safe(rmrr, rmrr_n, &dmar_rmrr_units, list) {
413 ret = rmrr_parse_dev(rmrr);
414 if (ret)
415 return ret;
418 #endif
420 return ret;
424 int __init dmar_table_init(void)
426 static int dmar_table_initialized;
427 int ret;
429 if (dmar_table_initialized)
430 return 0;
432 dmar_table_initialized = 1;
434 ret = parse_dmar_table();
435 if (ret) {
436 if (ret != -ENODEV)
437 printk(KERN_INFO PREFIX "parse DMAR table failure.\n");
438 return ret;
441 if (list_empty(&dmar_drhd_units)) {
442 printk(KERN_INFO PREFIX "No DMAR devices found\n");
443 return -ENODEV;
446 #ifdef CONFIG_DMAR
447 if (list_empty(&dmar_rmrr_units))
448 printk(KERN_INFO PREFIX "No RMRR found\n");
449 #endif
451 #ifdef CONFIG_INTR_REMAP
452 parse_ioapics_under_ir();
453 #endif
454 return 0;
457 void __init detect_intel_iommu(void)
459 int ret;
461 ret = dmar_table_detect();
464 #ifdef CONFIG_INTR_REMAP
465 struct acpi_table_dmar *dmar;
467 * for now we will disable dma-remapping when interrupt
468 * remapping is enabled.
469 * When support for queued invalidation for IOTLB invalidation
470 * is added, we will not need this any more.
472 dmar = (struct acpi_table_dmar *) dmar_tbl;
473 if (ret && cpu_has_x2apic && dmar->flags & 0x1)
474 printk(KERN_INFO
475 "Queued invalidation will be enabled to support "
476 "x2apic and Intr-remapping.\n");
477 #endif
478 #ifdef CONFIG_DMAR
479 if (ret && !no_iommu && !iommu_detected && !swiotlb &&
480 !dmar_disabled)
481 iommu_detected = 1;
482 #endif
484 dmar_tbl = NULL;
488 int alloc_iommu(struct dmar_drhd_unit *drhd)
490 struct intel_iommu *iommu;
491 int map_size;
492 u32 ver;
493 static int iommu_allocated = 0;
494 int agaw = 0;
496 iommu = kzalloc(sizeof(*iommu), GFP_KERNEL);
497 if (!iommu)
498 return -ENOMEM;
500 iommu->seq_id = iommu_allocated++;
502 iommu->reg = ioremap(drhd->reg_base_addr, VTD_PAGE_SIZE);
503 if (!iommu->reg) {
504 printk(KERN_ERR "IOMMU: can't map the region\n");
505 goto error;
507 iommu->cap = dmar_readq(iommu->reg + DMAR_CAP_REG);
508 iommu->ecap = dmar_readq(iommu->reg + DMAR_ECAP_REG);
510 #ifdef CONFIG_DMAR
511 agaw = iommu_calculate_agaw(iommu);
512 if (agaw < 0) {
513 printk(KERN_ERR
514 "Cannot get a valid agaw for iommu (seq_id = %d)\n",
515 iommu->seq_id);
516 goto error;
518 #endif
519 iommu->agaw = agaw;
521 /* the registers might be more than one page */
522 map_size = max_t(int, ecap_max_iotlb_offset(iommu->ecap),
523 cap_max_fault_reg_offset(iommu->cap));
524 map_size = VTD_PAGE_ALIGN(map_size);
525 if (map_size > VTD_PAGE_SIZE) {
526 iounmap(iommu->reg);
527 iommu->reg = ioremap(drhd->reg_base_addr, map_size);
528 if (!iommu->reg) {
529 printk(KERN_ERR "IOMMU: can't map the region\n");
530 goto error;
534 ver = readl(iommu->reg + DMAR_VER_REG);
535 pr_debug("IOMMU %llx: ver %d:%d cap %llx ecap %llx\n",
536 (unsigned long long)drhd->reg_base_addr,
537 DMAR_VER_MAJOR(ver), DMAR_VER_MINOR(ver),
538 (unsigned long long)iommu->cap,
539 (unsigned long long)iommu->ecap);
541 spin_lock_init(&iommu->register_lock);
543 drhd->iommu = iommu;
544 return 0;
545 error:
546 kfree(iommu);
547 return -1;
550 void free_iommu(struct intel_iommu *iommu)
552 if (!iommu)
553 return;
555 #ifdef CONFIG_DMAR
556 free_dmar_iommu(iommu);
557 #endif
559 if (iommu->reg)
560 iounmap(iommu->reg);
561 kfree(iommu);
565 * Reclaim all the submitted descriptors which have completed its work.
567 static inline void reclaim_free_desc(struct q_inval *qi)
569 while (qi->desc_status[qi->free_tail] == QI_DONE) {
570 qi->desc_status[qi->free_tail] = QI_FREE;
571 qi->free_tail = (qi->free_tail + 1) % QI_LENGTH;
572 qi->free_cnt++;
576 static int qi_check_fault(struct intel_iommu *iommu, int index)
578 u32 fault;
579 int head;
580 struct q_inval *qi = iommu->qi;
581 int wait_index = (index + 1) % QI_LENGTH;
583 fault = readl(iommu->reg + DMAR_FSTS_REG);
586 * If IQE happens, the head points to the descriptor associated
587 * with the error. No new descriptors are fetched until the IQE
588 * is cleared.
590 if (fault & DMA_FSTS_IQE) {
591 head = readl(iommu->reg + DMAR_IQH_REG);
592 if ((head >> 4) == index) {
593 memcpy(&qi->desc[index], &qi->desc[wait_index],
594 sizeof(struct qi_desc));
595 __iommu_flush_cache(iommu, &qi->desc[index],
596 sizeof(struct qi_desc));
597 writel(DMA_FSTS_IQE, iommu->reg + DMAR_FSTS_REG);
598 return -EINVAL;
602 return 0;
606 * Submit the queued invalidation descriptor to the remapping
607 * hardware unit and wait for its completion.
609 int qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu)
611 int rc = 0;
612 struct q_inval *qi = iommu->qi;
613 struct qi_desc *hw, wait_desc;
614 int wait_index, index;
615 unsigned long flags;
617 if (!qi)
618 return 0;
620 hw = qi->desc;
622 spin_lock_irqsave(&qi->q_lock, flags);
623 while (qi->free_cnt < 3) {
624 spin_unlock_irqrestore(&qi->q_lock, flags);
625 cpu_relax();
626 spin_lock_irqsave(&qi->q_lock, flags);
629 index = qi->free_head;
630 wait_index = (index + 1) % QI_LENGTH;
632 qi->desc_status[index] = qi->desc_status[wait_index] = QI_IN_USE;
634 hw[index] = *desc;
636 wait_desc.low = QI_IWD_STATUS_DATA(QI_DONE) |
637 QI_IWD_STATUS_WRITE | QI_IWD_TYPE;
638 wait_desc.high = virt_to_phys(&qi->desc_status[wait_index]);
640 hw[wait_index] = wait_desc;
642 __iommu_flush_cache(iommu, &hw[index], sizeof(struct qi_desc));
643 __iommu_flush_cache(iommu, &hw[wait_index], sizeof(struct qi_desc));
645 qi->free_head = (qi->free_head + 2) % QI_LENGTH;
646 qi->free_cnt -= 2;
649 * update the HW tail register indicating the presence of
650 * new descriptors.
652 writel(qi->free_head << 4, iommu->reg + DMAR_IQT_REG);
654 while (qi->desc_status[wait_index] != QI_DONE) {
656 * We will leave the interrupts disabled, to prevent interrupt
657 * context to queue another cmd while a cmd is already submitted
658 * and waiting for completion on this cpu. This is to avoid
659 * a deadlock where the interrupt context can wait indefinitely
660 * for free slots in the queue.
662 rc = qi_check_fault(iommu, index);
663 if (rc)
664 goto out;
666 spin_unlock(&qi->q_lock);
667 cpu_relax();
668 spin_lock(&qi->q_lock);
670 out:
671 qi->desc_status[index] = qi->desc_status[wait_index] = QI_DONE;
673 reclaim_free_desc(qi);
674 spin_unlock_irqrestore(&qi->q_lock, flags);
676 return rc;
680 * Flush the global interrupt entry cache.
682 void qi_global_iec(struct intel_iommu *iommu)
684 struct qi_desc desc;
686 desc.low = QI_IEC_TYPE;
687 desc.high = 0;
689 /* should never fail */
690 qi_submit_sync(&desc, iommu);
693 int qi_flush_context(struct intel_iommu *iommu, u16 did, u16 sid, u8 fm,
694 u64 type, int non_present_entry_flush)
696 struct qi_desc desc;
698 if (non_present_entry_flush) {
699 if (!cap_caching_mode(iommu->cap))
700 return 1;
701 else
702 did = 0;
705 desc.low = QI_CC_FM(fm) | QI_CC_SID(sid) | QI_CC_DID(did)
706 | QI_CC_GRAN(type) | QI_CC_TYPE;
707 desc.high = 0;
709 return qi_submit_sync(&desc, iommu);
712 int qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr,
713 unsigned int size_order, u64 type,
714 int non_present_entry_flush)
716 u8 dw = 0, dr = 0;
718 struct qi_desc desc;
719 int ih = 0;
721 if (non_present_entry_flush) {
722 if (!cap_caching_mode(iommu->cap))
723 return 1;
724 else
725 did = 0;
728 if (cap_write_drain(iommu->cap))
729 dw = 1;
731 if (cap_read_drain(iommu->cap))
732 dr = 1;
734 desc.low = QI_IOTLB_DID(did) | QI_IOTLB_DR(dr) | QI_IOTLB_DW(dw)
735 | QI_IOTLB_GRAN(type) | QI_IOTLB_TYPE;
736 desc.high = QI_IOTLB_ADDR(addr) | QI_IOTLB_IH(ih)
737 | QI_IOTLB_AM(size_order);
739 return qi_submit_sync(&desc, iommu);
743 * Enable Queued Invalidation interface. This is a must to support
744 * interrupt-remapping. Also used by DMA-remapping, which replaces
745 * register based IOTLB invalidation.
747 int dmar_enable_qi(struct intel_iommu *iommu)
749 u32 cmd, sts;
750 unsigned long flags;
751 struct q_inval *qi;
753 if (!ecap_qis(iommu->ecap))
754 return -ENOENT;
757 * queued invalidation is already setup and enabled.
759 if (iommu->qi)
760 return 0;
762 iommu->qi = kmalloc(sizeof(*qi), GFP_KERNEL);
763 if (!iommu->qi)
764 return -ENOMEM;
766 qi = iommu->qi;
768 qi->desc = (void *)(get_zeroed_page(GFP_KERNEL));
769 if (!qi->desc) {
770 kfree(qi);
771 iommu->qi = 0;
772 return -ENOMEM;
775 qi->desc_status = kmalloc(QI_LENGTH * sizeof(int), GFP_KERNEL);
776 if (!qi->desc_status) {
777 free_page((unsigned long) qi->desc);
778 kfree(qi);
779 iommu->qi = 0;
780 return -ENOMEM;
783 qi->free_head = qi->free_tail = 0;
784 qi->free_cnt = QI_LENGTH;
786 spin_lock_init(&qi->q_lock);
788 spin_lock_irqsave(&iommu->register_lock, flags);
789 /* write zero to the tail reg */
790 writel(0, iommu->reg + DMAR_IQT_REG);
792 dmar_writeq(iommu->reg + DMAR_IQA_REG, virt_to_phys(qi->desc));
794 cmd = iommu->gcmd | DMA_GCMD_QIE;
795 iommu->gcmd |= DMA_GCMD_QIE;
796 writel(cmd, iommu->reg + DMAR_GCMD_REG);
798 /* Make sure hardware complete it */
799 IOMMU_WAIT_OP(iommu, DMAR_GSTS_REG, readl, (sts & DMA_GSTS_QIES), sts);
800 spin_unlock_irqrestore(&iommu->register_lock, flags);
802 return 0;