blob: 12934ad6da8e3a1c2db36844d1a320f2a41ccc0d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: psxface - Parser external interfaces
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, 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"
49#include "amlcode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("psxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Robert Moore0c9938c2005-07-29 15:15:00 -070054/* Local Prototypes */
Bob Moore41195322006-05-26 16:36:00 -040055static void acpi_ps_start_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040056
Bob Moore41195322006-05-26 16:36:00 -040057static void acpi_ps_stop_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040058
Robert Moore0c9938c2005-07-29 15:15:00 -070059static void
Bob Moore41195322006-05-26 16:36:00 -040060acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*******************************************************************************
63 *
Bob Moore50eca3e2005-09-30 19:03:00 -040064 * FUNCTION: acpi_debug_trace
65 *
66 * PARAMETERS: method_name - Valid ACPI name string
67 * debug_level - Optional level mask. 0 to use default
68 * debug_layer - Optional layer mask. 0 to use default
69 * Flags - bit 1: one shot(1) or persistent(0)
70 *
71 * RETURN: Status
72 *
73 * DESCRIPTION: External interface to enable debug tracing during control
74 * method execution
75 *
76 ******************************************************************************/
77
78acpi_status
79acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags)
80{
81 acpi_status status;
82
83 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
84 if (ACPI_FAILURE(status)) {
85 return (status);
86 }
87
88 /* TBDs: Validate name, allow full path or just nameseg */
89
Bob Moorec51a4de2005-11-17 13:07:00 -050090 acpi_gbl_trace_method_name = *ACPI_CAST_PTR(u32, name);
Bob Moore50eca3e2005-09-30 19:03:00 -040091 acpi_gbl_trace_flags = flags;
92
93 if (debug_level) {
94 acpi_gbl_trace_dbg_level = debug_level;
95 }
96 if (debug_layer) {
97 acpi_gbl_trace_dbg_layer = debug_layer;
98 }
99
100 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
101 return (AE_OK);
102}
103
104/*******************************************************************************
105 *
106 * FUNCTION: acpi_ps_start_trace
107 *
108 * PARAMETERS: Info - Method info struct
109 *
110 * RETURN: None
111 *
112 * DESCRIPTION: Start control method execution trace
113 *
114 ******************************************************************************/
115
Bob Moore41195322006-05-26 16:36:00 -0400116static void acpi_ps_start_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400117{
118 acpi_status status;
119
120 ACPI_FUNCTION_ENTRY();
121
122 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
123 if (ACPI_FAILURE(status)) {
124 return;
125 }
126
127 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400128 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400129 goto exit;
130 }
131
132 acpi_gbl_original_dbg_level = acpi_dbg_level;
133 acpi_gbl_original_dbg_layer = acpi_dbg_layer;
134
135 acpi_dbg_level = 0x00FFFFFF;
136 acpi_dbg_layer = ACPI_UINT32_MAX;
137
138 if (acpi_gbl_trace_dbg_level) {
139 acpi_dbg_level = acpi_gbl_trace_dbg_level;
140 }
141 if (acpi_gbl_trace_dbg_layer) {
142 acpi_dbg_layer = acpi_gbl_trace_dbg_layer;
143 }
144
145 exit:
146 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
147}
148
149/*******************************************************************************
150 *
151 * FUNCTION: acpi_ps_stop_trace
152 *
153 * PARAMETERS: Info - Method info struct
154 *
155 * RETURN: None
156 *
157 * DESCRIPTION: Stop control method execution trace
158 *
159 ******************************************************************************/
160
Bob Moore41195322006-05-26 16:36:00 -0400161static void acpi_ps_stop_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400162{
163 acpi_status status;
164
165 ACPI_FUNCTION_ENTRY();
166
167 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
168 if (ACPI_FAILURE(status)) {
169 return;
170 }
171
172 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400173 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400174 goto exit;
175 }
176
177 /* Disable further tracing if type is one-shot */
178
179 if (acpi_gbl_trace_flags & 1) {
180 acpi_gbl_trace_method_name = 0;
181 acpi_gbl_trace_dbg_level = 0;
182 acpi_gbl_trace_dbg_layer = 0;
183 }
184
185 acpi_dbg_level = acpi_gbl_original_dbg_level;
186 acpi_dbg_layer = acpi_gbl_original_dbg_layer;
187
188 exit:
189 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
190}
191
192/*******************************************************************************
193 *
Robert Moore0c9938c2005-07-29 15:15:00 -0700194 * FUNCTION: acpi_ps_execute_method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *
Robert Moore44f6c012005-04-18 22:49:35 -0400196 * PARAMETERS: Info - Method info block, contains:
197 * Node - Method Node to execute
Robert Moore0c9938c2005-07-29 15:15:00 -0700198 * obj_desc - Method object
Robert Moore44f6c012005-04-18 22:49:35 -0400199 * Parameters - List of parameters to pass to the method,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * terminated by NULL. Params itself may be
201 * NULL if no parameters are being passed.
Robert Moore44f6c012005-04-18 22:49:35 -0400202 * return_object - Where to put method's return value (if
203 * any). If NULL, no value is returned.
204 * parameter_type - Type of Parameter list
205 * return_object - Where to put method's return value (if
206 * any). If NULL, no value is returned.
Robert Moore0c9938c2005-07-29 15:15:00 -0700207 * pass_number - Parse or execute pass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 *
209 * RETURN: Status
210 *
211 * DESCRIPTION: Execute a control method
212 *
213 ******************************************************************************/
214
Bob Moore41195322006-05-26 16:36:00 -0400215acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Len Brown4be44fc2005-08-05 00:44:28 -0400217 acpi_status status;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300218 union acpi_parse_object *op;
219 struct acpi_walk_state *walk_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Bob Mooreb229cf92006-04-21 17:15:00 -0400221 ACPI_FUNCTION_TRACE(ps_execute_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Robert Moore0c9938c2005-07-29 15:15:00 -0700223 /* Validate the Info and method Node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Bob Moore41195322006-05-26 16:36:00 -0400225 if (!info || !info->resolved_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400226 return_ACPI_STATUS(AE_NULL_ENTRY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* Init for new method, wait on concurrency semaphore */
230
Len Brown4be44fc2005-08-05 00:44:28 -0400231 status =
Bob Moore41195322006-05-26 16:36:00 -0400232 acpi_ds_begin_method_execution(info->resolved_node, info->obj_desc,
233 NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400234 if (ACPI_FAILURE(status)) {
235 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300239 * The caller "owns" the parameters, so give each one an extra reference
Robert Moore0c9938c2005-07-29 15:15:00 -0700240 */
Len Brown4be44fc2005-08-05 00:44:28 -0400241 acpi_ps_update_parameter_list(info, REF_INCREMENT);
Robert Moore0c9938c2005-07-29 15:15:00 -0700242
Bob Moore50eca3e2005-09-30 19:03:00 -0400243 /* Begin tracing if requested */
244
245 acpi_ps_start_trace(info);
246
Robert Moore0c9938c2005-07-29 15:15:00 -0700247 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300248 * Execute the method. Performs parse simultaneously
Robert Moore0c9938c2005-07-29 15:15:00 -0700249 */
Len Brown4be44fc2005-08-05 00:44:28 -0400250 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300251 "**** Begin Method Parse/Execute [%4.4s] **** Node=%p Obj=%p\n",
252 info->resolved_node->name.ascii, info->resolved_node,
253 info->obj_desc));
Robert Moore0c9938c2005-07-29 15:15:00 -0700254
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300255 /* Create and init a Root Node */
256
257 op = acpi_ps_create_scope_op();
258 if (!op) {
259 status = AE_NO_MEMORY;
Robert Moore0c9938c2005-07-29 15:15:00 -0700260 goto cleanup;
261 }
262
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300263 /* Create and initialize a new walk state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Bob Mooreec3153f2007-02-02 19:48:21 +0300265 info->pass_number = ACPI_IMODE_EXECUTE;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300266 walk_state =
267 acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL,
268 NULL, NULL);
269 if (!walk_state) {
270 status = AE_NO_MEMORY;
271 goto cleanup;
272 }
273
274 status = acpi_ds_init_aml_walk(walk_state, op, info->resolved_node,
275 info->obj_desc->method.aml_start,
276 info->obj_desc->method.aml_length, info,
277 info->pass_number);
278 if (ACPI_FAILURE(status)) {
279 acpi_ds_delete_walk_state(walk_state);
280 goto cleanup;
281 }
282
Lin Ming7f0c8262009-08-13 14:03:15 +0800283 if (info->obj_desc->method.flags & AOPOBJ_MODULE_LEVEL) {
284 walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL;
285 }
286
Bob Moorea8fadc92008-11-13 09:45:35 +0800287 /* Invoke an internal method if necessary */
288
289 if (info->obj_desc->method.method_flags & AML_METHOD_INTERNAL_ONLY) {
290 status = info->obj_desc->method.implementation(walk_state);
291 info->return_object = walk_state->return_desc;
292
293 /* Cleanup states */
294
295 acpi_ds_scope_stack_clear(walk_state);
296 acpi_ps_cleanup_scope(&walk_state->parser_state);
297 acpi_ds_terminate_control_method(walk_state->method_desc,
298 walk_state);
299 acpi_ds_delete_walk_state(walk_state);
300 goto cleanup;
301 }
302
Lin Ming7a4b8132008-11-13 11:25:22 +0800303 /*
304 * Start method evaluation with an implicit return of zero.
305 * This is done for Windows compatibility.
306 */
307 if (acpi_gbl_enable_interpreter_slack) {
308 walk_state->implicit_return_obj =
Bob Mooredc95a272009-11-12 09:52:45 +0800309 acpi_ut_create_integer_object((u64) 0);
Lin Ming7a4b8132008-11-13 11:25:22 +0800310 if (!walk_state->implicit_return_obj) {
311 status = AE_NO_MEMORY;
312 acpi_ds_delete_walk_state(walk_state);
313 goto cleanup;
314 }
Lin Ming7a4b8132008-11-13 11:25:22 +0800315 }
316
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300317 /* Parse the AML */
318
319 status = acpi_ps_parse_aml(walk_state);
320
321 /* walk_state was deleted by parse_aml */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Len Brown4be44fc2005-08-05 00:44:28 -0400323 cleanup:
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300324 acpi_ps_delete_parse_tree(op);
325
Bob Moore50eca3e2005-09-30 19:03:00 -0400326 /* End optional tracing */
327
328 acpi_ps_stop_trace(info);
329
Robert Moore0c9938c2005-07-29 15:15:00 -0700330 /* Take away the extra reference that we gave the parameters above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Len Brown4be44fc2005-08-05 00:44:28 -0400332 acpi_ps_update_parameter_list(info, REF_DECREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Robert Moore0c9938c2005-07-29 15:15:00 -0700334 /* Exit now if error above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 if (ACPI_FAILURE(status)) {
337 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
340 /*
341 * If the method has returned an object, signal this to the caller with
342 * a control exception code
343 */
344 if (info->return_object) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400345 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Method returned ObjDesc=%p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400346 info->return_object));
347 ACPI_DUMP_STACK_ENTRY(info->return_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 status = AE_CTRL_RETURN_VALUE;
350 }
351
Len Brown4be44fc2005-08-05 00:44:28 -0400352 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Robert Moore0c9938c2005-07-29 15:15:00 -0700355/*******************************************************************************
356 *
357 * FUNCTION: acpi_ps_update_parameter_list
358 *
Bob Moore41195322006-05-26 16:36:00 -0400359 * PARAMETERS: Info - See struct acpi_evaluate_info
Robert Moore0c9938c2005-07-29 15:15:00 -0700360 * (Used: parameter_type and Parameters)
361 * Action - Add or Remove reference
362 *
363 * RETURN: Status
364 *
365 * DESCRIPTION: Update reference count on all method parameter objects
366 *
367 ******************************************************************************/
368
369static void
Bob Moore41195322006-05-26 16:36:00 -0400370acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action)
Robert Moore0c9938c2005-07-29 15:15:00 -0700371{
Bob Moore67a119f2008-06-10 13:42:13 +0800372 u32 i;
Robert Moore0c9938c2005-07-29 15:15:00 -0700373
Bob Moorec91d9242008-06-10 12:38:10 +0800374 if (info->parameters) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400375
Robert Moore0c9938c2005-07-29 15:15:00 -0700376 /* Update reference count for each parameter */
377
378 for (i = 0; info->parameters[i]; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400379
Robert Moore0c9938c2005-07-29 15:15:00 -0700380 /* Ignore errors, just do them all */
381
Len Brown4be44fc2005-08-05 00:44:28 -0400382 (void)acpi_ut_update_object_reference(info->
383 parameters[i],
384 action);
Robert Moore0c9938c2005-07-29 15:15:00 -0700385 }
386 }
387}