blob: 337fb04e0388692eb895548320809e18cf82ceb0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: nsutils - Utilities for accessing ACPI namespace, accessing
4 * parents and siblings and Scope manipulation
5 *
6 *****************************************************************************/
7
8/*
Len Brown75a44ce2008-04-23 23:00:13 -04009 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
46#include <acpi/acnamesp.h>
47#include <acpi/amlcode.h>
48#include <acpi/actables.h>
49
50#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("nsutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore44f6c012005-04-18 22:49:35 -040053/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040054static u8 acpi_ns_valid_path_separator(char sep);
Robert Moore44f6c012005-04-18 22:49:35 -040055
56#ifdef ACPI_OBSOLETE_FUNCTIONS
Len Brown4be44fc2005-08-05 00:44:28 -040057acpi_name acpi_ns_find_parent_name(struct acpi_namespace_node *node_to_search);
Robert Moore44f6c012005-04-18 22:49:35 -040058#endif
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*******************************************************************************
61 *
62 * FUNCTION: acpi_ns_report_error
63 *
64 * PARAMETERS: module_name - Caller's module name (for error output)
65 * line_number - Caller's line number (for error output)
Robert Moore44f6c012005-04-18 22:49:35 -040066 * internal_name - Name or path of the namespace node
67 * lookup_status - Exception code from NS lookup
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 *
69 * RETURN: None
70 *
71 * DESCRIPTION: Print warning message with full pathname
72 *
73 ******************************************************************************/
74
75void
Bob Moore4b8ed632008-06-10 13:55:53 +080076acpi_ns_report_error(const char *module_name,
Len Brown4be44fc2005-08-05 00:44:28 -040077 u32 line_number,
Bob Moore4b8ed632008-06-10 13:55:53 +080078 const char *internal_name, acpi_status lookup_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Len Brown4be44fc2005-08-05 00:44:28 -040080 acpi_status status;
Bob Mooreea936b72006-02-17 00:00:00 -050081 u32 bad_name;
Len Brown4be44fc2005-08-05 00:44:28 -040082 char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Bob Moore616861242006-03-17 16:44:00 -050084 acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 if (lookup_status == AE_BAD_CHARACTER) {
Bob Moore52fc0b02006-10-02 00:00:00 -040087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* There is a non-ascii character in the name */
89
Bob Mooreea936b72006-02-17 00:00:00 -050090 ACPI_MOVE_32_TO_32(&bad_name, internal_name);
91 acpi_os_printf("[0x%4.4X] (NON-ASCII)", bad_name);
Len Brown4be44fc2005-08-05 00:44:28 -040092 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 /* Convert path to external format */
94
Len Brown4be44fc2005-08-05 00:44:28 -040095 status = acpi_ns_externalize_name(ACPI_UINT32_MAX,
96 internal_name, NULL, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 /* Print target name */
99
Len Brown4be44fc2005-08-05 00:44:28 -0400100 if (ACPI_SUCCESS(status)) {
101 acpi_os_printf("[%s]", name);
102 } else {
103 acpi_os_printf("[COULD NOT EXTERNALIZE NAME]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
106 if (name) {
Bob Moore83135242006-10-03 00:00:00 -0400107 ACPI_FREE(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109 }
110
Bob Mooreb8e4d892006-01-27 16:43:00 -0500111 acpi_os_printf(" Namespace lookup failure, %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400112 acpi_format_exception(lookup_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*******************************************************************************
116 *
117 * FUNCTION: acpi_ns_report_method_error
118 *
119 * PARAMETERS: module_name - Caller's module name (for error output)
120 * line_number - Caller's line number (for error output)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * Message - Error message to use on failure
Robert Moore44f6c012005-04-18 22:49:35 -0400122 * prefix_node - Prefix relative to the path
Bob Moore4a90c7e2006-01-13 16:22:00 -0500123 * Path - Path to the node (optional)
Robert Moore44f6c012005-04-18 22:49:35 -0400124 * method_status - Execution status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 *
126 * RETURN: None
127 *
128 * DESCRIPTION: Print warning message with full pathname
129 *
130 ******************************************************************************/
131
132void
Bob Moore4b8ed632008-06-10 13:55:53 +0800133acpi_ns_report_method_error(const char *module_name,
Len Brown4be44fc2005-08-05 00:44:28 -0400134 u32 line_number,
Bob Moore4b8ed632008-06-10 13:55:53 +0800135 const char *message,
Len Brown4be44fc2005-08-05 00:44:28 -0400136 struct acpi_namespace_node *prefix_node,
Bob Moore4b8ed632008-06-10 13:55:53 +0800137 const char *path, acpi_status method_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Len Brown4be44fc2005-08-05 00:44:28 -0400139 acpi_status status;
140 struct acpi_namespace_node *node = prefix_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Bob Moore616861242006-03-17 16:44:00 -0500142 acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number);
Bob Moore4a90c7e2006-01-13 16:22:00 -0500143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (path) {
Bob Moore41195322006-05-26 16:36:00 -0400145 status =
146 acpi_ns_get_node(prefix_node, path, ACPI_NS_NO_UPSEARCH,
147 &node);
Len Brown4be44fc2005-08-05 00:44:28 -0400148 if (ACPI_FAILURE(status)) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500149 acpi_os_printf("[Could not get node by pathname]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151 }
152
Len Brown4be44fc2005-08-05 00:44:28 -0400153 acpi_ns_print_node_pathname(node, message);
154 acpi_os_printf(", %s\n", acpi_format_exception(method_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*******************************************************************************
158 *
159 * FUNCTION: acpi_ns_print_node_pathname
160 *
Robert Moore44f6c012005-04-18 22:49:35 -0400161 * PARAMETERS: Node - Object
162 * Message - Prefix message
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 *
164 * DESCRIPTION: Print an object's full namespace pathname
165 * Manages allocation/freeing of a pathname buffer
166 *
167 ******************************************************************************/
168
169void
Bob Moore4b8ed632008-06-10 13:55:53 +0800170acpi_ns_print_node_pathname(struct acpi_namespace_node *node,
171 const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Len Brown4be44fc2005-08-05 00:44:28 -0400173 struct acpi_buffer buffer;
174 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 if (!node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400177 acpi_os_printf("[NULL NAME]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return;
179 }
180
181 /* Convert handle to full pathname and print it (with supplied message) */
182
183 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
184
Len Brown4be44fc2005-08-05 00:44:28 -0400185 status = acpi_ns_handle_to_pathname(node, &buffer);
186 if (ACPI_SUCCESS(status)) {
Robert Moore44f6c012005-04-18 22:49:35 -0400187 if (message) {
Len Brown4be44fc2005-08-05 00:44:28 -0400188 acpi_os_printf("%s ", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
Len Brown4be44fc2005-08-05 00:44:28 -0400191 acpi_os_printf("[%s] (Node %p)", (char *)buffer.pointer, node);
Bob Moore83135242006-10-03 00:00:00 -0400192 ACPI_FREE(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*******************************************************************************
197 *
198 * FUNCTION: acpi_ns_valid_root_prefix
199 *
200 * PARAMETERS: Prefix - Character to be checked
201 *
202 * RETURN: TRUE if a valid prefix
203 *
204 * DESCRIPTION: Check if a character is a valid ACPI Root prefix
205 *
206 ******************************************************************************/
207
Len Brown4be44fc2005-08-05 00:44:28 -0400208u8 acpi_ns_valid_root_prefix(char prefix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210
211 return ((u8) (prefix == '\\'));
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*******************************************************************************
215 *
216 * FUNCTION: acpi_ns_valid_path_separator
217 *
Robert Moore44f6c012005-04-18 22:49:35 -0400218 * PARAMETERS: Sep - Character to be checked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 *
220 * RETURN: TRUE if a valid path separator
221 *
222 * DESCRIPTION: Check if a character is a valid ACPI path separator
223 *
224 ******************************************************************************/
225
Len Brown4be44fc2005-08-05 00:44:28 -0400226static u8 acpi_ns_valid_path_separator(char sep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228
229 return ((u8) (sep == '.'));
230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/*******************************************************************************
233 *
234 * FUNCTION: acpi_ns_get_type
235 *
Robert Moore44f6c012005-04-18 22:49:35 -0400236 * PARAMETERS: Node - Parent Node to be examined
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 *
238 * RETURN: Type field from Node whose handle is passed
239 *
Robert Moore44f6c012005-04-18 22:49:35 -0400240 * DESCRIPTION: Return the type of a Namespace node
241 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 ******************************************************************************/
243
Len Brown4be44fc2005-08-05 00:44:28 -0400244acpi_object_type acpi_ns_get_type(struct acpi_namespace_node * node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Bob Mooreb229cf92006-04-21 17:15:00 -0400246 ACPI_FUNCTION_TRACE(ns_get_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (!node) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500249 ACPI_WARNING((AE_INFO, "Null Node parameter"));
Bob Moore50eca3e2005-09-30 19:03:00 -0400250 return_UINT32(ACPI_TYPE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
Bob Moore50eca3e2005-09-30 19:03:00 -0400253 return_UINT32((acpi_object_type) node->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*******************************************************************************
257 *
258 * FUNCTION: acpi_ns_local
259 *
Robert Moore44f6c012005-04-18 22:49:35 -0400260 * PARAMETERS: Type - A namespace object type
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 *
262 * RETURN: LOCAL if names must be found locally in objects of the
263 * passed type, 0 if enclosing scopes should be searched
264 *
Robert Moore44f6c012005-04-18 22:49:35 -0400265 * DESCRIPTION: Returns scope rule for the given object type.
266 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 ******************************************************************************/
268
Len Brown4be44fc2005-08-05 00:44:28 -0400269u32 acpi_ns_local(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Bob Mooreb229cf92006-04-21 17:15:00 -0400271 ACPI_FUNCTION_TRACE(ns_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Len Brown4be44fc2005-08-05 00:44:28 -0400273 if (!acpi_ut_valid_object_type(type)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Type code out of range */
276
Bob Mooreb8e4d892006-01-27 16:43:00 -0500277 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400278 return_UINT32(ACPI_NS_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
Bob Moore50eca3e2005-09-30 19:03:00 -0400281 return_UINT32((u32) acpi_gbl_ns_properties[type] & ACPI_NS_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*******************************************************************************
285 *
286 * FUNCTION: acpi_ns_get_internal_name_length
287 *
288 * PARAMETERS: Info - Info struct initialized with the
289 * external name pointer.
290 *
Robert Moore44f6c012005-04-18 22:49:35 -0400291 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 *
293 * DESCRIPTION: Calculate the length of the internal (AML) namestring
294 * corresponding to the external (ASL) namestring.
295 *
296 ******************************************************************************/
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298void acpi_ns_get_internal_name_length(struct acpi_namestring_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Bob Moore4b8ed632008-06-10 13:55:53 +0800300 const char *next_external_char;
Len Brown4be44fc2005-08-05 00:44:28 -0400301 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 next_external_char = info->external_name;
306 info->num_carats = 0;
307 info->num_segments = 0;
308 info->fully_qualified = FALSE;
309
310 /*
311 * For the internal name, the required length is 4 bytes per segment, plus
312 * 1 each for root_prefix, multi_name_prefix_op, segment count, trailing null
313 * (which is not really needed, but no there's harm in putting it there)
314 *
315 * strlen() + 1 covers the first name_seg, which has no path separator
316 */
Lin Mingd037c5f2008-11-13 10:54:39 +0800317 if (acpi_ns_valid_root_prefix(*next_external_char)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 info->fully_qualified = TRUE;
319 next_external_char++;
Lin Mingd037c5f2008-11-13 10:54:39 +0800320
321 /* Skip redundant root_prefix, like \\_SB.PCI0.SBRG.EC0 */
322
323 while (acpi_ns_valid_root_prefix(*next_external_char)) {
324 next_external_char++;
325 }
Len Brown4be44fc2005-08-05 00:44:28 -0400326 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /*
328 * Handle Carat prefixes
329 */
330 while (*next_external_char == '^') {
331 info->num_carats++;
332 next_external_char++;
333 }
334 }
335
336 /*
337 * Determine the number of ACPI name "segments" by counting the number of
338 * path separators within the string. Start with one segment since the
339 * segment count is [(# separators) + 1], and zero separators is ok.
340 */
341 if (*next_external_char) {
342 info->num_segments = 1;
343 for (i = 0; next_external_char[i]; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400344 if (acpi_ns_valid_path_separator(next_external_char[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 info->num_segments++;
346 }
347 }
348 }
349
350 info->length = (ACPI_NAME_SIZE * info->num_segments) +
Len Brown4be44fc2005-08-05 00:44:28 -0400351 4 + info->num_carats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 info->next_external_char = next_external_char;
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*******************************************************************************
357 *
358 * FUNCTION: acpi_ns_build_internal_name
359 *
360 * PARAMETERS: Info - Info struct fully initialized
361 *
362 * RETURN: Status
363 *
364 * DESCRIPTION: Construct the internal (AML) namestring
365 * corresponding to the external (ASL) namestring.
366 *
367 ******************************************************************************/
368
Len Brown4be44fc2005-08-05 00:44:28 -0400369acpi_status acpi_ns_build_internal_name(struct acpi_namestring_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Len Brown4be44fc2005-08-05 00:44:28 -0400371 u32 num_segments = info->num_segments;
372 char *internal_name = info->internal_name;
Bob Moore4b8ed632008-06-10 13:55:53 +0800373 const char *external_name = info->next_external_char;
Len Brown4be44fc2005-08-05 00:44:28 -0400374 char *result = NULL;
Bob Moore67a119f2008-06-10 13:42:13 +0800375 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Bob Mooreb229cf92006-04-21 17:15:00 -0400377 ACPI_FUNCTION_TRACE(ns_build_internal_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /* Setup the correct prefixes, counts, and pointers */
380
381 if (info->fully_qualified) {
382 internal_name[0] = '\\';
383
384 if (num_segments <= 1) {
385 result = &internal_name[1];
Len Brown4be44fc2005-08-05 00:44:28 -0400386 } else if (num_segments == 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 internal_name[1] = AML_DUAL_NAME_PREFIX;
388 result = &internal_name[2];
Len Brown4be44fc2005-08-05 00:44:28 -0400389 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 internal_name[1] = AML_MULTI_NAME_PREFIX_OP;
Len Brown4be44fc2005-08-05 00:44:28 -0400391 internal_name[2] = (char)num_segments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 result = &internal_name[3];
393 }
Len Brown4be44fc2005-08-05 00:44:28 -0400394 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /*
396 * Not fully qualified.
397 * Handle Carats first, then append the name segments
398 */
399 i = 0;
400 if (info->num_carats) {
401 for (i = 0; i < info->num_carats; i++) {
402 internal_name[i] = '^';
403 }
404 }
405
406 if (num_segments <= 1) {
407 result = &internal_name[i];
Len Brown4be44fc2005-08-05 00:44:28 -0400408 } else if (num_segments == 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 internal_name[i] = AML_DUAL_NAME_PREFIX;
Bob Moore67a119f2008-06-10 13:42:13 +0800410 result = &internal_name[(acpi_size) i + 1];
Len Brown4be44fc2005-08-05 00:44:28 -0400411 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 internal_name[i] = AML_MULTI_NAME_PREFIX_OP;
Bob Moore67a119f2008-06-10 13:42:13 +0800413 internal_name[(acpi_size) i + 1] = (char)num_segments;
414 result = &internal_name[(acpi_size) i + 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416 }
417
418 /* Build the name (minus path separators) */
419
420 for (; num_segments; num_segments--) {
421 for (i = 0; i < ACPI_NAME_SIZE; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400422 if (acpi_ns_valid_path_separator(*external_name) ||
423 (*external_name == 0)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* Pad the segment with underscore(s) if segment is short */
426
427 result[i] = '_';
Len Brown4be44fc2005-08-05 00:44:28 -0400428 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* Convert the character to uppercase and save it */
430
Len Brown4be44fc2005-08-05 00:44:28 -0400431 result[i] =
432 (char)ACPI_TOUPPER((int)*external_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 external_name++;
434 }
435 }
436
437 /* Now we must have a path separator, or the pathname is bad */
438
Len Brown4be44fc2005-08-05 00:44:28 -0400439 if (!acpi_ns_valid_path_separator(*external_name) &&
440 (*external_name != 0)) {
441 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
444 /* Move on the next segment */
445
446 external_name++;
447 result += ACPI_NAME_SIZE;
448 }
449
450 /* Terminate the string */
451
452 *result = 0;
453
454 if (info->fully_qualified) {
Len Brown4be44fc2005-08-05 00:44:28 -0400455 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
456 "Returning [%p] (abs) \"\\%s\"\n",
457 internal_name, internal_name));
458 } else {
459 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Returning [%p] (rel) \"%s\"\n",
460 internal_name, internal_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
Len Brown4be44fc2005-08-05 00:44:28 -0400463 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/*******************************************************************************
467 *
468 * FUNCTION: acpi_ns_internalize_name
469 *
470 * PARAMETERS: *external_name - External representation of name
471 * **Converted Name - Where to return the resulting
472 * internal represention of the name
473 *
474 * RETURN: Status
475 *
476 * DESCRIPTION: Convert an external representation (e.g. "\_PR_.CPU0")
477 * to internal form (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
478 *
479 *******************************************************************************/
480
Bob Moore4b8ed632008-06-10 13:55:53 +0800481acpi_status
482acpi_ns_internalize_name(const char *external_name, char **converted_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Len Brown4be44fc2005-08-05 00:44:28 -0400484 char *internal_name;
485 struct acpi_namestring_info info;
486 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Bob Mooreb229cf92006-04-21 17:15:00 -0400488 ACPI_FUNCTION_TRACE(ns_internalize_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Len Brown4be44fc2005-08-05 00:44:28 -0400490 if ((!external_name) || (*external_name == 0) || (!converted_name)) {
491 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
494 /* Get the length of the new internal name */
495
496 info.external_name = external_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400497 acpi_ns_get_internal_name_length(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* We need a segment to store the internal name */
500
Bob Moore83135242006-10-03 00:00:00 -0400501 internal_name = ACPI_ALLOCATE_ZEROED(info.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (!internal_name) {
Len Brown4be44fc2005-08-05 00:44:28 -0400503 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
506 /* Build the name */
507
508 info.internal_name = internal_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400509 status = acpi_ns_build_internal_name(&info);
510 if (ACPI_FAILURE(status)) {
Bob Moore83135242006-10-03 00:00:00 -0400511 ACPI_FREE(internal_name);
Len Brown4be44fc2005-08-05 00:44:28 -0400512 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514
515 *converted_name = internal_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400516 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/*******************************************************************************
520 *
521 * FUNCTION: acpi_ns_externalize_name
522 *
Robert Moore44f6c012005-04-18 22:49:35 -0400523 * PARAMETERS: internal_name_length - Lenth of the internal name below
524 * internal_name - Internal representation of name
525 * converted_name_length - Where the length is returned
526 * converted_name - Where the resulting external name
527 * is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *
529 * RETURN: Status
530 *
531 * DESCRIPTION: Convert internal name (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
Robert Moore44f6c012005-04-18 22:49:35 -0400532 * to its external (printable) form (e.g. "\_PR_.CPU0")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 *
534 ******************************************************************************/
535
536acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400537acpi_ns_externalize_name(u32 internal_name_length,
Bob Moore4b8ed632008-06-10 13:55:53 +0800538 const char *internal_name,
Len Brown4be44fc2005-08-05 00:44:28 -0400539 u32 * converted_name_length, char **converted_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Bob Moore67a119f2008-06-10 13:42:13 +0800541 u32 names_index = 0;
542 u32 num_segments = 0;
543 u32 required_length;
544 u32 prefix_length = 0;
545 u32 i = 0;
546 u32 j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Bob Mooreb229cf92006-04-21 17:15:00 -0400548 ACPI_FUNCTION_TRACE(ns_externalize_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Len Brown4be44fc2005-08-05 00:44:28 -0400550 if (!internal_name_length || !internal_name || !converted_name) {
551 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
554 /*
555 * Check for a prefix (one '\' | one or more '^').
556 */
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;
Len Brown4be44fc2005-08-05 00:44:28 -0400566 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 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 /*
582 * Check for object names. Note that there could be 0-255 of these
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;
Bob Moore67a119f2008-06-10 13:42:13 +0800592 num_segments = (u8)
593 internal_name[(acpi_size) prefix_length + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 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) +
Len Brown4be44fc2005-08-05 00:44:28 -0400628 ((num_segments > 0) ? (num_segments - 1) : 0) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
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) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500635 ACPI_ERROR((AE_INFO, "Invalid internal name"));
Len Brown4be44fc2005-08-05 00:44:28 -0400636 return_ACPI_STATUS(AE_BAD_PATHNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
639 /*
640 * Build converted_name
641 */
Bob Moore83135242006-10-03 00:00:00 -0400642 *converted_name = ACPI_ALLOCATE_ZEROED(required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (!(*converted_name)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400644 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646
647 j = 0;
648
649 for (i = 0; i < prefix_length; i++) {
650 (*converted_name)[j++] = internal_name[i];
651 }
652
653 if (num_segments > 0) {
654 for (i = 0; i < num_segments; i++) {
655 if (i > 0) {
656 (*converted_name)[j++] = '.';
657 }
658
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 (*converted_name)[j++] = internal_name[names_index++];
663 }
664 }
665
666 if (converted_name_length) {
667 *converted_name_length = (u32) required_length;
668 }
669
Len Brown4be44fc2005-08-05 00:44:28 -0400670 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673/*******************************************************************************
674 *
675 * FUNCTION: acpi_ns_map_handle_to_node
676 *
677 * PARAMETERS: Handle - Handle to be converted to an Node
678 *
679 * RETURN: A Name table entry pointer
680 *
681 * DESCRIPTION: Convert a namespace handle to a real Node
682 *
Robert Moore44f6c012005-04-18 22:49:35 -0400683 * Note: Real integer handles would allow for more verification
684 * and keep all pointers within this subsystem - however this introduces
685 * more (and perhaps unnecessary) overhead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 *
687 ******************************************************************************/
688
Len Brown4be44fc2005-08-05 00:44:28 -0400689struct acpi_namespace_node *acpi_ns_map_handle_to_node(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691
Len Brown4be44fc2005-08-05 00:44:28 -0400692 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /*
Bob Moore41195322006-05-26 16:36:00 -0400695 * Simple implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 */
Bob Moore41195322006-05-26 16:36:00 -0400697 if ((!handle) || (handle == ACPI_ROOT_OBJECT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return (acpi_gbl_root_node);
699 }
700
701 /* We can at least attempt to verify the handle */
702
Len Brown4be44fc2005-08-05 00:44:28 -0400703 if (ACPI_GET_DESCRIPTOR_TYPE(handle) != ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return (NULL);
705 }
706
Bob Moore41195322006-05-26 16:36:00 -0400707 return (ACPI_CAST_PTR(struct acpi_namespace_node, handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710/*******************************************************************************
711 *
712 * FUNCTION: acpi_ns_convert_entry_to_handle
713 *
714 * PARAMETERS: Node - Node to be converted to a Handle
715 *
716 * RETURN: A user handle
717 *
718 * DESCRIPTION: Convert a real Node to a namespace handle
719 *
720 ******************************************************************************/
721
Len Brown4be44fc2005-08-05 00:44:28 -0400722acpi_handle acpi_ns_convert_entry_to_handle(struct acpi_namespace_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /*
726 * Simple implementation for now;
727 */
728 return ((acpi_handle) node);
729
Robert Moore44f6c012005-04-18 22:49:35 -0400730/* Example future implementation ---------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 if (!Node)
733 {
734 return (NULL);
735 }
736
737 if (Node == acpi_gbl_root_node)
738 {
739 return (ACPI_ROOT_OBJECT);
740 }
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return ((acpi_handle) Node);
743------------------------------------------------------*/
744}
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746/*******************************************************************************
747 *
748 * FUNCTION: acpi_ns_terminate
749 *
750 * PARAMETERS: none
751 *
752 * RETURN: none
753 *
Robert Moore44f6c012005-04-18 22:49:35 -0400754 * DESCRIPTION: free memory allocated for namespace and ACPI table storage.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 *
756 ******************************************************************************/
757
Len Brown4be44fc2005-08-05 00:44:28 -0400758void acpi_ns_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Len Brown4be44fc2005-08-05 00:44:28 -0400760 union acpi_operand_object *obj_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Bob Mooreb229cf92006-04-21 17:15:00 -0400762 ACPI_FUNCTION_TRACE(ns_terminate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /*
765 * 1) Free the entire namespace -- all nodes and objects
766 *
767 * Delete all object descriptors attached to namepsace nodes
768 */
Len Brown4be44fc2005-08-05 00:44:28 -0400769 acpi_ns_delete_namespace_subtree(acpi_gbl_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 /* Detach any objects attached to the root */
772
Len Brown4be44fc2005-08-05 00:44:28 -0400773 obj_desc = acpi_ns_get_attached_object(acpi_gbl_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400775 acpi_ns_detach_object(acpi_gbl_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
Len Brown4be44fc2005-08-05 00:44:28 -0400778 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Namespace freed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return_VOID;
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/*******************************************************************************
783 *
784 * FUNCTION: acpi_ns_opens_scope
785 *
786 * PARAMETERS: Type - A valid namespace type
787 *
788 * RETURN: NEWSCOPE if the passed type "opens a name scope" according
789 * to the ACPI specification, else 0
790 *
791 ******************************************************************************/
792
Len Brown4be44fc2005-08-05 00:44:28 -0400793u32 acpi_ns_opens_scope(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Bob Mooreb229cf92006-04-21 17:15:00 -0400795 ACPI_FUNCTION_TRACE_STR(ns_opens_scope, acpi_ut_get_type_name(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Len Brown4be44fc2005-08-05 00:44:28 -0400797 if (!acpi_ut_valid_object_type(type)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /* type code out of range */
800
Bob Mooreb8e4d892006-01-27 16:43:00 -0500801 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400802 return_UINT32(ACPI_NS_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804
Bob Moore50eca3e2005-09-30 19:03:00 -0400805 return_UINT32(((u32) acpi_gbl_ns_properties[type]) & ACPI_NS_NEWSCOPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808/*******************************************************************************
809 *
Bob Moore41195322006-05-26 16:36:00 -0400810 * FUNCTION: acpi_ns_get_node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 *
812 * PARAMETERS: *Pathname - Name to be found, in external (ASL) format. The
813 * \ (backslash) and ^ (carat) prefixes, and the
814 * . (period) to separate segments are supported.
Bob Moore41195322006-05-26 16:36:00 -0400815 * prefix_node - Root of subtree to be searched, or NS_ALL for the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * root of the name space. If Name is fully
817 * qualified (first s8 is '\'), the passed value
818 * of Scope will not be accessed.
819 * Flags - Used to indicate whether to perform upsearch or
820 * not.
821 * return_node - Where the Node is returned
822 *
823 * DESCRIPTION: Look up a name relative to a given scope and return the
824 * corresponding Node. NOTE: Scope can be null.
825 *
826 * MUTEX: Locks namespace
827 *
828 ******************************************************************************/
829
830acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400831acpi_ns_get_node(struct acpi_namespace_node *prefix_node,
Bob Moore4b8ed632008-06-10 13:55:53 +0800832 const char *pathname,
Bob Moore41195322006-05-26 16:36:00 -0400833 u32 flags, struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Len Brown4be44fc2005-08-05 00:44:28 -0400835 union acpi_generic_state scope_info;
836 acpi_status status;
Bob Moore41195322006-05-26 16:36:00 -0400837 char *internal_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Bob Moore41195322006-05-26 16:36:00 -0400839 ACPI_FUNCTION_TRACE_PTR(ns_get_node, pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Bob Moore41195322006-05-26 16:36:00 -0400841 if (!pathname) {
842 *return_node = prefix_node;
843 if (!prefix_node) {
844 *return_node = acpi_gbl_root_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
Bob Moore41195322006-05-26 16:36:00 -0400846 return_ACPI_STATUS(AE_OK);
847 }
848
849 /* Convert path to internal representation */
850
851 status = acpi_ns_internalize_name(pathname, &internal_path);
852 if (ACPI_FAILURE(status)) {
853 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
856 /* Must lock namespace during lookup */
857
Len Brown4be44fc2005-08-05 00:44:28 -0400858 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
859 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto cleanup;
861 }
862
863 /* Setup lookup scope (search starting point) */
864
Bob Moore41195322006-05-26 16:36:00 -0400865 scope_info.scope.node = prefix_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 /* Lookup the name in the namespace */
868
Bob Moore41195322006-05-26 16:36:00 -0400869 status = acpi_ns_lookup(&scope_info, internal_path, ACPI_TYPE_ANY,
870 ACPI_IMODE_EXECUTE,
871 (flags | ACPI_NS_DONT_OPEN_SCOPE), NULL,
872 return_node);
Len Brown4be44fc2005-08-05 00:44:28 -0400873 if (ACPI_FAILURE(status)) {
874 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "%s, %s\n",
Bob Moore41195322006-05-26 16:36:00 -0400875 pathname, acpi_format_exception(status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
Len Brown4be44fc2005-08-05 00:44:28 -0400878 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Len Brown4be44fc2005-08-05 00:44:28 -0400880 cleanup:
Bob Moore41195322006-05-26 16:36:00 -0400881 ACPI_FREE(internal_path);
Len Brown4be44fc2005-08-05 00:44:28 -0400882 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885/*******************************************************************************
886 *
Robert Moore44f6c012005-04-18 22:49:35 -0400887 * FUNCTION: acpi_ns_get_parent_node
888 *
889 * PARAMETERS: Node - Current table entry
890 *
891 * RETURN: Parent entry of the given entry
892 *
893 * DESCRIPTION: Obtain the parent entry for a given entry in the namespace.
894 *
895 ******************************************************************************/
896
Len Brown4be44fc2005-08-05 00:44:28 -0400897struct acpi_namespace_node *acpi_ns_get_parent_node(struct acpi_namespace_node
898 *node)
Robert Moore44f6c012005-04-18 22:49:35 -0400899{
Len Brown4be44fc2005-08-05 00:44:28 -0400900 ACPI_FUNCTION_ENTRY();
Robert Moore44f6c012005-04-18 22:49:35 -0400901
902 if (!node) {
903 return (NULL);
904 }
905
906 /*
907 * Walk to the end of this peer list. The last entry is marked with a flag
908 * and the peer pointer is really a pointer back to the parent. This saves
909 * putting a parent back pointer in each and every named object!
910 */
911 while (!(node->flags & ANOBJ_END_OF_PEER_LIST)) {
912 node = node->peer;
913 }
914
915 return (node->peer);
916}
917
Robert Moore44f6c012005-04-18 22:49:35 -0400918/*******************************************************************************
919 *
920 * FUNCTION: acpi_ns_get_next_valid_node
921 *
922 * PARAMETERS: Node - Current table entry
923 *
924 * RETURN: Next valid Node in the linked node list. NULL if no more valid
925 * nodes.
926 *
927 * DESCRIPTION: Find the next valid node within a name table.
928 * Useful for implementing NULL-end-of-list loops.
929 *
930 ******************************************************************************/
931
Len Brown4be44fc2005-08-05 00:44:28 -0400932struct acpi_namespace_node *acpi_ns_get_next_valid_node(struct
933 acpi_namespace_node
934 *node)
Robert Moore44f6c012005-04-18 22:49:35 -0400935{
936
937 /* If we are at the end of this peer list, return NULL */
938
939 if (node->flags & ANOBJ_END_OF_PEER_LIST) {
940 return NULL;
941 }
942
943 /* Otherwise just return the next peer */
944
945 return (node->peer);
946}
947
Robert Moore44f6c012005-04-18 22:49:35 -0400948#ifdef ACPI_OBSOLETE_FUNCTIONS
949/*******************************************************************************
950 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 * FUNCTION: acpi_ns_find_parent_name
952 *
953 * PARAMETERS: *child_node - Named Obj whose name is to be found
954 *
955 * RETURN: The ACPI name
956 *
957 * DESCRIPTION: Search for the given obj in its parent scope and return the
958 * name segment, or "????" if the parent name can't be found
959 * (which "should not happen").
960 *
961 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400962
Len Brown4be44fc2005-08-05 00:44:28 -0400963acpi_name acpi_ns_find_parent_name(struct acpi_namespace_node * child_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Len Brown4be44fc2005-08-05 00:44:28 -0400965 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Bob Mooreb229cf92006-04-21 17:15:00 -0400967 ACPI_FUNCTION_TRACE(ns_find_parent_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 if (child_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 /* Valid entry. Get the parent Node */
972
Len Brown4be44fc2005-08-05 00:44:28 -0400973 parent_node = acpi_ns_get_parent_node(child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (parent_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400975 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
976 "Parent of %p [%4.4s] is %p [%4.4s]\n",
977 child_node,
978 acpi_ut_get_node_name(child_node),
979 parent_node,
980 acpi_ut_get_node_name(parent_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 if (parent_node->name.integer) {
Len Brown4be44fc2005-08-05 00:44:28 -0400983 return_VALUE((acpi_name) parent_node->name.
984 integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986 }
987
Len Brown4be44fc2005-08-05 00:44:28 -0400988 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
989 "Unable to find parent of %p (%4.4s)\n",
990 child_node,
991 acpi_ut_get_node_name(child_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993
Len Brown4be44fc2005-08-05 00:44:28 -0400994 return_VALUE(ACPI_UNKNOWN_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996#endif