Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: utobject - ACPI object create/delete/size/cache routines |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
| 8 | * Copyright (C) 2000 - 2005, R. Byron Moore |
| 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions, and the following disclaimer, |
| 16 | * without modification. |
| 17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 18 | * substantially similar to the "NO WARRANTY" disclaimer below |
| 19 | * ("Disclaimer") and any redistribution must be conditioned upon |
| 20 | * including a substantially similar Disclaimer requirement for further |
| 21 | * binary redistribution. |
| 22 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 23 | * of any contributors may be used to endorse or promote products derived |
| 24 | * from this software without specific prior written permission. |
| 25 | * |
| 26 | * Alternatively, this software may be distributed under the terms of the |
| 27 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 28 | * Software Foundation. |
| 29 | * |
| 30 | * NO WARRANTY |
| 31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR |
| 34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 35 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 36 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 37 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 38 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 39 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| 40 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 41 | * POSSIBILITY OF SUCH DAMAGES. |
| 42 | */ |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <acpi/acpi.h> |
| 45 | #include <acpi/acnamesp.h> |
| 46 | #include <acpi/amlcode.h> |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define _COMPONENT ACPI_UTILITIES |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 49 | ACPI_MODULE_NAME("utobject") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 51 | /* Local prototypes */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 52 | static acpi_status |
| 53 | acpi_ut_get_simple_object_size(union acpi_operand_object *obj, |
| 54 | acpi_size * obj_length); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 55 | |
| 56 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 57 | acpi_ut_get_package_object_size(union acpi_operand_object *obj, |
| 58 | acpi_size * obj_length); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 59 | |
| 60 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 61 | acpi_ut_get_element_length(u8 object_type, |
| 62 | union acpi_operand_object *source_object, |
| 63 | union acpi_generic_state *state, void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | /******************************************************************************* |
| 66 | * |
| 67 | * FUNCTION: acpi_ut_create_internal_object_dbg |
| 68 | * |
| 69 | * PARAMETERS: module_name - Source file name of caller |
| 70 | * line_number - Line number of caller |
| 71 | * component_id - Component type of caller |
| 72 | * Type - ACPI Type of the new object |
| 73 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 74 | * RETURN: A new internal object, null on failure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | * |
| 76 | * DESCRIPTION: Create and initialize a new internal object. |
| 77 | * |
| 78 | * NOTE: We always allocate the worst-case object descriptor because |
| 79 | * these objects are cached, and we want them to be |
| 80 | * one-size-satisifies-any-request. This in itself may not be |
| 81 | * the most memory efficient, but the efficiency of the object |
| 82 | * cache should more than make up for this! |
| 83 | * |
| 84 | ******************************************************************************/ |
| 85 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 86 | union acpi_operand_object *acpi_ut_create_internal_object_dbg(char *module_name, |
| 87 | u32 line_number, |
| 88 | u32 component_id, |
| 89 | acpi_object_type |
| 90 | type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 92 | union acpi_operand_object *object; |
| 93 | union acpi_operand_object *second_object; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 95 | ACPI_FUNCTION_TRACE_STR("ut_create_internal_object_dbg", |
| 96 | acpi_ut_get_type_name(type)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | /* Allocate the raw object descriptor */ |
| 99 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 100 | object = |
| 101 | acpi_ut_allocate_object_desc_dbg(module_name, line_number, |
| 102 | component_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | if (!object) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 104 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | switch (type) { |
| 108 | case ACPI_TYPE_REGION: |
| 109 | case ACPI_TYPE_BUFFER_FIELD: |
| 110 | |
| 111 | /* These types require a secondary object */ |
| 112 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 113 | second_object = acpi_ut_allocate_object_desc_dbg(module_name, |
| 114 | line_number, |
| 115 | component_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | if (!second_object) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 117 | acpi_ut_delete_object_desc(object); |
| 118 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | second_object->common.type = ACPI_TYPE_LOCAL_EXTRA; |
| 122 | second_object->common.reference_count = 1; |
| 123 | |
| 124 | /* Link the second object to the first */ |
| 125 | |
| 126 | object->common.next_object = second_object; |
| 127 | break; |
| 128 | |
| 129 | default: |
| 130 | /* All others have no secondary object */ |
| 131 | break; |
| 132 | } |
| 133 | |
| 134 | /* Save the object type in the object descriptor */ |
| 135 | |
| 136 | object->common.type = (u8) type; |
| 137 | |
| 138 | /* Init the reference count */ |
| 139 | |
| 140 | object->common.reference_count = 1; |
| 141 | |
| 142 | /* Any per-type initialization should go here */ |
| 143 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 144 | return_PTR(object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | /******************************************************************************* |
| 148 | * |
| 149 | * FUNCTION: acpi_ut_create_buffer_object |
| 150 | * |
| 151 | * PARAMETERS: buffer_size - Size of buffer to be created |
| 152 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 153 | * RETURN: Pointer to a new Buffer object, null on failure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | * |
| 155 | * DESCRIPTION: Create a fully initialized buffer object |
| 156 | * |
| 157 | ******************************************************************************/ |
| 158 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 159 | union acpi_operand_object *acpi_ut_create_buffer_object(acpi_size buffer_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 161 | union acpi_operand_object *buffer_desc; |
| 162 | u8 *buffer = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 164 | ACPI_FUNCTION_TRACE_U32("ut_create_buffer_object", buffer_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
| 166 | /* Create a new Buffer object */ |
| 167 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 168 | buffer_desc = acpi_ut_create_internal_object(ACPI_TYPE_BUFFER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | if (!buffer_desc) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 170 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | /* Create an actual buffer only if size > 0 */ |
| 174 | |
| 175 | if (buffer_size > 0) { |
| 176 | /* Allocate the actual buffer */ |
| 177 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 178 | buffer = ACPI_MEM_CALLOCATE(buffer_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (!buffer) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | ACPI_REPORT_ERROR(("create_buffer: could not allocate size %X\n", (u32) buffer_size)); |
| 181 | acpi_ut_remove_reference(buffer_desc); |
| 182 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |
| 184 | } |
| 185 | |
| 186 | /* Complete buffer object initialization */ |
| 187 | |
| 188 | buffer_desc->buffer.flags |= AOPOBJ_DATA_VALID; |
| 189 | buffer_desc->buffer.pointer = buffer; |
| 190 | buffer_desc->buffer.length = (u32) buffer_size; |
| 191 | |
| 192 | /* Return the new buffer descriptor */ |
| 193 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 194 | return_PTR(buffer_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | /******************************************************************************* |
| 198 | * |
| 199 | * FUNCTION: acpi_ut_create_string_object |
| 200 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 201 | * PARAMETERS: string_size - Size of string to be created. Does not |
| 202 | * include NULL terminator, this is added |
| 203 | * automatically. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | * |
| 205 | * RETURN: Pointer to a new String object |
| 206 | * |
| 207 | * DESCRIPTION: Create a fully initialized string object |
| 208 | * |
| 209 | ******************************************************************************/ |
| 210 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 211 | union acpi_operand_object *acpi_ut_create_string_object(acpi_size string_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 213 | union acpi_operand_object *string_desc; |
| 214 | char *string; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 216 | ACPI_FUNCTION_TRACE_U32("ut_create_string_object", string_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
| 218 | /* Create a new String object */ |
| 219 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 220 | string_desc = acpi_ut_create_internal_object(ACPI_TYPE_STRING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | if (!string_desc) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 222 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /* |
| 226 | * Allocate the actual string buffer -- (Size + 1) for NULL terminator. |
| 227 | * NOTE: Zero-length strings are NULL terminated |
| 228 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 229 | string = ACPI_MEM_CALLOCATE(string_size + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | if (!string) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 231 | ACPI_REPORT_ERROR(("create_string: could not allocate size %X\n", (u32) string_size)); |
| 232 | acpi_ut_remove_reference(string_desc); |
| 233 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | /* Complete string object initialization */ |
| 237 | |
| 238 | string_desc->string.pointer = string; |
| 239 | string_desc->string.length = (u32) string_size; |
| 240 | |
| 241 | /* Return the new string descriptor */ |
| 242 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 243 | return_PTR(string_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | /******************************************************************************* |
| 247 | * |
| 248 | * FUNCTION: acpi_ut_valid_internal_object |
| 249 | * |
| 250 | * PARAMETERS: Object - Object to be validated |
| 251 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 252 | * RETURN: TRUE if object is valid, FALSE otherwise |
| 253 | * |
| 254 | * DESCRIPTION: Validate a pointer to be an union acpi_operand_object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | * |
| 256 | ******************************************************************************/ |
| 257 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | u8 acpi_ut_valid_internal_object(void *object) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | { |
| 260 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 261 | ACPI_FUNCTION_NAME("ut_valid_internal_object"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | /* Check for a null pointer */ |
| 264 | |
| 265 | if (!object) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 266 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "**** Null Object Ptr\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | return (FALSE); |
| 268 | } |
| 269 | |
| 270 | /* Check the descriptor type field */ |
| 271 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 272 | switch (ACPI_GET_DESCRIPTOR_TYPE(object)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | case ACPI_DESC_TYPE_OPERAND: |
| 274 | |
| 275 | /* The object appears to be a valid union acpi_operand_object */ |
| 276 | |
| 277 | return (TRUE); |
| 278 | |
| 279 | default: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 280 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 281 | "%p is not not an ACPI operand obj [%s]\n", |
| 282 | object, acpi_ut_get_descriptor_name(object))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | break; |
| 284 | } |
| 285 | |
| 286 | return (FALSE); |
| 287 | } |
| 288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | /******************************************************************************* |
| 290 | * |
| 291 | * FUNCTION: acpi_ut_allocate_object_desc_dbg |
| 292 | * |
| 293 | * PARAMETERS: module_name - Caller's module name (for error output) |
| 294 | * line_number - Caller's line number (for error output) |
| 295 | * component_id - Caller's component ID (for error output) |
| 296 | * |
| 297 | * RETURN: Pointer to newly allocated object descriptor. Null on error |
| 298 | * |
| 299 | * DESCRIPTION: Allocate a new object descriptor. Gracefully handle |
| 300 | * error conditions. |
| 301 | * |
| 302 | ******************************************************************************/ |
| 303 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 304 | void *acpi_ut_allocate_object_desc_dbg(char *module_name, |
| 305 | u32 line_number, u32 component_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 307 | union acpi_operand_object *object; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 309 | ACPI_FUNCTION_TRACE("ut_allocate_object_desc_dbg"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 311 | object = acpi_os_acquire_object(acpi_gbl_operand_cache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | if (!object) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 313 | _ACPI_REPORT_ERROR(module_name, line_number, component_id, |
| 314 | ("Could not allocate an object descriptor\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 316 | return_PTR(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* Mark the descriptor type */ |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 320 | memset(object, 0, sizeof(union acpi_operand_object)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 321 | ACPI_SET_DESCRIPTOR_TYPE(object, ACPI_DESC_TYPE_OPERAND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 323 | ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "%p Size %X\n", |
| 324 | object, (u32) sizeof(union acpi_operand_object))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 326 | return_PTR(object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | /******************************************************************************* |
| 330 | * |
| 331 | * FUNCTION: acpi_ut_delete_object_desc |
| 332 | * |
| 333 | * PARAMETERS: Object - An Acpi internal object to be deleted |
| 334 | * |
| 335 | * RETURN: None. |
| 336 | * |
| 337 | * DESCRIPTION: Free an ACPI object descriptor or add it to the object cache |
| 338 | * |
| 339 | ******************************************************************************/ |
| 340 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 341 | void acpi_ut_delete_object_desc(union acpi_operand_object *object) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 343 | ACPI_FUNCTION_TRACE_PTR("ut_delete_object_desc", object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | /* Object must be an union acpi_operand_object */ |
| 346 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 347 | if (ACPI_GET_DESCRIPTOR_TYPE(object) != ACPI_DESC_TYPE_OPERAND) { |
| 348 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
| 349 | "%p is not an ACPI Operand object [%s]\n", |
| 350 | object, acpi_ut_get_descriptor_name(object))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return_VOID; |
| 352 | } |
| 353 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 354 | (void)acpi_os_release_object(acpi_gbl_operand_cache, object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | return_VOID; |
| 356 | } |
| 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | /******************************************************************************* |
| 359 | * |
| 360 | * FUNCTION: acpi_ut_get_simple_object_size |
| 361 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 362 | * PARAMETERS: internal_object - An ACPI operand object |
| 363 | * obj_length - Where the length is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | * |
| 365 | * RETURN: Status |
| 366 | * |
| 367 | * DESCRIPTION: This function is called to determine the space required to |
| 368 | * contain a simple object for return to an external user. |
| 369 | * |
| 370 | * The length includes the object structure plus any additional |
| 371 | * needed space. |
| 372 | * |
| 373 | ******************************************************************************/ |
| 374 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 375 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 376 | acpi_ut_get_simple_object_size(union acpi_operand_object *internal_object, |
| 377 | acpi_size * obj_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 379 | acpi_size length; |
| 380 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 382 | ACPI_FUNCTION_TRACE_PTR("ut_get_simple_object_size", internal_object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 384 | /* |
| 385 | * Handle a null object (Could be a uninitialized package |
| 386 | * element -- which is legal) |
| 387 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | if (!internal_object) { |
| 389 | *obj_length = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 390 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | /* Start with the length of the Acpi object */ |
| 394 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 395 | length = sizeof(union acpi_object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 397 | if (ACPI_GET_DESCRIPTOR_TYPE(internal_object) == ACPI_DESC_TYPE_NAMED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | /* Object is a named object (reference), just return the length */ |
| 399 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 400 | *obj_length = ACPI_ROUND_UP_TO_NATIVE_WORD(length); |
| 401 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | /* |
| 405 | * The final length depends on the object type |
| 406 | * Strings and Buffers are packed right up against the parent object and |
| 407 | * must be accessed bytewise or there may be alignment problems on |
| 408 | * certain processors |
| 409 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 410 | switch (ACPI_GET_OBJECT_TYPE(internal_object)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | case ACPI_TYPE_STRING: |
| 412 | |
| 413 | length += (acpi_size) internal_object->string.length + 1; |
| 414 | break; |
| 415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | case ACPI_TYPE_BUFFER: |
| 417 | |
| 418 | length += (acpi_size) internal_object->buffer.length; |
| 419 | break; |
| 420 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | case ACPI_TYPE_INTEGER: |
| 422 | case ACPI_TYPE_PROCESSOR: |
| 423 | case ACPI_TYPE_POWER: |
| 424 | |
| 425 | /* |
| 426 | * No extra data for these types |
| 427 | */ |
| 428 | break; |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | case ACPI_TYPE_LOCAL_REFERENCE: |
| 431 | |
| 432 | switch (internal_object->reference.opcode) { |
| 433 | case AML_INT_NAMEPATH_OP: |
| 434 | |
| 435 | /* |
| 436 | * Get the actual length of the full pathname to this object. |
| 437 | * The reference will be converted to the pathname to the object |
| 438 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 439 | length += |
| 440 | ACPI_ROUND_UP_TO_NATIVE_WORD |
| 441 | (acpi_ns_get_pathname_length |
| 442 | (internal_object->reference.node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | break; |
| 444 | |
| 445 | default: |
| 446 | |
| 447 | /* |
| 448 | * No other reference opcodes are supported. |
| 449 | * Notably, Locals and Args are not supported, but this may be |
| 450 | * required eventually. |
| 451 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 452 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
| 453 | "Unsupported Reference opcode=%X in object %p\n", |
| 454 | internal_object->reference.opcode, |
| 455 | internal_object)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | status = AE_TYPE; |
| 457 | break; |
| 458 | } |
| 459 | break; |
| 460 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | default: |
| 462 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 463 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
| 464 | "Unsupported type=%X in object %p\n", |
| 465 | ACPI_GET_OBJECT_TYPE(internal_object), |
| 466 | internal_object)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | status = AE_TYPE; |
| 468 | break; |
| 469 | } |
| 470 | |
| 471 | /* |
| 472 | * Account for the space required by the object rounded up to the next |
| 473 | * multiple of the machine word size. This keeps each object aligned |
| 474 | * on a machine word boundary. (preventing alignment faults on some |
| 475 | * machines.) |
| 476 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 477 | *obj_length = ACPI_ROUND_UP_TO_NATIVE_WORD(length); |
| 478 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | } |
| 480 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | /******************************************************************************* |
| 482 | * |
| 483 | * FUNCTION: acpi_ut_get_element_length |
| 484 | * |
| 485 | * PARAMETERS: acpi_pkg_callback |
| 486 | * |
| 487 | * RETURN: Status |
| 488 | * |
| 489 | * DESCRIPTION: Get the length of one package element. |
| 490 | * |
| 491 | ******************************************************************************/ |
| 492 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 493 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 494 | acpi_ut_get_element_length(u8 object_type, |
| 495 | union acpi_operand_object *source_object, |
| 496 | union acpi_generic_state *state, void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 498 | acpi_status status = AE_OK; |
| 499 | struct acpi_pkg_info *info = (struct acpi_pkg_info *)context; |
| 500 | acpi_size object_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
| 502 | switch (object_type) { |
| 503 | case ACPI_COPY_TYPE_SIMPLE: |
| 504 | |
| 505 | /* |
| 506 | * Simple object - just get the size (Null object/entry is handled |
| 507 | * here also) and sum it into the running package length |
| 508 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 509 | status = |
| 510 | acpi_ut_get_simple_object_size(source_object, |
| 511 | &object_space); |
| 512 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | return (status); |
| 514 | } |
| 515 | |
| 516 | info->length += object_space; |
| 517 | break; |
| 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | case ACPI_COPY_TYPE_PACKAGE: |
| 520 | |
| 521 | /* Package object - nothing much to do here, let the walk handle it */ |
| 522 | |
| 523 | info->num_packages++; |
| 524 | state->pkg.this_target_obj = NULL; |
| 525 | break; |
| 526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | default: |
| 528 | |
| 529 | /* No other types allowed */ |
| 530 | |
| 531 | return (AE_BAD_PARAMETER); |
| 532 | } |
| 533 | |
| 534 | return (status); |
| 535 | } |
| 536 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | /******************************************************************************* |
| 538 | * |
| 539 | * FUNCTION: acpi_ut_get_package_object_size |
| 540 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 541 | * PARAMETERS: internal_object - An ACPI internal object |
| 542 | * obj_length - Where the length is returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | * |
| 544 | * RETURN: Status |
| 545 | * |
| 546 | * DESCRIPTION: This function is called to determine the space required to |
| 547 | * contain a package object for return to an external user. |
| 548 | * |
| 549 | * This is moderately complex since a package contains other |
| 550 | * objects including packages. |
| 551 | * |
| 552 | ******************************************************************************/ |
| 553 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 554 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 555 | acpi_ut_get_package_object_size(union acpi_operand_object *internal_object, |
| 556 | acpi_size * obj_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 558 | acpi_status status; |
| 559 | struct acpi_pkg_info info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 561 | ACPI_FUNCTION_TRACE_PTR("ut_get_package_object_size", internal_object); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 563 | info.length = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | info.object_space = 0; |
| 565 | info.num_packages = 1; |
| 566 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 567 | status = acpi_ut_walk_package_tree(internal_object, NULL, |
| 568 | acpi_ut_get_element_length, &info); |
| 569 | if (ACPI_FAILURE(status)) { |
| 570 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | /* |
| 574 | * We have handled all of the objects in all levels of the package. |
| 575 | * just add the length of the package objects themselves. |
| 576 | * Round up to the next machine word. |
| 577 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 578 | info.length += ACPI_ROUND_UP_TO_NATIVE_WORD(sizeof(union acpi_object)) * |
| 579 | (acpi_size) info.num_packages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | |
| 581 | /* Return the total package length */ |
| 582 | |
| 583 | *obj_length = info.length; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 584 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | } |
| 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | /******************************************************************************* |
| 588 | * |
| 589 | * FUNCTION: acpi_ut_get_object_size |
| 590 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 591 | * PARAMETERS: internal_object - An ACPI internal object |
| 592 | * obj_length - Where the length will be returned |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | * |
| 594 | * RETURN: Status |
| 595 | * |
| 596 | * DESCRIPTION: This function is called to determine the space required to |
| 597 | * contain an object for return to an API user. |
| 598 | * |
| 599 | ******************************************************************************/ |
| 600 | |
| 601 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 602 | acpi_ut_get_object_size(union acpi_operand_object *internal_object, |
| 603 | acpi_size * obj_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 605 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 607 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 609 | if ((ACPI_GET_DESCRIPTOR_TYPE(internal_object) == |
| 610 | ACPI_DESC_TYPE_OPERAND) |
| 611 | && (ACPI_GET_OBJECT_TYPE(internal_object) == ACPI_TYPE_PACKAGE)) { |
| 612 | status = |
| 613 | acpi_ut_get_package_object_size(internal_object, |
| 614 | obj_length); |
| 615 | } else { |
| 616 | status = |
| 617 | acpi_ut_get_simple_object_size(internal_object, obj_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | return (status); |
| 621 | } |