exconvrt.c 17.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Module Name: exconvrt - Object conversion routines
 *
 *****************************************************************************/

/*
L
Len Brown 已提交
8
 * Copyright (C) 2000 - 2008, 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 45 46 47 48
 * 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>

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

R
Robert Moore 已提交
51 52
/* Local prototypes */
static u32
L
Len Brown 已提交
53 54
acpi_ex_convert_to_ascii(acpi_integer integer,
			 u16 base, u8 * string, u8 max_length);
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_convert_to_integer
 *
 * PARAMETERS:  obj_desc        - Object to be converted.  Must be an
 *                                Integer, Buffer, or String
 *              result_desc     - Where the new Integer object is returned
 *              Flags           - Used for string conversion
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an ACPI Object to an integer.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
72 73
acpi_ex_convert_to_integer(union acpi_operand_object *obj_desc,
			   union acpi_operand_object **result_desc, u32 flags)
L
Linus Torvalds 已提交
74
{
L
Len Brown 已提交
75 76 77 78 79 80
	union acpi_operand_object *return_desc;
	u8 *pointer;
	acpi_integer result;
	u32 i;
	u32 count;
	acpi_status status;
L
Linus Torvalds 已提交
81

B
Bob Moore 已提交
82
	ACPI_FUNCTION_TRACE_PTR(ex_convert_to_integer, obj_desc);
L
Linus Torvalds 已提交
83

L
Len Brown 已提交
84
	switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
85 86 87 88 89
	case ACPI_TYPE_INTEGER:

		/* No conversion necessary */

		*result_desc = obj_desc;
L
Len Brown 已提交
90
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
91 92 93 94 95 96 97

	case ACPI_TYPE_BUFFER:
	case ACPI_TYPE_STRING:

		/* Note: Takes advantage of common buffer/string fields */

		pointer = obj_desc->buffer.pointer;
L
Len Brown 已提交
98
		count = obj_desc->buffer.length;
L
Linus Torvalds 已提交
99 100 101
		break;

	default:
L
Len Brown 已提交
102
		return_ACPI_STATUS(AE_TYPE);
L
Linus Torvalds 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115
	}

	/*
	 * Convert the buffer/string to an integer.  Note that both buffers and
	 * strings are treated as raw data - we don't convert ascii to hex for
	 * strings.
	 *
	 * There are two terminating conditions for the loop:
	 * 1) The size of an integer has been reached, or
	 * 2) The end of the buffer or string has been reached
	 */
	result = 0;

R
Robert Moore 已提交
116 117
	/* String conversion is different than Buffer conversion */

L
Len Brown 已提交
118
	switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
119 120 121 122 123 124 125 126
	case ACPI_TYPE_STRING:

		/*
		 * Convert string to an integer - for most cases, the string must be
		 * hexadecimal as per the ACPI specification.  The only exception (as
		 * of ACPI 3.0) is that the to_integer() operator allows both decimal
		 * and hexadecimal strings (hex prefixed with "0x").
		 */
L
Len Brown 已提交
127 128 129
		status = acpi_ut_strtoul64((char *)pointer, flags, &result);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
130 131 132 133 134 135 136 137
		}
		break;

	case ACPI_TYPE_BUFFER:

		/* Check for zero-length buffer */

		if (!count) {
L
Len Brown 已提交
138
			return_ACPI_STATUS(AE_AML_BUFFER_LIMIT);
L
Linus Torvalds 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
		}

		/* Transfer no more than an integer's worth of data */

		if (count > acpi_gbl_integer_byte_width) {
			count = acpi_gbl_integer_byte_width;
		}

		/*
		 * Convert buffer to an integer - we simply grab enough raw data
		 * from the buffer to fill an integer
		 */
		for (i = 0; i < count; i++) {
			/*
			 * Get next byte and shift it into the Result.
			 * Little endian is used, meaning that the first byte of the buffer
			 * is the LSB of the integer
			 */
			result |= (((acpi_integer) pointer[i]) << (i * 8));
		}
		break;

	default:
		/* No other types can get here */
		break;
	}

R
Robert Moore 已提交
166 167
	/* Create a new integer */

L
Len Brown 已提交
168
	return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
L
Linus Torvalds 已提交
169
	if (!return_desc) {
L
Len Brown 已提交
170
		return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
171 172
	}

B
Bob Moore 已提交
173 174 175
	ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Converted value: %8.8X%8.8X\n",
			  ACPI_FORMAT_UINT64(result)));

L
Linus Torvalds 已提交
176 177 178
	/* Save the Result */

	return_desc->integer.value = result;
L
Len Brown 已提交
179
	acpi_ex_truncate_for32bit_table(return_desc);
L
Linus Torvalds 已提交
180
	*result_desc = return_desc;
L
Len Brown 已提交
181
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_convert_to_buffer
 *
 * PARAMETERS:  obj_desc        - Object to be converted.  Must be an
 *                                Integer, Buffer, or String
 *              result_desc     - Where the new buffer object is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an ACPI Object to a Buffer
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
199 200
acpi_ex_convert_to_buffer(union acpi_operand_object *obj_desc,
			  union acpi_operand_object **result_desc)
L
Linus Torvalds 已提交
201
{
L
Len Brown 已提交
202 203
	union acpi_operand_object *return_desc;
	u8 *new_buf;
L
Linus Torvalds 已提交
204

B
Bob Moore 已提交
205
	ACPI_FUNCTION_TRACE_PTR(ex_convert_to_buffer, obj_desc);
L
Linus Torvalds 已提交
206

L
Len Brown 已提交
207
	switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
208 209 210 211 212
	case ACPI_TYPE_BUFFER:

		/* No conversion necessary */

		*result_desc = obj_desc;
L
Len Brown 已提交
213
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
214 215 216 217 218 219 220

	case ACPI_TYPE_INTEGER:

		/*
		 * Create a new Buffer object.
		 * Need enough space for one integer
		 */
L
Len Brown 已提交
221 222
		return_desc =
		    acpi_ut_create_buffer_object(acpi_gbl_integer_byte_width);
L
Linus Torvalds 已提交
223
		if (!return_desc) {
L
Len Brown 已提交
224
			return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
225 226 227 228 229
		}

		/* Copy the integer to the buffer, LSB first */

		new_buf = return_desc->buffer.pointer;
L
Len Brown 已提交
230 231 232
		ACPI_MEMCPY(new_buf,
			    &obj_desc->integer.value,
			    acpi_gbl_integer_byte_width);
L
Linus Torvalds 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245
		break;

	case ACPI_TYPE_STRING:

		/*
		 * Create a new Buffer object
		 * Size will be the string length
		 *
		 * NOTE: Add one to the string length to include the null terminator.
		 * The ACPI spec is unclear on this subject, but there is existing
		 * ASL/AML code that depends on the null being transferred to the new
		 * buffer.
		 */
L
Len Brown 已提交
246 247 248
		return_desc = acpi_ut_create_buffer_object((acpi_size)
							   obj_desc->string.
							   length + 1);
L
Linus Torvalds 已提交
249
		if (!return_desc) {
L
Len Brown 已提交
250
			return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
251 252 253 254 255
		}

		/* Copy the string to the buffer */

		new_buf = return_desc->buffer.pointer;
L
Len Brown 已提交
256 257
		ACPI_STRNCPY((char *)new_buf, (char *)obj_desc->string.pointer,
			     obj_desc->string.length);
L
Linus Torvalds 已提交
258 259 260
		break;

	default:
L
Len Brown 已提交
261
		return_ACPI_STATUS(AE_TYPE);
L
Linus Torvalds 已提交
262 263 264 265 266 267
	}

	/* Mark buffer initialized */

	return_desc->common.flags |= AOPOBJ_DATA_VALID;
	*result_desc = return_desc;
L
Len Brown 已提交
268
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_convert_to_ascii
 *
 * PARAMETERS:  Integer         - Value to be converted
 *              Base            - ACPI_STRING_DECIMAL or ACPI_STRING_HEX
 *              String          - Where the string is returned
 *              data_width      - Size of data item to be converted, in bytes
 *
 * RETURN:      Actual string length
 *
 * DESCRIPTION: Convert an ACPI Integer to a hex or decimal string
 *
 ******************************************************************************/

R
Robert Moore 已提交
286
static u32
L
Len Brown 已提交
287 288
acpi_ex_convert_to_ascii(acpi_integer integer,
			 u16 base, u8 * string, u8 data_width)
L
Linus Torvalds 已提交
289
{
L
Len Brown 已提交
290
	acpi_integer digit;
291 292 293 294 295
	u32 i;
	u32 j;
	u32 k = 0;
	u32 hex_length;
	u32 decimal_length;
L
Len Brown 已提交
296 297
	u32 remainder;
	u8 supress_zeros;
L
Linus Torvalds 已提交
298

L
Len Brown 已提交
299
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320

	switch (base) {
	case 10:

		/* Setup max length for the decimal number */

		switch (data_width) {
		case 1:
			decimal_length = ACPI_MAX8_DECIMAL_DIGITS;
			break;

		case 4:
			decimal_length = ACPI_MAX32_DECIMAL_DIGITS;
			break;

		case 8:
		default:
			decimal_length = ACPI_MAX64_DECIMAL_DIGITS;
			break;
		}

L
Len Brown 已提交
321
		supress_zeros = TRUE;	/* No leading zeros */
L
Linus Torvalds 已提交
322 323 324
		remainder = 0;

		for (i = decimal_length; i > 0; i--) {
B
Bob Moore 已提交
325

L
Linus Torvalds 已提交
326 327 328 329
			/* Divide by nth factor of 10 */

			digit = integer;
			for (j = 0; j < i; j++) {
L
Len Brown 已提交
330 331
				(void)acpi_ut_short_divide(digit, 10, &digit,
							   &remainder);
L
Linus Torvalds 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
			}

			/* Handle leading zeros */

			if (remainder != 0) {
				supress_zeros = FALSE;
			}

			if (!supress_zeros) {
				string[k] = (u8) (ACPI_ASCII_ZERO + remainder);
				k++;
			}
		}
		break;

	case 16:

R
Robert Moore 已提交
349
		/* hex_length: 2 ascii hex chars per data byte */
L
Linus Torvalds 已提交
350

351
		hex_length = ACPI_MUL_2(data_width);
L
Len Brown 已提交
352
		for (i = 0, j = (hex_length - 1); i < hex_length; i++, j--) {
B
Bob Moore 已提交
353

L
Linus Torvalds 已提交
354 355
			/* Get one hex digit, most significant digits first */

L
Len Brown 已提交
356 357 358
			string[k] =
			    (u8) acpi_ut_hex_to_ascii_char(integer,
							   ACPI_MUL_4(j));
L
Linus Torvalds 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
			k++;
		}
		break;

	default:
		return (0);
	}

	/*
	 * Since leading zeros are supressed, we must check for the case where
	 * the integer equals 0
	 *
	 * Finally, null terminate the string and return the length
	 */
	if (!k) {
L
Len Brown 已提交
374
		string[0] = ACPI_ASCII_ZERO;
L
Linus Torvalds 已提交
375 376 377
		k = 1;
	}

L
Len Brown 已提交
378
	string[k] = 0;
L
Linus Torvalds 已提交
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
	return ((u32) k);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_convert_to_string
 *
 * PARAMETERS:  obj_desc        - Object to be converted.  Must be an
 *                                Integer, Buffer, or String
 *              result_desc     - Where the string object is returned
 *              Type            - String flags (base and conversion type)
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Convert an ACPI Object to a string
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
398 399
acpi_ex_convert_to_string(union acpi_operand_object * obj_desc,
			  union acpi_operand_object ** result_desc, u32 type)
L
Linus Torvalds 已提交
400
{
L
Len Brown 已提交
401 402 403 404 405 406
	union acpi_operand_object *return_desc;
	u8 *new_buf;
	u32 i;
	u32 string_length = 0;
	u16 base = 16;
	u8 separator = ',';
L
Linus Torvalds 已提交
407

B
Bob Moore 已提交
408
	ACPI_FUNCTION_TRACE_PTR(ex_convert_to_string, obj_desc);
L
Linus Torvalds 已提交
409

L
Len Brown 已提交
410
	switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {
L
Linus Torvalds 已提交
411 412 413 414 415
	case ACPI_TYPE_STRING:

		/* No conversion necessary */

		*result_desc = obj_desc;
L
Len Brown 已提交
416
		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432

	case ACPI_TYPE_INTEGER:

		switch (type) {
		case ACPI_EXPLICIT_CONVERT_DECIMAL:

			/* Make room for maximum decimal number */

			string_length = ACPI_MAX_DECIMAL_DIGITS;
			base = 10;
			break;

		default:

			/* Two hex string characters for each integer byte */

L
Len Brown 已提交
433
			string_length = ACPI_MUL_2(acpi_gbl_integer_byte_width);
L
Linus Torvalds 已提交
434 435 436 437 438 439 440
			break;
		}

		/*
		 * Create a new String
		 * Need enough space for one ASCII integer (plus null terminator)
		 */
L
Len Brown 已提交
441 442
		return_desc =
		    acpi_ut_create_string_object((acpi_size) string_length);
L
Linus Torvalds 已提交
443
		if (!return_desc) {
L
Len Brown 已提交
444
			return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
445 446 447 448 449 450
		}

		new_buf = return_desc->buffer.pointer;

		/* Convert integer to string */

L
Len Brown 已提交
451 452 453 454
		string_length =
		    acpi_ex_convert_to_ascii(obj_desc->integer.value, base,
					     new_buf,
					     acpi_gbl_integer_byte_width);
L
Linus Torvalds 已提交
455 456 457 458

		/* Null terminate at the correct place */

		return_desc->string.length = string_length;
L
Len Brown 已提交
459
		new_buf[string_length] = 0;
L
Linus Torvalds 已提交
460 461 462 463 464 465 466
		break;

	case ACPI_TYPE_BUFFER:

		/* Setup string length, base, and separator */

		switch (type) {
L
Len Brown 已提交
467
		case ACPI_EXPLICIT_CONVERT_DECIMAL:	/* Used by to_decimal_string */
L
Linus Torvalds 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480
			/*
			 * From ACPI: "If Data is a buffer, it is converted to a string of
			 * decimal values separated by commas."
			 */
			base = 10;

			/*
			 * Calculate the final string length.  Individual string values
			 * are variable length (include separator for each)
			 */
			for (i = 0; i < obj_desc->buffer.length; i++) {
				if (obj_desc->buffer.pointer[i] >= 100) {
					string_length += 4;
L
Len Brown 已提交
481
				} else if (obj_desc->buffer.pointer[i] >= 10) {
L
Linus Torvalds 已提交
482
					string_length += 3;
L
Len Brown 已提交
483
				} else {
L
Linus Torvalds 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
					string_length += 2;
				}
			}
			break;

		case ACPI_IMPLICIT_CONVERT_HEX:
			/*
			 * From the ACPI spec:
			 *"The entire contents of the buffer are converted to a string of
			 * two-character hexadecimal numbers, each separated by a space."
			 */
			separator = ' ';
			string_length = (obj_desc->buffer.length * 3);
			break;

L
Len Brown 已提交
499
		case ACPI_EXPLICIT_CONVERT_HEX:	/* Used by to_hex_string */
L
Linus Torvalds 已提交
500 501 502 503 504 505 506 507
			/*
			 * From ACPI: "If Data is a buffer, it is converted to a string of
			 * hexadecimal values separated by commas."
			 */
			string_length = (obj_desc->buffer.length * 3);
			break;

		default:
L
Len Brown 已提交
508
			return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
509 510 511
		}

		/*
B
Bob Moore 已提交
512
		 * Create a new string object and string buffer
L
Linus Torvalds 已提交
513 514
		 * (-1 because of extra separator included in string_length from above)
		 */
L
Len Brown 已提交
515 516
		return_desc = acpi_ut_create_string_object((acpi_size)
							   (string_length - 1));
L
Linus Torvalds 已提交
517
		if (!return_desc) {
L
Len Brown 已提交
518
			return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
519 520 521 522 523 524 525 526 527
		}

		new_buf = return_desc->buffer.pointer;

		/*
		 * Convert buffer bytes to hex or decimal values
		 * (separated by commas or spaces)
		 */
		for (i = 0; i < obj_desc->buffer.length; i++) {
L
Len Brown 已提交
528 529 530 531 532
			new_buf += acpi_ex_convert_to_ascii((acpi_integer)
							    obj_desc->buffer.
							    pointer[i], base,
							    new_buf, 1);
			*new_buf++ = separator;	/* each separated by a comma or space */
L
Linus Torvalds 已提交
533 534
		}

R
Robert Moore 已提交
535 536 537 538
		/*
		 * Null terminate the string
		 * (overwrites final comma/space from above)
		 */
L
Linus Torvalds 已提交
539 540 541 542 543
		new_buf--;
		*new_buf = 0;
		break;

	default:
L
Len Brown 已提交
544
		return_ACPI_STATUS(AE_TYPE);
L
Linus Torvalds 已提交
545 546 547
	}

	*result_desc = return_desc;
L
Len Brown 已提交
548
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_convert_to_target_type
 *
 * PARAMETERS:  destination_type    - Current type of the destination
 *              source_desc         - Source object to be converted.
 *              result_desc         - Where the converted object is returned
 *              walk_state          - Current method state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Implements "implicit conversion" rules for storing an object.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
567 568 569 570
acpi_ex_convert_to_target_type(acpi_object_type destination_type,
			       union acpi_operand_object *source_desc,
			       union acpi_operand_object **result_desc,
			       struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
571
{
L
Len Brown 已提交
572
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
573

B
Bob Moore 已提交
574
	ACPI_FUNCTION_TRACE(ex_convert_to_target_type);
L
Linus Torvalds 已提交
575 576 577 578 579 580 581 582 583

	/* Default behavior */

	*result_desc = source_desc;

	/*
	 * If required by the target,
	 * perform implicit conversion on the source before we store it.
	 */
L
Len Brown 已提交
584
	switch (GET_CURRENT_ARG_TYPE(walk_state->op_info->runtime_args)) {
L
Linus Torvalds 已提交
585 586
	case ARGI_SIMPLE_TARGET:
	case ARGI_FIXED_TARGET:
L
Len Brown 已提交
587
	case ARGI_INTEGER_REF:	/* Handles Increment, Decrement cases */
L
Linus Torvalds 已提交
588 589 590 591 592 593 594 595 596 597 598

		switch (destination_type) {
		case ACPI_TYPE_LOCAL_REGION_FIELD:
			/*
			 * Named field can always handle conversions
			 */
			break;

		default:
			/* No conversion allowed for these types */

L
Len Brown 已提交
599 600 601 602 603 604 605 606
			if (destination_type !=
			    ACPI_GET_OBJECT_TYPE(source_desc)) {
				ACPI_DEBUG_PRINT((ACPI_DB_INFO,
						  "Explicit operator, will store (%s) over existing type (%s)\n",
						  acpi_ut_get_object_type_name
						  (source_desc),
						  acpi_ut_get_type_name
						  (destination_type)));
L
Linus Torvalds 已提交
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
				status = AE_TYPE;
			}
		}
		break;

	case ARGI_TARGETREF:

		switch (destination_type) {
		case ACPI_TYPE_INTEGER:
		case ACPI_TYPE_BUFFER_FIELD:
		case ACPI_TYPE_LOCAL_BANK_FIELD:
		case ACPI_TYPE_LOCAL_INDEX_FIELD:
			/*
			 * These types require an Integer operand.  We can convert
			 * a Buffer or a String to an Integer if necessary.
			 */
L
Len Brown 已提交
623 624 625
			status =
			    acpi_ex_convert_to_integer(source_desc, result_desc,
						       16);
L
Linus Torvalds 已提交
626 627 628 629 630 631 632
			break;

		case ACPI_TYPE_STRING:
			/*
			 * The operand must be a String.  We can convert an
			 * Integer or Buffer if necessary
			 */
L
Len Brown 已提交
633 634 635
			status =
			    acpi_ex_convert_to_string(source_desc, result_desc,
						      ACPI_IMPLICIT_CONVERT_HEX);
L
Linus Torvalds 已提交
636 637 638 639 640 641 642
			break;

		case ACPI_TYPE_BUFFER:
			/*
			 * The operand must be a Buffer.  We can convert an
			 * Integer or String if necessary
			 */
L
Len Brown 已提交
643 644
			status =
			    acpi_ex_convert_to_buffer(source_desc, result_desc);
L
Linus Torvalds 已提交
645 646 647
			break;

		default:
B
Bob Moore 已提交
648 649 650
			ACPI_ERROR((AE_INFO,
				    "Bad destination type during conversion: %X",
				    destination_type));
L
Linus Torvalds 已提交
651 652 653 654 655 656 657 658 659 660 661 662
			status = AE_AML_INTERNAL;
			break;
		}
		break;

	case ARGI_REFERENCE:
		/*
		 * create_xxxx_field cases - we are storing the field object into the name
		 */
		break;

	default:
B
Bob Moore 已提交
663
		ACPI_ERROR((AE_INFO,
B
Bob Moore 已提交
664
			    "Unknown Target type ID 0x%X AmlOpcode %X DestType %s",
B
Bob Moore 已提交
665 666 667 668
			    GET_CURRENT_ARG_TYPE(walk_state->op_info->
						 runtime_args),
			    walk_state->opcode,
			    acpi_ut_get_type_name(destination_type)));
B
Bob Moore 已提交
669
		status = AE_AML_INTERNAL;
L
Linus Torvalds 已提交
670 671 672 673 674 675 676 677 678 679 680 681
	}

	/*
	 * Source-to-Target conversion semantics:
	 *
	 * If conversion to the target type cannot be performed, then simply
	 * overwrite the target with the new object and type.
	 */
	if (status == AE_TYPE) {
		status = AE_OK;
	}

L
Len Brown 已提交
682
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
683
}