blob: c5c791a575c9203f63c0a44ad07ad93487282643 [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/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
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,
Bob Moore967440e2006-06-23 17:04:00 -0400158 "***** Mutex %p, OS Mutex %p\n",
159 object, object->mutex.os_mutex));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Bob Mooreba886cd2008-04-10 19:06:37 +0400161 if (object == acpi_gbl_global_lock_mutex) {
Bob Moorec81da662007-02-02 19:48:18 +0300162
163 /* Global Lock has extra semaphore */
Bob Moore967440e2006-06-23 17:04:00 -0400164
165 (void)
166 acpi_os_delete_semaphore
167 (acpi_gbl_global_lock_semaphore);
168 acpi_gbl_global_lock_semaphore = NULL;
Bob Moorec81da662007-02-02 19:48:18 +0300169
170 acpi_os_delete_mutex(object->mutex.os_mutex);
171 acpi_gbl_global_lock_mutex = NULL;
172 } else {
Len Brown262a7a22007-05-09 23:01:59 -0400173 acpi_ex_unlink_mutex(object);
Bob Moorec81da662007-02-02 19:48:18 +0300174 acpi_os_delete_mutex(object->mutex.os_mutex);
Bob Moore967440e2006-06-23 17:04:00 -0400175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 break;
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 case ACPI_TYPE_EVENT:
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
Bob Moore967440e2006-06-23 17:04:00 -0400181 "***** Event %p, OS Semaphore %p\n",
182 object, object->event.os_semaphore));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Bob Moore967440e2006-06-23 17:04:00 -0400184 (void)acpi_os_delete_semaphore(object->event.os_semaphore);
185 object->event.os_semaphore = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 break;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 case ACPI_TYPE_METHOD:
189
Len Brown4be44fc2005-08-05 00:44:28 -0400190 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
191 "***** Method %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Bob Moore967440e2006-06-23 17:04:00 -0400193 /* Delete the method mutex if it exists */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Bob Moore967440e2006-06-23 17:04:00 -0400195 if (object->method.mutex) {
196 acpi_os_delete_mutex(object->method.mutex->mutex.
197 os_mutex);
198 acpi_ut_delete_object_desc(object->method.mutex);
199 object->method.mutex = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201 break;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 case ACPI_TYPE_REGION:
204
Len Brown4be44fc2005-08-05 00:44:28 -0400205 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
206 "***** Region %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Len Brown4be44fc2005-08-05 00:44:28 -0400208 second_desc = acpi_ns_get_secondary_object(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (second_desc) {
210 /*
211 * Free the region_context if and only if the handler is one of the
212 * default handlers -- and therefore, we created the context object
213 * locally, it was not created by an external caller.
214 */
215 handler_desc = object->region.handler;
216 if (handler_desc) {
Bob Moore61686122006-03-17 16:44:00 -0500217 if (handler_desc->address_space.handler_flags &
Len Brown4be44fc2005-08-05 00:44:28 -0400218 ACPI_ADDR_HANDLER_DEFAULT_INSTALLED) {
Bob Moore793c2382006-03-31 00:00:00 -0500219
220 /* Deactivate region and free region context */
221
222 if (handler_desc->address_space.setup) {
223 (void)handler_desc->
224 address_space.setup(object,
225 ACPI_REGION_DEACTIVATE,
226 handler_desc->
227 address_space.
228 context,
229 &second_desc->
230 extra.
231 region_context);
232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
Len Brown4be44fc2005-08-05 00:44:28 -0400235 acpi_ut_remove_reference(handler_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 /* Now we can free the Extra object */
239
Len Brown4be44fc2005-08-05 00:44:28 -0400240 acpi_ut_delete_object_desc(second_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242 break;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 case ACPI_TYPE_BUFFER_FIELD:
245
Len Brown4be44fc2005-08-05 00:44:28 -0400246 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
247 "***** Buffer Field %p\n", object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Len Brown4be44fc2005-08-05 00:44:28 -0400249 second_desc = acpi_ns_get_secondary_object(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (second_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400251 acpi_ut_delete_object_desc(second_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 break;
254
Lin Mingef805d92008-04-10 19:06:41 +0400255 case ACPI_TYPE_LOCAL_BANK_FIELD:
256
257 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
258 "***** Bank Field %p\n", object));
259
260 second_desc = acpi_ns_get_secondary_object(object);
261 if (second_desc) {
262 acpi_ut_delete_object_desc(second_desc);
263 }
264 break;
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 default:
267 break;
268 }
269
270 /* Free any allocated memory (pointer within the object) found above */
271
272 if (obj_pointer) {
Len Brown4be44fc2005-08-05 00:44:28 -0400273 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
274 "Deleting Object Subptr %p\n", obj_pointer));
Bob Moore83135242006-10-03 00:00:00 -0400275 ACPI_FREE(obj_pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277
278 /* Now the object can be safely deleted */
279
Len Brown4be44fc2005-08-05 00:44:28 -0400280 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS, "Deleting Object %p [%s]\n",
281 object, acpi_ut_get_object_type_name(object)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Len Brown4be44fc2005-08-05 00:44:28 -0400283 acpi_ut_delete_object_desc(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return_VOID;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*******************************************************************************
288 *
289 * FUNCTION: acpi_ut_delete_internal_object_list
290 *
Robert Moore44f6c012005-04-18 22:49:35 -0400291 * PARAMETERS: obj_list - Pointer to the list to be deleted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 *
293 * RETURN: None
294 *
295 * DESCRIPTION: This function deletes an internal object list, including both
296 * simple objects and package objects
297 *
298 ******************************************************************************/
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Len Brown4be44fc2005-08-05 00:44:28 -0400302 union acpi_operand_object **internal_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Bob Mooreb229cf92006-04-21 17:15:00 -0400304 ACPI_FUNCTION_TRACE(ut_delete_internal_object_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* Walk the null-terminated internal list */
307
308 for (internal_obj = obj_list; *internal_obj; internal_obj++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400309 acpi_ut_remove_reference(*internal_obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311
312 /* Free the combined parameter pointer list and object array */
313
Bob Moore83135242006-10-03 00:00:00 -0400314 ACPI_FREE(obj_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return_VOID;
316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/*******************************************************************************
319 *
320 * FUNCTION: acpi_ut_update_ref_count
321 *
Robert Moore44f6c012005-04-18 22:49:35 -0400322 * PARAMETERS: Object - Object whose ref count is to be updated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * Action - What to do
324 *
325 * RETURN: New ref count
326 *
327 * DESCRIPTION: Modify the ref count and return it.
328 *
329 ******************************************************************************/
330
331static void
Len Brown4be44fc2005-08-05 00:44:28 -0400332acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Len Brown4be44fc2005-08-05 00:44:28 -0400334 u16 count;
335 u16 new_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Bob Mooreb229cf92006-04-21 17:15:00 -0400337 ACPI_FUNCTION_NAME(ut_update_ref_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (!object) {
340 return;
341 }
342
343 count = object->common.reference_count;
344 new_count = count;
345
346 /*
Bob Moore41195322006-05-26 16:36:00 -0400347 * Perform the reference count action (increment, decrement, force delete)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 */
349 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 case REF_INCREMENT:
351
352 new_count++;
353 object->common.reference_count = new_count;
354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
356 "Obj %p Refs=%X, [Incremented]\n",
357 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 break;
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 case REF_DECREMENT:
361
362 if (count < 1) {
Len Brown4be44fc2005-08-05 00:44:28 -0400363 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
364 "Obj %p Refs=%X, can't decrement! (Set to 0)\n",
365 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 new_count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400368 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 new_count--;
370
Len Brown4be44fc2005-08-05 00:44:28 -0400371 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
372 "Obj %p Refs=%X, [Decremented]\n",
373 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Len Brown4be44fc2005-08-05 00:44:28 -0400376 if (ACPI_GET_OBJECT_TYPE(object) == ACPI_TYPE_METHOD) {
377 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
378 "Method Obj %p Refs=%X, [Decremented]\n",
379 object, new_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 object->common.reference_count = new_count;
383 if (new_count == 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400384 acpi_ut_delete_internal_obj(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 break;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 case REF_FORCE_DELETE:
389
Len Brown4be44fc2005-08-05 00:44:28 -0400390 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
391 "Obj %p Refs=%X, Force delete! (Set to 0)\n",
392 object, count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 new_count = 0;
395 object->common.reference_count = new_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400396 acpi_ut_delete_internal_obj(object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 break;
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 default:
400
Bob Mooreb8e4d892006-01-27 16:43:00 -0500401 ACPI_ERROR((AE_INFO, "Unknown action (%X)", action));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 break;
403 }
404
405 /*
406 * Sanity check the reference count, for debug purposes only.
407 * (A deleted object will have a huge reference count)
408 */
409 if (count > ACPI_MAX_REFERENCE_COUNT) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500410 ACPI_WARNING((AE_INFO,
Bob Moore41195322006-05-26 16:36:00 -0400411 "Large Reference Count (%X) in object %p", count,
412 object));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*******************************************************************************
417 *
418 * FUNCTION: acpi_ut_update_object_reference
419 *
Robert Moore44f6c012005-04-18 22:49:35 -0400420 * PARAMETERS: Object - Increment ref count for this object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 * and all sub-objects
422 * Action - Either REF_INCREMENT or REF_DECREMENT or
423 * REF_FORCE_DELETE
424 *
425 * RETURN: Status
426 *
427 * DESCRIPTION: Increment the object reference count
428 *
429 * Object references are incremented when:
430 * 1) An object is attached to a Node (namespace object)
431 * 2) An object is copied (all subobjects must be incremented)
432 *
433 * Object references are decremented when:
434 * 1) An object is detached from an Node
435 *
436 ******************************************************************************/
437
438acpi_status
Bob Moore41195322006-05-26 16:36:00 -0400439acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Len Brown4be44fc2005-08-05 00:44:28 -0400441 acpi_status status = AE_OK;
442 union acpi_generic_state *state_list = NULL;
443 union acpi_operand_object *next_object = NULL;
444 union acpi_generic_state *state;
Bob Moore67a119f2008-06-10 13:42:13 +0800445 u32 i;
David Shaohua Li4c3ffbd2005-07-14 00:00:00 -0400446
Bob Mooreb229cf92006-04-21 17:15:00 -0400447 ACPI_FUNCTION_TRACE_PTR(ut_update_object_reference, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Robert Mooref9f46012005-07-08 00:00:00 -0400449 while (object) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400450
Robert Mooref9f46012005-07-08 00:00:00 -0400451 /* Make sure that this isn't a namespace handle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Len Brown4be44fc2005-08-05 00:44:28 -0400453 if (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED) {
454 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
455 "Object %p is NS handle\n", object));
456 return_ACPI_STATUS(AE_OK);
Robert Mooref9f46012005-07-08 00:00:00 -0400457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /*
460 * All sub-objects must have their reference count incremented also.
461 * Different object types have different subobjects.
462 */
Len Brown4be44fc2005-08-05 00:44:28 -0400463 switch (ACPI_GET_OBJECT_TYPE(object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 case ACPI_TYPE_DEVICE:
Bob Mooref6dd9222006-07-07 20:44:38 -0400465 case ACPI_TYPE_PROCESSOR:
466 case ACPI_TYPE_POWER:
467 case ACPI_TYPE_THERMAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Bob Mooref6dd9222006-07-07 20:44:38 -0400469 /* Update the notify objects for these types (if present) */
470
471 acpi_ut_update_ref_count(object->common_notify.
472 system_notify, action);
473 acpi_ut_update_ref_count(object->common_notify.
474 device_notify, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 case ACPI_TYPE_PACKAGE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /*
Robert Mooref9f46012005-07-08 00:00:00 -0400479 * We must update all the sub-objects of the package,
480 * each of whom may have their own sub-objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 */
482 for (i = 0; i < object->package.count; i++) {
483 /*
484 * Push each element onto the stack for later processing.
485 * Note: There can be null elements within the package,
486 * these are simply ignored
487 */
Len Brown4be44fc2005-08-05 00:44:28 -0400488 status =
489 acpi_ut_create_update_state_and_push
490 (object->package.elements[i], action,
491 &state_list);
492 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 goto error_exit;
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 break;
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 case ACPI_TYPE_BUFFER_FIELD:
499
Robert Mooref9f46012005-07-08 00:00:00 -0400500 next_object = object->buffer_field.buffer_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 break;
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 case ACPI_TYPE_LOCAL_REGION_FIELD:
504
Robert Mooref9f46012005-07-08 00:00:00 -0400505 next_object = object->field.region_obj;
506 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 case ACPI_TYPE_LOCAL_BANK_FIELD:
509
Robert Mooref9f46012005-07-08 00:00:00 -0400510 next_object = object->bank_field.bank_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400511 status =
512 acpi_ut_create_update_state_and_push(object->
513 bank_field.
514 region_obj,
515 action,
516 &state_list);
517 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 goto error_exit;
519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 case ACPI_TYPE_LOCAL_INDEX_FIELD:
523
Robert Mooref9f46012005-07-08 00:00:00 -0400524 next_object = object->index_field.index_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400525 status =
526 acpi_ut_create_update_state_and_push(object->
527 index_field.
528 data_obj,
529 action,
530 &state_list);
531 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 goto error_exit;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 break;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 case ACPI_TYPE_LOCAL_REFERENCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /*
Bob Moore9e41d932008-04-10 19:06:39 +0400538 * The target of an Index (a package, string, or buffer) or a named
539 * reference must track changes to the ref count of the index or
540 * target object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Bob Moore9e41d932008-04-10 19:06:39 +0400542 if ((object->reference.opcode == AML_INDEX_OP) ||
543 (object->reference.opcode == AML_INT_NAMEPATH_OP)) {
Robert Mooref9f46012005-07-08 00:00:00 -0400544 next_object = object->reference.object;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546 break;
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 case ACPI_TYPE_REGION:
549 default:
Bob Moore41195322006-05-26 16:36:00 -0400550 break; /* No subobjects for all other types */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
553 /*
Bob Moore41195322006-05-26 16:36:00 -0400554 * Now we can update the count in the main object. This can only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * happen after we update the sub-objects in case this causes the
556 * main object to be deleted.
557 */
Len Brown4be44fc2005-08-05 00:44:28 -0400558 acpi_ut_update_ref_count(object, action);
Robert Mooref9f46012005-07-08 00:00:00 -0400559 object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /* Move on to the next object to be updated */
562
Robert Mooref9f46012005-07-08 00:00:00 -0400563 if (next_object) {
564 object = next_object;
565 next_object = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400566 } else if (state_list) {
567 state = acpi_ut_pop_generic_state(&state_list);
Robert Mooref9f46012005-07-08 00:00:00 -0400568 object = state->update.object;
Len Brown4be44fc2005-08-05 00:44:28 -0400569 acpi_ut_delete_generic_state(state);
Robert Mooref9f46012005-07-08 00:00:00 -0400570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572
Len Brown4be44fc2005-08-05 00:44:28 -0400573 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Len Brown4be44fc2005-08-05 00:44:28 -0400575 error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Bob Mooreb8e4d892006-01-27 16:43:00 -0500577 ACPI_EXCEPTION((AE_INFO, status,
578 "Could not update object reference count"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Len Brown4be44fc2005-08-05 00:44:28 -0400580 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583/*******************************************************************************
584 *
585 * FUNCTION: acpi_ut_add_reference
586 *
Robert Moore44f6c012005-04-18 22:49:35 -0400587 * PARAMETERS: Object - Object whose reference count is to be
588 * incremented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 *
590 * RETURN: None
591 *
592 * DESCRIPTION: Add one reference to an ACPI object
593 *
594 ******************************************************************************/
595
Len Brown4be44fc2005-08-05 00:44:28 -0400596void acpi_ut_add_reference(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598
Bob Mooreb229cf92006-04-21 17:15:00 -0400599 ACPI_FUNCTION_TRACE_PTR(ut_add_reference, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 /* Ensure that we have a valid object */
602
Len Brown4be44fc2005-08-05 00:44:28 -0400603 if (!acpi_ut_valid_internal_object(object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return_VOID;
605 }
606
Len Brown4be44fc2005-08-05 00:44:28 -0400607 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
608 "Obj %p Current Refs=%X [To Be Incremented]\n",
609 object, object->common.reference_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 /* Increment the reference count */
612
Len Brown4be44fc2005-08-05 00:44:28 -0400613 (void)acpi_ut_update_object_reference(object, REF_INCREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return_VOID;
615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/*******************************************************************************
618 *
619 * FUNCTION: acpi_ut_remove_reference
620 *
Robert Moore44f6c012005-04-18 22:49:35 -0400621 * PARAMETERS: Object - Object whose ref count will be decremented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 *
623 * RETURN: None
624 *
625 * DESCRIPTION: Decrement the reference count of an ACPI internal object
626 *
627 ******************************************************************************/
628
Len Brown4be44fc2005-08-05 00:44:28 -0400629void acpi_ut_remove_reference(union acpi_operand_object *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631
Bob Mooreb229cf92006-04-21 17:15:00 -0400632 ACPI_FUNCTION_TRACE_PTR(ut_remove_reference, object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /*
Bob Moore41195322006-05-26 16:36:00 -0400635 * Allow a NULL pointer to be passed in, just ignore it. This saves
636 * each caller from having to check. Also, ignore NS nodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 *
638 */
639 if (!object ||
Len Brown4be44fc2005-08-05 00:44:28 -0400640 (ACPI_GET_DESCRIPTOR_TYPE(object) == ACPI_DESC_TYPE_NAMED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return_VOID;
642 }
643
644 /* Ensure that we have a valid object */
645
Len Brown4be44fc2005-08-05 00:44:28 -0400646 if (!acpi_ut_valid_internal_object(object)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return_VOID;
648 }
649
Len Brown4be44fc2005-08-05 00:44:28 -0400650 ACPI_DEBUG_PRINT((ACPI_DB_ALLOCATIONS,
651 "Obj %p Current Refs=%X [To Be Decremented]\n",
652 object, object->common.reference_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /*
655 * Decrement the reference count, and only actually delete the object
Bob Moore41195322006-05-26 16:36:00 -0400656 * if the reference count becomes 0. (Must also decrement the ref count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 * of all subobjects!)
658 */
Len Brown4be44fc2005-08-05 00:44:28 -0400659 (void)acpi_ut_update_object_reference(object, REF_DECREMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return_VOID;
661}