]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/namespace/nseval.c
ACPICA: Fix for implicit return compatibility
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / namespace / nseval.c
CommitLineData
1da177e4
LT
1/*******************************************************************************
2 *
4119532c 3 * Module Name: nseval - Object evaluation, includes control method execution
1da177e4
LT
4 *
5 ******************************************************************************/
6
7/*
75a44ce0 8 * Copyright (C) 2000 - 2008, Intel Corp.
1da177e4
LT
9 * 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
1da177e4
LT
44#include <acpi/acpi.h>
45#include <acpi/acparser.h>
46#include <acpi/acinterp.h>
47#include <acpi/acnamesp.h>
48
1da177e4 49#define _COMPONENT ACPI_NAMESPACE
4be44fcd 50ACPI_MODULE_NAME("nseval")
1da177e4 51
1da177e4
LT
52/*******************************************************************************
53 *
4119532c 54 * FUNCTION: acpi_ns_evaluate
1da177e4 55 *
4119532c
BM
56 * PARAMETERS: Info - Evaluation info block, contains:
57 * prefix_node - Prefix or Method/Object Node to execute
58 * Pathname - Name of method to execute, If NULL, the
59 * Node is the object to execute
44f6c012
RM
60 * Parameters - List of parameters to pass to the method,
61 * terminated by NULL. Params itself may be
1da177e4 62 * NULL if no parameters are being passed.
44f6c012
RM
63 * return_object - Where to put method's return value (if
64 * any). If NULL, no value is returned.
65 * parameter_type - Type of Parameter list
66 * return_object - Where to put method's return value (if
67 * any). If NULL, no value is returned.
4119532c 68 * Flags - ACPI_IGNORE_RETURN_VALUE to delete return
1da177e4
LT
69 *
70 * RETURN: Status
71 *
4119532c
BM
72 * DESCRIPTION: Execute a control method or return the current value of an
73 * ACPI namespace object.
1da177e4 74 *
4119532c 75 * MUTEX: Locks interpreter
1da177e4
LT
76 *
77 ******************************************************************************/
fd350943 78acpi_status acpi_ns_evaluate(struct acpi_evaluate_info * info)
1da177e4 79{
4be44fcd 80 acpi_status status;
1da177e4 81
4119532c 82 ACPI_FUNCTION_TRACE(ns_evaluate);
1da177e4
LT
83
84 if (!info) {
4be44fcd 85 return_ACPI_STATUS(AE_BAD_PARAMETER);
1da177e4
LT
86 }
87
88 /* Initialize the return value to an invalid object */
89
90 info->return_object = NULL;
91
4119532c
BM
92 /*
93 * Get the actual namespace node for the target object. Handles these cases:
94 *
95 * 1) Null node, Pathname (absolute path)
96 * 2) Node, Pathname (path relative to Node)
97 * 3) Node, Null Pathname
98 */
99 status = acpi_ns_get_node(info->prefix_node, info->pathname,
100 ACPI_NS_NO_UPSEARCH, &info->resolved_node);
4be44fcd
LB
101 if (ACPI_FAILURE(status)) {
102 return_ACPI_STATUS(status);
1da177e4
LT
103 }
104
1da177e4
LT
105 /*
106 * For a method alias, we must grab the actual method node so that proper
107 * scoping context will be established before execution.
108 */
4119532c
BM
109 if (acpi_ns_get_type(info->resolved_node) ==
110 ACPI_TYPE_LOCAL_METHOD_ALIAS) {
111 info->resolved_node =
4be44fcd 112 ACPI_CAST_PTR(struct acpi_namespace_node,
4119532c 113 info->resolved_node->object);
1da177e4
LT
114 }
115
4119532c
BM
116 ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "%s [%p] Value %p\n", info->pathname,
117 info->resolved_node,
118 acpi_ns_get_attached_object(info->resolved_node)));
119
1da177e4
LT
120 /*
121 * Two major cases here:
1da177e4 122 *
4119532c
BM
123 * 1) The object is a control method -- execute it
124 * 2) The object is not a method -- just return it's current value
1da177e4 125 */
4119532c 126 if (acpi_ns_get_type(info->resolved_node) == ACPI_TYPE_METHOD) {
1da177e4 127 /*
4119532c 128 * 1) Object is a control method - execute it
1da177e4 129 */
1da177e4 130
4119532c 131 /* Verify that there is a method object associated with this node */
1da177e4 132
4119532c
BM
133 info->obj_desc =
134 acpi_ns_get_attached_object(info->resolved_node);
135 if (!info->obj_desc) {
136 ACPI_ERROR((AE_INFO,
137 "Control method has no attached sub-object"));
138 return_ACPI_STATUS(AE_NULL_OBJECT);
139 }
1da177e4 140
f3454ae8
BM
141 /*
142 * Calculate the number of arguments being passed to the method
143 */
144
145 info->param_count = 0;
146 if (info->parameters) {
147 while (info->parameters[info->param_count])
148 info->param_count++;
149 }
150
93851b4d
LM
151 /*
152 * Warning if too few or too many arguments have been passed by the
153 * caller. We don't want to abort here with an error because an
154 * incorrect number of arguments may not cause the method to fail.
155 * However, the method will fail if there are too few arguments passed
156 * and the method attempts to use one of the missing ones.
157 */
f3454ae8
BM
158
159 if (info->param_count < info->obj_desc->method.param_count) {
93851b4d 160 ACPI_WARNING((AE_INFO,
f3454ae8
BM
161 "Insufficient arguments - "
162 "method [%4.4s] needs %d, found %d",
163 acpi_ut_get_node_name(info->resolved_node),
164 info->obj_desc->method.param_count,
165 info->param_count));
93851b4d 166 } else if (info->param_count >
f3454ae8
BM
167 info->obj_desc->method.param_count) {
168 ACPI_WARNING((AE_INFO,
169 "Excess arguments - "
170 "method [%4.4s] needs %d, found %d",
171 acpi_ut_get_node_name(info->
172 resolved_node),
173 info->obj_desc->method.param_count,
174 info->param_count));
175 }
176
4119532c
BM
177 ACPI_DUMP_PATHNAME(info->resolved_node, "Execute Method:",
178 ACPI_LV_INFO, _COMPONENT);
1da177e4 179
4119532c
BM
180 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
181 "Method at AML address %p Length %X\n",
182 info->obj_desc->method.aml_start + 1,
183 info->obj_desc->method.aml_length - 1));
1da177e4 184
4119532c
BM
185 /*
186 * Any namespace deletion must acquire both the namespace and
187 * interpreter locks to ensure that no thread is using the portion of
188 * the namespace that is being deleted.
189 *
190 * Execute the method via the interpreter. The interpreter is locked
191 * here before calling into the AML parser
192 */
4d2acd9e 193 acpi_ex_enter_interpreter();
4119532c
BM
194 status = acpi_ps_execute_method(info);
195 acpi_ex_exit_interpreter();
196 } else {
197 /*
198 * 2) Object is not a method, return its current value
b68bacf2
BM
199 *
200 * Disallow certain object types. For these, "evaluation" is undefined.
4119532c 201 */
b68bacf2
BM
202 switch (info->resolved_node->type) {
203 case ACPI_TYPE_DEVICE:
204 case ACPI_TYPE_EVENT:
205 case ACPI_TYPE_MUTEX:
206 case ACPI_TYPE_REGION:
207 case ACPI_TYPE_THERMAL:
208 case ACPI_TYPE_LOCAL_SCOPE:
209
210 ACPI_ERROR((AE_INFO,
211 "[%4.4s] Evaluation of object type [%s] is not supported",
212 info->resolved_node->name.ascii,
213 acpi_ut_get_type_name(info->resolved_node->
214 type)));
215
216 return_ACPI_STATUS(AE_TYPE);
217
218 default:
219 break;
220 }
1da177e4 221
4119532c
BM
222 /*
223 * Objects require additional resolution steps (e.g., the Node may be
224 * a field that must be read, etc.) -- we can't just grab the object
225 * out of the node.
226 *
227 * Use resolve_node_to_value() to get the associated value.
228 *
229 * NOTE: we can get away with passing in NULL for a walk state because
230 * resolved_node is guaranteed to not be a reference to either a method
231 * local or a method argument (because this interface is never called
232 * from a running method.)
233 *
234 * Even though we do not directly invoke the interpreter for object
235 * resolution, we must lock it because we could access an opregion.
236 * The opregion access code assumes that the interpreter is locked.
237 */
4d2acd9e 238 acpi_ex_enter_interpreter();
1da177e4 239
4119532c 240 /* Function has a strange interface */
1da177e4 241
4119532c
BM
242 status =
243 acpi_ex_resolve_node_to_value(&info->resolved_node, NULL);
244 acpi_ex_exit_interpreter();
1da177e4 245
1da177e4
LT
246 /*
247 * If acpi_ex_resolve_node_to_value() succeeded, the return value was placed
248 * in resolved_node.
249 */
4be44fcd 250 if (ACPI_SUCCESS(status)) {
1da177e4 251 status = AE_CTRL_RETURN_VALUE;
4119532c
BM
252 info->return_object =
253 ACPI_CAST_PTR(union acpi_operand_object,
254 info->resolved_node);
255
4be44fcd
LB
256 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
257 "Returning object %p [%s]\n",
258 info->return_object,
259 acpi_ut_get_object_type_name(info->
260 return_object)));
1da177e4
LT
261 }
262 }
263
4119532c
BM
264 /*
265 * Check if there is a return value that must be dealt with
266 */
267 if (status == AE_CTRL_RETURN_VALUE) {
268
269 /* If caller does not want the return value, delete it */
1da177e4 270
4119532c
BM
271 if (info->flags & ACPI_IGNORE_RETURN_VALUE) {
272 acpi_ut_remove_reference(info->return_object);
273 info->return_object = NULL;
274 }
275
276 /* Map AE_CTRL_RETURN_VALUE to AE_OK, we are done with it */
277
278 status = AE_OK;
279 }
280
281 ACPI_DEBUG_PRINT((ACPI_DB_NAMES,
282 "*** Completed evaluation of object %s ***\n",
283 info->pathname));
284
285 /*
286 * Namespace was unlocked by the handling acpi_ns* function, so we
287 * just return
288 */
4be44fcd 289 return_ACPI_STATUS(status);
1da177e4 290}