Merge branches 'amd-iommu/fixes' and 'dma-debug/fixes' into iommu/fixes
[linux-2.6-block.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/*
75a44ce0 9 * Copyright (C) 2000 - 2008, 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"
49#include "actables.h"
1da177e4
LT
50
51#define _COMPONENT ACPI_NAMESPACE
4be44fcd 52ACPI_MODULE_NAME("nsutils")
1da177e4 53
44f6c012 54/* Local prototypes */
4be44fcd 55static u8 acpi_ns_valid_path_separator(char sep);
44f6c012
RM
56
57#ifdef ACPI_OBSOLETE_FUNCTIONS
4be44fcd 58acpi_name acpi_ns_find_parent_name(struct acpi_namespace_node *node_to_search);
44f6c012
RM
59#endif
60
1da177e4
LT
61/*******************************************************************************
62 *
63 * FUNCTION: acpi_ns_report_error
64 *
65 * PARAMETERS: module_name - Caller's module name (for error output)
66 * line_number - Caller's line number (for error output)
44f6c012
RM
67 * internal_name - Name or path of the namespace node
68 * lookup_status - Exception code from NS lookup
1da177e4
LT
69 *
70 * RETURN: None
71 *
72 * DESCRIPTION: Print warning message with full pathname
73 *
74 ******************************************************************************/
75
76void
4b8ed631 77acpi_ns_report_error(const char *module_name,
4be44fcd 78 u32 line_number,
4b8ed631 79 const char *internal_name, acpi_status lookup_status)
1da177e4 80{
4be44fcd 81 acpi_status status;
ea936b78 82 u32 bad_name;
4be44fcd 83 char *name = NULL;
1da177e4 84
61686124 85 acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number);
1da177e4
LT
86
87 if (lookup_status == AE_BAD_CHARACTER) {
52fc0b02 88
1da177e4
LT
89 /* There is a non-ascii character in the name */
90
5853a9f6
BM
91 ACPI_MOVE_32_TO_32(&bad_name,
92 ACPI_CAST_PTR(u32, internal_name));
ea936b78 93 acpi_os_printf("[0x%4.4X] (NON-ASCII)", bad_name);
4be44fcd 94 } else {
1da177e4
LT
95 /* Convert path to external format */
96
4be44fcd
LB
97 status = acpi_ns_externalize_name(ACPI_UINT32_MAX,
98 internal_name, NULL, &name);
1da177e4
LT
99
100 /* Print target name */
101
4be44fcd
LB
102 if (ACPI_SUCCESS(status)) {
103 acpi_os_printf("[%s]", name);
104 } else {
105 acpi_os_printf("[COULD NOT EXTERNALIZE NAME]");
1da177e4
LT
106 }
107
108 if (name) {
8313524a 109 ACPI_FREE(name);
1da177e4
LT
110 }
111 }
112
b8e4d893 113 acpi_os_printf(" Namespace lookup failure, %s\n",
4be44fcd 114 acpi_format_exception(lookup_status));
1da177e4
LT
115}
116
1da177e4
LT
117/*******************************************************************************
118 *
119 * FUNCTION: acpi_ns_report_method_error
120 *
121 * PARAMETERS: module_name - Caller's module name (for error output)
122 * line_number - Caller's line number (for error output)
1da177e4 123 * Message - Error message to use on failure
44f6c012 124 * prefix_node - Prefix relative to the path
4a90c7e8 125 * Path - Path to the node (optional)
44f6c012 126 * method_status - Execution status
1da177e4
LT
127 *
128 * RETURN: None
129 *
130 * DESCRIPTION: Print warning message with full pathname
131 *
132 ******************************************************************************/
133
134void
4b8ed631 135acpi_ns_report_method_error(const char *module_name,
4be44fcd 136 u32 line_number,
4b8ed631 137 const char *message,
4be44fcd 138 struct acpi_namespace_node *prefix_node,
4b8ed631 139 const char *path, acpi_status method_status)
1da177e4 140{
4be44fcd
LB
141 acpi_status status;
142 struct acpi_namespace_node *node = prefix_node;
1da177e4 143
61686124 144 acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number);
4a90c7e8 145
1da177e4 146 if (path) {
4119532c
BM
147 status =
148 acpi_ns_get_node(prefix_node, path, ACPI_NS_NO_UPSEARCH,
149 &node);
4be44fcd 150 if (ACPI_FAILURE(status)) {
4a90c7e8 151 acpi_os_printf("[Could not get node by pathname]");
1da177e4
LT
152 }
153 }
154
4be44fcd
LB
155 acpi_ns_print_node_pathname(node, message);
156 acpi_os_printf(", %s\n", acpi_format_exception(method_status));
1da177e4
LT
157}
158
1da177e4
LT
159/*******************************************************************************
160 *
161 * FUNCTION: acpi_ns_print_node_pathname
162 *
44f6c012
RM
163 * PARAMETERS: Node - Object
164 * Message - Prefix message
1da177e4
LT
165 *
166 * DESCRIPTION: Print an object's full namespace pathname
167 * Manages allocation/freeing of a pathname buffer
168 *
169 ******************************************************************************/
170
171void
4b8ed631
BM
172acpi_ns_print_node_pathname(struct acpi_namespace_node *node,
173 const char *message)
1da177e4 174{
4be44fcd
LB
175 struct acpi_buffer buffer;
176 acpi_status status;
1da177e4
LT
177
178 if (!node) {
4be44fcd 179 acpi_os_printf("[NULL NAME]");
1da177e4
LT
180 return;
181 }
182
183 /* Convert handle to full pathname and print it (with supplied message) */
184
185 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
186
4be44fcd
LB
187 status = acpi_ns_handle_to_pathname(node, &buffer);
188 if (ACPI_SUCCESS(status)) {
44f6c012 189 if (message) {
4be44fcd 190 acpi_os_printf("%s ", message);
1da177e4
LT
191 }
192
4be44fcd 193 acpi_os_printf("[%s] (Node %p)", (char *)buffer.pointer, node);
8313524a 194 ACPI_FREE(buffer.pointer);
1da177e4
LT
195 }
196}
197
1da177e4
LT
198/*******************************************************************************
199 *
200 * FUNCTION: acpi_ns_valid_root_prefix
201 *
202 * PARAMETERS: Prefix - Character to be checked
203 *
204 * RETURN: TRUE if a valid prefix
205 *
206 * DESCRIPTION: Check if a character is a valid ACPI Root prefix
207 *
208 ******************************************************************************/
209
4be44fcd 210u8 acpi_ns_valid_root_prefix(char prefix)
1da177e4
LT
211{
212
213 return ((u8) (prefix == '\\'));
214}
215
1da177e4
LT
216/*******************************************************************************
217 *
218 * FUNCTION: acpi_ns_valid_path_separator
219 *
44f6c012 220 * PARAMETERS: Sep - Character to be checked
1da177e4
LT
221 *
222 * RETURN: TRUE if a valid path separator
223 *
224 * DESCRIPTION: Check if a character is a valid ACPI path separator
225 *
226 ******************************************************************************/
227
4be44fcd 228static u8 acpi_ns_valid_path_separator(char sep)
1da177e4
LT
229{
230
231 return ((u8) (sep == '.'));
232}
233
1da177e4
LT
234/*******************************************************************************
235 *
236 * FUNCTION: acpi_ns_get_type
237 *
44f6c012 238 * PARAMETERS: Node - Parent Node to be examined
1da177e4
LT
239 *
240 * RETURN: Type field from Node whose handle is passed
241 *
44f6c012
RM
242 * DESCRIPTION: Return the type of a Namespace node
243 *
1da177e4
LT
244 ******************************************************************************/
245
4be44fcd 246acpi_object_type acpi_ns_get_type(struct acpi_namespace_node * node)
1da177e4 247{
b229cf92 248 ACPI_FUNCTION_TRACE(ns_get_type);
1da177e4
LT
249
250 if (!node) {
b8e4d893 251 ACPI_WARNING((AE_INFO, "Null Node parameter"));
50eca3eb 252 return_UINT32(ACPI_TYPE_ANY);
1da177e4
LT
253 }
254
50eca3eb 255 return_UINT32((acpi_object_type) node->type);
1da177e4
LT
256}
257
1da177e4
LT
258/*******************************************************************************
259 *
260 * FUNCTION: acpi_ns_local
261 *
44f6c012 262 * PARAMETERS: Type - A namespace object type
1da177e4
LT
263 *
264 * RETURN: LOCAL if names must be found locally in objects of the
265 * passed type, 0 if enclosing scopes should be searched
266 *
44f6c012
RM
267 * DESCRIPTION: Returns scope rule for the given object type.
268 *
1da177e4
LT
269 ******************************************************************************/
270
4be44fcd 271u32 acpi_ns_local(acpi_object_type type)
1da177e4 272{
b229cf92 273 ACPI_FUNCTION_TRACE(ns_local);
1da177e4 274
4be44fcd 275 if (!acpi_ut_valid_object_type(type)) {
52fc0b02 276
1da177e4
LT
277 /* Type code out of range */
278
b8e4d893 279 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
50eca3eb 280 return_UINT32(ACPI_NS_NORMAL);
1da177e4
LT
281 }
282
50eca3eb 283 return_UINT32((u32) acpi_gbl_ns_properties[type] & ACPI_NS_LOCAL);
1da177e4
LT
284}
285
1da177e4
LT
286/*******************************************************************************
287 *
288 * FUNCTION: acpi_ns_get_internal_name_length
289 *
290 * PARAMETERS: Info - Info struct initialized with the
291 * external name pointer.
292 *
44f6c012 293 * RETURN: None
1da177e4
LT
294 *
295 * DESCRIPTION: Calculate the length of the internal (AML) namestring
296 * corresponding to the external (ASL) namestring.
297 *
298 ******************************************************************************/
299
4be44fcd 300void acpi_ns_get_internal_name_length(struct acpi_namestring_info *info)
1da177e4 301{
4b8ed631 302 const char *next_external_char;
4be44fcd 303 u32 i;
1da177e4 304
4be44fcd 305 ACPI_FUNCTION_ENTRY();
1da177e4
LT
306
307 next_external_char = info->external_name;
308 info->num_carats = 0;
309 info->num_segments = 0;
310 info->fully_qualified = FALSE;
311
312 /*
313 * For the internal name, the required length is 4 bytes per segment, plus
314 * 1 each for root_prefix, multi_name_prefix_op, segment count, trailing null
315 * (which is not really needed, but no there's harm in putting it there)
316 *
317 * strlen() + 1 covers the first name_seg, which has no path separator
318 */
d037c5fd 319 if (acpi_ns_valid_root_prefix(*next_external_char)) {
1da177e4
LT
320 info->fully_qualified = TRUE;
321 next_external_char++;
d037c5fd
LM
322
323 /* Skip redundant root_prefix, like \\_SB.PCI0.SBRG.EC0 */
324
325 while (acpi_ns_valid_root_prefix(*next_external_char)) {
326 next_external_char++;
327 }
4be44fcd 328 } else {
d4913dc6
BM
329 /* Handle Carat prefixes */
330
1da177e4
LT
331 while (*next_external_char == '^') {
332 info->num_carats++;
333 next_external_char++;
334 }
335 }
336
337 /*
338 * Determine the number of ACPI name "segments" by counting the number of
339 * path separators within the string. Start with one segment since the
340 * segment count is [(# separators) + 1], and zero separators is ok.
341 */
342 if (*next_external_char) {
343 info->num_segments = 1;
344 for (i = 0; next_external_char[i]; i++) {
4be44fcd 345 if (acpi_ns_valid_path_separator(next_external_char[i])) {
1da177e4
LT
346 info->num_segments++;
347 }
348 }
349 }
350
351 info->length = (ACPI_NAME_SIZE * info->num_segments) +
4be44fcd 352 4 + info->num_carats;
1da177e4
LT
353
354 info->next_external_char = next_external_char;
355}
356
1da177e4
LT
357/*******************************************************************************
358 *
359 * FUNCTION: acpi_ns_build_internal_name
360 *
361 * PARAMETERS: Info - Info struct fully initialized
362 *
363 * RETURN: Status
364 *
365 * DESCRIPTION: Construct the internal (AML) namestring
366 * corresponding to the external (ASL) namestring.
367 *
368 ******************************************************************************/
369
4be44fcd 370acpi_status acpi_ns_build_internal_name(struct acpi_namestring_info *info)
1da177e4 371{
4be44fcd
LB
372 u32 num_segments = info->num_segments;
373 char *internal_name = info->internal_name;
4b8ed631 374 const char *external_name = info->next_external_char;
4be44fcd 375 char *result = NULL;
67a119f9 376 u32 i;
1da177e4 377
b229cf92 378 ACPI_FUNCTION_TRACE(ns_build_internal_name);
1da177e4
LT
379
380 /* Setup the correct prefixes, counts, and pointers */
381
382 if (info->fully_qualified) {
383 internal_name[0] = '\\';
384
385 if (num_segments <= 1) {
386 result = &internal_name[1];
4be44fcd 387 } else if (num_segments == 2) {
1da177e4
LT
388 internal_name[1] = AML_DUAL_NAME_PREFIX;
389 result = &internal_name[2];
4be44fcd 390 } else {
1da177e4 391 internal_name[1] = AML_MULTI_NAME_PREFIX_OP;
4be44fcd 392 internal_name[2] = (char)num_segments;
1da177e4
LT
393 result = &internal_name[3];
394 }
4be44fcd 395 } else {
1da177e4
LT
396 /*
397 * Not fully qualified.
398 * Handle Carats first, then append the name segments
399 */
400 i = 0;
401 if (info->num_carats) {
402 for (i = 0; i < info->num_carats; i++) {
403 internal_name[i] = '^';
404 }
405 }
406
407 if (num_segments <= 1) {
408 result = &internal_name[i];
4be44fcd 409 } else if (num_segments == 2) {
1da177e4 410 internal_name[i] = AML_DUAL_NAME_PREFIX;
67a119f9 411 result = &internal_name[(acpi_size) i + 1];
4be44fcd 412 } else {
1da177e4 413 internal_name[i] = AML_MULTI_NAME_PREFIX_OP;
67a119f9
BM
414 internal_name[(acpi_size) i + 1] = (char)num_segments;
415 result = &internal_name[(acpi_size) i + 2];
1da177e4
LT
416 }
417 }
418
419 /* Build the name (minus path separators) */
420
421 for (; num_segments; num_segments--) {
422 for (i = 0; i < ACPI_NAME_SIZE; i++) {
4be44fcd
LB
423 if (acpi_ns_valid_path_separator(*external_name) ||
424 (*external_name == 0)) {
52fc0b02 425
1da177e4
LT
426 /* Pad the segment with underscore(s) if segment is short */
427
428 result[i] = '_';
4be44fcd 429 } else {
1da177e4
LT
430 /* Convert the character to uppercase and save it */
431
4be44fcd
LB
432 result[i] =
433 (char)ACPI_TOUPPER((int)*external_name);
1da177e4
LT
434 external_name++;
435 }
436 }
437
438 /* Now we must have a path separator, or the pathname is bad */
439
4be44fcd
LB
440 if (!acpi_ns_valid_path_separator(*external_name) &&
441 (*external_name != 0)) {
442 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
443 }
444
445 /* Move on the next segment */
446
447 external_name++;
448 result += ACPI_NAME_SIZE;
449 }
450
451 /* Terminate the string */
452
453 *result = 0;
454
455 if (info->fully_qualified) {
4be44fcd
LB
456 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
457 "Returning [%p] (abs) \"\\%s\"\n",
458 internal_name, internal_name));
459 } else {
460 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Returning [%p] (rel) \"%s\"\n",
461 internal_name, internal_name));
1da177e4
LT
462 }
463
4be44fcd 464 return_ACPI_STATUS(AE_OK);
1da177e4
LT
465}
466
1da177e4
LT
467/*******************************************************************************
468 *
469 * FUNCTION: acpi_ns_internalize_name
470 *
471 * PARAMETERS: *external_name - External representation of name
472 * **Converted Name - Where to return the resulting
473 * internal represention of the name
474 *
475 * RETURN: Status
476 *
477 * DESCRIPTION: Convert an external representation (e.g. "\_PR_.CPU0")
478 * to internal form (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
479 *
480 *******************************************************************************/
481
4b8ed631
BM
482acpi_status
483acpi_ns_internalize_name(const char *external_name, char **converted_name)
1da177e4 484{
4be44fcd
LB
485 char *internal_name;
486 struct acpi_namestring_info info;
487 acpi_status status;
1da177e4 488
b229cf92 489 ACPI_FUNCTION_TRACE(ns_internalize_name);
1da177e4 490
4be44fcd
LB
491 if ((!external_name) || (*external_name == 0) || (!converted_name)) {
492 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
493 }
494
495 /* Get the length of the new internal name */
496
497 info.external_name = external_name;
4be44fcd 498 acpi_ns_get_internal_name_length(&info);
1da177e4
LT
499
500 /* We need a segment to store the internal name */
501
8313524a 502 internal_name = ACPI_ALLOCATE_ZEROED(info.length);
1da177e4 503 if (!internal_name) {
4be44fcd 504 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
505 }
506
507 /* Build the name */
508
509 info.internal_name = internal_name;
4be44fcd
LB
510 status = acpi_ns_build_internal_name(&info);
511 if (ACPI_FAILURE(status)) {
8313524a 512 ACPI_FREE(internal_name);
4be44fcd 513 return_ACPI_STATUS(status);
1da177e4
LT
514 }
515
516 *converted_name = internal_name;
4be44fcd 517 return_ACPI_STATUS(AE_OK);
1da177e4
LT
518}
519
1da177e4
LT
520/*******************************************************************************
521 *
522 * FUNCTION: acpi_ns_externalize_name
523 *
44f6c012
RM
524 * PARAMETERS: internal_name_length - Lenth of the internal name below
525 * internal_name - Internal representation of name
526 * converted_name_length - Where the length is returned
527 * converted_name - Where the resulting external name
528 * is returned
1da177e4
LT
529 *
530 * RETURN: Status
531 *
532 * DESCRIPTION: Convert internal name (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
44f6c012 533 * to its external (printable) form (e.g. "\_PR_.CPU0")
1da177e4
LT
534 *
535 ******************************************************************************/
536
537acpi_status
4be44fcd 538acpi_ns_externalize_name(u32 internal_name_length,
4b8ed631 539 const char *internal_name,
4be44fcd 540 u32 * converted_name_length, char **converted_name)
1da177e4 541{
67a119f9
BM
542 u32 names_index = 0;
543 u32 num_segments = 0;
544 u32 required_length;
545 u32 prefix_length = 0;
546 u32 i = 0;
547 u32 j = 0;
1da177e4 548
b229cf92 549 ACPI_FUNCTION_TRACE(ns_externalize_name);
1da177e4 550
4be44fcd
LB
551 if (!internal_name_length || !internal_name || !converted_name) {
552 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
553 }
554
d4913dc6
BM
555 /* Check for a prefix (one '\' | one or more '^') */
556
1da177e4
LT
557 switch (internal_name[0]) {
558 case '\\':
559 prefix_length = 1;
560 break;
561
562 case '^':
563 for (i = 0; i < internal_name_length; i++) {
564 if (internal_name[i] == '^') {
565 prefix_length = i + 1;
4be44fcd 566 } else {
1da177e4
LT
567 break;
568 }
569 }
570
571 if (i == internal_name_length) {
572 prefix_length = i;
573 }
574
575 break;
576
577 default:
578 break;
579 }
580
581 /*
d4913dc6 582 * Check for object names. Note that there could be 0-255 of these
1da177e4
LT
583 * 4-byte elements.
584 */
585 if (prefix_length < internal_name_length) {
586 switch (internal_name[prefix_length]) {
587 case AML_MULTI_NAME_PREFIX_OP:
588
589 /* <count> 4-byte names */
590
591 names_index = prefix_length + 2;
67a119f9
BM
592 num_segments = (u8)
593 internal_name[(acpi_size) prefix_length + 1];
1da177e4
LT
594 break;
595
596 case AML_DUAL_NAME_PREFIX:
597
598 /* Two 4-byte names */
599
600 names_index = prefix_length + 1;
601 num_segments = 2;
602 break;
603
604 case 0:
605
606 /* null_name */
607
608 names_index = 0;
609 num_segments = 0;
610 break;
611
612 default:
613
614 /* one 4-byte name */
615
616 names_index = prefix_length;
617 num_segments = 1;
618 break;
619 }
620 }
621
622 /*
623 * Calculate the length of converted_name, which equals the length
624 * of the prefix, length of all object names, length of any required
625 * punctuation ('.') between object names, plus the NULL terminator.
626 */
627 required_length = prefix_length + (4 * num_segments) +
4be44fcd 628 ((num_segments > 0) ? (num_segments - 1) : 0) + 1;
1da177e4
LT
629
630 /*
631 * Check to see if we're still in bounds. If not, there's a problem
632 * with internal_name (invalid format).
633 */
634 if (required_length > internal_name_length) {
b8e4d893 635 ACPI_ERROR((AE_INFO, "Invalid internal name"));
4be44fcd 636 return_ACPI_STATUS(AE_BAD_PATHNAME);
1da177e4
LT
637 }
638
d4913dc6
BM
639 /* Build the converted_name */
640
8313524a 641 *converted_name = ACPI_ALLOCATE_ZEROED(required_length);
1da177e4 642 if (!(*converted_name)) {
4be44fcd 643 return_ACPI_STATUS(AE_NO_MEMORY);
1da177e4
LT
644 }
645
646 j = 0;
647
648 for (i = 0; i < prefix_length; i++) {
649 (*converted_name)[j++] = internal_name[i];
650 }
651
652 if (num_segments > 0) {
653 for (i = 0; i < num_segments; i++) {
654 if (i > 0) {
655 (*converted_name)[j++] = '.';
656 }
657
658 (*converted_name)[j++] = internal_name[names_index++];
659 (*converted_name)[j++] = internal_name[names_index++];
660 (*converted_name)[j++] = internal_name[names_index++];
661 (*converted_name)[j++] = internal_name[names_index++];
662 }
663 }
664
665 if (converted_name_length) {
666 *converted_name_length = (u32) required_length;
667 }
668
4be44fcd 669 return_ACPI_STATUS(AE_OK);
1da177e4
LT
670}
671
1da177e4
LT
672/*******************************************************************************
673 *
674 * FUNCTION: acpi_ns_map_handle_to_node
675 *
676 * PARAMETERS: Handle - Handle to be converted to an Node
677 *
678 * RETURN: A Name table entry pointer
679 *
680 * DESCRIPTION: Convert a namespace handle to a real Node
681 *
44f6c012
RM
682 * Note: Real integer handles would allow for more verification
683 * and keep all pointers within this subsystem - however this introduces
684 * more (and perhaps unnecessary) overhead.
1da177e4 685 *
d4913dc6
BM
686 * The current implemenation is basically a placeholder until such time comes
687 * that it is needed.
688 *
1da177e4
LT
689 ******************************************************************************/
690
4be44fcd 691struct acpi_namespace_node *acpi_ns_map_handle_to_node(acpi_handle handle)
1da177e4
LT
692{
693
4be44fcd 694 ACPI_FUNCTION_ENTRY();
1da177e4 695
d4913dc6
BM
696 /* Parameter validation */
697
4119532c 698 if ((!handle) || (handle == ACPI_ROOT_OBJECT)) {
1da177e4
LT
699 return (acpi_gbl_root_node);
700 }
701
702 /* We can at least attempt to verify the handle */
703
4be44fcd 704 if (ACPI_GET_DESCRIPTOR_TYPE(handle) != ACPI_DESC_TYPE_NAMED) {
1da177e4
LT
705 return (NULL);
706 }
707
4119532c 708 return (ACPI_CAST_PTR(struct acpi_namespace_node, handle));
1da177e4
LT
709}
710
1da177e4
LT
711/*******************************************************************************
712 *
713 * FUNCTION: acpi_ns_convert_entry_to_handle
714 *
715 * PARAMETERS: Node - Node to be converted to a Handle
716 *
717 * RETURN: A user handle
718 *
719 * DESCRIPTION: Convert a real Node to a namespace handle
720 *
721 ******************************************************************************/
722
4be44fcd 723acpi_handle acpi_ns_convert_entry_to_handle(struct acpi_namespace_node *node)
1da177e4
LT
724{
725
1da177e4
LT
726 /*
727 * Simple implementation for now;
728 */
729 return ((acpi_handle) node);
730
44f6c012 731/* Example future implementation ---------------------
1da177e4
LT
732
733 if (!Node)
734 {
735 return (NULL);
736 }
737
738 if (Node == acpi_gbl_root_node)
739 {
740 return (ACPI_ROOT_OBJECT);
741 }
742
1da177e4
LT
743 return ((acpi_handle) Node);
744------------------------------------------------------*/
745}
746
1da177e4
LT
747/*******************************************************************************
748 *
749 * FUNCTION: acpi_ns_terminate
750 *
751 * PARAMETERS: none
752 *
753 * RETURN: none
754 *
44f6c012 755 * DESCRIPTION: free memory allocated for namespace and ACPI table storage.
1da177e4
LT
756 *
757 ******************************************************************************/
758
4be44fcd 759void acpi_ns_terminate(void)
1da177e4 760{
4be44fcd 761 union acpi_operand_object *obj_desc;
1da177e4 762
b229cf92 763 ACPI_FUNCTION_TRACE(ns_terminate);
1da177e4
LT
764
765 /*
766 * 1) Free the entire namespace -- all nodes and objects
767 *
768 * Delete all object descriptors attached to namepsace nodes
769 */
4be44fcd 770 acpi_ns_delete_namespace_subtree(acpi_gbl_root_node);
1da177e4
LT
771
772 /* Detach any objects attached to the root */
773
4be44fcd 774 obj_desc = acpi_ns_get_attached_object(acpi_gbl_root_node);
1da177e4 775 if (obj_desc) {
4be44fcd 776 acpi_ns_detach_object(acpi_gbl_root_node);
1da177e4
LT
777 }
778
4be44fcd 779 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Namespace freed\n"));
1da177e4
LT
780 return_VOID;
781}
782
1da177e4
LT
783/*******************************************************************************
784 *
785 * FUNCTION: acpi_ns_opens_scope
786 *
787 * PARAMETERS: Type - A valid namespace type
788 *
789 * RETURN: NEWSCOPE if the passed type "opens a name scope" according
790 * to the ACPI specification, else 0
791 *
792 ******************************************************************************/
793
4be44fcd 794u32 acpi_ns_opens_scope(acpi_object_type type)
1da177e4 795{
b229cf92 796 ACPI_FUNCTION_TRACE_STR(ns_opens_scope, acpi_ut_get_type_name(type));
1da177e4 797
4be44fcd 798 if (!acpi_ut_valid_object_type(type)) {
52fc0b02 799
1da177e4
LT
800 /* type code out of range */
801
b8e4d893 802 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
50eca3eb 803 return_UINT32(ACPI_NS_NORMAL);
1da177e4
LT
804 }
805
50eca3eb 806 return_UINT32(((u32) acpi_gbl_ns_properties[type]) & ACPI_NS_NEWSCOPE);
1da177e4
LT
807}
808
1da177e4
LT
809/*******************************************************************************
810 *
4119532c 811 * FUNCTION: acpi_ns_get_node
1da177e4
LT
812 *
813 * PARAMETERS: *Pathname - Name to be found, in external (ASL) format. The
814 * \ (backslash) and ^ (carat) prefixes, and the
815 * . (period) to separate segments are supported.
4119532c 816 * prefix_node - Root of subtree to be searched, or NS_ALL for the
1da177e4
LT
817 * root of the name space. If Name is fully
818 * qualified (first s8 is '\'), the passed value
819 * of Scope will not be accessed.
820 * Flags - Used to indicate whether to perform upsearch or
821 * not.
822 * return_node - Where the Node is returned
823 *
824 * DESCRIPTION: Look up a name relative to a given scope and return the
825 * corresponding Node. NOTE: Scope can be null.
826 *
827 * MUTEX: Locks namespace
828 *
829 ******************************************************************************/
830
831acpi_status
4119532c 832acpi_ns_get_node(struct acpi_namespace_node *prefix_node,
4b8ed631 833 const char *pathname,
4119532c 834 u32 flags, struct acpi_namespace_node **return_node)
1da177e4 835{
4be44fcd
LB
836 union acpi_generic_state scope_info;
837 acpi_status status;
4119532c 838 char *internal_path;
1da177e4 839
5853a9f6 840 ACPI_FUNCTION_TRACE_PTR(ns_get_node, ACPI_CAST_PTR(char, pathname));
1da177e4 841
4119532c
BM
842 if (!pathname) {
843 *return_node = prefix_node;
844 if (!prefix_node) {
845 *return_node = acpi_gbl_root_node;
846 }
847 return_ACPI_STATUS(AE_OK);
848 }
52fc0b02 849
4119532c 850 /* Convert path to internal representation */
1da177e4 851
4119532c
BM
852 status = acpi_ns_internalize_name(pathname, &internal_path);
853 if (ACPI_FAILURE(status)) {
854 return_ACPI_STATUS(status);
1da177e4
LT
855 }
856
857 /* Must lock namespace during lookup */
858
4be44fcd
LB
859 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
860 if (ACPI_FAILURE(status)) {
1da177e4
LT
861 goto cleanup;
862 }
863
864 /* Setup lookup scope (search starting point) */
865
4119532c 866 scope_info.scope.node = prefix_node;
1da177e4
LT
867
868 /* Lookup the name in the namespace */
869
4119532c
BM
870 status = acpi_ns_lookup(&scope_info, internal_path, ACPI_TYPE_ANY,
871 ACPI_IMODE_EXECUTE,
872 (flags | ACPI_NS_DONT_OPEN_SCOPE), NULL,
873 return_node);
4be44fcd 874 if (ACPI_FAILURE(status)) {
7bcc06e8 875 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%s, %s\n",
4119532c 876 pathname, acpi_format_exception(status)));
1da177e4
LT
877 }
878
4be44fcd 879 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
1da177e4 880
4be44fcd 881 cleanup:
4119532c 882 ACPI_FREE(internal_path);
4be44fcd 883 return_ACPI_STATUS(status);
1da177e4
LT
884}
885
1da177e4
LT
886/*******************************************************************************
887 *
888 * FUNCTION: acpi_ns_get_parent_node
889 *
890 * PARAMETERS: Node - Current table entry
891 *
892 * RETURN: Parent entry of the given entry
893 *
894 * DESCRIPTION: Obtain the parent entry for a given entry in the namespace.
895 *
896 ******************************************************************************/
897
4be44fcd
LB
898struct acpi_namespace_node *acpi_ns_get_parent_node(struct acpi_namespace_node
899 *node)
1da177e4 900{
4be44fcd 901 ACPI_FUNCTION_ENTRY();
1da177e4
LT
902
903 if (!node) {
904 return (NULL);
905 }
906
907 /*
908 * Walk to the end of this peer list. The last entry is marked with a flag
909 * and the peer pointer is really a pointer back to the parent. This saves
910 * putting a parent back pointer in each and every named object!
911 */
912 while (!(node->flags & ANOBJ_END_OF_PEER_LIST)) {
913 node = node->peer;
914 }
915
1da177e4
LT
916 return (node->peer);
917}
918
1da177e4
LT
919/*******************************************************************************
920 *
921 * FUNCTION: acpi_ns_get_next_valid_node
922 *
923 * PARAMETERS: Node - Current table entry
924 *
925 * RETURN: Next valid Node in the linked node list. NULL if no more valid
926 * nodes.
927 *
928 * DESCRIPTION: Find the next valid node within a name table.
929 * Useful for implementing NULL-end-of-list loops.
930 *
931 ******************************************************************************/
932
4be44fcd
LB
933struct acpi_namespace_node *acpi_ns_get_next_valid_node(struct
934 acpi_namespace_node
935 *node)
1da177e4
LT
936{
937
938 /* If we are at the end of this peer list, return NULL */
939
940 if (node->flags & ANOBJ_END_OF_PEER_LIST) {
941 return NULL;
942 }
943
944 /* Otherwise just return the next peer */
945
946 return (node->peer);
947}
948
44f6c012
RM
949#ifdef ACPI_OBSOLETE_FUNCTIONS
950/*******************************************************************************
951 *
952 * FUNCTION: acpi_ns_find_parent_name
953 *
954 * PARAMETERS: *child_node - Named Obj whose name is to be found
955 *
956 * RETURN: The ACPI name
957 *
958 * DESCRIPTION: Search for the given obj in its parent scope and return the
959 * name segment, or "????" if the parent name can't be found
960 * (which "should not happen").
961 *
962 ******************************************************************************/
963
4be44fcd 964acpi_name acpi_ns_find_parent_name(struct acpi_namespace_node * child_node)
44f6c012 965{
4be44fcd 966 struct acpi_namespace_node *parent_node;
44f6c012 967
b229cf92 968 ACPI_FUNCTION_TRACE(ns_find_parent_name);
44f6c012
RM
969
970 if (child_node) {
52fc0b02 971
44f6c012
RM
972 /* Valid entry. Get the parent Node */
973
4be44fcd 974 parent_node = acpi_ns_get_parent_node(child_node);
44f6c012 975 if (parent_node) {
4be44fcd
LB
976 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
977 "Parent of %p [%4.4s] is %p [%4.4s]\n",
978 child_node,
979 acpi_ut_get_node_name(child_node),
980 parent_node,
981 acpi_ut_get_node_name(parent_node)));
44f6c012
RM
982
983 if (parent_node->name.integer) {
4be44fcd
LB
984 return_VALUE((acpi_name) parent_node->name.
985 integer);
44f6c012
RM
986 }
987 }
988
4be44fcd
LB
989 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
990 "Unable to find parent of %p (%4.4s)\n",
991 child_node,
992 acpi_ut_get_node_name(child_node)));
44f6c012
RM
993 }
994
4be44fcd 995 return_VALUE(ACPI_UNKNOWN_NAME);
44f6c012
RM
996}
997#endif