utobject.c 19.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Module Name: utobject - ACPI object create/delete/size/cache routines
 *
 *****************************************************************************/

/*
8
 * Copyright (C) 2000 - 2013, Intel Corp.
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
 * 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 已提交
45 46
#include "accommon.h"
#include "acnamesp.h"
L
Linus Torvalds 已提交
47 48

#define _COMPONENT          ACPI_UTILITIES
L
Len Brown 已提交
49
ACPI_MODULE_NAME("utobject")
L
Linus Torvalds 已提交
50

R
Robert Moore 已提交
51 52
/* Local prototypes */
static acpi_status
L
Len Brown 已提交
53 54
acpi_ut_get_simple_object_size(union acpi_operand_object *obj,
			       acpi_size * obj_length);
R
Robert Moore 已提交
55 56

static acpi_status
L
Len Brown 已提交
57 58
acpi_ut_get_package_object_size(union acpi_operand_object *obj,
				acpi_size * obj_length);
R
Robert Moore 已提交
59 60

static acpi_status
L
Len Brown 已提交
61 62 63
acpi_ut_get_element_length(u8 object_type,
			   union acpi_operand_object *source_object,
			   union acpi_generic_state *state, void *context);
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_create_internal_object_dbg
 *
 * PARAMETERS:  module_name         - Source file name of caller
 *              line_number         - Line number of caller
 *              component_id        - Component type of caller
72
 *              type                - ACPI Type of the new object
L
Linus Torvalds 已提交
73
 *
R
Robert Moore 已提交
74
 * RETURN:      A new internal object, null on failure
L
Linus Torvalds 已提交
75 76 77 78 79
 *
 * DESCRIPTION: Create and initialize a new internal object.
 *
 * NOTE:        We always allocate the worst-case object descriptor because
 *              these objects are cached, and we want them to be
80
 *              one-size-satisifies-any-request. This in itself may not be
L
Linus Torvalds 已提交
81 82 83 84 85
 *              the most memory efficient, but the efficiency of the object
 *              cache should more than make up for this!
 *
 ******************************************************************************/

86 87
union acpi_operand_object *acpi_ut_create_internal_object_dbg(const char
							      *module_name,
L
Len Brown 已提交
88 89 90 91
							      u32 line_number,
							      u32 component_id,
							      acpi_object_type
							      type)
L
Linus Torvalds 已提交
92
{
L
Len Brown 已提交
93 94
	union acpi_operand_object *object;
	union acpi_operand_object *second_object;
L
Linus Torvalds 已提交
95

B
Bob Moore 已提交
96
	ACPI_FUNCTION_TRACE_STR(ut_create_internal_object_dbg,
L
Len Brown 已提交
97
				acpi_ut_get_type_name(type));
L
Linus Torvalds 已提交
98 99 100

	/* Allocate the raw object descriptor */

L
Len Brown 已提交
101 102 103
	object =
	    acpi_ut_allocate_object_desc_dbg(module_name, line_number,
					     component_id);
L
Linus Torvalds 已提交
104
	if (!object) {
L
Len Brown 已提交
105
		return_PTR(NULL);
L
Linus Torvalds 已提交
106 107 108 109 110
	}

	switch (type) {
	case ACPI_TYPE_REGION:
	case ACPI_TYPE_BUFFER_FIELD:
111
	case ACPI_TYPE_LOCAL_BANK_FIELD:
L
Linus Torvalds 已提交
112 113 114

		/* These types require a secondary object */

L
Len Brown 已提交
115 116 117
		second_object = acpi_ut_allocate_object_desc_dbg(module_name,
								 line_number,
								 component_id);
L
Linus Torvalds 已提交
118
		if (!second_object) {
L
Len Brown 已提交
119 120
			acpi_ut_delete_object_desc(object);
			return_PTR(NULL);
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129 130 131
		}

		second_object->common.type = ACPI_TYPE_LOCAL_EXTRA;
		second_object->common.reference_count = 1;

		/* Link the second object to the first */

		object->common.next_object = second_object;
		break;

	default:
132

L
Linus Torvalds 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146
		/* All others have no secondary object */
		break;
	}

	/* Save the object type in the object descriptor */

	object->common.type = (u8) type;

	/* Init the reference count */

	object->common.reference_count = 1;

	/* Any per-type initialization should go here */

L
Len Brown 已提交
147
	return_PTR(object);
L
Linus Torvalds 已提交
148 149
}

150 151 152 153
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_create_package_object
 *
154
 * PARAMETERS:  count               - Number of package elements
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
 *
 * RETURN:      Pointer to a new Package object, null on failure
 *
 * DESCRIPTION: Create a fully initialized package object
 *
 ******************************************************************************/

union acpi_operand_object *acpi_ut_create_package_object(u32 count)
{
	union acpi_operand_object *package_desc;
	union acpi_operand_object **package_elements;

	ACPI_FUNCTION_TRACE_U32(ut_create_package_object, count);

	/* Create a new Package object */

	package_desc = acpi_ut_create_internal_object(ACPI_TYPE_PACKAGE);
	if (!package_desc) {
		return_PTR(NULL);
	}

	/*
	 * Create the element array. Count+1 allows the array to be null
	 * terminated.
	 */
180 181
	package_elements = ACPI_ALLOCATE_ZEROED(((acpi_size) count +
						 1) * sizeof(void *));
182
	if (!package_elements) {
183
		acpi_ut_remove_reference(package_desc);
184 185 186 187 188 189 190 191
		return_PTR(NULL);
	}

	package_desc->package.count = count;
	package_desc->package.elements = package_elements;
	return_PTR(package_desc);
}

192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_create_integer_object
 *
 * PARAMETERS:  initial_value       - Initial value for the integer
 *
 * RETURN:      Pointer to a new Integer object, null on failure
 *
 * DESCRIPTION: Create an initialized integer object
 *
 ******************************************************************************/

union acpi_operand_object *acpi_ut_create_integer_object(u64 initial_value)
{
	union acpi_operand_object *integer_desc;

	ACPI_FUNCTION_TRACE(ut_create_integer_object);

	/* Create and initialize a new integer object */

	integer_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
	if (!integer_desc) {
		return_PTR(NULL);
	}

	integer_desc->integer.value = initial_value;
	return_PTR(integer_desc);
}

L
Linus Torvalds 已提交
221 222 223 224 225 226
/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_create_buffer_object
 *
 * PARAMETERS:  buffer_size            - Size of buffer to be created
 *
R
Robert Moore 已提交
227
 * RETURN:      Pointer to a new Buffer object, null on failure
L
Linus Torvalds 已提交
228 229 230 231 232
 *
 * DESCRIPTION: Create a fully initialized buffer object
 *
 ******************************************************************************/

L
Len Brown 已提交
233
union acpi_operand_object *acpi_ut_create_buffer_object(acpi_size buffer_size)
L
Linus Torvalds 已提交
234
{
L
Len Brown 已提交
235 236
	union acpi_operand_object *buffer_desc;
	u8 *buffer = NULL;
L
Linus Torvalds 已提交
237

B
Bob Moore 已提交
238
	ACPI_FUNCTION_TRACE_U32(ut_create_buffer_object, buffer_size);
L
Linus Torvalds 已提交
239 240 241

	/* Create a new Buffer object */

L
Len Brown 已提交
242
	buffer_desc = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER);
L
Linus Torvalds 已提交
243
	if (!buffer_desc) {
L
Len Brown 已提交
244
		return_PTR(NULL);
L
Linus Torvalds 已提交
245 246 247 248 249
	}

	/* Create an actual buffer only if size > 0 */

	if (buffer_size > 0) {
B
Bob Moore 已提交
250

L
Linus Torvalds 已提交
251 252
		/* Allocate the actual buffer */

B
Bob Moore 已提交
253
		buffer = ACPI_ALLOCATE_ZEROED(buffer_size);
L
Linus Torvalds 已提交
254
		if (!buffer) {
255
			ACPI_ERROR((AE_INFO, "Could not allocate size %u",
B
Bob Moore 已提交
256
				    (u32) buffer_size));
L
Len Brown 已提交
257 258
			acpi_ut_remove_reference(buffer_desc);
			return_PTR(NULL);
L
Linus Torvalds 已提交
259 260 261 262 263 264 265 266 267 268 269
		}
	}

	/* Complete buffer object initialization */

	buffer_desc->buffer.flags |= AOPOBJ_DATA_VALID;
	buffer_desc->buffer.pointer = buffer;
	buffer_desc->buffer.length = (u32) buffer_size;

	/* Return the new buffer descriptor */

L
Len Brown 已提交
270
	return_PTR(buffer_desc);
L
Linus Torvalds 已提交
271 272 273 274 275 276
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_create_string_object
 *
R
Robert Moore 已提交
277 278 279
 * PARAMETERS:  string_size         - Size of string to be created. Does not
 *                                    include NULL terminator, this is added
 *                                    automatically.
L
Linus Torvalds 已提交
280 281 282 283 284 285 286
 *
 * RETURN:      Pointer to a new String object
 *
 * DESCRIPTION: Create a fully initialized string object
 *
 ******************************************************************************/

L
Len Brown 已提交
287
union acpi_operand_object *acpi_ut_create_string_object(acpi_size string_size)
L
Linus Torvalds 已提交
288
{
L
Len Brown 已提交
289 290
	union acpi_operand_object *string_desc;
	char *string;
L
Linus Torvalds 已提交
291

B
Bob Moore 已提交
292
	ACPI_FUNCTION_TRACE_U32(ut_create_string_object, string_size);
L
Linus Torvalds 已提交
293 294 295

	/* Create a new String object */

L
Len Brown 已提交
296
	string_desc = acpi_ut_create_internal_object(ACPI_TYPE_STRING);
L
Linus Torvalds 已提交
297
	if (!string_desc) {
L
Len Brown 已提交
298
		return_PTR(NULL);
L
Linus Torvalds 已提交
299 300 301 302 303 304
	}

	/*
	 * Allocate the actual string buffer -- (Size + 1) for NULL terminator.
	 * NOTE: Zero-length strings are NULL terminated
	 */
B
Bob Moore 已提交
305
	string = ACPI_ALLOCATE_ZEROED(string_size + 1);
L
Linus Torvalds 已提交
306
	if (!string) {
307
		ACPI_ERROR((AE_INFO, "Could not allocate size %u",
B
Bob Moore 已提交
308
			    (u32) string_size));
L
Len Brown 已提交
309 310
		acpi_ut_remove_reference(string_desc);
		return_PTR(NULL);
L
Linus Torvalds 已提交
311 312 313 314 315 316 317 318 319
	}

	/* Complete string object initialization */

	string_desc->string.pointer = string;
	string_desc->string.length = (u32) string_size;

	/* Return the new string descriptor */

L
Len Brown 已提交
320
	return_PTR(string_desc);
L
Linus Torvalds 已提交
321 322 323 324 325 326
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_valid_internal_object
 *
327
 * PARAMETERS:  object              - Object to be validated
L
Linus Torvalds 已提交
328
 *
R
Robert Moore 已提交
329 330
 * RETURN:      TRUE if object is valid, FALSE otherwise
 *
B
Bob Moore 已提交
331
 * DESCRIPTION: Validate a pointer to be of type union acpi_operand_object
L
Linus Torvalds 已提交
332 333 334
 *
 ******************************************************************************/

L
Len Brown 已提交
335
u8 acpi_ut_valid_internal_object(void *object)
L
Linus Torvalds 已提交
336 337
{

B
Bob Moore 已提交
338
	ACPI_FUNCTION_NAME(ut_valid_internal_object);
L
Linus Torvalds 已提交
339 340 341 342

	/* Check for a null pointer */

	if (!object) {
343
		ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "**** Null Object Ptr\n"));
L
Linus Torvalds 已提交
344 345 346 347 348
		return (FALSE);
	}

	/* Check the descriptor type field */

L
Len Brown 已提交
349
	switch (ACPI_GET_DESCRIPTOR_TYPE(object)) {
L
Linus Torvalds 已提交
350 351
	case ACPI_DESC_TYPE_OPERAND:

B
Bob Moore 已提交
352
		/* The object appears to be a valid union acpi_operand_object */
L
Linus Torvalds 已提交
353 354 355 356

		return (TRUE);

	default:
357

358
		ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
L
Len Brown 已提交
359 360
				  "%p is not not an ACPI operand obj [%s]\n",
				  object, acpi_ut_get_descriptor_name(object)));
L
Linus Torvalds 已提交
361 362 363 364 365 366 367 368 369 370 371 372 373 374
		break;
	}

	return (FALSE);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_allocate_object_desc_dbg
 *
 * PARAMETERS:  module_name         - Caller's module name (for error output)
 *              line_number         - Caller's line number (for error output)
 *              component_id        - Caller's component ID (for error output)
 *
375
 * RETURN:      Pointer to newly allocated object descriptor. Null on error
L
Linus Torvalds 已提交
376
 *
377
 * DESCRIPTION: Allocate a new object descriptor. Gracefully handle
L
Linus Torvalds 已提交
378 379 380 381
 *              error conditions.
 *
 ******************************************************************************/

382
void *acpi_ut_allocate_object_desc_dbg(const char *module_name,
L
Len Brown 已提交
383
				       u32 line_number, u32 component_id)
L
Linus Torvalds 已提交
384
{
L
Len Brown 已提交
385
	union acpi_operand_object *object;
L
Linus Torvalds 已提交
386

B
Bob Moore 已提交
387
	ACPI_FUNCTION_TRACE(ut_allocate_object_desc_dbg);
L
Linus Torvalds 已提交
388

L
Len Brown 已提交
389
	object = acpi_os_acquire_object(acpi_gbl_operand_cache);
L
Linus Torvalds 已提交
390
	if (!object) {
B
Bob Moore 已提交
391 392
		ACPI_ERROR((module_name, line_number,
			    "Could not allocate an object descriptor"));
L
Linus Torvalds 已提交
393

L
Len Brown 已提交
394
		return_PTR(NULL);
L
Linus Torvalds 已提交
395 396 397
	}

	/* Mark the descriptor type */
B
Bob Moore 已提交
398

399
	memset(object, 0, sizeof(union acpi_operand_object));
L
Len Brown 已提交
400
	ACPI_SET_DESCRIPTOR_TYPE(object, ACPI_DESC_TYPE_OPERAND);
L
Linus Torvalds 已提交
401

L
Len Brown 已提交
402 403
	ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "%p Size %X\n",
			  object, (u32) sizeof(union acpi_operand_object)));
L
Linus Torvalds 已提交
404

L
Len Brown 已提交
405
	return_PTR(object);
L
Linus Torvalds 已提交
406 407 408 409 410 411
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_delete_object_desc
 *
412
 * PARAMETERS:  object          - An Acpi internal object to be deleted
L
Linus Torvalds 已提交
413 414 415 416 417 418 419
 *
 * RETURN:      None.
 *
 * DESCRIPTION: Free an ACPI object descriptor or add it to the object cache
 *
 ******************************************************************************/

L
Len Brown 已提交
420
void acpi_ut_delete_object_desc(union acpi_operand_object *object)
L
Linus Torvalds 已提交
421
{
B
Bob Moore 已提交
422
	ACPI_FUNCTION_TRACE_PTR(ut_delete_object_desc, object);
L
Linus Torvalds 已提交
423

L
Lv Zheng 已提交
424
	/* Object must be of type union acpi_operand_object */
L
Linus Torvalds 已提交
425

L
Len Brown 已提交
426
	if (ACPI_GET_DESCRIPTOR_TYPE(object) != ACPI_DESC_TYPE_OPERAND) {
B
Bob Moore 已提交
427 428 429
		ACPI_ERROR((AE_INFO,
			    "%p is not an ACPI Operand object [%s]", object,
			    acpi_ut_get_descriptor_name(object)));
L
Linus Torvalds 已提交
430 431 432
		return_VOID;
	}

L
Len Brown 已提交
433
	(void)acpi_os_release_object(acpi_gbl_operand_cache, object);
L
Linus Torvalds 已提交
434 435 436 437 438 439 440
	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_get_simple_object_size
 *
R
Robert Moore 已提交
441 442
 * PARAMETERS:  internal_object    - An ACPI operand object
 *              obj_length         - Where the length is returned
L
Linus Torvalds 已提交
443 444 445 446 447 448 449 450 451 452 453
 *
 * RETURN:      Status
 *
 * DESCRIPTION: This function is called to determine the space required to
 *              contain a simple object for return to an external user.
 *
 *              The length includes the object structure plus any additional
 *              needed space.
 *
 ******************************************************************************/

R
Robert Moore 已提交
454
static acpi_status
L
Len Brown 已提交
455 456
acpi_ut_get_simple_object_size(union acpi_operand_object *internal_object,
			       acpi_size * obj_length)
L
Linus Torvalds 已提交
457
{
L
Len Brown 已提交
458
	acpi_size length;
459
	acpi_size size;
L
Len Brown 已提交
460
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
461

B
Bob Moore 已提交
462
	ACPI_FUNCTION_TRACE_PTR(ut_get_simple_object_size, internal_object);
L
Linus Torvalds 已提交
463

R
Robert Moore 已提交
464 465 466 467
	/*
	 * Handle a null object (Could be a uninitialized package
	 * element -- which is legal)
	 */
L
Linus Torvalds 已提交
468
	if (!internal_object) {
469
		*obj_length = sizeof(union acpi_object);
L
Len Brown 已提交
470
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
471 472 473 474
	}

	/* Start with the length of the Acpi object */

L
Len Brown 已提交
475
	length = sizeof(union acpi_object);
L
Linus Torvalds 已提交
476

L
Len Brown 已提交
477
	if (ACPI_GET_DESCRIPTOR_TYPE(internal_object) == ACPI_DESC_TYPE_NAMED) {
B
Bob Moore 已提交
478

L
Linus Torvalds 已提交
479 480
		/* Object is a named object (reference), just return the length */

L
Len Brown 已提交
481 482
		*obj_length = ACPI_ROUND_UP_TO_NATIVE_WORD(length);
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
483 484 485 486 487 488 489 490
	}

	/*
	 * The final length depends on the object type
	 * Strings and Buffers are packed right up against the parent object and
	 * must be accessed bytewise or there may be alignment problems on
	 * certain processors
	 */
491
	switch (internal_object->common.type) {
L
Linus Torvalds 已提交
492 493 494 495 496 497 498 499 500 501 502 503 504 505
	case ACPI_TYPE_STRING:

		length += (acpi_size) internal_object->string.length + 1;
		break;

	case ACPI_TYPE_BUFFER:

		length += (acpi_size) internal_object->buffer.length;
		break;

	case ACPI_TYPE_INTEGER:
	case ACPI_TYPE_PROCESSOR:
	case ACPI_TYPE_POWER:

506 507
		/* No extra data for these types */

L
Linus Torvalds 已提交
508 509 510 511
		break;

	case ACPI_TYPE_LOCAL_REFERENCE:

512 513
		switch (internal_object->reference.class) {
		case ACPI_REFCLASS_NAME:
L
Linus Torvalds 已提交
514 515 516 517
			/*
			 * Get the actual length of the full pathname to this object.
			 * The reference will be converted to the pathname to the object
			 */
518 519 520 521 522 523 524 525
			size =
			    acpi_ns_get_pathname_length(internal_object->
							reference.node);
			if (!size) {
				return_ACPI_STATUS(AE_BAD_PARAMETER);
			}

			length += ACPI_ROUND_UP_TO_NATIVE_WORD(size);
L
Linus Torvalds 已提交
526 527 528 529 530 531 532 533
			break;

		default:
			/*
			 * No other reference opcodes are supported.
			 * Notably, Locals and Args are not supported, but this may be
			 * required eventually.
			 */
B
Bob Moore 已提交
534
			ACPI_ERROR((AE_INFO,
535
				    "Cannot convert to external object - "
536
				    "unsupported Reference Class [%s] 0x%X in object %p",
537
				    acpi_ut_get_reference_name(internal_object),
538
				    internal_object->reference.class,
B
Bob Moore 已提交
539
				    internal_object));
L
Linus Torvalds 已提交
540 541 542 543 544 545 546
			status = AE_TYPE;
			break;
		}
		break;

	default:

547
		ACPI_ERROR((AE_INFO, "Cannot convert to external object - "
548
			    "unsupported type [%s] 0x%X in object %p",
549
			    acpi_ut_get_object_type_name(internal_object),
550
			    internal_object->common.type, internal_object));
L
Linus Torvalds 已提交
551 552 553 554 555 556
		status = AE_TYPE;
		break;
	}

	/*
	 * Account for the space required by the object rounded up to the next
557
	 * multiple of the machine word size. This keeps each object aligned
L
Linus Torvalds 已提交
558 559 560
	 * on a machine word boundary. (preventing alignment faults on some
	 * machines.)
	 */
L
Len Brown 已提交
561 562
	*obj_length = ACPI_ROUND_UP_TO_NATIVE_WORD(length);
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_get_element_length
 *
 * PARAMETERS:  acpi_pkg_callback
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Get the length of one package element.
 *
 ******************************************************************************/

R
Robert Moore 已提交
577
static acpi_status
L
Len Brown 已提交
578 579 580
acpi_ut_get_element_length(u8 object_type,
			   union acpi_operand_object *source_object,
			   union acpi_generic_state *state, void *context)
L
Linus Torvalds 已提交
581
{
L
Len Brown 已提交
582 583 584
	acpi_status status = AE_OK;
	struct acpi_pkg_info *info = (struct acpi_pkg_info *)context;
	acpi_size object_space;
L
Linus Torvalds 已提交
585 586 587 588 589 590 591

	switch (object_type) {
	case ACPI_COPY_TYPE_SIMPLE:
		/*
		 * Simple object - just get the size (Null object/entry is handled
		 * here also) and sum it into the running package length
		 */
L
Len Brown 已提交
592 593 594 595
		status =
		    acpi_ut_get_simple_object_size(source_object,
						   &object_space);
		if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
			return (status);
		}

		info->length += object_space;
		break;

	case ACPI_COPY_TYPE_PACKAGE:

		/* Package object - nothing much to do here, let the walk handle it */

		info->num_packages++;
		state->pkg.this_target_obj = NULL;
		break;

	default:

		/* No other types allowed */

		return (AE_BAD_PARAMETER);
	}

	return (status);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_get_package_object_size
 *
R
Robert Moore 已提交
624 625
 * PARAMETERS:  internal_object     - An ACPI internal object
 *              obj_length          - Where the length is returned
L
Linus Torvalds 已提交
626 627 628 629 630 631 632 633 634 635 636
 *
 * RETURN:      Status
 *
 * DESCRIPTION: This function is called to determine the space required to
 *              contain a package object for return to an external user.
 *
 *              This is moderately complex since a package contains other
 *              objects including packages.
 *
 ******************************************************************************/

R
Robert Moore 已提交
637
static acpi_status
L
Len Brown 已提交
638 639
acpi_ut_get_package_object_size(union acpi_operand_object *internal_object,
				acpi_size * obj_length)
L
Linus Torvalds 已提交
640
{
L
Len Brown 已提交
641 642
	acpi_status status;
	struct acpi_pkg_info info;
L
Linus Torvalds 已提交
643

B
Bob Moore 已提交
644
	ACPI_FUNCTION_TRACE_PTR(ut_get_package_object_size, internal_object);
L
Linus Torvalds 已提交
645

L
Len Brown 已提交
646
	info.length = 0;
L
Linus Torvalds 已提交
647 648 649
	info.object_space = 0;
	info.num_packages = 1;

L
Len Brown 已提交
650 651 652 653
	status = acpi_ut_walk_package_tree(internal_object, NULL,
					   acpi_ut_get_element_length, &info);
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
654 655 656 657 658 659 660
	}

	/*
	 * We have handled all of the objects in all levels of the package.
	 * just add the length of the package objects themselves.
	 * Round up to the next machine word.
	 */
L
Len Brown 已提交
661 662
	info.length += ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object)) *
	    (acpi_size) info.num_packages;
L
Linus Torvalds 已提交
663 664 665 666

	/* Return the total package length */

	*obj_length = info.length;
L
Len Brown 已提交
667
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
668 669 670 671 672 673
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ut_get_object_size
 *
R
Robert Moore 已提交
674 675
 * PARAMETERS:  internal_object     - An ACPI internal object
 *              obj_length          - Where the length will be returned
L
Linus Torvalds 已提交
676 677 678 679 680 681 682 683 684
 *
 * RETURN:      Status
 *
 * DESCRIPTION: This function is called to determine the space required to
 *              contain an object for return to an API user.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
685 686
acpi_ut_get_object_size(union acpi_operand_object *internal_object,
			acpi_size * obj_length)
L
Linus Torvalds 已提交
687
{
L
Len Brown 已提交
688 689 690 691 692 693
	acpi_status status;

	ACPI_FUNCTION_ENTRY();

	if ((ACPI_GET_DESCRIPTOR_TYPE(internal_object) ==
	     ACPI_DESC_TYPE_OPERAND)
694
	    && (internal_object->common.type == ACPI_TYPE_PACKAGE)) {
L
Len Brown 已提交
695 696 697 698 699 700
		status =
		    acpi_ut_get_package_object_size(internal_object,
						    obj_length);
	} else {
		status =
		    acpi_ut_get_simple_object_size(internal_object, obj_length);
L
Linus Torvalds 已提交
701 702 703 704
	}

	return (status);
}