blob: 67b9f325c6fae9036628c863a97b80bf8ddda66f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2 *
3 * Module Name: utdelete - object deletion and reference count utilities
4 *
5 ******************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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 Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acinterp.h>
46#include <acpi/acnamesp.h>
47#include <acpi/acevents.h>
48#include <acpi/amlcode.h>
49
50#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("utdelete")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Robert Moore44f6c012005-04-18 22:49:35 -040053/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040054static void acpi_ut_delete_internal_obj(union acpi_operand_object *object);
Robert Moore44f6c012005-04-18 22:49:35 -040055
56static void
Len Brown4be44fc2005-08-05 00:44:28 -040057acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*******************************************************************************
60 *
61 * FUNCTION: acpi_ut_delete_internal_obj
62 *
Robert Moore44f6c012005-04-18 22:49:35 -040063 * PARAMETERS: Object - Object to be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
65 * RETURN: None
66 *
67 * DESCRIPTION: Low level object deletion, after reference counts have been
68 * updated (All reference counts, including sub-objects!)
69 *
70 ******************************************************************************/
71
Len Brown4be44fc2005-08-05 00:44:28 -040072static void acpi_ut_delete_internal_obj(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Len Brown4be44fc2005-08-05 00:44:28 -040074 void *obj_pointer = NULL;
75 union acpi_operand_object *handler_desc;
76 union acpi_operand_object *second_desc;
77 union acpi_operand_object *next_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Bob Mooreb229cf92006-04-21 17:15:00 -040079 ACPI_FUNCTION_TRACE_PTR(ut_delete_internal_obj, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 if (!object) {
82 return_VOID;
83 }
84
85 /*
86 * Must delete or free any pointers within the object that are not
87 * actual ACPI objects (for example, a raw buffer pointer).
88 */
Len Brown4be44fc2005-08-05 00:44:28 -040089 switch (ACPI_GET_OBJECT_TYPE(object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 case ACPI_TYPE_STRING:
91
Len Brown4be44fc2005-08-05 00:44:28 -040092 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
93 "**** String %p, ptr %p\n", object,
94 object->string.pointer));
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 /* Free the actual string buffer */
97
98 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) {
Bob Moore52fc0b02006-10-02 00:00:00 -040099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* But only if it is NOT a pointer into an ACPI table */
101
102 obj_pointer = object->string.pointer;
103 }
104 break;
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 case ACPI_TYPE_BUFFER:
107
Len Brown4be44fc2005-08-05 00:44:28 -0400108 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
109 "**** Buffer %p, ptr %p\n", object,
110 object->buffer.pointer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 /* Free the actual buffer */
113
114 if (!(object->common.flags & AOPOBJ_STATIC_POINTER)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* But only if it is NOT a pointer into an ACPI table */
117
118 obj_pointer = object->buffer.pointer;
119 }
120 break;
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 case ACPI_TYPE_PACKAGE:
123
Len Brown4be44fc2005-08-05 00:44:28 -0400124 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
125 " **** Package of count %X\n",
126 object->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /*
129 * Elements of the package are not handled here, they are deleted
130 * separately
131 */
132
133 /* Free the (variable length) element pointer array */
134
135 obj_pointer = object->package.elements;
136 break;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 case ACPI_TYPE_DEVICE:
139
140 if (object->device.gpe_block) {
Len Brown4be44fc2005-08-05 00:44:28 -0400141 (void)acpi_ev_delete_gpe_block(object->device.
142 gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144
145 /* Walk the handler list for this device */
146
147 handler_desc = object->device.handler;
148 while (handler_desc) {
149 next_desc = handler_desc->address_space.next;
Len Brown4be44fc2005-08-05 00:44:28 -0400150 acpi_ut_remove_reference(handler_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 handler_desc = next_desc;
152 }
153 break;
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 case ACPI_TYPE_MUTEX:
156
Len Brown4be44fc2005-08-05 00:44:28 -0400157 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
158 "***** Mutex %p, Semaphore %p\n",
159 object, object->mutex.semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Len Brown4be44fc2005-08-05 00:44:28 -0400161 acpi_ex_unlink_mutex(object);
162 (void)acpi_os_delete_semaphore(object->mutex.semaphore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 case ACPI_TYPE_EVENT:
166
Len Brown4be44fc2005-08-05 00:44:28 -0400167 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
168 "***** Event %p, Semaphore %p\n",
169 object, object->event.semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Len Brown4be44fc2005-08-05 00:44:28 -0400171 (void)acpi_os_delete_semaphore(object->event.semaphore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 object->event.semaphore = NULL;
173 break;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 case ACPI_TYPE_METHOD:
176
Len Brown4be44fc2005-08-05 00:44:28 -0400177 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
178 "***** Method %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* Delete the method semaphore if it exists */
181
182 if (object->method.semaphore) {
Len Brown4be44fc2005-08-05 00:44:28 -0400183 (void)acpi_os_delete_semaphore(object->method.
184 semaphore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 object->method.semaphore = NULL;
186 }
187 break;
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 case ACPI_TYPE_REGION:
190
Len Brown4be44fc2005-08-05 00:44:28 -0400191 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
192 "***** Region %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Len Brown4be44fc2005-08-05 00:44:28 -0400194 second_desc = acpi_ns_get_secondary_object(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (second_desc) {
196 /*
197 * Free the region_context if and only if the handler is one of the
198 * default handlers -- and therefore, we created the context object
199 * locally, it was not created by an external caller.
200 */
201 handler_desc = object->region.handler;
202 if (handler_desc) {
Bob Moore616861242006-03-17 16:44:00 -0500203 if (handler_desc->address_space.handler_flags &
Len Brown4be44fc2005-08-05 00:44:28 -0400204 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED) {
Bob Moore793c2382006-03-31 00:00:00 -0500205
206 /* Deactivate region and free region context */
207
208 if (handler_desc->address_space.setup) {
209 (void)handler_desc->
210 address_space.setup(object,
211 ACPI_REGION_DEACTIVATE,
212 handler_desc->
213 address_space.
214 context,
215 &second_desc->
216 extra.
217 region_context);
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221 acpi_ut_remove_reference(handler_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223
224 /* Now we can free the Extra object */
225
Len Brown4be44fc2005-08-05 00:44:28 -0400226 acpi_ut_delete_object_desc(second_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228 break;
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 case ACPI_TYPE_BUFFER_FIELD:
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
233 "***** Buffer Field %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Len Brown4be44fc2005-08-05 00:44:28 -0400235 second_desc = acpi_ns_get_secondary_object(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (second_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400237 acpi_ut_delete_object_desc(second_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239 break;
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 default:
242 break;
243 }
244
245 /* Free any allocated memory (pointer within the object) found above */
246
247 if (obj_pointer) {
Len Brown4be44fc2005-08-05 00:44:28 -0400248 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
249 "Deleting Object Subptr %p\n", obj_pointer));
Bob Moore83135242006-10-03 00:00:00 -0400250 ACPI_FREE(obj_pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 /* Now the object can be safely deleted */
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "Deleting Object %p [%s]\n",
256 object, acpi_ut_get_object_type_name(object)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Len Brown4be44fc2005-08-05 00:44:28 -0400258 acpi_ut_delete_object_desc(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return_VOID;
260}
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/*******************************************************************************
263 *
264 * FUNCTION: acpi_ut_delete_internal_object_list
265 *
Robert Moore44f6c012005-04-18 22:49:35 -0400266 * PARAMETERS: obj_list - Pointer to the list to be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 *
268 * RETURN: None
269 *
270 * DESCRIPTION: This function deletes an internal object list, including both
271 * simple objects and package objects
272 *
273 ******************************************************************************/
274
Len Brown4be44fc2005-08-05 00:44:28 -0400275void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Len Brown4be44fc2005-08-05 00:44:28 -0400277 union acpi_operand_object **internal_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Bob Mooreb229cf92006-04-21 17:15:00 -0400279 ACPI_FUNCTION_TRACE(ut_delete_internal_object_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 /* Walk the null-terminated internal list */
282
283 for (internal_obj = obj_list; *internal_obj; internal_obj++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400284 acpi_ut_remove_reference(*internal_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
287 /* Free the combined parameter pointer list and object array */
288
Bob Moore83135242006-10-03 00:00:00 -0400289 ACPI_FREE(obj_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return_VOID;
291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/*******************************************************************************
294 *
295 * FUNCTION: acpi_ut_update_ref_count
296 *
Robert Moore44f6c012005-04-18 22:49:35 -0400297 * PARAMETERS: Object - Object whose ref count is to be updated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * Action - What to do
299 *
300 * RETURN: New ref count
301 *
302 * DESCRIPTION: Modify the ref count and return it.
303 *
304 ******************************************************************************/
305
306static void
Len Brown4be44fc2005-08-05 00:44:28 -0400307acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Len Brown4be44fc2005-08-05 00:44:28 -0400309 u16 count;
310 u16 new_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Bob Mooreb229cf92006-04-21 17:15:00 -0400312 ACPI_FUNCTION_NAME(ut_update_ref_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 if (!object) {
315 return;
316 }
317
318 count = object->common.reference_count;
319 new_count = count;
320
321 /*
Bob Moore41195322006-05-26 16:36:00 -0400322 * Perform the reference count action (increment, decrement, force delete)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 */
324 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 case REF_INCREMENT:
326
327 new_count++;
328 object->common.reference_count = new_count;
329
Len Brown4be44fc2005-08-05 00:44:28 -0400330 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
331 "Obj %p Refs=%X, [Incremented]\n",
332 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 break;
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 case REF_DECREMENT:
336
337 if (count < 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400338 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
339 "Obj %p Refs=%X, can't decrement! (Set to 0)\n",
340 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 new_count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400343 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 new_count--;
345
Len Brown4be44fc2005-08-05 00:44:28 -0400346 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
347 "Obj %p Refs=%X, [Decremented]\n",
348 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
Len Brown4be44fc2005-08-05 00:44:28 -0400351 if (ACPI_GET_OBJECT_TYPE(object) == ACPI_TYPE_METHOD) {
352 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
353 "Method Obj %p Refs=%X, [Decremented]\n",
354 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 object->common.reference_count = new_count;
358 if (new_count == 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400359 acpi_ut_delete_internal_obj(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 break;
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 case REF_FORCE_DELETE:
364
Len Brown4be44fc2005-08-05 00:44:28 -0400365 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
366 "Obj %p Refs=%X, Force delete! (Set to 0)\n",
367 object, count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 new_count = 0;
370 object->common.reference_count = new_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400371 acpi_ut_delete_internal_obj(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 break;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 default:
375
Bob Mooreb8e4d892006-01-27 16:43:00 -0500376 ACPI_ERROR((AE_INFO, "Unknown action (%X)", action));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 break;
378 }
379
380 /*
381 * Sanity check the reference count, for debug purposes only.
382 * (A deleted object will have a huge reference count)
383 */
384 if (count > ACPI_MAX_REFERENCE_COUNT) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500385 ACPI_WARNING((AE_INFO,
Bob Moore41195322006-05-26 16:36:00 -0400386 "Large Reference Count (%X) in object %p", count,
387 object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*******************************************************************************
392 *
393 * FUNCTION: acpi_ut_update_object_reference
394 *
Robert Moore44f6c012005-04-18 22:49:35 -0400395 * PARAMETERS: Object - Increment ref count for this object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * and all sub-objects
397 * Action - Either REF_INCREMENT or REF_DECREMENT or
398 * REF_FORCE_DELETE
399 *
400 * RETURN: Status
401 *
402 * DESCRIPTION: Increment the object reference count
403 *
404 * Object references are incremented when:
405 * 1) An object is attached to a Node (namespace object)
406 * 2) An object is copied (all subobjects must be incremented)
407 *
408 * Object references are decremented when:
409 * 1) An object is detached from an Node
410 *
411 ******************************************************************************/
412
413acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400414acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Len Brown4be44fc2005-08-05 00:44:28 -0400416 acpi_status status = AE_OK;
417 union acpi_generic_state *state_list = NULL;
418 union acpi_operand_object *next_object = NULL;
419 union acpi_generic_state *state;
420 acpi_native_uint i;
David Shaohua Li4c3ffbd2005-07-14 00:00:00 -0400421
Bob Mooreb229cf92006-04-21 17:15:00 -0400422 ACPI_FUNCTION_TRACE_PTR(ut_update_object_reference, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Robert Mooref9f46012005-07-08 00:00:00 -0400424 while (object) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400425
Robert Mooref9f46012005-07-08 00:00:00 -0400426 /* Make sure that this isn't a namespace handle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 if (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED) {
429 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
430 "Object %p is NS handle\n", object));
431 return_ACPI_STATUS(AE_OK);
Robert Mooref9f46012005-07-08 00:00:00 -0400432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 /*
435 * All sub-objects must have their reference count incremented also.
436 * Different object types have different subobjects.
437 */
Len Brown4be44fc2005-08-05 00:44:28 -0400438 switch (ACPI_GET_OBJECT_TYPE(object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 case ACPI_TYPE_DEVICE:
440
Len Brown4be44fc2005-08-05 00:44:28 -0400441 acpi_ut_update_ref_count(object->device.system_notify,
442 action);
443 acpi_ut_update_ref_count(object->device.device_notify,
444 action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 case ACPI_TYPE_PACKAGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /*
Robert Mooref9f46012005-07-08 00:00:00 -0400449 * We must update all the sub-objects of the package,
450 * each of whom may have their own sub-objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 */
452 for (i = 0; i < object->package.count; i++) {
453 /*
454 * Push each element onto the stack for later processing.
455 * Note: There can be null elements within the package,
456 * these are simply ignored
457 */
Len Brown4be44fc2005-08-05 00:44:28 -0400458 status =
459 acpi_ut_create_update_state_and_push
460 (object->package.elements[i], action,
461 &state_list);
462 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 goto error_exit;
464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 break;
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 case ACPI_TYPE_BUFFER_FIELD:
469
Robert Mooref9f46012005-07-08 00:00:00 -0400470 next_object = object->buffer_field.buffer_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 case ACPI_TYPE_LOCAL_REGION_FIELD:
474
Robert Mooref9f46012005-07-08 00:00:00 -0400475 next_object = object->field.region_obj;
476 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 case ACPI_TYPE_LOCAL_BANK_FIELD:
479
Robert Mooref9f46012005-07-08 00:00:00 -0400480 next_object = object->bank_field.bank_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400481 status =
482 acpi_ut_create_update_state_and_push(object->
483 bank_field.
484 region_obj,
485 action,
486 &state_list);
487 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto error_exit;
489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 case ACPI_TYPE_LOCAL_INDEX_FIELD:
493
Robert Mooref9f46012005-07-08 00:00:00 -0400494 next_object = object->index_field.index_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400495 status =
496 acpi_ut_create_update_state_and_push(object->
497 index_field.
498 data_obj,
499 action,
500 &state_list);
501 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 goto error_exit;
503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 case ACPI_TYPE_LOCAL_REFERENCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /*
508 * The target of an Index (a package, string, or buffer) must track
509 * changes to the ref count of the index.
510 */
511 if (object->reference.opcode == AML_INDEX_OP) {
Robert Mooref9f46012005-07-08 00:00:00 -0400512 next_object = object->reference.object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 break;
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 case ACPI_TYPE_REGION:
517 default:
Bob Moore41195322006-05-26 16:36:00 -0400518 break; /* No subobjects for all other types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520
521 /*
Bob Moore41195322006-05-26 16:36:00 -0400522 * Now we can update the count in the main object. This can only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * happen after we update the sub-objects in case this causes the
524 * main object to be deleted.
525 */
Len Brown4be44fc2005-08-05 00:44:28 -0400526 acpi_ut_update_ref_count(object, action);
Robert Mooref9f46012005-07-08 00:00:00 -0400527 object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /* Move on to the next object to be updated */
530
Robert Mooref9f46012005-07-08 00:00:00 -0400531 if (next_object) {
532 object = next_object;
533 next_object = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400534 } else if (state_list) {
535 state = acpi_ut_pop_generic_state(&state_list);
Robert Mooref9f46012005-07-08 00:00:00 -0400536 object = state->update.object;
Len Brown4be44fc2005-08-05 00:44:28 -0400537 acpi_ut_delete_generic_state(state);
Robert Mooref9f46012005-07-08 00:00:00 -0400538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Len Brown4be44fc2005-08-05 00:44:28 -0400541 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Len Brown4be44fc2005-08-05 00:44:28 -0400543 error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Bob Mooreb8e4d892006-01-27 16:43:00 -0500545 ACPI_EXCEPTION((AE_INFO, status,
546 "Could not update object reference count"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Len Brown4be44fc2005-08-05 00:44:28 -0400548 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*******************************************************************************
552 *
553 * FUNCTION: acpi_ut_add_reference
554 *
Robert Moore44f6c012005-04-18 22:49:35 -0400555 * PARAMETERS: Object - Object whose reference count is to be
556 * incremented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 *
558 * RETURN: None
559 *
560 * DESCRIPTION: Add one reference to an ACPI object
561 *
562 ******************************************************************************/
563
Len Brown4be44fc2005-08-05 00:44:28 -0400564void acpi_ut_add_reference(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566
Bob Mooreb229cf92006-04-21 17:15:00 -0400567 ACPI_FUNCTION_TRACE_PTR(ut_add_reference, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* Ensure that we have a valid object */
570
Len Brown4be44fc2005-08-05 00:44:28 -0400571 if (!acpi_ut_valid_internal_object(object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return_VOID;
573 }
574
Len Brown4be44fc2005-08-05 00:44:28 -0400575 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
576 "Obj %p Current Refs=%X [To Be Incremented]\n",
577 object, object->common.reference_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* Increment the reference count */
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581 (void)acpi_ut_update_object_reference(object, REF_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return_VOID;
583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585/*******************************************************************************
586 *
587 * FUNCTION: acpi_ut_remove_reference
588 *
Robert Moore44f6c012005-04-18 22:49:35 -0400589 * PARAMETERS: Object - Object whose ref count will be decremented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 *
591 * RETURN: None
592 *
593 * DESCRIPTION: Decrement the reference count of an ACPI internal object
594 *
595 ******************************************************************************/
596
Len Brown4be44fc2005-08-05 00:44:28 -0400597void acpi_ut_remove_reference(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
599
Bob Mooreb229cf92006-04-21 17:15:00 -0400600 ACPI_FUNCTION_TRACE_PTR(ut_remove_reference, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 /*
Bob Moore41195322006-05-26 16:36:00 -0400603 * Allow a NULL pointer to be passed in, just ignore it. This saves
604 * each caller from having to check. Also, ignore NS nodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 *
606 */
607 if (!object ||
Len Brown4be44fc2005-08-05 00:44:28 -0400608 (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return_VOID;
610 }
611
612 /* Ensure that we have a valid object */
613
Len Brown4be44fc2005-08-05 00:44:28 -0400614 if (!acpi_ut_valid_internal_object(object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return_VOID;
616 }
617
Len Brown4be44fc2005-08-05 00:44:28 -0400618 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
619 "Obj %p Current Refs=%X [To Be Decremented]\n",
620 object, object->common.reference_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /*
623 * Decrement the reference count, and only actually delete the object
Bob Moore41195322006-05-26 16:36:00 -0400624 * if the reference count becomes 0. (Must also decrement the ref count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 * of all subobjects!)
626 */
Len Brown4be44fc2005-08-05 00:44:28 -0400627 (void)acpi_ut_update_object_reference(object, REF_DECREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return_VOID;
629}