Home
last modified time | relevance | path

Searched refs:pdomain (Results 1 – 8 of 8) sorted by relevance

/Linux-v4.19/drivers/acpi/
Dprocessor_perflib.c537 int acpi_processor_get_psd(acpi_handle handle, struct acpi_psd_package *pdomain) in acpi_processor_get_psd() argument
565 state.pointer = pdomain; in acpi_processor_get_psd()
575 if (pdomain->num_entries != ACPI_PSD_REV0_ENTRIES) { in acpi_processor_get_psd()
581 if (pdomain->revision != ACPI_PSD_REV0_REVISION) { in acpi_processor_get_psd()
587 if (pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ALL && in acpi_processor_get_psd()
588 pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ANY && in acpi_processor_get_psd()
589 pdomain->coord_type != DOMAIN_COORD_TYPE_HW_ALL) { in acpi_processor_get_psd()
608 struct acpi_psd_package *pdomain; in acpi_processor_preregister_performance() local
647 pdomain = &(pr->performance->domain_info); in acpi_processor_preregister_performance()
648 if (acpi_processor_get_psd(pr->handle, pdomain)) { in acpi_processor_preregister_performance()
[all …]
Dcppc_acpi.c370 struct acpi_psd_package *pdomain; in acpi_get_psd() local
383 pdomain = &(cpc_ptr->domain_info); in acpi_get_psd()
386 state.pointer = pdomain; in acpi_get_psd()
395 if (pdomain->num_entries != ACPI_PSD_REV0_ENTRIES) { in acpi_get_psd()
400 if (pdomain->revision != ACPI_PSD_REV0_REVISION) { in acpi_get_psd()
405 if (pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ALL && in acpi_get_psd()
406 pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ANY && in acpi_get_psd()
407 pdomain->coord_type != DOMAIN_COORD_TYPE_HW_ALL) { in acpi_get_psd()
431 struct acpi_psd_package *pdomain; in acpi_get_psd_map() local
456 pdomain = &(cpc_ptr->domain_info); in acpi_get_psd_map()
[all …]
Dprocessor_throttling.c75 struct acpi_tsd_package *pdomain, *match_pdomain; in acpi_processor_update_tsd_coord() local
115 pdomain = &(pthrottling->domain_info); in acpi_processor_update_tsd_coord()
122 if (pdomain->num_processors <= 1) in acpi_processor_update_tsd_coord()
126 count_target = pdomain->num_processors; in acpi_processor_update_tsd_coord()
139 if (match_pdomain->domain != pdomain->domain) in acpi_processor_update_tsd_coord()
153 if (pdomain->coord_type != match_pdomain->coord_type) { in acpi_processor_update_tsd_coord()
172 if (match_pdomain->domain != pdomain->domain) in acpi_processor_update_tsd_coord()
591 struct acpi_tsd_package *pdomain; in acpi_processor_get_tsd() local
618 pdomain = &(pr->throttling.domain_info); in acpi_processor_get_tsd()
621 state.pointer = pdomain; in acpi_processor_get_tsd()
[all …]
/Linux-v4.19/drivers/xen/
Dxen-acpi-processor.c169 struct acpi_psd_package *pdomain; in xen_copy_psd_data() local
179 pdomain = &(_pr->performance->domain_info); in xen_copy_psd_data()
184 if (pdomain->num_processors <= 1) { in xen_copy_psd_data()
185 if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ALL) in xen_copy_psd_data()
187 else if (pdomain->coord_type == DOMAIN_COORD_TYPE_HW_ALL) in xen_copy_psd_data()
189 else if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ANY) in xen_copy_psd_data()
193 memcpy(&(dst->domain_info), pdomain, sizeof(struct acpi_psd_package)); in xen_copy_psd_data()
/Linux-v4.19/arch/s390/include/asm/
Dpkey.h109 u16 *pcardnr, u16 *pdomain,
/Linux-v4.19/drivers/iommu/
Damd_iommu.c2876 struct protection_domain *pdomain; in amd_iommu_domain_alloc() local
2881 pdomain = protection_domain_alloc(); in amd_iommu_domain_alloc()
2882 if (!pdomain) in amd_iommu_domain_alloc()
2885 pdomain->mode = PAGE_MODE_3_LEVEL; in amd_iommu_domain_alloc()
2886 pdomain->pt_root = (void *)get_zeroed_page(GFP_KERNEL); in amd_iommu_domain_alloc()
2887 if (!pdomain->pt_root) { in amd_iommu_domain_alloc()
2888 protection_domain_free(pdomain); in amd_iommu_domain_alloc()
2892 pdomain->domain.geometry.aperture_start = 0; in amd_iommu_domain_alloc()
2893 pdomain->domain.geometry.aperture_end = ~0ULL; in amd_iommu_domain_alloc()
2894 pdomain->domain.geometry.force_aperture = true; in amd_iommu_domain_alloc()
[all …]
/Linux-v4.19/drivers/s390/crypto/
Dpkey_api.c894 u16 *pcardnr, u16 *pdomain, int verify) in pkey_findcard() argument
965 if (pdomain) in pkey_findcard()
966 *pdomain = dom; in pkey_findcard()
1011 u16 *pcardnr, u16 *pdomain, in pkey_verifykey() argument
1045 if (pdomain) in pkey_verifykey()
1046 *pdomain = domain; in pkey_verifykey()
/Linux-v4.19/include/acpi/
Dprocessor.h258 struct acpi_psd_package *pdomain);