]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/acpica/uteval.c
Merge branch 'for-linus' of git://git.kernel.dk/linux-block
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / acpica / uteval.c
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Module Name: uteval - Object evaluation
4 *
5 *****************************************************************************/
6
7/*
c8100dc4 8 * Copyright (C) 2000 - 2016, 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 44#include <acpi/acpi.h>
e2f7a777
LB
45#include "accommon.h"
46#include "acnamesp.h"
1da177e4 47
1da177e4 48#define _COMPONENT ACPI_UTILITIES
4be44fcd 49ACPI_MODULE_NAME("uteval")
1da177e4 50
1da177e4
LT
51/*******************************************************************************
52 *
53 * FUNCTION: acpi_ut_evaluate_object
54 *
55 * PARAMETERS: prefix_node - Starting node
ba494bee 56 * path - Path to object from starting node
1da177e4
LT
57 * 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
15b8dd53 63 * return object. Common code that simplifies accessing objects
1da177e4
LT
64 * that have required return objects of fixed types.
65 *
66 * NOTE: Internal function, no parameter validation
67 *
68 ******************************************************************************/
69
70acpi_status
b6872ff9 71acpi_ut_evaluate_object(struct acpi_namespace_node *prefix_node,
0dfaaa3d 72 const char *path,
4be44fcd
LB
73 u32 expected_return_btypes,
74 union acpi_operand_object **return_desc)
1da177e4 75{
4119532c 76 struct acpi_evaluate_info *info;
4be44fcd
LB
77 acpi_status status;
78 u32 return_btype;
1da177e4 79
b229cf92 80 ACPI_FUNCTION_TRACE(ut_evaluate_object);
1da177e4 81
4119532c
BM
82 /* 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;
29a241cc 90 info->relative_pathname = path;
1da177e4
LT
91
92 /* Evaluate the object/method */
93
4119532c 94 status = acpi_ns_evaluate(info);
4be44fcd 95 if (ACPI_FAILURE(status)) {
1da177e4 96 if (status == AE_NOT_FOUND) {
4be44fcd
LB
97 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 {
b8e4d893
BM
102 ACPI_ERROR_METHOD("Method execution failed",
103 prefix_node, path, status);
1da177e4
LT
104 }
105
4119532c 106 goto cleanup;
1da177e4
LT
107 }
108
109 /* Did we get a return object? */
110
4119532c 111 if (!info->return_object) {
1da177e4 112 if (expected_return_btypes) {
b8e4d893
BM
113 ACPI_ERROR_METHOD("No object was returned from",
114 prefix_node, path, AE_NOT_EXIST);
1da177e4 115
4119532c 116 status = AE_NOT_EXIST;
1da177e4
LT
117 }
118
4119532c 119 goto cleanup;
1da177e4
LT
120 }
121
122 /* Map the return object type to the bitmapped type */
123
3371c19c 124 switch ((info->return_object)->common.type) {
1da177e4 125 case ACPI_TYPE_INTEGER:
1d1ea1b7 126
1da177e4
LT
127 return_btype = ACPI_BTYPE_INTEGER;
128 break;
129
130 case ACPI_TYPE_BUFFER:
1d1ea1b7 131
1da177e4
LT
132 return_btype = ACPI_BTYPE_BUFFER;
133 break;
134
135 case ACPI_TYPE_STRING:
1d1ea1b7 136
1da177e4
LT
137 return_btype = ACPI_BTYPE_STRING;
138 break;
139
140 case ACPI_TYPE_PACKAGE:
1d1ea1b7 141
1da177e4
LT
142 return_btype = ACPI_BTYPE_PACKAGE;
143 break;
144
145 default:
1d1ea1b7 146
1da177e4
LT
147 return_btype = 0;
148 break;
149 }
150
4be44fcd 151 if ((acpi_gbl_enable_interpreter_slack) && (!expected_return_btypes)) {
1da177e4 152 /*
15b8dd53 153 * We received a return object, but one was not expected. This can
1da177e4
LT
154 * happen frequently if the "implicit return" feature is enabled.
155 * Just delete the return object and return AE_OK.
156 */
4119532c
BM
157 acpi_ut_remove_reference(info->return_object);
158 goto cleanup;
1da177e4
LT
159 }
160
161 /* Is the return object one of the expected types? */
162
163 if (!(expected_return_btypes & return_btype)) {
b8e4d893
BM
164 ACPI_ERROR_METHOD("Return object type is incorrect",
165 prefix_node, path, AE_TYPE);
166
167 ACPI_ERROR((AE_INFO,
f6a22b0b 168 "Type returned from %s was incorrect: %s, expected Btypes: 0x%X",
b8e4d893 169 path,
4119532c 170 acpi_ut_get_object_type_name(info->return_object),
b8e4d893 171 expected_return_btypes));
1da177e4
LT
172
173 /* On error exit, we must delete the return object */
174
4119532c
BM
175 acpi_ut_remove_reference(info->return_object);
176 status = AE_TYPE;
177 goto cleanup;
1da177e4
LT
178 }
179
180 /* Object type is OK, return it */
181
4119532c
BM
182 *return_desc = info->return_object;
183
10622bf8 184cleanup:
4119532c
BM
185 ACPI_FREE(info);
186 return_ACPI_STATUS(status);
1da177e4
LT
187}
188
1da177e4
LT
189/*******************************************************************************
190 *
191 * FUNCTION: acpi_ut_evaluate_numeric_object
192 *
44f6c012 193 * PARAMETERS: object_name - Object name to be evaluated
1da177e4 194 * device_node - Node for the device
ba494bee 195 * value - Where the value is returned
1da177e4
LT
196 *
197 * RETURN: Status
198 *
199 * DESCRIPTION: Evaluates a numeric namespace object for a selected device
15b8dd53 200 * and stores result in *Value.
1da177e4
LT
201 *
202 * NOTE: Internal function, no parameter validation
203 *
204 ******************************************************************************/
205
206acpi_status
0dfaaa3d 207acpi_ut_evaluate_numeric_object(const char *object_name,
4be44fcd 208 struct acpi_namespace_node *device_node,
5df7e6cb 209 u64 *value)
1da177e4 210{
4be44fcd
LB
211 union acpi_operand_object *obj_desc;
212 acpi_status status;
1da177e4 213
b229cf92 214 ACPI_FUNCTION_TRACE(ut_evaluate_numeric_object);
1da177e4 215
4be44fcd
LB
216 status = acpi_ut_evaluate_object(device_node, object_name,
217 ACPI_BTYPE_INTEGER, &obj_desc);
218 if (ACPI_FAILURE(status)) {
219 return_ACPI_STATUS(status);
1da177e4
LT
220 }
221
222 /* Get the returned Integer */
223
15b8dd53 224 *value = obj_desc->integer.value;
1da177e4
LT
225
226 /* On exit, we must delete the return object */
227
4be44fcd
LB
228 acpi_ut_remove_reference(obj_desc);
229 return_ACPI_STATUS(status);
1da177e4
LT
230}
231
1da177e4
LT
232/*******************************************************************************
233 *
234 * FUNCTION: acpi_ut_execute_STA
235 *
236 * PARAMETERS: device_node - Node for the device
ba494bee 237 * flags - Where the status flags are returned
1da177e4
LT
238 *
239 * RETURN: Status
240 *
241 * DESCRIPTION: Executes _STA for selected device and stores results in
a7d5caf6
BM
242 * *Flags. If _STA does not exist, then the device is assumed
243 * to be present/functional/enabled (as per the ACPI spec).
1da177e4
LT
244 *
245 * NOTE: Internal function, no parameter validation
246 *
247 ******************************************************************************/
248
249acpi_status
4be44fcd 250acpi_ut_execute_STA(struct acpi_namespace_node *device_node, u32 * flags)
1da177e4 251{
4be44fcd
LB
252 union acpi_operand_object *obj_desc;
253 acpi_status status;
1da177e4 254
b229cf92 255 ACPI_FUNCTION_TRACE(ut_execute_STA);
1da177e4 256
4be44fcd
LB
257 status = acpi_ut_evaluate_object(device_node, METHOD_NAME__STA,
258 ACPI_BTYPE_INTEGER, &obj_desc);
259 if (ACPI_FAILURE(status)) {
1da177e4 260 if (AE_NOT_FOUND == status) {
a7d5caf6
BM
261 /*
262 * if _STA does not exist, then (as per the ACPI specification),
263 * the returned flags will indicate that the device is present,
264 * functional, and enabled.
265 */
4be44fcd
LB
266 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
267 "_STA on %4.4s was not found, assuming device is present\n",
268 acpi_ut_get_node_name(device_node)));
1da177e4 269
defba1d8 270 *flags = ACPI_UINT32_MAX;
1da177e4
LT
271 status = AE_OK;
272 }
273
4be44fcd 274 return_ACPI_STATUS(status);
1da177e4
LT
275 }
276
277 /* Extract the status flags */
278
279 *flags = (u32) obj_desc->integer.value;
280
281 /* On exit, we must delete the return object */
282
4be44fcd
LB
283 acpi_ut_remove_reference(obj_desc);
284 return_ACPI_STATUS(status);
1da177e4
LT
285}
286
1da177e4
LT
287/*******************************************************************************
288 *
15b8dd53 289 * FUNCTION: acpi_ut_execute_power_methods
1da177e4
LT
290 *
291 * PARAMETERS: device_node - Node for the device
15b8dd53
BM
292 * method_names - Array of power method names
293 * method_count - Number of methods to execute
294 * out_values - Where the power method values are returned
1da177e4 295 *
15b8dd53 296 * RETURN: Status, out_values
1da177e4 297 *
15b8dd53
BM
298 * DESCRIPTION: Executes the specified power methods for the device and returns
299 * the result(s).
1da177e4
LT
300 *
301 * NOTE: Internal function, no parameter validation
302 *
15b8dd53 303******************************************************************************/
1da177e4
LT
304
305acpi_status
15b8dd53
BM
306acpi_ut_execute_power_methods(struct acpi_namespace_node *device_node,
307 const char **method_names,
308 u8 method_count, u8 *out_values)
1da177e4 309{
4be44fcd
LB
310 union acpi_operand_object *obj_desc;
311 acpi_status status;
15b8dd53 312 acpi_status final_status = AE_NOT_FOUND;
4be44fcd 313 u32 i;
1da177e4 314
15b8dd53 315 ACPI_FUNCTION_TRACE(ut_execute_power_methods);
1da177e4 316
15b8dd53
BM
317 for (i = 0; i < method_count; i++) {
318 /*
319 * Execute the power method (_sx_d or _sx_w). The only allowable
320 * return type is an Integer.
321 */
4be44fcd 322 status = acpi_ut_evaluate_object(device_node,
defba1d8 323 ACPI_CAST_PTR(char,
15b8dd53 324 method_names[i]),
defba1d8 325 ACPI_BTYPE_INTEGER, &obj_desc);
15b8dd53
BM
326 if (ACPI_SUCCESS(status)) {
327 out_values[i] = (u8)obj_desc->integer.value;
1da177e4
LT
328
329 /* Delete the return object */
330
4be44fcd 331 acpi_ut_remove_reference(obj_desc);
15b8dd53
BM
332 final_status = AE_OK; /* At least one value is valid */
333 continue;
1da177e4 334 }
15b8dd53
BM
335
336 out_values[i] = ACPI_UINT8_MAX;
337 if (status == AE_NOT_FOUND) {
338 continue; /* Ignore if not found */
339 }
340
341 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
342 "Failed %s on Device %4.4s, %s\n",
343 ACPI_CAST_PTR(char, method_names[i]),
344 acpi_ut_get_node_name(device_node),
345 acpi_format_exception(status)));
1da177e4
LT
346 }
347
15b8dd53 348 return_ACPI_STATUS(final_status);
1da177e4 349}