Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Apr 14-17, 2025
Register
Loading...
Note: File does not exist in v6.2.
  1/*
  2 * Copyright © 2015 Intel Corporation.
  3 *
  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.
  7 *
  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.
 12 *
 13 * Authors: David Woodhouse <dwmw2@infradead.org>
 14 */
 15
 16#include <linux/intel-iommu.h>
 17#include <linux/mmu_notifier.h>
 18#include <linux/sched.h>
 19#include <linux/slab.h>
 20#include <linux/intel-svm.h>
 21#include <linux/rculist.h>
 22#include <linux/pci.h>
 23#include <linux/pci-ats.h>
 24#include <linux/dmar.h>
 25#include <linux/interrupt.h>
 26
 27static irqreturn_t prq_event_thread(int irq, void *d);
 28
 29struct pasid_entry {
 30	u64 val;
 31};
 32
 33struct pasid_state_entry {
 34	u64 val;
 35};
 36
 37int intel_svm_alloc_pasid_tables(struct intel_iommu *iommu)
 38{
 39	struct page *pages;
 40	int order;
 41
 42	/* Start at 2 because it's defined as 2^(1+PSS) */
 43	iommu->pasid_max = 2 << ecap_pss(iommu->ecap);
 44
 45	/* Eventually I'm promised we will get a multi-level PASID table
 46	 * and it won't have to be physically contiguous. Until then,
 47	 * limit the size because 8MiB contiguous allocations can be hard
 48	 * to come by. The limit of 0x20000, which is 1MiB for each of
 49	 * the PASID and PASID-state tables, is somewhat arbitrary. */
 50	if (iommu->pasid_max > 0x20000)
 51		iommu->pasid_max = 0x20000;
 52
 53	order = get_order(sizeof(struct pasid_entry) * iommu->pasid_max);
 54	pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, order);
 55	if (!pages) {
 56		pr_warn("IOMMU: %s: Failed to allocate PASID table\n",
 57			iommu->name);
 58		return -ENOMEM;
 59	}
 60	iommu->pasid_table = page_address(pages);
 61	pr_info("%s: Allocated order %d PASID table.\n", iommu->name, order);
 62
 63	if (ecap_dis(iommu->ecap)) {
 64		/* Just making it explicit... */
 65		BUILD_BUG_ON(sizeof(struct pasid_entry) != sizeof(struct pasid_state_entry));
 66		pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, order);
 67		if (pages)
 68			iommu->pasid_state_table = page_address(pages);
 69		else
 70			pr_warn("IOMMU: %s: Failed to allocate PASID state table\n",
 71				iommu->name);
 72	}
 73
 74	idr_init(&iommu->pasid_idr);
 75
 76	return 0;
 77}
 78
 79int intel_svm_free_pasid_tables(struct intel_iommu *iommu)
 80{
 81	int order = get_order(sizeof(struct pasid_entry) * iommu->pasid_max);
 82
 83	if (iommu->pasid_table) {
 84		free_pages((unsigned long)iommu->pasid_table, order);
 85		iommu->pasid_table = NULL;
 86	}
 87	if (iommu->pasid_state_table) {
 88		free_pages((unsigned long)iommu->pasid_state_table, order);
 89		iommu->pasid_state_table = NULL;
 90	}
 91	idr_destroy(&iommu->pasid_idr);
 92	return 0;
 93}
 94
 95#define PRQ_ORDER 0
 96
 97int intel_svm_enable_prq(struct intel_iommu *iommu)
 98{
 99	struct page *pages;
100	int irq, ret;
101
102	pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, PRQ_ORDER);
103	if (!pages) {
104		pr_warn("IOMMU: %s: Failed to allocate page request queue\n",
105			iommu->name);
106		return -ENOMEM;
107	}
108	iommu->prq = page_address(pages);
109
110	irq = dmar_alloc_hwirq(DMAR_UNITS_SUPPORTED + iommu->seq_id, iommu->node, iommu);
111	if (irq <= 0) {
112		pr_err("IOMMU: %s: Failed to create IRQ vector for page request queue\n",
113		       iommu->name);
114		ret = -EINVAL;
115	err:
116		free_pages((unsigned long)iommu->prq, PRQ_ORDER);
117		iommu->prq = NULL;
118		return ret;
119	}
120	iommu->pr_irq = irq;
121
122	snprintf(iommu->prq_name, sizeof(iommu->prq_name), "dmar%d-prq", iommu->seq_id);
123
124	ret = request_threaded_irq(irq, NULL, prq_event_thread, IRQF_ONESHOT,
125				   iommu->prq_name, iommu);
126	if (ret) {
127		pr_err("IOMMU: %s: Failed to request IRQ for page request queue\n",
128		       iommu->name);
129		dmar_free_hwirq(irq);
130		goto err;
131	}
132	dmar_writeq(iommu->reg + DMAR_PQH_REG, 0ULL);
133	dmar_writeq(iommu->reg + DMAR_PQT_REG, 0ULL);
134	dmar_writeq(iommu->reg + DMAR_PQA_REG, virt_to_phys(iommu->prq) | PRQ_ORDER);
135
136	return 0;
137}
138
139int intel_svm_finish_prq(struct intel_iommu *iommu)
140{
141	dmar_writeq(iommu->reg + DMAR_PQH_REG, 0ULL);
142	dmar_writeq(iommu->reg + DMAR_PQT_REG, 0ULL);
143	dmar_writeq(iommu->reg + DMAR_PQA_REG, 0ULL);
144
145	free_irq(iommu->pr_irq, iommu);
146	dmar_free_hwirq(iommu->pr_irq);
147	iommu->pr_irq = 0;
148
149	free_pages((unsigned long)iommu->prq, PRQ_ORDER);
150	iommu->prq = NULL;
151
152	return 0;
153}
154
155static void intel_flush_svm_range_dev (struct intel_svm *svm, struct intel_svm_dev *sdev,
156				       unsigned long address, unsigned long pages, int ih, int gl)
157{
158	struct qi_desc desc;
159
160	if (pages == -1) {
161		/* For global kernel pages we have to flush them in *all* PASIDs
162		 * because that's the only option the hardware gives us. Despite
163		 * the fact that they are actually only accessible through one. */
164		if (gl)
165			desc.low = QI_EIOTLB_PASID(svm->pasid) | QI_EIOTLB_DID(sdev->did) |
166				QI_EIOTLB_GRAN(QI_GRAN_ALL_ALL) | QI_EIOTLB_TYPE;
167		else
168			desc.low = QI_EIOTLB_PASID(svm->pasid) | QI_EIOTLB_DID(sdev->did) |
169				QI_EIOTLB_GRAN(QI_GRAN_NONG_PASID) | QI_EIOTLB_TYPE;
170		desc.high = 0;
171	} else {
172		int mask = ilog2(__roundup_pow_of_two(pages));
173
174		desc.low = QI_EIOTLB_PASID(svm->pasid) | QI_EIOTLB_DID(sdev->did) |
175			QI_EIOTLB_GRAN(QI_GRAN_PSI_PASID) | QI_EIOTLB_TYPE;
176		desc.high = QI_EIOTLB_ADDR(address) | QI_EIOTLB_GL(gl) |
177			QI_EIOTLB_IH(ih) | QI_EIOTLB_AM(mask);
178	}
179	qi_submit_sync(&desc, svm->iommu);
180
181	if (sdev->dev_iotlb) {
182		desc.low = QI_DEV_EIOTLB_PASID(svm->pasid) | QI_DEV_EIOTLB_SID(sdev->sid) |
183			QI_DEV_EIOTLB_QDEP(sdev->qdep) | QI_DEIOTLB_TYPE;
184		if (pages == -1) {
185			desc.high = QI_DEV_EIOTLB_ADDR(-1ULL >> 1) | QI_DEV_EIOTLB_SIZE;
186		} else if (pages > 1) {
187			/* The least significant zero bit indicates the size. So,
188			 * for example, an "address" value of 0x12345f000 will
189			 * flush from 0x123440000 to 0x12347ffff (256KiB). */
190			unsigned long last = address + ((unsigned long)(pages - 1) << VTD_PAGE_SHIFT);
191			unsigned long mask = __rounddown_pow_of_two(address ^ last);;
192
193			desc.high = QI_DEV_EIOTLB_ADDR((address & ~mask) | (mask - 1)) | QI_DEV_EIOTLB_SIZE;
194		} else {
195			desc.high = QI_DEV_EIOTLB_ADDR(address);
196		}
197		qi_submit_sync(&desc, svm->iommu);
198	}
199}
200
201static void intel_flush_svm_range(struct intel_svm *svm, unsigned long address,
202				  unsigned long pages, int ih, int gl)
203{
204	struct intel_svm_dev *sdev;
205
206	/* Try deferred invalidate if available */
207	if (svm->iommu->pasid_state_table &&
208	    !cmpxchg64(&svm->iommu->pasid_state_table[svm->pasid].val, 0, 1ULL << 63))
209		return;
210
211	rcu_read_lock();
212	list_for_each_entry_rcu(sdev, &svm->devs, list)
213		intel_flush_svm_range_dev(svm, sdev, address, pages, ih, gl);
214	rcu_read_unlock();
215}
216
217static void intel_change_pte(struct mmu_notifier *mn, struct mm_struct *mm,
218			     unsigned long address, pte_t pte)
219{
220	struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
221
222	intel_flush_svm_range(svm, address, 1, 1, 0);
223}
224
225static void intel_invalidate_page(struct mmu_notifier *mn, struct mm_struct *mm,
226				  unsigned long address)
227{
228	struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
229
230	intel_flush_svm_range(svm, address, 1, 1, 0);
231}
232
233/* Pages have been freed at this point */
234static void intel_invalidate_range(struct mmu_notifier *mn,
235				   struct mm_struct *mm,
236				   unsigned long start, unsigned long end)
237{
238	struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
239
240	intel_flush_svm_range(svm, start,
241			      (end - start + PAGE_SIZE - 1) >> VTD_PAGE_SHIFT, 0, 0);
242}
243
244
245static void intel_flush_pasid_dev(struct intel_svm *svm, struct intel_svm_dev *sdev, int pasid)
246{
247	struct qi_desc desc;
248
249	desc.high = 0;
250	desc.low = QI_PC_TYPE | QI_PC_DID(sdev->did) | QI_PC_PASID_SEL | QI_PC_PASID(pasid);
251
252	qi_submit_sync(&desc, svm->iommu);
253}
254
255static void intel_mm_release(struct mmu_notifier *mn, struct mm_struct *mm)
256{
257	struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
258	struct intel_svm_dev *sdev;
259
260	/* This might end up being called from exit_mmap(), *before* the page
261	 * tables are cleared. And __mmu_notifier_release() will delete us from
262	 * the list of notifiers so that our invalidate_range() callback doesn't
263	 * get called when the page tables are cleared. So we need to protect
264	 * against hardware accessing those page tables.
265	 *
266	 * We do it by clearing the entry in the PASID table and then flushing
267	 * the IOTLB and the PASID table caches. This might upset hardware;
268	 * perhaps we'll want to point the PASID to a dummy PGD (like the zero
269	 * page) so that we end up taking a fault that the hardware really
270	 * *has* to handle gracefully without affecting other processes.
271	 */
272	svm->iommu->pasid_table[svm->pasid].val = 0;
273	wmb();
274
275	rcu_read_lock();
276	list_for_each_entry_rcu(sdev, &svm->devs, list) {
277		intel_flush_pasid_dev(svm, sdev, svm->pasid);
278		intel_flush_svm_range_dev(svm, sdev, 0, -1, 0, !svm->mm);
279	}
280	rcu_read_unlock();
281
282}
283
284static const struct mmu_notifier_ops intel_mmuops = {
285	.release = intel_mm_release,
286	.change_pte = intel_change_pte,
287	.invalidate_page = intel_invalidate_page,
288	.invalidate_range = intel_invalidate_range,
289};
290
291static DEFINE_MUTEX(pasid_mutex);
292
293int intel_svm_bind_mm(struct device *dev, int *pasid, int flags, struct svm_dev_ops *ops)
294{
295	struct intel_iommu *iommu = intel_svm_device_to_iommu(dev);
296	struct intel_svm_dev *sdev;
297	struct intel_svm *svm = NULL;
298	struct mm_struct *mm = NULL;
299	int pasid_max;
300	int ret;
301
302	if (WARN_ON(!iommu))
303		return -EINVAL;
304
305	if (dev_is_pci(dev)) {
306		pasid_max = pci_max_pasids(to_pci_dev(dev));
307		if (pasid_max < 0)
308			return -EINVAL;
309	} else
310		pasid_max = 1 << 20;
311
312	if ((flags & SVM_FLAG_SUPERVISOR_MODE)) {
313		if (!ecap_srs(iommu->ecap))
314			return -EINVAL;
315	} else if (pasid) {
316		mm = get_task_mm(current);
317		BUG_ON(!mm);
318	}
319
320	mutex_lock(&pasid_mutex);
321	if (pasid && !(flags & SVM_FLAG_PRIVATE_PASID)) {
322		int i;
323
324		idr_for_each_entry(&iommu->pasid_idr, svm, i) {
325			if (svm->mm != mm ||
326			    (svm->flags & SVM_FLAG_PRIVATE_PASID))
327				continue;
328
329			if (svm->pasid >= pasid_max) {
330				dev_warn(dev,
331					 "Limited PASID width. Cannot use existing PASID %d\n",
332					 svm->pasid);
333				ret = -ENOSPC;
334				goto out;
335			}
336
337			list_for_each_entry(sdev, &svm->devs, list) {
338				if (dev == sdev->dev) {
339					if (sdev->ops != ops) {
340						ret = -EBUSY;
341						goto out;
342					}
343					sdev->users++;
344					goto success;
345				}
346			}
347
348			break;
349		}
350	}
351
352	sdev = kzalloc(sizeof(*sdev), GFP_KERNEL);
353	if (!sdev) {
354		ret = -ENOMEM;
355		goto out;
356	}
357	sdev->dev = dev;
358
359	ret = intel_iommu_enable_pasid(iommu, sdev);
360	if (ret || !pasid) {
361		/* If they don't actually want to assign a PASID, this is
362		 * just an enabling check/preparation. */
363		kfree(sdev);
364		goto out;
365	}
366	/* Finish the setup now we know we're keeping it */
367	sdev->users = 1;
368	sdev->ops = ops;
369	init_rcu_head(&sdev->rcu);
370
371	if (!svm) {
372		svm = kzalloc(sizeof(*svm), GFP_KERNEL);
373		if (!svm) {
374			ret = -ENOMEM;
375			kfree(sdev);
376			goto out;
377		}
378		svm->iommu = iommu;
379
380		if (pasid_max > iommu->pasid_max)
381			pasid_max = iommu->pasid_max;
382
383		/* Do not use PASID 0 in caching mode (virtualised IOMMU) */
384		ret = idr_alloc(&iommu->pasid_idr, svm,
385				!!cap_caching_mode(iommu->cap),
386				pasid_max - 1, GFP_KERNEL);
387		if (ret < 0) {
388			kfree(svm);
389			goto out;
390		}
391		svm->pasid = ret;
392		svm->notifier.ops = &intel_mmuops;
393		svm->mm = mm;
394		svm->flags = flags;
395		INIT_LIST_HEAD_RCU(&svm->devs);
396		ret = -ENOMEM;
397		if (mm) {
398			ret = mmu_notifier_register(&svm->notifier, mm);
399			if (ret) {
400				idr_remove(&svm->iommu->pasid_idr, svm->pasid);
401				kfree(svm);
402				kfree(sdev);
403				goto out;
404			}
405			iommu->pasid_table[svm->pasid].val = (u64)__pa(mm->pgd) | 1;
406		} else
407			iommu->pasid_table[svm->pasid].val = (u64)__pa(init_mm.pgd) | 1 | (1ULL << 11);
408		wmb();
409		/* In caching mode, we still have to flush with PASID 0 when
410		 * a PASID table entry becomes present. Not entirely clear
411		 * *why* that would be the case — surely we could just issue
412		 * a flush with the PASID value that we've changed? The PASID
413		 * is the index into the table, after all. It's not like domain
414		 * IDs in the case of the equivalent context-entry change in
415		 * caching mode. And for that matter it's not entirely clear why
416		 * a VMM would be in the business of caching the PASID table
417		 * anyway. Surely that can be left entirely to the guest? */
418		if (cap_caching_mode(iommu->cap))
419			intel_flush_pasid_dev(svm, sdev, 0);
420	}
421	list_add_rcu(&sdev->list, &svm->devs);
422
423 success:
424	*pasid = svm->pasid;
425	ret = 0;
426 out:
427	mutex_unlock(&pasid_mutex);
428	if (mm)
429		mmput(mm);
430	return ret;
431}
432EXPORT_SYMBOL_GPL(intel_svm_bind_mm);
433
434int intel_svm_unbind_mm(struct device *dev, int pasid)
435{
436	struct intel_svm_dev *sdev;
437	struct intel_iommu *iommu;
438	struct intel_svm *svm;
439	int ret = -EINVAL;
440
441	mutex_lock(&pasid_mutex);
442	iommu = intel_svm_device_to_iommu(dev);
443	if (!iommu || !iommu->pasid_table)
444		goto out;
445
446	svm = idr_find(&iommu->pasid_idr, pasid);
447	if (!svm)
448		goto out;
449
450	list_for_each_entry(sdev, &svm->devs, list) {
451		if (dev == sdev->dev) {
452			ret = 0;
453			sdev->users--;
454			if (!sdev->users) {
455				list_del_rcu(&sdev->list);
456				/* Flush the PASID cache and IOTLB for this device.
457				 * Note that we do depend on the hardware *not* using
458				 * the PASID any more. Just as we depend on other
459				 * devices never using PASIDs that they have no right
460				 * to use. We have a *shared* PASID table, because it's
461				 * large and has to be physically contiguous. So it's
462				 * hard to be as defensive as we might like. */
463				intel_flush_pasid_dev(svm, sdev, svm->pasid);
464				intel_flush_svm_range_dev(svm, sdev, 0, -1, 0, !svm->mm);
465				kfree_rcu(sdev, rcu);
466
467				if (list_empty(&svm->devs)) {
468
469					idr_remove(&svm->iommu->pasid_idr, svm->pasid);
470					if (svm->mm)
471						mmu_notifier_unregister(&svm->notifier, svm->mm);
472
473					/* We mandate that no page faults may be outstanding
474					 * for the PASID when intel_svm_unbind_mm() is called.
475					 * If that is not obeyed, subtle errors will happen.
476					 * Let's make them less subtle... */
477					memset(svm, 0x6b, sizeof(*svm));
478					kfree(svm);
479				}
480			}
481			break;
482		}
483	}
484 out:
485	mutex_unlock(&pasid_mutex);
486
487	return ret;
488}
489EXPORT_SYMBOL_GPL(intel_svm_unbind_mm);
490
491/* Page request queue descriptor */
492struct page_req_dsc {
493	u64 srr:1;
494	u64 bof:1;
495	u64 pasid_present:1;
496	u64 lpig:1;
497	u64 pasid:20;
498	u64 bus:8;
499	u64 private:23;
500	u64 prg_index:9;
501	u64 rd_req:1;
502	u64 wr_req:1;
503	u64 exe_req:1;
504	u64 priv_req:1;
505	u64 devfn:8;
506	u64 addr:52;
507};
508
509#define PRQ_RING_MASK ((0x1000 << PRQ_ORDER) - 0x10)
510
511static bool access_error(struct vm_area_struct *vma, struct page_req_dsc *req)
512{
513	unsigned long requested = 0;
514
515	if (req->exe_req)
516		requested |= VM_EXEC;
517
518	if (req->rd_req)
519		requested |= VM_READ;
520
521	if (req->wr_req)
522		requested |= VM_WRITE;
523
524	return (requested & ~vma->vm_flags) != 0;
525}
526
527static irqreturn_t prq_event_thread(int irq, void *d)
528{
529	struct intel_iommu *iommu = d;
530	struct intel_svm *svm = NULL;
531	int head, tail, handled = 0;
532
533	/* Clear PPR bit before reading head/tail registers, to
534	 * ensure that we get a new interrupt if needed. */
535	writel(DMA_PRS_PPR, iommu->reg + DMAR_PRS_REG);
536
537	tail = dmar_readq(iommu->reg + DMAR_PQT_REG) & PRQ_RING_MASK;
538	head = dmar_readq(iommu->reg + DMAR_PQH_REG) & PRQ_RING_MASK;
539	while (head != tail) {
540		struct intel_svm_dev *sdev;
541		struct vm_area_struct *vma;
542		struct page_req_dsc *req;
543		struct qi_desc resp;
544		int ret, result;
545		u64 address;
546
547		handled = 1;
548
549		req = &iommu->prq[head / sizeof(*req)];
550
551		result = QI_RESP_FAILURE;
552		address = (u64)req->addr << VTD_PAGE_SHIFT;
553		if (!req->pasid_present) {
554			pr_err("%s: Page request without PASID: %08llx %08llx\n",
555			       iommu->name, ((unsigned long long *)req)[0],
556			       ((unsigned long long *)req)[1]);
557			goto bad_req;
558		}
559
560		if (!svm || svm->pasid != req->pasid) {
561			rcu_read_lock();
562			svm = idr_find(&iommu->pasid_idr, req->pasid);
563			/* It *can't* go away, because the driver is not permitted
564			 * to unbind the mm while any page faults are outstanding.
565			 * So we only need RCU to protect the internal idr code. */
566			rcu_read_unlock();
567
568			if (!svm) {
569				pr_err("%s: Page request for invalid PASID %d: %08llx %08llx\n",
570				       iommu->name, req->pasid, ((unsigned long long *)req)[0],
571				       ((unsigned long long *)req)[1]);
572				goto no_pasid;
573			}
574		}
575
576		result = QI_RESP_INVALID;
577		/* Since we're using init_mm.pgd directly, we should never take
578		 * any faults on kernel addresses. */
579		if (!svm->mm)
580			goto bad_req;
581		/* If the mm is already defunct, don't handle faults. */
582		if (!atomic_inc_not_zero(&svm->mm->mm_users))
583			goto bad_req;
584		down_read(&svm->mm->mmap_sem);
585		vma = find_extend_vma(svm->mm, address);
586		if (!vma || address < vma->vm_start)
587			goto invalid;
588
589		if (access_error(vma, req))
590			goto invalid;
591
592		ret = handle_mm_fault(vma, address,
593				      req->wr_req ? FAULT_FLAG_WRITE : 0);
594		if (ret & VM_FAULT_ERROR)
595			goto invalid;
596
597		result = QI_RESP_SUCCESS;
598	invalid:
599		up_read(&svm->mm->mmap_sem);
600		mmput(svm->mm);
601	bad_req:
602		/* Accounting for major/minor faults? */
603		rcu_read_lock();
604		list_for_each_entry_rcu(sdev, &svm->devs, list) {
605			if (sdev->sid == PCI_DEVID(req->bus, req->devfn))
606				break;
607		}
608		/* Other devices can go away, but the drivers are not permitted
609		 * to unbind while any page faults might be in flight. So it's
610		 * OK to drop the 'lock' here now we have it. */
611		rcu_read_unlock();
612
613		if (WARN_ON(&sdev->list == &svm->devs))
614			sdev = NULL;
615
616		if (sdev && sdev->ops && sdev->ops->fault_cb) {
617			int rwxp = (req->rd_req << 3) | (req->wr_req << 2) |
618				(req->exe_req << 1) | (req->priv_req);
619			sdev->ops->fault_cb(sdev->dev, req->pasid, req->addr, req->private, rwxp, result);
620		}
621		/* We get here in the error case where the PASID lookup failed,
622		   and these can be NULL. Do not use them below this point! */
623		sdev = NULL;
624		svm = NULL;
625	no_pasid:
626		if (req->lpig) {
627			/* Page Group Response */
628			resp.low = QI_PGRP_PASID(req->pasid) |
629				QI_PGRP_DID((req->bus << 8) | req->devfn) |
630				QI_PGRP_PASID_P(req->pasid_present) |
631				QI_PGRP_RESP_TYPE;
632			resp.high = QI_PGRP_IDX(req->prg_index) |
633				QI_PGRP_PRIV(req->private) | QI_PGRP_RESP_CODE(result);
634
635			qi_submit_sync(&resp, iommu);
636		} else if (req->srr) {
637			/* Page Stream Response */
638			resp.low = QI_PSTRM_IDX(req->prg_index) |
639				QI_PSTRM_PRIV(req->private) | QI_PSTRM_BUS(req->bus) |
640				QI_PSTRM_PASID(req->pasid) | QI_PSTRM_RESP_TYPE;
641			resp.high = QI_PSTRM_ADDR(address) | QI_PSTRM_DEVFN(req->devfn) |
642				QI_PSTRM_RESP_CODE(result);
643
644			qi_submit_sync(&resp, iommu);
645		}
646
647		head = (head + sizeof(*req)) & PRQ_RING_MASK;
648	}
649
650	dmar_writeq(iommu->reg + DMAR_PQH_REG, tail);
651
652	return IRQ_RETVAL(handled);
653}