Home
last modified time | relevance | path

Searched refs:root_table (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/tools/tools/dmardump/
H A Ddmardump.c153 struct dmar_root_entry *root_table; in handle_drhd() local
174 root_table = acpi_map_physical(rtaddr & DMAR_RTADDR_RTA_MASK, 4096); in handle_drhd()
178 if (root_table[bus].r1 & DMAR_ROOT_R1_P) in handle_drhd()
180 root_table[bus].r1 & DMAR_ROOT_R1_CTP_MASK, in handle_drhd()
182 if (root_table[bus].r2 & DMAR_ROOT_R1_P) in handle_drhd()
184 root_table[bus].r2 & DMAR_ROOT_R1_CTP_MASK, in handle_drhd()
187 } else if (root_table[bus].r1 & DMAR_ROOT_R1_P) in handle_drhd()
188 dump_context_table(segment, bus, root_table[bus].r1 & in handle_drhd()
/freebsd-14.2/sys/amd64/vmm/intel/
H A Dvtd.c123 static uint64_t root_table[PAGE_SIZE / sizeof(uint64_t)] __aligned(4096); variable
389 root_table[i * 2] = ctx_paddr | VTD_ROOT_PRESENT; in vtd_init()
411 vtdmap->rta = vtophys(root_table); in vtd_enable()