]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /******************************************************************************* |
2 | * | |
3 | * Module Name: utmisc - common utility procedures | |
4 | * | |
5 | ******************************************************************************/ | |
6 | ||
7 | /* | |
c8100dc4 | 8 | * Copyright (C) 2000 - 2016, Intel Corp. |
1da177e4 LT |
9 | * All rights reserved. |
10 | * | |
11 | * Redistribution and use in source and binary forms, with or without | |
12 | * modification, are permitted provided that the following conditions | |
13 | * are met: | |
14 | * 1. Redistributions of source code must retain the above copyright | |
15 | * notice, this list of conditions, and the following disclaimer, | |
16 | * without modification. | |
17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer | |
18 | * substantially similar to the "NO WARRANTY" disclaimer below | |
19 | * ("Disclaimer") and any redistribution must be conditioned upon | |
20 | * including a substantially similar Disclaimer requirement for further | |
21 | * binary redistribution. | |
22 | * 3. Neither the names of the above-listed copyright holders nor the names | |
23 | * of any contributors may be used to endorse or promote products derived | |
24 | * from this software without specific prior written permission. | |
25 | * | |
26 | * Alternatively, this software may be distributed under the terms of the | |
27 | * GNU General Public License ("GPL") version 2 as published by the Free | |
28 | * Software Foundation. | |
29 | * | |
30 | * NO WARRANTY | |
31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR | |
34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
35 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
36 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
37 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
38 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | |
39 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | |
40 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
41 | * POSSIBILITY OF SUCH DAMAGES. | |
42 | */ | |
43 | ||
1da177e4 | 44 | #include <acpi/acpi.h> |
e2f7a777 LB |
45 | #include "accommon.h" |
46 | #include "acnamesp.h" | |
1da177e4 | 47 | |
1da177e4 | 48 | #define _COMPONENT ACPI_UTILITIES |
4be44fcd | 49 | ACPI_MODULE_NAME("utmisc") |
44f6c012 | 50 | |
15b8dd53 BM |
51 | /******************************************************************************* |
52 | * | |
53 | * FUNCTION: acpi_ut_is_pci_root_bridge | |
54 | * | |
ba494bee | 55 | * PARAMETERS: id - The HID/CID in string format |
15b8dd53 BM |
56 | * |
57 | * RETURN: TRUE if the Id is a match for a PCI/PCI-Express Root Bridge | |
58 | * | |
59 | * DESCRIPTION: Determine if the input ID is a PCI Root Bridge ID. | |
60 | * | |
61 | ******************************************************************************/ | |
15b8dd53 BM |
62 | u8 acpi_ut_is_pci_root_bridge(char *id) |
63 | { | |
64 | ||
65 | /* | |
66 | * Check if this is a PCI root bridge. | |
67 | * ACPI 3.0+: check for a PCI Express root also. | |
68 | */ | |
4fa4616e BM |
69 | if (!(strcmp(id, |
70 | PCI_ROOT_HID_STRING)) || | |
71 | !(strcmp(id, PCI_EXPRESS_ROOT_HID_STRING))) { | |
15b8dd53 BM |
72 | return (TRUE); |
73 | } | |
74 | ||
75 | return (FALSE); | |
76 | } | |
77 | ||
17dd4dcf | 78 | #if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP || defined ACPI_NAMES_APP) |
793c2388 BM |
79 | /******************************************************************************* |
80 | * | |
81 | * FUNCTION: acpi_ut_is_aml_table | |
82 | * | |
ba494bee | 83 | * PARAMETERS: table - An ACPI table |
793c2388 BM |
84 | * |
85 | * RETURN: TRUE if table contains executable AML; FALSE otherwise | |
86 | * | |
87 | * DESCRIPTION: Check ACPI Signature for a table that contains AML code. | |
88 | * Currently, these are DSDT,SSDT,PSDT. All other table types are | |
89 | * data tables that do not contain AML code. | |
90 | * | |
91 | ******************************************************************************/ | |
84fb2c97 | 92 | |
793c2388 BM |
93 | u8 acpi_ut_is_aml_table(struct acpi_table_header *table) |
94 | { | |
95 | ||
f6dd9221 | 96 | /* These are the only tables that contain executable AML */ |
793c2388 | 97 | |
f3d2e786 BM |
98 | if (ACPI_COMPARE_NAME(table->signature, ACPI_SIG_DSDT) || |
99 | ACPI_COMPARE_NAME(table->signature, ACPI_SIG_PSDT) || | |
fe536995 BM |
100 | ACPI_COMPARE_NAME(table->signature, ACPI_SIG_SSDT) || |
101 | ACPI_COMPARE_NAME(table->signature, ACPI_SIG_OSDT)) { | |
793c2388 BM |
102 | return (TRUE); |
103 | } | |
104 | ||
105 | return (FALSE); | |
106 | } | |
6306bf88 | 107 | #endif |
793c2388 | 108 | |
1da177e4 LT |
109 | /******************************************************************************* |
110 | * | |
111 | * FUNCTION: acpi_ut_dword_byte_swap | |
112 | * | |
ba494bee | 113 | * PARAMETERS: value - Value to be converted |
1da177e4 | 114 | * |
44f6c012 RM |
115 | * RETURN: u32 integer with bytes swapped |
116 | * | |
1da177e4 LT |
117 | * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes) |
118 | * | |
119 | ******************************************************************************/ | |
120 | ||
4be44fcd | 121 | u32 acpi_ut_dword_byte_swap(u32 value) |
1da177e4 LT |
122 | { |
123 | union { | |
4be44fcd LB |
124 | u32 value; |
125 | u8 bytes[4]; | |
1da177e4 | 126 | } out; |
1da177e4 | 127 | union { |
4be44fcd LB |
128 | u32 value; |
129 | u8 bytes[4]; | |
1da177e4 LT |
130 | } in; |
131 | ||
4be44fcd | 132 | ACPI_FUNCTION_ENTRY(); |
1da177e4 LT |
133 | |
134 | in.value = value; | |
135 | ||
136 | out.bytes[0] = in.bytes[3]; | |
137 | out.bytes[1] = in.bytes[2]; | |
138 | out.bytes[2] = in.bytes[1]; | |
139 | out.bytes[3] = in.bytes[0]; | |
140 | ||
141 | return (out.value); | |
142 | } | |
143 | ||
1da177e4 LT |
144 | /******************************************************************************* |
145 | * | |
146 | * FUNCTION: acpi_ut_set_integer_width | |
147 | * | |
148 | * PARAMETERS: Revision From DSDT header | |
149 | * | |
150 | * RETURN: None | |
151 | * | |
152 | * DESCRIPTION: Set the global integer bit width based upon the revision | |
73a3090a BM |
153 | * of the DSDT. For Revision 1 and 0, Integers are 32 bits. |
154 | * For Revision 2 and above, Integers are 64 bits. Yes, this | |
1da177e4 LT |
155 | * makes a difference. |
156 | * | |
157 | ******************************************************************************/ | |
158 | ||
4be44fcd | 159 | void acpi_ut_set_integer_width(u8 revision) |
1da177e4 LT |
160 | { |
161 | ||
f3d2e786 | 162 | if (revision < 2) { |
f6dd9221 BM |
163 | |
164 | /* 32-bit case */ | |
165 | ||
1da177e4 LT |
166 | acpi_gbl_integer_bit_width = 32; |
167 | acpi_gbl_integer_nybble_width = 8; | |
168 | acpi_gbl_integer_byte_width = 4; | |
4be44fcd | 169 | } else { |
f6dd9221 BM |
170 | /* 64-bit case (ACPI 2.0+) */ |
171 | ||
1da177e4 LT |
172 | acpi_gbl_integer_bit_width = 64; |
173 | acpi_gbl_integer_nybble_width = 16; | |
174 | acpi_gbl_integer_byte_width = 8; | |
175 | } | |
176 | } | |
177 | ||
1da177e4 LT |
178 | /******************************************************************************* |
179 | * | |
180 | * FUNCTION: acpi_ut_create_update_state_and_push | |
181 | * | |
ba494bee BM |
182 | * PARAMETERS: object - Object to be added to the new state |
183 | * action - Increment/Decrement | |
1da177e4 LT |
184 | * state_list - List the state will be added to |
185 | * | |
44f6c012 | 186 | * RETURN: Status |
1da177e4 LT |
187 | * |
188 | * DESCRIPTION: Create a new state and push it | |
189 | * | |
190 | ******************************************************************************/ | |
191 | ||
192 | acpi_status | |
4be44fcd LB |
193 | acpi_ut_create_update_state_and_push(union acpi_operand_object *object, |
194 | u16 action, | |
195 | union acpi_generic_state **state_list) | |
1da177e4 | 196 | { |
4be44fcd | 197 | union acpi_generic_state *state; |
1da177e4 | 198 | |
4be44fcd | 199 | ACPI_FUNCTION_ENTRY(); |
1da177e4 LT |
200 | |
201 | /* Ignore null objects; these are expected */ | |
202 | ||
203 | if (!object) { | |
204 | return (AE_OK); | |
205 | } | |
206 | ||
4be44fcd | 207 | state = acpi_ut_create_update_state(object, action); |
1da177e4 LT |
208 | if (!state) { |
209 | return (AE_NO_MEMORY); | |
210 | } | |
211 | ||
4be44fcd | 212 | acpi_ut_push_generic_state(state_list, state); |
1da177e4 LT |
213 | return (AE_OK); |
214 | } | |
215 | ||
1da177e4 LT |
216 | /******************************************************************************* |
217 | * | |
218 | * FUNCTION: acpi_ut_walk_package_tree | |
219 | * | |
44f6c012 RM |
220 | * PARAMETERS: source_object - The package to walk |
221 | * target_object - Target object (if package is being copied) | |
222 | * walk_callback - Called once for each package element | |
ba494bee | 223 | * context - Passed to the callback function |
1da177e4 LT |
224 | * |
225 | * RETURN: Status | |
226 | * | |
227 | * DESCRIPTION: Walk through a package | |
228 | * | |
229 | ******************************************************************************/ | |
230 | ||
231 | acpi_status | |
6d33b6be | 232 | acpi_ut_walk_package_tree(union acpi_operand_object *source_object, |
4be44fcd LB |
233 | void *target_object, |
234 | acpi_pkg_callback walk_callback, void *context) | |
1da177e4 | 235 | { |
4be44fcd LB |
236 | acpi_status status = AE_OK; |
237 | union acpi_generic_state *state_list = NULL; | |
238 | union acpi_generic_state *state; | |
239 | u32 this_index; | |
240 | union acpi_operand_object *this_source_obj; | |
1da177e4 | 241 | |
b229cf92 | 242 | ACPI_FUNCTION_TRACE(ut_walk_package_tree); |
1da177e4 | 243 | |
4be44fcd | 244 | state = acpi_ut_create_pkg_state(source_object, target_object, 0); |
1da177e4 | 245 | if (!state) { |
4be44fcd | 246 | return_ACPI_STATUS(AE_NO_MEMORY); |
1da177e4 LT |
247 | } |
248 | ||
249 | while (state) { | |
52fc0b02 | 250 | |
1da177e4 LT |
251 | /* Get one element of the package */ |
252 | ||
4be44fcd | 253 | this_index = state->pkg.index; |
1da177e4 | 254 | this_source_obj = (union acpi_operand_object *) |
4be44fcd | 255 | state->pkg.source_object->package.elements[this_index]; |
1da177e4 LT |
256 | |
257 | /* | |
258 | * Check for: | |
73a3090a | 259 | * 1) An uninitialized package element. It is completely |
1da177e4 LT |
260 | * legal to declare a package and leave it uninitialized |
261 | * 2) Not an internal object - can be a namespace node instead | |
73a3090a | 262 | * 3) Any type other than a package. Packages are handled in else |
1da177e4 LT |
263 | * case below. |
264 | */ | |
265 | if ((!this_source_obj) || | |
4be44fcd | 266 | (ACPI_GET_DESCRIPTOR_TYPE(this_source_obj) != |
1fad8738 BM |
267 | ACPI_DESC_TYPE_OPERAND) || |
268 | (this_source_obj->common.type != ACPI_TYPE_PACKAGE)) { | |
4be44fcd LB |
269 | status = |
270 | walk_callback(ACPI_COPY_TYPE_SIMPLE, | |
271 | this_source_obj, state, context); | |
272 | if (ACPI_FAILURE(status)) { | |
273 | return_ACPI_STATUS(status); | |
1da177e4 LT |
274 | } |
275 | ||
276 | state->pkg.index++; | |
4be44fcd LB |
277 | while (state->pkg.index >= |
278 | state->pkg.source_object->package.count) { | |
1da177e4 LT |
279 | /* |
280 | * We've handled all of the objects at this level, This means | |
73a3090a | 281 | * that we have just completed a package. That package may |
1da177e4 LT |
282 | * have contained one or more packages itself. |
283 | * | |
284 | * Delete this state and pop the previous state (package). | |
285 | */ | |
4be44fcd LB |
286 | acpi_ut_delete_generic_state(state); |
287 | state = acpi_ut_pop_generic_state(&state_list); | |
1da177e4 LT |
288 | |
289 | /* Finished when there are no more states */ | |
290 | ||
291 | if (!state) { | |
292 | /* | |
293 | * We have handled all of the objects in the top level | |
294 | * package just add the length of the package objects | |
295 | * and exit | |
296 | */ | |
4be44fcd | 297 | return_ACPI_STATUS(AE_OK); |
1da177e4 LT |
298 | } |
299 | ||
300 | /* | |
301 | * Go back up a level and move the index past the just | |
302 | * completed package object. | |
303 | */ | |
304 | state->pkg.index++; | |
305 | } | |
4be44fcd | 306 | } else { |
1da177e4 LT |
307 | /* This is a subobject of type package */ |
308 | ||
4be44fcd LB |
309 | status = |
310 | walk_callback(ACPI_COPY_TYPE_PACKAGE, | |
311 | this_source_obj, state, context); | |
312 | if (ACPI_FAILURE(status)) { | |
313 | return_ACPI_STATUS(status); | |
1da177e4 LT |
314 | } |
315 | ||
316 | /* | |
317 | * Push the current state and create a new one | |
318 | * The callback above returned a new target package object. | |
319 | */ | |
4be44fcd | 320 | acpi_ut_push_generic_state(&state_list, state); |
1fad8738 BM |
321 | state = |
322 | acpi_ut_create_pkg_state(this_source_obj, | |
323 | state->pkg.this_target_obj, | |
324 | 0); | |
1da177e4 | 325 | if (!state) { |
cf058bd1 LM |
326 | |
327 | /* Free any stacked Update State objects */ | |
328 | ||
329 | while (state_list) { | |
330 | state = | |
331 | acpi_ut_pop_generic_state | |
332 | (&state_list); | |
333 | acpi_ut_delete_generic_state(state); | |
334 | } | |
4be44fcd | 335 | return_ACPI_STATUS(AE_NO_MEMORY); |
1da177e4 LT |
336 | } |
337 | } | |
338 | } | |
339 | ||
340 | /* We should never get here */ | |
341 | ||
4be44fcd | 342 | return_ACPI_STATUS(AE_AML_INTERNAL); |
1da177e4 | 343 | } |
42f8fb75 BM |
344 | |
345 | #ifdef ACPI_DEBUG_OUTPUT | |
346 | /******************************************************************************* | |
347 | * | |
348 | * FUNCTION: acpi_ut_display_init_pathname | |
349 | * | |
350 | * PARAMETERS: type - Object type of the node | |
351 | * obj_handle - Handle whose pathname will be displayed | |
352 | * path - Additional path string to be appended. | |
353 | * (NULL if no extra path) | |
354 | * | |
355 | * RETURN: acpi_status | |
356 | * | |
357 | * DESCRIPTION: Display full pathname of an object, DEBUG ONLY | |
358 | * | |
359 | ******************************************************************************/ | |
360 | ||
361 | void | |
362 | acpi_ut_display_init_pathname(u8 type, | |
363 | struct acpi_namespace_node *obj_handle, | |
364 | char *path) | |
365 | { | |
366 | acpi_status status; | |
367 | struct acpi_buffer buffer; | |
368 | ||
369 | ACPI_FUNCTION_ENTRY(); | |
370 | ||
371 | /* Only print the path if the appropriate debug level is enabled */ | |
372 | ||
373 | if (!(acpi_dbg_level & ACPI_LV_INIT_NAMES)) { | |
374 | return; | |
375 | } | |
376 | ||
377 | /* Get the full pathname to the node */ | |
378 | ||
379 | buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER; | |
2e5321cb | 380 | status = acpi_ns_handle_to_pathname(obj_handle, &buffer, TRUE); |
42f8fb75 BM |
381 | if (ACPI_FAILURE(status)) { |
382 | return; | |
383 | } | |
384 | ||
385 | /* Print what we're doing */ | |
386 | ||
387 | switch (type) { | |
388 | case ACPI_TYPE_METHOD: | |
1d1ea1b7 | 389 | |
42f8fb75 BM |
390 | acpi_os_printf("Executing "); |
391 | break; | |
392 | ||
393 | default: | |
1d1ea1b7 | 394 | |
42f8fb75 BM |
395 | acpi_os_printf("Initializing "); |
396 | break; | |
397 | } | |
398 | ||
399 | /* Print the object type and pathname */ | |
400 | ||
401 | acpi_os_printf("%-12s %s", | |
402 | acpi_ut_get_type_name(type), (char *)buffer.pointer); | |
403 | ||
404 | /* Extra path is used to append names like _STA, _INI, etc. */ | |
405 | ||
406 | if (path) { | |
407 | acpi_os_printf(".%s", path); | |
408 | } | |
409 | acpi_os_printf("\n"); | |
410 | ||
411 | ACPI_FREE(buffer.pointer); | |
412 | } | |
413 | #endif |