blob: e973e311f856597fcb9474ea9f7eabaa0a76b1da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: nsxfeval - Public interfaces to the ACPI subsystem
4 * ACPI Object evaluation interfaces
5 *
6 ******************************************************************************/
7
8/*
Bob Moore25f044e2013-01-25 05:38:56 +00009 * Copyright (C) 2000 - 2013, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
Lv Zheng839e9282013-10-29 09:29:51 +080045#define EXPORT_ACPI_INTERFACES
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050048#include "accommon.h"
49#include "acnamesp.h"
50#include "acinterp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040053ACPI_MODULE_NAME("nsxfeval")
Lin Mingbbc24132008-08-04 13:22:10 +080054
55/* Local prototypes */
56static void acpi_ns_resolve_references(struct acpi_evaluate_info *info);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*******************************************************************************
59 *
60 * FUNCTION: acpi_evaluate_object_typed
61 *
Bob Mooreba494be2012-07-12 09:40:10 +080062 * PARAMETERS: handle - Object handle (optional)
63 * pathname - Object pathname (optional)
Robert Moore44f6c012005-04-18 22:49:35 -040064 * external_params - List of parameters to pass to method,
Bob Moore73a30902012-10-31 02:26:55 +000065 * terminated by NULL. May be NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * if no parameters are being passed.
Robert Moore44f6c012005-04-18 22:49:35 -040067 * return_buffer - Where to put method's return value (if
Bob Moore73a30902012-10-31 02:26:55 +000068 * any). If NULL, no value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * return_type - Expected type of return object
70 *
71 * RETURN: Status
72 *
73 * DESCRIPTION: Find and evaluate the given object, passing the given
Bob Moore73a30902012-10-31 02:26:55 +000074 * parameters if necessary. One of "Handle" or "Pathname" must
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * be valid (non-null)
76 *
77 ******************************************************************************/
Lin Mingbbc24132008-08-04 13:22:10 +080078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040080acpi_evaluate_object_typed(acpi_handle handle,
81 acpi_string pathname,
Len Brownfd350942007-05-09 23:34:35 -040082 struct acpi_object_list *external_params,
83 struct acpi_buffer *return_buffer,
Len Brown4be44fc2005-08-05 00:44:28 -040084 acpi_object_type return_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Len Brown4be44fc2005-08-05 00:44:28 -040086 acpi_status status;
87 u8 must_free = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Bob Mooreb229cf92006-04-21 17:15:00 -040089 ACPI_FUNCTION_TRACE(acpi_evaluate_object_typed);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /* Return buffer must be valid */
92
93 if (!return_buffer) {
Len Brown4be44fc2005-08-05 00:44:28 -040094 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
97 if (return_buffer->length == ACPI_ALLOCATE_BUFFER) {
98 must_free = TRUE;
99 }
100
101 /* Evaluate the object */
102
Len Brown4be44fc2005-08-05 00:44:28 -0400103 status =
104 acpi_evaluate_object(handle, pathname, external_params,
105 return_buffer);
106 if (ACPI_FAILURE(status)) {
107 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
109
110 /* Type ANY means "don't care" */
111
112 if (return_type == ACPI_TYPE_ANY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400113 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
116 if (return_buffer->length == 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /* Error because caller specifically asked for a return value */
119
Bob Mooreb8e4d892006-01-27 16:43:00 -0500120 ACPI_ERROR((AE_INFO, "No return value"));
Len Brown4be44fc2005-08-05 00:44:28 -0400121 return_ACPI_STATUS(AE_NULL_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123
124 /* Examine the object type returned from evaluate_object */
125
Len Brown4be44fc2005-08-05 00:44:28 -0400126 if (((union acpi_object *)return_buffer->pointer)->type == return_type) {
127 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129
130 /* Return object type does not match requested type */
131
Bob Mooreb8e4d892006-01-27 16:43:00 -0500132 ACPI_ERROR((AE_INFO,
133 "Incorrect return type [%s] requested [%s]",
134 acpi_ut_get_type_name(((union acpi_object *)return_buffer->
135 pointer)->type),
136 acpi_ut_get_type_name(return_type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 if (must_free) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* Caller used ACPI_ALLOCATE_BUFFER, free the return buffer */
141
Bob Moorebb1cab32013-10-29 09:29:57 +0800142 ACPI_FREE_BUFFER(*return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return_buffer->pointer = NULL;
144 }
145
146 return_buffer->length = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400147 return_ACPI_STATUS(AE_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
Bob Moore83135242006-10-03 00:00:00 -0400149
150ACPI_EXPORT_SYMBOL(acpi_evaluate_object_typed)
Luca Tettamanti2c03d072009-04-07 15:32:59 +0200151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*******************************************************************************
153 *
154 * FUNCTION: acpi_evaluate_object
155 *
Bob Mooreba494be2012-07-12 09:40:10 +0800156 * PARAMETERS: handle - Object handle (optional)
157 * pathname - Object pathname (optional)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * external_params - List of parameters to pass to method,
Bob Moore73a30902012-10-31 02:26:55 +0000159 * terminated by NULL. May be NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * if no parameters are being passed.
161 * return_buffer - Where to put method's return value (if
Bob Moore73a30902012-10-31 02:26:55 +0000162 * any). If NULL, no value is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 *
164 * RETURN: Status
165 *
166 * DESCRIPTION: Find and evaluate the given object, passing the given
Bob Moore73a30902012-10-31 02:26:55 +0000167 * parameters if necessary. One of "Handle" or "Pathname" must
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * be valid (non-null)
169 *
170 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400172acpi_evaluate_object(acpi_handle handle,
173 acpi_string pathname,
174 struct acpi_object_list *external_params,
175 struct acpi_buffer *return_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Len Brown4be44fc2005-08-05 00:44:28 -0400177 acpi_status status;
Bob Moore41195322006-05-26 16:36:00 -0400178 struct acpi_evaluate_info *info;
Len Brown4be44fc2005-08-05 00:44:28 -0400179 acpi_size buffer_space_needed;
180 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Bob Mooreb229cf92006-04-21 17:15:00 -0400182 ACPI_FUNCTION_TRACE(acpi_evaluate_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Bob Moore41195322006-05-26 16:36:00 -0400184 /* Allocate and initialize the evaluation information block */
185
186 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
187 if (!info) {
188 return_ACPI_STATUS(AE_NO_MEMORY);
189 }
190
Bob Moore41195322006-05-26 16:36:00 -0400191 /* Convert and validate the device handle */
192
Bob Mooref24b6642009-12-11 14:57:00 +0800193 info->prefix_node = acpi_ns_validate_handle(handle);
Bob Moore41195322006-05-26 16:36:00 -0400194 if (!info->prefix_node) {
195 status = AE_BAD_PARAMETER;
196 goto cleanup;
197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
Bob Moore29a241c2013-05-30 10:00:01 +0800200 * Get the actual namespace node for the target object.
201 * Handles these cases:
202 *
203 * 1) Null node, valid pathname from root (absolute path)
204 * 2) Node and valid pathname (path relative to Node)
205 * 3) Node, Null pathname
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
Bob Moore04a81dc2012-12-31 00:05:17 +0000207 if ((pathname) && (ACPI_IS_ROOT_PREFIX(pathname[0]))) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400208
209 /* The path is fully qualified, just evaluate by name */
210
Bob Moore41195322006-05-26 16:36:00 -0400211 info->prefix_node = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400212 } else if (!handle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /*
Bob Moore41195322006-05-26 16:36:00 -0400214 * A handle is optional iff a fully qualified pathname is specified.
215 * Since we've already handled fully qualified names above, this is
Bob Moore29a241c2013-05-30 10:00:01 +0800216 * an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 */
218 if (!pathname) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400219 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
220 "Both Handle and Pathname are NULL"));
Len Brown4be44fc2005-08-05 00:44:28 -0400221 } else {
Bob Moore52fc0b02006-10-02 00:00:00 -0400222 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
223 "Null Handle with relative pathname [%s]",
224 pathname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
227 status = AE_BAD_PARAMETER;
Bob Moore29a241c2013-05-30 10:00:01 +0800228 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230
Bob Moore29a241c2013-05-30 10:00:01 +0800231 info->relative_pathname = pathname;
232
233 /*
234 * Convert all external objects passed as arguments to the
235 * internal version(s).
236 */
237 if (external_params && external_params->count) {
238 info->param_count = (u16)external_params->count;
239
240 /* Warn on impossible argument count */
241
242 if (info->param_count > ACPI_METHOD_NUM_ARGS) {
243 ACPI_WARN_PREDEFINED((AE_INFO, pathname,
244 ACPI_WARN_ALWAYS,
245 "Excess arguments (%u) - using only %u",
246 info->param_count,
247 ACPI_METHOD_NUM_ARGS));
248
249 info->param_count = ACPI_METHOD_NUM_ARGS;
250 }
251
252 /*
253 * Allocate a new parameter block for the internal objects
254 * Add 1 to count to allow for null terminated internal list
255 */
256 info->parameters = ACPI_ALLOCATE_ZEROED(((acpi_size) info->
257 param_count +
258 1) * sizeof(void *));
259 if (!info->parameters) {
260 status = AE_NO_MEMORY;
261 goto cleanup;
262 }
263
264 /* Convert each external object in the list to an internal object */
265
266 for (i = 0; i < info->param_count; i++) {
267 status =
268 acpi_ut_copy_eobject_to_iobject(&external_params->
269 pointer[i],
270 &info->
271 parameters[i]);
272 if (ACPI_FAILURE(status)) {
273 goto cleanup;
274 }
275 }
276
277 info->parameters[info->param_count] = NULL;
278 }
279
280#if 0
281
282 /*
283 * Begin incoming argument count analysis. Check for too few args
284 * and too many args.
285 */
286
287 switch (acpi_ns_get_type(info->node)) {
288 case ACPI_TYPE_METHOD:
289
290 /* Check incoming argument count against the method definition */
291
292 if (info->obj_desc->method.param_count > info->param_count) {
293 ACPI_ERROR((AE_INFO,
294 "Insufficient arguments (%u) - %u are required",
295 info->param_count,
296 info->obj_desc->method.param_count));
297
298 status = AE_MISSING_ARGUMENTS;
299 goto cleanup;
300 }
301
302 else if (info->obj_desc->method.param_count < info->param_count) {
303 ACPI_WARNING((AE_INFO,
304 "Excess arguments (%u) - only %u are required",
305 info->param_count,
306 info->obj_desc->method.param_count));
307
308 /* Just pass the required number of arguments */
309
310 info->param_count = info->obj_desc->method.param_count;
311 }
312
313 /*
314 * Any incoming external objects to be passed as arguments to the
315 * method must be converted to internal objects
316 */
317 if (info->param_count) {
318 /*
319 * Allocate a new parameter block for the internal objects
320 * Add 1 to count to allow for null terminated internal list
321 */
322 info->parameters = ACPI_ALLOCATE_ZEROED(((acpi_size)
323 info->
324 param_count +
325 1) *
326 sizeof(void *));
327 if (!info->parameters) {
328 status = AE_NO_MEMORY;
329 goto cleanup;
330 }
331
332 /* Convert each external object in the list to an internal object */
333
334 for (i = 0; i < info->param_count; i++) {
335 status =
336 acpi_ut_copy_eobject_to_iobject
337 (&external_params->pointer[i],
338 &info->parameters[i]);
339 if (ACPI_FAILURE(status)) {
340 goto cleanup;
341 }
342 }
343
344 info->parameters[info->param_count] = NULL;
345 }
346 break;
347
348 default:
349
350 /* Warn if arguments passed to an object that is not a method */
351
352 if (info->param_count) {
353 ACPI_WARNING((AE_INFO,
354 "%u arguments were passed to a non-method ACPI object",
355 info->param_count));
356 }
357 break;
358 }
359
360#endif
361
362 /* Now we can evaluate the object */
363
364 status = acpi_ns_evaluate(info);
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /*
367 * If we are expecting a return value, and all went well above,
368 * copy the return value to an external object.
369 */
370 if (return_buffer) {
Bob Moore41195322006-05-26 16:36:00 -0400371 if (!info->return_object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return_buffer->length = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400373 } else {
Bob Moore41195322006-05-26 16:36:00 -0400374 if (ACPI_GET_DESCRIPTOR_TYPE(info->return_object) ==
Len Brown4be44fc2005-08-05 00:44:28 -0400375 ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /*
377 * If we received a NS Node as a return object, this means that
378 * the object we are evaluating has nothing interesting to
379 * return (such as a mutex, etc.) We return an error because
380 * these types are essentially unsupported by this interface.
381 * We don't check up front because this makes it easier to add
382 * support for various types at a later date if necessary.
383 */
384 status = AE_TYPE;
Bob Moore41195322006-05-26 16:36:00 -0400385 info->return_object = NULL; /* No need to delete a NS Node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return_buffer->length = 0;
387 }
388
Len Brown4be44fc2005-08-05 00:44:28 -0400389 if (ACPI_SUCCESS(status)) {
Bob Moore41195322006-05-26 16:36:00 -0400390
Lin Mingbbc24132008-08-04 13:22:10 +0800391 /* Dereference Index and ref_of references */
392
393 acpi_ns_resolve_references(info);
394
Bob Moore41195322006-05-26 16:36:00 -0400395 /* Get the size of the returned object */
396
Len Brown4be44fc2005-08-05 00:44:28 -0400397 status =
Bob Moore41195322006-05-26 16:36:00 -0400398 acpi_ut_get_object_size(info->return_object,
Len Brown4be44fc2005-08-05 00:44:28 -0400399 &buffer_space_needed);
400 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* Validate/Allocate/Clear caller buffer */
403
Len Brown4be44fc2005-08-05 00:44:28 -0400404 status =
405 acpi_ut_initialize_buffer
406 (return_buffer,
407 buffer_space_needed);
408 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /*
Bob Moore52fc0b02006-10-02 00:00:00 -0400410 * Caller's buffer is too small or a new one can't
411 * be allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 */
Len Brown4be44fc2005-08-05 00:44:28 -0400413 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
414 "Needed buffer size %X, %s\n",
415 (u32)
416 buffer_space_needed,
417 acpi_format_exception
418 (status)));
419 } else {
Bob Moore52fc0b02006-10-02 00:00:00 -0400420 /* We have enough space for the object, build it */
421
Len Brown4be44fc2005-08-05 00:44:28 -0400422 status =
423 acpi_ut_copy_iobject_to_eobject
Bob Moore41195322006-05-26 16:36:00 -0400424 (info->return_object,
Len Brown4be44fc2005-08-05 00:44:28 -0400425 return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 }
428 }
429 }
430 }
431
Bob Moore41195322006-05-26 16:36:00 -0400432 if (info->return_object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /*
Bob Moore41195322006-05-26 16:36:00 -0400434 * Delete the internal return object. NOTE: Interpreter must be
435 * locked to avoid race condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
Len Brown4d2acd92007-05-09 22:56:38 -0400437 acpi_ex_enter_interpreter();
Bob Moore41195322006-05-26 16:36:00 -0400438
Len Brown4d2acd92007-05-09 22:56:38 -0400439 /* Remove one reference on the return object (should delete it) */
Bob Moore41195322006-05-26 16:36:00 -0400440
Len Brown4d2acd92007-05-09 22:56:38 -0400441 acpi_ut_remove_reference(info->return_object);
442 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
Lv Zheng10622bf2013-10-29 09:30:02 +0800445cleanup:
Bob Moore41195322006-05-26 16:36:00 -0400446
Bob Moore52fc0b02006-10-02 00:00:00 -0400447 /* Free the input parameter list (if we created one) */
448
Bob Moore41195322006-05-26 16:36:00 -0400449 if (info->parameters) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /* Free the allocated parameter block */
452
Bob Moore41195322006-05-26 16:36:00 -0400453 acpi_ut_delete_internal_object_list(info->parameters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
Bob Moore41195322006-05-26 16:36:00 -0400456 ACPI_FREE(info);
Len Brown4be44fc2005-08-05 00:44:28 -0400457 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Bob Moore83135242006-10-03 00:00:00 -0400460ACPI_EXPORT_SYMBOL(acpi_evaluate_object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462/*******************************************************************************
463 *
Lin Mingbbc24132008-08-04 13:22:10 +0800464 * FUNCTION: acpi_ns_resolve_references
465 *
Bob Mooreba494be2012-07-12 09:40:10 +0800466 * PARAMETERS: info - Evaluation info block
Lin Mingbbc24132008-08-04 13:22:10 +0800467 *
468 * RETURN: Info->return_object is replaced with the dereferenced object
469 *
470 * DESCRIPTION: Dereference certain reference objects. Called before an
471 * internal return object is converted to an external union acpi_object.
472 *
473 * Performs an automatic dereference of Index and ref_of reference objects.
474 * These reference objects are not supported by the union acpi_object, so this is a
475 * last resort effort to return something useful. Also, provides compatibility
476 * with other ACPI implementations.
477 *
478 * NOTE: does not handle references within returned package objects or nested
479 * references, but this support could be added later if found to be necessary.
480 *
481 ******************************************************************************/
482static void acpi_ns_resolve_references(struct acpi_evaluate_info *info)
483{
484 union acpi_operand_object *obj_desc = NULL;
485 struct acpi_namespace_node *node;
486
487 /* We are interested in reference objects only */
488
Bob Moore3371c192009-02-18 14:44:03 +0800489 if ((info->return_object)->common.type != ACPI_TYPE_LOCAL_REFERENCE) {
Lin Mingbbc24132008-08-04 13:22:10 +0800490 return;
491 }
492
493 /*
494 * Two types of references are supported - those created by Index and
495 * ref_of operators. A name reference (AML_NAMEPATH_OP) can be converted
496 * to an union acpi_object, so it is not dereferenced here. A ddb_handle
497 * (AML_LOAD_OP) cannot be dereferenced, nor can it be converted to
498 * an union acpi_object.
499 */
Bob Moore1044f1f2008-09-27 11:08:41 +0800500 switch (info->return_object->reference.class) {
501 case ACPI_REFCLASS_INDEX:
Lin Mingbbc24132008-08-04 13:22:10 +0800502
503 obj_desc = *(info->return_object->reference.where);
504 break;
505
Bob Moore1044f1f2008-09-27 11:08:41 +0800506 case ACPI_REFCLASS_REFOF:
Lin Mingbbc24132008-08-04 13:22:10 +0800507
508 node = info->return_object->reference.object;
509 if (node) {
510 obj_desc = node->object;
511 }
512 break;
513
514 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000515
Lin Mingbbc24132008-08-04 13:22:10 +0800516 return;
517 }
518
519 /* Replace the existing reference object */
520
521 if (obj_desc) {
522 acpi_ut_add_reference(obj_desc);
523 acpi_ut_remove_reference(info->return_object);
524 info->return_object = obj_desc;
525 }
526
527 return;
528}
529
530/*******************************************************************************
531 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 * FUNCTION: acpi_walk_namespace
533 *
Bob Mooreba494be2012-07-12 09:40:10 +0800534 * PARAMETERS: type - acpi_object_type to search for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * start_object - Handle in namespace where search begins
536 * max_depth - Depth to which search is to reach
Bob Moore4ef17502013-08-08 15:30:05 +0800537 * descending_callback - Called during tree descent
Lin Ming22635762009-11-13 10:06:08 +0800538 * when an object of "Type" is found
Bob Moore4ef17502013-08-08 15:30:05 +0800539 * ascending_callback - Called during tree ascent
Lin Ming22635762009-11-13 10:06:08 +0800540 * when an object of "Type" is found
Bob Mooreba494be2012-07-12 09:40:10 +0800541 * context - Passed to user function(s) above
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 * return_value - Location where return value of
543 * user_function is put if terminated early
544 *
545 * RETURNS Return value from the user_function if terminated early.
546 * Otherwise, returns NULL.
547 *
548 * DESCRIPTION: Performs a modified depth-first walk of the namespace tree,
549 * starting (and ending) at the object specified by start_handle.
Lin Ming22635762009-11-13 10:06:08 +0800550 * The callback function is called whenever an object that matches
551 * the type parameter is found. If the callback function returns
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 * a non-zero value, the search is terminated immediately and this
553 * value is returned to the caller.
554 *
555 * The point of this procedure is to provide a generic namespace
556 * walk routine that can be called from multiple places to
Lin Ming22635762009-11-13 10:06:08 +0800557 * provide multiple services; the callback function(s) can be
558 * tailored to each task, whether it is a print function,
559 * a compare function, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 *
561 ******************************************************************************/
Lin Mingbbc24132008-08-04 13:22:10 +0800562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400564acpi_walk_namespace(acpi_object_type type,
565 acpi_handle start_object,
566 u32 max_depth,
Bob Moore4ef17502013-08-08 15:30:05 +0800567 acpi_walk_callback descending_callback,
568 acpi_walk_callback ascending_callback,
Len Brown4be44fc2005-08-05 00:44:28 -0400569 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Len Brown4be44fc2005-08-05 00:44:28 -0400571 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Bob Mooreb229cf92006-04-21 17:15:00 -0400573 ACPI_FUNCTION_TRACE(acpi_walk_namespace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /* Parameter validation */
576
Lin Ming22635762009-11-13 10:06:08 +0800577 if ((type > ACPI_TYPE_LOCAL_MAX) ||
Bob Moore4ef17502013-08-08 15:30:05 +0800578 (!max_depth) || (!descending_callback && !ascending_callback)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400579 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581
582 /*
Bob Moore8a335a232009-03-09 16:31:04 +0800583 * Need to acquire the namespace reader lock to prevent interference
584 * with any concurrent table unloads (which causes the deletion of
585 * namespace objects). We cannot allow the deletion of a namespace node
586 * while the user function is using it. The exception to this are the
587 * nodes created and deleted during control method execution -- these
588 * nodes are marked as temporary nodes and are ignored by the namespace
589 * walk. Thus, control methods can be executed while holding the
590 * namespace deletion lock (and the user function can execute control
591 * methods.)
592 */
593 status = acpi_ut_acquire_read_lock(&acpi_gbl_namespace_rw_lock);
594 if (ACPI_FAILURE(status)) {
Lv Zheng7b6afb62012-12-19 05:37:29 +0000595 return_ACPI_STATUS(status);
Bob Moore8a335a232009-03-09 16:31:04 +0800596 }
597
598 /*
599 * Lock the namespace around the walk. The namespace will be
600 * unlocked/locked around each call to the user function - since the user
601 * function must be allowed to make ACPICA calls itself (for example, it
602 * will typically execute control methods during device enumeration.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 */
Len Brown4be44fc2005-08-05 00:44:28 -0400604 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
605 if (ACPI_FAILURE(status)) {
Bob Moore8a335a232009-03-09 16:31:04 +0800606 goto unlock_and_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
Bob Moored53d8202013-09-23 09:51:58 +0800609 /* Now we can validate the starting node */
610
611 if (!acpi_ns_validate_handle(start_object)) {
612 status = AE_BAD_PARAMETER;
613 goto unlock_and_exit2;
614 }
615
Len Brown4be44fc2005-08-05 00:44:28 -0400616 status = acpi_ns_walk_namespace(type, start_object, max_depth,
Bob Moore4ef17502013-08-08 15:30:05 +0800617 ACPI_NS_WALK_UNLOCK,
618 descending_callback, ascending_callback,
619 context, return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Lv Zheng10622bf2013-10-29 09:30:02 +0800621unlock_and_exit2:
Len Brown4be44fc2005-08-05 00:44:28 -0400622 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Bob Moore8a335a232009-03-09 16:31:04 +0800623
Lv Zheng10622bf2013-10-29 09:30:02 +0800624unlock_and_exit:
Bob Moore8a335a232009-03-09 16:31:04 +0800625 (void)acpi_ut_release_read_lock(&acpi_gbl_namespace_rw_lock);
Len Brown4be44fc2005-08-05 00:44:28 -0400626 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Bob Moore83135242006-10-03 00:00:00 -0400629ACPI_EXPORT_SYMBOL(acpi_walk_namespace)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631/*******************************************************************************
632 *
633 * FUNCTION: acpi_ns_get_device_callback
634 *
635 * PARAMETERS: Callback from acpi_get_device
636 *
637 * RETURN: Status
638 *
639 * DESCRIPTION: Takes callbacks from walk_namespace and filters out all non-
640 * present devices, or if they specified a HID, it filters based
641 * on that.
642 *
643 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400645acpi_ns_get_device_callback(acpi_handle obj_handle,
646 u32 nesting_level,
647 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Len Brown4be44fc2005-08-05 00:44:28 -0400649 struct acpi_get_devices_info *info = context;
650 acpi_status status;
651 struct acpi_namespace_node *node;
652 u32 flags;
Lv Zheng78e25fe2012-10-31 02:25:24 +0000653 struct acpi_pnp_device_id *hid;
654 struct acpi_pnp_device_id_list *cid;
Bob Moore67a119f2008-06-10 13:42:13 +0800655 u32 i;
Bob Moore15b8dd52009-06-29 13:39:29 +0800656 u8 found;
657 int no_match;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Len Brown4be44fc2005-08-05 00:44:28 -0400659 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
660 if (ACPI_FAILURE(status)) {
Lv Zheng7b6afb62012-12-19 05:37:29 +0000661 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
Bob Mooref24b6642009-12-11 14:57:00 +0800664 node = acpi_ns_validate_handle(obj_handle);
Len Brown4be44fc2005-08-05 00:44:28 -0400665 status = acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
666 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return (status);
668 }
669
670 if (!node) {
671 return (AE_BAD_PARAMETER);
672 }
673
Lin Ming5f8902ac2010-01-21 09:15:20 +0800674 /*
675 * First, filter based on the device HID and CID.
676 *
677 * 01/2010: For this case where a specific HID is requested, we don't
678 * want to run _STA until we have an actual HID match. Thus, we will
679 * not unnecessarily execute _STA on devices for which the caller
680 * doesn't care about. Previously, _STA was executed unconditionally
681 * on all devices found here.
682 *
683 * A side-effect of this change is that now we will continue to search
684 * for a matching HID even under device trees where the parent device
685 * would have returned a _STA that indicates it is not present or
686 * not functioning (thus aborting the search on that branch).
687 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (info->hid != NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400689 status = acpi_ut_execute_HID(node, &hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (status == AE_NOT_FOUND) {
691 return (AE_OK);
Len Brown4be44fc2005-08-05 00:44:28 -0400692 } else if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return (AE_CTRL_DEPTH);
694 }
695
Bob Moore15b8dd52009-06-29 13:39:29 +0800696 no_match = ACPI_STRCMP(hid->string, info->hid);
697 ACPI_FREE(hid);
Bob Moore52fc0b02006-10-02 00:00:00 -0400698
Bob Moore15b8dd52009-06-29 13:39:29 +0800699 if (no_match) {
700 /*
701 * HID does not match, attempt match within the
702 * list of Compatible IDs (CIDs)
703 */
Len Brown4be44fc2005-08-05 00:44:28 -0400704 status = acpi_ut_execute_CID(node, &cid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (status == AE_NOT_FOUND) {
706 return (AE_OK);
Len Brown4be44fc2005-08-05 00:44:28 -0400707 } else if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return (AE_CTRL_DEPTH);
709 }
710
711 /* Walk the CID list */
712
Lv Zheng739dcbb2012-12-20 01:07:26 +0000713 found = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 for (i = 0; i < cid->count; i++) {
Bob Moore15b8dd52009-06-29 13:39:29 +0800715 if (ACPI_STRCMP(cid->ids[i].string, info->hid)
716 == 0) {
Lv Zheng3e8214e2012-12-19 05:37:15 +0000717
Lv Zheng75c80442012-12-19 05:36:49 +0000718 /* Found a matching CID */
Lv Zheng3e8214e2012-12-19 05:37:15 +0000719
Lv Zheng739dcbb2012-12-20 01:07:26 +0000720 found = TRUE;
Andrew Patterson02f8a852008-01-22 17:18:22 -0700721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723 }
Lv Zheng739dcbb2012-12-20 01:07:26 +0000724
Bob Moore83135242006-10-03 00:00:00 -0400725 ACPI_FREE(cid);
Lv Zheng739dcbb2012-12-20 01:07:26 +0000726 if (!found) {
Andrew Patterson02f8a852008-01-22 17:18:22 -0700727 return (AE_OK);
Lv Zheng739dcbb2012-12-20 01:07:26 +0000728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730 }
731
Lin Ming5f8902ac2010-01-21 09:15:20 +0800732 /* Run _STA to determine if device is present */
733
734 status = acpi_ut_execute_STA(node, &flags);
735 if (ACPI_FAILURE(status)) {
736 return (AE_CTRL_DEPTH);
737 }
738
739 if (!(flags & ACPI_STA_DEVICE_PRESENT) &&
740 !(flags & ACPI_STA_DEVICE_FUNCTIONING)) {
741 /*
742 * Don't examine the children of the device only when the
743 * device is neither present nor functional. See ACPI spec,
744 * description of _STA for more information.
745 */
746 return (AE_CTRL_DEPTH);
747 }
748
749 /* We have a valid device, invoke the user function */
750
Len Brown4be44fc2005-08-05 00:44:28 -0400751 status = info->user_function(obj_handle, nesting_level, info->context,
752 return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return (status);
754}
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/*******************************************************************************
757 *
758 * FUNCTION: acpi_get_devices
759 *
760 * PARAMETERS: HID - HID to search for. Can be NULL.
761 * user_function - Called when a matching object is found
Bob Mooreba494be2012-07-12 09:40:10 +0800762 * context - Passed to user function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * return_value - Location where return value of
764 * user_function is put if terminated early
765 *
766 * RETURNS Return value from the user_function if terminated early.
767 * Otherwise, returns NULL.
768 *
769 * DESCRIPTION: Performs a modified depth-first walk of the namespace tree,
770 * starting (and ending) at the object specified by start_handle.
771 * The user_function is called whenever an object of type
Bob Moore73a30902012-10-31 02:26:55 +0000772 * Device is found. If the user function returns
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * a non-zero value, the search is terminated immediately and this
774 * value is returned to the caller.
775 *
776 * This is a wrapper for walk_namespace, but the callback performs
Bob Moore549f4602008-04-10 19:06:41 +0400777 * additional filtering. Please see acpi_ns_get_device_callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 *
779 ******************************************************************************/
780
781acpi_status
Al Viro70b30fb2007-08-21 16:18:20 +0100782acpi_get_devices(const char *HID,
Len Brown4be44fc2005-08-05 00:44:28 -0400783 acpi_walk_callback user_function,
784 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Len Brown4be44fc2005-08-05 00:44:28 -0400786 acpi_status status;
787 struct acpi_get_devices_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Bob Mooreb229cf92006-04-21 17:15:00 -0400789 ACPI_FUNCTION_TRACE(acpi_get_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /* Parameter validation */
792
793 if (!user_function) {
Len Brown4be44fc2005-08-05 00:44:28 -0400794 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
797 /*
798 * We're going to call their callback from OUR callback, so we need
799 * to know what it is, and their context parameter.
800 */
Bob Moore52fc0b02006-10-02 00:00:00 -0400801 info.hid = HID;
Len Brown4be44fc2005-08-05 00:44:28 -0400802 info.context = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 info.user_function = user_function;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /*
806 * Lock the namespace around the walk.
807 * The namespace will be unlocked/locked around each call
808 * to the user function - since this function
809 * must be allowed to make Acpi calls itself.
810 */
Len Brown4be44fc2005-08-05 00:44:28 -0400811 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
812 if (ACPI_FAILURE(status)) {
813 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Bob Moore52fc0b02006-10-02 00:00:00 -0400816 status = acpi_ns_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
817 ACPI_UINT32_MAX, ACPI_NS_WALK_UNLOCK,
Lin Ming22635762009-11-13 10:06:08 +0800818 acpi_ns_get_device_callback, NULL,
819 &info, return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Len Brown4be44fc2005-08-05 00:44:28 -0400821 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
822 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Bob Moore83135242006-10-03 00:00:00 -0400825ACPI_EXPORT_SYMBOL(acpi_get_devices)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827/*******************************************************************************
828 *
829 * FUNCTION: acpi_attach_data
830 *
831 * PARAMETERS: obj_handle - Namespace node
Bob Mooreba494be2012-07-12 09:40:10 +0800832 * handler - Handler for this attachment
833 * data - Pointer to data to be attached
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 *
835 * RETURN: Status
836 *
837 * DESCRIPTION: Attach arbitrary data and handler to a namespace node.
838 *
839 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400841acpi_attach_data(acpi_handle obj_handle,
842 acpi_object_handler handler, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Len Brown4be44fc2005-08-05 00:44:28 -0400844 struct acpi_namespace_node *node;
845 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 /* Parameter validation */
848
Len Brown4be44fc2005-08-05 00:44:28 -0400849 if (!obj_handle || !handler || !data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return (AE_BAD_PARAMETER);
851 }
852
Len Brown4be44fc2005-08-05 00:44:28 -0400853 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
854 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return (status);
856 }
857
858 /* Convert and validate the handle */
859
Bob Mooref24b6642009-12-11 14:57:00 +0800860 node = acpi_ns_validate_handle(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (!node) {
862 status = AE_BAD_PARAMETER;
863 goto unlock_and_exit;
864 }
865
Len Brown4be44fc2005-08-05 00:44:28 -0400866 status = acpi_ns_attach_data(node, handler, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Lv Zheng10622bf2013-10-29 09:30:02 +0800868unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400869 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return (status);
871}
872
Bob Moore83135242006-10-03 00:00:00 -0400873ACPI_EXPORT_SYMBOL(acpi_attach_data)
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875/*******************************************************************************
876 *
877 * FUNCTION: acpi_detach_data
878 *
879 * PARAMETERS: obj_handle - Namespace node handle
Bob Mooreba494be2012-07-12 09:40:10 +0800880 * handler - Handler used in call to acpi_attach_data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 *
882 * RETURN: Status
883 *
884 * DESCRIPTION: Remove data that was previously attached to a node.
885 *
886 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400888acpi_detach_data(acpi_handle obj_handle, acpi_object_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Len Brown4be44fc2005-08-05 00:44:28 -0400890 struct acpi_namespace_node *node;
891 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /* Parameter validation */
894
Len Brown4be44fc2005-08-05 00:44:28 -0400895 if (!obj_handle || !handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return (AE_BAD_PARAMETER);
897 }
898
Len Brown4be44fc2005-08-05 00:44:28 -0400899 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
900 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return (status);
902 }
903
904 /* Convert and validate the handle */
905
Bob Mooref24b6642009-12-11 14:57:00 +0800906 node = acpi_ns_validate_handle(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (!node) {
908 status = AE_BAD_PARAMETER;
909 goto unlock_and_exit;
910 }
911
Len Brown4be44fc2005-08-05 00:44:28 -0400912 status = acpi_ns_detach_data(node, handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Lv Zheng10622bf2013-10-29 09:30:02 +0800914unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400915 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return (status);
917}
918
Bob Moore83135242006-10-03 00:00:00 -0400919ACPI_EXPORT_SYMBOL(acpi_detach_data)
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921/*******************************************************************************
922 *
923 * FUNCTION: acpi_get_data
924 *
925 * PARAMETERS: obj_handle - Namespace node
Bob Mooreba494be2012-07-12 09:40:10 +0800926 * handler - Handler used in call to attach_data
927 * data - Where the data is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 *
929 * RETURN: Status
930 *
931 * DESCRIPTION: Retrieve data that was previously attached to a namespace node.
932 *
933 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400935acpi_get_data(acpi_handle obj_handle, acpi_object_handler handler, void **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Len Brown4be44fc2005-08-05 00:44:28 -0400937 struct acpi_namespace_node *node;
938 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 /* Parameter validation */
941
Len Brown4be44fc2005-08-05 00:44:28 -0400942 if (!obj_handle || !handler || !data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return (AE_BAD_PARAMETER);
944 }
945
Len Brown4be44fc2005-08-05 00:44:28 -0400946 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
947 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return (status);
949 }
950
951 /* Convert and validate the handle */
952
Bob Mooref24b6642009-12-11 14:57:00 +0800953 node = acpi_ns_validate_handle(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (!node) {
955 status = AE_BAD_PARAMETER;
956 goto unlock_and_exit;
957 }
958
Len Brown4be44fc2005-08-05 00:44:28 -0400959 status = acpi_ns_get_attached_data(node, handler, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Lv Zheng10622bf2013-10-29 09:30:02 +0800961unlock_and_exit:
Len Brown4be44fc2005-08-05 00:44:28 -0400962 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return (status);
964}
Bob Moore83135242006-10-03 00:00:00 -0400965
966ACPI_EXPORT_SYMBOL(acpi_get_data)