⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exconvrt.c

📁 linux-2.6.15.6
💻 C
📖 第 1 页 / 共 2 页
字号:
/****************************************************************************** * * Module Name: exconvrt - Object conversion routines * *****************************************************************************//* * Copyright (C) 2000 - 2005, R. Byron Moore * 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_EXECUTERACPI_MODULE_NAME("exconvrt")/* Local prototypes */static u32acpi_ex_convert_to_ascii(acpi_integer integer,			 u16 base, u8 * string, u8 max_length);/******************************************************************************* * * 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_statusacpi_ex_convert_to_integer(union acpi_operand_object *obj_desc,			   union acpi_operand_object **result_desc, u32 flags){	union acpi_operand_object *return_desc;	u8 *pointer;	acpi_integer result;	u32 i;	u32 count;	acpi_status status;	ACPI_FUNCTION_TRACE_PTR("ex_convert_to_integer", obj_desc);	switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {	case ACPI_TYPE_INTEGER:		/* No conversion necessary */		*result_desc = obj_desc;		return_ACPI_STATUS(AE_OK);	case ACPI_TYPE_BUFFER:	case ACPI_TYPE_STRING:		/* Note: Takes advantage of common buffer/string fields */		pointer = obj_desc->buffer.pointer;		count = obj_desc->buffer.length;		break;	default:		return_ACPI_STATUS(AE_TYPE);	}	/*	 * 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;	/* String conversion is different than Buffer conversion */	switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {	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").		 */		status = acpi_ut_strtoul64((char *)pointer, flags, &result);		if (ACPI_FAILURE(status)) {			return_ACPI_STATUS(status);		}		break;	case ACPI_TYPE_BUFFER:		/* Check for zero-length buffer */		if (!count) {			return_ACPI_STATUS(AE_AML_BUFFER_LIMIT);		}		/* 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;	}	/* Create a new integer */	return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);	if (!return_desc) {		return_ACPI_STATUS(AE_NO_MEMORY);	}	/* Save the Result */	return_desc->integer.value = result;	acpi_ex_truncate_for32bit_table(return_desc);	*result_desc = return_desc;	return_ACPI_STATUS(AE_OK);}/******************************************************************************* * * 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_statusacpi_ex_convert_to_buffer(union acpi_operand_object *obj_desc,			  union acpi_operand_object **result_desc){	union acpi_operand_object *return_desc;	u8 *new_buf;	ACPI_FUNCTION_TRACE_PTR("ex_convert_to_buffer", obj_desc);	switch (ACPI_GET_OBJECT_TYPE(obj_desc)) {	case ACPI_TYPE_BUFFER:		/* No conversion necessary */		*result_desc = obj_desc;		return_ACPI_STATUS(AE_OK);	case ACPI_TYPE_INTEGER:		/*		 * Create a new Buffer object.		 * Need enough space for one integer		 */		return_desc =		    acpi_ut_create_buffer_object(acpi_gbl_integer_byte_width);		if (!return_desc) {			return_ACPI_STATUS(AE_NO_MEMORY);		}		/* Copy the integer to the buffer, LSB first */		new_buf = return_desc->buffer.pointer;		ACPI_MEMCPY(new_buf,			    &obj_desc->integer.value,			    acpi_gbl_integer_byte_width);		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.		 */		return_desc = acpi_ut_create_buffer_object((acpi_size)							   obj_desc->string.							   length + 1);		if (!return_desc) {			return_ACPI_STATUS(AE_NO_MEMORY);		}		/* Copy the string to the buffer */		new_buf = return_desc->buffer.pointer;		ACPI_STRNCPY((char *)new_buf, (char *)obj_desc->string.pointer,			     obj_desc->string.length);		break;	default:		return_ACPI_STATUS(AE_TYPE);	}	/* Mark buffer initialized */	return_desc->common.flags |= AOPOBJ_DATA_VALID;	*result_desc = return_desc;	return_ACPI_STATUS(AE_OK);}/******************************************************************************* * * 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 * ******************************************************************************/static u32acpi_ex_convert_to_ascii(acpi_integer integer,			 u16 base, u8 * string, u8 data_width){	acpi_integer digit;	acpi_native_uint i;	acpi_native_uint j;	acpi_native_uint k = 0;	acpi_native_uint hex_length;	acpi_native_uint decimal_length;	u32 remainder;	u8 supress_zeros;	ACPI_FUNCTION_ENTRY();	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;		}		supress_zeros = TRUE;	/* No leading zeros */		remainder = 0;		for (i = decimal_length; i > 0; i--) {			/* Divide by nth factor of 10 */			digit = integer;			for (j = 0; j < i; j++) {				(void)acpi_ut_short_divide(digit, 10, &digit,							   &remainder);			}			/* Handle leading zeros */			if (remainder != 0) {				supress_zeros = FALSE;			}			if (!supress_zeros) {				string[k] = (u8) (ACPI_ASCII_ZERO + remainder);				k++;			}		}		break;	case 16:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -