Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: psargs - Parse AML opcode arguments |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
Len Brown | 75a44ce | 2008-04-23 23:00:13 -0400 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2008, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions, and the following disclaimer, |
| 16 | * without modification. |
| 17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 18 | * substantially similar to the "NO WARRANTY" disclaimer below |
| 19 | * ("Disclaimer") and any redistribution must be conditioned upon |
| 20 | * including a substantially similar Disclaimer requirement for further |
| 21 | * binary redistribution. |
| 22 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 23 | * of any contributors may be used to endorse or promote products derived |
| 24 | * from this software without specific prior written permission. |
| 25 | * |
| 26 | * Alternatively, this software may be distributed under the terms of the |
| 27 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 28 | * Software Foundation. |
| 29 | * |
| 30 | * NO WARRANTY |
| 31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR |
| 34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 35 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 36 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 37 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 38 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 39 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| 40 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 41 | * POSSIBILITY OF SUCH DAMAGES. |
| 42 | */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/acpi.h> |
| 45 | #include <acpi/acparser.h> |
| 46 | #include <acpi/amlcode.h> |
| 47 | #include <acpi/acnamesp.h> |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 48 | #include <acpi/acdispat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | #define _COMPONENT ACPI_PARSER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | ACPI_MODULE_NAME("psargs") |
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 */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 54 | static u32 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | acpi_ps_get_next_package_length(struct acpi_parse_state *parser_state); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 56 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 57 | static union acpi_parse_object *acpi_ps_get_next_field(struct acpi_parse_state |
| 58 | *parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | /******************************************************************************* |
| 61 | * |
| 62 | * FUNCTION: acpi_ps_get_next_package_length |
| 63 | * |
| 64 | * PARAMETERS: parser_state - Current parser state object |
| 65 | * |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 66 | * RETURN: Decoded package length. On completion, the AML pointer points |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | * past the length byte or bytes. |
| 68 | * |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 69 | * DESCRIPTION: Decode and return a package length field. |
| 70 | * Note: Largest package length is 28 bits, from ACPI specification |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | * |
| 72 | ******************************************************************************/ |
| 73 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 74 | static u32 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 75 | acpi_ps_get_next_package_length(struct acpi_parse_state *parser_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 77 | u8 *aml = parser_state->aml; |
| 78 | u32 package_length = 0; |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame^] | 79 | u32 byte_count; |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 80 | u8 byte_zero_mask = 0x3F; /* Default [0:5] */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 82 | ACPI_FUNCTION_TRACE(ps_get_next_package_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 84 | /* |
| 85 | * Byte 0 bits [6:7] contain the number of additional bytes |
| 86 | * used to encode the package length, either 0,1,2, or 3 |
| 87 | */ |
| 88 | byte_count = (aml[0] >> 6); |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame^] | 89 | parser_state->aml += ((acpi_size) byte_count + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 91 | /* Get bytes 3, 2, 1 as needed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 93 | while (byte_count) { |
| 94 | /* |
| 95 | * Final bit positions for the package length bytes: |
| 96 | * Byte3->[20:27] |
| 97 | * Byte2->[12:19] |
| 98 | * Byte1->[04:11] |
| 99 | * Byte0->[00:03] |
| 100 | */ |
| 101 | package_length |= (aml[byte_count] << ((byte_count << 3) - 4)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 103 | byte_zero_mask = 0x0F; /* Use bits [0:3] of byte 0 */ |
| 104 | byte_count--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 107 | /* Byte 0 is a special case, either bits [0:3] or [0:5] are used */ |
| 108 | |
| 109 | package_length |= (aml[0] & byte_zero_mask); |
| 110 | return_UINT32(package_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | /******************************************************************************* |
| 114 | * |
| 115 | * FUNCTION: acpi_ps_get_next_package_end |
| 116 | * |
| 117 | * PARAMETERS: parser_state - Current parser state object |
| 118 | * |
| 119 | * RETURN: Pointer to end-of-package +1 |
| 120 | * |
| 121 | * DESCRIPTION: Get next package length and return a pointer past the end of |
| 122 | * the package. Consumes the package length field |
| 123 | * |
| 124 | ******************************************************************************/ |
| 125 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | u8 *acpi_ps_get_next_package_end(struct acpi_parse_state *parser_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 128 | u8 *start = parser_state->aml; |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 129 | u32 package_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 131 | ACPI_FUNCTION_TRACE(ps_get_next_package_end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 133 | /* Function below updates parser_state->Aml */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 135 | package_length = acpi_ps_get_next_package_length(parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 137 | return_PTR(start + package_length); /* end of package */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /******************************************************************************* |
| 141 | * |
| 142 | * FUNCTION: acpi_ps_get_next_namestring |
| 143 | * |
| 144 | * PARAMETERS: parser_state - Current parser state object |
| 145 | * |
| 146 | * RETURN: Pointer to the start of the name string (pointer points into |
| 147 | * the AML. |
| 148 | * |
| 149 | * DESCRIPTION: Get next raw namestring within the AML stream. Handles all name |
| 150 | * prefix characters. Set parser state to point past the string. |
| 151 | * (Name is consumed from the AML.) |
| 152 | * |
| 153 | ******************************************************************************/ |
| 154 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | char *acpi_ps_get_next_namestring(struct acpi_parse_state *parser_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 157 | u8 *start = parser_state->aml; |
| 158 | u8 *end = parser_state->aml; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 160 | ACPI_FUNCTION_TRACE(ps_get_next_namestring); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 162 | /* Point past any namestring prefix characters (backslash or carat) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 164 | while (acpi_ps_is_prefix_char(*end)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | end++; |
| 166 | } |
| 167 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 168 | /* Decode the path prefix character */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 170 | switch (*end) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | case 0: |
| 172 | |
| 173 | /* null_name */ |
| 174 | |
| 175 | if (end == start) { |
| 176 | start = NULL; |
| 177 | } |
| 178 | end++; |
| 179 | break; |
| 180 | |
| 181 | case AML_DUAL_NAME_PREFIX: |
| 182 | |
| 183 | /* Two name segments */ |
| 184 | |
| 185 | end += 1 + (2 * ACPI_NAME_SIZE); |
| 186 | break; |
| 187 | |
| 188 | case AML_MULTI_NAME_PREFIX_OP: |
| 189 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 190 | /* Multiple name segments, 4 chars each, count in next byte */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 192 | end += 2 + (*(end + 1) * ACPI_NAME_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | break; |
| 194 | |
| 195 | default: |
| 196 | |
| 197 | /* Single name segment */ |
| 198 | |
| 199 | end += ACPI_NAME_SIZE; |
| 200 | break; |
| 201 | } |
| 202 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 203 | parser_state->aml = end; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 204 | return_PTR((char *)start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /******************************************************************************* |
| 208 | * |
| 209 | * FUNCTION: acpi_ps_get_next_namepath |
| 210 | * |
| 211 | * PARAMETERS: parser_state - Current parser state object |
| 212 | * Arg - Where the namepath will be stored |
| 213 | * arg_count - If the namepath points to a control method |
| 214 | * the method's argument is returned here. |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 215 | * possible_method_call - Whether the namepath can possibly be the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * start of a method call |
| 217 | * |
| 218 | * RETURN: Status |
| 219 | * |
| 220 | * DESCRIPTION: Get next name (if method call, return # of required args). |
| 221 | * Names are looked up in the internal namespace to determine |
| 222 | * if the name represents a control method. If a method |
| 223 | * is found, the number of arguments to the method is returned. |
| 224 | * This information is critical for parsing to continue correctly. |
| 225 | * |
| 226 | ******************************************************************************/ |
| 227 | |
| 228 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 229 | acpi_ps_get_next_namepath(struct acpi_walk_state *walk_state, |
| 230 | struct acpi_parse_state *parser_state, |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 231 | union acpi_parse_object *arg, u8 possible_method_call) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Lin Ming | 1480882 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 233 | acpi_status status; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | char *path; |
| 235 | union acpi_parse_object *name_op; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 236 | union acpi_operand_object *method_desc; |
| 237 | struct acpi_namespace_node *node; |
Lin Ming | bc7a36a | 2008-04-10 19:06:42 +0400 | [diff] [blame] | 238 | u8 *start = parser_state->aml; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 240 | ACPI_FUNCTION_TRACE(ps_get_next_namepath); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 242 | path = acpi_ps_get_next_namestring(parser_state); |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 243 | acpi_ps_init_op(arg, AML_INT_NAMEPATH_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 245 | /* Null path case is allowed, just exit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 247 | if (!path) { |
| 248 | arg->common.value.name = path; |
| 249 | return_ACPI_STATUS(AE_OK); |
| 250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | /* |
Lin Ming | 1480882 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 253 | * Lookup the name in the internal namespace, starting with the current |
| 254 | * scope. We don't want to add anything new to the namespace here, |
| 255 | * however, so we use MODE_EXECUTE. |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 256 | * Allow searching of the parent tree, but don't open a new scope - |
| 257 | * we just want to lookup the object (must be mode EXECUTE to perform |
| 258 | * the upsearch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | */ |
Lin Ming | 1480882 | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 260 | status = acpi_ns_lookup(walk_state->scope_info, path, |
| 261 | ACPI_TYPE_ANY, ACPI_IMODE_EXECUTE, |
| 262 | ACPI_NS_SEARCH_PARENT | ACPI_NS_DONT_OPEN_SCOPE, |
| 263 | NULL, &node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 265 | /* |
| 266 | * If this name is a control method invocation, we must |
| 267 | * setup the method call |
| 268 | */ |
| 269 | if (ACPI_SUCCESS(status) && |
| 270 | possible_method_call && (node->type == ACPI_TYPE_METHOD)) { |
Bob Moore | 8410565 | 2008-06-10 14:29:26 +0800 | [diff] [blame] | 271 | if (walk_state->opcode == AML_UNLOAD_OP) { |
Lin Ming | bc7a36a | 2008-04-10 19:06:42 +0400 | [diff] [blame] | 272 | /* |
| 273 | * acpi_ps_get_next_namestring has increased the AML pointer, |
| 274 | * so we need to restore the saved AML pointer for method call. |
| 275 | */ |
| 276 | walk_state->parser_state.aml = start; |
| 277 | walk_state->arg_count = 1; |
| 278 | acpi_ps_init_op(arg, AML_INT_METHODCALL_OP); |
| 279 | return_ACPI_STATUS(AE_OK); |
| 280 | } |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 281 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 282 | /* This name is actually a control method invocation */ |
| 283 | |
| 284 | method_desc = acpi_ns_get_attached_object(node); |
| 285 | ACPI_DEBUG_PRINT((ACPI_DB_PARSE, |
| 286 | "Control Method - %p Desc %p Path=%p\n", node, |
| 287 | method_desc, path)); |
| 288 | |
| 289 | name_op = acpi_ps_alloc_op(AML_INT_NAMEPATH_OP); |
| 290 | if (!name_op) { |
| 291 | return_ACPI_STATUS(AE_NO_MEMORY); |
| 292 | } |
| 293 | |
| 294 | /* Change Arg into a METHOD CALL and attach name to it */ |
| 295 | |
| 296 | acpi_ps_init_op(arg, AML_INT_METHODCALL_OP); |
| 297 | name_op->common.value.name = path; |
| 298 | |
| 299 | /* Point METHODCALL/NAME to the METHOD Node */ |
| 300 | |
| 301 | name_op->common.node = node; |
| 302 | acpi_ps_append_arg(arg, name_op); |
| 303 | |
| 304 | if (!method_desc) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 305 | ACPI_ERROR((AE_INFO, |
| 306 | "Control Method %p has no attached object", |
| 307 | node)); |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 308 | return_ACPI_STATUS(AE_AML_INTERNAL); |
| 309 | } |
| 310 | |
| 311 | ACPI_DEBUG_PRINT((ACPI_DB_PARSE, |
| 312 | "Control Method - %p Args %X\n", |
| 313 | node, method_desc->method.param_count)); |
| 314 | |
| 315 | /* Get the number of arguments to expect */ |
| 316 | |
| 317 | walk_state->arg_count = method_desc->method.param_count; |
| 318 | return_ACPI_STATUS(AE_OK); |
| 319 | } |
| 320 | |
| 321 | /* |
| 322 | * Special handling if the name was not found during the lookup - |
| 323 | * some not_found cases are allowed |
| 324 | */ |
| 325 | if (status == AE_NOT_FOUND) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 326 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 327 | /* 1) not_found is ok during load pass 1/2 (allow forward references) */ |
| 328 | |
| 329 | if ((walk_state->parse_flags & ACPI_PARSE_MODE_MASK) != |
| 330 | ACPI_PARSE_EXECUTE) { |
| 331 | status = AE_OK; |
| 332 | } |
| 333 | |
| 334 | /* 2) not_found during a cond_ref_of(x) is ok by definition */ |
| 335 | |
| 336 | else if (walk_state->op->common.aml_opcode == |
| 337 | AML_COND_REF_OF_OP) { |
| 338 | status = AE_OK; |
| 339 | } |
| 340 | |
| 341 | /* |
| 342 | * 3) not_found while building a Package is ok at this point, we |
| 343 | * may flag as an error later if slack mode is not enabled. |
| 344 | * (Some ASL code depends on allowing this behavior) |
| 345 | */ |
| 346 | else if ((arg->common.parent) && |
| 347 | ((arg->common.parent->common.aml_opcode == |
| 348 | AML_PACKAGE_OP) |
| 349 | || (arg->common.parent->common.aml_opcode == |
| 350 | AML_VAR_PACKAGE_OP))) { |
| 351 | status = AE_OK; |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | /* Final exception check (may have been changed from code above) */ |
| 356 | |
| 357 | if (ACPI_FAILURE(status)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 358 | ACPI_ERROR_NAMESPACE(path, status); |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 359 | |
| 360 | if ((walk_state->parse_flags & ACPI_PARSE_MODE_MASK) == |
| 361 | ACPI_PARSE_EXECUTE) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 362 | |
Bob Moore | defba1d | 2005-12-16 17:05:00 -0500 | [diff] [blame] | 363 | /* Report a control method execution error */ |
| 364 | |
| 365 | status = acpi_ds_method_error(status, walk_state); |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | /* Save the namepath */ |
| 370 | |
| 371 | arg->common.value.name = path; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 372 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | } |
| 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | /******************************************************************************* |
| 376 | * |
| 377 | * FUNCTION: acpi_ps_get_next_simple_arg |
| 378 | * |
| 379 | * PARAMETERS: parser_state - Current parser state object |
| 380 | * arg_type - The argument type (AML_*_ARG) |
| 381 | * Arg - Where the argument is returned |
| 382 | * |
| 383 | * RETURN: None |
| 384 | * |
| 385 | * DESCRIPTION: Get the next simple argument (constant, string, or namestring) |
| 386 | * |
| 387 | ******************************************************************************/ |
| 388 | |
| 389 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 390 | acpi_ps_get_next_simple_arg(struct acpi_parse_state *parser_state, |
| 391 | u32 arg_type, union acpi_parse_object *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 393 | u32 length; |
| 394 | u16 opcode; |
| 395 | u8 *aml = parser_state->aml; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 397 | ACPI_FUNCTION_TRACE_U32(ps_get_next_simple_arg, arg_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
| 399 | switch (arg_type) { |
| 400 | case ARGP_BYTEDATA: |
| 401 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 402 | /* Get 1 byte from the AML stream */ |
| 403 | |
| 404 | opcode = AML_BYTE_OP; |
| 405 | arg->common.value.integer = (acpi_integer) * aml; |
| 406 | length = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | break; |
| 408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | case ARGP_WORDDATA: |
| 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | /* Get 2 bytes from the AML stream */ |
| 412 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 413 | opcode = AML_WORD_OP; |
| 414 | ACPI_MOVE_16_TO_64(&arg->common.value.integer, aml); |
| 415 | length = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | break; |
| 417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | case ARGP_DWORDDATA: |
| 419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | /* Get 4 bytes from the AML stream */ |
| 421 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 422 | opcode = AML_DWORD_OP; |
| 423 | ACPI_MOVE_32_TO_64(&arg->common.value.integer, aml); |
| 424 | length = 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | break; |
| 426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | case ARGP_QWORDDATA: |
| 428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | /* Get 8 bytes from the AML stream */ |
| 430 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 431 | opcode = AML_QWORD_OP; |
| 432 | ACPI_MOVE_64_TO_64(&arg->common.value.integer, aml); |
| 433 | length = 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | break; |
| 435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | case ARGP_CHARLIST: |
| 437 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 438 | /* Get a pointer to the string, point past the string */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 440 | opcode = AML_STRING_OP; |
| 441 | arg->common.value.string = ACPI_CAST_PTR(char, aml); |
| 442 | |
| 443 | /* Find the null terminator */ |
| 444 | |
| 445 | length = 0; |
| 446 | while (aml[length]) { |
| 447 | length++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | } |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 449 | length++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | break; |
| 451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | case ARGP_NAME: |
| 453 | case ARGP_NAMESTRING: |
| 454 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 455 | acpi_ps_init_op(arg, AML_INT_NAMEPATH_OP); |
| 456 | arg->common.value.name = |
| 457 | acpi_ps_get_next_namestring(parser_state); |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 458 | return_VOID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | default: |
| 461 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 462 | ACPI_ERROR((AE_INFO, "Invalid ArgType %X", arg_type)); |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 463 | return_VOID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
| 465 | |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 466 | acpi_ps_init_op(arg, opcode); |
| 467 | parser_state->aml += length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | return_VOID; |
| 469 | } |
| 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | /******************************************************************************* |
| 472 | * |
| 473 | * FUNCTION: acpi_ps_get_next_field |
| 474 | * |
| 475 | * PARAMETERS: parser_state - Current parser state object |
| 476 | * |
| 477 | * RETURN: A newly allocated FIELD op |
| 478 | * |
| 479 | * DESCRIPTION: Get next field (named_field, reserved_field, or access_field) |
| 480 | * |
| 481 | ******************************************************************************/ |
| 482 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 483 | static union acpi_parse_object *acpi_ps_get_next_field(struct acpi_parse_state |
| 484 | *parser_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 486 | u32 aml_offset = (u32) |
| 487 | ACPI_PTR_DIFF(parser_state->aml, |
| 488 | parser_state->aml_start); |
| 489 | union acpi_parse_object *field; |
| 490 | u16 opcode; |
| 491 | u32 name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 493 | ACPI_FUNCTION_TRACE(ps_get_next_field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 495 | /* Determine field type */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 497 | switch (ACPI_GET8(parser_state->aml)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | default: |
| 499 | |
| 500 | opcode = AML_INT_NAMEDFIELD_OP; |
| 501 | break; |
| 502 | |
| 503 | case 0x00: |
| 504 | |
| 505 | opcode = AML_INT_RESERVEDFIELD_OP; |
| 506 | parser_state->aml++; |
| 507 | break; |
| 508 | |
| 509 | case 0x01: |
| 510 | |
| 511 | opcode = AML_INT_ACCESSFIELD_OP; |
| 512 | parser_state->aml++; |
| 513 | break; |
| 514 | } |
| 515 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | /* Allocate a new field op */ |
| 517 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 518 | field = acpi_ps_alloc_op(opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | if (!field) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 520 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | field->common.aml_offset = aml_offset; |
| 524 | |
| 525 | /* Decode the field type */ |
| 526 | |
| 527 | switch (opcode) { |
| 528 | case AML_INT_NAMEDFIELD_OP: |
| 529 | |
| 530 | /* Get the 4-character name */ |
| 531 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 532 | ACPI_MOVE_32_TO_32(&name, parser_state->aml); |
| 533 | acpi_ps_set_name(field, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | parser_state->aml += ACPI_NAME_SIZE; |
| 535 | |
| 536 | /* Get the length which is encoded as a package length */ |
| 537 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 538 | field->common.value.size = |
| 539 | acpi_ps_get_next_package_length(parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | break; |
| 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | case AML_INT_RESERVEDFIELD_OP: |
| 543 | |
| 544 | /* Get the length which is encoded as a package length */ |
| 545 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 546 | field->common.value.size = |
| 547 | acpi_ps_get_next_package_length(parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | break; |
| 549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | case AML_INT_ACCESSFIELD_OP: |
| 551 | |
| 552 | /* |
| 553 | * Get access_type and access_attrib and merge into the field Op |
| 554 | * access_type is first operand, access_attribute is second |
| 555 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 556 | field->common.value.integer = |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 557 | (((u32) ACPI_GET8(parser_state->aml) << 8)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | parser_state->aml++; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 559 | field->common.value.integer |= ACPI_GET8(parser_state->aml); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | parser_state->aml++; |
| 561 | break; |
| 562 | |
| 563 | default: |
| 564 | |
| 565 | /* Opcode was set in previous switch */ |
| 566 | break; |
| 567 | } |
| 568 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 569 | return_PTR(field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
| 571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | /******************************************************************************* |
| 573 | * |
| 574 | * FUNCTION: acpi_ps_get_next_arg |
| 575 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 576 | * PARAMETERS: walk_state - Current state |
| 577 | * parser_state - Current parser state object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | * arg_type - The argument type (AML_*_ARG) |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 579 | * return_arg - Where the next arg is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | * |
| 581 | * RETURN: Status, and an op object containing the next argument. |
| 582 | * |
| 583 | * DESCRIPTION: Get next argument (including complex list arguments that require |
| 584 | * pushing the parser stack) |
| 585 | * |
| 586 | ******************************************************************************/ |
| 587 | |
| 588 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 589 | acpi_ps_get_next_arg(struct acpi_walk_state *walk_state, |
| 590 | struct acpi_parse_state *parser_state, |
| 591 | u32 arg_type, union acpi_parse_object **return_arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 593 | union acpi_parse_object *arg = NULL; |
| 594 | union acpi_parse_object *prev = NULL; |
| 595 | union acpi_parse_object *field; |
| 596 | u32 subop; |
| 597 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 599 | ACPI_FUNCTION_TRACE_PTR(ps_get_next_arg, parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
| 601 | switch (arg_type) { |
| 602 | case ARGP_BYTEDATA: |
| 603 | case ARGP_WORDDATA: |
| 604 | case ARGP_DWORDDATA: |
| 605 | case ARGP_CHARLIST: |
| 606 | case ARGP_NAME: |
| 607 | case ARGP_NAMESTRING: |
| 608 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 609 | /* Constants, strings, and namestrings are all the same size */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 611 | arg = acpi_ps_alloc_op(AML_BYTE_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | if (!arg) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 613 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 615 | acpi_ps_get_next_simple_arg(parser_state, arg_type, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | break; |
| 617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | case ARGP_PKGLENGTH: |
| 619 | |
| 620 | /* Package length, nothing returned */ |
| 621 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 622 | parser_state->pkg_end = |
| 623 | acpi_ps_get_next_package_end(parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | break; |
| 625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | case ARGP_FIELDLIST: |
| 627 | |
| 628 | if (parser_state->aml < parser_state->pkg_end) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | /* Non-empty list */ |
| 631 | |
| 632 | while (parser_state->aml < parser_state->pkg_end) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 633 | field = acpi_ps_get_next_field(parser_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | if (!field) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 635 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
| 637 | |
| 638 | if (prev) { |
| 639 | prev->common.next = field; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 640 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | arg = field; |
| 642 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | prev = field; |
| 644 | } |
| 645 | |
| 646 | /* Skip to End of byte data */ |
| 647 | |
| 648 | parser_state->aml = parser_state->pkg_end; |
| 649 | } |
| 650 | break; |
| 651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | case ARGP_BYTELIST: |
| 653 | |
| 654 | if (parser_state->aml < parser_state->pkg_end) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | /* Non-empty list */ |
| 657 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 658 | arg = acpi_ps_alloc_op(AML_INT_BYTELIST_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | if (!arg) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 660 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | /* Fill in bytelist data */ |
| 664 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 665 | arg->common.value.size = (u32) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 666 | ACPI_PTR_DIFF(parser_state->pkg_end, |
| 667 | parser_state->aml); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | arg->named.data = parser_state->aml; |
| 669 | |
| 670 | /* Skip to End of byte data */ |
| 671 | |
| 672 | parser_state->aml = parser_state->pkg_end; |
| 673 | } |
| 674 | break; |
| 675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | case ARGP_TARGET: |
| 677 | case ARGP_SUPERNAME: |
| 678 | case ARGP_SIMPLENAME: |
| 679 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 680 | subop = acpi_ps_peek_opcode(parser_state); |
| 681 | if (subop == 0 || |
| 682 | acpi_ps_is_leading_char(subop) || |
| 683 | acpi_ps_is_prefix_char(subop)) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | /* null_name or name_string */ |
| 686 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 687 | arg = acpi_ps_alloc_op(AML_INT_NAMEPATH_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | if (!arg) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 689 | return_ACPI_STATUS(AE_NO_MEMORY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | } |
| 691 | |
Lin Ming | bc7a36a | 2008-04-10 19:06:42 +0400 | [diff] [blame] | 692 | /* To support super_name arg of Unload */ |
| 693 | |
Bob Moore | 8410565 | 2008-06-10 14:29:26 +0800 | [diff] [blame] | 694 | if (walk_state->opcode == AML_UNLOAD_OP) { |
Lin Ming | bc7a36a | 2008-04-10 19:06:42 +0400 | [diff] [blame] | 695 | status = |
| 696 | acpi_ps_get_next_namepath(walk_state, |
| 697 | parser_state, arg, |
| 698 | 1); |
| 699 | |
| 700 | /* |
| 701 | * If the super_name arg of Unload is a method call, |
| 702 | * we have restored the AML pointer, just free this Arg |
| 703 | */ |
| 704 | if (arg->common.aml_opcode == |
| 705 | AML_INT_METHODCALL_OP) { |
| 706 | acpi_ps_free_op(arg); |
| 707 | arg = NULL; |
| 708 | } |
| 709 | } else { |
| 710 | status = |
| 711 | acpi_ps_get_next_namepath(walk_state, |
| 712 | parser_state, arg, |
| 713 | 0); |
| 714 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 715 | } else { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 716 | /* Single complex argument, nothing returned */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | |
| 718 | walk_state->arg_count = 1; |
| 719 | } |
| 720 | break; |
| 721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | case ARGP_DATAOBJ: |
| 723 | case ARGP_TERMARG: |
| 724 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 725 | /* Single complex argument, nothing returned */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
| 727 | walk_state->arg_count = 1; |
| 728 | break; |
| 729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | case ARGP_DATAOBJLIST: |
| 731 | case ARGP_TERMLIST: |
| 732 | case ARGP_OBJLIST: |
| 733 | |
| 734 | if (parser_state->aml < parser_state->pkg_end) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 735 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 736 | /* Non-empty list of variable arguments, nothing returned */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
| 738 | walk_state->arg_count = ACPI_VAR_ARGS; |
| 739 | } |
| 740 | break; |
| 741 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | default: |
| 743 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 744 | ACPI_ERROR((AE_INFO, "Invalid ArgType: %X", arg_type)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | status = AE_AML_OPERAND_TYPE; |
| 746 | break; |
| 747 | } |
| 748 | |
| 749 | *return_arg = arg; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 750 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | } |