[ACPI] ACPICA 20051117
[linux-2.6/cjktty.git] / drivers / acpi / parser / psxface.c
blob14d544d60867a0f6ec5fc84cdaee3a70a4224a85
1 /******************************************************************************
3 * Module Name: psxface - Parser external interfaces
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
9 * All rights reserved.
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include <acpi/acparser.h>
46 #include <acpi/acdispat.h>
47 #include <acpi/acinterp.h>
49 #define _COMPONENT ACPI_PARSER
50 ACPI_MODULE_NAME("psxface")
52 /* Local Prototypes */
53 static void acpi_ps_start_trace(struct acpi_parameter_info *info);
55 static void acpi_ps_stop_trace(struct acpi_parameter_info *info);
57 static acpi_status acpi_ps_execute_pass(struct acpi_parameter_info *info);
59 static void
60 acpi_ps_update_parameter_list(struct acpi_parameter_info *info, u16 action);
62 /*******************************************************************************
64 * FUNCTION: acpi_debug_trace
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)
71 * RETURN: Status
73 * DESCRIPTION: External interface to enable debug tracing during control
74 * method execution
76 ******************************************************************************/
78 acpi_status
79 acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags)
81 acpi_status status;
83 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
84 if (ACPI_FAILURE(status)) {
85 return (status);
88 /* TBDs: Validate name, allow full path or just nameseg */
90 acpi_gbl_trace_method_name = *ACPI_CAST_PTR(u32, name);
91 acpi_gbl_trace_flags = flags;
93 if (debug_level) {
94 acpi_gbl_trace_dbg_level = debug_level;
96 if (debug_layer) {
97 acpi_gbl_trace_dbg_layer = debug_layer;
100 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
101 return (AE_OK);
104 /*******************************************************************************
106 * FUNCTION: acpi_ps_start_trace
108 * PARAMETERS: Info - Method info struct
110 * RETURN: None
112 * DESCRIPTION: Start control method execution trace
114 ******************************************************************************/
116 static void acpi_ps_start_trace(struct acpi_parameter_info *info)
118 acpi_status status;
120 ACPI_FUNCTION_ENTRY();
122 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
123 if (ACPI_FAILURE(status)) {
124 return;
127 if ((!acpi_gbl_trace_method_name) ||
128 (acpi_gbl_trace_method_name != info->node->name.integer)) {
129 goto exit;
132 acpi_gbl_original_dbg_level = acpi_dbg_level;
133 acpi_gbl_original_dbg_layer = acpi_dbg_layer;
135 acpi_dbg_level = 0x00FFFFFF;
136 acpi_dbg_layer = ACPI_UINT32_MAX;
138 if (acpi_gbl_trace_dbg_level) {
139 acpi_dbg_level = acpi_gbl_trace_dbg_level;
141 if (acpi_gbl_trace_dbg_layer) {
142 acpi_dbg_layer = acpi_gbl_trace_dbg_layer;
145 exit:
146 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
149 /*******************************************************************************
151 * FUNCTION: acpi_ps_stop_trace
153 * PARAMETERS: Info - Method info struct
155 * RETURN: None
157 * DESCRIPTION: Stop control method execution trace
159 ******************************************************************************/
161 static void acpi_ps_stop_trace(struct acpi_parameter_info *info)
163 acpi_status status;
165 ACPI_FUNCTION_ENTRY();
167 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
168 if (ACPI_FAILURE(status)) {
169 return;
172 if ((!acpi_gbl_trace_method_name) ||
173 (acpi_gbl_trace_method_name != info->node->name.integer)) {
174 goto exit;
177 /* Disable further tracing if type is one-shot */
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;
185 acpi_dbg_level = acpi_gbl_original_dbg_level;
186 acpi_dbg_layer = acpi_gbl_original_dbg_layer;
188 exit:
189 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
192 /*******************************************************************************
194 * FUNCTION: acpi_ps_execute_method
196 * PARAMETERS: Info - Method info block, contains:
197 * Node - Method Node to execute
198 * obj_desc - Method object
199 * Parameters - List of parameters to pass to the method,
200 * terminated by NULL. Params itself may be
201 * NULL if no parameters are being passed.
202 * 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.
207 * pass_number - Parse or execute pass
209 * RETURN: Status
211 * DESCRIPTION: Execute a control method
213 ******************************************************************************/
215 acpi_status acpi_ps_execute_method(struct acpi_parameter_info *info)
217 acpi_status status;
219 ACPI_FUNCTION_TRACE("ps_execute_method");
221 /* Validate the Info and method Node */
223 if (!info || !info->node) {
224 return_ACPI_STATUS(AE_NULL_ENTRY);
227 /* Init for new method, wait on concurrency semaphore */
229 status =
230 acpi_ds_begin_method_execution(info->node, info->obj_desc, NULL);
231 if (ACPI_FAILURE(status)) {
232 return_ACPI_STATUS(status);
236 * The caller "owns" the parameters, so give each one an extra
237 * reference
239 acpi_ps_update_parameter_list(info, REF_INCREMENT);
241 /* Begin tracing if requested */
243 acpi_ps_start_trace(info);
246 * 1) Perform the first pass parse of the method to enter any
247 * named objects that it creates into the namespace
249 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
250 "**** Begin Method Parse **** Entry=%p obj=%p\n",
251 info->node, info->obj_desc));
253 info->pass_number = 1;
254 status = acpi_ps_execute_pass(info);
255 if (ACPI_FAILURE(status)) {
256 goto cleanup;
260 * 2) Execute the method. Performs second pass parse simultaneously
262 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
263 "**** Begin Method Execution **** Entry=%p obj=%p\n",
264 info->node, info->obj_desc));
266 info->pass_number = 3;
267 status = acpi_ps_execute_pass(info);
269 cleanup:
270 /* End optional tracing */
272 acpi_ps_stop_trace(info);
274 /* Take away the extra reference that we gave the parameters above */
276 acpi_ps_update_parameter_list(info, REF_DECREMENT);
278 /* Exit now if error above */
280 if (ACPI_FAILURE(status)) {
281 return_ACPI_STATUS(status);
285 * If the method has returned an object, signal this to the caller with
286 * a control exception code
288 if (info->return_object) {
289 ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
290 "Method returned obj_desc=%p\n",
291 info->return_object));
292 ACPI_DUMP_STACK_ENTRY(info->return_object);
294 status = AE_CTRL_RETURN_VALUE;
297 return_ACPI_STATUS(status);
300 /*******************************************************************************
302 * FUNCTION: acpi_ps_update_parameter_list
304 * PARAMETERS: Info - See struct acpi_parameter_info
305 * (Used: parameter_type and Parameters)
306 * Action - Add or Remove reference
308 * RETURN: Status
310 * DESCRIPTION: Update reference count on all method parameter objects
312 ******************************************************************************/
314 static void
315 acpi_ps_update_parameter_list(struct acpi_parameter_info *info, u16 action)
317 acpi_native_uint i;
319 if ((info->parameter_type == ACPI_PARAM_ARGS) && (info->parameters)) {
320 /* Update reference count for each parameter */
322 for (i = 0; info->parameters[i]; i++) {
323 /* Ignore errors, just do them all */
325 (void)acpi_ut_update_object_reference(info->
326 parameters[i],
327 action);
332 /*******************************************************************************
334 * FUNCTION: acpi_ps_execute_pass
336 * PARAMETERS: Info - See struct acpi_parameter_info
337 * (Used: pass_number, Node, and obj_desc)
339 * RETURN: Status
341 * DESCRIPTION: Single AML pass: Parse or Execute a control method
343 ******************************************************************************/
345 static acpi_status acpi_ps_execute_pass(struct acpi_parameter_info *info)
347 acpi_status status;
348 union acpi_parse_object *op;
349 struct acpi_walk_state *walk_state;
351 ACPI_FUNCTION_TRACE("ps_execute_pass");
353 /* Create and init a Root Node */
355 op = acpi_ps_create_scope_op();
356 if (!op) {
357 return_ACPI_STATUS(AE_NO_MEMORY);
360 /* Create and initialize a new walk state */
362 walk_state =
363 acpi_ds_create_walk_state(info->obj_desc->method.owner_id, NULL,
364 NULL, NULL);
365 if (!walk_state) {
366 status = AE_NO_MEMORY;
367 goto cleanup;
370 status = acpi_ds_init_aml_walk(walk_state, op, info->node,
371 info->obj_desc->method.aml_start,
372 info->obj_desc->method.aml_length,
373 info->pass_number == 1 ? NULL : info,
374 info->pass_number);
375 if (ACPI_FAILURE(status)) {
376 acpi_ds_delete_walk_state(walk_state);
377 goto cleanup;
380 /* Parse the AML */
382 status = acpi_ps_parse_aml(walk_state);
384 /* Walk state was deleted by parse_aml */
386 cleanup:
387 acpi_ps_delete_parse_tree(op);
388 return_ACPI_STATUS(status);