Lines Matching refs:satc
3759 static struct dmar_satc_unit *dmar_find_satc(struct acpi_dmar_satc *satc) in dmar_find_satc() argument
3767 if (satc->segment != tmp->segment) in dmar_find_satc()
3769 if (satc->header.length != tmp->header.length) in dmar_find_satc()
3771 if (memcmp(satc, tmp, satc->header.length) == 0) in dmar_find_satc()
3780 struct acpi_dmar_satc *satc; in dmar_parse_one_satc() local
3786 satc = container_of(hdr, struct acpi_dmar_satc, header); in dmar_parse_one_satc()
3787 satcu = dmar_find_satc(satc); in dmar_parse_one_satc()
3797 satcu->atc_required = satc->flags & 0x1; in dmar_parse_one_satc()
3798 satcu->devices = dmar_alloc_dev_scope((void *)(satc + 1), in dmar_parse_one_satc()
3799 (void *)satc + satc->header.length, in dmar_parse_one_satc()
3986 struct acpi_dmar_satc *satc; in dmar_iommu_notify_scope_dev() local
4028 satc = container_of(satcu->hdr, struct acpi_dmar_satc, header); in dmar_iommu_notify_scope_dev()
4030 ret = dmar_insert_dev_scope(info, (void *)(satc + 1), in dmar_iommu_notify_scope_dev()
4031 (void *)satc + satc->header.length, in dmar_iommu_notify_scope_dev()
4032 satc->segment, satcu->devices, in dmar_iommu_notify_scope_dev()
4039 if (dmar_remove_dev_scope(info, satc->segment, in dmar_iommu_notify_scope_dev()