blob: de13add43efc30889cf7598de5cd398c40a92530 [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 Moore4a90c7e2006-01-13 16:22:00 -05009 * Copyright (C) 2000 - 2006, R. Byron Moore
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
45#include <linux/module.h>
46
47#include <acpi/acpi.h>
48#include <acpi/acnamesp.h>
49#include <acpi/acinterp.h>
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define _COMPONENT ACPI_NAMESPACE
Len Brown4be44fc2005-08-05 00:44:28 -040052ACPI_MODULE_NAME("nsxfeval")
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*******************************************************************************
55 *
56 * FUNCTION: acpi_evaluate_object_typed
57 *
58 * PARAMETERS: Handle - Object handle (optional)
Robert Moore44f6c012005-04-18 22:49:35 -040059 * Pathname - Object pathname (optional)
60 * external_params - List of parameters to pass to method,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * terminated by NULL. May be NULL
62 * if no parameters are being passed.
Robert Moore44f6c012005-04-18 22:49:35 -040063 * return_buffer - Where to put method's return value (if
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * any). If NULL, no value is returned.
65 * return_type - Expected type of return object
66 *
67 * RETURN: Status
68 *
69 * DESCRIPTION: Find and evaluate the given object, passing the given
70 * parameters if necessary. One of "Handle" or "Pathname" must
71 * be valid (non-null)
72 *
73 ******************************************************************************/
74#ifdef ACPI_FUTURE_USAGE
75acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040076acpi_evaluate_object_typed(acpi_handle handle,
77 acpi_string pathname,
78 struct acpi_object_list *external_params,
79 struct acpi_buffer *return_buffer,
80 acpi_object_type return_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Len Brown4be44fc2005-08-05 00:44:28 -040082 acpi_status status;
83 u8 must_free = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Len Brown4be44fc2005-08-05 00:44:28 -040085 ACPI_FUNCTION_TRACE("acpi_evaluate_object_typed");
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* Return buffer must be valid */
88
89 if (!return_buffer) {
Len Brown4be44fc2005-08-05 00:44:28 -040090 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
92
93 if (return_buffer->length == ACPI_ALLOCATE_BUFFER) {
94 must_free = TRUE;
95 }
96
97 /* Evaluate the object */
98
Len Brown4be44fc2005-08-05 00:44:28 -040099 status =
100 acpi_evaluate_object(handle, pathname, external_params,
101 return_buffer);
102 if (ACPI_FAILURE(status)) {
103 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
106 /* Type ANY means "don't care" */
107
108 if (return_type == ACPI_TYPE_ANY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400109 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
112 if (return_buffer->length == 0) {
113 /* Error because caller specifically asked for a return value */
114
Bob Moore4a90c7e2006-01-13 16:22:00 -0500115 ACPI_REPORT_ERROR(("No return value\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400116 return_ACPI_STATUS(AE_NULL_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
119 /* Examine the object type returned from evaluate_object */
120
Len Brown4be44fc2005-08-05 00:44:28 -0400121 if (((union acpi_object *)return_buffer->pointer)->type == return_type) {
122 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
125 /* Return object type does not match requested type */
126
Bob Moore4a90c7e2006-01-13 16:22:00 -0500127 ACPI_REPORT_ERROR(("Incorrect return type [%s] requested [%s]\n",
128 acpi_ut_get_type_name(((union acpi_object *)
129 return_buffer->pointer)->
130 type),
131 acpi_ut_get_type_name(return_type)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 if (must_free) {
134 /* Caller used ACPI_ALLOCATE_BUFFER, free the return buffer */
135
Len Brown4be44fc2005-08-05 00:44:28 -0400136 acpi_os_free(return_buffer->pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return_buffer->pointer = NULL;
138 }
139
140 return_buffer->length = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400141 return_ACPI_STATUS(AE_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
Len Brown4be44fc2005-08-05 00:44:28 -0400143#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/*******************************************************************************
146 *
147 * FUNCTION: acpi_evaluate_object
148 *
149 * PARAMETERS: Handle - Object handle (optional)
150 * Pathname - Object pathname (optional)
151 * external_params - List of parameters to pass to method,
152 * terminated by NULL. May be NULL
153 * if no parameters are being passed.
154 * return_buffer - Where to put method's return value (if
155 * any). If NULL, no value is returned.
156 *
157 * RETURN: Status
158 *
159 * DESCRIPTION: Find and evaluate the given object, passing the given
160 * parameters if necessary. One of "Handle" or "Pathname" must
161 * be valid (non-null)
162 *
163 ******************************************************************************/
164
165acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400166acpi_evaluate_object(acpi_handle handle,
167 acpi_string pathname,
168 struct acpi_object_list *external_params,
169 struct acpi_buffer *return_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Len Brown4be44fc2005-08-05 00:44:28 -0400171 acpi_status status;
172 acpi_status status2;
173 struct acpi_parameter_info info;
174 acpi_size buffer_space_needed;
175 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Len Brown4be44fc2005-08-05 00:44:28 -0400177 ACPI_FUNCTION_TRACE("acpi_evaluate_object");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 info.node = handle;
180 info.parameters = NULL;
181 info.return_object = NULL;
182 info.parameter_type = ACPI_PARAM_ARGS;
183
184 /*
185 * If there are parameters to be passed to the object
186 * (which must be a control method), the external objects
187 * must be converted to internal objects
188 */
189 if (external_params && external_params->count) {
190 /*
191 * Allocate a new parameter block for the internal objects
192 * Add 1 to count to allow for null terminated internal list
193 */
Len Brown4be44fc2005-08-05 00:44:28 -0400194 info.parameters = ACPI_MEM_CALLOCATE(((acpi_size)
195 external_params->count +
196 1) * sizeof(void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (!info.parameters) {
Len Brown4be44fc2005-08-05 00:44:28 -0400198 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
201 /*
202 * Convert each external object in the list to an
203 * internal object
204 */
205 for (i = 0; i < external_params->count; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400206 status =
207 acpi_ut_copy_eobject_to_iobject(&external_params->
208 pointer[i],
209 &info.
210 parameters[i]);
211 if (ACPI_FAILURE(status)) {
212 acpi_ut_delete_internal_object_list(info.
213 parameters);
214 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216 }
217 info.parameters[external_params->count] = NULL;
218 }
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /*
221 * Three major cases:
222 * 1) Fully qualified pathname
223 * 2) No handle, not fully qualified pathname (error)
224 * 3) Valid handle
225 */
Len Brown4be44fc2005-08-05 00:44:28 -0400226 if ((pathname) && (acpi_ns_valid_root_prefix(pathname[0]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /*
228 * The path is fully qualified, just evaluate by name
229 */
Len Brown4be44fc2005-08-05 00:44:28 -0400230 status = acpi_ns_evaluate_by_name(pathname, &info);
231 } else if (!handle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /*
233 * A handle is optional iff a fully qualified pathname
234 * is specified. Since we've already handled fully
235 * qualified names above, this is an error
236 */
237 if (!pathname) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500238 ACPI_REPORT_ERROR(("Both Handle and Pathname are NULL\n"));
Len Brown4be44fc2005-08-05 00:44:28 -0400239 } else {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500240 ACPI_REPORT_ERROR(("Handle is NULL and Pathname is relative\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 status = AE_BAD_PARAMETER;
Len Brown4be44fc2005-08-05 00:44:28 -0400244 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /*
246 * We get here if we have a handle -- and if we have a
247 * pathname it is relative. The handle will be validated
248 * in the lower procedures
249 */
250 if (!pathname) {
251 /*
252 * The null pathname case means the handle is for
253 * the actual object to be evaluated
254 */
Len Brown4be44fc2005-08-05 00:44:28 -0400255 status = acpi_ns_evaluate_by_handle(&info);
256 } else {
257 /*
258 * Both a Handle and a relative Pathname
259 */
260 status = acpi_ns_evaluate_relative(pathname, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262 }
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /*
265 * If we are expecting a return value, and all went well above,
266 * copy the return value to an external object.
267 */
268 if (return_buffer) {
269 if (!info.return_object) {
270 return_buffer->length = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400271 } else {
272 if (ACPI_GET_DESCRIPTOR_TYPE(info.return_object) ==
273 ACPI_DESC_TYPE_NAMED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /*
275 * If we received a NS Node as a return object, this means that
276 * the object we are evaluating has nothing interesting to
277 * return (such as a mutex, etc.) We return an error because
278 * these types are essentially unsupported by this interface.
279 * We don't check up front because this makes it easier to add
280 * support for various types at a later date if necessary.
281 */
282 status = AE_TYPE;
Len Brown4be44fc2005-08-05 00:44:28 -0400283 info.return_object = NULL; /* No need to delete a NS Node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return_buffer->length = 0;
285 }
286
Len Brown4be44fc2005-08-05 00:44:28 -0400287 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /*
289 * Find out how large a buffer is needed
290 * to contain the returned object
291 */
Len Brown4be44fc2005-08-05 00:44:28 -0400292 status =
293 acpi_ut_get_object_size(info.return_object,
294 &buffer_space_needed);
295 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* Validate/Allocate/Clear caller buffer */
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298 status =
299 acpi_ut_initialize_buffer
300 (return_buffer,
301 buffer_space_needed);
302 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 /*
304 * Caller's buffer is too small or a new one can't be allocated
305 */
Len Brown4be44fc2005-08-05 00:44:28 -0400306 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
307 "Needed buffer size %X, %s\n",
308 (u32)
309 buffer_space_needed,
310 acpi_format_exception
311 (status)));
312 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /*
314 * We have enough space for the object, build it
315 */
Len Brown4be44fc2005-08-05 00:44:28 -0400316 status =
317 acpi_ut_copy_iobject_to_eobject
318 (info.return_object,
319 return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321 }
322 }
323 }
324 }
325
326 if (info.return_object) {
327 /*
328 * Delete the internal return object. NOTE: Interpreter
329 * must be locked to avoid race condition.
330 */
Len Brown4be44fc2005-08-05 00:44:28 -0400331 status2 = acpi_ex_enter_interpreter();
332 if (ACPI_SUCCESS(status2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /*
334 * Delete the internal return object. (Or at least
335 * decrement the reference count by one)
336 */
Len Brown4be44fc2005-08-05 00:44:28 -0400337 acpi_ut_remove_reference(info.return_object);
338 acpi_ex_exit_interpreter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340 }
341
342 /*
343 * Free the input parameter list (if we created one),
344 */
345 if (info.parameters) {
346 /* Free the allocated parameter block */
347
Len Brown4be44fc2005-08-05 00:44:28 -0400348 acpi_ut_delete_internal_object_list(info.parameters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
Len Brown4be44fc2005-08-05 00:44:28 -0400351 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Len Brown4be44fc2005-08-05 00:44:28 -0400354EXPORT_SYMBOL(acpi_evaluate_object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/*******************************************************************************
357 *
358 * FUNCTION: acpi_walk_namespace
359 *
360 * PARAMETERS: Type - acpi_object_type to search for
361 * start_object - Handle in namespace where search begins
362 * max_depth - Depth to which search is to reach
363 * user_function - Called when an object of "Type" is found
364 * Context - Passed to user function
365 * return_value - Location where return value of
366 * user_function is put if terminated early
367 *
368 * RETURNS Return value from the user_function if terminated early.
369 * Otherwise, returns NULL.
370 *
371 * DESCRIPTION: Performs a modified depth-first walk of the namespace tree,
372 * starting (and ending) at the object specified by start_handle.
373 * The user_function is called whenever an object that matches
374 * the type parameter is found. If the user function returns
375 * a non-zero value, the search is terminated immediately and this
376 * value is returned to the caller.
377 *
378 * The point of this procedure is to provide a generic namespace
379 * walk routine that can be called from multiple places to
380 * provide multiple services; the User Function can be tailored
381 * to each task, whether it is a print function, a compare
382 * function, etc.
383 *
384 ******************************************************************************/
385
386acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400387acpi_walk_namespace(acpi_object_type type,
388 acpi_handle start_object,
389 u32 max_depth,
390 acpi_walk_callback user_function,
391 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Len Brown4be44fc2005-08-05 00:44:28 -0400393 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Len Brown4be44fc2005-08-05 00:44:28 -0400395 ACPI_FUNCTION_TRACE("acpi_walk_namespace");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /* Parameter validation */
398
Bob Moore96db2552005-11-02 00:00:00 -0500399 if ((type > ACPI_TYPE_LOCAL_MAX) || (!max_depth) || (!user_function)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400400 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 /*
404 * Lock the namespace around the walk.
405 * The namespace will be unlocked/locked around each call
406 * to the user function - since this function
407 * must be allowed to make Acpi calls itself.
408 */
Len Brown4be44fc2005-08-05 00:44:28 -0400409 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
410 if (ACPI_FAILURE(status)) {
411 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
Len Brown4be44fc2005-08-05 00:44:28 -0400414 status = acpi_ns_walk_namespace(type, start_object, max_depth,
415 ACPI_NS_WALK_UNLOCK,
416 user_function, context, return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Len Brown4be44fc2005-08-05 00:44:28 -0400418 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
419 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Len Brown4be44fc2005-08-05 00:44:28 -0400422EXPORT_SYMBOL(acpi_walk_namespace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424/*******************************************************************************
425 *
426 * FUNCTION: acpi_ns_get_device_callback
427 *
428 * PARAMETERS: Callback from acpi_get_device
429 *
430 * RETURN: Status
431 *
432 * DESCRIPTION: Takes callbacks from walk_namespace and filters out all non-
433 * present devices, or if they specified a HID, it filters based
434 * on that.
435 *
436 ******************************************************************************/
437
438static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400439acpi_ns_get_device_callback(acpi_handle obj_handle,
440 u32 nesting_level,
441 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Len Brown4be44fc2005-08-05 00:44:28 -0400443 struct acpi_get_devices_info *info = context;
444 acpi_status status;
445 struct acpi_namespace_node *node;
446 u32 flags;
447 struct acpi_device_id hid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct acpi_compatible_id_list *cid;
Len Brown4be44fc2005-08-05 00:44:28 -0400449 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Len Brown4be44fc2005-08-05 00:44:28 -0400451 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
452 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return (status);
454 }
455
Len Brown4be44fc2005-08-05 00:44:28 -0400456 node = acpi_ns_map_handle_to_node(obj_handle);
457 status = acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
458 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return (status);
460 }
461
462 if (!node) {
463 return (AE_BAD_PARAMETER);
464 }
465
466 /* Run _STA to determine if device is present */
467
Len Brown4be44fc2005-08-05 00:44:28 -0400468 status = acpi_ut_execute_STA(node, &flags);
469 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return (AE_CTRL_DEPTH);
471 }
472
Bob Mooredefba1d2005-12-16 17:05:00 -0500473 if (!(flags & ACPI_STA_DEVICE_PRESENT)) {
474 /* Don't examine children of the device if not present */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 return (AE_CTRL_DEPTH);
477 }
478
479 /* Filter based on device HID & CID */
480
481 if (info->hid != NULL) {
Len Brown4be44fc2005-08-05 00:44:28 -0400482 status = acpi_ut_execute_HID(node, &hid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (status == AE_NOT_FOUND) {
484 return (AE_OK);
Len Brown4be44fc2005-08-05 00:44:28 -0400485 } else if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return (AE_CTRL_DEPTH);
487 }
488
Len Brown4be44fc2005-08-05 00:44:28 -0400489 if (ACPI_STRNCMP(hid.value, info->hid, sizeof(hid.value)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /* Get the list of Compatible IDs */
491
Len Brown4be44fc2005-08-05 00:44:28 -0400492 status = acpi_ut_execute_CID(node, &cid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (status == AE_NOT_FOUND) {
494 return (AE_OK);
Len Brown4be44fc2005-08-05 00:44:28 -0400495 } else if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return (AE_CTRL_DEPTH);
497 }
498
499 /* Walk the CID list */
500
501 for (i = 0; i < cid->count; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400502 if (ACPI_STRNCMP(cid->id[i].value, info->hid,
503 sizeof(struct
504 acpi_compatible_id)) !=
505 0) {
506 ACPI_MEM_FREE(cid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return (AE_OK);
508 }
509 }
Len Brown4be44fc2005-08-05 00:44:28 -0400510 ACPI_MEM_FREE(cid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 }
513
Len Brown4be44fc2005-08-05 00:44:28 -0400514 status = info->user_function(obj_handle, nesting_level, info->context,
515 return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return (status);
517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/*******************************************************************************
520 *
521 * FUNCTION: acpi_get_devices
522 *
523 * PARAMETERS: HID - HID to search for. Can be NULL.
524 * user_function - Called when a matching object is found
525 * Context - Passed to user function
526 * return_value - Location where return value of
527 * user_function is put if terminated early
528 *
529 * RETURNS Return value from the user_function if terminated early.
530 * Otherwise, returns NULL.
531 *
532 * DESCRIPTION: Performs a modified depth-first walk of the namespace tree,
533 * starting (and ending) at the object specified by start_handle.
534 * The user_function is called whenever an object of type
535 * Device is found. If the user function returns
536 * a non-zero value, the search is terminated immediately and this
537 * value is returned to the caller.
538 *
539 * This is a wrapper for walk_namespace, but the callback performs
540 * additional filtering. Please see acpi_get_device_callback.
541 *
542 ******************************************************************************/
543
544acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400545acpi_get_devices(char *HID,
546 acpi_walk_callback user_function,
547 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Len Brown4be44fc2005-08-05 00:44:28 -0400549 acpi_status status;
550 struct acpi_get_devices_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Len Brown4be44fc2005-08-05 00:44:28 -0400552 ACPI_FUNCTION_TRACE("acpi_get_devices");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 /* Parameter validation */
555
556 if (!user_function) {
Len Brown4be44fc2005-08-05 00:44:28 -0400557 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
560 /*
561 * We're going to call their callback from OUR callback, so we need
562 * to know what it is, and their context parameter.
563 */
Len Brown4be44fc2005-08-05 00:44:28 -0400564 info.context = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 info.user_function = user_function;
Len Brown4be44fc2005-08-05 00:44:28 -0400566 info.hid = HID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /*
569 * Lock the namespace around the walk.
570 * The namespace will be unlocked/locked around each call
571 * to the user function - since this function
572 * must be allowed to make Acpi calls itself.
573 */
Len Brown4be44fc2005-08-05 00:44:28 -0400574 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
575 if (ACPI_FAILURE(status)) {
576 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
Len Brown4be44fc2005-08-05 00:44:28 -0400579 status = acpi_ns_walk_namespace(ACPI_TYPE_DEVICE,
580 ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
581 ACPI_NS_WALK_UNLOCK,
582 acpi_ns_get_device_callback, &info,
583 return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Len Brown4be44fc2005-08-05 00:44:28 -0400585 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
586 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Len Brown4be44fc2005-08-05 00:44:28 -0400589EXPORT_SYMBOL(acpi_get_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591/*******************************************************************************
592 *
593 * FUNCTION: acpi_attach_data
594 *
595 * PARAMETERS: obj_handle - Namespace node
596 * Handler - Handler for this attachment
597 * Data - Pointer to data to be attached
598 *
599 * RETURN: Status
600 *
601 * DESCRIPTION: Attach arbitrary data and handler to a namespace node.
602 *
603 ******************************************************************************/
604
605acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400606acpi_attach_data(acpi_handle obj_handle,
607 acpi_object_handler handler, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Len Brown4be44fc2005-08-05 00:44:28 -0400609 struct acpi_namespace_node *node;
610 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 /* Parameter validation */
613
Len Brown4be44fc2005-08-05 00:44:28 -0400614 if (!obj_handle || !handler || !data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return (AE_BAD_PARAMETER);
616 }
617
Len Brown4be44fc2005-08-05 00:44:28 -0400618 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
619 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return (status);
621 }
622
623 /* Convert and validate the handle */
624
Len Brown4be44fc2005-08-05 00:44:28 -0400625 node = acpi_ns_map_handle_to_node(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (!node) {
627 status = AE_BAD_PARAMETER;
628 goto unlock_and_exit;
629 }
630
Len Brown4be44fc2005-08-05 00:44:28 -0400631 status = acpi_ns_attach_data(node, handler, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Len Brown4be44fc2005-08-05 00:44:28 -0400633 unlock_and_exit:
634 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return (status);
636}
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638/*******************************************************************************
639 *
640 * FUNCTION: acpi_detach_data
641 *
642 * PARAMETERS: obj_handle - Namespace node handle
643 * Handler - Handler used in call to acpi_attach_data
644 *
645 * RETURN: Status
646 *
647 * DESCRIPTION: Remove data that was previously attached to a node.
648 *
649 ******************************************************************************/
650
651acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400652acpi_detach_data(acpi_handle obj_handle, acpi_object_handler handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Len Brown4be44fc2005-08-05 00:44:28 -0400654 struct acpi_namespace_node *node;
655 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 /* Parameter validation */
658
Len Brown4be44fc2005-08-05 00:44:28 -0400659 if (!obj_handle || !handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return (AE_BAD_PARAMETER);
661 }
662
Len Brown4be44fc2005-08-05 00:44:28 -0400663 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
664 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return (status);
666 }
667
668 /* Convert and validate the handle */
669
Len Brown4be44fc2005-08-05 00:44:28 -0400670 node = acpi_ns_map_handle_to_node(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (!node) {
672 status = AE_BAD_PARAMETER;
673 goto unlock_and_exit;
674 }
675
Len Brown4be44fc2005-08-05 00:44:28 -0400676 status = acpi_ns_detach_data(node, handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 unlock_and_exit:
679 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return (status);
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683/*******************************************************************************
684 *
685 * FUNCTION: acpi_get_data
686 *
687 * PARAMETERS: obj_handle - Namespace node
688 * Handler - Handler used in call to attach_data
689 * Data - Where the data is returned
690 *
691 * RETURN: Status
692 *
693 * DESCRIPTION: Retrieve data that was previously attached to a namespace node.
694 *
695 ******************************************************************************/
696
697acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400698acpi_get_data(acpi_handle obj_handle, acpi_object_handler handler, void **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Len Brown4be44fc2005-08-05 00:44:28 -0400700 struct acpi_namespace_node *node;
701 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 /* Parameter validation */
704
Len Brown4be44fc2005-08-05 00:44:28 -0400705 if (!obj_handle || !handler || !data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return (AE_BAD_PARAMETER);
707 }
708
Len Brown4be44fc2005-08-05 00:44:28 -0400709 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
710 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return (status);
712 }
713
714 /* Convert and validate the handle */
715
Len Brown4be44fc2005-08-05 00:44:28 -0400716 node = acpi_ns_map_handle_to_node(obj_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (!node) {
718 status = AE_BAD_PARAMETER;
719 goto unlock_and_exit;
720 }
721
Len Brown4be44fc2005-08-05 00:44:28 -0400722 status = acpi_ns_get_attached_data(node, handler, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Len Brown4be44fc2005-08-05 00:44:28 -0400724 unlock_and_exit:
725 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return (status);
727}