if ((target_node->type == ACPI_TYPE_LOCAL_ALIAS) ||
(target_node->type == ACPI_TYPE_LOCAL_METHOD_ALIAS)) { /* * Dereference an existing alias so that we don't create a chain * of aliases. With this code, we guarantee that an alias is * always exactly one level of indirection away from the * actual aliased name.
*/
target_node =
ACPI_CAST_PTR(struct acpi_namespace_node,
target_node->object);
}
/* Ensure that the target node is valid */
if (!target_node) {
return_ACPI_STATUS(AE_NULL_OBJECT);
}
/* Construct the alias object (a namespace node) */
switch (target_node->type) { case ACPI_TYPE_METHOD: /* * Control method aliases need to be differentiated with * a special type
*/
alias_node->type = ACPI_TYPE_LOCAL_METHOD_ALIAS; break;
default: /* * All other object types. * * The new alias has the type ALIAS and points to the original * NS node, not the object itself.
*/
alias_node->type = ACPI_TYPE_LOCAL_ALIAS;
alias_node->object =
ACPI_CAST_PTR(union acpi_operand_object, target_node); break;
}
/* Since both operands are Nodes, we don't need to delete them */
/******************************************************************************* * * FUNCTION: acpi_ex_create_event * * PARAMETERS: walk_state - Current state * * RETURN: Status * * DESCRIPTION: Create a new event object *
******************************************************************************/
acpi_status acpi_ex_create_event(struct acpi_walk_state *walk_state)
{
acpi_status status; union 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.os_semaphore); if (ACPI_FAILURE(status)) { goto cleanup;
}
/* Attach object to the Node */
status = acpi_ns_attach_object((struct 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_status acpi_ex_create_mutex(struct acpi_walk_state *walk_state)
{
acpi_status status = AE_OK; union acpi_operand_object *obj_desc;
status =
acpi_ns_attach_object(obj_desc->mutex.node, 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 * space_id - Address space ID for the region * walk_state - Current state * * RETURN: Status * * DESCRIPTION: Create a new operation region object *
******************************************************************************/
/* * 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 (!acpi_is_valid_space_id(space_id)) { /* * Print an error message, but continue. We don't want to abort * a table load for this exception. Instead, if the region is * actually used at runtime, abort the executing method.
*/
ACPI_ERROR((AE_INFO, "Invalid/unknown Address Space ID: 0x%2.2X",
space_id));
}
ACPI_DEBUG_PRINT((ACPI_DB_LOAD, "Region Type - %s (0x%X)\n",
acpi_ut_get_region_name(space_id), space_id));
/* 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 = acpi_ns_get_secondary_object(obj_desc);
region_obj2->extra.aml_start = aml_start;
region_obj2->extra.aml_length = aml_length;
region_obj2->extra.method_REG = NULL; if (walk_state->scope_info) {
region_obj2->extra.scope_node =
walk_state->scope_info->scope.node;
} else {
region_obj2->extra.scope_node = node;
}
/******************************************************************************* * * FUNCTION: acpi_ex_create_method * * PARAMETERS: aml_start - First byte of the method's AML * aml_length - AML byte count for this method * walk_state - Current state * * RETURN: Status * * DESCRIPTION: Create a new method object *
******************************************************************************/
/* * Disassemble the method flags. Split off the arg_count, Serialized * flag, and sync_level for efficiency.
*/
method_flags = (u8)operand[1]->integer.value;
obj_desc->method.param_count = (u8)
(method_flags & AML_METHOD_ARG_COUNT);
/* * Get the sync_level. If method is serialized, a mutex will be * created for this method when it is parsed.
*/ if (method_flags & AML_METHOD_SERIALIZED) {
obj_desc->method.info_flags = ACPI_METHOD_SERIALIZED;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.