intel_ctx.c revision 263746
1/*-
2 * Copyright (c) 2013 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Konstantin Belousov <kib@FreeBSD.org>
6 * under sponsorship from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: stable/10/sys/x86/iommu/intel_ctx.c 263746 2014-03-25 20:16:28Z kib $");
32
33#include <sys/param.h>
34#include <sys/systm.h>
35#include <sys/malloc.h>
36#include <sys/bus.h>
37#include <sys/interrupt.h>
38#include <sys/kernel.h>
39#include <sys/ktr.h>
40#include <sys/limits.h>
41#include <sys/lock.h>
42#include <sys/memdesc.h>
43#include <sys/mutex.h>
44#include <sys/proc.h>
45#include <sys/rwlock.h>
46#include <sys/rman.h>
47#include <sys/sysctl.h>
48#include <sys/taskqueue.h>
49#include <sys/tree.h>
50#include <sys/uio.h>
51#include <vm/vm.h>
52#include <vm/vm_extern.h>
53#include <vm/vm_kern.h>
54#include <vm/vm_object.h>
55#include <vm/vm_page.h>
56#include <vm/vm_pager.h>
57#include <vm/vm_map.h>
58#include <machine/atomic.h>
59#include <machine/bus.h>
60#include <machine/md_var.h>
61#include <machine/specialreg.h>
62#include <x86/include/busdma_impl.h>
63#include <x86/iommu/intel_reg.h>
64#include <x86/iommu/busdma_dmar.h>
65#include <x86/iommu/intel_dmar.h>
66#include <dev/pci/pcivar.h>
67
68static MALLOC_DEFINE(M_DMAR_CTX, "dmar_ctx", "Intel DMAR Context");
69
70static void dmar_ctx_unload_task(void *arg, int pending);
71
72static void
73dmar_ensure_ctx_page(struct dmar_unit *dmar, int bus)
74{
75	struct sf_buf *sf;
76	dmar_root_entry_t *re;
77	vm_page_t ctxm;
78
79	/*
80	 * Allocated context page must be linked.
81	 */
82	ctxm = dmar_pgalloc(dmar->ctx_obj, 1 + bus, DMAR_PGF_NOALLOC);
83	if (ctxm != NULL)
84		return;
85
86	/*
87	 * Page not present, allocate and link.  Note that other
88	 * thread might execute this sequence in parallel.  This
89	 * should be safe, because the context entries written by both
90	 * threads are equal.
91	 */
92	TD_PREP_PINNED_ASSERT;
93	ctxm = dmar_pgalloc(dmar->ctx_obj, 1 + bus, DMAR_PGF_ZERO |
94	    DMAR_PGF_WAITOK);
95	re = dmar_map_pgtbl(dmar->ctx_obj, 0, DMAR_PGF_NOALLOC, &sf);
96	re += bus;
97	dmar_pte_store(&re->r1, DMAR_ROOT_R1_P | (DMAR_ROOT_R1_CTP_MASK &
98	    VM_PAGE_TO_PHYS(ctxm)));
99	dmar_unmap_pgtbl(sf, DMAR_IS_COHERENT(dmar));
100	TD_PINNED_ASSERT;
101}
102
103static dmar_ctx_entry_t *
104dmar_map_ctx_entry(struct dmar_ctx *ctx, struct sf_buf **sfp)
105{
106	dmar_ctx_entry_t *ctxp;
107
108	ctxp = dmar_map_pgtbl(ctx->dmar->ctx_obj, 1 + ctx->bus,
109	    DMAR_PGF_NOALLOC | DMAR_PGF_WAITOK, sfp);
110	ctxp += ((ctx->slot & 0x1f) << 3) + (ctx->func & 0x7);
111	return (ctxp);
112}
113
114static void
115ctx_tag_init(struct dmar_ctx *ctx)
116{
117	bus_addr_t maxaddr;
118
119	maxaddr = MIN(ctx->end, BUS_SPACE_MAXADDR);
120	ctx->ctx_tag.common.ref_count = 1; /* Prevent free */
121	ctx->ctx_tag.common.impl = &bus_dma_dmar_impl;
122	ctx->ctx_tag.common.boundary = PCI_DMA_BOUNDARY;
123	ctx->ctx_tag.common.lowaddr = maxaddr;
124	ctx->ctx_tag.common.highaddr = maxaddr;
125	ctx->ctx_tag.common.maxsize = maxaddr;
126	ctx->ctx_tag.common.nsegments = BUS_SPACE_UNRESTRICTED;
127	ctx->ctx_tag.common.maxsegsz = maxaddr;
128	ctx->ctx_tag.ctx = ctx;
129	/* XXXKIB initialize tag further */
130}
131
132static void
133ctx_id_entry_init(struct dmar_ctx *ctx, dmar_ctx_entry_t *ctxp)
134{
135	struct dmar_unit *unit;
136	vm_page_t ctx_root;
137
138	unit = ctx->dmar;
139	KASSERT(ctxp->ctx1 == 0 && ctxp->ctx2 == 0,
140	    ("dmar%d: initialized ctx entry %d:%d:%d 0x%jx 0x%jx",
141	    unit->unit, ctx->bus, ctx->slot, ctx->func, ctxp->ctx1,
142	    ctxp->ctx2));
143	ctxp->ctx2 = DMAR_CTX2_DID(ctx->domain);
144	ctxp->ctx2 |= ctx->awlvl;
145	if ((ctx->flags & DMAR_CTX_IDMAP) != 0 &&
146	    (unit->hw_ecap & DMAR_ECAP_PT) != 0) {
147		KASSERT(ctx->pgtbl_obj == NULL,
148		    ("ctx %p non-null pgtbl_obj", ctx));
149		dmar_pte_store(&ctxp->ctx1, DMAR_CTX1_T_PASS | DMAR_CTX1_P);
150	} else {
151		ctx_root = dmar_pgalloc(ctx->pgtbl_obj, 0, DMAR_PGF_NOALLOC);
152		dmar_pte_store(&ctxp->ctx1, DMAR_CTX1_T_UNTR |
153		    (DMAR_CTX1_ASR_MASK & VM_PAGE_TO_PHYS(ctx_root)) |
154		    DMAR_CTX1_P);
155	}
156}
157
158static int
159ctx_init_rmrr(struct dmar_ctx *ctx, device_t dev)
160{
161	struct dmar_map_entries_tailq rmrr_entries;
162	struct dmar_map_entry *entry, *entry1;
163	vm_page_t *ma;
164	dmar_gaddr_t start, end;
165	vm_pindex_t size, i;
166	int error, error1;
167
168	error = 0;
169	TAILQ_INIT(&rmrr_entries);
170	dmar_ctx_parse_rmrr(ctx, dev, &rmrr_entries);
171	TAILQ_FOREACH_SAFE(entry, &rmrr_entries, unroll_link, entry1) {
172		/*
173		 * VT-d specification requires that the start of an
174		 * RMRR entry is 4k-aligned.  Buggy BIOSes put
175		 * anything into the start and end fields.  Truncate
176		 * and round as neccesary.
177		 *
178		 * We also allow the overlapping RMRR entries, see
179		 * dmar_gas_alloc_region().
180		 */
181		start = entry->start;
182		end = entry->end;
183		entry->start = trunc_page(start);
184		entry->end = round_page(end);
185		if (entry->start == entry->end) {
186			/* Workaround for some AMI (?) BIOSes */
187			if (bootverbose) {
188				device_printf(dev, "BIOS bug: dmar%d RMRR "
189				    "region (%jx, %jx) corrected\n",
190				    ctx->dmar->unit, start, end);
191			}
192			entry->end += DMAR_PAGE_SIZE * 0x20;
193		}
194		size = OFF_TO_IDX(entry->end - entry->start);
195		ma = malloc(sizeof(vm_page_t) * size, M_TEMP, M_WAITOK);
196		for (i = 0; i < size; i++) {
197			ma[i] = vm_page_getfake(entry->start + PAGE_SIZE * i,
198			    VM_MEMATTR_DEFAULT);
199		}
200		error1 = dmar_gas_map_region(ctx, entry, DMAR_MAP_ENTRY_READ |
201		    DMAR_MAP_ENTRY_WRITE, DMAR_GM_CANWAIT, ma);
202		/*
203		 * Non-failed RMRR entries are owned by context rb
204		 * tree.  Get rid of the failed entry, but do not stop
205		 * the loop.  Rest of the parsed RMRR entries are
206		 * loaded and removed on the context destruction.
207		 */
208		if (error1 == 0 && entry->end != entry->start) {
209			DMAR_LOCK(ctx->dmar);
210			ctx->flags |= DMAR_CTX_RMRR;
211			DMAR_UNLOCK(ctx->dmar);
212		} else {
213			if (error1 != 0) {
214				device_printf(dev,
215			    "dmar%d failed to map RMRR region (%jx, %jx) %d\n",
216				    ctx->dmar->unit, start, end, error1);
217				error = error1;
218			}
219			TAILQ_REMOVE(&rmrr_entries, entry, unroll_link);
220			dmar_gas_free_entry(ctx, entry);
221		}
222		for (i = 0; i < size; i++)
223			vm_page_putfake(ma[i]);
224		free(ma, M_TEMP);
225	}
226	return (error);
227}
228
229static struct dmar_ctx *
230dmar_get_ctx_alloc(struct dmar_unit *dmar, int bus, int slot, int func)
231{
232	struct dmar_ctx *ctx;
233
234	ctx = malloc(sizeof(*ctx), M_DMAR_CTX, M_WAITOK | M_ZERO);
235	RB_INIT(&ctx->rb_root);
236	TAILQ_INIT(&ctx->unload_entries);
237	TASK_INIT(&ctx->unload_task, 0, dmar_ctx_unload_task, ctx);
238	mtx_init(&ctx->lock, "dmarctx", NULL, MTX_DEF);
239	ctx->dmar = dmar;
240	ctx->bus = bus;
241	ctx->slot = slot;
242	ctx->func = func;
243	return (ctx);
244}
245
246static void
247dmar_ctx_dtr(struct dmar_ctx *ctx, bool gas_inited, bool pgtbl_inited)
248{
249
250	if (gas_inited) {
251		DMAR_CTX_LOCK(ctx);
252		dmar_gas_fini_ctx(ctx);
253		DMAR_CTX_UNLOCK(ctx);
254	}
255	if (pgtbl_inited) {
256		if (ctx->pgtbl_obj != NULL)
257			DMAR_CTX_PGLOCK(ctx);
258		ctx_free_pgtbl(ctx);
259	}
260	mtx_destroy(&ctx->lock);
261	free(ctx, M_DMAR_CTX);
262}
263
264struct dmar_ctx *
265dmar_get_ctx(struct dmar_unit *dmar, device_t dev, bool id_mapped, bool rmrr_init)
266{
267	struct dmar_ctx *ctx, *ctx1;
268	dmar_ctx_entry_t *ctxp;
269	struct sf_buf *sf;
270	int bus, slot, func, error, mgaw;
271	bool enable;
272
273	bus = pci_get_bus(dev);
274	slot = pci_get_slot(dev);
275	func = pci_get_function(dev);
276	enable = false;
277	TD_PREP_PINNED_ASSERT;
278	DMAR_LOCK(dmar);
279	ctx = dmar_find_ctx_locked(dmar, bus, slot, func);
280	error = 0;
281	if (ctx == NULL) {
282		/*
283		 * Perform the allocations which require sleep or have
284		 * higher chance to succeed if the sleep is allowed.
285		 */
286		DMAR_UNLOCK(dmar);
287		dmar_ensure_ctx_page(dmar, bus);
288		ctx1 = dmar_get_ctx_alloc(dmar, bus, slot, func);
289
290		if (id_mapped) {
291			/*
292			 * For now, use the maximal usable physical
293			 * address of the installed memory to
294			 * calculate the mgaw.  It is useful for the
295			 * identity mapping, and less so for the
296			 * virtualized bus address space.
297			 */
298			ctx1->end = ptoa(Maxmem);
299			mgaw = dmar_maxaddr2mgaw(dmar, ctx1->end, false);
300			error = ctx_set_agaw(ctx1, mgaw);
301			if (error != 0) {
302				dmar_ctx_dtr(ctx1, false, false);
303				TD_PINNED_ASSERT;
304				return (NULL);
305			}
306		} else {
307			ctx1->end = BUS_SPACE_MAXADDR;
308			mgaw = dmar_maxaddr2mgaw(dmar, ctx1->end, true);
309			error = ctx_set_agaw(ctx1, mgaw);
310			if (error != 0) {
311				dmar_ctx_dtr(ctx1, false, false);
312				TD_PINNED_ASSERT;
313				return (NULL);
314			}
315			/* Use all supported address space for remapping. */
316			ctx1->end = 1ULL << (ctx1->agaw - 1);
317		}
318
319
320		dmar_gas_init_ctx(ctx1);
321		if (id_mapped) {
322			if ((dmar->hw_ecap & DMAR_ECAP_PT) == 0) {
323				ctx1->pgtbl_obj = ctx_get_idmap_pgtbl(ctx1,
324				    ctx1->end);
325			}
326			ctx1->flags |= DMAR_CTX_IDMAP;
327		} else {
328			error = ctx_alloc_pgtbl(ctx1);
329			if (error != 0) {
330				dmar_ctx_dtr(ctx1, true, false);
331				TD_PINNED_ASSERT;
332				return (NULL);
333			}
334			/* Disable local apic region access */
335			error = dmar_gas_reserve_region(ctx1, 0xfee00000,
336			    0xfeefffff + 1);
337			if (error != 0) {
338				dmar_ctx_dtr(ctx1, true, true);
339				TD_PINNED_ASSERT;
340				return (NULL);
341			}
342			error = ctx_init_rmrr(ctx1, dev);
343			if (error != 0) {
344				dmar_ctx_dtr(ctx1, true, true);
345				TD_PINNED_ASSERT;
346				return (NULL);
347			}
348		}
349		ctxp = dmar_map_ctx_entry(ctx1, &sf);
350		DMAR_LOCK(dmar);
351
352		/*
353		 * Recheck the contexts, other thread might have
354		 * already allocated needed one.
355		 */
356		ctx = dmar_find_ctx_locked(dmar, bus, slot, func);
357		if (ctx == NULL) {
358			ctx = ctx1;
359			ctx->domain = alloc_unrl(dmar->domids);
360			if (ctx->domain == -1) {
361				DMAR_UNLOCK(dmar);
362				dmar_unmap_pgtbl(sf, true);
363				dmar_ctx_dtr(ctx, true, true);
364				TD_PINNED_ASSERT;
365				return (NULL);
366			}
367			ctx_tag_init(ctx);
368
369			/*
370			 * This is the first activated context for the
371			 * DMAR unit.  Enable the translation after
372			 * everything is set up.
373			 */
374			if (LIST_EMPTY(&dmar->contexts))
375				enable = true;
376			LIST_INSERT_HEAD(&dmar->contexts, ctx, link);
377			ctx_id_entry_init(ctx, ctxp);
378			device_printf(dev,
379			    "dmar%d pci%d:%d:%d:%d domain %d mgaw %d agaw %d\n",
380			    dmar->unit, dmar->segment, bus, slot,
381			    func, ctx->domain, ctx->mgaw, ctx->agaw);
382		} else {
383			dmar_ctx_dtr(ctx1, true, true);
384		}
385		dmar_unmap_pgtbl(sf, DMAR_IS_COHERENT(dmar));
386	}
387	ctx->refs++;
388	if ((ctx->flags & DMAR_CTX_RMRR) != 0)
389		ctx->refs++; /* XXXKIB */
390
391	/*
392	 * If dmar declares Caching Mode as Set, follow 11.5 "Caching
393	 * Mode Consideration" and do the (global) invalidation of the
394	 * negative TLB entries.
395	 */
396	if ((dmar->hw_cap & DMAR_CAP_CM) != 0 || enable) {
397		if (dmar->qi_enabled) {
398			dmar_qi_invalidate_ctx_glob_locked(dmar);
399			if ((dmar->hw_ecap & DMAR_ECAP_DI) != 0)
400				dmar_qi_invalidate_iotlb_glob_locked(dmar);
401		} else {
402			error = dmar_inv_ctx_glob(dmar);
403			if (error == 0 &&
404			    (dmar->hw_ecap & DMAR_ECAP_DI) != 0)
405				error = dmar_inv_iotlb_glob(dmar);
406			if (error != 0) {
407				dmar_free_ctx_locked(dmar, ctx);
408				TD_PINNED_ASSERT;
409				return (NULL);
410			}
411		}
412	}
413
414	/*
415	 * The dmar lock was potentially dropped between check for the
416	 * empty context list and now.  Recheck the state of GCMD_TE
417	 * to avoid unneeded command.
418	 */
419	if (enable && !rmrr_init && (dmar->hw_gcmd & DMAR_GCMD_TE) == 0) {
420		error = dmar_enable_translation(dmar);
421		if (error != 0) {
422			dmar_free_ctx_locked(dmar, ctx);
423			TD_PINNED_ASSERT;
424			return (NULL);
425		}
426	}
427	DMAR_UNLOCK(dmar);
428	TD_PINNED_ASSERT;
429	return (ctx);
430}
431
432void
433dmar_free_ctx_locked(struct dmar_unit *dmar, struct dmar_ctx *ctx)
434{
435	struct sf_buf *sf;
436	dmar_ctx_entry_t *ctxp;
437
438	DMAR_ASSERT_LOCKED(dmar);
439	KASSERT(ctx->refs >= 1,
440	    ("dmar %p ctx %p refs %u", dmar, ctx, ctx->refs));
441
442	/*
443	 * If our reference is not last, only the dereference should
444	 * be performed.
445	 */
446	if (ctx->refs > 1) {
447		ctx->refs--;
448		DMAR_UNLOCK(dmar);
449		return;
450	}
451
452	KASSERT((ctx->flags & DMAR_CTX_RMRR) == 0,
453	    ("lost ref on RMRR ctx %p", ctx));
454	KASSERT((ctx->flags & DMAR_CTX_DISABLED) == 0,
455	    ("lost ref on disabled ctx %p", ctx));
456
457	/*
458	 * Otherwise, the context entry must be cleared before the
459	 * page table is destroyed.  The mapping of the context
460	 * entries page could require sleep, unlock the dmar.
461	 */
462	DMAR_UNLOCK(dmar);
463	TD_PREP_PINNED_ASSERT;
464	ctxp = dmar_map_ctx_entry(ctx, &sf);
465	DMAR_LOCK(dmar);
466	KASSERT(ctx->refs >= 1,
467	    ("dmar %p ctx %p refs %u", dmar, ctx, ctx->refs));
468
469	/*
470	 * Other thread might have referenced the context, in which
471	 * case again only the dereference should be performed.
472	 */
473	if (ctx->refs > 1) {
474		ctx->refs--;
475		DMAR_UNLOCK(dmar);
476		dmar_unmap_pgtbl(sf, DMAR_IS_COHERENT(dmar));
477		TD_PINNED_ASSERT;
478		return;
479	}
480
481	KASSERT((ctx->flags & DMAR_CTX_RMRR) == 0,
482	    ("lost ref on RMRR ctx %p", ctx));
483	KASSERT((ctx->flags & DMAR_CTX_DISABLED) == 0,
484	    ("lost ref on disabled ctx %p", ctx));
485
486	/*
487	 * Clear the context pointer and flush the caches.
488	 * XXXKIB: cannot do this if any RMRR entries are still present.
489	 */
490	dmar_pte_clear(&ctxp->ctx1);
491	ctxp->ctx2 = 0;
492	dmar_inv_ctx_glob(dmar);
493	if ((dmar->hw_ecap & DMAR_ECAP_DI) != 0) {
494		if (dmar->qi_enabled)
495			dmar_qi_invalidate_iotlb_glob_locked(dmar);
496		else
497			dmar_inv_iotlb_glob(dmar);
498	}
499	LIST_REMOVE(ctx, link);
500	DMAR_UNLOCK(dmar);
501
502	/*
503	 * The rest of the destruction is invisible for other users of
504	 * the dmar unit.
505	 */
506	taskqueue_drain(dmar->delayed_taskqueue, &ctx->unload_task);
507	KASSERT(TAILQ_EMPTY(&ctx->unload_entries),
508	    ("unfinished unloads %p", ctx));
509	dmar_unmap_pgtbl(sf, DMAR_IS_COHERENT(dmar));
510	free_unr(dmar->domids, ctx->domain);
511	dmar_ctx_dtr(ctx, true, true);
512	TD_PINNED_ASSERT;
513}
514
515void
516dmar_free_ctx(struct dmar_ctx *ctx)
517{
518	struct dmar_unit *dmar;
519
520	dmar = ctx->dmar;
521	DMAR_LOCK(dmar);
522	dmar_free_ctx_locked(dmar, ctx);
523}
524
525struct dmar_ctx *
526dmar_find_ctx_locked(struct dmar_unit *dmar, int bus, int slot, int func)
527{
528	struct dmar_ctx *ctx;
529
530	DMAR_ASSERT_LOCKED(dmar);
531
532	LIST_FOREACH(ctx, &dmar->contexts, link) {
533		if (ctx->bus == bus && ctx->slot == slot && ctx->func == func)
534			return (ctx);
535	}
536	return (NULL);
537}
538
539void
540dmar_ctx_free_entry(struct dmar_map_entry *entry, bool free)
541{
542	struct dmar_ctx *ctx;
543
544	ctx = entry->ctx;
545	DMAR_CTX_LOCK(ctx);
546	if ((entry->flags & DMAR_MAP_ENTRY_RMRR) != 0)
547		dmar_gas_free_region(ctx, entry);
548	else
549		dmar_gas_free_space(ctx, entry);
550	DMAR_CTX_UNLOCK(ctx);
551	if (free)
552		dmar_gas_free_entry(ctx, entry);
553	else
554		entry->flags = 0;
555}
556
557void
558dmar_ctx_unload_entry(struct dmar_map_entry *entry, bool free)
559{
560	struct dmar_unit *unit;
561
562	unit = entry->ctx->dmar;
563	if (unit->qi_enabled) {
564		DMAR_LOCK(unit);
565		dmar_qi_invalidate_locked(entry->ctx, entry->start,
566		    entry->end - entry->start, &entry->gseq);
567		if (!free)
568			entry->flags |= DMAR_MAP_ENTRY_QI_NF;
569		TAILQ_INSERT_TAIL(&unit->tlb_flush_entries, entry, dmamap_link);
570		DMAR_UNLOCK(unit);
571	} else {
572		ctx_flush_iotlb_sync(entry->ctx, entry->start, entry->end -
573		    entry->start);
574		dmar_ctx_free_entry(entry, free);
575	}
576}
577
578void
579dmar_ctx_unload(struct dmar_ctx *ctx, struct dmar_map_entries_tailq *entries,
580    bool cansleep)
581{
582	struct dmar_unit *unit;
583	struct dmar_map_entry *entry, *entry1;
584	struct dmar_qi_genseq gseq;
585	int error;
586
587	unit = ctx->dmar;
588
589	TAILQ_FOREACH_SAFE(entry, entries, dmamap_link, entry1) {
590		KASSERT((entry->flags & DMAR_MAP_ENTRY_MAP) != 0,
591		    ("not mapped entry %p %p", ctx, entry));
592		error = ctx_unmap_buf(ctx, entry->start, entry->end -
593		    entry->start, cansleep ? DMAR_PGF_WAITOK : 0);
594		KASSERT(error == 0, ("unmap %p error %d", ctx, error));
595		if (!unit->qi_enabled) {
596			ctx_flush_iotlb_sync(ctx, entry->start,
597			    entry->end - entry->start);
598			TAILQ_REMOVE(entries, entry, dmamap_link);
599			dmar_ctx_free_entry(entry, true);
600		}
601	}
602	if (TAILQ_EMPTY(entries))
603		return;
604
605	KASSERT(unit->qi_enabled, ("loaded entry left"));
606	DMAR_LOCK(unit);
607	TAILQ_FOREACH(entry, entries, dmamap_link) {
608		entry->gseq.gen = 0;
609		entry->gseq.seq = 0;
610		dmar_qi_invalidate_locked(ctx, entry->start, entry->end -
611		    entry->start, TAILQ_NEXT(entry, dmamap_link) == NULL ?
612		    &gseq : NULL);
613	}
614	TAILQ_FOREACH_SAFE(entry, entries, dmamap_link, entry1) {
615		entry->gseq = gseq;
616		TAILQ_REMOVE(entries, entry, dmamap_link);
617		TAILQ_INSERT_TAIL(&unit->tlb_flush_entries, entry, dmamap_link);
618	}
619	DMAR_UNLOCK(unit);
620}
621
622static void
623dmar_ctx_unload_task(void *arg, int pending)
624{
625	struct dmar_ctx *ctx;
626	struct dmar_map_entries_tailq entries;
627
628	ctx = arg;
629	TAILQ_INIT(&entries);
630
631	for (;;) {
632		DMAR_CTX_LOCK(ctx);
633		TAILQ_SWAP(&ctx->unload_entries, &entries, dmar_map_entry,
634		    dmamap_link);
635		DMAR_CTX_UNLOCK(ctx);
636		if (TAILQ_EMPTY(&entries))
637			break;
638		dmar_ctx_unload(ctx, &entries, true);
639	}
640}
641