blob: 4985ce58c02432ff30169dd56dde35d478ada180 [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>
45#include <acpi/acparser.h>
46#include <acpi/acdispat.h>
47#include <acpi/acinterp.h>
Bob Moorea8fadc92008-11-13 09:45:35 +080048#include <acpi/amlcode.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("psxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore0c9938c2005-07-29 15:15:00 -070053/* Local Prototypes */
Bob Moore41195322006-05-26 16:36:00 -040054static void acpi_ps_start_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040055
Bob Moore41195322006-05-26 16:36:00 -040056static void acpi_ps_stop_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040057
Robert Moore0c9938c2005-07-29 15:15:00 -070058static void
Bob Moore41195322006-05-26 16:36:00 -040059acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/*******************************************************************************
62 *
Bob Moore50eca3e2005-09-30 19:03:00 -040063 * FUNCTION: acpi_debug_trace
64 *
65 * PARAMETERS: method_name - Valid ACPI name string
66 * debug_level - Optional level mask. 0 to use default
67 * debug_layer - Optional layer mask. 0 to use default
68 * Flags - bit 1: one shot(1) or persistent(0)
69 *
70 * RETURN: Status
71 *
72 * DESCRIPTION: External interface to enable debug tracing during control
73 * method execution
74 *
75 ******************************************************************************/
76
77acpi_status
78acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags)
79{
80 acpi_status status;
81
82 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
83 if (ACPI_FAILURE(status)) {
84 return (status);
85 }
86
87 /* TBDs: Validate name, allow full path or just nameseg */
88
Bob Moorec51a4de2005-11-17 13:07:00 -050089 acpi_gbl_trace_method_name = *ACPI_CAST_PTR(u32, name);
Bob Moore50eca3e2005-09-30 19:03:00 -040090 acpi_gbl_trace_flags = flags;
91
92 if (debug_level) {
93 acpi_gbl_trace_dbg_level = debug_level;
94 }
95 if (debug_layer) {
96 acpi_gbl_trace_dbg_layer = debug_layer;
97 }
98
99 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
100 return (AE_OK);
101}
102
103/*******************************************************************************
104 *
105 * FUNCTION: acpi_ps_start_trace
106 *
107 * PARAMETERS: Info - Method info struct
108 *
109 * RETURN: None
110 *
111 * DESCRIPTION: Start control method execution trace
112 *
113 ******************************************************************************/
114
Bob Moore41195322006-05-26 16:36:00 -0400115static void acpi_ps_start_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400116{
117 acpi_status status;
118
119 ACPI_FUNCTION_ENTRY();
120
121 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
122 if (ACPI_FAILURE(status)) {
123 return;
124 }
125
126 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400127 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400128 goto exit;
129 }
130
131 acpi_gbl_original_dbg_level = acpi_dbg_level;
132 acpi_gbl_original_dbg_layer = acpi_dbg_layer;
133
134 acpi_dbg_level = 0x00FFFFFF;
135 acpi_dbg_layer = ACPI_UINT32_MAX;
136
137 if (acpi_gbl_trace_dbg_level) {
138 acpi_dbg_level = acpi_gbl_trace_dbg_level;
139 }
140 if (acpi_gbl_trace_dbg_layer) {
141 acpi_dbg_layer = acpi_gbl_trace_dbg_layer;
142 }
143
144 exit:
145 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
146}
147
148/*******************************************************************************
149 *
150 * FUNCTION: acpi_ps_stop_trace
151 *
152 * PARAMETERS: Info - Method info struct
153 *
154 * RETURN: None
155 *
156 * DESCRIPTION: Stop control method execution trace
157 *
158 ******************************************************************************/
159
Bob Moore41195322006-05-26 16:36:00 -0400160static void acpi_ps_stop_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400161{
162 acpi_status status;
163
164 ACPI_FUNCTION_ENTRY();
165
166 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
167 if (ACPI_FAILURE(status)) {
168 return;
169 }
170
171 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400172 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400173 goto exit;
174 }
175
176 /* Disable further tracing if type is one-shot */
177
178 if (acpi_gbl_trace_flags & 1) {
179 acpi_gbl_trace_method_name = 0;
180 acpi_gbl_trace_dbg_level = 0;
181 acpi_gbl_trace_dbg_layer = 0;
182 }
183
184 acpi_dbg_level = acpi_gbl_original_dbg_level;
185 acpi_dbg_layer = acpi_gbl_original_dbg_layer;
186
187 exit:
188 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
189}
190
191/*******************************************************************************
192 *
Robert Moore0c9938c2005-07-29 15:15:00 -0700193 * FUNCTION: acpi_ps_execute_method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Robert Moore44f6c012005-04-18 22:49:35 -0400195 * PARAMETERS: Info - Method info block, contains:
196 * Node - Method Node to execute
Robert Moore0c9938c2005-07-29 15:15:00 -0700197 * obj_desc - Method object
Robert Moore44f6c012005-04-18 22:49:35 -0400198 * Parameters - List of parameters to pass to the method,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * terminated by NULL. Params itself may be
200 * NULL if no parameters are being passed.
Robert Moore44f6c012005-04-18 22:49:35 -0400201 * return_object - Where to put method's return value (if
202 * any). If NULL, no value is returned.
203 * parameter_type - Type of Parameter list
204 * return_object - Where to put method's return value (if
205 * any). If NULL, no value is returned.
Robert Moore0c9938c2005-07-29 15:15:00 -0700206 * pass_number - Parse or execute pass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
208 * RETURN: Status
209 *
210 * DESCRIPTION: Execute a control method
211 *
212 ******************************************************************************/
213
Bob Moore41195322006-05-26 16:36:00 -0400214acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Len Brown4be44fc2005-08-05 00:44:28 -0400216 acpi_status status;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300217 union acpi_parse_object *op;
218 struct acpi_walk_state *walk_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Bob Mooreb229cf92006-04-21 17:15:00 -0400220 ACPI_FUNCTION_TRACE(ps_execute_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Robert Moore0c9938c2005-07-29 15:15:00 -0700222 /* Validate the Info and method Node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Bob Moore41195322006-05-26 16:36:00 -0400224 if (!info || !info->resolved_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400225 return_ACPI_STATUS(AE_NULL_ENTRY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /* Init for new method, wait on concurrency semaphore */
229
Len Brown4be44fc2005-08-05 00:44:28 -0400230 status =
Bob Moore41195322006-05-26 16:36:00 -0400231 acpi_ds_begin_method_execution(info->resolved_node, info->obj_desc,
232 NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400233 if (ACPI_FAILURE(status)) {
234 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300238 * The caller "owns" the parameters, so give each one an extra reference
Robert Moore0c9938c2005-07-29 15:15:00 -0700239 */
Len Brown4be44fc2005-08-05 00:44:28 -0400240 acpi_ps_update_parameter_list(info, REF_INCREMENT);
Robert Moore0c9938c2005-07-29 15:15:00 -0700241
Bob Moore50eca3e2005-09-30 19:03:00 -0400242 /* Begin tracing if requested */
243
244 acpi_ps_start_trace(info);
245
Robert Moore0c9938c2005-07-29 15:15:00 -0700246 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300247 * Execute the method. Performs parse simultaneously
Robert Moore0c9938c2005-07-29 15:15:00 -0700248 */
Len Brown4be44fc2005-08-05 00:44:28 -0400249 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300250 "**** Begin Method Parse/Execute [%4.4s] **** Node=%p Obj=%p\n",
251 info->resolved_node->name.ascii, info->resolved_node,
252 info->obj_desc));
Robert Moore0c9938c2005-07-29 15:15:00 -0700253
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300254 /* Create and init a Root Node */
255
256 op = acpi_ps_create_scope_op();
257 if (!op) {
258 status = AE_NO_MEMORY;
Robert Moore0c9938c2005-07-29 15:15:00 -0700259 goto cleanup;
260 }
261
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300262 /* Create and initialize a new walk state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Bob Mooreec3153f2007-02-02 19:48:21 +0300264 info->pass_number = ACPI_IMODE_EXECUTE;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300265 walk_state =
266 acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL,
267 NULL, NULL);
268 if (!walk_state) {
269 status = AE_NO_MEMORY;
270 goto cleanup;
271 }
272
273 status = acpi_ds_init_aml_walk(walk_state, op, info->resolved_node,
274 info->obj_desc->method.aml_start,
275 info->obj_desc->method.aml_length, info,
276 info->pass_number);
277 if (ACPI_FAILURE(status)) {
278 acpi_ds_delete_walk_state(walk_state);
279 goto cleanup;
280 }
281
Bob Moorea8fadc92008-11-13 09:45:35 +0800282 /* Invoke an internal method if necessary */
283
284 if (info->obj_desc->method.method_flags & AML_METHOD_INTERNAL_ONLY) {
285 status = info->obj_desc->method.implementation(walk_state);
286 info->return_object = walk_state->return_desc;
287
288 /* Cleanup states */
289
290 acpi_ds_scope_stack_clear(walk_state);
291 acpi_ps_cleanup_scope(&walk_state->parser_state);
292 acpi_ds_terminate_control_method(walk_state->method_desc,
293 walk_state);
294 acpi_ds_delete_walk_state(walk_state);
295 goto cleanup;
296 }
297
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300298 /* Parse the AML */
299
300 status = acpi_ps_parse_aml(walk_state);
301
302 /* walk_state was deleted by parse_aml */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 cleanup:
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300305 acpi_ps_delete_parse_tree(op);
306
Bob Moore50eca3e2005-09-30 19:03:00 -0400307 /* End optional tracing */
308
309 acpi_ps_stop_trace(info);
310
Robert Moore0c9938c2005-07-29 15:15:00 -0700311 /* Take away the extra reference that we gave the parameters above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Len Brown4be44fc2005-08-05 00:44:28 -0400313 acpi_ps_update_parameter_list(info, REF_DECREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Robert Moore0c9938c2005-07-29 15:15:00 -0700315 /* Exit now if error above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Len Brown4be44fc2005-08-05 00:44:28 -0400317 if (ACPI_FAILURE(status)) {
318 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
321 /*
322 * If the method has returned an object, signal this to the caller with
323 * a control exception code
324 */
325 if (info->return_object) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400326 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Method returned ObjDesc=%p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400327 info->return_object));
328 ACPI_DUMP_STACK_ENTRY(info->return_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 status = AE_CTRL_RETURN_VALUE;
331 }
332
Len Brown4be44fc2005-08-05 00:44:28 -0400333 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Robert Moore0c9938c2005-07-29 15:15:00 -0700336/*******************************************************************************
337 *
338 * FUNCTION: acpi_ps_update_parameter_list
339 *
Bob Moore41195322006-05-26 16:36:00 -0400340 * PARAMETERS: Info - See struct acpi_evaluate_info
Robert Moore0c9938c2005-07-29 15:15:00 -0700341 * (Used: parameter_type and Parameters)
342 * Action - Add or Remove reference
343 *
344 * RETURN: Status
345 *
346 * DESCRIPTION: Update reference count on all method parameter objects
347 *
348 ******************************************************************************/
349
350static void
Bob Moore41195322006-05-26 16:36:00 -0400351acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action)
Robert Moore0c9938c2005-07-29 15:15:00 -0700352{
Bob Moore67a119f2008-06-10 13:42:13 +0800353 u32 i;
Robert Moore0c9938c2005-07-29 15:15:00 -0700354
Bob Moorec91d9242008-06-10 12:38:10 +0800355 if (info->parameters) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400356
Robert Moore0c9938c2005-07-29 15:15:00 -0700357 /* Update reference count for each parameter */
358
359 for (i = 0; info->parameters[i]; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400360
Robert Moore0c9938c2005-07-29 15:15:00 -0700361 /* Ignore errors, just do them all */
362
Len Brown4be44fc2005-08-05 00:44:28 -0400363 (void)acpi_ut_update_object_reference(info->
364 parameters[i],
365 action);
Robert Moore0c9938c2005-07-29 15:15:00 -0700366 }
367 }
368}