blob: 5ee09e1245e3b3fa37bf02840bdd6a42fdfd993a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_PARSER
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("psxface")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore0c9938c2005-07-29 15:15:00 -070052/* Local Prototypes */
Bob Moore41195322006-05-26 16:36:00 -040053static void acpi_ps_start_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040054
Bob Moore41195322006-05-26 16:36:00 -040055static void acpi_ps_stop_trace(struct acpi_evaluate_info *info);
Bob Moore50eca3e2005-09-30 19:03:00 -040056
Robert Moore0c9938c2005-07-29 15:15:00 -070057static void
Bob Moore41195322006-05-26 16:36:00 -040058acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*******************************************************************************
61 *
Bob Moore50eca3e2005-09-30 19:03:00 -040062 * FUNCTION: acpi_debug_trace
63 *
64 * PARAMETERS: method_name - Valid ACPI name string
65 * debug_level - Optional level mask. 0 to use default
66 * debug_layer - Optional layer mask. 0 to use default
67 * Flags - bit 1: one shot(1) or persistent(0)
68 *
69 * RETURN: Status
70 *
71 * DESCRIPTION: External interface to enable debug tracing during control
72 * method execution
73 *
74 ******************************************************************************/
75
76acpi_status
77acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags)
78{
79 acpi_status status;
80
81 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
82 if (ACPI_FAILURE(status)) {
83 return (status);
84 }
85
86 /* TBDs: Validate name, allow full path or just nameseg */
87
Bob Moorec51a4de2005-11-17 13:07:00 -050088 acpi_gbl_trace_method_name = *ACPI_CAST_PTR(u32, name);
Bob Moore50eca3e2005-09-30 19:03:00 -040089 acpi_gbl_trace_flags = flags;
90
91 if (debug_level) {
92 acpi_gbl_trace_dbg_level = debug_level;
93 }
94 if (debug_layer) {
95 acpi_gbl_trace_dbg_layer = debug_layer;
96 }
97
98 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
99 return (AE_OK);
100}
101
102/*******************************************************************************
103 *
104 * FUNCTION: acpi_ps_start_trace
105 *
106 * PARAMETERS: Info - Method info struct
107 *
108 * RETURN: None
109 *
110 * DESCRIPTION: Start control method execution trace
111 *
112 ******************************************************************************/
113
Bob Moore41195322006-05-26 16:36:00 -0400114static void acpi_ps_start_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400115{
116 acpi_status status;
117
118 ACPI_FUNCTION_ENTRY();
119
120 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
121 if (ACPI_FAILURE(status)) {
122 return;
123 }
124
125 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400126 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400127 goto exit;
128 }
129
130 acpi_gbl_original_dbg_level = acpi_dbg_level;
131 acpi_gbl_original_dbg_layer = acpi_dbg_layer;
132
133 acpi_dbg_level = 0x00FFFFFF;
134 acpi_dbg_layer = ACPI_UINT32_MAX;
135
136 if (acpi_gbl_trace_dbg_level) {
137 acpi_dbg_level = acpi_gbl_trace_dbg_level;
138 }
139 if (acpi_gbl_trace_dbg_layer) {
140 acpi_dbg_layer = acpi_gbl_trace_dbg_layer;
141 }
142
143 exit:
144 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
145}
146
147/*******************************************************************************
148 *
149 * FUNCTION: acpi_ps_stop_trace
150 *
151 * PARAMETERS: Info - Method info struct
152 *
153 * RETURN: None
154 *
155 * DESCRIPTION: Stop control method execution trace
156 *
157 ******************************************************************************/
158
Bob Moore41195322006-05-26 16:36:00 -0400159static void acpi_ps_stop_trace(struct acpi_evaluate_info *info)
Bob Moore50eca3e2005-09-30 19:03:00 -0400160{
161 acpi_status status;
162
163 ACPI_FUNCTION_ENTRY();
164
165 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
166 if (ACPI_FAILURE(status)) {
167 return;
168 }
169
170 if ((!acpi_gbl_trace_method_name) ||
Bob Moore41195322006-05-26 16:36:00 -0400171 (acpi_gbl_trace_method_name != info->resolved_node->name.integer)) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400172 goto exit;
173 }
174
175 /* Disable further tracing if type is one-shot */
176
177 if (acpi_gbl_trace_flags & 1) {
178 acpi_gbl_trace_method_name = 0;
179 acpi_gbl_trace_dbg_level = 0;
180 acpi_gbl_trace_dbg_layer = 0;
181 }
182
183 acpi_dbg_level = acpi_gbl_original_dbg_level;
184 acpi_dbg_layer = acpi_gbl_original_dbg_layer;
185
186 exit:
187 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
188}
189
190/*******************************************************************************
191 *
Robert Moore0c9938c2005-07-29 15:15:00 -0700192 * FUNCTION: acpi_ps_execute_method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 *
Robert Moore44f6c012005-04-18 22:49:35 -0400194 * PARAMETERS: Info - Method info block, contains:
195 * Node - Method Node to execute
Robert Moore0c9938c2005-07-29 15:15:00 -0700196 * obj_desc - Method object
Robert Moore44f6c012005-04-18 22:49:35 -0400197 * Parameters - List of parameters to pass to the method,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * terminated by NULL. Params itself may be
199 * NULL if no parameters are being passed.
Robert Moore44f6c012005-04-18 22:49:35 -0400200 * return_object - Where to put method's return value (if
201 * any). If NULL, no value is returned.
202 * parameter_type - Type of Parameter list
203 * return_object - Where to put method's return value (if
204 * any). If NULL, no value is returned.
Robert Moore0c9938c2005-07-29 15:15:00 -0700205 * pass_number - Parse or execute pass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 *
207 * RETURN: Status
208 *
209 * DESCRIPTION: Execute a control method
210 *
211 ******************************************************************************/
212
Bob Moore41195322006-05-26 16:36:00 -0400213acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Len Brown4be44fc2005-08-05 00:44:28 -0400215 acpi_status status;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300216 union acpi_parse_object *op;
217 struct acpi_walk_state *walk_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Bob Mooreb229cf92006-04-21 17:15:00 -0400219 ACPI_FUNCTION_TRACE(ps_execute_method);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Robert Moore0c9938c2005-07-29 15:15:00 -0700221 /* Validate the Info and method Node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Bob Moore41195322006-05-26 16:36:00 -0400223 if (!info || !info->resolved_node) {
Len Brown4be44fc2005-08-05 00:44:28 -0400224 return_ACPI_STATUS(AE_NULL_ENTRY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* Init for new method, wait on concurrency semaphore */
228
Len Brown4be44fc2005-08-05 00:44:28 -0400229 status =
Bob Moore41195322006-05-26 16:36:00 -0400230 acpi_ds_begin_method_execution(info->resolved_node, info->obj_desc,
231 NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400232 if (ACPI_FAILURE(status)) {
233 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300237 * The caller "owns" the parameters, so give each one an extra reference
Robert Moore0c9938c2005-07-29 15:15:00 -0700238 */
Len Brown4be44fc2005-08-05 00:44:28 -0400239 acpi_ps_update_parameter_list(info, REF_INCREMENT);
Robert Moore0c9938c2005-07-29 15:15:00 -0700240
Bob Moore50eca3e2005-09-30 19:03:00 -0400241 /* Begin tracing if requested */
242
243 acpi_ps_start_trace(info);
244
Robert Moore0c9938c2005-07-29 15:15:00 -0700245 /*
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300246 * Execute the method. Performs parse simultaneously
Robert Moore0c9938c2005-07-29 15:15:00 -0700247 */
Len Brown4be44fc2005-08-05 00:44:28 -0400248 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300249 "**** Begin Method Parse/Execute [%4.4s] **** Node=%p Obj=%p\n",
250 info->resolved_node->name.ascii, info->resolved_node,
251 info->obj_desc));
Robert Moore0c9938c2005-07-29 15:15:00 -0700252
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300253 /* Create and init a Root Node */
254
255 op = acpi_ps_create_scope_op();
256 if (!op) {
257 status = AE_NO_MEMORY;
Robert Moore0c9938c2005-07-29 15:15:00 -0700258 goto cleanup;
259 }
260
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300261 /* Create and initialize a new walk state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Bob Mooreec3153f2007-02-02 19:48:21 +0300263 info->pass_number = ACPI_IMODE_EXECUTE;
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300264 walk_state =
265 acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL,
266 NULL, NULL);
267 if (!walk_state) {
268 status = AE_NO_MEMORY;
269 goto cleanup;
270 }
271
272 status = acpi_ds_init_aml_walk(walk_state, op, info->resolved_node,
273 info->obj_desc->method.aml_start,
274 info->obj_desc->method.aml_length, info,
275 info->pass_number);
276 if (ACPI_FAILURE(status)) {
277 acpi_ds_delete_walk_state(walk_state);
278 goto cleanup;
279 }
280
281 /* Parse the AML */
282
283 status = acpi_ps_parse_aml(walk_state);
284
285 /* walk_state was deleted by parse_aml */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Len Brown4be44fc2005-08-05 00:44:28 -0400287 cleanup:
Valery Podrezov9bc75cf2007-02-02 19:48:21 +0300288 acpi_ps_delete_parse_tree(op);
289
Bob Moore50eca3e2005-09-30 19:03:00 -0400290 /* End optional tracing */
291
292 acpi_ps_stop_trace(info);
293
Robert Moore0c9938c2005-07-29 15:15:00 -0700294 /* Take away the extra reference that we gave the parameters above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Len Brown4be44fc2005-08-05 00:44:28 -0400296 acpi_ps_update_parameter_list(info, REF_DECREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Robert Moore0c9938c2005-07-29 15:15:00 -0700298 /* Exit now if error above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Len Brown4be44fc2005-08-05 00:44:28 -0400300 if (ACPI_FAILURE(status)) {
301 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303
304 /*
305 * If the method has returned an object, signal this to the caller with
306 * a control exception code
307 */
308 if (info->return_object) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400309 ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "Method returned ObjDesc=%p\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400310 info->return_object));
311 ACPI_DUMP_STACK_ENTRY(info->return_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 status = AE_CTRL_RETURN_VALUE;
314 }
315
Len Brown4be44fc2005-08-05 00:44:28 -0400316 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Robert Moore0c9938c2005-07-29 15:15:00 -0700319/*******************************************************************************
320 *
321 * FUNCTION: acpi_ps_update_parameter_list
322 *
Bob Moore41195322006-05-26 16:36:00 -0400323 * PARAMETERS: Info - See struct acpi_evaluate_info
Robert Moore0c9938c2005-07-29 15:15:00 -0700324 * (Used: parameter_type and Parameters)
325 * Action - Add or Remove reference
326 *
327 * RETURN: Status
328 *
329 * DESCRIPTION: Update reference count on all method parameter objects
330 *
331 ******************************************************************************/
332
333static void
Bob Moore41195322006-05-26 16:36:00 -0400334acpi_ps_update_parameter_list(struct acpi_evaluate_info *info, u16 action)
Robert Moore0c9938c2005-07-29 15:15:00 -0700335{
Len Brown4be44fc2005-08-05 00:44:28 -0400336 acpi_native_uint i;
Robert Moore0c9938c2005-07-29 15:15:00 -0700337
Bob Moorec91d9242008-06-10 12:38:10 +0800338 if (info->parameters) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400339
Robert Moore0c9938c2005-07-29 15:15:00 -0700340 /* Update reference count for each parameter */
341
342 for (i = 0; info->parameters[i]; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400343
Robert Moore0c9938c2005-07-29 15:15:00 -0700344 /* Ignore errors, just do them all */
345
Len Brown4be44fc2005-08-05 00:44:28 -0400346 (void)acpi_ut_update_object_reference(info->
347 parameters[i],
348 action);
Robert Moore0c9938c2005-07-29 15:15:00 -0700349 }
350 }
351}