]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/acpica/nsutils.c
Merge branches 'for-4.11/upstream-fixes', 'for-4.12/accutouch', 'for-4.12/cp2112...
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / acpica / nsutils.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: nsutils - Utilities for accessing ACPI namespace, accessing
4 * parents and siblings and Scope manipulation
5 *
6 *****************************************************************************/
7
8/*
7735ca0e 9 * Copyright (C) 2000 - 2017, Intel Corp.
1da177e4
LT
10 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
1da177e4 45#include <acpi/acpi.h>
e2f7a777
LB
46#include "accommon.h"
47#include "acnamesp.h"
48#include "amlcode.h"
1da177e4
LT
49
50#define _COMPONENT ACPI_NAMESPACE
4be44fcd 51ACPI_MODULE_NAME("nsutils")
1da177e4 52
44f6c012 53/* Local prototypes */
44f6c012 54#ifdef ACPI_OBSOLETE_FUNCTIONS
4be44fcd 55acpi_name acpi_ns_find_parent_name(struct acpi_namespace_node *node_to_search);
44f6c012
RM
56#endif
57
1da177e4
LT
58/*******************************************************************************
59 *
60 * FUNCTION: acpi_ns_print_node_pathname
61 *
ba494bee
BM
62 * PARAMETERS: node - Object
63 * message - Prefix message
1da177e4
LT
64 *
65 * DESCRIPTION: Print an object's full namespace pathname
66 * Manages allocation/freeing of a pathname buffer
67 *
68 ******************************************************************************/
69
70void
4b8ed631
BM
71acpi_ns_print_node_pathname(struct acpi_namespace_node *node,
72 const char *message)
1da177e4 73{
4be44fcd
LB
74 struct acpi_buffer buffer;
75 acpi_status status;
1da177e4
LT
76
77 if (!node) {
4be44fcd 78 acpi_os_printf("[NULL NAME]");
1da177e4
LT
79 return;
80 }
81
82 /* Convert handle to full pathname and print it (with supplied message) */
83
84 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
85
2e5321cb 86 status = acpi_ns_handle_to_pathname(node, &buffer, TRUE);
4be44fcd 87 if (ACPI_SUCCESS(status)) {
44f6c012 88 if (message) {
4be44fcd 89 acpi_os_printf("%s ", message);
1da177e4
LT
90 }
91
4be44fcd 92 acpi_os_printf("[%s] (Node %p)", (char *)buffer.pointer, node);
8313524a 93 ACPI_FREE(buffer.pointer);
1da177e4
LT
94 }
95}
96
1da177e4
LT
97/*******************************************************************************
98 *
99 * FUNCTION: acpi_ns_get_type
100 *
ba494bee 101 * PARAMETERS: node - Parent Node to be examined
1da177e4
LT
102 *
103 * RETURN: Type field from Node whose handle is passed
104 *
44f6c012
RM
105 * DESCRIPTION: Return the type of a Namespace node
106 *
1da177e4
LT
107 ******************************************************************************/
108
4be44fcd 109acpi_object_type acpi_ns_get_type(struct acpi_namespace_node * node)
1da177e4 110{
b229cf92 111 ACPI_FUNCTION_TRACE(ns_get_type);
1da177e4
LT
112
113 if (!node) {
b8e4d893 114 ACPI_WARNING((AE_INFO, "Null Node parameter"));
fd1af712 115 return_UINT8(ACPI_TYPE_ANY);
1da177e4
LT
116 }
117
fd1af712 118 return_UINT8(node->type);
1da177e4
LT
119}
120
1da177e4
LT
121/*******************************************************************************
122 *
123 * FUNCTION: acpi_ns_local
124 *
ba494bee 125 * PARAMETERS: type - A namespace object type
1da177e4
LT
126 *
127 * RETURN: LOCAL if names must be found locally in objects of the
128 * passed type, 0 if enclosing scopes should be searched
129 *
44f6c012
RM
130 * DESCRIPTION: Returns scope rule for the given object type.
131 *
1da177e4
LT
132 ******************************************************************************/
133
4be44fcd 134u32 acpi_ns_local(acpi_object_type type)
1da177e4 135{
b229cf92 136 ACPI_FUNCTION_TRACE(ns_local);
1da177e4 137
4be44fcd 138 if (!acpi_ut_valid_object_type(type)) {
52fc0b02 139
1da177e4
LT
140 /* Type code out of range */
141
f6a22b0b 142 ACPI_WARNING((AE_INFO, "Invalid Object Type 0x%X", type));
fd1af712 143 return_UINT32(ACPI_NS_NORMAL);
1da177e4
LT
144 }
145
fd1af712 146 return_UINT32(acpi_gbl_ns_properties[type] & ACPI_NS_LOCAL);
1da177e4
LT
147}
148
1da177e4
LT
149/*******************************************************************************
150 *
151 * FUNCTION: acpi_ns_get_internal_name_length
152 *
ba494bee 153 * PARAMETERS: info - Info struct initialized with the
1da177e4
LT
154 * external name pointer.
155 *
44f6c012 156 * RETURN: None
1da177e4
LT
157 *
158 * DESCRIPTION: Calculate the length of the internal (AML) namestring
159 * corresponding to the external (ASL) namestring.
160 *
161 ******************************************************************************/
162
4be44fcd 163void acpi_ns_get_internal_name_length(struct acpi_namestring_info *info)
1da177e4 164{
4b8ed631 165 const char *next_external_char;
4be44fcd 166 u32 i;
1da177e4 167
4be44fcd 168 ACPI_FUNCTION_ENTRY();
1da177e4
LT
169
170 next_external_char = info->external_name;
171 info->num_carats = 0;
172 info->num_segments = 0;
173 info->fully_qualified = FALSE;
174
175 /*
1fad8738
BM
176 * For the internal name, the required length is 4 bytes per segment,
177 * plus 1 each for root_prefix, multi_name_prefix_op, segment count,
178 * trailing null (which is not really needed, but no there's harm in
179 * putting it there)
1da177e4
LT
180 *
181 * strlen() + 1 covers the first name_seg, which has no path separator
182 */
04a81dce 183 if (ACPI_IS_ROOT_PREFIX(*next_external_char)) {
1da177e4
LT
184 info->fully_qualified = TRUE;
185 next_external_char++;
d037c5fd
LM
186
187 /* Skip redundant root_prefix, like \\_SB.PCI0.SBRG.EC0 */
188
04a81dce 189 while (ACPI_IS_ROOT_PREFIX(*next_external_char)) {
d037c5fd
LM
190 next_external_char++;
191 }
4be44fcd 192 } else {
d4913dc6
BM
193 /* Handle Carat prefixes */
194
04a81dce 195 while (ACPI_IS_PARENT_PREFIX(*next_external_char)) {
1da177e4
LT
196 info->num_carats++;
197 next_external_char++;
198 }
199 }
200
201 /*
202 * Determine the number of ACPI name "segments" by counting the number of
203 * path separators within the string. Start with one segment since the
204 * segment count is [(# separators) + 1], and zero separators is ok.
205 */
206 if (*next_external_char) {
207 info->num_segments = 1;
208 for (i = 0; next_external_char[i]; i++) {
04a81dce 209 if (ACPI_IS_PATH_SEPARATOR(next_external_char[i])) {
1da177e4
LT
210 info->num_segments++;
211 }
212 }
213 }
214
215 info->length = (ACPI_NAME_SIZE * info->num_segments) +
4be44fcd 216 4 + info->num_carats;
1da177e4
LT
217
218 info->next_external_char = next_external_char;
219}
220
1da177e4
LT
221/*******************************************************************************
222 *
223 * FUNCTION: acpi_ns_build_internal_name
224 *
ba494bee 225 * PARAMETERS: info - Info struct fully initialized
1da177e4
LT
226 *
227 * RETURN: Status
228 *
229 * DESCRIPTION: Construct the internal (AML) namestring
230 * corresponding to the external (ASL) namestring.
231 *
232 ******************************************************************************/
233
4be44fcd 234acpi_status acpi_ns_build_internal_name(struct acpi_namestring_info *info)
1da177e4 235{
4be44fcd
LB
236 u32 num_segments = info->num_segments;
237 char *internal_name = info->internal_name;
4b8ed631 238 const char *external_name = info->next_external_char;
4be44fcd 239 char *result = NULL;
67a119f9 240 u32 i;
1da177e4 241
b229cf92 242 ACPI_FUNCTION_TRACE(ns_build_internal_name);
1da177e4
LT
243
244 /* Setup the correct prefixes, counts, and pointers */
245
246 if (info->fully_qualified) {
04a81dce 247 internal_name[0] = AML_ROOT_PREFIX;
1da177e4
LT
248
249 if (num_segments <= 1) {
250 result = &internal_name[1];
4be44fcd 251 } else if (num_segments == 2) {
1da177e4
LT
252 internal_name[1] = AML_DUAL_NAME_PREFIX;
253 result = &internal_name[2];
4be44fcd 254 } else {
1da177e4 255 internal_name[1] = AML_MULTI_NAME_PREFIX_OP;
4be44fcd 256 internal_name[2] = (char)num_segments;
1da177e4
LT
257 result = &internal_name[3];
258 }
4be44fcd 259 } else {
1da177e4
LT
260 /*
261 * Not fully qualified.
262 * Handle Carats first, then append the name segments
263 */
264 i = 0;
265 if (info->num_carats) {
266 for (i = 0; i < info->num_carats; i++) {
04a81dce 267 internal_name[i] = AML_PARENT_PREFIX;
1da177e4
LT
268 }
269 }
270
271 if (num_segments <= 1) {
272 result = &internal_name[i];
4be44fcd 273 } else if (num_segments == 2) {
1da177e4 274 internal_name[i] = AML_DUAL_NAME_PREFIX;
f5c1e1c5 275 result = &internal_name[(acpi_size)i + 1];
4be44fcd 276 } else {
1da177e4 277 internal_name[i] = AML_MULTI_NAME_PREFIX_OP;
f5c1e1c5
LZ
278 internal_name[(acpi_size)i + 1] = (char)num_segments;
279 result = &internal_name[(acpi_size)i + 2];
1da177e4
LT
280 }
281 }
282
283 /* Build the name (minus path separators) */
284
285 for (; num_segments; num_segments--) {
286 for (i = 0; i < ACPI_NAME_SIZE; i++) {
04a81dce 287 if (ACPI_IS_PATH_SEPARATOR(*external_name) ||
4be44fcd 288 (*external_name == 0)) {
52fc0b02 289
1da177e4
LT
290 /* Pad the segment with underscore(s) if segment is short */
291
292 result[i] = '_';
4be44fcd 293 } else {
1da177e4
LT
294 /* Convert the character to uppercase and save it */
295
4fa4616e 296 result[i] = (char)toupper((int)*external_name);
1da177e4
LT
297 external_name++;
298 }
299 }
300
301 /* Now we must have a path separator, or the pathname is bad */
302
04a81dce 303 if (!ACPI_IS_PATH_SEPARATOR(*external_name) &&
4be44fcd 304 (*external_name != 0)) {
a1acd22f 305 return_ACPI_STATUS(AE_BAD_PATHNAME);
1da177e4
LT
306 }
307
308 /* Move on the next segment */
309
310 external_name++;
311 result += ACPI_NAME_SIZE;
312 }
313
314 /* Terminate the string */
315
316 *result = 0;
317
318 if (info->fully_qualified) {
4be44fcd
LB
319 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
320 "Returning [%p] (abs) \"\\%s\"\n",
321 internal_name, internal_name));
322 } else {
323 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Returning [%p] (rel) \"%s\"\n",
324 internal_name, internal_name));
1da177e4
LT
325 }
326
4be44fcd 327 return_ACPI_STATUS(AE_OK);
1da177e4
LT
328}
329
1da177e4
LT
330/*******************************************************************************
331 *
332 * FUNCTION: acpi_ns_internalize_name
333 *
334 * PARAMETERS: *external_name - External representation of name
ba494bee 335 * **Converted name - Where to return the resulting
1da177e4
LT
336 * internal represention of the name
337 *
338 * RETURN: Status
339 *
340 * DESCRIPTION: Convert an external representation (e.g. "\_PR_.CPU0")
341 * to internal form (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
342 *
343 *******************************************************************************/
344
4b8ed631
BM
345acpi_status
346acpi_ns_internalize_name(const char *external_name, char **converted_name)
1da177e4 347{
4be44fcd
LB
348 char *internal_name;
349 struct acpi_namestring_info info;
350 acpi_status status;
1da177e4 351
b229cf92 352 ACPI_FUNCTION_TRACE(ns_internalize_name);
1da177e4 353
4be44fcd
LB
354 if ((!external_name) || (*external_name == 0) || (!converted_name)) {
355 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
356 }
357
358 /* Get the length of the new internal name */
359
360 info.external_name = external_name;
4be44fcd 361 acpi_ns_get_internal_name_length(&info);
1da177e4
LT
362
363 /* We need a segment to store the internal name */
364
8313524a 365 internal_name = ACPI_ALLOCATE_ZEROED(info.length);
1da177e4 366 if (!internal_name) {
4be44fcd 367 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
368 }
369
370 /* Build the name */
371
372 info.internal_name = internal_name;
4be44fcd
LB
373 status = acpi_ns_build_internal_name(&info);
374 if (ACPI_FAILURE(status)) {
8313524a 375 ACPI_FREE(internal_name);
4be44fcd 376 return_ACPI_STATUS(status);
1da177e4
LT
377 }
378
379 *converted_name = internal_name;
4be44fcd 380 return_ACPI_STATUS(AE_OK);
1da177e4
LT
381}
382
1da177e4
LT
383/*******************************************************************************
384 *
385 * FUNCTION: acpi_ns_externalize_name
386 *
44f6c012
RM
387 * PARAMETERS: internal_name_length - Lenth of the internal name below
388 * internal_name - Internal representation of name
389 * converted_name_length - Where the length is returned
390 * converted_name - Where the resulting external name
391 * is returned
1da177e4
LT
392 *
393 * RETURN: Status
394 *
395 * DESCRIPTION: Convert internal name (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
44f6c012 396 * to its external (printable) form (e.g. "\_PR_.CPU0")
1da177e4
LT
397 *
398 ******************************************************************************/
399
400acpi_status
4be44fcd 401acpi_ns_externalize_name(u32 internal_name_length,
4b8ed631 402 const char *internal_name,
4be44fcd 403 u32 * converted_name_length, char **converted_name)
1da177e4 404{
67a119f9
BM
405 u32 names_index = 0;
406 u32 num_segments = 0;
407 u32 required_length;
408 u32 prefix_length = 0;
409 u32 i = 0;
410 u32 j = 0;
1da177e4 411
b229cf92 412 ACPI_FUNCTION_TRACE(ns_externalize_name);
1da177e4 413
4be44fcd
LB
414 if (!internal_name_length || !internal_name || !converted_name) {
415 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
416 }
417
d4913dc6
BM
418 /* Check for a prefix (one '\' | one or more '^') */
419
1da177e4 420 switch (internal_name[0]) {
04a81dce 421 case AML_ROOT_PREFIX:
1d1ea1b7 422
1da177e4
LT
423 prefix_length = 1;
424 break;
425
04a81dce 426 case AML_PARENT_PREFIX:
1d1ea1b7 427
1da177e4 428 for (i = 0; i < internal_name_length; i++) {
04a81dce 429 if (ACPI_IS_PARENT_PREFIX(internal_name[i])) {
1da177e4 430 prefix_length = i + 1;
4be44fcd 431 } else {
1da177e4
LT
432 break;
433 }
434 }
435
436 if (i == internal_name_length) {
437 prefix_length = i;
438 }
439
440 break;
441
442 default:
1d1ea1b7 443
1da177e4
LT
444 break;
445 }
446
447 /*
d4913dc6 448 * Check for object names. Note that there could be 0-255 of these
1da177e4
LT
449 * 4-byte elements.
450 */
451 if (prefix_length < internal_name_length) {
452 switch (internal_name[prefix_length]) {
453 case AML_MULTI_NAME_PREFIX_OP:
454
455 /* <count> 4-byte names */
456
457 names_index = prefix_length + 2;
67a119f9 458 num_segments = (u8)
f5c1e1c5 459 internal_name[(acpi_size)prefix_length + 1];
1da177e4
LT
460 break;
461
462 case AML_DUAL_NAME_PREFIX:
463
464 /* Two 4-byte names */
465
466 names_index = prefix_length + 1;
467 num_segments = 2;
468 break;
469
470 case 0:
471
472 /* null_name */
473
474 names_index = 0;
475 num_segments = 0;
476 break;
477
478 default:
479
480 /* one 4-byte name */
481
482 names_index = prefix_length;
483 num_segments = 1;
484 break;
485 }
486 }
487
488 /*
489 * Calculate the length of converted_name, which equals the length
490 * of the prefix, length of all object names, length of any required
491 * punctuation ('.') between object names, plus the NULL terminator.
492 */
493 required_length = prefix_length + (4 * num_segments) +
4be44fcd 494 ((num_segments > 0) ? (num_segments - 1) : 0) + 1;
1da177e4
LT
495
496 /*
73a3090a 497 * Check to see if we're still in bounds. If not, there's a problem
1da177e4
LT
498 * with internal_name (invalid format).
499 */
500 if (required_length > internal_name_length) {
b8e4d893 501 ACPI_ERROR((AE_INFO, "Invalid internal name"));
4be44fcd 502 return_ACPI_STATUS(AE_BAD_PATHNAME);
1da177e4
LT
503 }
504
d4913dc6
BM
505 /* Build the converted_name */
506
8313524a 507 *converted_name = ACPI_ALLOCATE_ZEROED(required_length);
1da177e4 508 if (!(*converted_name)) {
4be44fcd 509 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
510 }
511
512 j = 0;
513
514 for (i = 0; i < prefix_length; i++) {
515 (*converted_name)[j++] = internal_name[i];
516 }
517
518 if (num_segments > 0) {
519 for (i = 0; i < num_segments; i++) {
520 if (i > 0) {
521 (*converted_name)[j++] = '.';
522 }
523
47abd13c
BM
524 /* Copy and validate the 4-char name segment */
525
526 ACPI_MOVE_NAME(&(*converted_name)[j],
527 &internal_name[names_index]);
528 acpi_ut_repair_name(&(*converted_name)[j]);
00eb3255
BM
529
530 j += ACPI_NAME_SIZE;
531 names_index += ACPI_NAME_SIZE;
1da177e4
LT
532 }
533 }
534
535 if (converted_name_length) {
536 *converted_name_length = (u32) required_length;
537 }
538
4be44fcd 539 return_ACPI_STATUS(AE_OK);
1da177e4
LT
540}
541
1da177e4
LT
542/*******************************************************************************
543 *
f24b664d 544 * FUNCTION: acpi_ns_validate_handle
1da177e4 545 *
ba494bee 546 * PARAMETERS: handle - Handle to be validated and typecast to a
f24b664d 547 * namespace node.
1da177e4 548 *
f24b664d 549 * RETURN: A pointer to a namespace node
1da177e4 550 *
f24b664d
BM
551 * DESCRIPTION: Convert a namespace handle to a namespace node. Handles special
552 * cases for the root node.
1da177e4 553 *
f24b664d 554 * NOTE: Real integer handles would allow for more verification
44f6c012 555 * and keep all pointers within this subsystem - however this introduces
f24b664d
BM
556 * more overhead and has not been necessary to this point. Drivers
557 * holding handles are typically notified before a node becomes invalid
558 * due to a table unload.
d4913dc6 559 *
1da177e4
LT
560 ******************************************************************************/
561
f24b664d 562struct acpi_namespace_node *acpi_ns_validate_handle(acpi_handle handle)
1da177e4
LT
563{
564
4be44fcd 565 ACPI_FUNCTION_ENTRY();
1da177e4 566
d4913dc6
BM
567 /* Parameter validation */
568
4119532c 569 if ((!handle) || (handle == ACPI_ROOT_OBJECT)) {
1da177e4
LT
570 return (acpi_gbl_root_node);
571 }
572
573 /* We can at least attempt to verify the handle */
574
4be44fcd 575 if (ACPI_GET_DESCRIPTOR_TYPE(handle) != ACPI_DESC_TYPE_NAMED) {
1da177e4
LT
576 return (NULL);
577 }
578
4119532c 579 return (ACPI_CAST_PTR(struct acpi_namespace_node, handle));
1da177e4
LT
580}
581
1da177e4
LT
582/*******************************************************************************
583 *
584 * FUNCTION: acpi_ns_terminate
585 *
586 * PARAMETERS: none
587 *
588 * RETURN: none
589 *
44f6c012 590 * DESCRIPTION: free memory allocated for namespace and ACPI table storage.
1da177e4
LT
591 *
592 ******************************************************************************/
593
4be44fcd 594void acpi_ns_terminate(void)
1da177e4 595{
3f69fe15 596 acpi_status status;
1da177e4 597
b229cf92 598 ACPI_FUNCTION_TRACE(ns_terminate);
1da177e4 599
25823e78
BM
600#ifdef ACPI_EXEC_APP
601 {
602 union acpi_operand_object *prev;
603 union acpi_operand_object *next;
604
605 /* Delete any module-level code blocks */
606
607 next = acpi_gbl_module_code_list;
608 while (next) {
609 prev = next;
610 next = next->method.mutex;
611 prev->method.mutex = NULL; /* Clear the Mutex (cheated) field */
612 acpi_ut_remove_reference(prev);
613 }
614 }
615#endif
616
1da177e4 617 /*
3f69fe15
BM
618 * Free the entire namespace -- all nodes and all objects
619 * attached to the nodes
1da177e4 620 */
4be44fcd 621 acpi_ns_delete_namespace_subtree(acpi_gbl_root_node);
1da177e4 622
3f69fe15 623 /* Delete any objects attached to the root node */
1da177e4 624
3f69fe15
BM
625 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
626 if (ACPI_FAILURE(status)) {
627 return_VOID;
1da177e4
LT
628 }
629
3f69fe15
BM
630 acpi_ns_delete_node(acpi_gbl_root_node);
631 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
632
4be44fcd 633 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Namespace freed\n"));
1da177e4
LT
634 return_VOID;
635}
636
1da177e4
LT
637/*******************************************************************************
638 *
639 * FUNCTION: acpi_ns_opens_scope
640 *
ba494bee 641 * PARAMETERS: type - A valid namespace type
1da177e4
LT
642 *
643 * RETURN: NEWSCOPE if the passed type "opens a name scope" according
644 * to the ACPI specification, else 0
645 *
646 ******************************************************************************/
647
4be44fcd 648u32 acpi_ns_opens_scope(acpi_object_type type)
1da177e4 649{
0e770b32 650 ACPI_FUNCTION_ENTRY();
1da177e4 651
0e770b32 652 if (type > ACPI_TYPE_LOCAL_MAX) {
52fc0b02 653
1da177e4
LT
654 /* type code out of range */
655
f6a22b0b 656 ACPI_WARNING((AE_INFO, "Invalid Object Type 0x%X", type));
0e770b32 657 return (ACPI_NS_NORMAL);
1da177e4
LT
658 }
659
0e770b32 660 return (((u32)acpi_gbl_ns_properties[type]) & ACPI_NS_NEWSCOPE);
1da177e4
LT
661}
662
1da177e4
LT
663/*******************************************************************************
664 *
c2d981aa 665 * FUNCTION: acpi_ns_get_node_unlocked
1da177e4 666 *
ba494bee 667 * PARAMETERS: *pathname - Name to be found, in external (ASL) format. The
1da177e4
LT
668 * \ (backslash) and ^ (carat) prefixes, and the
669 * . (period) to separate segments are supported.
4119532c 670 * prefix_node - Root of subtree to be searched, or NS_ALL for the
73a3090a 671 * root of the name space. If Name is fully
1da177e4
LT
672 * qualified (first s8 is '\'), the passed value
673 * of Scope will not be accessed.
ba494bee 674 * flags - Used to indicate whether to perform upsearch or
1da177e4
LT
675 * not.
676 * return_node - Where the Node is returned
677 *
678 * DESCRIPTION: Look up a name relative to a given scope and return the
73a3090a 679 * corresponding Node. NOTE: Scope can be null.
1da177e4 680 *
c2d981aa 681 * MUTEX: Doesn't locks namespace
1da177e4
LT
682 *
683 ******************************************************************************/
684
685acpi_status
c2d981aa
LZ
686acpi_ns_get_node_unlocked(struct acpi_namespace_node *prefix_node,
687 const char *pathname,
688 u32 flags, struct acpi_namespace_node **return_node)
1da177e4 689{
4be44fcd
LB
690 union acpi_generic_state scope_info;
691 acpi_status status;
4119532c 692 char *internal_path;
1da177e4 693
c2d981aa
LZ
694 ACPI_FUNCTION_TRACE_PTR(ns_get_node_unlocked,
695 ACPI_CAST_PTR(char, pathname));
1da177e4 696
f8c9bfe4
BM
697 /* Simplest case is a null pathname */
698
4119532c
BM
699 if (!pathname) {
700 *return_node = prefix_node;
701 if (!prefix_node) {
702 *return_node = acpi_gbl_root_node;
703 }
1fad8738 704
4119532c
BM
705 return_ACPI_STATUS(AE_OK);
706 }
52fc0b02 707
f8c9bfe4
BM
708 /* Quick check for a reference to the root */
709
710 if (ACPI_IS_ROOT_PREFIX(pathname[0]) && (!pathname[1])) {
711 *return_node = acpi_gbl_root_node;
712 return_ACPI_STATUS(AE_OK);
713 }
714
4119532c 715 /* Convert path to internal representation */
1da177e4 716
4119532c
BM
717 status = acpi_ns_internalize_name(pathname, &internal_path);
718 if (ACPI_FAILURE(status)) {
719 return_ACPI_STATUS(status);
1da177e4
LT
720 }
721
1da177e4
LT
722 /* Setup lookup scope (search starting point) */
723
4119532c 724 scope_info.scope.node = prefix_node;
1da177e4
LT
725
726 /* Lookup the name in the namespace */
727
4119532c
BM
728 status = acpi_ns_lookup(&scope_info, internal_path, ACPI_TYPE_ANY,
729 ACPI_IMODE_EXECUTE,
730 (flags | ACPI_NS_DONT_OPEN_SCOPE), NULL,
731 return_node);
4be44fcd 732 if (ACPI_FAILURE(status)) {
7bcc06e8 733 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%s, %s\n",
4119532c 734 pathname, acpi_format_exception(status)));
1da177e4
LT
735 }
736
4119532c 737 ACPI_FREE(internal_path);
4be44fcd 738 return_ACPI_STATUS(status);
1da177e4 739}
c2d981aa
LZ
740
741/*******************************************************************************
742 *
743 * FUNCTION: acpi_ns_get_node
744 *
745 * PARAMETERS: *pathname - Name to be found, in external (ASL) format. The
746 * \ (backslash) and ^ (carat) prefixes, and the
747 * . (period) to separate segments are supported.
748 * prefix_node - Root of subtree to be searched, or NS_ALL for the
749 * root of the name space. If Name is fully
750 * qualified (first s8 is '\'), the passed value
751 * of Scope will not be accessed.
752 * flags - Used to indicate whether to perform upsearch or
753 * not.
754 * return_node - Where the Node is returned
755 *
756 * DESCRIPTION: Look up a name relative to a given scope and return the
757 * corresponding Node. NOTE: Scope can be null.
758 *
759 * MUTEX: Locks namespace
760 *
761 ******************************************************************************/
762
763acpi_status
764acpi_ns_get_node(struct acpi_namespace_node *prefix_node,
765 const char *pathname,
766 u32 flags, struct acpi_namespace_node **return_node)
767{
768 acpi_status status;
769
770 ACPI_FUNCTION_TRACE_PTR(ns_get_node, ACPI_CAST_PTR(char, pathname));
771
772 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
773 if (ACPI_FAILURE(status)) {
774 return_ACPI_STATUS(status);
775 }
776
777 status = acpi_ns_get_node_unlocked(prefix_node, pathname,
778 flags, return_node);
779
780 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
781 return_ACPI_STATUS(status);
782}