blob: 24d05a87a2a37c120e580537345cf331eb2eea92 [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/*
Bob Moorea8357b02010-01-22 19:07:36 +08009 * Copyright (C) 2000 - 2010, 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>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
47#include "acnamesp.h"
48#include "amlcode.h"
49#include "actables.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("nsutils")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Robert Moore44f6c012005-04-18 22:49:35 -040054/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040055static u8 acpi_ns_valid_path_separator(char sep);
Robert Moore44f6c012005-04-18 22:49:35 -040056
57#ifdef ACPI_OBSOLETE_FUNCTIONS
Len Brown4be44fc2005-08-05 00:44:28 -040058acpi_name acpi_ns_find_parent_name(struct acpi_namespace_node *node_to_search);
Robert Moore44f6c012005-04-18 22:49:35 -040059#endif
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*******************************************************************************
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)
Robert Moore44f6c012005-04-18 22:49:35 -040067 * internal_name - Name or path of the namespace node
68 * lookup_status - Exception code from NS lookup
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 *
70 * RETURN: None
71 *
72 * DESCRIPTION: Print warning message with full pathname
73 *
74 ******************************************************************************/
75
76void
Bob Moore4b8ed632008-06-10 13:55:53 +080077acpi_ns_report_error(const char *module_name,
Len Brown4be44fc2005-08-05 00:44:28 -040078 u32 line_number,
Bob Moore4b8ed632008-06-10 13:55:53 +080079 const char *internal_name, acpi_status lookup_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Len Brown4be44fc2005-08-05 00:44:28 -040081 acpi_status status;
Bob Mooreea936b72006-02-17 00:00:00 -050082 u32 bad_name;
Len Brown4be44fc2005-08-05 00:44:28 -040083 char *name = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Bob Moore61686122006-03-17 16:44:00 -050085 acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 if (lookup_status == AE_BAD_CHARACTER) {
Bob Moore52fc0b02006-10-02 00:00:00 -040088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 /* There is a non-ascii character in the name */
90
Bob Moore5853a9f2009-06-02 13:20:00 +080091 ACPI_MOVE_32_TO_32(&bad_name,
92 ACPI_CAST_PTR(u32, internal_name));
Bob Mooreea936b72006-02-17 00:00:00 -050093 acpi_os_printf("[0x%4.4X] (NON-ASCII)", bad_name);
Len Brown4be44fc2005-08-05 00:44:28 -040094 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /* Convert path to external format */
96
Len Brown4be44fc2005-08-05 00:44:28 -040097 status = acpi_ns_externalize_name(ACPI_UINT32_MAX,
98 internal_name, NULL, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* Print target name */
101
Len Brown4be44fc2005-08-05 00:44:28 -0400102 if (ACPI_SUCCESS(status)) {
103 acpi_os_printf("[%s]", name);
104 } else {
105 acpi_os_printf("[COULD NOT EXTERNALIZE NAME]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107
108 if (name) {
Bob Moore83135242006-10-03 00:00:00 -0400109 ACPI_FREE(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 }
112
Bob Mooreb8e4d892006-01-27 16:43:00 -0500113 acpi_os_printf(" Namespace lookup failure, %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400114 acpi_format_exception(lookup_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*******************************************************************************
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * Message - Error message to use on failure
Robert Moore44f6c012005-04-18 22:49:35 -0400124 * prefix_node - Prefix relative to the path
Bob Moore4a90c7e2006-01-13 16:22:00 -0500125 * Path - Path to the node (optional)
Robert Moore44f6c012005-04-18 22:49:35 -0400126 * method_status - Execution status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 *
128 * RETURN: None
129 *
130 * DESCRIPTION: Print warning message with full pathname
131 *
132 ******************************************************************************/
133
134void
Bob Moore4b8ed632008-06-10 13:55:53 +0800135acpi_ns_report_method_error(const char *module_name,
Len Brown4be44fc2005-08-05 00:44:28 -0400136 u32 line_number,
Bob Moore4b8ed632008-06-10 13:55:53 +0800137 const char *message,
Len Brown4be44fc2005-08-05 00:44:28 -0400138 struct acpi_namespace_node *prefix_node,
Bob Moore4b8ed632008-06-10 13:55:53 +0800139 const char *path, acpi_status method_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Len Brown4be44fc2005-08-05 00:44:28 -0400141 acpi_status status;
142 struct acpi_namespace_node *node = prefix_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Bob Moore61686122006-03-17 16:44:00 -0500144 acpi_os_printf("ACPI Error (%s-%04d): ", module_name, line_number);
Bob Moore4a90c7e2006-01-13 16:22:00 -0500145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (path) {
Bob Moore41195322006-05-26 16:36:00 -0400147 status =
148 acpi_ns_get_node(prefix_node, path, ACPI_NS_NO_UPSEARCH,
149 &node);
Len Brown4be44fc2005-08-05 00:44:28 -0400150 if (ACPI_FAILURE(status)) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500151 acpi_os_printf("[Could not get node by pathname]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153 }
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 acpi_ns_print_node_pathname(node, message);
156 acpi_os_printf(", %s\n", acpi_format_exception(method_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*******************************************************************************
160 *
161 * FUNCTION: acpi_ns_print_node_pathname
162 *
Robert Moore44f6c012005-04-18 22:49:35 -0400163 * PARAMETERS: Node - Object
164 * Message - Prefix message
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
166 * DESCRIPTION: Print an object's full namespace pathname
167 * Manages allocation/freeing of a pathname buffer
168 *
169 ******************************************************************************/
170
171void
Bob Moore4b8ed632008-06-10 13:55:53 +0800172acpi_ns_print_node_pathname(struct acpi_namespace_node *node,
173 const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Len Brown4be44fc2005-08-05 00:44:28 -0400175 struct acpi_buffer buffer;
176 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 if (!node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400179 acpi_os_printf("[NULL NAME]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return;
181 }
182
183 /* Convert handle to full pathname and print it (with supplied message) */
184
185 buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
186
Len Brown4be44fc2005-08-05 00:44:28 -0400187 status = acpi_ns_handle_to_pathname(node, &buffer);
188 if (ACPI_SUCCESS(status)) {
Robert Moore44f6c012005-04-18 22:49:35 -0400189 if (message) {
Len Brown4be44fc2005-08-05 00:44:28 -0400190 acpi_os_printf("%s ", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
Len Brown4be44fc2005-08-05 00:44:28 -0400193 acpi_os_printf("[%s] (Node %p)", (char *)buffer.pointer, node);
Bob Moore83135242006-10-03 00:00:00 -0400194 ACPI_FREE(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*******************************************************************************
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
Len Brown4be44fc2005-08-05 00:44:28 -0400210u8 acpi_ns_valid_root_prefix(char prefix)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212
213 return ((u8) (prefix == '\\'));
214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*******************************************************************************
217 *
218 * FUNCTION: acpi_ns_valid_path_separator
219 *
Robert Moore44f6c012005-04-18 22:49:35 -0400220 * PARAMETERS: Sep - Character to be checked
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 *
222 * RETURN: TRUE if a valid path separator
223 *
224 * DESCRIPTION: Check if a character is a valid ACPI path separator
225 *
226 ******************************************************************************/
227
Len Brown4be44fc2005-08-05 00:44:28 -0400228static u8 acpi_ns_valid_path_separator(char sep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230
231 return ((u8) (sep == '.'));
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/*******************************************************************************
235 *
236 * FUNCTION: acpi_ns_get_type
237 *
Robert Moore44f6c012005-04-18 22:49:35 -0400238 * PARAMETERS: Node - Parent Node to be examined
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *
240 * RETURN: Type field from Node whose handle is passed
241 *
Robert Moore44f6c012005-04-18 22:49:35 -0400242 * DESCRIPTION: Return the type of a Namespace node
243 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 ******************************************************************************/
245
Len Brown4be44fc2005-08-05 00:44:28 -0400246acpi_object_type acpi_ns_get_type(struct acpi_namespace_node * node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Bob Mooreb229cf92006-04-21 17:15:00 -0400248 ACPI_FUNCTION_TRACE(ns_get_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if (!node) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500251 ACPI_WARNING((AE_INFO, "Null Node parameter"));
Bob Moore50eca3e2005-09-30 19:03:00 -0400252 return_UINT32(ACPI_TYPE_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
Bob Moore50eca3e2005-09-30 19:03:00 -0400255 return_UINT32((acpi_object_type) node->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/*******************************************************************************
259 *
260 * FUNCTION: acpi_ns_local
261 *
Robert Moore44f6c012005-04-18 22:49:35 -0400262 * PARAMETERS: Type - A namespace object type
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
264 * RETURN: LOCAL if names must be found locally in objects of the
265 * passed type, 0 if enclosing scopes should be searched
266 *
Robert Moore44f6c012005-04-18 22:49:35 -0400267 * DESCRIPTION: Returns scope rule for the given object type.
268 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 ******************************************************************************/
270
Len Brown4be44fc2005-08-05 00:44:28 -0400271u32 acpi_ns_local(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Bob Mooreb229cf92006-04-21 17:15:00 -0400273 ACPI_FUNCTION_TRACE(ns_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 if (!acpi_ut_valid_object_type(type)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* Type code out of range */
278
Bob Mooreb8e4d892006-01-27 16:43:00 -0500279 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400280 return_UINT32(ACPI_NS_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282
Bob Moore50eca3e2005-09-30 19:03:00 -0400283 return_UINT32((u32) acpi_gbl_ns_properties[type] & ACPI_NS_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*******************************************************************************
287 *
288 * FUNCTION: acpi_ns_get_internal_name_length
289 *
290 * PARAMETERS: Info - Info struct initialized with the
291 * external name pointer.
292 *
Robert Moore44f6c012005-04-18 22:49:35 -0400293 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
295 * DESCRIPTION: Calculate the length of the internal (AML) namestring
296 * corresponding to the external (ASL) namestring.
297 *
298 ******************************************************************************/
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300void acpi_ns_get_internal_name_length(struct acpi_namestring_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Bob Moore4b8ed632008-06-10 13:55:53 +0800302 const char *next_external_char;
Len Brown4be44fc2005-08-05 00:44:28 -0400303 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Len Brown4be44fc2005-08-05 00:44:28 -0400305 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
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 */
Lin Mingd037c5f2008-11-13 10:54:39 +0800319 if (acpi_ns_valid_root_prefix(*next_external_char)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 info->fully_qualified = TRUE;
321 next_external_char++;
Lin Mingd037c5f2008-11-13 10:54:39 +0800322
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 }
Len Brown4be44fc2005-08-05 00:44:28 -0400328 } else {
Bob Moored4913dc2009-03-06 10:05:18 +0800329 /* Handle Carat prefixes */
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 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++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400345 if (acpi_ns_valid_path_separator(next_external_char[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 info->num_segments++;
347 }
348 }
349 }
350
351 info->length = (ACPI_NAME_SIZE * info->num_segments) +
Len Brown4be44fc2005-08-05 00:44:28 -0400352 4 + info->num_carats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 info->next_external_char = next_external_char;
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/*******************************************************************************
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
Len Brown4be44fc2005-08-05 00:44:28 -0400370acpi_status acpi_ns_build_internal_name(struct acpi_namestring_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Len Brown4be44fc2005-08-05 00:44:28 -0400372 u32 num_segments = info->num_segments;
373 char *internal_name = info->internal_name;
Bob Moore4b8ed632008-06-10 13:55:53 +0800374 const char *external_name = info->next_external_char;
Len Brown4be44fc2005-08-05 00:44:28 -0400375 char *result = NULL;
Bob Moore67a119f2008-06-10 13:42:13 +0800376 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Bob Mooreb229cf92006-04-21 17:15:00 -0400378 ACPI_FUNCTION_TRACE(ns_build_internal_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
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];
Len Brown4be44fc2005-08-05 00:44:28 -0400387 } else if (num_segments == 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 internal_name[1] = AML_DUAL_NAME_PREFIX;
389 result = &internal_name[2];
Len Brown4be44fc2005-08-05 00:44:28 -0400390 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 internal_name[1] = AML_MULTI_NAME_PREFIX_OP;
Len Brown4be44fc2005-08-05 00:44:28 -0400392 internal_name[2] = (char)num_segments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 result = &internal_name[3];
394 }
Len Brown4be44fc2005-08-05 00:44:28 -0400395 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /*
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];
Len Brown4be44fc2005-08-05 00:44:28 -0400409 } else if (num_segments == 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 internal_name[i] = AML_DUAL_NAME_PREFIX;
Bob Moore67a119f2008-06-10 13:42:13 +0800411 result = &internal_name[(acpi_size) i + 1];
Len Brown4be44fc2005-08-05 00:44:28 -0400412 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 internal_name[i] = AML_MULTI_NAME_PREFIX_OP;
Bob Moore67a119f2008-06-10 13:42:13 +0800414 internal_name[(acpi_size) i + 1] = (char)num_segments;
415 result = &internal_name[(acpi_size) i + 2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
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++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400423 if (acpi_ns_valid_path_separator(*external_name) ||
424 (*external_name == 0)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* Pad the segment with underscore(s) if segment is short */
427
428 result[i] = '_';
Len Brown4be44fc2005-08-05 00:44:28 -0400429 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* Convert the character to uppercase and save it */
431
Len Brown4be44fc2005-08-05 00:44:28 -0400432 result[i] =
433 (char)ACPI_TOUPPER((int)*external_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 external_name++;
435 }
436 }
437
438 /* Now we must have a path separator, or the pathname is bad */
439
Len Brown4be44fc2005-08-05 00:44:28 -0400440 if (!acpi_ns_valid_path_separator(*external_name) &&
441 (*external_name != 0)) {
442 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
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) {
Len Brown4be44fc2005-08-05 00:44:28 -0400456 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
Len Brown4be44fc2005-08-05 00:44:28 -0400464 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/*******************************************************************************
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
Bob Moore4b8ed632008-06-10 13:55:53 +0800482acpi_status
483acpi_ns_internalize_name(const char *external_name, char **converted_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Len Brown4be44fc2005-08-05 00:44:28 -0400485 char *internal_name;
486 struct acpi_namestring_info info;
487 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Bob Mooreb229cf92006-04-21 17:15:00 -0400489 ACPI_FUNCTION_TRACE(ns_internalize_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Len Brown4be44fc2005-08-05 00:44:28 -0400491 if ((!external_name) || (*external_name == 0) || (!converted_name)) {
492 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494
495 /* Get the length of the new internal name */
496
497 info.external_name = external_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400498 acpi_ns_get_internal_name_length(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 /* We need a segment to store the internal name */
501
Bob Moore83135242006-10-03 00:00:00 -0400502 internal_name = ACPI_ALLOCATE_ZEROED(info.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (!internal_name) {
Len Brown4be44fc2005-08-05 00:44:28 -0400504 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 /* Build the name */
508
509 info.internal_name = internal_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400510 status = acpi_ns_build_internal_name(&info);
511 if (ACPI_FAILURE(status)) {
Bob Moore83135242006-10-03 00:00:00 -0400512 ACPI_FREE(internal_name);
Len Brown4be44fc2005-08-05 00:44:28 -0400513 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
516 *converted_name = internal_name;
Len Brown4be44fc2005-08-05 00:44:28 -0400517 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*******************************************************************************
521 *
522 * FUNCTION: acpi_ns_externalize_name
523 *
Robert Moore44f6c012005-04-18 22:49:35 -0400524 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 *
530 * RETURN: Status
531 *
532 * DESCRIPTION: Convert internal name (e.g. 5c 2f 02 5f 50 52 5f 43 50 55 30)
Robert Moore44f6c012005-04-18 22:49:35 -0400533 * to its external (printable) form (e.g. "\_PR_.CPU0")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 *
535 ******************************************************************************/
536
537acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400538acpi_ns_externalize_name(u32 internal_name_length,
Bob Moore4b8ed632008-06-10 13:55:53 +0800539 const char *internal_name,
Len Brown4be44fc2005-08-05 00:44:28 -0400540 u32 * converted_name_length, char **converted_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Bob Moore67a119f2008-06-10 13:42:13 +0800542 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Bob Mooreb229cf92006-04-21 17:15:00 -0400549 ACPI_FUNCTION_TRACE(ns_externalize_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Len Brown4be44fc2005-08-05 00:44:28 -0400551 if (!internal_name_length || !internal_name || !converted_name) {
552 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Bob Moored4913dc2009-03-06 10:05:18 +0800555 /* Check for a prefix (one '\' | one or more '^') */
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 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 /*
Bob Moored4913dc2009-03-06 10:05:18 +0800582 * Check for object names. Note that there could be 0-255 of these
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * 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
Bob Moored4913dc2009-03-06 10:05:18 +0800639 /* Build the converted_name */
640
Bob Moore83135242006-10-03 00:00:00 -0400641 *converted_name = ACPI_ALLOCATE_ZEROED(required_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (!(*converted_name)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400643 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
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
Len Brown4be44fc2005-08-05 00:44:28 -0400669 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/*******************************************************************************
673 *
Bob Mooref24b6642009-12-11 14:57:00 +0800674 * FUNCTION: acpi_ns_validate_handle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 *
Bob Mooref24b6642009-12-11 14:57:00 +0800676 * PARAMETERS: Handle - Handle to be validated and typecast to a
677 * namespace node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 *
Bob Mooref24b6642009-12-11 14:57:00 +0800679 * RETURN: A pointer to a namespace node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 *
Bob Mooref24b6642009-12-11 14:57:00 +0800681 * DESCRIPTION: Convert a namespace handle to a namespace node. Handles special
682 * cases for the root node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 *
Bob Mooref24b6642009-12-11 14:57:00 +0800684 * NOTE: Real integer handles would allow for more verification
Robert Moore44f6c012005-04-18 22:49:35 -0400685 * and keep all pointers within this subsystem - however this introduces
Bob Mooref24b6642009-12-11 14:57:00 +0800686 * more overhead and has not been necessary to this point. Drivers
687 * holding handles are typically notified before a node becomes invalid
688 * due to a table unload.
Bob Moored4913dc2009-03-06 10:05:18 +0800689 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 ******************************************************************************/
691
Bob Mooref24b6642009-12-11 14:57:00 +0800692struct acpi_namespace_node *acpi_ns_validate_handle(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694
Len Brown4be44fc2005-08-05 00:44:28 -0400695 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Bob Moored4913dc2009-03-06 10:05:18 +0800697 /* Parameter validation */
698
Bob Moore41195322006-05-26 16:36:00 -0400699 if ((!handle) || (handle == ACPI_ROOT_OBJECT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return (acpi_gbl_root_node);
701 }
702
703 /* We can at least attempt to verify the handle */
704
Len Brown4be44fc2005-08-05 00:44:28 -0400705 if (ACPI_GET_DESCRIPTOR_TYPE(handle) != ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return (NULL);
707 }
708
Bob Moore41195322006-05-26 16:36:00 -0400709 return (ACPI_CAST_PTR(struct acpi_namespace_node, handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712/*******************************************************************************
713 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * FUNCTION: acpi_ns_terminate
715 *
716 * PARAMETERS: none
717 *
718 * RETURN: none
719 *
Robert Moore44f6c012005-04-18 22:49:35 -0400720 * DESCRIPTION: free memory allocated for namespace and ACPI table storage.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 *
722 ******************************************************************************/
723
Len Brown4be44fc2005-08-05 00:44:28 -0400724void acpi_ns_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Len Brown4be44fc2005-08-05 00:44:28 -0400726 union acpi_operand_object *obj_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Bob Mooreb229cf92006-04-21 17:15:00 -0400728 ACPI_FUNCTION_TRACE(ns_terminate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /*
731 * 1) Free the entire namespace -- all nodes and objects
732 *
733 * Delete all object descriptors attached to namepsace nodes
734 */
Len Brown4be44fc2005-08-05 00:44:28 -0400735 acpi_ns_delete_namespace_subtree(acpi_gbl_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /* Detach any objects attached to the root */
738
Len Brown4be44fc2005-08-05 00:44:28 -0400739 obj_desc = acpi_ns_get_attached_object(acpi_gbl_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400741 acpi_ns_detach_object(acpi_gbl_root_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
Len Brown4be44fc2005-08-05 00:44:28 -0400744 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Namespace freed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return_VOID;
746}
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748/*******************************************************************************
749 *
750 * FUNCTION: acpi_ns_opens_scope
751 *
752 * PARAMETERS: Type - A valid namespace type
753 *
754 * RETURN: NEWSCOPE if the passed type "opens a name scope" according
755 * to the ACPI specification, else 0
756 *
757 ******************************************************************************/
758
Len Brown4be44fc2005-08-05 00:44:28 -0400759u32 acpi_ns_opens_scope(acpi_object_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Bob Mooreb229cf92006-04-21 17:15:00 -0400761 ACPI_FUNCTION_TRACE_STR(ns_opens_scope, acpi_ut_get_type_name(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Len Brown4be44fc2005-08-05 00:44:28 -0400763 if (!acpi_ut_valid_object_type(type)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /* type code out of range */
766
Bob Mooreb8e4d892006-01-27 16:43:00 -0500767 ACPI_WARNING((AE_INFO, "Invalid Object Type %X", type));
Bob Moore50eca3e2005-09-30 19:03:00 -0400768 return_UINT32(ACPI_NS_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
Bob Moore50eca3e2005-09-30 19:03:00 -0400771 return_UINT32(((u32) acpi_gbl_ns_properties[type]) & ACPI_NS_NEWSCOPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/*******************************************************************************
775 *
Bob Moore41195322006-05-26 16:36:00 -0400776 * FUNCTION: acpi_ns_get_node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 *
778 * PARAMETERS: *Pathname - Name to be found, in external (ASL) format. The
779 * \ (backslash) and ^ (carat) prefixes, and the
780 * . (period) to separate segments are supported.
Bob Moore41195322006-05-26 16:36:00 -0400781 * prefix_node - Root of subtree to be searched, or NS_ALL for the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * root of the name space. If Name is fully
783 * qualified (first s8 is '\'), the passed value
784 * of Scope will not be accessed.
785 * Flags - Used to indicate whether to perform upsearch or
786 * not.
787 * return_node - Where the Node is returned
788 *
789 * DESCRIPTION: Look up a name relative to a given scope and return the
790 * corresponding Node. NOTE: Scope can be null.
791 *
792 * MUTEX: Locks namespace
793 *
794 ******************************************************************************/
795
796acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400797acpi_ns_get_node(struct acpi_namespace_node *prefix_node,
Bob Moore4b8ed632008-06-10 13:55:53 +0800798 const char *pathname,
Bob Moore41195322006-05-26 16:36:00 -0400799 u32 flags, struct acpi_namespace_node **return_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Len Brown4be44fc2005-08-05 00:44:28 -0400801 union acpi_generic_state scope_info;
802 acpi_status status;
Bob Moore41195322006-05-26 16:36:00 -0400803 char *internal_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Bob Moore5853a9f2009-06-02 13:20:00 +0800805 ACPI_FUNCTION_TRACE_PTR(ns_get_node, ACPI_CAST_PTR(char, pathname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Bob Moore41195322006-05-26 16:36:00 -0400807 if (!pathname) {
808 *return_node = prefix_node;
809 if (!prefix_node) {
810 *return_node = acpi_gbl_root_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
Bob Moore41195322006-05-26 16:36:00 -0400812 return_ACPI_STATUS(AE_OK);
813 }
814
815 /* Convert path to internal representation */
816
817 status = acpi_ns_internalize_name(pathname, &internal_path);
818 if (ACPI_FAILURE(status)) {
819 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
822 /* Must lock namespace during lookup */
823
Len Brown4be44fc2005-08-05 00:44:28 -0400824 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
825 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto cleanup;
827 }
828
829 /* Setup lookup scope (search starting point) */
830
Bob Moore41195322006-05-26 16:36:00 -0400831 scope_info.scope.node = prefix_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 /* Lookup the name in the namespace */
834
Bob Moore41195322006-05-26 16:36:00 -0400835 status = acpi_ns_lookup(&scope_info, internal_path, ACPI_TYPE_ANY,
836 ACPI_IMODE_EXECUTE,
837 (flags | ACPI_NS_DONT_OPEN_SCOPE), NULL,
838 return_node);
Len Brown4be44fc2005-08-05 00:44:28 -0400839 if (ACPI_FAILURE(status)) {
Bob Moore7bcc06e2009-02-18 14:58:08 +0800840 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%s, %s\n",
Bob Moore41195322006-05-26 16:36:00 -0400841 pathname, acpi_format_exception(status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
Len Brown4be44fc2005-08-05 00:44:28 -0400844 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Len Brown4be44fc2005-08-05 00:44:28 -0400846 cleanup:
Bob Moore41195322006-05-26 16:36:00 -0400847 ACPI_FREE(internal_path);
Len Brown4be44fc2005-08-05 00:44:28 -0400848 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851/*******************************************************************************
852 *
Robert Moore44f6c012005-04-18 22:49:35 -0400853 * FUNCTION: acpi_ns_get_parent_node
854 *
855 * PARAMETERS: Node - Current table entry
856 *
857 * RETURN: Parent entry of the given entry
858 *
859 * DESCRIPTION: Obtain the parent entry for a given entry in the namespace.
860 *
861 ******************************************************************************/
862
Len Brown4be44fc2005-08-05 00:44:28 -0400863struct acpi_namespace_node *acpi_ns_get_parent_node(struct acpi_namespace_node
864 *node)
Robert Moore44f6c012005-04-18 22:49:35 -0400865{
Len Brown4be44fc2005-08-05 00:44:28 -0400866 ACPI_FUNCTION_ENTRY();
Robert Moore44f6c012005-04-18 22:49:35 -0400867
868 if (!node) {
869 return (NULL);
870 }
871
872 /*
873 * Walk to the end of this peer list. The last entry is marked with a flag
874 * and the peer pointer is really a pointer back to the parent. This saves
875 * putting a parent back pointer in each and every named object!
876 */
877 while (!(node->flags & ANOBJ_END_OF_PEER_LIST)) {
878 node = node->peer;
879 }
880
881 return (node->peer);
882}
883
Robert Moore44f6c012005-04-18 22:49:35 -0400884/*******************************************************************************
885 *
886 * FUNCTION: acpi_ns_get_next_valid_node
887 *
888 * PARAMETERS: Node - Current table entry
889 *
890 * RETURN: Next valid Node in the linked node list. NULL if no more valid
891 * nodes.
892 *
893 * DESCRIPTION: Find the next valid node within a name table.
894 * Useful for implementing NULL-end-of-list loops.
895 *
896 ******************************************************************************/
897
Len Brown4be44fc2005-08-05 00:44:28 -0400898struct acpi_namespace_node *acpi_ns_get_next_valid_node(struct
899 acpi_namespace_node
900 *node)
Robert Moore44f6c012005-04-18 22:49:35 -0400901{
902
903 /* If we are at the end of this peer list, return NULL */
904
905 if (node->flags & ANOBJ_END_OF_PEER_LIST) {
906 return NULL;
907 }
908
909 /* Otherwise just return the next peer */
910
911 return (node->peer);
912}
913
Robert Moore44f6c012005-04-18 22:49:35 -0400914#ifdef ACPI_OBSOLETE_FUNCTIONS
915/*******************************************************************************
916 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 * FUNCTION: acpi_ns_find_parent_name
918 *
919 * PARAMETERS: *child_node - Named Obj whose name is to be found
920 *
921 * RETURN: The ACPI name
922 *
923 * DESCRIPTION: Search for the given obj in its parent scope and return the
924 * name segment, or "????" if the parent name can't be found
925 * (which "should not happen").
926 *
927 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400928
Len Brown4be44fc2005-08-05 00:44:28 -0400929acpi_name acpi_ns_find_parent_name(struct acpi_namespace_node * child_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Len Brown4be44fc2005-08-05 00:44:28 -0400931 struct acpi_namespace_node *parent_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Bob Mooreb229cf92006-04-21 17:15:00 -0400933 ACPI_FUNCTION_TRACE(ns_find_parent_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (child_node) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /* Valid entry. Get the parent Node */
938
Len Brown4be44fc2005-08-05 00:44:28 -0400939 parent_node = acpi_ns_get_parent_node(child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (parent_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400941 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
942 "Parent of %p [%4.4s] is %p [%4.4s]\n",
943 child_node,
944 acpi_ut_get_node_name(child_node),
945 parent_node,
946 acpi_ut_get_node_name(parent_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (parent_node->name.integer) {
Len Brown4be44fc2005-08-05 00:44:28 -0400949 return_VALUE((acpi_name) parent_node->name.
950 integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952 }
953
Len Brown4be44fc2005-08-05 00:44:28 -0400954 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
955 "Unable to find parent of %p (%4.4s)\n",
956 child_node,
957 acpi_ut_get_node_name(child_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959
Len Brown4be44fc2005-08-05 00:44:28 -0400960 return_VALUE(ACPI_UNKNOWN_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962#endif