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