Lines Matching +full:locality +full:- +full:specific
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
4 * Module Name: utdecode - Utility decoding routines (value-to-string)
6 * Copyright (C) 2000 - 2020, Intel Corp.
60 * PARAMETERS: Space ID - ID for the region
105 * PARAMETERS: event_id - Fixed event ID
137 * PARAMETERS: type - An ACPI object type
147 * one-to-one with values of acpi_object_type
224 return_STR(acpi_ut_get_type_name(obj_desc->common.type)); in acpi_ut_get_object_type_name()
231 * PARAMETERS: object - A namespace node
265 acpi_ut_repair_name(node->name.ascii); in acpi_ut_get_node_name()
269 return (node->name.ascii); in acpi_ut_get_node_name()
276 * PARAMETERS: object - An ACPI object
289 /* 02 */ "State-Generic",
290 /* 03 */ "State-Update",
291 /* 04 */ "State-Package",
292 /* 05 */ "State-Control",
293 /* 06 */ "State-RootParseScope",
294 /* 07 */ "State-ParseScope",
295 /* 08 */ "State-WalkScope",
296 /* 09 */ "State-Result",
297 /* 10 */ "State-Notify",
298 /* 11 */ "State-Thread",
323 * PARAMETERS: object - An ACPI reference object
327 * DESCRIPTION: Decode a reference object sub-type to a string.
331 /* Printable names of reference object sub-types */
354 if (object->common.type != ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ut_get_reference_name()
358 if (object->reference.class > ACPI_REFCLASS_MAX) { in acpi_ut_get_reference_name()
362 return (acpi_gbl_ref_class_names[object->reference.class]); in acpi_ut_get_reference_name()
369 * PARAMETERS: mutex_id - The predefined ID for this mutex.
408 * PARAMETERS: notify_value - Value from the Notify() request
430 /* 0B */ "System Locality Update",
443 /* 82 */ "Device-Specific Change",
444 /* 83 */ "Device-Specific Change",
450 /* 81 */ "C-State Change",
467 /* 00 - 0F are "common to all object types" (from ACPI Spec) */ in acpi_ut_get_notify_name()
473 /* 10 - 7F are reserved */ in acpi_ut_get_notify_name()
479 /* 80 - 84 are per-object-type */ in acpi_ut_get_notify_name()
485 return (acpi_gbl_device_notify[notify_value - 0x80]); in acpi_ut_get_notify_name()
488 return (acpi_gbl_processor_notify[notify_value - 0x80]); in acpi_ut_get_notify_name()
491 return (acpi_gbl_thermal_notify[notify_value - 0x80]); in acpi_ut_get_notify_name()
498 /* 84 - BF are device-specific */ in acpi_ut_get_notify_name()
501 return ("Device-Specific"); in acpi_ut_get_notify_name()
504 /* C0 and above are hardware-specific */ in acpi_ut_get_notify_name()
506 return ("Hardware-Specific"); in acpi_ut_get_notify_name()
513 * PARAMETERS: arg_type - an ARGP_* parser argument type
562 * PARAMETERS: type - Object type to be validated