Searched refs:devscope (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/x86/iommu/ |
H A D | intel_drv.c | 669 dmar_match_devscope(ACPI_DMAR_DEVICE_SCOPE *devscope, int dev_busno, in dmar_match_devscope() argument 675 if (devscope->Length < sizeof(*devscope)) { in dmar_match_devscope() 677 devscope->Length); in dmar_match_devscope() 680 if (devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_ENDPOINT && in dmar_match_devscope() 681 devscope->EntryType != ACPI_DMAR_SCOPE_TYPE_BRIDGE) in dmar_match_devscope() 683 path_len = devscope->Length - sizeof(*devscope); in dmar_match_devscope() 686 devscope->Length); in dmar_match_devscope() 690 path = (ACPI_DMAR_PCI_PATH *)(devscope + 1); in dmar_match_devscope() 693 devscope->Length); in dmar_match_devscope() 697 return (dmar_match_pathes(devscope->Bus, path, path_len, dev_busno, in dmar_match_devscope() [all …]
|
/freebsd/usr.sbin/acpi/acpidump/ |
H A D | acpi.c | 1440 ACPI_DMAR_DEVICE_SCOPE *devscope = addr; in acpi_handle_dmar_devscope() local 1445 if (remaining < devscope->Length) in acpi_handle_dmar_devscope() 1449 printf("\t\tType=%s\n", devscope_type2str(devscope->EntryType)); in acpi_handle_dmar_devscope() 1450 printf("\t\tLength=%d\n", devscope->Length); in acpi_handle_dmar_devscope() 1451 printf("\t\tEnumerationId=%d\n", devscope->EnumerationId); in acpi_handle_dmar_devscope() 1452 printf("\t\tStartBusNumber=%d\n", devscope->Bus); in acpi_handle_dmar_devscope() 1454 path = (ACPI_DMAR_PCI_PATH *)(devscope + 1); in acpi_handle_dmar_devscope() 1455 pathlen = devscope->Length - sizeof(ACPI_DMAR_DEVICE_SCOPE); in acpi_handle_dmar_devscope() 1468 return (devscope->Length); in acpi_handle_dmar_devscope()
|