excreate.c 17.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Module Name: excreate - Named object creation
 *
 *****************************************************************************/

/*
B
Bob Moore 已提交
8
 * Copyright (C) 2000 - 2007, R. Byron Moore
L
Linus Torvalds 已提交
9 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 <acpi/acpi.h>
#include <acpi/acinterp.h>
#include <acpi/amlcode.h>
#include <acpi/acnamesp.h>
#include <acpi/acevents.h>
#include <acpi/actables.h>

#define _COMPONENT          ACPI_EXECUTER
L
Len Brown 已提交
52
ACPI_MODULE_NAME("excreate")
L
Linus Torvalds 已提交
53
#ifndef ACPI_NO_METHOD_EXECUTION
R
Robert Moore 已提交
54
/*******************************************************************************
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63
 *
 * FUNCTION:    acpi_ex_create_alias
 *
 * PARAMETERS:  walk_state           - Current state, contains operands
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new named alias
 *
R
Robert Moore 已提交
64
 ******************************************************************************/
L
Len Brown 已提交
65
acpi_status acpi_ex_create_alias(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
66
{
L
Len Brown 已提交
67 68 69
	struct acpi_namespace_node *target_node;
	struct acpi_namespace_node *alias_node;
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
70

B
Bob Moore 已提交
71
	ACPI_FUNCTION_TRACE(ex_create_alias);
L
Linus Torvalds 已提交
72 73 74

	/* Get the source/alias operands (both namespace nodes) */

L
Len Brown 已提交
75 76
	alias_node = (struct acpi_namespace_node *)walk_state->operands[0];
	target_node = (struct acpi_namespace_node *)walk_state->operands[1];
L
Linus Torvalds 已提交
77 78

	if ((target_node->type == ACPI_TYPE_LOCAL_ALIAS) ||
L
Len Brown 已提交
79
	    (target_node->type == ACPI_TYPE_LOCAL_METHOD_ALIAS)) {
L
Linus Torvalds 已提交
80 81 82 83 84 85
		/*
		 * Dereference an existing alias so that we don't create a chain
		 * of aliases.  With this code, we guarantee that an alias is
		 * always exactly one level of indirection away from the
		 * actual aliased name.
		 */
L
Len Brown 已提交
86 87 88
		target_node =
		    ACPI_CAST_PTR(struct acpi_namespace_node,
				  target_node->object);
L
Linus Torvalds 已提交
89 90 91 92 93 94 95 96 97 98
	}

	/*
	 * For objects that can never change (i.e., the NS node will
	 * permanently point to the same object), we can simply attach
	 * the object to the new NS node.  For other objects (such as
	 * Integers, buffers, etc.), we have to point the Alias node
	 * to the original Node.
	 */
	switch (target_node->type) {
99 100 101

		/* For these types, the sub-object can change dynamically via a Store */

L
Linus Torvalds 已提交
102 103 104 105 106 107
	case ACPI_TYPE_INTEGER:
	case ACPI_TYPE_STRING:
	case ACPI_TYPE_BUFFER:
	case ACPI_TYPE_PACKAGE:
	case ACPI_TYPE_BUFFER_FIELD:

108 109 110 111 112 113 114 115 116 117
		/*
		 * These types open a new scope, so we need the NS node in order to access
		 * any children.
		 */
	case ACPI_TYPE_DEVICE:
	case ACPI_TYPE_POWER:
	case ACPI_TYPE_PROCESSOR:
	case ACPI_TYPE_THERMAL:
	case ACPI_TYPE_LOCAL_SCOPE:

L
Linus Torvalds 已提交
118 119
		/*
		 * The new alias has the type ALIAS and points to the original
120
		 * NS node, not the object itself.
L
Linus Torvalds 已提交
121 122
		 */
		alias_node->type = ACPI_TYPE_LOCAL_ALIAS;
L
Len Brown 已提交
123 124
		alias_node->object =
		    ACPI_CAST_PTR(union acpi_operand_object, target_node);
L
Linus Torvalds 已提交
125 126 127 128 129
		break;

	case ACPI_TYPE_METHOD:

		/*
130
		 * Control method aliases need to be differentiated
L
Linus Torvalds 已提交
131 132
		 */
		alias_node->type = ACPI_TYPE_LOCAL_METHOD_ALIAS;
L
Len Brown 已提交
133 134
		alias_node->object =
		    ACPI_CAST_PTR(union acpi_operand_object, target_node);
L
Linus Torvalds 已提交
135 136 137 138 139 140 141 142 143 144 145 146
		break;

	default:

		/* Attach the original source object to the new Alias Node */

		/*
		 * The new alias assumes the type of the target, and it points
		 * to the same object.  The reference count of the object has an
		 * additional reference to prevent deletion out from under either the
		 * target node or the alias Node
		 */
L
Len Brown 已提交
147 148 149 150
		status = acpi_ns_attach_object(alias_node,
					       acpi_ns_get_attached_object
					       (target_node),
					       target_node->type);
L
Linus Torvalds 已提交
151 152 153 154 155
		break;
	}

	/* Since both operands are Nodes, we don't need to delete them */

L
Len Brown 已提交
156
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
157 158
}

R
Robert Moore 已提交
159
/*******************************************************************************
L
Linus Torvalds 已提交
160 161 162 163 164 165 166 167 168
 *
 * FUNCTION:    acpi_ex_create_event
 *
 * PARAMETERS:  walk_state          - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new event object
 *
R
Robert Moore 已提交
169
 ******************************************************************************/
L
Linus Torvalds 已提交
170

L
Len Brown 已提交
171
acpi_status acpi_ex_create_event(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
172
{
L
Len Brown 已提交
173 174
	acpi_status status;
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
175

B
Bob Moore 已提交
176
	ACPI_FUNCTION_TRACE(ex_create_event);
L
Linus Torvalds 已提交
177

L
Len Brown 已提交
178
	obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_EVENT);
L
Linus Torvalds 已提交
179 180 181 182 183 184 185 186 187
	if (!obj_desc) {
		status = AE_NO_MEMORY;
		goto cleanup;
	}

	/*
	 * Create the actual OS semaphore, with zero initial units -- meaning
	 * that the event is created in an unsignalled state
	 */
L
Len Brown 已提交
188
	status = acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0,
B
Bob Moore 已提交
189
					  &obj_desc->event.os_semaphore);
L
Len Brown 已提交
190
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
191 192 193 194 195
		goto cleanup;
	}

	/* Attach object to the Node */

L
Len Brown 已提交
196 197 198
	status =
	    acpi_ns_attach_object((struct acpi_namespace_node *)walk_state->
				  operands[0], obj_desc, ACPI_TYPE_EVENT);
L
Linus Torvalds 已提交
199

L
Len Brown 已提交
200
      cleanup:
L
Linus Torvalds 已提交
201 202 203 204
	/*
	 * Remove local reference to the object (on error, will cause deletion
	 * of both object and semaphore if present.)
	 */
L
Len Brown 已提交
205 206
	acpi_ut_remove_reference(obj_desc);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
207 208
}

R
Robert Moore 已提交
209
/*******************************************************************************
L
Linus Torvalds 已提交
210 211 212 213 214 215 216 217 218 219 220
 *
 * FUNCTION:    acpi_ex_create_mutex
 *
 * PARAMETERS:  walk_state          - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new mutex object
 *
 *              Mutex (Name[0], sync_level[1])
 *
R
Robert Moore 已提交
221
 ******************************************************************************/
L
Linus Torvalds 已提交
222

L
Len Brown 已提交
223
acpi_status acpi_ex_create_mutex(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
224
{
L
Len Brown 已提交
225 226
	acpi_status status = AE_OK;
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
227

B
Bob Moore 已提交
228
	ACPI_FUNCTION_TRACE_PTR(ex_create_mutex, ACPI_WALK_OPERANDS);
L
Linus Torvalds 已提交
229 230 231

	/* Create the new mutex object */

L
Len Brown 已提交
232
	obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_MUTEX);
L
Linus Torvalds 已提交
233 234 235 236 237
	if (!obj_desc) {
		status = AE_NO_MEMORY;
		goto cleanup;
	}

B
Bob Moore 已提交
238 239 240
	/* Create the actual OS Mutex */

	status = acpi_os_create_mutex(&obj_desc->mutex.os_mutex);
L
Len Brown 已提交
241
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
242 243 244 245 246
		goto cleanup;
	}

	/* Init object and attach to NS node */

L
Len Brown 已提交
247 248 249 250
	obj_desc->mutex.sync_level =
	    (u8) walk_state->operands[1]->integer.value;
	obj_desc->mutex.node =
	    (struct acpi_namespace_node *)walk_state->operands[0];
L
Linus Torvalds 已提交
251

B
Bob Moore 已提交
252 253 254
	status =
	    acpi_ns_attach_object(obj_desc->mutex.node, obj_desc,
				  ACPI_TYPE_MUTEX);
L
Linus Torvalds 已提交
255

L
Len Brown 已提交
256
      cleanup:
L
Linus Torvalds 已提交
257 258 259 260
	/*
	 * Remove local reference to the object (on error, will cause deletion
	 * of both object and semaphore if present.)
	 */
L
Len Brown 已提交
261 262
	acpi_ut_remove_reference(obj_desc);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
263 264
}

R
Robert Moore 已提交
265
/*******************************************************************************
L
Linus Torvalds 已提交
266 267 268 269 270
 *
 * FUNCTION:    acpi_ex_create_region
 *
 * PARAMETERS:  aml_start           - Pointer to the region declaration AML
 *              aml_length          - Max length of the declaration AML
R
Robert Moore 已提交
271
 *              region_space        - space_iD for the region
L
Linus Torvalds 已提交
272 273 274 275 276 277
 *              walk_state          - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new operation region object
 *
R
Robert Moore 已提交
278
 ******************************************************************************/
L
Linus Torvalds 已提交
279 280

acpi_status
L
Len Brown 已提交
281 282 283
acpi_ex_create_region(u8 * aml_start,
		      u32 aml_length,
		      u8 region_space, struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
284
{
L
Len Brown 已提交
285 286 287 288
	acpi_status status;
	union acpi_operand_object *obj_desc;
	struct acpi_namespace_node *node;
	union acpi_operand_object *region_obj2;
L
Linus Torvalds 已提交
289

B
Bob Moore 已提交
290
	ACPI_FUNCTION_TRACE(ex_create_region);
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299

	/* Get the Namespace Node */

	node = walk_state->op->common.node;

	/*
	 * If the region object is already attached to this node,
	 * just return
	 */
L
Len Brown 已提交
300 301
	if (acpi_ns_get_attached_object(node)) {
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
302 303 304 305 306 307 308
	}

	/*
	 * Space ID must be one of the predefined IDs, or in the user-defined
	 * range
	 */
	if ((region_space >= ACPI_NUM_PREDEFINED_REGIONS) &&
L
Len Brown 已提交
309
	    (region_space < ACPI_USER_REGION_BEGIN)) {
B
Bob Moore 已提交
310
		ACPI_ERROR((AE_INFO, "Invalid AddressSpace type %X",
B
Bob Moore 已提交
311
			    region_space));
L
Len Brown 已提交
312
		return_ACPI_STATUS(AE_AML_INVALID_SPACE_ID);
L
Linus Torvalds 已提交
313 314
	}

L
Len Brown 已提交
315 316
	ACPI_DEBUG_PRINT((ACPI_DB_LOAD, "Region Type - %s (%X)\n",
			  acpi_ut_get_region_name(region_space), region_space));
L
Linus Torvalds 已提交
317 318 319

	/* Create the region descriptor */

L
Len Brown 已提交
320
	obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_REGION);
L
Linus Torvalds 已提交
321 322 323 324 325 326 327 328 329
	if (!obj_desc) {
		status = AE_NO_MEMORY;
		goto cleanup;
	}

	/*
	 * Remember location in AML stream of address & length
	 * operands since they need to be evaluated at run time.
	 */
L
Len Brown 已提交
330
	region_obj2 = obj_desc->common.next_object;
L
Linus Torvalds 已提交
331 332 333 334 335 336 337 338
	region_obj2->extra.aml_start = aml_start;
	region_obj2->extra.aml_length = aml_length;

	/* Init the region from the operands */

	obj_desc->region.space_id = region_space;
	obj_desc->region.address = 0;
	obj_desc->region.length = 0;
L
Len Brown 已提交
339
	obj_desc->region.node = node;
L
Linus Torvalds 已提交
340 341 342

	/* Install the new region object in the parent Node */

L
Len Brown 已提交
343
	status = acpi_ns_attach_object(node, obj_desc, ACPI_TYPE_REGION);
L
Linus Torvalds 已提交
344

L
Len Brown 已提交
345
      cleanup:
L
Linus Torvalds 已提交
346 347 348

	/* Remove local reference to the object */

L
Len Brown 已提交
349 350
	acpi_ut_remove_reference(obj_desc);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
351 352
}

R
Robert Moore 已提交
353
/*******************************************************************************
L
Linus Torvalds 已提交
354 355 356 357 358 359 360 361 362
 *
 * FUNCTION:    acpi_ex_create_table_region
 *
 * PARAMETERS:  walk_state          - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new data_table_region object
 *
R
Robert Moore 已提交
363
 ******************************************************************************/
L
Linus Torvalds 已提交
364

L
Len Brown 已提交
365
acpi_status acpi_ex_create_table_region(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
366
{
L
Len Brown 已提交
367 368 369 370 371
	acpi_status status;
	union acpi_operand_object **operand = &walk_state->operands[0];
	union acpi_operand_object *obj_desc;
	struct acpi_namespace_node *node;
	union acpi_operand_object *region_obj2;
372 373
	acpi_native_uint table_index;
	struct acpi_table_header *table;
L
Linus Torvalds 已提交
374

B
Bob Moore 已提交
375
	ACPI_FUNCTION_TRACE(ex_create_table_region);
L
Linus Torvalds 已提交
376 377 378 379 380 381 382 383 384

	/* Get the Node from the object stack  */

	node = walk_state->op->common.node;

	/*
	 * If the region object is already attached to this node,
	 * just return
	 */
L
Len Brown 已提交
385 386
	if (acpi_ns_get_attached_object(node)) {
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
387 388 389 390
	}

	/* Find the ACPI table */

L
Len Brown 已提交
391 392
	status = acpi_tb_find_table(operand[1]->string.pointer,
				    operand[2]->string.pointer,
393
				    operand[3]->string.pointer, &table_index);
L
Len Brown 已提交
394 395
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
396 397 398 399
	}

	/* Create the region descriptor */

L
Len Brown 已提交
400
	obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_REGION);
L
Linus Torvalds 已提交
401
	if (!obj_desc) {
L
Len Brown 已提交
402
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
403 404
	}

L
Len Brown 已提交
405
	region_obj2 = obj_desc->common.next_object;
L
Linus Torvalds 已提交
406 407
	region_obj2->extra.region_context = NULL;

408 409 410 411 412
	status = acpi_get_table_by_index(table_index, &table);
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
	}

L
Linus Torvalds 已提交
413 414 415
	/* Init the region from the operands */

	obj_desc->region.space_id = REGION_DATA_TABLE;
L
Len Brown 已提交
416 417
	obj_desc->region.address =
	    (acpi_physical_address) ACPI_TO_INTEGER(table);
L
Linus Torvalds 已提交
418
	obj_desc->region.length = table->length;
L
Len Brown 已提交
419 420
	obj_desc->region.node = node;
	obj_desc->region.flags = AOPOBJ_DATA_VALID;
L
Linus Torvalds 已提交
421 422 423

	/* Install the new region object in the parent Node */

L
Len Brown 已提交
424 425
	status = acpi_ns_attach_object(node, obj_desc, ACPI_TYPE_REGION);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
426 427 428
		goto cleanup;
	}

L
Len Brown 已提交
429 430
	status = acpi_ev_initialize_region(obj_desc, FALSE);
	if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
431 432
		if (status == AE_NOT_EXIST) {
			status = AE_OK;
L
Len Brown 已提交
433
		} else {
L
Linus Torvalds 已提交
434 435 436 437 438 439
			goto cleanup;
		}
	}

	obj_desc->region.flags |= AOPOBJ_SETUP_COMPLETE;

L
Len Brown 已提交
440
      cleanup:
L
Linus Torvalds 已提交
441 442 443

	/* Remove local reference to the object */

L
Len Brown 已提交
444 445
	acpi_ut_remove_reference(obj_desc);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
446 447
}

R
Robert Moore 已提交
448
/*******************************************************************************
L
Linus Torvalds 已提交
449 450 451 452 453 454 455 456 457 458 459
 *
 * FUNCTION:    acpi_ex_create_processor
 *
 * PARAMETERS:  walk_state          - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new processor object and populate the fields
 *
 *              Processor (Name[0], cpu_iD[1], pblock_addr[2], pblock_length[3])
 *
R
Robert Moore 已提交
460
 ******************************************************************************/
L
Linus Torvalds 已提交
461

L
Len Brown 已提交
462
acpi_status acpi_ex_create_processor(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
463
{
L
Len Brown 已提交
464 465 466
	union acpi_operand_object **operand = &walk_state->operands[0];
	union acpi_operand_object *obj_desc;
	acpi_status status;
L
Linus Torvalds 已提交
467

B
Bob Moore 已提交
468
	ACPI_FUNCTION_TRACE_PTR(ex_create_processor, walk_state);
L
Linus Torvalds 已提交
469 470 471

	/* Create the processor object */

L
Len Brown 已提交
472
	obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_PROCESSOR);
L
Linus Torvalds 已提交
473
	if (!obj_desc) {
L
Len Brown 已提交
474
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
475 476
	}

R
Robert Moore 已提交
477 478
	/* Initialize the processor object from the operands */

L
Len Brown 已提交
479
	obj_desc->processor.proc_id = (u8) operand[1]->integer.value;
B
Bob Moore 已提交
480
	obj_desc->processor.length = (u8) operand[3]->integer.value;
L
Len Brown 已提交
481 482
	obj_desc->processor.address =
	    (acpi_io_address) operand[2]->integer.value;
L
Linus Torvalds 已提交
483 484 485

	/* Install the processor object in the parent Node */

L
Len Brown 已提交
486 487
	status = acpi_ns_attach_object((struct acpi_namespace_node *)operand[0],
				       obj_desc, ACPI_TYPE_PROCESSOR);
L
Linus Torvalds 已提交
488 489 490

	/* Remove local reference to the object */

L
Len Brown 已提交
491 492
	acpi_ut_remove_reference(obj_desc);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
493 494
}

R
Robert Moore 已提交
495
/*******************************************************************************
L
Linus Torvalds 已提交
496 497 498 499 500 501 502 503 504 505 506
 *
 * FUNCTION:    acpi_ex_create_power_resource
 *
 * PARAMETERS:  walk_state          - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new power_resource object and populate the fields
 *
 *              power_resource (Name[0], system_level[1], resource_order[2])
 *
R
Robert Moore 已提交
507
 ******************************************************************************/
L
Linus Torvalds 已提交
508

L
Len Brown 已提交
509
acpi_status acpi_ex_create_power_resource(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
510
{
L
Len Brown 已提交
511 512 513
	union acpi_operand_object **operand = &walk_state->operands[0];
	acpi_status status;
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
514

B
Bob Moore 已提交
515
	ACPI_FUNCTION_TRACE_PTR(ex_create_power_resource, walk_state);
L
Linus Torvalds 已提交
516 517 518

	/* Create the power resource object */

L
Len Brown 已提交
519
	obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_POWER);
L
Linus Torvalds 已提交
520
	if (!obj_desc) {
L
Len Brown 已提交
521
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
522 523 524 525 526
	}

	/* Initialize the power object from the operands */

	obj_desc->power_resource.system_level = (u8) operand[1]->integer.value;
L
Len Brown 已提交
527 528
	obj_desc->power_resource.resource_order =
	    (u16) operand[2]->integer.value;
L
Linus Torvalds 已提交
529 530 531

	/* Install the  power resource object in the parent Node */

L
Len Brown 已提交
532 533
	status = acpi_ns_attach_object((struct acpi_namespace_node *)operand[0],
				       obj_desc, ACPI_TYPE_POWER);
L
Linus Torvalds 已提交
534 535 536

	/* Remove local reference to the object */

L
Len Brown 已提交
537 538
	acpi_ut_remove_reference(obj_desc);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
539 540 541
}
#endif

R
Robert Moore 已提交
542
/*******************************************************************************
L
Linus Torvalds 已提交
543 544 545 546 547 548 549 550 551 552 553
 *
 * FUNCTION:    acpi_ex_create_method
 *
 * PARAMETERS:  aml_start       - First byte of the method's AML
 *              aml_length      - AML byte count for this method
 *              walk_state      - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Create a new method object
 *
R
Robert Moore 已提交
554
 ******************************************************************************/
L
Linus Torvalds 已提交
555 556

acpi_status
L
Len Brown 已提交
557 558
acpi_ex_create_method(u8 * aml_start,
		      u32 aml_length, struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
559
{
L
Len Brown 已提交
560 561 562 563
	union acpi_operand_object **operand = &walk_state->operands[0];
	union acpi_operand_object *obj_desc;
	acpi_status status;
	u8 method_flags;
L
Linus Torvalds 已提交
564

B
Bob Moore 已提交
565
	ACPI_FUNCTION_TRACE_PTR(ex_create_method, walk_state);
L
Linus Torvalds 已提交
566 567 568

	/* Create a new method object */

L
Len Brown 已提交
569
	obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_METHOD);
L
Linus Torvalds 已提交
570
	if (!obj_desc) {
571 572
		status = AE_NO_MEMORY;
		goto exit;
L
Linus Torvalds 已提交
573 574 575 576 577 578 579 580
	}

	/* Save the method's AML pointer and length  */

	obj_desc->method.aml_start = aml_start;
	obj_desc->method.aml_length = aml_length;

	/*
B
Bob Moore 已提交
581
	 * Disassemble the method flags. Split off the Arg Count
L
Linus Torvalds 已提交
582 583 584 585
	 * for efficiency
	 */
	method_flags = (u8) operand[1]->integer.value;

L
Len Brown 已提交
586 587 588 589
	obj_desc->method.method_flags =
	    (u8) (method_flags & ~AML_METHOD_ARG_COUNT);
	obj_desc->method.param_count =
	    (u8) (method_flags & AML_METHOD_ARG_COUNT);
L
Linus Torvalds 已提交
590 591

	/*
B
Bob Moore 已提交
592
	 * Get the sync_level. If method is serialized, a mutex will be
L
Linus Torvalds 已提交
593 594
	 * created for this method when it is parsed.
	 */
595
	if (method_flags & AML_METHOD_SERIALIZED) {
L
Linus Torvalds 已提交
596
		/*
B
Bob Moore 已提交
597 598
		 * ACPI 1.0: sync_level = 0
		 * ACPI 2.0: sync_level = sync_level in method declaration
L
Linus Torvalds 已提交
599
		 */
B
Bob Moore 已提交
600 601
		obj_desc->method.sync_level = (u8)
		    ((method_flags & AML_METHOD_SYNCH_LEVEL) >> 4);
L
Linus Torvalds 已提交
602 603 604 605
	}

	/* Attach the new object to the method Node */

L
Len Brown 已提交
606 607
	status = acpi_ns_attach_object((struct acpi_namespace_node *)operand[0],
				       obj_desc, ACPI_TYPE_METHOD);
L
Linus Torvalds 已提交
608 609 610

	/* Remove local reference to the object */

L
Len Brown 已提交
611
	acpi_ut_remove_reference(obj_desc);
L
Linus Torvalds 已提交
612

613
      exit:
L
Linus Torvalds 已提交
614 615
	/* Remove a reference to the operand */

L
Len Brown 已提交
616 617
	acpi_ut_remove_reference(operand[1]);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
618
}