blob: 602ddaa10c293c3c6d89a7dcc30cd735f17cae33 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: dsopcode - Dispatcher Op Region support and handling of
4 * "control" opcodes
5 *
6 *****************************************************************************/
7
8/*
Len Brown75a44ce2008-04-23 23:00:13 -04009 * Copyright (C) 2000 - 2008, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
47#include "acparser.h"
48#include "amlcode.h"
49#include "acdispat.h"
50#include "acinterp.h"
51#include "acnamesp.h"
52#include "acevents.h"
53#include "actables.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define _COMPONENT ACPI_DISPATCHER
Len Brown4be44fc2005-08-05 00:44:28 -040056ACPI_MODULE_NAME("dsopcode")
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Robert Moore44f6c012005-04-18 22:49:35 -040058/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040059static acpi_status
60acpi_ds_execute_arguments(struct acpi_namespace_node *node,
61 struct acpi_namespace_node *scope_node,
62 u32 aml_length, u8 * aml_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Robert Moore44f6c012005-04-18 22:49:35 -040064static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040065acpi_ds_init_buffer_field(u16 aml_opcode,
66 union acpi_operand_object *obj_desc,
67 union acpi_operand_object *buffer_desc,
68 union acpi_operand_object *offset_desc,
69 union acpi_operand_object *length_desc,
70 union acpi_operand_object *result_desc);
Robert Moore44f6c012005-04-18 22:49:35 -040071
72/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 *
74 * FUNCTION: acpi_ds_execute_arguments
75 *
Robert Moore44f6c012005-04-18 22:49:35 -040076 * PARAMETERS: Node - Object NS node
77 * scope_node - Parent NS node
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * aml_length - Length of executable AML
79 * aml_start - Pointer to the AML
80 *
81 * RETURN: Status.
82 *
83 * DESCRIPTION: Late (deferred) execution of region or field arguments
84 *
Robert Moore44f6c012005-04-18 22:49:35 -040085 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Robert Moore44f6c012005-04-18 22:49:35 -040087static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040088acpi_ds_execute_arguments(struct acpi_namespace_node *node,
89 struct acpi_namespace_node *scope_node,
90 u32 aml_length, u8 * aml_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Len Brown4be44fc2005-08-05 00:44:28 -040092 acpi_status status;
93 union acpi_parse_object *op;
94 struct acpi_walk_state *walk_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Bob Mooreb229cf92006-04-21 17:15:00 -040096 ACPI_FUNCTION_TRACE(ds_execute_arguments);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 /*
99 * Allocate a new parser op to be the root of the parsed tree
100 */
Len Brown4be44fc2005-08-05 00:44:28 -0400101 op = acpi_ps_alloc_op(AML_INT_EVAL_SUBTREE_OP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!op) {
Len Brown4be44fc2005-08-05 00:44:28 -0400103 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
106 /* Save the Node for use in acpi_ps_parse_aml */
107
108 op->common.node = scope_node;
109
110 /* Create and initialize a new parser state */
111
Len Brown4be44fc2005-08-05 00:44:28 -0400112 walk_state = acpi_ds_create_walk_state(0, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (!walk_state) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400114 status = AE_NO_MEMORY;
115 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117
Len Brown4be44fc2005-08-05 00:44:28 -0400118 status = acpi_ds_init_aml_walk(walk_state, op, NULL, aml_start,
Bob Mooreec3153f2007-02-02 19:48:21 +0300119 aml_length, NULL, ACPI_IMODE_LOAD_PASS1);
Len Brown4be44fc2005-08-05 00:44:28 -0400120 if (ACPI_FAILURE(status)) {
121 acpi_ds_delete_walk_state(walk_state);
Robert Moore88ac00f2005-05-26 00:00:00 -0400122 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
125 /* Mark this parse as a deferred opcode */
126
127 walk_state->parse_flags = ACPI_PARSE_DEFERRED_OP;
128 walk_state->deferred_node = node;
129
130 /* Pass1: Parse the entire declaration */
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 status = acpi_ps_parse_aml(walk_state);
133 if (ACPI_FAILURE(status)) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400134 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 /* Get and init the Op created above */
138
139 op->common.node = node;
Len Brown4be44fc2005-08-05 00:44:28 -0400140 acpi_ps_delete_parse_tree(op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* Evaluate the deferred arguments */
143
Len Brown4be44fc2005-08-05 00:44:28 -0400144 op = acpi_ps_alloc_op(AML_INT_EVAL_SUBTREE_OP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (!op) {
Len Brown4be44fc2005-08-05 00:44:28 -0400146 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
149 op->common.node = scope_node;
150
151 /* Create and initialize a new parser state */
152
Len Brown4be44fc2005-08-05 00:44:28 -0400153 walk_state = acpi_ds_create_walk_state(0, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (!walk_state) {
Robert Moore88ac00f2005-05-26 00:00:00 -0400155 status = AE_NO_MEMORY;
156 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
159 /* Execute the opcode and arguments */
160
Len Brown4be44fc2005-08-05 00:44:28 -0400161 status = acpi_ds_init_aml_walk(walk_state, op, NULL, aml_start,
Bob Mooreec3153f2007-02-02 19:48:21 +0300162 aml_length, NULL, ACPI_IMODE_EXECUTE);
Len Brown4be44fc2005-08-05 00:44:28 -0400163 if (ACPI_FAILURE(status)) {
164 acpi_ds_delete_walk_state(walk_state);
Robert Moore88ac00f2005-05-26 00:00:00 -0400165 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
168 /* Mark this execution as a deferred opcode */
169
170 walk_state->deferred_node = node;
Len Brown4be44fc2005-08-05 00:44:28 -0400171 status = acpi_ps_parse_aml(walk_state);
Robert Moore88ac00f2005-05-26 00:00:00 -0400172
Len Brown4be44fc2005-08-05 00:44:28 -0400173 cleanup:
174 acpi_ps_delete_parse_tree(op);
175 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Robert Moore44f6c012005-04-18 22:49:35 -0400178/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 *
180 * FUNCTION: acpi_ds_get_buffer_field_arguments
181 *
182 * PARAMETERS: obj_desc - A valid buffer_field object
183 *
184 * RETURN: Status.
185 *
186 * DESCRIPTION: Get buffer_field Buffer and Index. This implements the late
187 * evaluation of these field attributes.
188 *
Robert Moore44f6c012005-04-18 22:49:35 -0400189 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400192acpi_ds_get_buffer_field_arguments(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Len Brown4be44fc2005-08-05 00:44:28 -0400194 union acpi_operand_object *extra_desc;
195 struct acpi_namespace_node *node;
196 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Bob Mooreb229cf92006-04-21 17:15:00 -0400198 ACPI_FUNCTION_TRACE_PTR(ds_get_buffer_field_arguments, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
Len Brown4be44fc2005-08-05 00:44:28 -0400201 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 /* Get the AML pointer (method object) and buffer_field node */
205
Len Brown4be44fc2005-08-05 00:44:28 -0400206 extra_desc = acpi_ns_get_secondary_object(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 node = obj_desc->buffer_field.node;
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
210 (ACPI_TYPE_BUFFER_FIELD, node, NULL));
Bob Mooreb229cf92006-04-21 17:15:00 -0400211 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "[%4.4s] BufferField Arg Init\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400212 acpi_ut_get_node_name(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* Execute the AML code for the term_arg arguments */
215
Len Brown4be44fc2005-08-05 00:44:28 -0400216 status = acpi_ds_execute_arguments(node, acpi_ns_get_parent_node(node),
217 extra_desc->extra.aml_length,
218 extra_desc->extra.aml_start);
219 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Robert Moore44f6c012005-04-18 22:49:35 -0400222/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 *
Lin Mingef805d92008-04-10 19:06:41 +0400224 * FUNCTION: acpi_ds_get_bank_field_arguments
225 *
226 * PARAMETERS: obj_desc - A valid bank_field object
227 *
228 * RETURN: Status.
229 *
230 * DESCRIPTION: Get bank_field bank_value. This implements the late
231 * evaluation of these field attributes.
232 *
233 ******************************************************************************/
234
235acpi_status
236acpi_ds_get_bank_field_arguments(union acpi_operand_object *obj_desc)
237{
238 union acpi_operand_object *extra_desc;
239 struct acpi_namespace_node *node;
240 acpi_status status;
241
242 ACPI_FUNCTION_TRACE_PTR(ds_get_bank_field_arguments, obj_desc);
243
244 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
245 return_ACPI_STATUS(AE_OK);
246 }
247
248 /* Get the AML pointer (method object) and bank_field node */
249
250 extra_desc = acpi_ns_get_secondary_object(obj_desc);
251 node = obj_desc->bank_field.node;
252
253 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
254 (ACPI_TYPE_LOCAL_BANK_FIELD, node, NULL));
255 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "[%4.4s] BankField Arg Init\n",
256 acpi_ut_get_node_name(node)));
257
258 /* Execute the AML code for the term_arg arguments */
259
260 status = acpi_ds_execute_arguments(node, acpi_ns_get_parent_node(node),
261 extra_desc->extra.aml_length,
262 extra_desc->extra.aml_start);
263 return_ACPI_STATUS(status);
264}
265
266/*******************************************************************************
267 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * FUNCTION: acpi_ds_get_buffer_arguments
269 *
270 * PARAMETERS: obj_desc - A valid Buffer object
271 *
272 * RETURN: Status.
273 *
274 * DESCRIPTION: Get Buffer length and initializer byte list. This implements
275 * the late evaluation of these attributes.
276 *
Robert Moore44f6c012005-04-18 22:49:35 -0400277 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Len Brown4be44fc2005-08-05 00:44:28 -0400279acpi_status acpi_ds_get_buffer_arguments(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Len Brown4be44fc2005-08-05 00:44:28 -0400281 struct acpi_namespace_node *node;
282 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Bob Mooreb229cf92006-04-21 17:15:00 -0400284 ACPI_FUNCTION_TRACE_PTR(ds_get_buffer_arguments, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
Len Brown4be44fc2005-08-05 00:44:28 -0400287 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289
290 /* Get the Buffer node */
291
292 node = obj_desc->buffer.node;
293 if (!node) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500294 ACPI_ERROR((AE_INFO,
295 "No pointer back to NS node in buffer obj %p",
296 obj_desc));
Len Brown4be44fc2005-08-05 00:44:28 -0400297 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Buffer Arg Init\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /* Execute the AML code for the term_arg arguments */
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 status = acpi_ds_execute_arguments(node, node,
305 obj_desc->buffer.aml_length,
306 obj_desc->buffer.aml_start);
307 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Robert Moore44f6c012005-04-18 22:49:35 -0400310/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 *
312 * FUNCTION: acpi_ds_get_package_arguments
313 *
314 * PARAMETERS: obj_desc - A valid Package object
315 *
316 * RETURN: Status.
317 *
318 * DESCRIPTION: Get Package length and initializer byte list. This implements
319 * the late evaluation of these attributes.
320 *
Robert Moore44f6c012005-04-18 22:49:35 -0400321 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Len Brown4be44fc2005-08-05 00:44:28 -0400323acpi_status acpi_ds_get_package_arguments(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Len Brown4be44fc2005-08-05 00:44:28 -0400325 struct acpi_namespace_node *node;
326 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Bob Mooreb229cf92006-04-21 17:15:00 -0400328 ACPI_FUNCTION_TRACE_PTR(ds_get_package_arguments, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) {
Len Brown4be44fc2005-08-05 00:44:28 -0400331 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
334 /* Get the Package node */
335
336 node = obj_desc->package.node;
337 if (!node) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500338 ACPI_ERROR((AE_INFO,
339 "No pointer back to NS node in package %p",
340 obj_desc));
Len Brown4be44fc2005-08-05 00:44:28 -0400341 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
Len Brown4be44fc2005-08-05 00:44:28 -0400344 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Package Arg Init\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 /* Execute the AML code for the term_arg arguments */
347
Len Brown4be44fc2005-08-05 00:44:28 -0400348 status = acpi_ds_execute_arguments(node, node,
349 obj_desc->package.aml_length,
350 obj_desc->package.aml_start);
351 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354/*****************************************************************************
355 *
356 * FUNCTION: acpi_ds_get_region_arguments
357 *
358 * PARAMETERS: obj_desc - A valid region object
359 *
360 * RETURN: Status.
361 *
362 * DESCRIPTION: Get region address and length. This implements the late
363 * evaluation of these region attributes.
364 *
365 ****************************************************************************/
366
Len Brown4be44fc2005-08-05 00:44:28 -0400367acpi_status acpi_ds_get_region_arguments(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Len Brown4be44fc2005-08-05 00:44:28 -0400369 struct acpi_namespace_node *node;
370 acpi_status status;
371 union acpi_operand_object *extra_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Bob Mooreb229cf92006-04-21 17:15:00 -0400373 ACPI_FUNCTION_TRACE_PTR(ds_get_region_arguments, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 if (obj_desc->region.flags & AOPOBJ_DATA_VALID) {
Len Brown4be44fc2005-08-05 00:44:28 -0400376 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
Len Brown4be44fc2005-08-05 00:44:28 -0400379 extra_desc = acpi_ns_get_secondary_object(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (!extra_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400381 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 /* Get the Region node */
385
386 node = obj_desc->region.node;
387
Len Brown4be44fc2005-08-05 00:44:28 -0400388 ACPI_DEBUG_EXEC(acpi_ut_display_init_pathname
389 (ACPI_TYPE_REGION, node, NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Bob Mooreb229cf92006-04-21 17:15:00 -0400391 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "[%4.4s] OpRegion Arg Init at AML %p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400392 acpi_ut_get_node_name(node),
393 extra_desc->extra.aml_start));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* Execute the argument AML */
396
Len Brown4be44fc2005-08-05 00:44:28 -0400397 status = acpi_ds_execute_arguments(node, acpi_ns_get_parent_node(node),
398 extra_desc->extra.aml_length,
399 extra_desc->extra.aml_start);
Bob Mooreb229cf92006-04-21 17:15:00 -0400400 if (ACPI_FAILURE(status)) {
401 return_ACPI_STATUS(status);
402 }
403
404 /* Validate the region address/length via the host OS */
405
406 status = acpi_os_validate_address(obj_desc->region.space_id,
407 obj_desc->region.address,
Thomas Renningerdf92e692008-02-04 23:31:22 -0800408 (acpi_size) obj_desc->region.length,
409 acpi_ut_get_node_name(node));
410
Bob Mooreb229cf92006-04-21 17:15:00 -0400411 if (ACPI_FAILURE(status)) {
412 /*
413 * Invalid address/length. We will emit an error message and mark
414 * the region as invalid, so that it will cause an additional error if
415 * it is ever used. Then return AE_OK.
416 */
417 ACPI_EXCEPTION((AE_INFO, status,
418 "During address validation of OpRegion [%4.4s]",
419 node->name.ascii));
420 obj_desc->common.flags |= AOPOBJ_INVALID;
421 status = AE_OK;
422 }
423
Len Brown4be44fc2005-08-05 00:44:28 -0400424 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Robert Moore44f6c012005-04-18 22:49:35 -0400427/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
429 * FUNCTION: acpi_ds_initialize_region
430 *
Robert Moore44f6c012005-04-18 22:49:35 -0400431 * PARAMETERS: obj_handle - Region namespace node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
433 * RETURN: Status
434 *
435 * DESCRIPTION: Front end to ev_initialize_region
436 *
Robert Moore44f6c012005-04-18 22:49:35 -0400437 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Len Brown4be44fc2005-08-05 00:44:28 -0400439acpi_status acpi_ds_initialize_region(acpi_handle obj_handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Len Brown4be44fc2005-08-05 00:44:28 -0400441 union acpi_operand_object *obj_desc;
442 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Len Brown4be44fc2005-08-05 00:44:28 -0400444 obj_desc = acpi_ns_get_attached_object(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /* Namespace is NOT locked */
447
Len Brown4be44fc2005-08-05 00:44:28 -0400448 status = acpi_ev_initialize_region(obj_desc, FALSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return (status);
450}
451
Robert Moore44f6c012005-04-18 22:49:35 -0400452/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
454 * FUNCTION: acpi_ds_init_buffer_field
455 *
456 * PARAMETERS: aml_opcode - create_xxx_field
457 * obj_desc - buffer_field object
458 * buffer_desc - Host Buffer
459 * offset_desc - Offset into buffer
Robert Moore44f6c012005-04-18 22:49:35 -0400460 * length_desc - Length of field (CREATE_FIELD_OP only)
461 * result_desc - Where to store the result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 *
463 * RETURN: Status
464 *
465 * DESCRIPTION: Perform actual initialization of a buffer field
466 *
Robert Moore44f6c012005-04-18 22:49:35 -0400467 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Robert Moore44f6c012005-04-18 22:49:35 -0400469static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400470acpi_ds_init_buffer_field(u16 aml_opcode,
471 union acpi_operand_object *obj_desc,
472 union acpi_operand_object *buffer_desc,
473 union acpi_operand_object *offset_desc,
474 union acpi_operand_object *length_desc,
475 union acpi_operand_object *result_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Len Brown4be44fc2005-08-05 00:44:28 -0400477 u32 offset;
478 u32 bit_offset;
479 u32 bit_count;
480 u8 field_flags;
481 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Bob Mooreb229cf92006-04-21 17:15:00 -0400483 ACPI_FUNCTION_TRACE_PTR(ds_init_buffer_field, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 /* Host object must be a Buffer */
486
Bob Moore3371c192009-02-18 14:44:03 +0800487 if (buffer_desc->common.type != ACPI_TYPE_BUFFER) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500488 ACPI_ERROR((AE_INFO,
489 "Target of Create Field is not a Buffer object - %s",
490 acpi_ut_get_object_type_name(buffer_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 status = AE_AML_OPERAND_TYPE;
493 goto cleanup;
494 }
495
496 /*
497 * The last parameter to all of these opcodes (result_desc) started
498 * out as a name_string, and should therefore now be a NS node
499 * after resolution in acpi_ex_resolve_operands().
500 */
Len Brown4be44fc2005-08-05 00:44:28 -0400501 if (ACPI_GET_DESCRIPTOR_TYPE(result_desc) != ACPI_DESC_TYPE_NAMED) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500502 ACPI_ERROR((AE_INFO,
503 "(%s) destination not a NS Node [%s]",
504 acpi_ps_get_opcode_name(aml_opcode),
505 acpi_ut_get_descriptor_name(result_desc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 status = AE_AML_OPERAND_TYPE;
508 goto cleanup;
509 }
510
511 offset = (u32) offset_desc->integer.value;
512
513 /*
514 * Setup the Bit offsets and counts, according to the opcode
515 */
516 switch (aml_opcode) {
517 case AML_CREATE_FIELD_OP:
518
519 /* Offset is in bits, count is in bits */
520
Robert Moore44f6c012005-04-18 22:49:35 -0400521 field_flags = AML_FIELD_ACCESS_BYTE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 bit_offset = offset;
Len Brown4be44fc2005-08-05 00:44:28 -0400523 bit_count = (u32) length_desc->integer.value;
Robert Moore44f6c012005-04-18 22:49:35 -0400524
525 /* Must have a valid (>0) bit count */
526
527 if (bit_count == 0) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500528 ACPI_ERROR((AE_INFO,
Bob Mooreb229cf92006-04-21 17:15:00 -0400529 "Attempt to CreateField of length zero"));
Robert Moore44f6c012005-04-18 22:49:35 -0400530 status = AE_AML_OPERAND_VALUE;
531 goto cleanup;
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 break;
534
535 case AML_CREATE_BIT_FIELD_OP:
536
537 /* Offset is in bits, Field is one bit */
538
539 bit_offset = offset;
Len Brown4be44fc2005-08-05 00:44:28 -0400540 bit_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 field_flags = AML_FIELD_ACCESS_BYTE;
542 break;
543
544 case AML_CREATE_BYTE_FIELD_OP:
545
546 /* Offset is in bytes, field is one byte */
547
548 bit_offset = 8 * offset;
Len Brown4be44fc2005-08-05 00:44:28 -0400549 bit_count = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 field_flags = AML_FIELD_ACCESS_BYTE;
551 break;
552
553 case AML_CREATE_WORD_FIELD_OP:
554
555 /* Offset is in bytes, field is one word */
556
557 bit_offset = 8 * offset;
Len Brown4be44fc2005-08-05 00:44:28 -0400558 bit_count = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 field_flags = AML_FIELD_ACCESS_WORD;
560 break;
561
562 case AML_CREATE_DWORD_FIELD_OP:
563
564 /* Offset is in bytes, field is one dword */
565
566 bit_offset = 8 * offset;
Len Brown4be44fc2005-08-05 00:44:28 -0400567 bit_count = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 field_flags = AML_FIELD_ACCESS_DWORD;
569 break;
570
571 case AML_CREATE_QWORD_FIELD_OP:
572
573 /* Offset is in bytes, field is one qword */
574
575 bit_offset = 8 * offset;
Len Brown4be44fc2005-08-05 00:44:28 -0400576 bit_count = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 field_flags = AML_FIELD_ACCESS_QWORD;
578 break;
579
580 default:
581
Bob Mooreb8e4d892006-01-27 16:43:00 -0500582 ACPI_ERROR((AE_INFO,
583 "Unknown field creation opcode %02x", aml_opcode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 status = AE_AML_BAD_OPCODE;
585 goto cleanup;
586 }
587
588 /* Entire field must fit within the current length of the buffer */
589
Len Brown4be44fc2005-08-05 00:44:28 -0400590 if ((bit_offset + bit_count) > (8 * (u32) buffer_desc->buffer.length)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500591 ACPI_ERROR((AE_INFO,
592 "Field [%4.4s] at %d exceeds Buffer [%4.4s] size %d (bits)",
593 acpi_ut_get_node_name(result_desc),
594 bit_offset + bit_count,
595 acpi_ut_get_node_name(buffer_desc->buffer.node),
596 8 * (u32) buffer_desc->buffer.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 status = AE_AML_BUFFER_LIMIT;
598 goto cleanup;
599 }
600
601 /*
602 * Initialize areas of the field object that are common to all fields
Robert Moore44f6c012005-04-18 22:49:35 -0400603 * For field_flags, use LOCK_RULE = 0 (NO_LOCK),
604 * UPDATE_RULE = 0 (UPDATE_PRESERVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
Len Brown4be44fc2005-08-05 00:44:28 -0400606 status = acpi_ex_prep_common_field_object(obj_desc, field_flags, 0,
607 bit_offset, bit_count);
608 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 goto cleanup;
610 }
611
612 obj_desc->buffer_field.buffer_obj = buffer_desc;
613
614 /* Reference count for buffer_desc inherits obj_desc count */
615
Robert Moore44f6c012005-04-18 22:49:35 -0400616 buffer_desc->common.reference_count = (u16)
Len Brown4be44fc2005-08-05 00:44:28 -0400617 (buffer_desc->common.reference_count +
618 obj_desc->common.reference_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Len Brown4be44fc2005-08-05 00:44:28 -0400620 cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /* Always delete the operands */
623
Len Brown4be44fc2005-08-05 00:44:28 -0400624 acpi_ut_remove_reference(offset_desc);
625 acpi_ut_remove_reference(buffer_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 if (aml_opcode == AML_CREATE_FIELD_OP) {
Len Brown4be44fc2005-08-05 00:44:28 -0400628 acpi_ut_remove_reference(length_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
631 /* On failure, delete the result descriptor */
632
Len Brown4be44fc2005-08-05 00:44:28 -0400633 if (ACPI_FAILURE(status)) {
634 acpi_ut_remove_reference(result_desc); /* Result descriptor */
635 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* Now the address and length are valid for this buffer_field */
637
638 obj_desc->buffer_field.flags |= AOPOBJ_DATA_VALID;
639 }
640
Len Brown4be44fc2005-08-05 00:44:28 -0400641 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Robert Moore44f6c012005-04-18 22:49:35 -0400644/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 *
646 * FUNCTION: acpi_ds_eval_buffer_field_operands
647 *
648 * PARAMETERS: walk_state - Current walk
649 * Op - A valid buffer_field Op object
650 *
651 * RETURN: Status
652 *
653 * DESCRIPTION: Get buffer_field Buffer and Index
654 * Called from acpi_ds_exec_end_op during buffer_field parse tree walk
655 *
Robert Moore44f6c012005-04-18 22:49:35 -0400656 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400659acpi_ds_eval_buffer_field_operands(struct acpi_walk_state *walk_state,
660 union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
Len Brown4be44fc2005-08-05 00:44:28 -0400662 acpi_status status;
663 union acpi_operand_object *obj_desc;
664 struct acpi_namespace_node *node;
665 union acpi_parse_object *next_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Bob Mooreb229cf92006-04-21 17:15:00 -0400667 ACPI_FUNCTION_TRACE_PTR(ds_eval_buffer_field_operands, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /*
670 * This is where we evaluate the address and length fields of the
671 * create_xxx_field declaration
672 */
Len Brown4be44fc2005-08-05 00:44:28 -0400673 node = op->common.node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 /* next_op points to the op that holds the Buffer */
676
677 next_op = op->common.value.arg;
678
679 /* Evaluate/create the address and length operands */
680
Len Brown4be44fc2005-08-05 00:44:28 -0400681 status = acpi_ds_create_operands(walk_state, next_op);
682 if (ACPI_FAILURE(status)) {
683 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
Len Brown4be44fc2005-08-05 00:44:28 -0400686 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400688 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
691 /* Resolve the operands */
692
Len Brown4be44fc2005-08-05 00:44:28 -0400693 status = acpi_ex_resolve_operands(op->common.aml_opcode,
694 ACPI_WALK_OPERANDS, walk_state);
Len Brown4be44fc2005-08-05 00:44:28 -0400695 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500696 ACPI_ERROR((AE_INFO, "(%s) bad operand(s) (%X)",
697 acpi_ps_get_opcode_name(op->common.aml_opcode),
698 status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Len Brown4be44fc2005-08-05 00:44:28 -0400700 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
703 /* Initialize the Buffer Field */
704
705 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /* NOTE: Slightly different operands for this opcode */
708
Len Brown4be44fc2005-08-05 00:44:28 -0400709 status =
710 acpi_ds_init_buffer_field(op->common.aml_opcode, obj_desc,
711 walk_state->operands[0],
712 walk_state->operands[1],
713 walk_state->operands[2],
714 walk_state->operands[3]);
715 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /* All other, create_xxx_field opcodes */
717
Len Brown4be44fc2005-08-05 00:44:28 -0400718 status =
719 acpi_ds_init_buffer_field(op->common.aml_opcode, obj_desc,
720 walk_state->operands[0],
721 walk_state->operands[1], NULL,
722 walk_state->operands[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724
Len Brown4be44fc2005-08-05 00:44:28 -0400725 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Robert Moore44f6c012005-04-18 22:49:35 -0400728/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 *
730 * FUNCTION: acpi_ds_eval_region_operands
731 *
732 * PARAMETERS: walk_state - Current walk
733 * Op - A valid region Op object
734 *
735 * RETURN: Status
736 *
737 * DESCRIPTION: Get region address and length
738 * Called from acpi_ds_exec_end_op during op_region parse tree walk
739 *
Robert Moore44f6c012005-04-18 22:49:35 -0400740 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400743acpi_ds_eval_region_operands(struct acpi_walk_state *walk_state,
744 union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Len Brown4be44fc2005-08-05 00:44:28 -0400746 acpi_status status;
747 union acpi_operand_object *obj_desc;
748 union acpi_operand_object *operand_desc;
749 struct acpi_namespace_node *node;
750 union acpi_parse_object *next_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Bob Mooreb229cf92006-04-21 17:15:00 -0400752 ACPI_FUNCTION_TRACE_PTR(ds_eval_region_operands, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400755 * This is where we evaluate the address and length fields of the
756 * op_region declaration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
Len Brown4be44fc2005-08-05 00:44:28 -0400758 node = op->common.node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /* next_op points to the op that holds the space_iD */
761
762 next_op = op->common.value.arg;
763
764 /* next_op points to address op */
765
766 next_op = next_op->common.next;
767
768 /* Evaluate/create the address and length operands */
769
Len Brown4be44fc2005-08-05 00:44:28 -0400770 status = acpi_ds_create_operands(walk_state, next_op);
771 if (ACPI_FAILURE(status)) {
772 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
775 /* Resolve the length and address operands to numbers */
776
Len Brown4be44fc2005-08-05 00:44:28 -0400777 status = acpi_ex_resolve_operands(op->common.aml_opcode,
778 ACPI_WALK_OPERANDS, walk_state);
779 if (ACPI_FAILURE(status)) {
780 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
Len Brown4be44fc2005-08-05 00:44:28 -0400783 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400785 return_ACPI_STATUS(AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
788 /*
789 * Get the length operand and save it
790 * (at Top of stack)
791 */
792 operand_desc = walk_state->operands[walk_state->num_operands - 1];
793
794 obj_desc->region.length = (u32) operand_desc->integer.value;
Len Brown4be44fc2005-08-05 00:44:28 -0400795 acpi_ut_remove_reference(operand_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 /*
798 * Get the address and save it
799 * (at top of stack - 1)
800 */
801 operand_desc = walk_state->operands[walk_state->num_operands - 2];
802
Robert Moore44f6c012005-04-18 22:49:35 -0400803 obj_desc->region.address = (acpi_physical_address)
Len Brown4be44fc2005-08-05 00:44:28 -0400804 operand_desc->integer.value;
805 acpi_ut_remove_reference(operand_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Bob Mooreb229cf92006-04-21 17:15:00 -0400807 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "RgnObj %p Addr %8.8X%8.8X Len %X\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400808 obj_desc,
Bob Mooreb7f9f042008-04-10 19:06:40 +0400809 ACPI_FORMAT_NATIVE_UINT(obj_desc->region.address),
Len Brown4be44fc2005-08-05 00:44:28 -0400810 obj_desc->region.length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /* Now the address and length are valid for this opregion */
813
814 obj_desc->region.flags |= AOPOBJ_DATA_VALID;
815
Len Brown4be44fc2005-08-05 00:44:28 -0400816 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Robert Moore44f6c012005-04-18 22:49:35 -0400819/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 *
Lin Ming941f48b2008-04-10 19:06:41 +0400821 * FUNCTION: acpi_ds_eval_table_region_operands
822 *
823 * PARAMETERS: walk_state - Current walk
824 * Op - A valid region Op object
825 *
826 * RETURN: Status
827 *
828 * DESCRIPTION: Get region address and length
829 * Called from acpi_ds_exec_end_op during data_table_region parse tree walk
830 *
831 ******************************************************************************/
832
833acpi_status
834acpi_ds_eval_table_region_operands(struct acpi_walk_state *walk_state,
835 union acpi_parse_object *op)
836{
837 acpi_status status;
838 union acpi_operand_object *obj_desc;
839 union acpi_operand_object **operand;
840 struct acpi_namespace_node *node;
841 union acpi_parse_object *next_op;
Bob Moore67a119f2008-06-10 13:42:13 +0800842 u32 table_index;
Lin Ming941f48b2008-04-10 19:06:41 +0400843 struct acpi_table_header *table;
844
845 ACPI_FUNCTION_TRACE_PTR(ds_eval_table_region_operands, op);
846
847 /*
848 * This is where we evaluate the signature_string and oem_iDString
849 * and oem_table_iDString of the data_table_region declaration
850 */
851 node = op->common.node;
852
853 /* next_op points to signature_string op */
854
855 next_op = op->common.value.arg;
856
857 /*
858 * Evaluate/create the signature_string and oem_iDString
859 * and oem_table_iDString operands
860 */
861 status = acpi_ds_create_operands(walk_state, next_op);
862 if (ACPI_FAILURE(status)) {
863 return_ACPI_STATUS(status);
864 }
865
866 /*
867 * Resolve the signature_string and oem_iDString
868 * and oem_table_iDString operands
869 */
870 status = acpi_ex_resolve_operands(op->common.aml_opcode,
871 ACPI_WALK_OPERANDS, walk_state);
872 if (ACPI_FAILURE(status)) {
873 return_ACPI_STATUS(status);
874 }
875
Lin Ming941f48b2008-04-10 19:06:41 +0400876 operand = &walk_state->operands[0];
877
878 /* Find the ACPI table */
879
880 status = acpi_tb_find_table(operand[0]->string.pointer,
881 operand[1]->string.pointer,
882 operand[2]->string.pointer, &table_index);
883 if (ACPI_FAILURE(status)) {
884 return_ACPI_STATUS(status);
885 }
886
887 acpi_ut_remove_reference(operand[0]);
888 acpi_ut_remove_reference(operand[1]);
889 acpi_ut_remove_reference(operand[2]);
890
891 status = acpi_get_table_by_index(table_index, &table);
892 if (ACPI_FAILURE(status)) {
893 return_ACPI_STATUS(status);
894 }
895
896 obj_desc = acpi_ns_get_attached_object(node);
897 if (!obj_desc) {
898 return_ACPI_STATUS(AE_NOT_EXIST);
899 }
900
901 obj_desc->region.address =
902 (acpi_physical_address) ACPI_TO_INTEGER(table);
903 obj_desc->region.length = table->length;
904
905 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "RgnObj %p Addr %8.8X%8.8X Len %X\n",
906 obj_desc,
907 ACPI_FORMAT_NATIVE_UINT(obj_desc->region.address),
908 obj_desc->region.length));
909
910 /* Now the address and length are valid for this opregion */
911
912 obj_desc->region.flags |= AOPOBJ_DATA_VALID;
913
914 return_ACPI_STATUS(status);
915}
916
917/*******************************************************************************
918 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * FUNCTION: acpi_ds_eval_data_object_operands
920 *
921 * PARAMETERS: walk_state - Current walk
922 * Op - A valid data_object Op object
923 * obj_desc - data_object
924 *
925 * RETURN: Status
926 *
927 * DESCRIPTION: Get the operands and complete the following data object types:
928 * Buffer, Package.
929 *
Robert Moore44f6c012005-04-18 22:49:35 -0400930 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400933acpi_ds_eval_data_object_operands(struct acpi_walk_state *walk_state,
934 union acpi_parse_object *op,
935 union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Len Brown4be44fc2005-08-05 00:44:28 -0400937 acpi_status status;
938 union acpi_operand_object *arg_desc;
939 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Bob Mooreb229cf92006-04-21 17:15:00 -0400941 ACPI_FUNCTION_TRACE(ds_eval_data_object_operands);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 /* The first operand (for all of these data objects) is the length */
944
Bob Moore773069d2008-04-10 19:06:36 +0400945 /*
946 * Set proper index into operand stack for acpi_ds_obj_stack_push
947 * invoked inside acpi_ds_create_operand.
948 */
949 walk_state->operand_index = walk_state->num_operands;
950
Len Brown4be44fc2005-08-05 00:44:28 -0400951 status = acpi_ds_create_operand(walk_state, op->common.value.arg, 1);
952 if (ACPI_FAILURE(status)) {
953 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955
Len Brown4be44fc2005-08-05 00:44:28 -0400956 status = acpi_ex_resolve_operands(walk_state->opcode,
957 &(walk_state->
958 operands[walk_state->num_operands -
959 1]), walk_state);
960 if (ACPI_FAILURE(status)) {
961 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963
964 /* Extract length operand */
965
Len Brown4be44fc2005-08-05 00:44:28 -0400966 arg_desc = walk_state->operands[walk_state->num_operands - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 length = (u32) arg_desc->integer.value;
968
969 /* Cleanup for length operand */
970
Len Brown4be44fc2005-08-05 00:44:28 -0400971 status = acpi_ds_obj_stack_pop(1, walk_state);
972 if (ACPI_FAILURE(status)) {
973 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975
Len Brown4be44fc2005-08-05 00:44:28 -0400976 acpi_ut_remove_reference(arg_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 /*
979 * Create the actual data object
980 */
981 switch (op->common.aml_opcode) {
982 case AML_BUFFER_OP:
983
Len Brown4be44fc2005-08-05 00:44:28 -0400984 status =
985 acpi_ds_build_internal_buffer_obj(walk_state, op, length,
986 &obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
988
989 case AML_PACKAGE_OP:
990 case AML_VAR_PACKAGE_OP:
991
Len Brown4be44fc2005-08-05 00:44:28 -0400992 status =
993 acpi_ds_build_internal_package_obj(walk_state, op, length,
994 &obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 break;
996
997 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400998 return_ACPI_STATUS(AE_AML_BAD_OPCODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
Len Brown4be44fc2005-08-05 00:44:28 -04001001 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /*
Robert Moore44f6c012005-04-18 22:49:35 -04001003 * Return the object in the walk_state, unless the parent is a package -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 * in this case, the return object will be stored in the parse tree
1005 * for the package.
1006 */
1007 if ((!op->common.parent) ||
Len Brown4be44fc2005-08-05 00:44:28 -04001008 ((op->common.parent->common.aml_opcode != AML_PACKAGE_OP) &&
1009 (op->common.parent->common.aml_opcode !=
1010 AML_VAR_PACKAGE_OP)
Len Brownfd350942007-05-09 23:34:35 -04001011 && (op->common.parent->common.aml_opcode != AML_NAME_OP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 walk_state->result_obj = obj_desc;
1013 }
1014 }
1015
Len Brown4be44fc2005-08-05 00:44:28 -04001016 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019/*******************************************************************************
1020 *
Lin Mingef805d92008-04-10 19:06:41 +04001021 * FUNCTION: acpi_ds_eval_bank_field_operands
1022 *
1023 * PARAMETERS: walk_state - Current walk
1024 * Op - A valid bank_field Op object
1025 *
1026 * RETURN: Status
1027 *
1028 * DESCRIPTION: Get bank_field bank_value
1029 * Called from acpi_ds_exec_end_op during bank_field parse tree walk
1030 *
1031 ******************************************************************************/
1032
1033acpi_status
1034acpi_ds_eval_bank_field_operands(struct acpi_walk_state *walk_state,
1035 union acpi_parse_object *op)
1036{
1037 acpi_status status;
1038 union acpi_operand_object *obj_desc;
1039 union acpi_operand_object *operand_desc;
1040 struct acpi_namespace_node *node;
1041 union acpi_parse_object *next_op;
1042 union acpi_parse_object *arg;
1043
1044 ACPI_FUNCTION_TRACE_PTR(ds_eval_bank_field_operands, op);
1045
1046 /*
1047 * This is where we evaluate the bank_value field of the
1048 * bank_field declaration
1049 */
1050
1051 /* next_op points to the op that holds the Region */
1052
1053 next_op = op->common.value.arg;
1054
1055 /* next_op points to the op that holds the Bank Register */
1056
1057 next_op = next_op->common.next;
1058
1059 /* next_op points to the op that holds the Bank Value */
1060
1061 next_op = next_op->common.next;
1062
1063 /*
1064 * Set proper index into operand stack for acpi_ds_obj_stack_push
1065 * invoked inside acpi_ds_create_operand.
1066 *
1067 * We use walk_state->Operands[0] to store the evaluated bank_value
1068 */
1069 walk_state->operand_index = 0;
1070
1071 status = acpi_ds_create_operand(walk_state, next_op, 0);
1072 if (ACPI_FAILURE(status)) {
1073 return_ACPI_STATUS(status);
1074 }
1075
1076 status = acpi_ex_resolve_to_value(&walk_state->operands[0], walk_state);
1077 if (ACPI_FAILURE(status)) {
1078 return_ACPI_STATUS(status);
1079 }
1080
Bob Moore71d993e2008-06-10 14:25:05 +08001081 ACPI_DUMP_OPERANDS(ACPI_WALK_OPERANDS,
1082 acpi_ps_get_opcode_name(op->common.aml_opcode), 1);
Lin Mingef805d92008-04-10 19:06:41 +04001083 /*
1084 * Get the bank_value operand and save it
1085 * (at Top of stack)
1086 */
1087 operand_desc = walk_state->operands[0];
1088
1089 /* Arg points to the start Bank Field */
1090
1091 arg = acpi_ps_get_arg(op, 4);
1092 while (arg) {
1093
1094 /* Ignore OFFSET and ACCESSAS terms here */
1095
1096 if (arg->common.aml_opcode == AML_INT_NAMEDFIELD_OP) {
1097 node = arg->common.node;
1098
1099 obj_desc = acpi_ns_get_attached_object(node);
1100 if (!obj_desc) {
1101 return_ACPI_STATUS(AE_NOT_EXIST);
1102 }
1103
1104 obj_desc->bank_field.value =
1105 (u32) operand_desc->integer.value;
1106 }
1107
1108 /* Move to next field in the list */
1109
1110 arg = arg->common.next;
1111 }
1112
1113 acpi_ut_remove_reference(operand_desc);
1114 return_ACPI_STATUS(status);
1115}
1116
1117/*******************************************************************************
1118 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 * FUNCTION: acpi_ds_exec_begin_control_op
1120 *
1121 * PARAMETERS: walk_list - The list that owns the walk stack
1122 * Op - The control Op
1123 *
1124 * RETURN: Status
1125 *
1126 * DESCRIPTION: Handles all control ops encountered during control method
1127 * execution.
1128 *
1129 ******************************************************************************/
1130
1131acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001132acpi_ds_exec_begin_control_op(struct acpi_walk_state *walk_state,
1133 union acpi_parse_object *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Len Brown4be44fc2005-08-05 00:44:28 -04001135 acpi_status status = AE_OK;
1136 union acpi_generic_state *control_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Bob Mooreb229cf92006-04-21 17:15:00 -04001138 ACPI_FUNCTION_NAME(ds_exec_begin_control_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Len Brown4be44fc2005-08-05 00:44:28 -04001140 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Op=%p Opcode=%2.2X State=%p\n", op,
1141 op->common.aml_opcode, walk_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 switch (op->common.aml_opcode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 case AML_WHILE_OP:
1145
1146 /*
Bob Moore96411a62008-11-12 15:02:00 +08001147 * If this is an additional iteration of a while loop, continue.
1148 * There is no need to allocate a new control state.
1149 */
1150 if (walk_state->control_state) {
1151 if (walk_state->control_state->control.aml_predicate_start
1152 == (walk_state->parser_state.aml - 1)) {
1153
1154 /* Reset the state to start-of-loop */
1155
1156 walk_state->control_state->common.state =
1157 ACPI_CONTROL_CONDITIONAL_EXECUTING;
1158 break;
1159 }
1160 }
1161
1162 /*lint -fallthrough */
1163
1164 case AML_IF_OP:
1165
1166 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 * IF/WHILE: Create a new control state to manage these
1168 * constructs. We need to manage these as a stack, in order
1169 * to handle nesting.
1170 */
Len Brown4be44fc2005-08-05 00:44:28 -04001171 control_state = acpi_ut_create_control_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (!control_state) {
1173 status = AE_NO_MEMORY;
1174 break;
1175 }
1176 /*
1177 * Save a pointer to the predicate for multiple executions
1178 * of a loop
1179 */
Len Brown4be44fc2005-08-05 00:44:28 -04001180 control_state->control.aml_predicate_start =
1181 walk_state->parser_state.aml - 1;
1182 control_state->control.package_end =
1183 walk_state->parser_state.pkg_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 control_state->control.opcode = op->common.aml_opcode;
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* Push the control state on this walk's control stack */
1187
Len Brown4be44fc2005-08-05 00:44:28 -04001188 acpi_ut_push_generic_state(&walk_state->control_state,
1189 control_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 break;
1191
1192 case AML_ELSE_OP:
1193
1194 /* Predicate is in the state object */
1195 /* If predicate is true, the IF was executed, ignore ELSE part */
1196
1197 if (walk_state->last_predicate) {
1198 status = AE_CTRL_TRUE;
1199 }
1200
1201 break;
1202
1203 case AML_RETURN_OP:
1204
1205 break;
1206
1207 default:
1208 break;
1209 }
1210
1211 return (status);
1212}
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214/*******************************************************************************
1215 *
1216 * FUNCTION: acpi_ds_exec_end_control_op
1217 *
1218 * PARAMETERS: walk_list - The list that owns the walk stack
1219 * Op - The control Op
1220 *
1221 * RETURN: Status
1222 *
1223 * DESCRIPTION: Handles all control ops encountered during control method
1224 * execution.
1225 *
1226 ******************************************************************************/
1227
1228acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -04001229acpi_ds_exec_end_control_op(struct acpi_walk_state * walk_state,
1230 union acpi_parse_object * op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Len Brown4be44fc2005-08-05 00:44:28 -04001232 acpi_status status = AE_OK;
1233 union acpi_generic_state *control_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Bob Mooreb229cf92006-04-21 17:15:00 -04001235 ACPI_FUNCTION_NAME(ds_exec_end_control_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 switch (op->common.aml_opcode) {
1238 case AML_IF_OP:
1239
Len Brown4be44fc2005-08-05 00:44:28 -04001240 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "[IF_OP] Op=%p\n", op));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 /*
1243 * Save the result of the predicate in case there is an
1244 * ELSE to come
1245 */
1246 walk_state->last_predicate =
Len Brown4be44fc2005-08-05 00:44:28 -04001247 (u8) walk_state->control_state->common.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 /*
1250 * Pop the control state that was created at the start
1251 * of the IF and free it
1252 */
Len Brown4be44fc2005-08-05 00:44:28 -04001253 control_state =
1254 acpi_ut_pop_generic_state(&walk_state->control_state);
1255 acpi_ut_delete_generic_state(control_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 break;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 case AML_ELSE_OP:
1259
1260 break;
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 case AML_WHILE_OP:
1263
Len Brown4be44fc2005-08-05 00:44:28 -04001264 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "[WHILE_OP] Op=%p\n", op));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Bob Moorefc374452008-11-12 15:15:29 +08001266 control_state = walk_state->control_state;
1267 if (control_state->common.value) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001268
Bob Moorefc374452008-11-12 15:15:29 +08001269 /* Predicate was true, the body of the loop was just executed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Bob Moorefc374452008-11-12 15:15:29 +08001271 /*
1272 * This loop counter mechanism allows the interpreter to escape
1273 * possibly infinite loops. This can occur in poorly written AML
1274 * when the hardware does not respond within a while loop and the
1275 * loop does not implement a timeout.
1276 */
1277 control_state->control.loop_count++;
1278 if (control_state->control.loop_count >
1279 ACPI_MAX_LOOP_ITERATIONS) {
1280 status = AE_AML_INFINITE_LOOP;
1281 break;
1282 }
1283
1284 /*
1285 * Go back and evaluate the predicate and maybe execute the loop
1286 * another time
1287 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 status = AE_CTRL_PENDING;
Bob Moore96411a62008-11-12 15:02:00 +08001289 walk_state->aml_last_while =
Bob Moorefc374452008-11-12 15:15:29 +08001290 control_state->control.aml_predicate_start;
Bob Moore96411a62008-11-12 15:02:00 +08001291 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293
Bob Moore96411a62008-11-12 15:02:00 +08001294 /* Predicate was false, terminate this while loop */
1295
Len Brown4be44fc2005-08-05 00:44:28 -04001296 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
1297 "[WHILE_OP] termination! Op=%p\n", op));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 /* Pop this control state and free it */
1300
Len Brown4be44fc2005-08-05 00:44:28 -04001301 control_state =
1302 acpi_ut_pop_generic_state(&walk_state->control_state);
Len Brown4be44fc2005-08-05 00:44:28 -04001303 acpi_ut_delete_generic_state(control_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 case AML_RETURN_OP:
1307
Len Brown4be44fc2005-08-05 00:44:28 -04001308 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
1309 "[RETURN_OP] Op=%p Arg=%p\n", op,
1310 op->common.value.arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 /*
1313 * One optional operand -- the return value
1314 * It can be either an immediate operand or a result that
1315 * has been bubbled up the tree
1316 */
1317 if (op->common.value.arg) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 /* Since we have a real Return(), delete any implicit return */
1320
Len Brown4be44fc2005-08-05 00:44:28 -04001321 acpi_ds_clear_implicit_return(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /* Return statement has an immediate operand */
1324
Len Brown4be44fc2005-08-05 00:44:28 -04001325 status =
1326 acpi_ds_create_operands(walk_state,
1327 op->common.value.arg);
1328 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return (status);
1330 }
1331
1332 /*
1333 * If value being returned is a Reference (such as
1334 * an arg or local), resolve it now because it may
1335 * cease to exist at the end of the method.
1336 */
Len Brown4be44fc2005-08-05 00:44:28 -04001337 status =
1338 acpi_ex_resolve_to_value(&walk_state->operands[0],
1339 walk_state);
1340 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return (status);
1342 }
1343
1344 /*
1345 * Get the return value and save as the last result
1346 * value. This is the only place where walk_state->return_desc
1347 * is set to anything other than zero!
1348 */
1349 walk_state->return_desc = walk_state->operands[0];
Bob Moore773069d2008-04-10 19:06:36 +04001350 } else if (walk_state->result_count) {
Bob Moore52fc0b02006-10-02 00:00:00 -04001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 /* Since we have a real Return(), delete any implicit return */
1353
Len Brown4be44fc2005-08-05 00:44:28 -04001354 acpi_ds_clear_implicit_return(walk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 /*
1357 * The return value has come from a previous calculation.
1358 *
1359 * If value being returned is a Reference (such as
1360 * an arg or local), resolve it now because it may
1361 * cease to exist at the end of the method.
1362 *
1363 * Allow references created by the Index operator to return unchanged.
1364 */
Len Brown4be44fc2005-08-05 00:44:28 -04001365 if ((ACPI_GET_DESCRIPTOR_TYPE
1366 (walk_state->results->results.obj_desc[0]) ==
1367 ACPI_DESC_TYPE_OPERAND)
Bob Moore3371c192009-02-18 14:44:03 +08001368 && ((walk_state->results->results.obj_desc[0])->
1369 common.type == ACPI_TYPE_LOCAL_REFERENCE)
Len Brown4be44fc2005-08-05 00:44:28 -04001370 && ((walk_state->results->results.obj_desc[0])->
Bob Moore1044f1f2008-09-27 11:08:41 +08001371 reference.class != ACPI_REFCLASS_INDEX)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001372 status =
1373 acpi_ex_resolve_to_value(&walk_state->
1374 results->results.
1375 obj_desc[0],
1376 walk_state);
1377 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return (status);
1379 }
1380 }
1381
Len Brown4be44fc2005-08-05 00:44:28 -04001382 walk_state->return_desc =
1383 walk_state->results->results.obj_desc[0];
1384 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* No return operand */
1386
1387 if (walk_state->num_operands) {
Len Brown4be44fc2005-08-05 00:44:28 -04001388 acpi_ut_remove_reference(walk_state->
1389 operands[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391
Len Brown4be44fc2005-08-05 00:44:28 -04001392 walk_state->operands[0] = NULL;
1393 walk_state->num_operands = 0;
1394 walk_state->return_desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
Len Brown4be44fc2005-08-05 00:44:28 -04001397 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
Bob Mooreb229cf92006-04-21 17:15:00 -04001398 "Completed RETURN_OP State=%p, RetVal=%p\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001399 walk_state, walk_state->return_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /* End the control method execution right now */
1402
1403 status = AE_CTRL_TERMINATE;
1404 break;
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 case AML_NOOP_OP:
1407
1408 /* Just do nothing! */
1409 break;
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 case AML_BREAK_POINT_OP:
1412
1413 /* Call up to the OS service layer to handle this */
1414
Len Brown4be44fc2005-08-05 00:44:28 -04001415 status =
1416 acpi_os_signal(ACPI_SIGNAL_BREAKPOINT,
1417 "Executed AML Breakpoint opcode");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 /* If and when it returns, all done. */
1420
1421 break;
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 case AML_BREAK_OP:
Len Brown4be44fc2005-08-05 00:44:28 -04001424 case AML_CONTINUE_OP: /* ACPI 2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 /* Pop and delete control states until we find a while */
1427
1428 while (walk_state->control_state &&
Len Brown4be44fc2005-08-05 00:44:28 -04001429 (walk_state->control_state->control.opcode !=
1430 AML_WHILE_OP)) {
1431 control_state =
1432 acpi_ut_pop_generic_state(&walk_state->
1433 control_state);
1434 acpi_ut_delete_generic_state(control_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
1437 /* No while found? */
1438
1439 if (!walk_state->control_state) {
1440 return (AE_AML_NO_WHILE);
1441 }
1442
1443 /* Was: walk_state->aml_last_while = walk_state->control_state->Control.aml_predicate_start; */
1444
Len Brown4be44fc2005-08-05 00:44:28 -04001445 walk_state->aml_last_while =
1446 walk_state->control_state->control.package_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 /* Return status depending on opcode */
1449
1450 if (op->common.aml_opcode == AML_BREAK_OP) {
1451 status = AE_CTRL_BREAK;
Len Brown4be44fc2005-08-05 00:44:28 -04001452 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 status = AE_CTRL_CONTINUE;
1454 }
1455 break;
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 default:
1458
Bob Mooreb8e4d892006-01-27 16:43:00 -05001459 ACPI_ERROR((AE_INFO, "Unknown control opcode=%X Op=%p",
1460 op->common.aml_opcode, op));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 status = AE_AML_BAD_OPCODE;
1463 break;
1464 }
1465
1466 return (status);
1467}