blob: a9c65fbea5f45d6313218acbd341aba25196d1b8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: uteval - Object evaluation
4 *
5 *****************************************************************************/
6
7/*
Bob Moore77848132012-01-12 13:27:23 +08008 * Copyright (C) 2000 - 2012, 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 "acnamesp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("uteval")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Len Brownae00d812007-05-29 18:43:33 -040051/*******************************************************************************
52 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * FUNCTION: acpi_ut_evaluate_object
54 *
55 * PARAMETERS: prefix_node - Starting node
Bob Mooreba494be2012-07-12 09:40:10 +080056 * path - Path to object from starting node
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * expected_return_types - Bitmap of allowed return types
58 * return_desc - Where a return value is stored
59 *
60 * RETURN: Status
61 *
62 * DESCRIPTION: Evaluates a namespace object and verifies the type of the
Bob Moore15b8dd52009-06-29 13:39:29 +080063 * return object. Common code that simplifies accessing objects
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * that have required return objects of fixed types.
65 *
66 * NOTE: Internal function, no parameter validation
67 *
68 ******************************************************************************/
69
70acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040071acpi_ut_evaluate_object(struct acpi_namespace_node *prefix_node,
72 char *path,
73 u32 expected_return_btypes,
74 union acpi_operand_object **return_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Bob Moore41195322006-05-26 16:36:00 -040076 struct acpi_evaluate_info *info;
Len Brown4be44fc2005-08-05 00:44:28 -040077 acpi_status status;
78 u32 return_btype;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Bob Mooreb229cf92006-04-21 17:15:00 -040080 ACPI_FUNCTION_TRACE(ut_evaluate_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Bob Moore41195322006-05-26 16:36:00 -040082 /* Allocate the evaluation information block */
83
84 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
85 if (!info) {
86 return_ACPI_STATUS(AE_NO_MEMORY);
87 }
88
89 info->prefix_node = prefix_node;
90 info->pathname = path;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 /* Evaluate the object/method */
93
Bob Moore41195322006-05-26 16:36:00 -040094 status = acpi_ns_evaluate(info);
Len Brown4be44fc2005-08-05 00:44:28 -040095 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (status == AE_NOT_FOUND) {
Len Brown4be44fc2005-08-05 00:44:28 -040097 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
98 "[%4.4s.%s] was not found\n",
99 acpi_ut_get_node_name(prefix_node),
100 path));
101 } else {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500102 ACPI_ERROR_METHOD("Method execution failed",
103 prefix_node, path, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
Bob Moore41195322006-05-26 16:36:00 -0400106 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
109 /* Did we get a return object? */
110
Bob Moore41195322006-05-26 16:36:00 -0400111 if (!info->return_object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (expected_return_btypes) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500113 ACPI_ERROR_METHOD("No object was returned from",
114 prefix_node, path, AE_NOT_EXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Bob Moore41195322006-05-26 16:36:00 -0400116 status = AE_NOT_EXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
Bob Moore41195322006-05-26 16:36:00 -0400119 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
122 /* Map the return object type to the bitmapped type */
123
Bob Moore3371c192009-02-18 14:44:03 +0800124 switch ((info->return_object)->common.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 case ACPI_TYPE_INTEGER:
126 return_btype = ACPI_BTYPE_INTEGER;
127 break;
128
129 case ACPI_TYPE_BUFFER:
130 return_btype = ACPI_BTYPE_BUFFER;
131 break;
132
133 case ACPI_TYPE_STRING:
134 return_btype = ACPI_BTYPE_STRING;
135 break;
136
137 case ACPI_TYPE_PACKAGE:
138 return_btype = ACPI_BTYPE_PACKAGE;
139 break;
140
141 default:
142 return_btype = 0;
143 break;
144 }
145
Len Brown4be44fc2005-08-05 00:44:28 -0400146 if ((acpi_gbl_enable_interpreter_slack) && (!expected_return_btypes)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /*
Bob Moore15b8dd52009-06-29 13:39:29 +0800148 * We received a return object, but one was not expected. This can
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * happen frequently if the "implicit return" feature is enabled.
150 * Just delete the return object and return AE_OK.
151 */
Bob Moore41195322006-05-26 16:36:00 -0400152 acpi_ut_remove_reference(info->return_object);
153 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155
156 /* Is the return object one of the expected types? */
157
158 if (!(expected_return_btypes & return_btype)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500159 ACPI_ERROR_METHOD("Return object type is incorrect",
160 prefix_node, path, AE_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bob Mooreb8e4d892006-01-27 16:43:00 -0500162 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800163 "Type returned from %s was incorrect: %s, expected Btypes: 0x%X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500164 path,
Bob Moore41195322006-05-26 16:36:00 -0400165 acpi_ut_get_object_type_name(info->return_object),
Bob Mooreb8e4d892006-01-27 16:43:00 -0500166 expected_return_btypes));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* On error exit, we must delete the return object */
169
Bob Moore41195322006-05-26 16:36:00 -0400170 acpi_ut_remove_reference(info->return_object);
171 status = AE_TYPE;
172 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
175 /* Object type is OK, return it */
176
Bob Moore41195322006-05-26 16:36:00 -0400177 *return_desc = info->return_object;
178
179 cleanup:
180 ACPI_FREE(info);
181 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*******************************************************************************
185 *
186 * FUNCTION: acpi_ut_evaluate_numeric_object
187 *
Robert Moore44f6c012005-04-18 22:49:35 -0400188 * PARAMETERS: object_name - Object name to be evaluated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * device_node - Node for the device
Bob Mooreba494be2012-07-12 09:40:10 +0800190 * value - Where the value is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 *
192 * RETURN: Status
193 *
194 * DESCRIPTION: Evaluates a numeric namespace object for a selected device
Bob Moore15b8dd52009-06-29 13:39:29 +0800195 * and stores result in *Value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
197 * NOTE: Internal function, no parameter validation
198 *
199 ******************************************************************************/
200
201acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400202acpi_ut_evaluate_numeric_object(char *object_name,
203 struct acpi_namespace_node *device_node,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800204 u64 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Len Brown4be44fc2005-08-05 00:44:28 -0400206 union acpi_operand_object *obj_desc;
207 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Bob Mooreb229cf92006-04-21 17:15:00 -0400209 ACPI_FUNCTION_TRACE(ut_evaluate_numeric_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Len Brown4be44fc2005-08-05 00:44:28 -0400211 status = acpi_ut_evaluate_object(device_node, object_name,
212 ACPI_BTYPE_INTEGER, &obj_desc);
213 if (ACPI_FAILURE(status)) {
214 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 /* Get the returned Integer */
218
Bob Moore15b8dd52009-06-29 13:39:29 +0800219 *value = obj_desc->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /* On exit, we must delete the return object */
222
Len Brown4be44fc2005-08-05 00:44:28 -0400223 acpi_ut_remove_reference(obj_desc);
224 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/*******************************************************************************
228 *
229 * FUNCTION: acpi_ut_execute_STA
230 *
231 * PARAMETERS: device_node - Node for the device
Bob Mooreba494be2012-07-12 09:40:10 +0800232 * flags - Where the status flags are returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
234 * RETURN: Status
235 *
236 * DESCRIPTION: Executes _STA for selected device and stores results in
237 * *Flags.
238 *
239 * NOTE: Internal function, no parameter validation
240 *
241 ******************************************************************************/
242
243acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400244acpi_ut_execute_STA(struct acpi_namespace_node *device_node, u32 * flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Len Brown4be44fc2005-08-05 00:44:28 -0400246 union acpi_operand_object *obj_desc;
247 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Bob Mooreb229cf92006-04-21 17:15:00 -0400249 ACPI_FUNCTION_TRACE(ut_execute_STA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 status = acpi_ut_evaluate_object(device_node, METHOD_NAME__STA,
252 ACPI_BTYPE_INTEGER, &obj_desc);
253 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (AE_NOT_FOUND == status) {
Len Brown4be44fc2005-08-05 00:44:28 -0400255 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
256 "_STA on %4.4s was not found, assuming device is present\n",
257 acpi_ut_get_node_name(device_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Bob Mooredefba1d2005-12-16 17:05:00 -0500259 *flags = ACPI_UINT32_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 status = AE_OK;
261 }
262
Len Brown4be44fc2005-08-05 00:44:28 -0400263 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
266 /* Extract the status flags */
267
268 *flags = (u32) obj_desc->integer.value;
269
270 /* On exit, we must delete the return object */
271
Len Brown4be44fc2005-08-05 00:44:28 -0400272 acpi_ut_remove_reference(obj_desc);
273 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*******************************************************************************
277 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800278 * FUNCTION: acpi_ut_execute_power_methods
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *
280 * PARAMETERS: device_node - Node for the device
Bob Moore15b8dd52009-06-29 13:39:29 +0800281 * method_names - Array of power method names
282 * method_count - Number of methods to execute
283 * out_values - Where the power method values are returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800285 * RETURN: Status, out_values
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800287 * DESCRIPTION: Executes the specified power methods for the device and returns
288 * the result(s).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *
290 * NOTE: Internal function, no parameter validation
291 *
Bob Moore15b8dd52009-06-29 13:39:29 +0800292******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294acpi_status
Bob Moore15b8dd52009-06-29 13:39:29 +0800295acpi_ut_execute_power_methods(struct acpi_namespace_node *device_node,
296 const char **method_names,
297 u8 method_count, u8 *out_values)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Len Brown4be44fc2005-08-05 00:44:28 -0400299 union acpi_operand_object *obj_desc;
300 acpi_status status;
Bob Moore15b8dd52009-06-29 13:39:29 +0800301 acpi_status final_status = AE_NOT_FOUND;
Len Brown4be44fc2005-08-05 00:44:28 -0400302 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Bob Moore15b8dd52009-06-29 13:39:29 +0800304 ACPI_FUNCTION_TRACE(ut_execute_power_methods);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Bob Moore15b8dd52009-06-29 13:39:29 +0800306 for (i = 0; i < method_count; i++) {
307 /*
308 * Execute the power method (_sx_d or _sx_w). The only allowable
309 * return type is an Integer.
310 */
Len Brown4be44fc2005-08-05 00:44:28 -0400311 status = acpi_ut_evaluate_object(device_node,
Bob Mooredefba1d2005-12-16 17:05:00 -0500312 ACPI_CAST_PTR(char,
Bob Moore15b8dd52009-06-29 13:39:29 +0800313 method_names[i]),
Bob Mooredefba1d2005-12-16 17:05:00 -0500314 ACPI_BTYPE_INTEGER, &obj_desc);
Bob Moore15b8dd52009-06-29 13:39:29 +0800315 if (ACPI_SUCCESS(status)) {
316 out_values[i] = (u8)obj_desc->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /* Delete the return object */
319
Len Brown4be44fc2005-08-05 00:44:28 -0400320 acpi_ut_remove_reference(obj_desc);
Bob Moore15b8dd52009-06-29 13:39:29 +0800321 final_status = AE_OK; /* At least one value is valid */
322 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
Bob Moore15b8dd52009-06-29 13:39:29 +0800324
325 out_values[i] = ACPI_UINT8_MAX;
326 if (status == AE_NOT_FOUND) {
327 continue; /* Ignore if not found */
328 }
329
330 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
331 "Failed %s on Device %4.4s, %s\n",
332 ACPI_CAST_PTR(char, method_names[i]),
333 acpi_ut_get_node_name(device_node),
334 acpi_format_exception(status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
Bob Moore15b8dd52009-06-29 13:39:29 +0800337 return_ACPI_STATUS(final_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}