xref: /freebsd/sys/x86/iommu/intel_drv.c (revision f9feb091895ec3dec705b087ea142433f364109b)
186be9f0dSKonstantin Belousov /*-
2ebf5747bSPedro F. Giffuni  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3ebf5747bSPedro F. Giffuni  *
40a110d5bSKonstantin Belousov  * Copyright (c) 2013-2015 The FreeBSD Foundation
586be9f0dSKonstantin Belousov  * All rights reserved.
686be9f0dSKonstantin Belousov  *
786be9f0dSKonstantin Belousov  * This software was developed by Konstantin Belousov <kib@FreeBSD.org>
886be9f0dSKonstantin Belousov  * under sponsorship from the FreeBSD Foundation.
986be9f0dSKonstantin Belousov  *
1086be9f0dSKonstantin Belousov  * Redistribution and use in source and binary forms, with or without
1186be9f0dSKonstantin Belousov  * modification, are permitted provided that the following conditions
1286be9f0dSKonstantin Belousov  * are met:
1386be9f0dSKonstantin Belousov  * 1. Redistributions of source code must retain the above copyright
1486be9f0dSKonstantin Belousov  *    notice, this list of conditions and the following disclaimer.
1586be9f0dSKonstantin Belousov  * 2. Redistributions in binary form must reproduce the above copyright
1686be9f0dSKonstantin Belousov  *    notice, this list of conditions and the following disclaimer in the
1786be9f0dSKonstantin Belousov  *    documentation and/or other materials provided with the distribution.
1886be9f0dSKonstantin Belousov  *
1986be9f0dSKonstantin Belousov  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2086be9f0dSKonstantin Belousov  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2186be9f0dSKonstantin Belousov  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2286be9f0dSKonstantin Belousov  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2386be9f0dSKonstantin Belousov  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2486be9f0dSKonstantin Belousov  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2586be9f0dSKonstantin Belousov  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2686be9f0dSKonstantin Belousov  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2786be9f0dSKonstantin Belousov  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2886be9f0dSKonstantin Belousov  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2986be9f0dSKonstantin Belousov  * SUCH DAMAGE.
3086be9f0dSKonstantin Belousov  */
3186be9f0dSKonstantin Belousov 
3286be9f0dSKonstantin Belousov #include <sys/cdefs.h>
3386be9f0dSKonstantin Belousov __FBSDID("$FreeBSD$");
3486be9f0dSKonstantin Belousov 
3586be9f0dSKonstantin Belousov #include "opt_acpi.h"
36e7d939bdSMarcel Moolenaar #if defined(__amd64__)
3786be9f0dSKonstantin Belousov #define	DEV_APIC
3886be9f0dSKonstantin Belousov #else
3986be9f0dSKonstantin Belousov #include "opt_apic.h"
4086be9f0dSKonstantin Belousov #endif
4186be9f0dSKonstantin Belousov #include "opt_ddb.h"
4286be9f0dSKonstantin Belousov 
4386be9f0dSKonstantin Belousov #include <sys/param.h>
4486be9f0dSKonstantin Belousov #include <sys/bus.h>
4586be9f0dSKonstantin Belousov #include <sys/kernel.h>
4686be9f0dSKonstantin Belousov #include <sys/lock.h>
4786be9f0dSKonstantin Belousov #include <sys/malloc.h>
4886be9f0dSKonstantin Belousov #include <sys/memdesc.h>
4986be9f0dSKonstantin Belousov #include <sys/module.h>
5086be9f0dSKonstantin Belousov #include <sys/rman.h>
5186be9f0dSKonstantin Belousov #include <sys/rwlock.h>
5286be9f0dSKonstantin Belousov #include <sys/smp.h>
5386be9f0dSKonstantin Belousov #include <sys/taskqueue.h>
5486be9f0dSKonstantin Belousov #include <sys/tree.h>
550a110d5bSKonstantin Belousov #include <sys/vmem.h>
5686be9f0dSKonstantin Belousov #include <machine/bus.h>
57*f9feb091SKonstantin Belousov #include <machine/pci_cfgreg.h>
5886be9f0dSKonstantin Belousov #include <contrib/dev/acpica/include/acpi.h>
5986be9f0dSKonstantin Belousov #include <contrib/dev/acpica/include/accommon.h>
6086be9f0dSKonstantin Belousov #include <dev/acpica/acpivar.h>
6186be9f0dSKonstantin Belousov #include <vm/vm.h>
6286be9f0dSKonstantin Belousov #include <vm/vm_extern.h>
6386be9f0dSKonstantin Belousov #include <vm/vm_kern.h>
6486be9f0dSKonstantin Belousov #include <vm/vm_object.h>
6586be9f0dSKonstantin Belousov #include <vm/vm_page.h>
6686be9f0dSKonstantin Belousov #include <vm/vm_pager.h>
6786be9f0dSKonstantin Belousov #include <vm/vm_map.h>
6886be9f0dSKonstantin Belousov #include <x86/include/busdma_impl.h>
6986be9f0dSKonstantin Belousov #include <x86/iommu/intel_reg.h>
7086be9f0dSKonstantin Belousov #include <x86/iommu/busdma_dmar.h>
7186be9f0dSKonstantin Belousov #include <x86/iommu/intel_dmar.h>
720a110d5bSKonstantin Belousov #include <dev/pci/pcireg.h>
7386be9f0dSKonstantin Belousov #include <dev/pci/pcivar.h>
7486be9f0dSKonstantin Belousov 
7586be9f0dSKonstantin Belousov #ifdef DEV_APIC
7686be9f0dSKonstantin Belousov #include "pcib_if.h"
77fd15fee1SKonstantin Belousov #include <machine/intr_machdep.h>
78fd15fee1SKonstantin Belousov #include <x86/apicreg.h>
79fd15fee1SKonstantin Belousov #include <x86/apicvar.h>
8086be9f0dSKonstantin Belousov #endif
8186be9f0dSKonstantin Belousov 
8268eeb96aSKonstantin Belousov #define	DMAR_FAULT_IRQ_RID	0
8368eeb96aSKonstantin Belousov #define	DMAR_QI_IRQ_RID		1
8468eeb96aSKonstantin Belousov #define	DMAR_REG_RID		2
8586be9f0dSKonstantin Belousov 
8686be9f0dSKonstantin Belousov static devclass_t dmar_devclass;
8786be9f0dSKonstantin Belousov static device_t *dmar_devs;
8886be9f0dSKonstantin Belousov static int dmar_devcnt;
8986be9f0dSKonstantin Belousov 
9086be9f0dSKonstantin Belousov typedef int (*dmar_iter_t)(ACPI_DMAR_HEADER *, void *);
9186be9f0dSKonstantin Belousov 
9286be9f0dSKonstantin Belousov static void
9386be9f0dSKonstantin Belousov dmar_iterate_tbl(dmar_iter_t iter, void *arg)
9486be9f0dSKonstantin Belousov {
9586be9f0dSKonstantin Belousov 	ACPI_TABLE_DMAR *dmartbl;
9686be9f0dSKonstantin Belousov 	ACPI_DMAR_HEADER *dmarh;
9786be9f0dSKonstantin Belousov 	char *ptr, *ptrend;
9886be9f0dSKonstantin Belousov 	ACPI_STATUS status;
9986be9f0dSKonstantin Belousov 
10086be9f0dSKonstantin Belousov 	status = AcpiGetTable(ACPI_SIG_DMAR, 1, (ACPI_TABLE_HEADER **)&dmartbl);
10186be9f0dSKonstantin Belousov 	if (ACPI_FAILURE(status))
10286be9f0dSKonstantin Belousov 		return;
10386be9f0dSKonstantin Belousov 	ptr = (char *)dmartbl + sizeof(*dmartbl);
10486be9f0dSKonstantin Belousov 	ptrend = (char *)dmartbl + dmartbl->Header.Length;
10586be9f0dSKonstantin Belousov 	for (;;) {
10686be9f0dSKonstantin Belousov 		if (ptr >= ptrend)
10786be9f0dSKonstantin Belousov 			break;
10886be9f0dSKonstantin Belousov 		dmarh = (ACPI_DMAR_HEADER *)ptr;
10986be9f0dSKonstantin Belousov 		if (dmarh->Length <= 0) {
11086be9f0dSKonstantin Belousov 			printf("dmar_identify: corrupted DMAR table, l %d\n",
11186be9f0dSKonstantin Belousov 			    dmarh->Length);
11286be9f0dSKonstantin Belousov 			break;
11386be9f0dSKonstantin Belousov 		}
11486be9f0dSKonstantin Belousov 		ptr += dmarh->Length;
11586be9f0dSKonstantin Belousov 		if (!iter(dmarh, arg))
11686be9f0dSKonstantin Belousov 			break;
11786be9f0dSKonstantin Belousov 	}
1183dd3c450SKonstantin Belousov 	AcpiPutTable((ACPI_TABLE_HEADER *)dmartbl);
11986be9f0dSKonstantin Belousov }
12086be9f0dSKonstantin Belousov 
12186be9f0dSKonstantin Belousov struct find_iter_args {
12286be9f0dSKonstantin Belousov 	int i;
12386be9f0dSKonstantin Belousov 	ACPI_DMAR_HARDWARE_UNIT *res;
12486be9f0dSKonstantin Belousov };
12586be9f0dSKonstantin Belousov 
12686be9f0dSKonstantin Belousov static int
12786be9f0dSKonstantin Belousov dmar_find_iter(ACPI_DMAR_HEADER *dmarh, void *arg)
12886be9f0dSKonstantin Belousov {
12986be9f0dSKonstantin Belousov 	struct find_iter_args *fia;
13086be9f0dSKonstantin Belousov 
13186be9f0dSKonstantin Belousov 	if (dmarh->Type != ACPI_DMAR_TYPE_HARDWARE_UNIT)
13286be9f0dSKonstantin Belousov 		return (1);
13386be9f0dSKonstantin Belousov 
13486be9f0dSKonstantin Belousov 	fia = arg;
13586be9f0dSKonstantin Belousov 	if (fia->i == 0) {
13686be9f0dSKonstantin Belousov 		fia->res = (ACPI_DMAR_HARDWARE_UNIT *)dmarh;
13786be9f0dSKonstantin Belousov 		return (0);
13886be9f0dSKonstantin Belousov 	}
13986be9f0dSKonstantin Belousov 	fia->i--;
14086be9f0dSKonstantin Belousov 	return (1);
14186be9f0dSKonstantin Belousov }
14286be9f0dSKonstantin Belousov 
14386be9f0dSKonstantin Belousov static ACPI_DMAR_HARDWARE_UNIT *
14486be9f0dSKonstantin Belousov dmar_find_by_index(int idx)
14586be9f0dSKonstantin Belousov {
14686be9f0dSKonstantin Belousov 	struct find_iter_args fia;
14786be9f0dSKonstantin Belousov 
14886be9f0dSKonstantin Belousov 	fia.i = idx;
14986be9f0dSKonstantin Belousov 	fia.res = NULL;
15086be9f0dSKonstantin Belousov 	dmar_iterate_tbl(dmar_find_iter, &fia);
15186be9f0dSKonstantin Belousov 	return (fia.res);
15286be9f0dSKonstantin Belousov }
15386be9f0dSKonstantin Belousov 
15486be9f0dSKonstantin Belousov static int
15586be9f0dSKonstantin Belousov dmar_count_iter(ACPI_DMAR_HEADER *dmarh, void *arg)
15686be9f0dSKonstantin Belousov {
15786be9f0dSKonstantin Belousov 
15886be9f0dSKonstantin Belousov 	if (dmarh->Type == ACPI_DMAR_TYPE_HARDWARE_UNIT)
15986be9f0dSKonstantin Belousov 		dmar_devcnt++;
16086be9f0dSKonstantin Belousov 	return (1);
16186be9f0dSKonstantin Belousov }
16286be9f0dSKonstantin Belousov 
16386be9f0dSKonstantin Belousov static int dmar_enable = 0;
16486be9f0dSKonstantin Belousov static void
16586be9f0dSKonstantin Belousov dmar_identify(driver_t *driver, device_t parent)
16686be9f0dSKonstantin Belousov {
16786be9f0dSKonstantin Belousov 	ACPI_TABLE_DMAR *dmartbl;
16886be9f0dSKonstantin Belousov 	ACPI_DMAR_HARDWARE_UNIT *dmarh;
16986be9f0dSKonstantin Belousov 	ACPI_STATUS status;
17086be9f0dSKonstantin Belousov 	int i, error;
17186be9f0dSKonstantin Belousov 
17286be9f0dSKonstantin Belousov 	if (acpi_disabled("dmar"))
17386be9f0dSKonstantin Belousov 		return;
17486be9f0dSKonstantin Belousov 	TUNABLE_INT_FETCH("hw.dmar.enable", &dmar_enable);
17586be9f0dSKonstantin Belousov 	if (!dmar_enable)
17686be9f0dSKonstantin Belousov 		return;
17786be9f0dSKonstantin Belousov #ifdef INVARIANTS
17886be9f0dSKonstantin Belousov 	TUNABLE_INT_FETCH("hw.dmar.check_free", &dmar_check_free);
17986be9f0dSKonstantin Belousov #endif
18086be9f0dSKonstantin Belousov 	status = AcpiGetTable(ACPI_SIG_DMAR, 1, (ACPI_TABLE_HEADER **)&dmartbl);
18186be9f0dSKonstantin Belousov 	if (ACPI_FAILURE(status))
18286be9f0dSKonstantin Belousov 		return;
18386be9f0dSKonstantin Belousov 	haw = dmartbl->Width + 1;
18486be9f0dSKonstantin Belousov 	if ((1ULL << (haw + 1)) > BUS_SPACE_MAXADDR)
18586be9f0dSKonstantin Belousov 		dmar_high = BUS_SPACE_MAXADDR;
18686be9f0dSKonstantin Belousov 	else
18786be9f0dSKonstantin Belousov 		dmar_high = 1ULL << (haw + 1);
18886be9f0dSKonstantin Belousov 	if (bootverbose) {
18986be9f0dSKonstantin Belousov 		printf("DMAR HAW=%d flags=<%b>\n", dmartbl->Width,
19086be9f0dSKonstantin Belousov 		    (unsigned)dmartbl->Flags,
19186be9f0dSKonstantin Belousov 		    "\020\001INTR_REMAP\002X2APIC_OPT_OUT");
19286be9f0dSKonstantin Belousov 	}
1933dd3c450SKonstantin Belousov 	AcpiPutTable((ACPI_TABLE_HEADER *)dmartbl);
19486be9f0dSKonstantin Belousov 
19586be9f0dSKonstantin Belousov 	dmar_iterate_tbl(dmar_count_iter, NULL);
19686be9f0dSKonstantin Belousov 	if (dmar_devcnt == 0)
19786be9f0dSKonstantin Belousov 		return;
19886be9f0dSKonstantin Belousov 	dmar_devs = malloc(sizeof(device_t) * dmar_devcnt, M_DEVBUF,
19986be9f0dSKonstantin Belousov 	    M_WAITOK | M_ZERO);
20086be9f0dSKonstantin Belousov 	for (i = 0; i < dmar_devcnt; i++) {
20186be9f0dSKonstantin Belousov 		dmarh = dmar_find_by_index(i);
20286be9f0dSKonstantin Belousov 		if (dmarh == NULL) {
20386be9f0dSKonstantin Belousov 			printf("dmar_identify: cannot find HWUNIT %d\n", i);
20486be9f0dSKonstantin Belousov 			continue;
20586be9f0dSKonstantin Belousov 		}
20686be9f0dSKonstantin Belousov 		dmar_devs[i] = BUS_ADD_CHILD(parent, 1, "dmar", i);
20786be9f0dSKonstantin Belousov 		if (dmar_devs[i] == NULL) {
20886be9f0dSKonstantin Belousov 			printf("dmar_identify: cannot create instance %d\n", i);
20986be9f0dSKonstantin Belousov 			continue;
21086be9f0dSKonstantin Belousov 		}
21186be9f0dSKonstantin Belousov 		error = bus_set_resource(dmar_devs[i], SYS_RES_MEMORY,
21286be9f0dSKonstantin Belousov 		    DMAR_REG_RID, dmarh->Address, PAGE_SIZE);
21386be9f0dSKonstantin Belousov 		if (error != 0) {
21486be9f0dSKonstantin Belousov 			printf(
21586be9f0dSKonstantin Belousov 	"dmar%d: unable to alloc register window at 0x%08jx: error %d\n",
21686be9f0dSKonstantin Belousov 			    i, (uintmax_t)dmarh->Address, error);
21786be9f0dSKonstantin Belousov 			device_delete_child(parent, dmar_devs[i]);
21886be9f0dSKonstantin Belousov 			dmar_devs[i] = NULL;
21986be9f0dSKonstantin Belousov 		}
22086be9f0dSKonstantin Belousov 	}
22186be9f0dSKonstantin Belousov }
22286be9f0dSKonstantin Belousov 
22386be9f0dSKonstantin Belousov static int
22486be9f0dSKonstantin Belousov dmar_probe(device_t dev)
22586be9f0dSKonstantin Belousov {
22686be9f0dSKonstantin Belousov 
22786be9f0dSKonstantin Belousov 	if (acpi_get_handle(dev) != NULL)
22886be9f0dSKonstantin Belousov 		return (ENXIO);
22986be9f0dSKonstantin Belousov 	device_set_desc(dev, "DMA remap");
2303100f7dfSKonstantin Belousov 	return (BUS_PROBE_NOWILDCARD);
23186be9f0dSKonstantin Belousov }
23286be9f0dSKonstantin Belousov 
23386be9f0dSKonstantin Belousov static void
23468eeb96aSKonstantin Belousov dmar_release_intr(device_t dev, struct dmar_unit *unit, int idx)
23568eeb96aSKonstantin Belousov {
23668eeb96aSKonstantin Belousov 	struct dmar_msi_data *dmd;
23768eeb96aSKonstantin Belousov 
23868eeb96aSKonstantin Belousov 	dmd = &unit->intrs[idx];
23968eeb96aSKonstantin Belousov 	if (dmd->irq == -1)
24068eeb96aSKonstantin Belousov 		return;
24168eeb96aSKonstantin Belousov 	bus_teardown_intr(dev, dmd->irq_res, dmd->intr_handle);
24268eeb96aSKonstantin Belousov 	bus_release_resource(dev, SYS_RES_IRQ, dmd->irq_rid, dmd->irq_res);
24368eeb96aSKonstantin Belousov 	bus_delete_resource(dev, SYS_RES_IRQ, dmd->irq_rid);
24468eeb96aSKonstantin Belousov 	PCIB_RELEASE_MSIX(device_get_parent(device_get_parent(dev)),
24568eeb96aSKonstantin Belousov 	    dev, dmd->irq);
24668eeb96aSKonstantin Belousov 	dmd->irq = -1;
24768eeb96aSKonstantin Belousov }
24868eeb96aSKonstantin Belousov 
24968eeb96aSKonstantin Belousov static void
25086be9f0dSKonstantin Belousov dmar_release_resources(device_t dev, struct dmar_unit *unit)
25186be9f0dSKonstantin Belousov {
25268eeb96aSKonstantin Belousov 	int i;
25386be9f0dSKonstantin Belousov 
25486be9f0dSKonstantin Belousov 	dmar_fini_busdma(unit);
2550a110d5bSKonstantin Belousov 	dmar_fini_irt(unit);
25668eeb96aSKonstantin Belousov 	dmar_fini_qi(unit);
25786be9f0dSKonstantin Belousov 	dmar_fini_fault_log(unit);
25868eeb96aSKonstantin Belousov 	for (i = 0; i < DMAR_INTR_TOTAL; i++)
25968eeb96aSKonstantin Belousov 		dmar_release_intr(dev, unit, i);
26086be9f0dSKonstantin Belousov 	if (unit->regs != NULL) {
26186be9f0dSKonstantin Belousov 		bus_deactivate_resource(dev, SYS_RES_MEMORY, unit->reg_rid,
26286be9f0dSKonstantin Belousov 		    unit->regs);
26386be9f0dSKonstantin Belousov 		bus_release_resource(dev, SYS_RES_MEMORY, unit->reg_rid,
26486be9f0dSKonstantin Belousov 		    unit->regs);
26586be9f0dSKonstantin Belousov 		unit->regs = NULL;
26686be9f0dSKonstantin Belousov 	}
26786be9f0dSKonstantin Belousov 	if (unit->domids != NULL) {
26886be9f0dSKonstantin Belousov 		delete_unrhdr(unit->domids);
26986be9f0dSKonstantin Belousov 		unit->domids = NULL;
27086be9f0dSKonstantin Belousov 	}
27186be9f0dSKonstantin Belousov 	if (unit->ctx_obj != NULL) {
27286be9f0dSKonstantin Belousov 		vm_object_deallocate(unit->ctx_obj);
27386be9f0dSKonstantin Belousov 		unit->ctx_obj = NULL;
27486be9f0dSKonstantin Belousov 	}
27586be9f0dSKonstantin Belousov }
27686be9f0dSKonstantin Belousov 
27786be9f0dSKonstantin Belousov static int
27868eeb96aSKonstantin Belousov dmar_alloc_irq(device_t dev, struct dmar_unit *unit, int idx)
27986be9f0dSKonstantin Belousov {
28086be9f0dSKonstantin Belousov 	device_t pcib;
28168eeb96aSKonstantin Belousov 	struct dmar_msi_data *dmd;
28286be9f0dSKonstantin Belousov 	uint64_t msi_addr;
28386be9f0dSKonstantin Belousov 	uint32_t msi_data;
28486be9f0dSKonstantin Belousov 	int error;
28586be9f0dSKonstantin Belousov 
28668eeb96aSKonstantin Belousov 	dmd = &unit->intrs[idx];
28786be9f0dSKonstantin Belousov 	pcib = device_get_parent(device_get_parent(dev)); /* Really not pcib */
28868eeb96aSKonstantin Belousov 	error = PCIB_ALLOC_MSIX(pcib, dev, &dmd->irq);
28986be9f0dSKonstantin Belousov 	if (error != 0) {
29068eeb96aSKonstantin Belousov 		device_printf(dev, "cannot allocate %s interrupt, %d\n",
29168eeb96aSKonstantin Belousov 		    dmd->name, error);
29286be9f0dSKonstantin Belousov 		goto err1;
29386be9f0dSKonstantin Belousov 	}
29468eeb96aSKonstantin Belousov 	error = bus_set_resource(dev, SYS_RES_IRQ, dmd->irq_rid,
29568eeb96aSKonstantin Belousov 	    dmd->irq, 1);
29686be9f0dSKonstantin Belousov 	if (error != 0) {
29768eeb96aSKonstantin Belousov 		device_printf(dev, "cannot set %s interrupt resource, %d\n",
29868eeb96aSKonstantin Belousov 		    dmd->name, error);
29986be9f0dSKonstantin Belousov 		goto err2;
30086be9f0dSKonstantin Belousov 	}
30168eeb96aSKonstantin Belousov 	dmd->irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ,
30268eeb96aSKonstantin Belousov 	    &dmd->irq_rid, RF_ACTIVE);
30368eeb96aSKonstantin Belousov 	if (dmd->irq_res == NULL) {
30468eeb96aSKonstantin Belousov 		device_printf(dev,
30568eeb96aSKonstantin Belousov 		    "cannot allocate resource for %s interrupt\n", dmd->name);
30686be9f0dSKonstantin Belousov 		error = ENXIO;
30786be9f0dSKonstantin Belousov 		goto err3;
30886be9f0dSKonstantin Belousov 	}
30968eeb96aSKonstantin Belousov 	error = bus_setup_intr(dev, dmd->irq_res, INTR_TYPE_MISC,
31068eeb96aSKonstantin Belousov 	    dmd->handler, NULL, unit, &dmd->intr_handle);
31186be9f0dSKonstantin Belousov 	if (error != 0) {
31268eeb96aSKonstantin Belousov 		device_printf(dev, "cannot setup %s interrupt, %d\n",
31368eeb96aSKonstantin Belousov 		    dmd->name, error);
31486be9f0dSKonstantin Belousov 		goto err4;
31586be9f0dSKonstantin Belousov 	}
316f454e7ebSJohn Baldwin 	bus_describe_intr(dev, dmd->irq_res, dmd->intr_handle, "%s", dmd->name);
31768eeb96aSKonstantin Belousov 	error = PCIB_MAP_MSI(pcib, dev, dmd->irq, &msi_addr, &msi_data);
31886be9f0dSKonstantin Belousov 	if (error != 0) {
31968eeb96aSKonstantin Belousov 		device_printf(dev, "cannot map %s interrupt, %d\n",
32068eeb96aSKonstantin Belousov 		    dmd->name, error);
32186be9f0dSKonstantin Belousov 		goto err5;
32286be9f0dSKonstantin Belousov 	}
32368eeb96aSKonstantin Belousov 	dmar_write4(unit, dmd->msi_data_reg, msi_data);
32468eeb96aSKonstantin Belousov 	dmar_write4(unit, dmd->msi_addr_reg, msi_addr);
32586be9f0dSKonstantin Belousov 	/* Only for xAPIC mode */
32668eeb96aSKonstantin Belousov 	dmar_write4(unit, dmd->msi_uaddr_reg, msi_addr >> 32);
32786be9f0dSKonstantin Belousov 	return (0);
32886be9f0dSKonstantin Belousov 
32986be9f0dSKonstantin Belousov err5:
33068eeb96aSKonstantin Belousov 	bus_teardown_intr(dev, dmd->irq_res, dmd->intr_handle);
33186be9f0dSKonstantin Belousov err4:
33268eeb96aSKonstantin Belousov 	bus_release_resource(dev, SYS_RES_IRQ, dmd->irq_rid, dmd->irq_res);
33386be9f0dSKonstantin Belousov err3:
33468eeb96aSKonstantin Belousov 	bus_delete_resource(dev, SYS_RES_IRQ, dmd->irq_rid);
33586be9f0dSKonstantin Belousov err2:
33668eeb96aSKonstantin Belousov 	PCIB_RELEASE_MSIX(pcib, dev, dmd->irq);
33768eeb96aSKonstantin Belousov 	dmd->irq = -1;
33886be9f0dSKonstantin Belousov err1:
33986be9f0dSKonstantin Belousov 	return (error);
34086be9f0dSKonstantin Belousov }
34186be9f0dSKonstantin Belousov 
34286be9f0dSKonstantin Belousov #ifdef DEV_APIC
34386be9f0dSKonstantin Belousov static int
34486be9f0dSKonstantin Belousov dmar_remap_intr(device_t dev, device_t child, u_int irq)
34586be9f0dSKonstantin Belousov {
34686be9f0dSKonstantin Belousov 	struct dmar_unit *unit;
34768eeb96aSKonstantin Belousov 	struct dmar_msi_data *dmd;
34886be9f0dSKonstantin Belousov 	uint64_t msi_addr;
34986be9f0dSKonstantin Belousov 	uint32_t msi_data;
35068eeb96aSKonstantin Belousov 	int i, error;
35186be9f0dSKonstantin Belousov 
35286be9f0dSKonstantin Belousov 	unit = device_get_softc(dev);
35368eeb96aSKonstantin Belousov 	for (i = 0; i < DMAR_INTR_TOTAL; i++) {
35468eeb96aSKonstantin Belousov 		dmd = &unit->intrs[i];
35568eeb96aSKonstantin Belousov 		if (irq == dmd->irq) {
35668eeb96aSKonstantin Belousov 			error = PCIB_MAP_MSI(device_get_parent(
35768eeb96aSKonstantin Belousov 			    device_get_parent(dev)),
35868eeb96aSKonstantin Belousov 			    dev, irq, &msi_addr, &msi_data);
35986be9f0dSKonstantin Belousov 			if (error != 0)
36086be9f0dSKonstantin Belousov 				return (error);
36168eeb96aSKonstantin Belousov 			DMAR_LOCK(unit);
36268eeb96aSKonstantin Belousov 			(dmd->disable_intr)(unit);
36368eeb96aSKonstantin Belousov 			dmar_write4(unit, dmd->msi_data_reg, msi_data);
36468eeb96aSKonstantin Belousov 			dmar_write4(unit, dmd->msi_addr_reg, msi_addr);
36568eeb96aSKonstantin Belousov 			dmar_write4(unit, dmd->msi_uaddr_reg, msi_addr >> 32);
36668eeb96aSKonstantin Belousov 			(dmd->enable_intr)(unit);
36768eeb96aSKonstantin Belousov 			DMAR_UNLOCK(unit);
36886be9f0dSKonstantin Belousov 			return (0);
36986be9f0dSKonstantin Belousov 		}
37068eeb96aSKonstantin Belousov 	}
37168eeb96aSKonstantin Belousov 	return (ENOENT);
37268eeb96aSKonstantin Belousov }
37386be9f0dSKonstantin Belousov #endif
37486be9f0dSKonstantin Belousov 
37586be9f0dSKonstantin Belousov static void
37686be9f0dSKonstantin Belousov dmar_print_caps(device_t dev, struct dmar_unit *unit,
37786be9f0dSKonstantin Belousov     ACPI_DMAR_HARDWARE_UNIT *dmaru)
37886be9f0dSKonstantin Belousov {
37986be9f0dSKonstantin Belousov 	uint32_t caphi, ecaphi;
38086be9f0dSKonstantin Belousov 
38186be9f0dSKonstantin Belousov 	device_printf(dev, "regs@0x%08jx, ver=%d.%d, seg=%d, flags=<%b>\n",
38286be9f0dSKonstantin Belousov 	    (uintmax_t)dmaru->Address, DMAR_MAJOR_VER(unit->hw_ver),
38386be9f0dSKonstantin Belousov 	    DMAR_MINOR_VER(unit->hw_ver), dmaru->Segment,
38486be9f0dSKonstantin Belousov 	    dmaru->Flags, "\020\001INCLUDE_ALL_PCI");
38586be9f0dSKonstantin Belousov 	caphi = unit->hw_cap >> 32;
38686be9f0dSKonstantin Belousov 	device_printf(dev, "cap=%b,", (u_int)unit->hw_cap,
38786be9f0dSKonstantin Belousov 	    "\020\004AFL\005WBF\006PLMR\007PHMR\010CM\027ZLR\030ISOCH");
388e17c0a1eSKonstantin Belousov 	printf("%b, ", caphi, "\020\010PSI\027DWD\030DRD\031FL1GP\034PSI");
38986be9f0dSKonstantin Belousov 	printf("ndoms=%d, sagaw=%d, mgaw=%d, fro=%d, nfr=%d, superp=%d",
39086be9f0dSKonstantin Belousov 	    DMAR_CAP_ND(unit->hw_cap), DMAR_CAP_SAGAW(unit->hw_cap),
39186be9f0dSKonstantin Belousov 	    DMAR_CAP_MGAW(unit->hw_cap), DMAR_CAP_FRO(unit->hw_cap),
39286be9f0dSKonstantin Belousov 	    DMAR_CAP_NFR(unit->hw_cap), DMAR_CAP_SPS(unit->hw_cap));
39386be9f0dSKonstantin Belousov 	if ((unit->hw_cap & DMAR_CAP_PSI) != 0)
39486be9f0dSKonstantin Belousov 		printf(", mamv=%d", DMAR_CAP_MAMV(unit->hw_cap));
39586be9f0dSKonstantin Belousov 	printf("\n");
39686be9f0dSKonstantin Belousov 	ecaphi = unit->hw_ecap >> 32;
39786be9f0dSKonstantin Belousov 	device_printf(dev, "ecap=%b,", (u_int)unit->hw_ecap,
398e17c0a1eSKonstantin Belousov 	    "\020\001C\002QI\003DI\004IR\005EIM\007PT\010SC\031ECS\032MTS"
399e17c0a1eSKonstantin Belousov 	    "\033NEST\034DIS\035PASID\036PRS\037ERS\040SRS");
400e17c0a1eSKonstantin Belousov 	printf("%b, ", ecaphi, "\020\002NWFS\003EAFS");
40186be9f0dSKonstantin Belousov 	printf("mhmw=%d, iro=%d\n", DMAR_ECAP_MHMV(unit->hw_ecap),
40286be9f0dSKonstantin Belousov 	    DMAR_ECAP_IRO(unit->hw_ecap));
40386be9f0dSKonstantin Belousov }
40486be9f0dSKonstantin Belousov 
40586be9f0dSKonstantin Belousov static int
40686be9f0dSKonstantin Belousov dmar_attach(device_t dev)
40786be9f0dSKonstantin Belousov {
40886be9f0dSKonstantin Belousov 	struct dmar_unit *unit;
40986be9f0dSKonstantin Belousov 	ACPI_DMAR_HARDWARE_UNIT *dmaru;
410476358b3SKonstantin Belousov 	uint64_t timeout;
41168eeb96aSKonstantin Belousov 	int i, error;
41286be9f0dSKonstantin Belousov 
41386be9f0dSKonstantin Belousov 	unit = device_get_softc(dev);
41486be9f0dSKonstantin Belousov 	unit->dev = dev;
41586be9f0dSKonstantin Belousov 	unit->unit = device_get_unit(dev);
41686be9f0dSKonstantin Belousov 	dmaru = dmar_find_by_index(unit->unit);
41786be9f0dSKonstantin Belousov 	if (dmaru == NULL)
41886be9f0dSKonstantin Belousov 		return (EINVAL);
41986be9f0dSKonstantin Belousov 	unit->segment = dmaru->Segment;
42086be9f0dSKonstantin Belousov 	unit->base = dmaru->Address;
42186be9f0dSKonstantin Belousov 	unit->reg_rid = DMAR_REG_RID;
42286be9f0dSKonstantin Belousov 	unit->regs = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
42386be9f0dSKonstantin Belousov 	    &unit->reg_rid, RF_ACTIVE);
42486be9f0dSKonstantin Belousov 	if (unit->regs == NULL) {
42586be9f0dSKonstantin Belousov 		device_printf(dev, "cannot allocate register window\n");
42686be9f0dSKonstantin Belousov 		return (ENOMEM);
42786be9f0dSKonstantin Belousov 	}
42886be9f0dSKonstantin Belousov 	unit->hw_ver = dmar_read4(unit, DMAR_VER_REG);
42986be9f0dSKonstantin Belousov 	unit->hw_cap = dmar_read8(unit, DMAR_CAP_REG);
43086be9f0dSKonstantin Belousov 	unit->hw_ecap = dmar_read8(unit, DMAR_ECAP_REG);
43186be9f0dSKonstantin Belousov 	if (bootverbose)
43286be9f0dSKonstantin Belousov 		dmar_print_caps(dev, unit, dmaru);
43386be9f0dSKonstantin Belousov 	dmar_quirks_post_ident(unit);
43486be9f0dSKonstantin Belousov 
435476358b3SKonstantin Belousov 	timeout = dmar_get_timeout();
436476358b3SKonstantin Belousov 	TUNABLE_UINT64_FETCH("hw.dmar.timeout", &timeout);
437476358b3SKonstantin Belousov 	dmar_update_timeout(timeout);
438476358b3SKonstantin Belousov 
43968eeb96aSKonstantin Belousov 	for (i = 0; i < DMAR_INTR_TOTAL; i++)
44068eeb96aSKonstantin Belousov 		unit->intrs[i].irq = -1;
44168eeb96aSKonstantin Belousov 
44268eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].name = "fault";
44368eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].irq_rid = DMAR_FAULT_IRQ_RID;
44468eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].handler = dmar_fault_intr;
44568eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].msi_data_reg = DMAR_FEDATA_REG;
44668eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].msi_addr_reg = DMAR_FEADDR_REG;
44768eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].msi_uaddr_reg = DMAR_FEUADDR_REG;
44868eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].enable_intr = dmar_enable_fault_intr;
44968eeb96aSKonstantin Belousov 	unit->intrs[DMAR_INTR_FAULT].disable_intr = dmar_disable_fault_intr;
45068eeb96aSKonstantin Belousov 	error = dmar_alloc_irq(dev, unit, DMAR_INTR_FAULT);
45186be9f0dSKonstantin Belousov 	if (error != 0) {
45286be9f0dSKonstantin Belousov 		dmar_release_resources(dev, unit);
45386be9f0dSKonstantin Belousov 		return (error);
45486be9f0dSKonstantin Belousov 	}
45568eeb96aSKonstantin Belousov 	if (DMAR_HAS_QI(unit)) {
45668eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].name = "qi";
45768eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].irq_rid = DMAR_QI_IRQ_RID;
45868eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].handler = dmar_qi_intr;
45968eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].msi_data_reg = DMAR_IEDATA_REG;
46068eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].msi_addr_reg = DMAR_IEADDR_REG;
46168eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].msi_uaddr_reg = DMAR_IEUADDR_REG;
46268eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].enable_intr = dmar_enable_qi_intr;
46368eeb96aSKonstantin Belousov 		unit->intrs[DMAR_INTR_QI].disable_intr = dmar_disable_qi_intr;
46468eeb96aSKonstantin Belousov 		error = dmar_alloc_irq(dev, unit, DMAR_INTR_QI);
46568eeb96aSKonstantin Belousov 		if (error != 0) {
46668eeb96aSKonstantin Belousov 			dmar_release_resources(dev, unit);
46768eeb96aSKonstantin Belousov 			return (error);
46868eeb96aSKonstantin Belousov 		}
46968eeb96aSKonstantin Belousov 	}
47068eeb96aSKonstantin Belousov 
47186be9f0dSKonstantin Belousov 	mtx_init(&unit->lock, "dmarhw", NULL, MTX_DEF);
47286be9f0dSKonstantin Belousov 	unit->domids = new_unrhdr(0, dmar_nd2mask(DMAR_CAP_ND(unit->hw_cap)),
47386be9f0dSKonstantin Belousov 	    &unit->lock);
4741abfd355SKonstantin Belousov 	LIST_INIT(&unit->domains);
47586be9f0dSKonstantin Belousov 
47686be9f0dSKonstantin Belousov 	/*
47786be9f0dSKonstantin Belousov 	 * 9.2 "Context Entry":
47886be9f0dSKonstantin Belousov 	 * When Caching Mode (CM) field is reported as Set, the
47986be9f0dSKonstantin Belousov 	 * domain-id value of zero is architecturally reserved.
48086be9f0dSKonstantin Belousov 	 * Software must not use domain-id value of zero
48186be9f0dSKonstantin Belousov 	 * when CM is Set.
48286be9f0dSKonstantin Belousov 	 */
48386be9f0dSKonstantin Belousov 	if ((unit->hw_cap & DMAR_CAP_CM) != 0)
48486be9f0dSKonstantin Belousov 		alloc_unr_specific(unit->domids, 0);
48586be9f0dSKonstantin Belousov 
48686be9f0dSKonstantin Belousov 	unit->ctx_obj = vm_pager_allocate(OBJT_PHYS, NULL, IDX_TO_OFF(1 +
48786be9f0dSKonstantin Belousov 	    DMAR_CTX_CNT), 0, 0, NULL);
48886be9f0dSKonstantin Belousov 
48986be9f0dSKonstantin Belousov 	/*
49086be9f0dSKonstantin Belousov 	 * Allocate and load the root entry table pointer.  Enable the
49186be9f0dSKonstantin Belousov 	 * address translation after the required invalidations are
49286be9f0dSKonstantin Belousov 	 * done.
49386be9f0dSKonstantin Belousov 	 */
49486be9f0dSKonstantin Belousov 	dmar_pgalloc(unit->ctx_obj, 0, DMAR_PGF_WAITOK | DMAR_PGF_ZERO);
49586be9f0dSKonstantin Belousov 	DMAR_LOCK(unit);
49686be9f0dSKonstantin Belousov 	error = dmar_load_root_entry_ptr(unit);
49786be9f0dSKonstantin Belousov 	if (error != 0) {
49886be9f0dSKonstantin Belousov 		DMAR_UNLOCK(unit);
49986be9f0dSKonstantin Belousov 		dmar_release_resources(dev, unit);
50086be9f0dSKonstantin Belousov 		return (error);
50186be9f0dSKonstantin Belousov 	}
50286be9f0dSKonstantin Belousov 	error = dmar_inv_ctx_glob(unit);
50386be9f0dSKonstantin Belousov 	if (error != 0) {
50486be9f0dSKonstantin Belousov 		DMAR_UNLOCK(unit);
50586be9f0dSKonstantin Belousov 		dmar_release_resources(dev, unit);
50686be9f0dSKonstantin Belousov 		return (error);
50786be9f0dSKonstantin Belousov 	}
50886be9f0dSKonstantin Belousov 	if ((unit->hw_ecap & DMAR_ECAP_DI) != 0) {
50986be9f0dSKonstantin Belousov 		error = dmar_inv_iotlb_glob(unit);
51086be9f0dSKonstantin Belousov 		if (error != 0) {
51186be9f0dSKonstantin Belousov 			DMAR_UNLOCK(unit);
51286be9f0dSKonstantin Belousov 			dmar_release_resources(dev, unit);
51386be9f0dSKonstantin Belousov 			return (error);
51486be9f0dSKonstantin Belousov 		}
51586be9f0dSKonstantin Belousov 	}
51686be9f0dSKonstantin Belousov 
51786be9f0dSKonstantin Belousov 	DMAR_UNLOCK(unit);
51886be9f0dSKonstantin Belousov 	error = dmar_init_fault_log(unit);
51986be9f0dSKonstantin Belousov 	if (error != 0) {
52086be9f0dSKonstantin Belousov 		dmar_release_resources(dev, unit);
52186be9f0dSKonstantin Belousov 		return (error);
52286be9f0dSKonstantin Belousov 	}
52368eeb96aSKonstantin Belousov 	error = dmar_init_qi(unit);
52468eeb96aSKonstantin Belousov 	if (error != 0) {
52568eeb96aSKonstantin Belousov 		dmar_release_resources(dev, unit);
52668eeb96aSKonstantin Belousov 		return (error);
52768eeb96aSKonstantin Belousov 	}
5280a110d5bSKonstantin Belousov 	error = dmar_init_irt(unit);
5290a110d5bSKonstantin Belousov 	if (error != 0) {
5300a110d5bSKonstantin Belousov 		dmar_release_resources(dev, unit);
5310a110d5bSKonstantin Belousov 		return (error);
5320a110d5bSKonstantin Belousov 	}
53386be9f0dSKonstantin Belousov 	error = dmar_init_busdma(unit);
53486be9f0dSKonstantin Belousov 	if (error != 0) {
53586be9f0dSKonstantin Belousov 		dmar_release_resources(dev, unit);
53686be9f0dSKonstantin Belousov 		return (error);
53786be9f0dSKonstantin Belousov 	}
53886be9f0dSKonstantin Belousov 
53986be9f0dSKonstantin Belousov #ifdef NOTYET
54086be9f0dSKonstantin Belousov 	DMAR_LOCK(unit);
54186be9f0dSKonstantin Belousov 	error = dmar_enable_translation(unit);
54286be9f0dSKonstantin Belousov 	if (error != 0) {
54386be9f0dSKonstantin Belousov 		DMAR_UNLOCK(unit);
54486be9f0dSKonstantin Belousov 		dmar_release_resources(dev, unit);
54586be9f0dSKonstantin Belousov 		return (error);
54686be9f0dSKonstantin Belousov 	}
54786be9f0dSKonstantin Belousov 	DMAR_UNLOCK(unit);
54886be9f0dSKonstantin Belousov #endif
54986be9f0dSKonstantin Belousov 
55086be9f0dSKonstantin Belousov 	return (0);
55186be9f0dSKonstantin Belousov }
55286be9f0dSKonstantin Belousov 
55386be9f0dSKonstantin Belousov static int
55486be9f0dSKonstantin Belousov dmar_detach(device_t dev)
55586be9f0dSKonstantin Belousov {
55686be9f0dSKonstantin Belousov 
55786be9f0dSKonstantin Belousov 	return (EBUSY);
55886be9f0dSKonstantin Belousov }
55986be9f0dSKonstantin Belousov 
56086be9f0dSKonstantin Belousov static int
56186be9f0dSKonstantin Belousov dmar_suspend(device_t dev)
56286be9f0dSKonstantin Belousov {
56386be9f0dSKonstantin Belousov 
56486be9f0dSKonstantin Belousov 	return (0);
56586be9f0dSKonstantin Belousov }
56686be9f0dSKonstantin Belousov 
56786be9f0dSKonstantin Belousov static int
56886be9f0dSKonstantin Belousov dmar_resume(device_t dev)
56986be9f0dSKonstantin Belousov {
57086be9f0dSKonstantin Belousov 
57186be9f0dSKonstantin Belousov 	/* XXXKIB */
57286be9f0dSKonstantin Belousov 	return (0);
57386be9f0dSKonstantin Belousov }
57486be9f0dSKonstantin Belousov 
57586be9f0dSKonstantin Belousov static device_method_t dmar_methods[] = {
57686be9f0dSKonstantin Belousov 	DEVMETHOD(device_identify, dmar_identify),
57786be9f0dSKonstantin Belousov 	DEVMETHOD(device_probe, dmar_probe),
57886be9f0dSKonstantin Belousov 	DEVMETHOD(device_attach, dmar_attach),
57986be9f0dSKonstantin Belousov 	DEVMETHOD(device_detach, dmar_detach),
58086be9f0dSKonstantin Belousov 	DEVMETHOD(device_suspend, dmar_suspend),
58186be9f0dSKonstantin Belousov 	DEVMETHOD(device_resume, dmar_resume),
58286be9f0dSKonstantin Belousov #ifdef DEV_APIC
58386be9f0dSKonstantin Belousov 	DEVMETHOD(bus_remap_intr, dmar_remap_intr),
58486be9f0dSKonstantin Belousov #endif
58586be9f0dSKonstantin Belousov 	DEVMETHOD_END
58686be9f0dSKonstantin Belousov };
58786be9f0dSKonstantin Belousov 
58886be9f0dSKonstantin Belousov static driver_t	dmar_driver = {
58986be9f0dSKonstantin Belousov 	"dmar",
59086be9f0dSKonstantin Belousov 	dmar_methods,
59186be9f0dSKonstantin Belousov 	sizeof(struct dmar_unit),
59286be9f0dSKonstantin Belousov };
59386be9f0dSKonstantin Belousov 
59486be9f0dSKonstantin Belousov DRIVER_MODULE(dmar, acpi, dmar_driver, dmar_devclass, 0, 0);
59586be9f0dSKonstantin Belousov MODULE_DEPEND(dmar, acpi, 1, 1, 1);
59686be9f0dSKonstantin Belousov 
59786be9f0dSKonstantin Belousov static void
598*f9feb091SKonstantin Belousov dmar_print_path(int busno, int depth, const ACPI_DMAR_PCI_PATH *path)
59986be9f0dSKonstantin Belousov {
60086be9f0dSKonstantin Belousov 	int i;
60186be9f0dSKonstantin Belousov 
602*f9feb091SKonstantin Belousov 	printf("[%d, ", busno);
60386be9f0dSKonstantin Belousov 	for (i = 0; i < depth; i++) {
60486be9f0dSKonstantin Belousov 		if (i != 0)
60586be9f0dSKonstantin Belousov 			printf(", ");
60686be9f0dSKonstantin Belousov 		printf("(%d, %d)", path[i].Device, path[i].Function);
60786be9f0dSKonstantin Belousov 	}
608*f9feb091SKonstantin Belousov 	printf("]");
60986be9f0dSKonstantin Belousov }
61086be9f0dSKonstantin Belousov 
611*f9feb091SKonstantin Belousov int
61286be9f0dSKonstantin Belousov dmar_dev_depth(device_t child)
61386be9f0dSKonstantin Belousov {
61486be9f0dSKonstantin Belousov 	devclass_t pci_class;
61586be9f0dSKonstantin Belousov 	device_t bus, pcib;
61686be9f0dSKonstantin Belousov 	int depth;
61786be9f0dSKonstantin Belousov 
61886be9f0dSKonstantin Belousov 	pci_class = devclass_find("pci");
61986be9f0dSKonstantin Belousov 	for (depth = 1; ; depth++) {
62086be9f0dSKonstantin Belousov 		bus = device_get_parent(child);
62186be9f0dSKonstantin Belousov 		pcib = device_get_parent(bus);
62286be9f0dSKonstantin Belousov 		if (device_get_devclass(device_get_parent(pcib)) !=
62386be9f0dSKonstantin Belousov 		    pci_class)
62486be9f0dSKonstantin Belousov 			return (depth);
62586be9f0dSKonstantin Belousov 		child = pcib;
62686be9f0dSKonstantin Belousov 	}
62786be9f0dSKonstantin Belousov }
62886be9f0dSKonstantin Belousov 
629*f9feb091SKonstantin Belousov void
630*f9feb091SKonstantin Belousov dmar_dev_path(device_t child, int *busno, void *path1, int depth)
63186be9f0dSKonstantin Belousov {
63286be9f0dSKonstantin Belousov 	devclass_t pci_class;
63386be9f0dSKonstantin Belousov 	device_t bus, pcib;
634*f9feb091SKonstantin Belousov 	ACPI_DMAR_PCI_PATH *path;
63586be9f0dSKonstantin Belousov 
63686be9f0dSKonstantin Belousov 	pci_class = devclass_find("pci");
637*f9feb091SKonstantin Belousov 	path = path1;
63886be9f0dSKonstantin Belousov 	for (depth--; depth != -1; depth--) {
63986be9f0dSKonstantin Belousov 		path[depth].Device = pci_get_slot(child);
64086be9f0dSKonstantin Belousov 		path[depth].Function = pci_get_function(child);
64186be9f0dSKonstantin Belousov 		bus = device_get_parent(child);
64286be9f0dSKonstantin Belousov 		pcib = device_get_parent(bus);
64386be9f0dSKonstantin Belousov 		if (device_get_devclass(device_get_parent(pcib)) !=
64486be9f0dSKonstantin Belousov 		    pci_class) {
64586be9f0dSKonstantin Belousov 			/* reached a host bridge */
64686be9f0dSKonstantin Belousov 			*busno = pcib_get_bus(bus);
64786be9f0dSKonstantin Belousov 			return;
64886be9f0dSKonstantin Belousov 		}
64986be9f0dSKonstantin Belousov 		child = pcib;
65086be9f0dSKonstantin Belousov 	}
65186be9f0dSKonstantin Belousov 	panic("wrong depth");
65286be9f0dSKonstantin Belousov }
65386be9f0dSKonstantin Belousov 
65486be9f0dSKonstantin Belousov static int
65586be9f0dSKonstantin Belousov dmar_match_pathes(int busno1, const ACPI_DMAR_PCI_PATH *path1, int depth1,
65686be9f0dSKonstantin Belousov     int busno2, const ACPI_DMAR_PCI_PATH *path2, int depth2,
65786be9f0dSKonstantin Belousov     enum AcpiDmarScopeType scope_type)
65886be9f0dSKonstantin Belousov {
65986be9f0dSKonstantin Belousov 	int i, depth;
66086be9f0dSKonstantin Belousov 
66186be9f0dSKonstantin Belousov 	if (busno1 != busno2)
66286be9f0dSKonstantin Belousov 		return (0);
66386be9f0dSKonstantin Belousov 	if (scope_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT && depth1 != depth2)
66486be9f0dSKonstantin Belousov 		return (0);
66586be9f0dSKonstantin Belousov 	depth = depth1;
66686be9f0dSKonstantin Belousov 	if (depth2 < depth)
66786be9f0dSKonstantin Belousov 		depth = depth2;
66886be9f0dSKonstantin Belousov 	for (i = 0; i < depth; i++) {
66986be9f0dSKonstantin Belousov 		if (path1[i].Device != path2[i].Device ||
67086be9f0dSKonstantin Belousov 		    path1[i].Function != path2[i].Function)
67186be9f0dSKonstantin Belousov 			return (0);
67286be9f0dSKonstantin Belousov 	}
67386be9f0dSKonstantin Belousov 	return (1);
67486be9f0dSKonstantin Belousov }
67586be9f0dSKonstantin Belousov 
67686be9f0dSKonstantin Belousov static int
677*f9feb091SKonstantin Belousov dmar_match_devscope(ACPI_DMAR_DEVICE_SCOPE *devscope, int dev_busno,
678*f9feb091SKonstantin Belousov     const ACPI_DMAR_PCI_PATH *dev_path, int dev_path_len)
67986be9f0dSKonstantin Belousov {
68086be9f0dSKonstantin Belousov 	ACPI_DMAR_PCI_PATH *path;
68186be9f0dSKonstantin Belousov 	int path_len;
68286be9f0dSKonstantin Belousov 
68386be9f0dSKonstantin Belousov 	if (devscope->Length < sizeof(*devscope)) {
684*f9feb091SKonstantin Belousov 		printf("dmar_match_devscope: corrupted DMAR table, dl %d\n",
68586be9f0dSKonstantin Belousov 		    devscope->Length);
68686be9f0dSKonstantin Belousov 		return (-1);
68786be9f0dSKonstantin Belousov 	}
68886be9f0dSKonstantin Belousov 	if (devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_ENDPOINT &&
68986be9f0dSKonstantin Belousov 	    devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_BRIDGE)
69086be9f0dSKonstantin Belousov 		return (0);
69186be9f0dSKonstantin Belousov 	path_len = devscope->Length - sizeof(*devscope);
69286be9f0dSKonstantin Belousov 	if (path_len % 2 != 0) {
693*f9feb091SKonstantin Belousov 		printf("dmar_match_devscope: corrupted DMAR table, dl %d\n",
69486be9f0dSKonstantin Belousov 		    devscope->Length);
69586be9f0dSKonstantin Belousov 		return (-1);
69686be9f0dSKonstantin Belousov 	}
69786be9f0dSKonstantin Belousov 	path_len /= 2;
69886be9f0dSKonstantin Belousov 	path = (ACPI_DMAR_PCI_PATH *)(devscope + 1);
69986be9f0dSKonstantin Belousov 	if (path_len == 0) {
700*f9feb091SKonstantin Belousov 		printf("dmar_match_devscope: corrupted DMAR table, dl %d\n",
70186be9f0dSKonstantin Belousov 		    devscope->Length);
70286be9f0dSKonstantin Belousov 		return (-1);
70386be9f0dSKonstantin Belousov 	}
70486be9f0dSKonstantin Belousov 
70586be9f0dSKonstantin Belousov 	return (dmar_match_pathes(devscope->Bus, path, path_len, dev_busno,
70686be9f0dSKonstantin Belousov 	    dev_path, dev_path_len, devscope->EntryType));
70786be9f0dSKonstantin Belousov }
70886be9f0dSKonstantin Belousov 
709*f9feb091SKonstantin Belousov static bool
710*f9feb091SKonstantin Belousov dmar_match_by_path(struct dmar_unit *unit, int dev_domain, int dev_busno,
711*f9feb091SKonstantin Belousov     const ACPI_DMAR_PCI_PATH *dev_path, int dev_path_len, const char **banner)
71286be9f0dSKonstantin Belousov {
71386be9f0dSKonstantin Belousov 	ACPI_DMAR_HARDWARE_UNIT *dmarh;
71486be9f0dSKonstantin Belousov 	ACPI_DMAR_DEVICE_SCOPE *devscope;
71586be9f0dSKonstantin Belousov 	char *ptr, *ptrend;
716*f9feb091SKonstantin Belousov 	int match;
717*f9feb091SKonstantin Belousov 
718*f9feb091SKonstantin Belousov 	dmarh = dmar_find_by_index(unit->unit);
719*f9feb091SKonstantin Belousov 	if (dmarh == NULL)
720*f9feb091SKonstantin Belousov 		return (false);
721*f9feb091SKonstantin Belousov 	if (dmarh->Segment != dev_domain)
722*f9feb091SKonstantin Belousov 		return (false);
723*f9feb091SKonstantin Belousov 	if ((dmarh->Flags & ACPI_DMAR_INCLUDE_ALL) != 0) {
724*f9feb091SKonstantin Belousov 		if (banner != NULL)
725*f9feb091SKonstantin Belousov 			*banner = "INCLUDE_ALL";
726*f9feb091SKonstantin Belousov 		return (true);
727*f9feb091SKonstantin Belousov 	}
728*f9feb091SKonstantin Belousov 	ptr = (char *)dmarh + sizeof(*dmarh);
729*f9feb091SKonstantin Belousov 	ptrend = (char *)dmarh + dmarh->Header.Length;
730*f9feb091SKonstantin Belousov 	while (ptr < ptrend) {
731*f9feb091SKonstantin Belousov 		devscope = (ACPI_DMAR_DEVICE_SCOPE *)ptr;
732*f9feb091SKonstantin Belousov 		ptr += devscope->Length;
733*f9feb091SKonstantin Belousov 		match = dmar_match_devscope(devscope, dev_busno, dev_path,
734*f9feb091SKonstantin Belousov 		    dev_path_len);
735*f9feb091SKonstantin Belousov 		if (match == -1)
736*f9feb091SKonstantin Belousov 			return (false);
737*f9feb091SKonstantin Belousov 		if (match == 1) {
738*f9feb091SKonstantin Belousov 			if (banner != NULL)
739*f9feb091SKonstantin Belousov 				*banner = "specific match";
740*f9feb091SKonstantin Belousov 			return (true);
741*f9feb091SKonstantin Belousov 		}
742*f9feb091SKonstantin Belousov 	}
743*f9feb091SKonstantin Belousov 	return (false);
744*f9feb091SKonstantin Belousov }
745*f9feb091SKonstantin Belousov 
746*f9feb091SKonstantin Belousov static struct dmar_unit *
747*f9feb091SKonstantin Belousov dmar_find_by_scope(int dev_domain, int dev_busno,
748*f9feb091SKonstantin Belousov     const ACPI_DMAR_PCI_PATH *dev_path, int dev_path_len)
749*f9feb091SKonstantin Belousov {
750*f9feb091SKonstantin Belousov 	struct dmar_unit *unit;
751*f9feb091SKonstantin Belousov 	int i;
752*f9feb091SKonstantin Belousov 
753*f9feb091SKonstantin Belousov 	for (i = 0; i < dmar_devcnt; i++) {
754*f9feb091SKonstantin Belousov 		if (dmar_devs[i] == NULL)
755*f9feb091SKonstantin Belousov 			continue;
756*f9feb091SKonstantin Belousov 		unit = device_get_softc(dmar_devs[i]);
757*f9feb091SKonstantin Belousov 		if (dmar_match_by_path(unit, dev_domain, dev_busno, dev_path,
758*f9feb091SKonstantin Belousov 		    dev_path_len, NULL))
759*f9feb091SKonstantin Belousov 			return (unit);
760*f9feb091SKonstantin Belousov 	}
761*f9feb091SKonstantin Belousov 	return (NULL);
762*f9feb091SKonstantin Belousov }
763*f9feb091SKonstantin Belousov 
764*f9feb091SKonstantin Belousov struct dmar_unit *
765*f9feb091SKonstantin Belousov dmar_find(device_t dev, bool verbose)
766*f9feb091SKonstantin Belousov {
767*f9feb091SKonstantin Belousov 	device_t dmar_dev;
768*f9feb091SKonstantin Belousov 	struct dmar_unit *unit;
769*f9feb091SKonstantin Belousov 	const char *banner;
770*f9feb091SKonstantin Belousov 	int i, dev_domain, dev_busno, dev_path_len;
77186be9f0dSKonstantin Belousov 
77286be9f0dSKonstantin Belousov 	dmar_dev = NULL;
77386be9f0dSKonstantin Belousov 	dev_domain = pci_get_domain(dev);
77486be9f0dSKonstantin Belousov 	dev_path_len = dmar_dev_depth(dev);
77586be9f0dSKonstantin Belousov 	ACPI_DMAR_PCI_PATH dev_path[dev_path_len];
77686be9f0dSKonstantin Belousov 	dmar_dev_path(dev, &dev_busno, dev_path, dev_path_len);
777*f9feb091SKonstantin Belousov 	banner = "";
77886be9f0dSKonstantin Belousov 
77986be9f0dSKonstantin Belousov 	for (i = 0; i < dmar_devcnt; i++) {
78086be9f0dSKonstantin Belousov 		if (dmar_devs[i] == NULL)
78186be9f0dSKonstantin Belousov 			continue;
782*f9feb091SKonstantin Belousov 		unit = device_get_softc(dmar_devs[i]);
783*f9feb091SKonstantin Belousov 		if (dmar_match_by_path(unit, dev_domain, dev_busno,
784*f9feb091SKonstantin Belousov 		    dev_path, dev_path_len, &banner))
78586be9f0dSKonstantin Belousov 			break;
78686be9f0dSKonstantin Belousov 	}
787*f9feb091SKonstantin Belousov 	if (i == dmar_devcnt)
78886be9f0dSKonstantin Belousov 		return (NULL);
789*f9feb091SKonstantin Belousov 
790*f9feb091SKonstantin Belousov 	if (verbose) {
791*f9feb091SKonstantin Belousov 		device_printf(dev, "pci%d:%d:%d:%d matched dmar%d by %s",
792*f9feb091SKonstantin Belousov 		    dev_domain, pci_get_bus(dev), pci_get_slot(dev),
793*f9feb091SKonstantin Belousov 		    pci_get_function(dev), unit->unit, banner);
794*f9feb091SKonstantin Belousov 		printf(" scope path ");
795*f9feb091SKonstantin Belousov 		dmar_print_path(dev_busno, dev_path_len, dev_path);
796*f9feb091SKonstantin Belousov 		printf("\n");
79786be9f0dSKonstantin Belousov 	}
798*f9feb091SKonstantin Belousov 	return (unit);
79986be9f0dSKonstantin Belousov }
80086be9f0dSKonstantin Belousov 
8010a110d5bSKonstantin Belousov static struct dmar_unit *
8020a110d5bSKonstantin Belousov dmar_find_nonpci(u_int id, u_int entry_type, uint16_t *rid)
8030a110d5bSKonstantin Belousov {
8040a110d5bSKonstantin Belousov 	device_t dmar_dev;
8050a110d5bSKonstantin Belousov 	struct dmar_unit *unit;
8060a110d5bSKonstantin Belousov 	ACPI_DMAR_HARDWARE_UNIT *dmarh;
8070a110d5bSKonstantin Belousov 	ACPI_DMAR_DEVICE_SCOPE *devscope;
8080a110d5bSKonstantin Belousov 	ACPI_DMAR_PCI_PATH *path;
8090a110d5bSKonstantin Belousov 	char *ptr, *ptrend;
810fd15fee1SKonstantin Belousov #ifdef DEV_APIC
811fd15fee1SKonstantin Belousov 	int error;
812fd15fee1SKonstantin Belousov #endif
8130a110d5bSKonstantin Belousov 	int i;
8140a110d5bSKonstantin Belousov 
8150a110d5bSKonstantin Belousov 	for (i = 0; i < dmar_devcnt; i++) {
8160a110d5bSKonstantin Belousov 		dmar_dev = dmar_devs[i];
8170a110d5bSKonstantin Belousov 		if (dmar_dev == NULL)
8180a110d5bSKonstantin Belousov 			continue;
8190a110d5bSKonstantin Belousov 		unit = (struct dmar_unit *)device_get_softc(dmar_dev);
8200a110d5bSKonstantin Belousov 		dmarh = dmar_find_by_index(i);
8210a110d5bSKonstantin Belousov 		if (dmarh == NULL)
8220a110d5bSKonstantin Belousov 			continue;
8230a110d5bSKonstantin Belousov 		ptr = (char *)dmarh + sizeof(*dmarh);
8240a110d5bSKonstantin Belousov 		ptrend = (char *)dmarh + dmarh->Header.Length;
8250a110d5bSKonstantin Belousov 		for (;;) {
8260a110d5bSKonstantin Belousov 			if (ptr >= ptrend)
8270a110d5bSKonstantin Belousov 				break;
8280a110d5bSKonstantin Belousov 			devscope = (ACPI_DMAR_DEVICE_SCOPE *)ptr;
8290a110d5bSKonstantin Belousov 			ptr += devscope->Length;
8300a110d5bSKonstantin Belousov 			if (devscope->EntryType != entry_type)
8310a110d5bSKonstantin Belousov 				continue;
8320a110d5bSKonstantin Belousov 			if (devscope->EnumerationId != id)
8330a110d5bSKonstantin Belousov 				continue;
834fd15fee1SKonstantin Belousov #ifdef DEV_APIC
835fd15fee1SKonstantin Belousov 			if (entry_type == ACPI_DMAR_SCOPE_TYPE_IOAPIC) {
836fd15fee1SKonstantin Belousov 				error = ioapic_get_rid(id, rid);
837fd15fee1SKonstantin Belousov 				/*
838fd15fee1SKonstantin Belousov 				 * If our IOAPIC has PCI bindings then
839fd15fee1SKonstantin Belousov 				 * use the PCI device rid.
840fd15fee1SKonstantin Belousov 				 */
841fd15fee1SKonstantin Belousov 				if (error == 0)
842fd15fee1SKonstantin Belousov 					return (unit);
843fd15fee1SKonstantin Belousov 			}
844fd15fee1SKonstantin Belousov #endif
8450a110d5bSKonstantin Belousov 			if (devscope->Length - sizeof(ACPI_DMAR_DEVICE_SCOPE)
8460a110d5bSKonstantin Belousov 			    == 2) {
8470a110d5bSKonstantin Belousov 				if (rid != NULL) {
8480a110d5bSKonstantin Belousov 					path = (ACPI_DMAR_PCI_PATH *)
8490a110d5bSKonstantin Belousov 					    (devscope + 1);
8500a110d5bSKonstantin Belousov 					*rid = PCI_RID(devscope->Bus,
8510a110d5bSKonstantin Belousov 					    path->Device, path->Function);
8520a110d5bSKonstantin Belousov 				}
8530a110d5bSKonstantin Belousov 				return (unit);
854fd15fee1SKonstantin Belousov 			}
8550a110d5bSKonstantin Belousov 			printf(
8560a110d5bSKonstantin Belousov 		           "dmar_find_nonpci: id %d type %d path length != 2\n",
8570a110d5bSKonstantin Belousov 			    id, entry_type);
858fd15fee1SKonstantin Belousov 			break;
8590a110d5bSKonstantin Belousov 		}
8600a110d5bSKonstantin Belousov 	}
8610a110d5bSKonstantin Belousov 	return (NULL);
8620a110d5bSKonstantin Belousov }
8630a110d5bSKonstantin Belousov 
8640a110d5bSKonstantin Belousov 
8650a110d5bSKonstantin Belousov struct dmar_unit *
8660a110d5bSKonstantin Belousov dmar_find_hpet(device_t dev, uint16_t *rid)
8670a110d5bSKonstantin Belousov {
8680a110d5bSKonstantin Belousov 
8692fe1339eSKonstantin Belousov 	return (dmar_find_nonpci(hpet_get_uid(dev), ACPI_DMAR_SCOPE_TYPE_HPET,
8702fe1339eSKonstantin Belousov 	    rid));
8710a110d5bSKonstantin Belousov }
8720a110d5bSKonstantin Belousov 
8730a110d5bSKonstantin Belousov struct dmar_unit *
8740a110d5bSKonstantin Belousov dmar_find_ioapic(u_int apic_id, uint16_t *rid)
8750a110d5bSKonstantin Belousov {
8760a110d5bSKonstantin Belousov 
8770a110d5bSKonstantin Belousov 	return (dmar_find_nonpci(apic_id, ACPI_DMAR_SCOPE_TYPE_IOAPIC, rid));
8780a110d5bSKonstantin Belousov }
8790a110d5bSKonstantin Belousov 
88086be9f0dSKonstantin Belousov struct rmrr_iter_args {
8811abfd355SKonstantin Belousov 	struct dmar_domain *domain;
88286be9f0dSKonstantin Belousov 	int dev_domain;
88386be9f0dSKonstantin Belousov 	int dev_busno;
884*f9feb091SKonstantin Belousov 	const ACPI_DMAR_PCI_PATH *dev_path;
88586be9f0dSKonstantin Belousov 	int dev_path_len;
88686be9f0dSKonstantin Belousov 	struct dmar_map_entries_tailq *rmrr_entries;
88786be9f0dSKonstantin Belousov };
88886be9f0dSKonstantin Belousov 
88986be9f0dSKonstantin Belousov static int
89086be9f0dSKonstantin Belousov dmar_rmrr_iter(ACPI_DMAR_HEADER *dmarh, void *arg)
89186be9f0dSKonstantin Belousov {
89286be9f0dSKonstantin Belousov 	struct rmrr_iter_args *ria;
89386be9f0dSKonstantin Belousov 	ACPI_DMAR_RESERVED_MEMORY *resmem;
89486be9f0dSKonstantin Belousov 	ACPI_DMAR_DEVICE_SCOPE *devscope;
89586be9f0dSKonstantin Belousov 	struct dmar_map_entry *entry;
89686be9f0dSKonstantin Belousov 	char *ptr, *ptrend;
89786be9f0dSKonstantin Belousov 	int match;
89886be9f0dSKonstantin Belousov 
89986be9f0dSKonstantin Belousov 	if (dmarh->Type != ACPI_DMAR_TYPE_RESERVED_MEMORY)
90086be9f0dSKonstantin Belousov 		return (1);
90186be9f0dSKonstantin Belousov 
90286be9f0dSKonstantin Belousov 	ria = arg;
90386be9f0dSKonstantin Belousov 	resmem = (ACPI_DMAR_RESERVED_MEMORY *)dmarh;
90486be9f0dSKonstantin Belousov 	if (resmem->Segment != ria->dev_domain)
90586be9f0dSKonstantin Belousov 		return (1);
90686be9f0dSKonstantin Belousov 
90786be9f0dSKonstantin Belousov 	ptr = (char *)resmem + sizeof(*resmem);
90886be9f0dSKonstantin Belousov 	ptrend = (char *)resmem + resmem->Header.Length;
90986be9f0dSKonstantin Belousov 	for (;;) {
91086be9f0dSKonstantin Belousov 		if (ptr >= ptrend)
91186be9f0dSKonstantin Belousov 			break;
91286be9f0dSKonstantin Belousov 		devscope = (ACPI_DMAR_DEVICE_SCOPE *)ptr;
91386be9f0dSKonstantin Belousov 		ptr += devscope->Length;
914*f9feb091SKonstantin Belousov 		match = dmar_match_devscope(devscope, ria->dev_busno,
91586be9f0dSKonstantin Belousov 		    ria->dev_path, ria->dev_path_len);
91686be9f0dSKonstantin Belousov 		if (match == 1) {
9171abfd355SKonstantin Belousov 			entry = dmar_gas_alloc_entry(ria->domain,
9181abfd355SKonstantin Belousov 			    DMAR_PGF_WAITOK);
91986be9f0dSKonstantin Belousov 			entry->start = resmem->BaseAddress;
92086be9f0dSKonstantin Belousov 			/* The RMRR entry end address is inclusive. */
92186be9f0dSKonstantin Belousov 			entry->end = resmem->EndAddress;
92286be9f0dSKonstantin Belousov 			TAILQ_INSERT_TAIL(ria->rmrr_entries, entry,
92386be9f0dSKonstantin Belousov 			    unroll_link);
92486be9f0dSKonstantin Belousov 		}
92586be9f0dSKonstantin Belousov 	}
92686be9f0dSKonstantin Belousov 
92786be9f0dSKonstantin Belousov 	return (1);
92886be9f0dSKonstantin Belousov }
92986be9f0dSKonstantin Belousov 
93086be9f0dSKonstantin Belousov void
931*f9feb091SKonstantin Belousov dmar_dev_parse_rmrr(struct dmar_domain *domain, int dev_domain, int dev_busno,
932*f9feb091SKonstantin Belousov     const void *dev_path, int dev_path_len,
93386be9f0dSKonstantin Belousov     struct dmar_map_entries_tailq *rmrr_entries)
93486be9f0dSKonstantin Belousov {
93586be9f0dSKonstantin Belousov 	struct rmrr_iter_args ria;
93686be9f0dSKonstantin Belousov 
9371abfd355SKonstantin Belousov 	ria.domain = domain;
938*f9feb091SKonstantin Belousov 	ria.dev_domain = dev_domain;
939*f9feb091SKonstantin Belousov 	ria.dev_busno = dev_busno;
940*f9feb091SKonstantin Belousov 	ria.dev_path = (const ACPI_DMAR_PCI_PATH *)dev_path;
941*f9feb091SKonstantin Belousov 	ria.dev_path_len = dev_path_len;
94286be9f0dSKonstantin Belousov 	ria.rmrr_entries = rmrr_entries;
94386be9f0dSKonstantin Belousov 	dmar_iterate_tbl(dmar_rmrr_iter, &ria);
94486be9f0dSKonstantin Belousov }
94586be9f0dSKonstantin Belousov 
94686be9f0dSKonstantin Belousov struct inst_rmrr_iter_args {
94786be9f0dSKonstantin Belousov 	struct dmar_unit *dmar;
94886be9f0dSKonstantin Belousov };
94986be9f0dSKonstantin Belousov 
95086be9f0dSKonstantin Belousov static device_t
95186be9f0dSKonstantin Belousov dmar_path_dev(int segment, int path_len, int busno,
952*f9feb091SKonstantin Belousov     const ACPI_DMAR_PCI_PATH *path, uint16_t *rid)
95386be9f0dSKonstantin Belousov {
954*f9feb091SKonstantin Belousov 	device_t dev;
95586be9f0dSKonstantin Belousov 	int i;
95686be9f0dSKonstantin Belousov 
95786be9f0dSKonstantin Belousov 	dev = NULL;
958*f9feb091SKonstantin Belousov 	for (i = 0; i < path_len; i++) {
95986be9f0dSKonstantin Belousov 		dev = pci_find_dbsf(segment, busno, path->Device,
96086be9f0dSKonstantin Belousov 		    path->Function);
96186be9f0dSKonstantin Belousov 		if (i != path_len - 1) {
962*f9feb091SKonstantin Belousov 			busno = pci_cfgregread(busno, path->Device,
963*f9feb091SKonstantin Belousov 			    path->Function, PCIR_SECBUS_1, 1);
964*f9feb091SKonstantin Belousov 			path++;
96586be9f0dSKonstantin Belousov 		}
96686be9f0dSKonstantin Belousov 	}
967*f9feb091SKonstantin Belousov 	*rid = PCI_RID(busno, path->Device, path->Function);
96886be9f0dSKonstantin Belousov 	return (dev);
96986be9f0dSKonstantin Belousov }
97086be9f0dSKonstantin Belousov 
97186be9f0dSKonstantin Belousov static int
97286be9f0dSKonstantin Belousov dmar_inst_rmrr_iter(ACPI_DMAR_HEADER *dmarh, void *arg)
97386be9f0dSKonstantin Belousov {
97486be9f0dSKonstantin Belousov 	const ACPI_DMAR_RESERVED_MEMORY *resmem;
97586be9f0dSKonstantin Belousov 	const ACPI_DMAR_DEVICE_SCOPE *devscope;
97686be9f0dSKonstantin Belousov 	struct inst_rmrr_iter_args *iria;
97786be9f0dSKonstantin Belousov 	const char *ptr, *ptrend;
97886be9f0dSKonstantin Belousov 	device_t dev;
979*f9feb091SKonstantin Belousov 	struct dmar_unit *unit;
980*f9feb091SKonstantin Belousov 	int dev_path_len;
981*f9feb091SKonstantin Belousov 	uint16_t rid;
982*f9feb091SKonstantin Belousov 
983*f9feb091SKonstantin Belousov 	iria = arg;
98486be9f0dSKonstantin Belousov 
98586be9f0dSKonstantin Belousov 	if (dmarh->Type != ACPI_DMAR_TYPE_RESERVED_MEMORY)
98686be9f0dSKonstantin Belousov 		return (1);
98786be9f0dSKonstantin Belousov 
98886be9f0dSKonstantin Belousov 	resmem = (ACPI_DMAR_RESERVED_MEMORY *)dmarh;
98986be9f0dSKonstantin Belousov 	if (resmem->Segment != iria->dmar->segment)
99086be9f0dSKonstantin Belousov 		return (1);
99186be9f0dSKonstantin Belousov 
99233552193SDimitry Andric 	ptr = (const char *)resmem + sizeof(*resmem);
99333552193SDimitry Andric 	ptrend = (const char *)resmem + resmem->Header.Length;
99486be9f0dSKonstantin Belousov 	for (;;) {
99586be9f0dSKonstantin Belousov 		if (ptr >= ptrend)
99686be9f0dSKonstantin Belousov 			break;
99733552193SDimitry Andric 		devscope = (const ACPI_DMAR_DEVICE_SCOPE *)ptr;
99886be9f0dSKonstantin Belousov 		ptr += devscope->Length;
99986be9f0dSKonstantin Belousov 		/* XXXKIB bridge */
100086be9f0dSKonstantin Belousov 		if (devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_ENDPOINT)
100186be9f0dSKonstantin Belousov 			continue;
1002*f9feb091SKonstantin Belousov 		rid = 0;
1003*f9feb091SKonstantin Belousov 		dev_path_len = (devscope->Length -
1004*f9feb091SKonstantin Belousov 		    sizeof(ACPI_DMAR_DEVICE_SCOPE)) / 2;
1005*f9feb091SKonstantin Belousov 		dev = dmar_path_dev(resmem->Segment, dev_path_len,
1006*f9feb091SKonstantin Belousov 		    devscope->Bus,
1007*f9feb091SKonstantin Belousov 		    (const ACPI_DMAR_PCI_PATH *)(devscope + 1), &rid);
100886be9f0dSKonstantin Belousov 		if (dev == NULL) {
1009*f9feb091SKonstantin Belousov 			if (bootverbose) {
1010*f9feb091SKonstantin Belousov 				printf("dmar%d no dev found for RMRR "
1011*f9feb091SKonstantin Belousov 				    "[%#jx, %#jx] rid %#x scope path ",
1012*f9feb091SKonstantin Belousov 				     iria->dmar->unit,
1013*f9feb091SKonstantin Belousov 				     (uintptr_t)resmem->BaseAddress,
1014*f9feb091SKonstantin Belousov 				     (uintptr_t)resmem->EndAddress,
1015*f9feb091SKonstantin Belousov 				     rid);
1016*f9feb091SKonstantin Belousov 				dmar_print_path(devscope->Bus, dev_path_len,
1017*f9feb091SKonstantin Belousov 				    (const ACPI_DMAR_PCI_PATH *)(devscope + 1));
1018*f9feb091SKonstantin Belousov 				printf("\n");
1019*f9feb091SKonstantin Belousov 			}
1020*f9feb091SKonstantin Belousov 			unit = dmar_find_by_scope(resmem->Segment,
1021*f9feb091SKonstantin Belousov 			    devscope->Bus,
1022*f9feb091SKonstantin Belousov 			    (const ACPI_DMAR_PCI_PATH *)(devscope + 1),
1023*f9feb091SKonstantin Belousov 			    dev_path_len);
1024*f9feb091SKonstantin Belousov 			if (iria->dmar != unit)
102586be9f0dSKonstantin Belousov 				continue;
1026*f9feb091SKonstantin Belousov 			dmar_get_ctx_for_devpath(iria->dmar, rid,
1027*f9feb091SKonstantin Belousov 			    resmem->Segment, devscope->Bus,
1028*f9feb091SKonstantin Belousov 			    (const ACPI_DMAR_PCI_PATH *)(devscope + 1),
1029*f9feb091SKonstantin Belousov 			    dev_path_len, false, true);
1030*f9feb091SKonstantin Belousov 		} else {
1031*f9feb091SKonstantin Belousov 			unit = dmar_find(dev, false);
1032*f9feb091SKonstantin Belousov 			if (iria->dmar != unit)
103386be9f0dSKonstantin Belousov 				continue;
103486be9f0dSKonstantin Belousov 			dmar_instantiate_ctx(iria->dmar, dev, true);
103586be9f0dSKonstantin Belousov 		}
1036*f9feb091SKonstantin Belousov 	}
103786be9f0dSKonstantin Belousov 
103886be9f0dSKonstantin Belousov 	return (1);
103986be9f0dSKonstantin Belousov 
104086be9f0dSKonstantin Belousov }
104186be9f0dSKonstantin Belousov 
104286be9f0dSKonstantin Belousov /*
104386be9f0dSKonstantin Belousov  * Pre-create all contexts for the DMAR which have RMRR entries.
104486be9f0dSKonstantin Belousov  */
104586be9f0dSKonstantin Belousov int
104686be9f0dSKonstantin Belousov dmar_instantiate_rmrr_ctxs(struct dmar_unit *dmar)
104786be9f0dSKonstantin Belousov {
104886be9f0dSKonstantin Belousov 	struct inst_rmrr_iter_args iria;
104986be9f0dSKonstantin Belousov 	int error;
105086be9f0dSKonstantin Belousov 
105186be9f0dSKonstantin Belousov 	if (!dmar_barrier_enter(dmar, DMAR_BARRIER_RMRR))
105286be9f0dSKonstantin Belousov 		return (0);
105386be9f0dSKonstantin Belousov 
105486be9f0dSKonstantin Belousov 	error = 0;
105586be9f0dSKonstantin Belousov 	iria.dmar = dmar;
105686be9f0dSKonstantin Belousov 	dmar_iterate_tbl(dmar_inst_rmrr_iter, &iria);
105786be9f0dSKonstantin Belousov 	DMAR_LOCK(dmar);
10581abfd355SKonstantin Belousov 	if (!LIST_EMPTY(&dmar->domains)) {
105986be9f0dSKonstantin Belousov 		KASSERT((dmar->hw_gcmd & DMAR_GCMD_TE) == 0,
106086be9f0dSKonstantin Belousov 	    ("dmar%d: RMRR not handled but translation is already enabled",
106186be9f0dSKonstantin Belousov 		    dmar->unit));
106286be9f0dSKonstantin Belousov 		error = dmar_enable_translation(dmar);
1063*f9feb091SKonstantin Belousov 		if (bootverbose) {
1064*f9feb091SKonstantin Belousov 			if (error == 0) {
1065*f9feb091SKonstantin Belousov 				printf("dmar%d: enabled translation\n",
1066*f9feb091SKonstantin Belousov 				    dmar->unit);
1067*f9feb091SKonstantin Belousov 			} else {
1068*f9feb091SKonstantin Belousov 				printf("dmar%d: enabling translation failed, "
1069*f9feb091SKonstantin Belousov 				    "error %d\n", dmar->unit, error);
1070*f9feb091SKonstantin Belousov 			}
1071*f9feb091SKonstantin Belousov 		}
107286be9f0dSKonstantin Belousov 	}
107386be9f0dSKonstantin Belousov 	dmar_barrier_exit(dmar, DMAR_BARRIER_RMRR);
107486be9f0dSKonstantin Belousov 	return (error);
107586be9f0dSKonstantin Belousov }
107686be9f0dSKonstantin Belousov 
107786be9f0dSKonstantin Belousov #ifdef DDB
107886be9f0dSKonstantin Belousov #include <ddb/ddb.h>
107986be9f0dSKonstantin Belousov #include <ddb/db_lex.h>
108086be9f0dSKonstantin Belousov 
108186be9f0dSKonstantin Belousov static void
10821abfd355SKonstantin Belousov dmar_print_domain_entry(const struct dmar_map_entry *entry)
108386be9f0dSKonstantin Belousov {
108486be9f0dSKonstantin Belousov 	struct dmar_map_entry *l, *r;
108586be9f0dSKonstantin Belousov 
108686be9f0dSKonstantin Belousov 	db_printf(
108786be9f0dSKonstantin Belousov 	    "    start %jx end %jx free_after %jx free_down %jx flags %x ",
108886be9f0dSKonstantin Belousov 	    entry->start, entry->end, entry->free_after, entry->free_down,
108986be9f0dSKonstantin Belousov 	    entry->flags);
109086be9f0dSKonstantin Belousov 	db_printf("left ");
109186be9f0dSKonstantin Belousov 	l = RB_LEFT(entry, rb_entry);
109286be9f0dSKonstantin Belousov 	if (l == NULL)
109386be9f0dSKonstantin Belousov 		db_printf("NULL ");
109486be9f0dSKonstantin Belousov 	else
109586be9f0dSKonstantin Belousov 		db_printf("%jx ", l->start);
109686be9f0dSKonstantin Belousov 	db_printf("right ");
109786be9f0dSKonstantin Belousov 	r = RB_RIGHT(entry, rb_entry);
109886be9f0dSKonstantin Belousov 	if (r == NULL)
109986be9f0dSKonstantin Belousov 		db_printf("NULL");
110086be9f0dSKonstantin Belousov 	else
110186be9f0dSKonstantin Belousov 		db_printf("%jx", r->start);
110286be9f0dSKonstantin Belousov 	db_printf("\n");
110386be9f0dSKonstantin Belousov }
110486be9f0dSKonstantin Belousov 
110586be9f0dSKonstantin Belousov static void
11061abfd355SKonstantin Belousov dmar_print_ctx(struct dmar_ctx *ctx)
110786be9f0dSKonstantin Belousov {
110886be9f0dSKonstantin Belousov 
110986be9f0dSKonstantin Belousov 	db_printf(
11101abfd355SKonstantin Belousov 	    "    @%p pci%d:%d:%d refs %d flags %x loads %lu unloads %lu\n",
111167499354SRyan Stone 	    ctx, pci_get_bus(ctx->ctx_tag.owner),
111267499354SRyan Stone 	    pci_get_slot(ctx->ctx_tag.owner),
11131abfd355SKonstantin Belousov 	    pci_get_function(ctx->ctx_tag.owner), ctx->refs, ctx->flags,
11141abfd355SKonstantin Belousov 	    ctx->loads, ctx->unloads);
11151abfd355SKonstantin Belousov }
11161abfd355SKonstantin Belousov 
11171abfd355SKonstantin Belousov static void
11181abfd355SKonstantin Belousov dmar_print_domain(struct dmar_domain *domain, bool show_mappings)
11191abfd355SKonstantin Belousov {
11201abfd355SKonstantin Belousov 	struct dmar_map_entry *entry;
11211abfd355SKonstantin Belousov 	struct dmar_ctx *ctx;
11221abfd355SKonstantin Belousov 
11231abfd355SKonstantin Belousov 	db_printf(
11241abfd355SKonstantin Belousov 	    "  @%p dom %d mgaw %d agaw %d pglvl %d end %jx refs %d\n"
11251abfd355SKonstantin Belousov 	    "   ctx_cnt %d flags %x pgobj %p map_ents %u\n",
11261abfd355SKonstantin Belousov 	    domain, domain->domain, domain->mgaw, domain->agaw, domain->pglvl,
11271abfd355SKonstantin Belousov 	    (uintmax_t)domain->end, domain->refs, domain->ctx_cnt,
11281abfd355SKonstantin Belousov 	    domain->flags, domain->pgtbl_obj, domain->entries_cnt);
11291abfd355SKonstantin Belousov 	if (!LIST_EMPTY(&domain->contexts)) {
11301abfd355SKonstantin Belousov 		db_printf("  Contexts:\n");
11311abfd355SKonstantin Belousov 		LIST_FOREACH(ctx, &domain->contexts, link)
11321abfd355SKonstantin Belousov 			dmar_print_ctx(ctx);
11331abfd355SKonstantin Belousov 	}
113486be9f0dSKonstantin Belousov 	if (!show_mappings)
113586be9f0dSKonstantin Belousov 		return;
113686be9f0dSKonstantin Belousov 	db_printf("    mapped:\n");
11371abfd355SKonstantin Belousov 	RB_FOREACH(entry, dmar_gas_entries_tree, &domain->rb_root) {
11381abfd355SKonstantin Belousov 		dmar_print_domain_entry(entry);
113986be9f0dSKonstantin Belousov 		if (db_pager_quit)
114086be9f0dSKonstantin Belousov 			break;
114186be9f0dSKonstantin Belousov 	}
114286be9f0dSKonstantin Belousov 	if (db_pager_quit)
114386be9f0dSKonstantin Belousov 		return;
114486be9f0dSKonstantin Belousov 	db_printf("    unloading:\n");
11451abfd355SKonstantin Belousov 	TAILQ_FOREACH(entry, &domain->unload_entries, dmamap_link) {
11461abfd355SKonstantin Belousov 		dmar_print_domain_entry(entry);
114786be9f0dSKonstantin Belousov 		if (db_pager_quit)
114886be9f0dSKonstantin Belousov 			break;
114986be9f0dSKonstantin Belousov 	}
115086be9f0dSKonstantin Belousov }
115186be9f0dSKonstantin Belousov 
11521abfd355SKonstantin Belousov DB_FUNC(dmar_domain, db_dmar_print_domain, db_show_table, CS_OWN, NULL)
115386be9f0dSKonstantin Belousov {
115486be9f0dSKonstantin Belousov 	struct dmar_unit *unit;
11551abfd355SKonstantin Belousov 	struct dmar_domain *domain;
115686be9f0dSKonstantin Belousov 	struct dmar_ctx *ctx;
115786be9f0dSKonstantin Belousov 	bool show_mappings, valid;
11581abfd355SKonstantin Belousov 	int pci_domain, bus, device, function, i, t;
115986be9f0dSKonstantin Belousov 	db_expr_t radix;
116086be9f0dSKonstantin Belousov 
116186be9f0dSKonstantin Belousov 	valid = false;
116286be9f0dSKonstantin Belousov 	radix = db_radix;
116386be9f0dSKonstantin Belousov 	db_radix = 10;
116486be9f0dSKonstantin Belousov 	t = db_read_token();
116586be9f0dSKonstantin Belousov 	if (t == tSLASH) {
116686be9f0dSKonstantin Belousov 		t = db_read_token();
116786be9f0dSKonstantin Belousov 		if (t != tIDENT) {
116886be9f0dSKonstantin Belousov 			db_printf("Bad modifier\n");
116986be9f0dSKonstantin Belousov 			db_radix = radix;
117086be9f0dSKonstantin Belousov 			db_skip_to_eol();
117186be9f0dSKonstantin Belousov 			return;
117286be9f0dSKonstantin Belousov 		}
117386be9f0dSKonstantin Belousov 		show_mappings = strchr(db_tok_string, 'm') != NULL;
117486be9f0dSKonstantin Belousov 		t = db_read_token();
1175f7f5706fSDimitry Andric 	} else {
1176f7f5706fSDimitry Andric 		show_mappings = false;
117786be9f0dSKonstantin Belousov 	}
117886be9f0dSKonstantin Belousov 	if (t == tNUMBER) {
11791abfd355SKonstantin Belousov 		pci_domain = db_tok_number;
118086be9f0dSKonstantin Belousov 		t = db_read_token();
118186be9f0dSKonstantin Belousov 		if (t == tNUMBER) {
118286be9f0dSKonstantin Belousov 			bus = db_tok_number;
118386be9f0dSKonstantin Belousov 			t = db_read_token();
118486be9f0dSKonstantin Belousov 			if (t == tNUMBER) {
118586be9f0dSKonstantin Belousov 				device = db_tok_number;
118686be9f0dSKonstantin Belousov 				t = db_read_token();
118786be9f0dSKonstantin Belousov 				if (t == tNUMBER) {
118886be9f0dSKonstantin Belousov 					function = db_tok_number;
118986be9f0dSKonstantin Belousov 					valid = true;
119086be9f0dSKonstantin Belousov 				}
119186be9f0dSKonstantin Belousov 			}
119286be9f0dSKonstantin Belousov 		}
119386be9f0dSKonstantin Belousov 	}
119486be9f0dSKonstantin Belousov 			db_radix = radix;
119586be9f0dSKonstantin Belousov 	db_skip_to_eol();
119686be9f0dSKonstantin Belousov 	if (!valid) {
11971abfd355SKonstantin Belousov 		db_printf("usage: show dmar_domain [/m] "
119886be9f0dSKonstantin Belousov 		    "<domain> <bus> <device> <func>\n");
119986be9f0dSKonstantin Belousov 		return;
120086be9f0dSKonstantin Belousov 	}
120186be9f0dSKonstantin Belousov 	for (i = 0; i < dmar_devcnt; i++) {
120286be9f0dSKonstantin Belousov 		unit = device_get_softc(dmar_devs[i]);
12031abfd355SKonstantin Belousov 		LIST_FOREACH(domain, &unit->domains, link) {
12041abfd355SKonstantin Belousov 			LIST_FOREACH(ctx, &domain->contexts, link) {
12051abfd355SKonstantin Belousov 				if (pci_domain == unit->segment &&
120667499354SRyan Stone 				    bus == pci_get_bus(ctx->ctx_tag.owner) &&
12071abfd355SKonstantin Belousov 				    device ==
12081abfd355SKonstantin Belousov 				    pci_get_slot(ctx->ctx_tag.owner) &&
12091abfd355SKonstantin Belousov 				    function ==
12101abfd355SKonstantin Belousov 				    pci_get_function(ctx->ctx_tag.owner)) {
12111abfd355SKonstantin Belousov 					dmar_print_domain(domain,
12121abfd355SKonstantin Belousov 					    show_mappings);
121386be9f0dSKonstantin Belousov 					goto out;
121486be9f0dSKonstantin Belousov 				}
121586be9f0dSKonstantin Belousov 			}
121686be9f0dSKonstantin Belousov 		}
12171abfd355SKonstantin Belousov 	}
121886be9f0dSKonstantin Belousov out:;
121986be9f0dSKonstantin Belousov }
122086be9f0dSKonstantin Belousov 
122186be9f0dSKonstantin Belousov static void
12221abfd355SKonstantin Belousov dmar_print_one(int idx, bool show_domains, bool show_mappings)
122386be9f0dSKonstantin Belousov {
122486be9f0dSKonstantin Belousov 	struct dmar_unit *unit;
12251abfd355SKonstantin Belousov 	struct dmar_domain *domain;
122686be9f0dSKonstantin Belousov 	int i, frir;
122786be9f0dSKonstantin Belousov 
122886be9f0dSKonstantin Belousov 	unit = device_get_softc(dmar_devs[idx]);
122986be9f0dSKonstantin Belousov 	db_printf("dmar%d at %p, root at 0x%jx, ver 0x%x\n", unit->unit, unit,
123086be9f0dSKonstantin Belousov 	    dmar_read8(unit, DMAR_RTADDR_REG), dmar_read4(unit, DMAR_VER_REG));
123186be9f0dSKonstantin Belousov 	db_printf("cap 0x%jx ecap 0x%jx gsts 0x%x fsts 0x%x fectl 0x%x\n",
123286be9f0dSKonstantin Belousov 	    (uintmax_t)dmar_read8(unit, DMAR_CAP_REG),
123386be9f0dSKonstantin Belousov 	    (uintmax_t)dmar_read8(unit, DMAR_ECAP_REG),
123486be9f0dSKonstantin Belousov 	    dmar_read4(unit, DMAR_GSTS_REG),
123586be9f0dSKonstantin Belousov 	    dmar_read4(unit, DMAR_FSTS_REG),
123686be9f0dSKonstantin Belousov 	    dmar_read4(unit, DMAR_FECTL_REG));
12371abfd355SKonstantin Belousov 	if (unit->ir_enabled) {
12381abfd355SKonstantin Belousov 		db_printf("ir is enabled; IRT @%p phys 0x%jx maxcnt %d\n",
12391abfd355SKonstantin Belousov 		    unit->irt, (uintmax_t)unit->irt_phys, unit->irte_cnt);
12401abfd355SKonstantin Belousov 	}
124186be9f0dSKonstantin Belousov 	db_printf("fed 0x%x fea 0x%x feua 0x%x\n",
124286be9f0dSKonstantin Belousov 	    dmar_read4(unit, DMAR_FEDATA_REG),
124386be9f0dSKonstantin Belousov 	    dmar_read4(unit, DMAR_FEADDR_REG),
124486be9f0dSKonstantin Belousov 	    dmar_read4(unit, DMAR_FEUADDR_REG));
124586be9f0dSKonstantin Belousov 	db_printf("primary fault log:\n");
124686be9f0dSKonstantin Belousov 	for (i = 0; i < DMAR_CAP_NFR(unit->hw_cap); i++) {
124786be9f0dSKonstantin Belousov 		frir = (DMAR_CAP_FRO(unit->hw_cap) + i) * 16;
124886be9f0dSKonstantin Belousov 		db_printf("  %d at 0x%x: %jx %jx\n", i, frir,
124986be9f0dSKonstantin Belousov 		    (uintmax_t)dmar_read8(unit, frir),
125086be9f0dSKonstantin Belousov 		    (uintmax_t)dmar_read8(unit, frir + 8));
125186be9f0dSKonstantin Belousov 	}
125268eeb96aSKonstantin Belousov 	if (DMAR_HAS_QI(unit)) {
125368eeb96aSKonstantin Belousov 		db_printf("ied 0x%x iea 0x%x ieua 0x%x\n",
125468eeb96aSKonstantin Belousov 		    dmar_read4(unit, DMAR_IEDATA_REG),
125568eeb96aSKonstantin Belousov 		    dmar_read4(unit, DMAR_IEADDR_REG),
125668eeb96aSKonstantin Belousov 		    dmar_read4(unit, DMAR_IEUADDR_REG));
125768eeb96aSKonstantin Belousov 		if (unit->qi_enabled) {
125868eeb96aSKonstantin Belousov 			db_printf("qi is enabled: queue @0x%jx (IQA 0x%jx) "
125968eeb96aSKonstantin Belousov 			    "size 0x%jx\n"
126068eeb96aSKonstantin Belousov 		    "  head 0x%x tail 0x%x avail 0x%x status 0x%x ctrl 0x%x\n"
126168eeb96aSKonstantin Belousov 		    "  hw compl 0x%x@%p/phys@%jx next seq 0x%x gen 0x%x\n",
126268eeb96aSKonstantin Belousov 			    (uintmax_t)unit->inv_queue,
126368eeb96aSKonstantin Belousov 			    (uintmax_t)dmar_read8(unit, DMAR_IQA_REG),
126468eeb96aSKonstantin Belousov 			    (uintmax_t)unit->inv_queue_size,
126568eeb96aSKonstantin Belousov 			    dmar_read4(unit, DMAR_IQH_REG),
126668eeb96aSKonstantin Belousov 			    dmar_read4(unit, DMAR_IQT_REG),
126768eeb96aSKonstantin Belousov 			    unit->inv_queue_avail,
126868eeb96aSKonstantin Belousov 			    dmar_read4(unit, DMAR_ICS_REG),
126968eeb96aSKonstantin Belousov 			    dmar_read4(unit, DMAR_IECTL_REG),
127068eeb96aSKonstantin Belousov 			    unit->inv_waitd_seq_hw,
127168eeb96aSKonstantin Belousov 			    &unit->inv_waitd_seq_hw,
127268eeb96aSKonstantin Belousov 			    (uintmax_t)unit->inv_waitd_seq_hw_phys,
127368eeb96aSKonstantin Belousov 			    unit->inv_waitd_seq,
127468eeb96aSKonstantin Belousov 			    unit->inv_waitd_gen);
127568eeb96aSKonstantin Belousov 		} else {
127668eeb96aSKonstantin Belousov 			db_printf("qi is disabled\n");
127768eeb96aSKonstantin Belousov 		}
127868eeb96aSKonstantin Belousov 	}
12791abfd355SKonstantin Belousov 	if (show_domains) {
12801abfd355SKonstantin Belousov 		db_printf("domains:\n");
12811abfd355SKonstantin Belousov 		LIST_FOREACH(domain, &unit->domains, link) {
12821abfd355SKonstantin Belousov 			dmar_print_domain(domain, show_mappings);
128386be9f0dSKonstantin Belousov 			if (db_pager_quit)
128486be9f0dSKonstantin Belousov 				break;
128586be9f0dSKonstantin Belousov 		}
128686be9f0dSKonstantin Belousov 	}
128786be9f0dSKonstantin Belousov }
128886be9f0dSKonstantin Belousov 
128986be9f0dSKonstantin Belousov DB_SHOW_COMMAND(dmar, db_dmar_print)
129086be9f0dSKonstantin Belousov {
12911abfd355SKonstantin Belousov 	bool show_domains, show_mappings;
129286be9f0dSKonstantin Belousov 
12931abfd355SKonstantin Belousov 	show_domains = strchr(modif, 'd') != NULL;
129486be9f0dSKonstantin Belousov 	show_mappings = strchr(modif, 'm') != NULL;
129586be9f0dSKonstantin Belousov 	if (!have_addr) {
12961abfd355SKonstantin Belousov 		db_printf("usage: show dmar [/d] [/m] index\n");
129786be9f0dSKonstantin Belousov 		return;
129886be9f0dSKonstantin Belousov 	}
12991abfd355SKonstantin Belousov 	dmar_print_one((int)addr, show_domains, show_mappings);
130086be9f0dSKonstantin Belousov }
130186be9f0dSKonstantin Belousov 
130286be9f0dSKonstantin Belousov DB_SHOW_ALL_COMMAND(dmars, db_show_all_dmars)
130386be9f0dSKonstantin Belousov {
130486be9f0dSKonstantin Belousov 	int i;
13051abfd355SKonstantin Belousov 	bool show_domains, show_mappings;
130686be9f0dSKonstantin Belousov 
13071abfd355SKonstantin Belousov 	show_domains = strchr(modif, 'd') != NULL;
130886be9f0dSKonstantin Belousov 	show_mappings = strchr(modif, 'm') != NULL;
130986be9f0dSKonstantin Belousov 
131086be9f0dSKonstantin Belousov 	for (i = 0; i < dmar_devcnt; i++) {
13111abfd355SKonstantin Belousov 		dmar_print_one(i, show_domains, show_mappings);
131286be9f0dSKonstantin Belousov 		if (db_pager_quit)
131386be9f0dSKonstantin Belousov 			break;
131486be9f0dSKonstantin Belousov 	}
131586be9f0dSKonstantin Belousov }
131686be9f0dSKonstantin Belousov #endif
1317