Lines Matching full:guid

55 	efi_guid_t guid;  member
64 guid_t guid; member
75 static u64 efi_pa_va_lookup(efi_guid_t *guid, u64 pa) in efi_pa_va_lookup() argument
113 guid_copy(&tm->guid, (guid_t *) module_info->module_guid); in acpi_parse_prmt()
152 guid_copy(&th->guid, (guid_t *)handler_info->handler_guid); in acpi_parse_prmt()
159 pr_info("Skipping handler with NULL address for GUID: %pUL", in acpi_parse_prmt()
165 (void *)efi_pa_va_lookup(&th->guid, handler_info->handler_address); in acpi_parse_prmt()
171 pr_warn("Failed to find VA of handler for GUID: %pUL, PA: 0x%llx", in acpi_parse_prmt()
172 &th->guid, handler_info->handler_address); in acpi_parse_prmt()
177 efi_pa_va_lookup(&th->guid, handler_info->static_data_buffer_address); in acpi_parse_prmt()
184 pr_warn("Failed to find VA of static data buffer for GUID: %pUL, PA: 0x%llx", in acpi_parse_prmt()
185 &th->guid, handler_info->static_data_buffer_address); in acpi_parse_prmt()
188 efi_pa_va_lookup(&th->guid, handler_info->acpi_param_buffer_address); in acpi_parse_prmt()
196 pr_warn("Failed to find VA of acpi param buffer for GUID: %pUL, PA: 0x%llx", in acpi_parse_prmt()
197 &th->guid, handler_info->acpi_param_buffer_address); in acpi_parse_prmt()
216 static void *find_guid_info(const guid_t *guid, u8 mode) in find_guid_info() argument
225 if (guid_equal(guid, &cur_handler->guid)) { in find_guid_info()
237 static struct prm_module_info *find_prm_module(const guid_t *guid) in find_prm_module() argument
239 return (struct prm_module_info *)find_guid_info(guid, GET_MODULE); in find_prm_module()
242 static struct prm_handler_info *find_prm_handler(const guid_t *guid) in find_prm_handler() argument
244 return (struct prm_handler_info *) find_guid_info(guid, GET_HANDLER); in find_prm_handler()
274 context.identifier = handler->guid; in acpi_call_prm_handler()
333 context.identifier = handler->guid; in acpi_platformrt_space_handler()