📄 exstore.c
字号:
/* * The destination element is not a package, so we need to * convert the contents of the source (Source_desc) and copy into * the destination (Obj_desc) */ status = acpi_ex_store_object_to_object (source_desc, obj_desc, walk_state); if (ACPI_FAILURE (status)) { /* * An error occurrered when copying the internal object * so delete the reference. */ ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Unable to copy the internal object\n")); return_ACPI_STATUS (AE_AML_OPERAND_TYPE); } } } break; case ACPI_TYPE_BUFFER_FIELD: /* TBD: can probably call the generic Buffer/Field routines */ /* * Storing into a buffer at a location defined by an Index. * * Each 8-bit element of the source object is written to the * 8-bit Buffer Field of the Index destination object. */ /* * Set the Obj_desc to the destination object and type check. */ obj_desc = dest_desc->reference.object; if (obj_desc->common.type != ACPI_TYPE_BUFFER) { return_ACPI_STATUS (AE_AML_OPERAND_TYPE); } /* * The assignment of the individual elements will be slightly * different for each source type. */ switch (source_desc->common.type) { case ACPI_TYPE_INTEGER: /* * Type is Integer, assign bytewise * This loop to assign each of the elements is somewhat * backward because of the Big Endian-ness of IA-64 */ length = sizeof (acpi_integer); for (i = length; i != 0; i--) { value = (u8)(source_desc->integer.value >> (MUL_8 (i - 1))); obj_desc->buffer.pointer[dest_desc->reference.offset] = value; } break; case ACPI_TYPE_BUFFER: /* * Type is Buffer, the Length is in the structure. * Just loop through the elements and assign each one in turn. */ length = source_desc->buffer.length; for (i = 0; i < length; i++) { value = source_desc->buffer.pointer[i]; obj_desc->buffer.pointer[dest_desc->reference.offset] = value; } break; case ACPI_TYPE_STRING: /* * Type is String, the Length is in the structure. * Just loop through the elements and assign each one in turn. */ length = source_desc->string.length; for (i = 0; i < length; i++) { value = source_desc->string.pointer[i]; obj_desc->buffer.pointer[dest_desc->reference.offset] = value; } break; default: /* Other types are invalid */ ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Source must be Number/Buffer/String type, not %X\n", source_desc->common.type)); status = AE_AML_OPERAND_TYPE; break; } break; default: ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Target is not a Package or Buffer_field\n")); status = AE_AML_OPERAND_TYPE; break; } return_ACPI_STATUS (status);}/******************************************************************************* * * FUNCTION: Acpi_ex_store_object_to_node * * PARAMETERS: *Source_desc - Value to be stored * *Node - Named object to receive the value * * RETURN: Status * * DESCRIPTION: Store the object to the named object. * * The Assignment of an object to a named object is handled here * The val passed in will replace the current value (if any) * with the input value. * * When storing into an object the data is converted to the * target object type then stored in the object. This means * that the target object type (for an initialized target) will * not be changed by a store operation. * * NOTE: the global lock is acquired early. This will result * in the global lock being held a bit longer. Also, if the * function fails during set up we may get the lock when we * don't really need it. I don't think we care. * ******************************************************************************/acpi_statusacpi_ex_store_object_to_node ( acpi_operand_object *source_desc, acpi_namespace_node *node, acpi_walk_state *walk_state){ acpi_status status = AE_OK; acpi_operand_object *target_desc; acpi_object_type8 target_type = ACPI_TYPE_ANY; FUNCTION_TRACE ("Ex_store_object_to_node"); /* * Assuming the parameters were already validated */ /* * Get current type of the node, and object attached to Node */ target_type = acpi_ns_get_type (node); target_desc = acpi_ns_get_attached_object (node); ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Storing %p(%s) into node %p(%s)\n", node, acpi_ut_get_type_name (source_desc->common.type), source_desc, acpi_ut_get_type_name (target_type))); /* * Resolve the source object to an actual value * (If it is a reference object) */ status = acpi_ex_resolve_object (&source_desc, target_type, walk_state); if (ACPI_FAILURE (status)) { return_ACPI_STATUS (status); } /* * Do the actual store operation */ switch (target_type) { case ACPI_TYPE_BUFFER_FIELD: case INTERNAL_TYPE_REGION_FIELD: case INTERNAL_TYPE_BANK_FIELD: case INTERNAL_TYPE_INDEX_FIELD: /* * For fields, copy the source data to the target field. */ status = acpi_ex_write_data_to_field (source_desc, target_desc); break; case ACPI_TYPE_INTEGER: case ACPI_TYPE_STRING: case ACPI_TYPE_BUFFER: /* * These target types are all of type Integer/String/Buffer, and * therefore support implicit conversion before the store. * * Copy and/or convert the source object to a new target object */ status = acpi_ex_store_object (source_desc, target_type, &target_desc, walk_state); if (ACPI_FAILURE (status)) { return_ACPI_STATUS (status); } /* * Store the new Target_desc as the new value of the Name, and set * the Name's type to that of the value being stored in it. * Source_desc reference count is incremented by Attach_object. */ status = acpi_ns_attach_object (node, target_desc, target_type); ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Store %s into %s via Convert/Attach\n", acpi_ut_get_type_name (target_desc->common.type), acpi_ut_get_type_name (target_type))); break; default: ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Storing %s (%p) directly into node (%p), no implicit conversion\n", acpi_ut_get_type_name (source_desc->common.type), source_desc, node)); /* No conversions for all other types. Just attach the source object */ status = acpi_ns_attach_object (node, source_desc, source_desc->common.type); break; } return_ACPI_STATUS (status);}/******************************************************************************* * * FUNCTION: Acpi_ex_store_object_to_object * * PARAMETERS: *Source_desc - Value to be stored * *Dest_desc - Object to receive the value * * RETURN: Status * * DESCRIPTION: Store an object to another object. * * The Assignment of an object to another (not named) object * is handled here. * The val passed in will replace the current value (if any) * with the input value. * * When storing into an object the data is converted to the * target object type then stored in the object. This means * that the target object type (for an initialized target) will * not be changed by a store operation. * * This module allows destination types of Number, String, * and Buffer. * ******************************************************************************/acpi_statusacpi_ex_store_object_to_object ( acpi_operand_object *source_desc, acpi_operand_object *dest_desc, acpi_walk_state *walk_state){ acpi_status status = AE_OK; acpi_object_type8 destination_type = dest_desc->common.type; FUNCTION_TRACE ("Ex_store_object_to_object"); /* * Assuming the parameters are valid! */ ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Storing %p(%s) to %p(%s)\n", source_desc, acpi_ut_get_type_name (source_desc->common.type), dest_desc, acpi_ut_get_type_name (dest_desc->common.type))); /* * From this interface, we only support Integers/Strings/Buffers */ switch (destination_type) { case ACPI_TYPE_INTEGER: case ACPI_TYPE_STRING: case ACPI_TYPE_BUFFER: break; default: ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "Store into %s not implemented\n", acpi_ut_get_type_name (dest_desc->common.type))); return_ACPI_STATUS (AE_NOT_IMPLEMENTED); } /* * Resolve the source object to an actual value * (If it is a reference object) */ status = acpi_ex_resolve_object (&source_desc, destination_type, walk_state); if (ACPI_FAILURE (status)) { return_ACPI_STATUS (status); } /* * Copy and/or convert the source object to the destination object */ status = acpi_ex_store_object (source_desc, destination_type, &dest_desc, walk_state); return_ACPI_STATUS (status);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -