blob: c42f067cff9dfc811f611c07dd7af4c04ad197b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: psxface - Parser external interfaces
4 *
5 *****************************************************************************/
6
7/*
Bob Moorea8357b02010-01-22 19:07:36 +08008 * Copyright (C) 2000 - 2010, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acparser.h"
47#include "acdispat.h"
48#include "acinterp.h"
Lin Ming69ec87e2010-04-01 11:14:12 +080049#include "actables.h"
Len Browne2f7a772009-01-09 00:30:03 -050050#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("psxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Robert Moore0c9938c2005-07-29 15:15:00 -070055/* Local Prototypes */
Bob Moore41195322006-05-26 16:36:00 -040056static void acpi_ps_start_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040057
Bob Moore41195322006-05-26 16:36:00 -040058static void acpi_ps_stop_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040059
Robert Moore0c9938c2005-07-29 15:15:00 -070060static void
Bob Moore41195322006-05-26 16:36:00 -040061acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*******************************************************************************
64 *
Bob Moore50eca3e2005-09-30 19:03:00 -040065 * FUNCTION: acpi_debug_trace
66 *
67 * PARAMETERS: method_name - Valid ACPI name string
68 * debug_level - Optional level mask. 0 to use default
69 * debug_layer - Optional layer mask. 0 to use default
70 * Flags - bit 1: one shot(1) or persistent(0)
71 *
72 * RETURN: Status
73 *
74 * DESCRIPTION: External interface to enable debug tracing during control
75 * method execution
76 *
77 ******************************************************************************/
78
79acpi_status
80acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags)
81{
82 acpi_status status;
83
84 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
85 if (ACPI_FAILURE(status)) {
86 return (status);
87 }
88
89 /* TBDs: Validate name, allow full path or just nameseg */
90
Bob Moorec51a4de2005-11-17 13:07:00 -050091 acpi_gbl_trace_method_name = *ACPI_CAST_PTR(u32, name);
Bob Moore50eca3e2005-09-30 19:03:00 -040092 acpi_gbl_trace_flags = flags;
93
94 if (debug_level) {
95 acpi_gbl_trace_dbg_level = debug_level;
96 }
97 if (debug_layer) {
98 acpi_gbl_trace_dbg_layer = debug_layer;
99 }
100
101 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
102 return (AE_OK);
103}
104
105/*******************************************************************************
106 *
107 * FUNCTION: acpi_ps_start_trace
108 *
109 * PARAMETERS: Info - Method info struct
110 *
111 * RETURN: None
112 *
113 * DESCRIPTION: Start control method execution trace
114 *
115 ******************************************************************************/
116
Bob Moore41195322006-05-26 16:36:00 -0400117static void acpi_ps_start_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400118{
119 acpi_status status;
120
121 ACPI_FUNCTION_ENTRY();
122
123 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
124 if (ACPI_FAILURE(status)) {
125 return;
126 }
127
128 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400129 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400130 goto exit;
131 }
132
133 acpi_gbl_original_dbg_level = acpi_dbg_level;
134 acpi_gbl_original_dbg_layer = acpi_dbg_layer;
135
136 acpi_dbg_level = 0x00FFFFFF;
137 acpi_dbg_layer = ACPI_UINT32_MAX;
138
139 if (acpi_gbl_trace_dbg_level) {
140 acpi_dbg_level = acpi_gbl_trace_dbg_level;
141 }
142 if (acpi_gbl_trace_dbg_layer) {
143 acpi_dbg_layer = acpi_gbl_trace_dbg_layer;
144 }
145
146 exit:
147 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
148}
149
150/*******************************************************************************
151 *
152 * FUNCTION: acpi_ps_stop_trace
153 *
154 * PARAMETERS: Info - Method info struct
155 *
156 * RETURN: None
157 *
158 * DESCRIPTION: Stop control method execution trace
159 *
160 ******************************************************************************/
161
Bob Moore41195322006-05-26 16:36:00 -0400162static void acpi_ps_stop_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400163{
164 acpi_status status;
165
166 ACPI_FUNCTION_ENTRY();
167
168 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
169 if (ACPI_FAILURE(status)) {
170 return;
171 }
172
173 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400174 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400175 goto exit;
176 }
177
178 /* Disable further tracing if type is one-shot */
179
180 if (acpi_gbl_trace_flags & 1) {
181 acpi_gbl_trace_method_name = 0;
182 acpi_gbl_trace_dbg_level = 0;
183 acpi_gbl_trace_dbg_layer = 0;
184 }
185
186 acpi_dbg_level = acpi_gbl_original_dbg_level;
187 acpi_dbg_layer = acpi_gbl_original_dbg_layer;
188
189 exit:
190 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
191}
192
193/*******************************************************************************
194 *
Robert Moore0c9938c2005-07-29 15:15:00 -0700195 * FUNCTION: acpi_ps_execute_method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
Robert Moore44f6c012005-04-18 22:49:35 -0400197 * PARAMETERS: Info - Method info block, contains:
198 * Node - Method Node to execute
Robert Moore0c9938c2005-07-29 15:15:00 -0700199 * obj_desc - Method object
Robert Moore44f6c012005-04-18 22:49:35 -0400200 * Parameters - List of parameters to pass to the method,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * terminated by NULL. Params itself may be
202 * NULL if no parameters are being passed.
Robert Moore44f6c012005-04-18 22:49:35 -0400203 * return_object - Where to put method's return value (if
204 * any). If NULL, no value is returned.
205 * parameter_type - Type of Parameter list
206 * return_object - Where to put method's return value (if
207 * any). If NULL, no value is returned.
Robert Moore0c9938c2005-07-29 15:15:00 -0700208 * pass_number - Parse or execute pass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *
210 * RETURN: Status
211 *
212 * DESCRIPTION: Execute a control method
213 *
214 ******************************************************************************/
215
Bob Moore41195322006-05-26 16:36:00 -0400216acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Len Brown4be44fc2005-08-05 00:44:28 -0400218 acpi_status status;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300219 union acpi_parse_object *op;
220 struct acpi_walk_state *walk_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Bob Mooreb229cf92006-04-21 17:15:00 -0400222 ACPI_FUNCTION_TRACE(ps_execute_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Lin Ming729df0f2010-04-01 10:47:56 +0800224 /* Quick validation of DSDT header */
225
226 acpi_tb_check_dsdt_header();
227
Robert Moore0c9938c2005-07-29 15:15:00 -0700228 /* Validate the Info and method Node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Bob Moore41195322006-05-26 16:36:00 -0400230 if (!info || !info->resolved_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400231 return_ACPI_STATUS(AE_NULL_ENTRY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /* Init for new method, wait on concurrency semaphore */
235
Len Brown4be44fc2005-08-05 00:44:28 -0400236 status =
Bob Moore41195322006-05-26 16:36:00 -0400237 acpi_ds_begin_method_execution(info->resolved_node, info->obj_desc,
238 NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400239 if (ACPI_FAILURE(status)) {
240 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300244 * The caller "owns" the parameters, so give each one an extra reference
Robert Moore0c9938c2005-07-29 15:15:00 -0700245 */
Len Brown4be44fc2005-08-05 00:44:28 -0400246 acpi_ps_update_parameter_list(info, REF_INCREMENT);
Robert Moore0c9938c2005-07-29 15:15:00 -0700247
Bob Moore50eca3e2005-09-30 19:03:00 -0400248 /* Begin tracing if requested */
249
250 acpi_ps_start_trace(info);
251
Robert Moore0c9938c2005-07-29 15:15:00 -0700252 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300253 * Execute the method. Performs parse simultaneously
Robert Moore0c9938c2005-07-29 15:15:00 -0700254 */
Len Brown4be44fc2005-08-05 00:44:28 -0400255 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300256 "**** Begin Method Parse/Execute [%4.4s] **** Node=%p Obj=%p\n",
257 info->resolved_node->name.ascii, info->resolved_node,
258 info->obj_desc));
Robert Moore0c9938c2005-07-29 15:15:00 -0700259
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300260 /* Create and init a Root Node */
261
262 op = acpi_ps_create_scope_op();
263 if (!op) {
264 status = AE_NO_MEMORY;
Robert Moore0c9938c2005-07-29 15:15:00 -0700265 goto cleanup;
266 }
267
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300268 /* Create and initialize a new walk state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Bob Mooreec3153f2007-02-02 19:48:21 +0300270 info->pass_number = ACPI_IMODE_EXECUTE;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300271 walk_state =
272 acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL,
273 NULL, NULL);
274 if (!walk_state) {
275 status = AE_NO_MEMORY;
276 goto cleanup;
277 }
278
279 status = acpi_ds_init_aml_walk(walk_state, op, info->resolved_node,
280 info->obj_desc->method.aml_start,
281 info->obj_desc->method.aml_length, info,
282 info->pass_number);
283 if (ACPI_FAILURE(status)) {
284 acpi_ds_delete_walk_state(walk_state);
285 goto cleanup;
286 }
287
Lin Ming7f0c8262009-08-13 14:03:15 +0800288 if (info->obj_desc->method.flags & AOPOBJ_MODULE_LEVEL) {
289 walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL;
290 }
291
Bob Moorea8fadc92008-11-13 09:45:35 +0800292 /* Invoke an internal method if necessary */
293
294 if (info->obj_desc->method.method_flags & AML_METHOD_INTERNAL_ONLY) {
Lin Minge31c32c2009-12-11 15:28:27 +0800295 status =
296 info->obj_desc->method.extra.implementation(walk_state);
Bob Moorea8fadc92008-11-13 09:45:35 +0800297 info->return_object = walk_state->return_desc;
298
299 /* Cleanup states */
300
301 acpi_ds_scope_stack_clear(walk_state);
302 acpi_ps_cleanup_scope(&walk_state->parser_state);
303 acpi_ds_terminate_control_method(walk_state->method_desc,
304 walk_state);
305 acpi_ds_delete_walk_state(walk_state);
306 goto cleanup;
307 }
308
Lin Ming7a4b81312008-11-13 11:25:22 +0800309 /*
310 * Start method evaluation with an implicit return of zero.
311 * This is done for Windows compatibility.
312 */
313 if (acpi_gbl_enable_interpreter_slack) {
314 walk_state->implicit_return_obj =
Bob Mooredc95a272009-11-12 09:52:45 +0800315 acpi_ut_create_integer_object((u64) 0);
Lin Ming7a4b81312008-11-13 11:25:22 +0800316 if (!walk_state->implicit_return_obj) {
317 status = AE_NO_MEMORY;
318 acpi_ds_delete_walk_state(walk_state);
319 goto cleanup;
320 }
Lin Ming7a4b81312008-11-13 11:25:22 +0800321 }
322
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300323 /* Parse the AML */
324
325 status = acpi_ps_parse_aml(walk_state);
326
327 /* walk_state was deleted by parse_aml */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Len Brown4be44fc2005-08-05 00:44:28 -0400329 cleanup:
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300330 acpi_ps_delete_parse_tree(op);
331
Bob Moore50eca3e2005-09-30 19:03:00 -0400332 /* End optional tracing */
333
334 acpi_ps_stop_trace(info);
335
Robert Moore0c9938c2005-07-29 15:15:00 -0700336 /* Take away the extra reference that we gave the parameters above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Len Brown4be44fc2005-08-05 00:44:28 -0400338 acpi_ps_update_parameter_list(info, REF_DECREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Robert Moore0c9938c2005-07-29 15:15:00 -0700340 /* Exit now if error above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Len Brown4be44fc2005-08-05 00:44:28 -0400342 if (ACPI_FAILURE(status)) {
343 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
346 /*
347 * If the method has returned an object, signal this to the caller with
348 * a control exception code
349 */
350 if (info->return_object) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400351 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Method returned ObjDesc=%p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400352 info->return_object));
353 ACPI_DUMP_STACK_ENTRY(info->return_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 status = AE_CTRL_RETURN_VALUE;
356 }
357
Len Brown4be44fc2005-08-05 00:44:28 -0400358 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Robert Moore0c9938c2005-07-29 15:15:00 -0700361/*******************************************************************************
362 *
363 * FUNCTION: acpi_ps_update_parameter_list
364 *
Bob Moore41195322006-05-26 16:36:00 -0400365 * PARAMETERS: Info - See struct acpi_evaluate_info
Robert Moore0c9938c2005-07-29 15:15:00 -0700366 * (Used: parameter_type and Parameters)
367 * Action - Add or Remove reference
368 *
369 * RETURN: Status
370 *
371 * DESCRIPTION: Update reference count on all method parameter objects
372 *
373 ******************************************************************************/
374
375static void
Bob Moore41195322006-05-26 16:36:00 -0400376acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action)
Robert Moore0c9938c2005-07-29 15:15:00 -0700377{
Bob Moore67a119f2008-06-10 13:42:13 +0800378 u32 i;
Robert Moore0c9938c2005-07-29 15:15:00 -0700379
Bob Moorec91d9242008-06-10 12:38:10 +0800380 if (info->parameters) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400381
Robert Moore0c9938c2005-07-29 15:15:00 -0700382 /* Update reference count for each parameter */
383
384 for (i = 0; info->parameters[i]; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400385
Robert Moore0c9938c2005-07-29 15:15:00 -0700386 /* Ignore errors, just do them all */
387
Len Brown4be44fc2005-08-05 00:44:28 -0400388 (void)acpi_ut_update_object_reference(info->
389 parameters[i],
390 action);
Robert Moore0c9938c2005-07-29 15:15:00 -0700391 }
392 }
393}