excreate.c
来自「是关于linux2.5.1的完全源码」· C语言 代码 · 共 583 行 · 第 1/2 页
C
583 行
/****************************************************************************** * * Module Name: excreate - Named object creation * $Revision: 89 $ * *****************************************************************************//* * Copyright (C) 2000 - 2002, R. Byron Moore * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#include "acpi.h"#include "acparser.h"#include "acinterp.h"#include "amlcode.h"#include "acnamesp.h"#include "acevents.h"#include "acdispat.h"#include "actables.h"#define _COMPONENT ACPI_EXECUTER ACPI_MODULE_NAME ("excreate")/***************************************************************************** * * FUNCTION: Acpi_ex_create_alias * * PARAMETERS: Walk_state - Current state, contains List of * operands for the opcode * * RETURN: Status * * DESCRIPTION: Create a new named alias * ****************************************************************************/acpi_statusacpi_ex_create_alias ( acpi_walk_state *walk_state){ acpi_namespace_node *source_node; acpi_status status; ACPI_FUNCTION_TRACE ("Ex_create_alias"); /* Get the source/alias operands (both namespace nodes) */ source_node = (acpi_namespace_node *) walk_state->operands[1]; /* Attach the original source object to the new Alias Node */ status = acpi_ns_attach_object ((acpi_namespace_node *) walk_state->operands[0], acpi_ns_get_attached_object (source_node), source_node->type); /* * The new alias assumes the type of the source, but it points * to the same object. The reference count of the object has an * additional reference to prevent deletion out from under either the * source or the alias Node */ /* Since both operands are Nodes, we don't need to delete them */ return_ACPI_STATUS (status);}/***************************************************************************** * * FUNCTION: Acpi_ex_create_event * * PARAMETERS: Walk_state - Current state * * RETURN: Status * * DESCRIPTION: Create a new event object * ****************************************************************************/acpi_statusacpi_ex_create_event ( acpi_walk_state *walk_state){ acpi_status status; acpi_operand_object *obj_desc; ACPI_FUNCTION_TRACE ("Ex_create_event"); obj_desc = acpi_ut_create_internal_object (ACPI_TYPE_EVENT); 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 */ status = acpi_os_create_semaphore (ACPI_NO_UNIT_LIMIT, 0, &obj_desc->event.semaphore); if (ACPI_FAILURE (status)) { goto cleanup; } /* Attach object to the Node */ status = acpi_ns_attach_object ((acpi_namespace_node *) walk_state->operands[0], obj_desc, ACPI_TYPE_EVENT);cleanup: /* * Remove local reference to the object (on error, will cause deletion * of both object and semaphore if present.) */ acpi_ut_remove_reference (obj_desc); return_ACPI_STATUS (status);}/***************************************************************************** * * FUNCTION: Acpi_ex_create_mutex * * PARAMETERS: Walk_state - Current state * * RETURN: Status * * DESCRIPTION: Create a new mutex object * * Mutex (Name[0], Sync_level[1]) * ****************************************************************************/acpi_statusacpi_ex_create_mutex ( acpi_walk_state *walk_state){ acpi_status status = AE_OK; acpi_operand_object *obj_desc; ACPI_FUNCTION_TRACE_PTR ("Ex_create_mutex", ACPI_WALK_OPERANDS); /* Create the new mutex object */ obj_desc = acpi_ut_create_internal_object (ACPI_TYPE_MUTEX); if (!obj_desc) { status = AE_NO_MEMORY; goto cleanup; } /* * Create the actual OS semaphore. * One unit max to make it a mutex, with one initial unit to allow * the mutex to be acquired. */ status = acpi_os_create_semaphore (1, 1, &obj_desc->mutex.semaphore); if (ACPI_FAILURE (status)) { goto cleanup; } /* Init object and attach to NS node */ obj_desc->mutex.sync_level = (u8) walk_state->operands[1]->integer.value; status = acpi_ns_attach_object ((acpi_namespace_node *) walk_state->operands[0], obj_desc, ACPI_TYPE_MUTEX);cleanup: /* * Remove local reference to the object (on error, will cause deletion * of both object and semaphore if present.) */ acpi_ut_remove_reference (obj_desc); return_ACPI_STATUS (status);}/***************************************************************************** * * FUNCTION: Acpi_ex_create_region * * PARAMETERS: Aml_start - Pointer to the region declaration AML * Aml_length - Max length of the declaration AML * Operands - List of operands for the opcode * Walk_state - Current state * * RETURN: Status * * DESCRIPTION: Create a new operation region object * ****************************************************************************/acpi_statusacpi_ex_create_region ( u8 *aml_start, u32 aml_length, u8 region_space, acpi_walk_state *walk_state){ acpi_status status; acpi_operand_object *obj_desc; acpi_namespace_node *node; acpi_operand_object *region_obj2; ACPI_FUNCTION_TRACE ("Ex_create_region"); /* Get the Node from the object stack */ node = walk_state->op->node; /* * If the region object is already attached to this node, * just return */ if (acpi_ns_get_attached_object (node)) { return_ACPI_STATUS (AE_OK); } /* * Space ID must be one of the predefined IDs, or in the user-defined * range */ if ((region_space >= ACPI_NUM_PREDEFINED_REGIONS) && (region_space < ACPI_USER_REGION_BEGIN)) { ACPI_REPORT_ERROR (("Invalid Address_space type %X\n", region_space)); return_ACPI_STATUS (AE_AML_INVALID_SPACE_ID); } ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "Region Type - %s (%X)\n", acpi_ut_get_region_name (region_space), region_space)); /* Create the region descriptor */ obj_desc = acpi_ut_create_internal_object (ACPI_TYPE_REGION); 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. */ region_obj2 = obj_desc->common.next_object; 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; obj_desc->region.node = node; /* Install the new region object in the parent Node */ status = acpi_ns_attach_object (node, obj_desc, ACPI_TYPE_REGION);cleanup: /* Remove local reference to the object */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?