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

📄 dsmthdat.c

📁 h内核
💻 C
📖 第 1 页 / 共 2 页
字号:
/******************************************************************************* * * Module Name: dsmthdat - control method arguments and local variables * ******************************************************************************//* * 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/acdispat.h>#include <acpi/amlcode.h>#include <acpi/acnamesp.h>#include <acpi/acinterp.h>#define _COMPONENT          ACPI_DISPATCHER	 ACPI_MODULE_NAME    ("dsmthdat")/******************************************************************************* * * FUNCTION:    acpi_ds_method_data_init * * PARAMETERS:  walk_state          - Current walk state object * * RETURN:      Status * * DESCRIPTION: Initialize the data structures that hold the method's arguments *              and locals.  The data struct is an array of NTEs for each. *              This allows ref_of and de_ref_of to work properly for these *              special data types. * * NOTES:       walk_state fields are initialized to zero by the *              ACPI_MEM_CALLOCATE(). * *              A pseudo-Namespace Node is assigned to each argument and local *              so that ref_of() can return a pointer to the Node. * ******************************************************************************/voidacpi_ds_method_data_init (	struct acpi_walk_state          *walk_state){	u32                             i;	ACPI_FUNCTION_TRACE ("ds_method_data_init");	/* Init the method arguments */	for (i = 0; i < ACPI_METHOD_NUM_ARGS; i++) {		ACPI_MOVE_32_TO_32 (&walk_state->arguments[i].name,				   NAMEOF_ARG_NTE);		walk_state->arguments[i].name.integer |= (i << 24);		walk_state->arguments[i].descriptor   = ACPI_DESC_TYPE_NAMED;		walk_state->arguments[i].type         = ACPI_TYPE_ANY;		walk_state->arguments[i].flags        = ANOBJ_END_OF_PEER_LIST | ANOBJ_METHOD_ARG;	}	/* Init the method locals */	for (i = 0; i < ACPI_METHOD_NUM_LOCALS; i++) {		ACPI_MOVE_32_TO_32 (&walk_state->local_variables[i].name,				   NAMEOF_LOCAL_NTE);		walk_state->local_variables[i].name.integer |= (i << 24);		walk_state->local_variables[i].descriptor  = ACPI_DESC_TYPE_NAMED;		walk_state->local_variables[i].type        = ACPI_TYPE_ANY;		walk_state->local_variables[i].flags       = ANOBJ_END_OF_PEER_LIST | ANOBJ_METHOD_LOCAL;	}	return_VOID;}/******************************************************************************* * * FUNCTION:    acpi_ds_method_data_delete_all * * PARAMETERS:  walk_state          - Current walk state object * * RETURN:      None * * DESCRIPTION: Delete method locals and arguments.  Arguments are only *              deleted if this method was called from another method. * ******************************************************************************/voidacpi_ds_method_data_delete_all (	struct acpi_walk_state          *walk_state){	u32                             index;	ACPI_FUNCTION_TRACE ("ds_method_data_delete_all");	/* Detach the locals */	for (index = 0; index < ACPI_METHOD_NUM_LOCALS; index++) {		if (walk_state->local_variables[index].object) {			ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Deleting Local%d=%p\n",					index, walk_state->local_variables[index].object));			/* Detach object (if present) and remove a reference */			acpi_ns_detach_object (&walk_state->local_variables[index]);		}	}	/* Detach the arguments */	for (index = 0; index < ACPI_METHOD_NUM_ARGS; index++) {		if (walk_state->arguments[index].object) {			ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Deleting Arg%d=%p\n",					index, walk_state->arguments[index].object));			/* Detach object (if present) and remove a reference */			acpi_ns_detach_object (&walk_state->arguments[index]);		}	}	return_VOID;}/******************************************************************************* * * FUNCTION:    acpi_ds_method_data_init_args * * PARAMETERS:  *Params         - Pointer to a parameter list for the method *              max_param_count - The arg count for this method *              walk_state      - Current walk state object * * RETURN:      Status * * DESCRIPTION: Initialize arguments for a method.  The parameter list is a list *              of ACPI operand objects, either null terminated or whose length *              is defined by max_param_count. * ******************************************************************************/acpi_statusacpi_ds_method_data_init_args (	union acpi_operand_object       **params,	u32                             max_param_count,	struct acpi_walk_state          *walk_state){	acpi_status                     status;	u32                             index = 0;	ACPI_FUNCTION_TRACE_PTR ("ds_method_data_init_args", params);	if (!params) {		ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "No param list passed to method\n"));		return_ACPI_STATUS (AE_OK);	}	/* Copy passed parameters into the new method stack frame  */	while ((index < ACPI_METHOD_NUM_ARGS) && (index < max_param_count) && params[index]) {		/*		 * A valid parameter.		 * Store the argument in the method/walk descriptor.		 * Do not copy the arg in order to implement call by reference		 */		status = acpi_ds_method_data_set_value (AML_ARG_OP, index, params[index], walk_state);		if (ACPI_FAILURE (status)) {			return_ACPI_STATUS (status);		}		index++;	}	ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "%d args passed to method\n", index));	return_ACPI_STATUS (AE_OK);}/******************************************************************************* * * FUNCTION:    acpi_ds_method_data_get_node * * PARAMETERS:  Opcode              - Either AML_LOCAL_OP or AML_ARG_OP *              Index               - which local_var or argument whose type *                                      to get *              walk_state          - Current walk state object * * RETURN:      Get the Node associated with a local or arg. * ******************************************************************************/acpi_statusacpi_ds_method_data_get_node (	u16                             opcode,	u32                             index,	struct acpi_walk_state          *walk_state,	struct acpi_namespace_node      **node){	ACPI_FUNCTION_TRACE ("ds_method_data_get_node");	/*	 * Method Locals and Arguments are supported	 */	switch (opcode) {	case AML_LOCAL_OP:		if (index > ACPI_METHOD_MAX_LOCAL) {			ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Local index %d is invalid (max %d)\n",				index, ACPI_METHOD_MAX_LOCAL));			return_ACPI_STATUS (AE_AML_INVALID_INDEX);		}		/* Return a pointer to the pseudo-node */		*node = &walk_state->local_variables[index];		break;	case AML_ARG_OP:		if (index > ACPI_METHOD_MAX_ARG) {			ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Arg index %d is invalid (max %d)\n",				index, ACPI_METHOD_MAX_ARG));			return_ACPI_STATUS (AE_AML_INVALID_INDEX);		}		/* Return a pointer to the pseudo-node */		*node = &walk_state->arguments[index];		break;	default:		ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Opcode %d is invalid\n", opcode));		return_ACPI_STATUS (AE_AML_BAD_OPCODE);	}	return_ACPI_STATUS (AE_OK);}/******************************************************************************* * * FUNCTION:    acpi_ds_method_data_set_value * * PARAMETERS:  Opcode              - Either AML_LOCAL_OP or AML_ARG_OP *              Index               - which local_var or argument to get *              Object              - Object to be inserted into the stack entry *              walk_state          - Current walk state object * * RETURN:      Status * * DESCRIPTION: Insert an object onto the method stack at entry Opcode:Index. *              Note: There is no "implicit conversion" for locals. * ******************************************************************************/acpi_statusacpi_ds_method_data_set_value (	u16                             opcode,	u32                             index,	union acpi_operand_object       *object,	struct acpi_walk_state          *walk_state){	acpi_status                     status;	struct acpi_namespace_node      *node;	ACPI_FUNCTION_TRACE ("ds_method_data_set_value");	ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,		"new_obj %p Opcode %X, Refs=%d [%s]\n", object,		opcode, object->common.reference_count,		acpi_ut_get_type_name (object->common.type)));	/* Get the namespace node for the arg/local */	status = acpi_ds_method_data_get_node (opcode, index, walk_state, &node);	if (ACPI_FAILURE (status)) {		return_ACPI_STATUS (status);	}	/*	 * Increment ref count so object can't be deleted while installed.	 * NOTE: We do not copy the object in order to preserve the call by	 * reference semantics of ACPI Control Method invocation.	 * (See ACPI specification 2.0_c)	 */	acpi_ut_add_reference (object);	/* Install the object */	node->object = object;	return_ACPI_STATUS (status);}/******************************************************************************* * * FUNCTION:    acpi_ds_method_data_get_type * * PARAMETERS:  Opcode              - Either AML_LOCAL_OP or AML_ARG_OP *              Index               - which local_var or argument whose type *                                      to get *              walk_state          - Current walk state object * * RETURN:      Data type of current value of the selected Arg or Local * ******************************************************************************/#ifdef ACPI_FUTURE_USAGEacpi_object_typeacpi_ds_method_data_get_type (	u16                             opcode,	u32                             index,	struct acpi_walk_state          *walk_state)

⌨️ 快捷键说明

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