nsxfeval.c 21.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
/*******************************************************************************
 *
 * Module Name: nsxfeval - Public interfaces to the ACPI subsystem
 *                         ACPI Object evaluation interfaces
 *
 ******************************************************************************/

/*
B
Bob Moore 已提交
9
 * Copyright (C) 2000 - 2006, R. Byron Moore
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <linux/module.h>

#include <acpi/acpi.h>
#include <acpi/acnamesp.h>
#include <acpi/acinterp.h>

#define _COMPONENT          ACPI_NAMESPACE
L
Len Brown 已提交
52
ACPI_MODULE_NAME("nsxfeval")
L
Linus Torvalds 已提交
53 54 55 56 57 58

/*******************************************************************************
 *
 * FUNCTION:    acpi_evaluate_object_typed
 *
 * PARAMETERS:  Handle              - Object handle (optional)
R
Robert Moore 已提交
59 60
 *              Pathname            - Object pathname (optional)
 *              external_params     - List of parameters to pass to method,
L
Linus Torvalds 已提交
61 62
 *                                    terminated by NULL.  May be NULL
 *                                    if no parameters are being passed.
R
Robert Moore 已提交
63
 *              return_buffer       - Where to put method's return value (if
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73 74 75
 *                                    any).  If NULL, no value is returned.
 *              return_type         - Expected type of return object
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Find and evaluate the given object, passing the given
 *              parameters if necessary.  One of "Handle" or "Pathname" must
 *              be valid (non-null)
 *
 ******************************************************************************/
#ifdef ACPI_FUTURE_USAGE
acpi_status
L
Len Brown 已提交
76 77 78 79 80
acpi_evaluate_object_typed(acpi_handle handle,
			   acpi_string pathname,
			   struct acpi_object_list *external_params,
			   struct acpi_buffer *return_buffer,
			   acpi_object_type return_type)
L
Linus Torvalds 已提交
81
{
L
Len Brown 已提交
82 83
	acpi_status status;
	u8 must_free = FALSE;
L
Linus Torvalds 已提交
84

L
Len Brown 已提交
85
	ACPI_FUNCTION_TRACE("acpi_evaluate_object_typed");
L
Linus Torvalds 已提交
86 87 88 89

	/* Return buffer must be valid */

	if (!return_buffer) {
L
Len Brown 已提交
90
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98
	}

	if (return_buffer->length == ACPI_ALLOCATE_BUFFER) {
		must_free = TRUE;
	}

	/* Evaluate the object */

L
Len Brown 已提交
99 100 101 102 103
	status =
	    acpi_evaluate_object(handle, pathname, external_params,
				 return_buffer);
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
104 105 106 107 108
	}

	/* Type ANY means "don't care" */

	if (return_type == ACPI_TYPE_ANY) {
L
Len Brown 已提交
109
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
110 111 112 113 114
	}

	if (return_buffer->length == 0) {
		/* Error because caller specifically asked for a return value */

B
Bob Moore 已提交
115
		ACPI_REPORT_ERROR(("No return value\n"));
L
Len Brown 已提交
116
		return_ACPI_STATUS(AE_NULL_OBJECT);
L
Linus Torvalds 已提交
117 118 119 120
	}

	/* Examine the object type returned from evaluate_object */

L
Len Brown 已提交
121 122
	if (((union acpi_object *)return_buffer->pointer)->type == return_type) {
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
123 124 125 126
	}

	/* Return object type does not match requested type */

B
Bob Moore 已提交
127 128 129 130 131
	ACPI_REPORT_ERROR(("Incorrect return type [%s] requested [%s]\n",
			   acpi_ut_get_type_name(((union acpi_object *)
						  return_buffer->pointer)->
						 type),
			   acpi_ut_get_type_name(return_type)));
L
Linus Torvalds 已提交
132 133 134 135

	if (must_free) {
		/* Caller used ACPI_ALLOCATE_BUFFER, free the return buffer */

L
Len Brown 已提交
136
		acpi_os_free(return_buffer->pointer);
L
Linus Torvalds 已提交
137 138 139 140
		return_buffer->pointer = NULL;
	}

	return_buffer->length = 0;
L
Len Brown 已提交
141
	return_ACPI_STATUS(AE_TYPE);
L
Linus Torvalds 已提交
142
}
L
Len Brown 已提交
143
#endif				/*  ACPI_FUTURE_USAGE  */
L
Linus Torvalds 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

/*******************************************************************************
 *
 * FUNCTION:    acpi_evaluate_object
 *
 * PARAMETERS:  Handle              - Object handle (optional)
 *              Pathname            - Object pathname (optional)
 *              external_params     - List of parameters to pass to method,
 *                                    terminated by NULL.  May be NULL
 *                                    if no parameters are being passed.
 *              return_buffer       - Where to put method's return value (if
 *                                    any).  If NULL, no value is returned.
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Find and evaluate the given object, passing the given
 *              parameters if necessary.  One of "Handle" or "Pathname" must
 *              be valid (non-null)
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
166 167 168 169
acpi_evaluate_object(acpi_handle handle,
		     acpi_string pathname,
		     struct acpi_object_list *external_params,
		     struct acpi_buffer *return_buffer)
L
Linus Torvalds 已提交
170
{
L
Len Brown 已提交
171 172 173 174 175
	acpi_status status;
	acpi_status status2;
	struct acpi_parameter_info info;
	acpi_size buffer_space_needed;
	u32 i;
L
Linus Torvalds 已提交
176

L
Len Brown 已提交
177
	ACPI_FUNCTION_TRACE("acpi_evaluate_object");
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193

	info.node = handle;
	info.parameters = NULL;
	info.return_object = NULL;
	info.parameter_type = ACPI_PARAM_ARGS;

	/*
	 * If there are parameters to be passed to the object
	 * (which must be a control method), the external objects
	 * must be converted to internal objects
	 */
	if (external_params && external_params->count) {
		/*
		 * Allocate a new parameter block for the internal objects
		 * Add 1 to count to allow for null terminated internal list
		 */
L
Len Brown 已提交
194 195 196
		info.parameters = ACPI_MEM_CALLOCATE(((acpi_size)
						      external_params->count +
						      1) * sizeof(void *));
L
Linus Torvalds 已提交
197
		if (!info.parameters) {
L
Len Brown 已提交
198
			return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
199 200 201 202 203 204 205
		}

		/*
		 * Convert each external object in the list to an
		 * internal object
		 */
		for (i = 0; i < external_params->count; i++) {
L
Len Brown 已提交
206 207 208 209 210 211 212 213 214
			status =
			    acpi_ut_copy_eobject_to_iobject(&external_params->
							    pointer[i],
							    &info.
							    parameters[i]);
			if (ACPI_FAILURE(status)) {
				acpi_ut_delete_internal_object_list(info.
								    parameters);
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
215 216 217 218 219 220 221 222 223 224 225
			}
		}
		info.parameters[external_params->count] = NULL;
	}

	/*
	 * Three major cases:
	 * 1) Fully qualified pathname
	 * 2) No handle, not fully qualified pathname (error)
	 * 3) Valid handle
	 */
L
Len Brown 已提交
226
	if ((pathname) && (acpi_ns_valid_root_prefix(pathname[0]))) {
L
Linus Torvalds 已提交
227 228 229
		/*
		 *  The path is fully qualified, just evaluate by name
		 */
L
Len Brown 已提交
230 231
		status = acpi_ns_evaluate_by_name(pathname, &info);
	} else if (!handle) {
L
Linus Torvalds 已提交
232 233 234 235 236 237
		/*
		 * A handle is optional iff a fully qualified pathname
		 * is specified.  Since we've already handled fully
		 * qualified names above, this is an error
		 */
		if (!pathname) {
B
Bob Moore 已提交
238
			ACPI_REPORT_ERROR(("Both Handle and Pathname are NULL\n"));
L
Len Brown 已提交
239
		} else {
B
Bob Moore 已提交
240
			ACPI_REPORT_ERROR(("Handle is NULL and Pathname is relative\n"));
L
Linus Torvalds 已提交
241 242 243
		}

		status = AE_BAD_PARAMETER;
L
Len Brown 已提交
244
	} else {
L
Linus Torvalds 已提交
245 246 247 248 249 250 251 252 253 254
		/*
		 * We get here if we have a handle -- and if we have a
		 * pathname it is relative.  The handle will be validated
		 * in the lower procedures
		 */
		if (!pathname) {
			/*
			 * The null pathname case means the handle is for
			 * the actual object to be evaluated
			 */
L
Len Brown 已提交
255 256 257 258 259 260
			status = acpi_ns_evaluate_by_handle(&info);
		} else {
			/*
			 * Both a Handle and a relative Pathname
			 */
			status = acpi_ns_evaluate_relative(pathname, &info);
L
Linus Torvalds 已提交
261 262 263 264 265 266 267 268 269 270
		}
	}

	/*
	 * If we are expecting a return value, and all went well above,
	 * copy the return value to an external object.
	 */
	if (return_buffer) {
		if (!info.return_object) {
			return_buffer->length = 0;
L
Len Brown 已提交
271 272 273
		} else {
			if (ACPI_GET_DESCRIPTOR_TYPE(info.return_object) ==
			    ACPI_DESC_TYPE_NAMED) {
L
Linus Torvalds 已提交
274 275 276 277 278 279 280 281 282
				/*
				 * If we received a NS Node as a return object, this means that
				 * the object we are evaluating has nothing interesting to
				 * return (such as a mutex, etc.)  We return an error because
				 * these types are essentially unsupported by this interface.
				 * We don't check up front because this makes it easier to add
				 * support for various types at a later date if necessary.
				 */
				status = AE_TYPE;
L
Len Brown 已提交
283
				info.return_object = NULL;	/* No need to delete a NS Node */
L
Linus Torvalds 已提交
284 285 286
				return_buffer->length = 0;
			}

L
Len Brown 已提交
287
			if (ACPI_SUCCESS(status)) {
L
Linus Torvalds 已提交
288 289 290 291
				/*
				 * Find out how large a buffer is needed
				 * to contain the returned object
				 */
L
Len Brown 已提交
292 293 294 295
				status =
				    acpi_ut_get_object_size(info.return_object,
							    &buffer_space_needed);
				if (ACPI_SUCCESS(status)) {
L
Linus Torvalds 已提交
296 297
					/* Validate/Allocate/Clear caller buffer */

L
Len Brown 已提交
298 299 300 301 302
					status =
					    acpi_ut_initialize_buffer
					    (return_buffer,
					     buffer_space_needed);
					if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
303 304 305
						/*
						 * Caller's buffer is too small or a new one can't be allocated
						 */
L
Len Brown 已提交
306 307 308 309 310 311 312
						ACPI_DEBUG_PRINT((ACPI_DB_INFO,
								  "Needed buffer size %X, %s\n",
								  (u32)
								  buffer_space_needed,
								  acpi_format_exception
								  (status)));
					} else {
L
Linus Torvalds 已提交
313 314 315
						/*
						 *  We have enough space for the object, build it
						 */
L
Len Brown 已提交
316 317 318 319
						status =
						    acpi_ut_copy_iobject_to_eobject
						    (info.return_object,
						     return_buffer);
L
Linus Torvalds 已提交
320 321 322 323 324 325 326 327 328 329 330
					}
				}
			}
		}
	}

	if (info.return_object) {
		/*
		 * Delete the internal return object.  NOTE: Interpreter
		 * must be locked to avoid race condition.
		 */
L
Len Brown 已提交
331 332
		status2 = acpi_ex_enter_interpreter();
		if (ACPI_SUCCESS(status2)) {
L
Linus Torvalds 已提交
333 334 335 336
			/*
			 * Delete the internal return object. (Or at least
			 * decrement the reference count by one)
			 */
L
Len Brown 已提交
337 338
			acpi_ut_remove_reference(info.return_object);
			acpi_ex_exit_interpreter();
L
Linus Torvalds 已提交
339 340 341 342 343 344 345 346 347
		}
	}

	/*
	 * Free the input parameter list (if we created one),
	 */
	if (info.parameters) {
		/* Free the allocated parameter block */

L
Len Brown 已提交
348
		acpi_ut_delete_internal_object_list(info.parameters);
L
Linus Torvalds 已提交
349 350
	}

L
Len Brown 已提交
351
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
352 353
}

L
Len Brown 已提交
354
EXPORT_SYMBOL(acpi_evaluate_object);
L
Linus Torvalds 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386

/*******************************************************************************
 *
 * FUNCTION:    acpi_walk_namespace
 *
 * PARAMETERS:  Type                - acpi_object_type to search for
 *              start_object        - Handle in namespace where search begins
 *              max_depth           - Depth to which search is to reach
 *              user_function       - Called when an object of "Type" is found
 *              Context             - Passed to user function
 *              return_value        - Location where return value of
 *                                    user_function is put if terminated early
 *
 * RETURNS      Return value from the user_function if terminated early.
 *              Otherwise, returns NULL.
 *
 * DESCRIPTION: Performs a modified depth-first walk of the namespace tree,
 *              starting (and ending) at the object specified by start_handle.
 *              The user_function is called whenever an object that matches
 *              the type parameter is found.  If the user function returns
 *              a non-zero value, the search is terminated immediately and this
 *              value is returned to the caller.
 *
 *              The point of this procedure is to provide a generic namespace
 *              walk routine that can be called from multiple places to
 *              provide multiple services;  the User Function can be tailored
 *              to each task, whether it is a print function, a compare
 *              function, etc.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
387 388 389 390 391
acpi_walk_namespace(acpi_object_type type,
		    acpi_handle start_object,
		    u32 max_depth,
		    acpi_walk_callback user_function,
		    void *context, void **return_value)
L
Linus Torvalds 已提交
392
{
L
Len Brown 已提交
393
	acpi_status status;
L
Linus Torvalds 已提交
394

L
Len Brown 已提交
395
	ACPI_FUNCTION_TRACE("acpi_walk_namespace");
L
Linus Torvalds 已提交
396 397 398

	/* Parameter validation */

B
Bob Moore 已提交
399
	if ((type > ACPI_TYPE_LOCAL_MAX) || (!max_depth) || (!user_function)) {
L
Len Brown 已提交
400
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
401 402 403 404 405 406 407 408
	}

	/*
	 * Lock the namespace around the walk.
	 * The namespace will be unlocked/locked around each call
	 * to the user function - since this function
	 * must be allowed to make Acpi calls itself.
	 */
L
Len Brown 已提交
409 410 411
	status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
412 413
	}

L
Len Brown 已提交
414 415 416
	status = acpi_ns_walk_namespace(type, start_object, max_depth,
					ACPI_NS_WALK_UNLOCK,
					user_function, context, return_value);
L
Linus Torvalds 已提交
417

L
Len Brown 已提交
418 419
	(void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
420 421
}

L
Len Brown 已提交
422
EXPORT_SYMBOL(acpi_walk_namespace);
L
Linus Torvalds 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_get_device_callback
 *
 * PARAMETERS:  Callback from acpi_get_device
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Takes callbacks from walk_namespace and filters out all non-
 *              present devices, or if they specified a HID, it filters based
 *              on that.
 *
 ******************************************************************************/

static acpi_status
L
Len Brown 已提交
439 440 441
acpi_ns_get_device_callback(acpi_handle obj_handle,
			    u32 nesting_level,
			    void *context, void **return_value)
L
Linus Torvalds 已提交
442
{
L
Len Brown 已提交
443 444 445 446 447
	struct acpi_get_devices_info *info = context;
	acpi_status status;
	struct acpi_namespace_node *node;
	u32 flags;
	struct acpi_device_id hid;
L
Linus Torvalds 已提交
448
	struct acpi_compatible_id_list *cid;
L
Len Brown 已提交
449
	acpi_native_uint i;
L
Linus Torvalds 已提交
450

L
Len Brown 已提交
451 452
	status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
453 454 455
		return (status);
	}

L
Len Brown 已提交
456 457 458
	node = acpi_ns_map_handle_to_node(obj_handle);
	status = acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
459 460 461 462 463 464 465 466 467
		return (status);
	}

	if (!node) {
		return (AE_BAD_PARAMETER);
	}

	/* Run _STA to determine if device is present */

L
Len Brown 已提交
468 469
	status = acpi_ut_execute_STA(node, &flags);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
470 471 472
		return (AE_CTRL_DEPTH);
	}

B
Bob Moore 已提交
473 474
	if (!(flags & ACPI_STA_DEVICE_PRESENT)) {
		/* Don't examine children of the device if not present */
L
Linus Torvalds 已提交
475 476 477 478 479 480 481

		return (AE_CTRL_DEPTH);
	}

	/* Filter based on device HID & CID */

	if (info->hid != NULL) {
L
Len Brown 已提交
482
		status = acpi_ut_execute_HID(node, &hid);
L
Linus Torvalds 已提交
483 484
		if (status == AE_NOT_FOUND) {
			return (AE_OK);
L
Len Brown 已提交
485
		} else if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
486 487 488
			return (AE_CTRL_DEPTH);
		}

L
Len Brown 已提交
489
		if (ACPI_STRNCMP(hid.value, info->hid, sizeof(hid.value)) != 0) {
L
Linus Torvalds 已提交
490 491
			/* Get the list of Compatible IDs */

L
Len Brown 已提交
492
			status = acpi_ut_execute_CID(node, &cid);
L
Linus Torvalds 已提交
493 494
			if (status == AE_NOT_FOUND) {
				return (AE_OK);
L
Len Brown 已提交
495
			} else if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
496 497 498 499 500 501
				return (AE_CTRL_DEPTH);
			}

			/* Walk the CID list */

			for (i = 0; i < cid->count; i++) {
L
Len Brown 已提交
502 503 504 505 506
				if (ACPI_STRNCMP(cid->id[i].value, info->hid,
						 sizeof(struct
							acpi_compatible_id)) !=
				    0) {
					ACPI_MEM_FREE(cid);
L
Linus Torvalds 已提交
507 508 509
					return (AE_OK);
				}
			}
L
Len Brown 已提交
510
			ACPI_MEM_FREE(cid);
L
Linus Torvalds 已提交
511 512 513
		}
	}

L
Len Brown 已提交
514 515
	status = info->user_function(obj_handle, nesting_level, info->context,
				     return_value);
L
Linus Torvalds 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
	return (status);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_get_devices
 *
 * PARAMETERS:  HID                 - HID to search for. Can be NULL.
 *              user_function       - Called when a matching object is found
 *              Context             - Passed to user function
 *              return_value        - Location where return value of
 *                                    user_function is put if terminated early
 *
 * RETURNS      Return value from the user_function if terminated early.
 *              Otherwise, returns NULL.
 *
 * DESCRIPTION: Performs a modified depth-first walk of the namespace tree,
 *              starting (and ending) at the object specified by start_handle.
 *              The user_function is called whenever an object of type
 *              Device is found.  If the user function returns
 *              a non-zero value, the search is terminated immediately and this
 *              value is returned to the caller.
 *
 *              This is a wrapper for walk_namespace, but the callback performs
 *              additional filtering. Please see acpi_get_device_callback.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
545 546 547
acpi_get_devices(char *HID,
		 acpi_walk_callback user_function,
		 void *context, void **return_value)
L
Linus Torvalds 已提交
548
{
L
Len Brown 已提交
549 550
	acpi_status status;
	struct acpi_get_devices_info info;
L
Linus Torvalds 已提交
551

L
Len Brown 已提交
552
	ACPI_FUNCTION_TRACE("acpi_get_devices");
L
Linus Torvalds 已提交
553 554 555 556

	/* Parameter validation */

	if (!user_function) {
L
Len Brown 已提交
557
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
558 559 560 561 562 563
	}

	/*
	 * We're going to call their callback from OUR callback, so we need
	 * to know what it is, and their context parameter.
	 */
L
Len Brown 已提交
564
	info.context = context;
L
Linus Torvalds 已提交
565
	info.user_function = user_function;
L
Len Brown 已提交
566
	info.hid = HID;
L
Linus Torvalds 已提交
567 568 569 570 571 572 573

	/*
	 * Lock the namespace around the walk.
	 * The namespace will be unlocked/locked around each call
	 * to the user function - since this function
	 * must be allowed to make Acpi calls itself.
	 */
L
Len Brown 已提交
574 575 576
	status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
577 578
	}

L
Len Brown 已提交
579 580 581 582 583
	status = acpi_ns_walk_namespace(ACPI_TYPE_DEVICE,
					ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
					ACPI_NS_WALK_UNLOCK,
					acpi_ns_get_device_callback, &info,
					return_value);
L
Linus Torvalds 已提交
584

L
Len Brown 已提交
585 586
	(void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
587 588
}

L
Len Brown 已提交
589
EXPORT_SYMBOL(acpi_get_devices);
L
Linus Torvalds 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605

/*******************************************************************************
 *
 * FUNCTION:    acpi_attach_data
 *
 * PARAMETERS:  obj_handle          - Namespace node
 *              Handler             - Handler for this attachment
 *              Data                - Pointer to data to be attached
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Attach arbitrary data and handler to a namespace node.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
606 607
acpi_attach_data(acpi_handle obj_handle,
		 acpi_object_handler handler, void *data)
L
Linus Torvalds 已提交
608
{
L
Len Brown 已提交
609 610
	struct acpi_namespace_node *node;
	acpi_status status;
L
Linus Torvalds 已提交
611 612 613

	/* Parameter validation */

L
Len Brown 已提交
614
	if (!obj_handle || !handler || !data) {
L
Linus Torvalds 已提交
615 616 617
		return (AE_BAD_PARAMETER);
	}

L
Len Brown 已提交
618 619
	status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
620 621 622 623 624
		return (status);
	}

	/* Convert and validate the handle */

L
Len Brown 已提交
625
	node = acpi_ns_map_handle_to_node(obj_handle);
L
Linus Torvalds 已提交
626 627 628 629 630
	if (!node) {
		status = AE_BAD_PARAMETER;
		goto unlock_and_exit;
	}

L
Len Brown 已提交
631
	status = acpi_ns_attach_data(node, handler, data);
L
Linus Torvalds 已提交
632

L
Len Brown 已提交
633 634
      unlock_and_exit:
	(void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
L
Linus Torvalds 已提交
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
	return (status);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_detach_data
 *
 * PARAMETERS:  obj_handle          - Namespace node handle
 *              Handler             - Handler used in call to acpi_attach_data
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Remove data that was previously attached to a node.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
652
acpi_detach_data(acpi_handle obj_handle, acpi_object_handler handler)
L
Linus Torvalds 已提交
653
{
L
Len Brown 已提交
654 655
	struct acpi_namespace_node *node;
	acpi_status status;
L
Linus Torvalds 已提交
656 657 658

	/* Parameter validation */

L
Len Brown 已提交
659
	if (!obj_handle || !handler) {
L
Linus Torvalds 已提交
660 661 662
		return (AE_BAD_PARAMETER);
	}

L
Len Brown 已提交
663 664
	status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
665 666 667 668 669
		return (status);
	}

	/* Convert and validate the handle */

L
Len Brown 已提交
670
	node = acpi_ns_map_handle_to_node(obj_handle);
L
Linus Torvalds 已提交
671 672 673 674 675
	if (!node) {
		status = AE_BAD_PARAMETER;
		goto unlock_and_exit;
	}

L
Len Brown 已提交
676
	status = acpi_ns_detach_data(node, handler);
L
Linus Torvalds 已提交
677

L
Len Brown 已提交
678 679
      unlock_and_exit:
	(void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
L
Linus Torvalds 已提交
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
	return (status);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_get_data
 *
 * PARAMETERS:  obj_handle          - Namespace node
 *              Handler             - Handler used in call to attach_data
 *              Data                - Where the data is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Retrieve data that was previously attached to a namespace node.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
698
acpi_get_data(acpi_handle obj_handle, acpi_object_handler handler, void **data)
L
Linus Torvalds 已提交
699
{
L
Len Brown 已提交
700 701
	struct acpi_namespace_node *node;
	acpi_status status;
L
Linus Torvalds 已提交
702 703 704

	/* Parameter validation */

L
Len Brown 已提交
705
	if (!obj_handle || !handler || !data) {
L
Linus Torvalds 已提交
706 707 708
		return (AE_BAD_PARAMETER);
	}

L
Len Brown 已提交
709 710
	status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
711 712 713 714 715
		return (status);
	}

	/* Convert and validate the handle */

L
Len Brown 已提交
716
	node = acpi_ns_map_handle_to_node(obj_handle);
L
Linus Torvalds 已提交
717 718 719 720 721
	if (!node) {
		status = AE_BAD_PARAMETER;
		goto unlock_and_exit;
	}

L
Len Brown 已提交
722
	status = acpi_ns_get_attached_data(node, handler, data);
L
Linus Torvalds 已提交
723

L
Len Brown 已提交
724 725
      unlock_and_exit:
	(void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
L
Linus Torvalds 已提交
726 727
	return (status);
}