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