1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /*******************************************************************************
4 * Module Name: utmisc - common utility procedures
6 ******************************************************************************/
12 #define _COMPONENT ACPI_UTILITIES
13 ACPI_MODULE_NAME("utmisc")
15 /*******************************************************************************
17 * FUNCTION: acpi_ut_is_pci_root_bridge
19 * PARAMETERS: id - The HID/CID in string format
21 * RETURN: TRUE if the Id is a match for a PCI/PCI-Express Root Bridge
23 * DESCRIPTION: Determine if the input ID is a PCI Root Bridge ID.
25 ******************************************************************************/
26 u8
acpi_ut_is_pci_root_bridge(char *id
)
30 * Check if this is a PCI root bridge.
31 * ACPI 3.0+: check for a PCI Express root also.
34 PCI_ROOT_HID_STRING
)) ||
35 !(strcmp(id
, PCI_EXPRESS_ROOT_HID_STRING
))) {
42 #if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP || defined ACPI_NAMES_APP)
43 /*******************************************************************************
45 * FUNCTION: acpi_ut_is_aml_table
47 * PARAMETERS: table - An ACPI table
49 * RETURN: TRUE if table contains executable AML; FALSE otherwise
51 * DESCRIPTION: Check ACPI Signature for a table that contains AML code.
52 * Currently, these are DSDT,SSDT,PSDT. All other table types are
53 * data tables that do not contain AML code.
55 ******************************************************************************/
57 u8
acpi_ut_is_aml_table(struct acpi_table_header
*table
)
60 /* These are the only tables that contain executable AML */
62 if (ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_DSDT
) ||
63 ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_PSDT
) ||
64 ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_SSDT
) ||
65 ACPI_COMPARE_NAME(table
->signature
, ACPI_SIG_OSDT
)) {
73 /*******************************************************************************
75 * FUNCTION: acpi_ut_dword_byte_swap
77 * PARAMETERS: value - Value to be converted
79 * RETURN: u32 integer with bytes swapped
81 * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes)
83 ******************************************************************************/
85 u32
acpi_ut_dword_byte_swap(u32 value
)
96 ACPI_FUNCTION_ENTRY();
100 out
.bytes
[0] = in
.bytes
[3];
101 out
.bytes
[1] = in
.bytes
[2];
102 out
.bytes
[2] = in
.bytes
[1];
103 out
.bytes
[3] = in
.bytes
[0];
108 /*******************************************************************************
110 * FUNCTION: acpi_ut_set_integer_width
112 * PARAMETERS: Revision From DSDT header
116 * DESCRIPTION: Set the global integer bit width based upon the revision
117 * of the DSDT. For Revision 1 and 0, Integers are 32 bits.
118 * For Revision 2 and above, Integers are 64 bits. Yes, this
119 * makes a difference.
121 ******************************************************************************/
123 void acpi_ut_set_integer_width(u8 revision
)
130 acpi_gbl_integer_bit_width
= 32;
131 acpi_gbl_integer_nybble_width
= 8;
132 acpi_gbl_integer_byte_width
= 4;
134 /* 64-bit case (ACPI 2.0+) */
136 acpi_gbl_integer_bit_width
= 64;
137 acpi_gbl_integer_nybble_width
= 16;
138 acpi_gbl_integer_byte_width
= 8;
142 /*******************************************************************************
144 * FUNCTION: acpi_ut_create_update_state_and_push
146 * PARAMETERS: object - Object to be added to the new state
147 * action - Increment/Decrement
148 * state_list - List the state will be added to
152 * DESCRIPTION: Create a new state and push it
154 ******************************************************************************/
157 acpi_ut_create_update_state_and_push(union acpi_operand_object
*object
,
159 union acpi_generic_state
**state_list
)
161 union acpi_generic_state
*state
;
163 ACPI_FUNCTION_ENTRY();
165 /* Ignore null objects; these are expected */
171 state
= acpi_ut_create_update_state(object
, action
);
173 return (AE_NO_MEMORY
);
176 acpi_ut_push_generic_state(state_list
, state
);
180 /*******************************************************************************
182 * FUNCTION: acpi_ut_walk_package_tree
184 * PARAMETERS: source_object - The package to walk
185 * target_object - Target object (if package is being copied)
186 * walk_callback - Called once for each package element
187 * context - Passed to the callback function
191 * DESCRIPTION: Walk through a package, including subpackages
193 ******************************************************************************/
196 acpi_ut_walk_package_tree(union acpi_operand_object
*source_object
,
198 acpi_pkg_callback walk_callback
, void *context
)
200 acpi_status status
= AE_OK
;
201 union acpi_generic_state
*state_list
= NULL
;
202 union acpi_generic_state
*state
;
203 union acpi_operand_object
*this_source_obj
;
206 ACPI_FUNCTION_TRACE(ut_walk_package_tree
);
208 state
= acpi_ut_create_pkg_state(source_object
, target_object
, 0);
210 return_ACPI_STATUS(AE_NO_MEMORY
);
215 /* Get one element of the package */
217 this_index
= state
->pkg
.index
;
219 state
->pkg
.source_object
->package
.elements
[this_index
];
220 state
->pkg
.this_target_obj
=
221 &state
->pkg
.source_object
->package
.elements
[this_index
];
225 * 1) An uninitialized package element. It is completely
226 * legal to declare a package and leave it uninitialized
227 * 2) Not an internal object - can be a namespace node instead
228 * 3) Any type other than a package. Packages are handled in else
231 if ((!this_source_obj
) ||
232 (ACPI_GET_DESCRIPTOR_TYPE(this_source_obj
) !=
233 ACPI_DESC_TYPE_OPERAND
) ||
234 (this_source_obj
->common
.type
!= ACPI_TYPE_PACKAGE
)) {
236 walk_callback(ACPI_COPY_TYPE_SIMPLE
,
237 this_source_obj
, state
, context
);
238 if (ACPI_FAILURE(status
)) {
239 return_ACPI_STATUS(status
);
243 while (state
->pkg
.index
>=
244 state
->pkg
.source_object
->package
.count
) {
246 * We've handled all of the objects at this level, This means
247 * that we have just completed a package. That package may
248 * have contained one or more packages itself.
250 * Delete this state and pop the previous state (package).
252 acpi_ut_delete_generic_state(state
);
253 state
= acpi_ut_pop_generic_state(&state_list
);
255 /* Finished when there are no more states */
259 * We have handled all of the objects in the top level
260 * package just add the length of the package objects
263 return_ACPI_STATUS(AE_OK
);
267 * Go back up a level and move the index past the just
268 * completed package object.
273 /* This is a subobject of type package */
276 walk_callback(ACPI_COPY_TYPE_PACKAGE
,
277 this_source_obj
, state
, context
);
278 if (ACPI_FAILURE(status
)) {
279 return_ACPI_STATUS(status
);
283 * Push the current state and create a new one
284 * The callback above returned a new target package object.
286 acpi_ut_push_generic_state(&state_list
, state
);
288 acpi_ut_create_pkg_state(this_source_obj
,
289 state
->pkg
.this_target_obj
,
293 /* Free any stacked Update State objects */
297 acpi_ut_pop_generic_state
299 acpi_ut_delete_generic_state(state
);
301 return_ACPI_STATUS(AE_NO_MEMORY
);
306 /* We should never get here */
308 ACPI_ERROR((AE_INFO
, "State list did not terminate correctly"));
310 return_ACPI_STATUS(AE_AML_INTERNAL
);
313 #ifdef ACPI_DEBUG_OUTPUT
314 /*******************************************************************************
316 * FUNCTION: acpi_ut_display_init_pathname
318 * PARAMETERS: type - Object type of the node
319 * obj_handle - Handle whose pathname will be displayed
320 * path - Additional path string to be appended.
321 * (NULL if no extra path)
323 * RETURN: acpi_status
325 * DESCRIPTION: Display full pathname of an object, DEBUG ONLY
327 ******************************************************************************/
330 acpi_ut_display_init_pathname(u8 type
,
331 struct acpi_namespace_node
*obj_handle
,
335 struct acpi_buffer buffer
;
337 ACPI_FUNCTION_ENTRY();
339 /* Only print the path if the appropriate debug level is enabled */
341 if (!(acpi_dbg_level
& ACPI_LV_INIT_NAMES
)) {
345 /* Get the full pathname to the node */
347 buffer
.length
= ACPI_ALLOCATE_LOCAL_BUFFER
;
348 status
= acpi_ns_handle_to_pathname(obj_handle
, &buffer
, TRUE
);
349 if (ACPI_FAILURE(status
)) {
353 /* Print what we're doing */
356 case ACPI_TYPE_METHOD
:
358 acpi_os_printf("Executing ");
363 acpi_os_printf("Initializing ");
367 /* Print the object type and pathname */
369 acpi_os_printf("%-12s %s",
370 acpi_ut_get_type_name(type
), (char *)buffer
.pointer
);
372 /* Extra path is used to append names like _STA, _INI, etc. */
375 acpi_os_printf(".%s", path
);
377 acpi_os_printf("\n");
379 ACPI_FREE(buffer
.pointer
);