nsobject.c 12.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
/*******************************************************************************
 *
 * Module Name: nsobject - Utilities for objects attached to namespace
 *                         table entries
 *
 ******************************************************************************/

/*
9
 * Copyright (C) 2000 - 2011, Intel Corp.
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
 * 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 <acpi/acpi.h>
L
Len Brown 已提交
46 47
#include "accommon.h"
#include "acnamesp.h"
L
Linus Torvalds 已提交
48 49

#define _COMPONENT          ACPI_NAMESPACE
L
Len Brown 已提交
50
ACPI_MODULE_NAME("nsobject")
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_attach_object
 *
 * PARAMETERS:  Node                - Parent Node
 *              Object              - Object to be attached
 *              Type                - Type of object, or ACPI_TYPE_ANY if not
 *                                    known
 *
R
Robert Moore 已提交
61 62
 * RETURN:      Status
 *
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72
 * DESCRIPTION: Record the given object as the value associated with the
 *              name whose acpi_handle is passed.  If Object is NULL
 *              and Type is ACPI_TYPE_ANY, set the name as having no value.
 *              Note: Future may require that the Node->Flags field be passed
 *              as a parameter.
 *
 * MUTEX:       Assumes namespace is locked
 *
 ******************************************************************************/
acpi_status
L
Len Brown 已提交
73 74
acpi_ns_attach_object(struct acpi_namespace_node *node,
		      union acpi_operand_object *object, acpi_object_type type)
L
Linus Torvalds 已提交
75
{
L
Len Brown 已提交
76 77 78
	union acpi_operand_object *obj_desc;
	union acpi_operand_object *last_obj_desc;
	acpi_object_type object_type = ACPI_TYPE_ANY;
L
Linus Torvalds 已提交
79

B
Bob Moore 已提交
80
	ACPI_FUNCTION_TRACE(ns_attach_object);
L
Linus Torvalds 已提交
81 82 83 84 85

	/*
	 * Parameter validation
	 */
	if (!node) {
B
Bob Moore 已提交
86

L
Linus Torvalds 已提交
87 88
		/* Invalid handle */

B
Bob Moore 已提交
89
		ACPI_ERROR((AE_INFO, "Null NamedObj handle"));
L
Len Brown 已提交
90
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
91 92 93
	}

	if (!object && (ACPI_TYPE_ANY != type)) {
B
Bob Moore 已提交
94

L
Linus Torvalds 已提交
95 96
		/* Null object */

B
Bob Moore 已提交
97 98
		ACPI_ERROR((AE_INFO,
			    "Null object, but type not ACPI_TYPE_ANY"));
L
Len Brown 已提交
99
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
100 101
	}

L
Len Brown 已提交
102
	if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) {
B
Bob Moore 已提交
103

L
Linus Torvalds 已提交
104 105
		/* Not a name handle */

B
Bob Moore 已提交
106 107
		ACPI_ERROR((AE_INFO, "Invalid handle %p [%s]",
			    node, acpi_ut_get_descriptor_name(node)));
L
Len Brown 已提交
108
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
109 110 111 112 113
	}

	/* Check if this object is already attached */

	if (node->object == object) {
L
Len Brown 已提交
114
		ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
B
Bob Moore 已提交
115
				  "Obj %p already installed in NameObj %p\n",
L
Len Brown 已提交
116
				  object, node));
L
Linus Torvalds 已提交
117

L
Len Brown 已提交
118
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
119 120 121 122 123
	}

	/* If null object, we will just install it */

	if (!object) {
L
Len Brown 已提交
124
		obj_desc = NULL;
L
Linus Torvalds 已提交
125 126 127 128 129 130 131
		object_type = ACPI_TYPE_ANY;
	}

	/*
	 * If the source object is a namespace Node with an attached object,
	 * we will use that (attached) object
	 */
L
Len Brown 已提交
132 133
	else if ((ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED) &&
		 ((struct acpi_namespace_node *)object)->object) {
L
Linus Torvalds 已提交
134 135 136 137
		/*
		 * Value passed is a name handle and that name has a
		 * non-null value.  Use that name's value and type.
		 */
L
Len Brown 已提交
138 139
		obj_desc = ((struct acpi_namespace_node *)object)->object;
		object_type = ((struct acpi_namespace_node *)object)->type;
L
Linus Torvalds 已提交
140 141 142 143 144 145 146
	}

	/*
	 * Otherwise, we will use the parameter object, but we must type
	 * it first
	 */
	else {
L
Len Brown 已提交
147
		obj_desc = (union acpi_operand_object *)object;
L
Linus Torvalds 已提交
148 149 150 151 152 153

		/* Use the given type */

		object_type = type;
	}

L
Len Brown 已提交
154 155
	ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Installing %p into Node %p [%4.4s]\n",
			  obj_desc, node, acpi_ut_get_node_name(node)));
L
Linus Torvalds 已提交
156 157 158 159

	/* Detach an existing attached object if present */

	if (node->object) {
L
Len Brown 已提交
160
		acpi_ns_detach_object(node);
L
Linus Torvalds 已提交
161 162 163 164 165 166 167
	}

	if (obj_desc) {
		/*
		 * Must increment the new value's reference count
		 * (if it is an internal object)
		 */
L
Len Brown 已提交
168
		acpi_ut_add_reference(obj_desc);
L
Linus Torvalds 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

		/*
		 * Handle objects with multiple descriptors - walk
		 * to the end of the descriptor list
		 */
		last_obj_desc = obj_desc;
		while (last_obj_desc->common.next_object) {
			last_obj_desc = last_obj_desc->common.next_object;
		}

		/* Install the object at the front of the object list */

		last_obj_desc->common.next_object = node->object;
	}

L
Len Brown 已提交
184 185
	node->type = (u8) object_type;
	node->object = obj_desc;
L
Linus Torvalds 已提交
186

L
Len Brown 已提交
187
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
188 189 190 191 192 193
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_detach_object
 *
R
Robert Moore 已提交
194
 * PARAMETERS:  Node           - A Namespace node whose object will be detached
L
Linus Torvalds 已提交
195 196 197 198 199 200 201 202 203
 *
 * RETURN:      None.
 *
 * DESCRIPTION: Detach/delete an object associated with a namespace node.
 *              if the object is an allocated object, it is freed.
 *              Otherwise, the field is simply cleared.
 *
 ******************************************************************************/

L
Len Brown 已提交
204
void acpi_ns_detach_object(struct acpi_namespace_node *node)
L
Linus Torvalds 已提交
205
{
L
Len Brown 已提交
206
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
207

B
Bob Moore 已提交
208
	ACPI_FUNCTION_TRACE(ns_detach_object);
L
Linus Torvalds 已提交
209 210 211

	obj_desc = node->object;

212
	if (!obj_desc || (obj_desc->common.type == ACPI_TYPE_LOCAL_DATA)) {
L
Linus Torvalds 已提交
213 214 215
		return_VOID;
	}

216 217 218 219 220 221 222 223 224
	if (node->flags & ANOBJ_ALLOCATED_BUFFER) {

		/* Free the dynamic aml buffer */

		if (obj_desc->common.type == ACPI_TYPE_METHOD) {
			ACPI_FREE(obj_desc->method.aml_start);
		}
	}

L
Linus Torvalds 已提交
225 226 227
	/* Clear the entry in all cases */

	node->object = NULL;
L
Len Brown 已提交
228
	if (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) == ACPI_DESC_TYPE_OPERAND) {
L
Linus Torvalds 已提交
229 230
		node->object = obj_desc->common.next_object;
		if (node->object &&
231
		    ((node->object)->common.type != ACPI_TYPE_LOCAL_DATA)) {
L
Linus Torvalds 已提交
232 233 234 235 236 237 238 239
			node->object = node->object->common.next_object;
		}
	}

	/* Reset the node type to untyped */

	node->type = ACPI_TYPE_ANY;

L
Len Brown 已提交
240 241
	ACPI_DEBUG_PRINT((ACPI_DB_NAMES, "Node %p [%4.4s] Object %p\n",
			  node, acpi_ut_get_node_name(node), obj_desc));
L
Linus Torvalds 已提交
242 243 244

	/* Remove one reference on the object (and all subobjects) */

L
Len Brown 已提交
245
	acpi_ut_remove_reference(obj_desc);
L
Linus Torvalds 已提交
246 247 248 249 250 251 252
	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_get_attached_object
 *
R
Robert Moore 已提交
253
 * PARAMETERS:  Node             - Namespace node
L
Linus Torvalds 已提交
254 255 256 257 258 259 260 261
 *
 * RETURN:      Current value of the object field from the Node whose
 *              handle is passed
 *
 * DESCRIPTION: Obtain the object attached to a namespace node.
 *
 ******************************************************************************/

L
Len Brown 已提交
262 263 264
union acpi_operand_object *acpi_ns_get_attached_object(struct
						       acpi_namespace_node
						       *node)
L
Linus Torvalds 已提交
265
{
B
Bob Moore 已提交
266
	ACPI_FUNCTION_TRACE_PTR(ns_get_attached_object, node);
L
Linus Torvalds 已提交
267 268

	if (!node) {
B
Bob Moore 已提交
269
		ACPI_WARNING((AE_INFO, "Null Node ptr"));
L
Len Brown 已提交
270
		return_PTR(NULL);
L
Linus Torvalds 已提交
271 272 273
	}

	if (!node->object ||
L
Len Brown 已提交
274 275 276
	    ((ACPI_GET_DESCRIPTOR_TYPE(node->object) != ACPI_DESC_TYPE_OPERAND)
	     && (ACPI_GET_DESCRIPTOR_TYPE(node->object) !=
		 ACPI_DESC_TYPE_NAMED))
277
	    || ((node->object)->common.type == ACPI_TYPE_LOCAL_DATA)) {
L
Len Brown 已提交
278
		return_PTR(NULL);
L
Linus Torvalds 已提交
279 280
	}

L
Len Brown 已提交
281
	return_PTR(node->object);
L
Linus Torvalds 已提交
282 283 284 285 286 287
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_get_secondary_object
 *
R
Robert Moore 已提交
288
 * PARAMETERS:  Node             - Namespace node
L
Linus Torvalds 已提交
289 290 291 292 293 294 295 296
 *
 * RETURN:      Current value of the object field from the Node whose
 *              handle is passed.
 *
 * DESCRIPTION: Obtain a secondary object associated with a namespace node.
 *
 ******************************************************************************/

L
Len Brown 已提交
297 298 299
union acpi_operand_object *acpi_ns_get_secondary_object(union
							acpi_operand_object
							*obj_desc)
L
Linus Torvalds 已提交
300
{
B
Bob Moore 已提交
301
	ACPI_FUNCTION_TRACE_PTR(ns_get_secondary_object, obj_desc);
L
Len Brown 已提交
302 303

	if ((!obj_desc) ||
304
	    (obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) ||
L
Len Brown 已提交
305
	    (!obj_desc->common.next_object) ||
306
	    ((obj_desc->common.next_object)->common.type ==
L
Len Brown 已提交
307 308
	     ACPI_TYPE_LOCAL_DATA)) {
		return_PTR(NULL);
L
Linus Torvalds 已提交
309 310
	}

L
Len Brown 已提交
311
	return_PTR(obj_desc->common.next_object);
L
Linus Torvalds 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_attach_data
 *
 * PARAMETERS:  Node            - Namespace node
 *              Handler         - Handler to be associated with the data
 *              Data            - Data to be attached
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Low-level attach data.  Create and attach a Data object.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
329 330
acpi_ns_attach_data(struct acpi_namespace_node *node,
		    acpi_object_handler handler, void *data)
L
Linus Torvalds 已提交
331
{
L
Len Brown 已提交
332 333 334
	union acpi_operand_object *prev_obj_desc;
	union acpi_operand_object *obj_desc;
	union acpi_operand_object *data_desc;
L
Linus Torvalds 已提交
335 336 337 338 339 340

	/* We only allow one attachment per handler */

	prev_obj_desc = NULL;
	obj_desc = node->object;
	while (obj_desc) {
341
		if ((obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) &&
L
Len Brown 已提交
342
		    (obj_desc->data.handler == handler)) {
L
Linus Torvalds 已提交
343 344 345 346 347 348 349 350 351
			return (AE_ALREADY_EXISTS);
		}

		prev_obj_desc = obj_desc;
		obj_desc = obj_desc->common.next_object;
	}

	/* Create an internal object for the data */

L
Len Brown 已提交
352
	data_desc = acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_DATA);
L
Linus Torvalds 已提交
353 354 355 356 357 358 359 360 361 362 363
	if (!data_desc) {
		return (AE_NO_MEMORY);
	}

	data_desc->data.handler = handler;
	data_desc->data.pointer = data;

	/* Install the data object */

	if (prev_obj_desc) {
		prev_obj_desc->common.next_object = data_desc;
L
Len Brown 已提交
364
	} else {
L
Linus Torvalds 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
		node->object = data_desc;
	}

	return (AE_OK);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_detach_data
 *
 * PARAMETERS:  Node            - Namespace node
 *              Handler         - Handler associated with the data
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Low-level detach data.  Delete the data node, but the caller
 *              is responsible for the actual data.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
386 387
acpi_ns_detach_data(struct acpi_namespace_node * node,
		    acpi_object_handler handler)
L
Linus Torvalds 已提交
388
{
L
Len Brown 已提交
389 390
	union acpi_operand_object *obj_desc;
	union acpi_operand_object *prev_obj_desc;
L
Linus Torvalds 已提交
391 392 393 394

	prev_obj_desc = NULL;
	obj_desc = node->object;
	while (obj_desc) {
395
		if ((obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) &&
L
Len Brown 已提交
396
		    (obj_desc->data.handler == handler)) {
L
Linus Torvalds 已提交
397
			if (prev_obj_desc) {
L
Len Brown 已提交
398 399 400
				prev_obj_desc->common.next_object =
				    obj_desc->common.next_object;
			} else {
L
Linus Torvalds 已提交
401 402 403
				node->object = obj_desc->common.next_object;
			}

L
Len Brown 已提交
404
			acpi_ut_remove_reference(obj_desc);
L
Linus Torvalds 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
			return (AE_OK);
		}

		prev_obj_desc = obj_desc;
		obj_desc = obj_desc->common.next_object;
	}

	return (AE_NOT_FOUND);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ns_get_attached_data
 *
 * PARAMETERS:  Node            - Namespace node
 *              Handler         - Handler associated with the data
 *              Data            - Where the data is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Low level interface to obtain data previously associated with
 *              a namespace node.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
431 432
acpi_ns_get_attached_data(struct acpi_namespace_node * node,
			  acpi_object_handler handler, void **data)
L
Linus Torvalds 已提交
433
{
L
Len Brown 已提交
434
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
435 436 437

	obj_desc = node->object;
	while (obj_desc) {
438
		if ((obj_desc->common.type == ACPI_TYPE_LOCAL_DATA) &&
L
Len Brown 已提交
439
		    (obj_desc->data.handler == handler)) {
L
Linus Torvalds 已提交
440 441 442 443 444 445 446 447 448
			*data = obj_desc->data.pointer;
			return (AE_OK);
		}

		obj_desc = obj_desc->common.next_object;
	}

	return (AE_NOT_FOUND);
}