blob: c06079774badae1a9bcb8b7e60aec710d53db276 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/******************************************************************************
3 *
4 * Module Name: exmutex - ASL Mutex Acquire/Release functions
5 *
Bob Mooreda6f8322018-01-04 10:06:38 -08006 * Copyright (C) 2000 - 2018, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050011#include "accommon.h"
12#include "acinterp.h"
13#include "acevents.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040016ACPI_MODULE_NAME("exmutex")
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Robert Moore44f6c012005-04-18 22:49:35 -040018/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040019static void
Len Brown4be44fc2005-08-05 00:44:28 -040020acpi_ex_link_mutex(union acpi_operand_object *obj_desc,
21 struct acpi_thread_state *thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23/*******************************************************************************
24 *
25 * FUNCTION: acpi_ex_unlink_mutex
26 *
27 * PARAMETERS: obj_desc - The mutex to be unlinked
28 *
Robert Moore44f6c012005-04-18 22:49:35 -040029 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
Bob Mooreb229cf92006-04-21 17:15:00 -040031 * DESCRIPTION: Remove a mutex from the "AcquiredMutex" list
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
33 ******************************************************************************/
34
Len Brown262a7a22007-05-09 23:01:59 -040035void acpi_ex_unlink_mutex(union acpi_operand_object *obj_desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Len Brown262a7a22007-05-09 23:01:59 -040037 struct acpi_thread_state *thread = obj_desc->mutex.owner_thread;
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 if (!thread) {
40 return;
41 }
42
43 /* Doubly linked list */
44
45 if (obj_desc->mutex.next) {
46 (obj_desc->mutex.next)->mutex.prev = obj_desc->mutex.prev;
47 }
48
49 if (obj_desc->mutex.prev) {
50 (obj_desc->mutex.prev)->mutex.next = obj_desc->mutex.next;
Bob Moore10a3b462009-05-21 10:02:34 +080051
52 /*
Bob Moorea7499bc2010-04-01 11:04:54 +080053 * Migrate the previous sync level associated with this mutex to
54 * the previous mutex on the list so that it may be preserved.
55 * This handles the case where several mutexes have been acquired
56 * at the same level, but are not released in opposite order.
Bob Moore10a3b462009-05-21 10:02:34 +080057 */
58 (obj_desc->mutex.prev)->mutex.original_sync_level =
59 obj_desc->mutex.original_sync_level;
Len Brown4be44fc2005-08-05 00:44:28 -040060 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 thread->acquired_mutex_list = obj_desc->mutex.next;
62 }
63}
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*******************************************************************************
66 *
67 * FUNCTION: acpi_ex_link_mutex
68 *
Bob Moorea7499bc2010-04-01 11:04:54 +080069 * PARAMETERS: obj_desc - The mutex to be linked
Bob Mooreba494be2012-07-12 09:40:10 +080070 * thread - Current executing thread object
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 *
Robert Moore44f6c012005-04-18 22:49:35 -040072 * RETURN: None
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 *
Bob Mooreb229cf92006-04-21 17:15:00 -040074 * DESCRIPTION: Add a mutex to the "AcquiredMutex" list for this walk
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
76 ******************************************************************************/
77
Robert Moore44f6c012005-04-18 22:49:35 -040078static void
Len Brown4be44fc2005-08-05 00:44:28 -040079acpi_ex_link_mutex(union acpi_operand_object *obj_desc,
80 struct acpi_thread_state *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Len Brown4be44fc2005-08-05 00:44:28 -040082 union acpi_operand_object *list_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 list_head = thread->acquired_mutex_list;
85
86 /* This object will be the first object in the list */
87
88 obj_desc->mutex.prev = NULL;
89 obj_desc->mutex.next = list_head;
90
91 /* Update old first object to point back to this object */
92
93 if (list_head) {
94 list_head->mutex.prev = obj_desc;
95 }
96
97 /* Update list head */
98
99 thread->acquired_mutex_list = obj_desc;
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*******************************************************************************
103 *
Bob Mooreba886cd2008-04-10 19:06:37 +0400104 * FUNCTION: acpi_ex_acquire_mutex_object
105 *
Bob Mooreba494be2012-07-12 09:40:10 +0800106 * PARAMETERS: timeout - Timeout in milliseconds
Bob Mooreba886cd2008-04-10 19:06:37 +0400107 * obj_desc - Mutex object
Bob Moorea7499bc2010-04-01 11:04:54 +0800108 * thread_id - Current thread state
Bob Mooreba886cd2008-04-10 19:06:37 +0400109 *
110 * RETURN: Status
111 *
Bob Moore91e38d12008-04-10 19:06:37 +0400112 * DESCRIPTION: Acquire an AML mutex, low-level interface. Provides a common
113 * path that supports multiple acquires by the same thread.
114 *
115 * MUTEX: Interpreter must be locked
116 *
117 * NOTE: This interface is called from three places:
118 * 1) From acpi_ex_acquire_mutex, via an AML Acquire() operator
119 * 2) From acpi_ex_acquire_global_lock when an AML Field access requires the
120 * global lock
121 * 3) From the external interface, acpi_acquire_global_lock
Bob Mooreba886cd2008-04-10 19:06:37 +0400122 *
123 ******************************************************************************/
124
125acpi_status
126acpi_ex_acquire_mutex_object(u16 timeout,
127 union acpi_operand_object *obj_desc,
128 acpi_thread_id thread_id)
129{
130 acpi_status status;
131
132 ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex_object, obj_desc);
133
Bob Mooref02e9fa2008-04-10 19:06:37 +0400134 if (!obj_desc) {
135 return_ACPI_STATUS(AE_BAD_PARAMETER);
136 }
137
Bob Mooreba886cd2008-04-10 19:06:37 +0400138 /* Support for multiple acquires by the owning thread */
139
140 if (obj_desc->mutex.thread_id == thread_id) {
141 /*
142 * The mutex is already owned by this thread, just increment the
143 * acquisition depth
144 */
145 obj_desc->mutex.acquisition_depth++;
146 return_ACPI_STATUS(AE_OK);
147 }
148
149 /* Acquire the mutex, wait if necessary. Special case for Global Lock */
150
151 if (obj_desc == acpi_gbl_global_lock_mutex) {
152 status = acpi_ev_acquire_global_lock(timeout);
153 } else {
Bob Moorecd162b32015-12-29 13:54:28 +0800154 status =
155 acpi_ex_system_wait_mutex(obj_desc->mutex.os_mutex,
156 timeout);
Bob Mooreba886cd2008-04-10 19:06:37 +0400157 }
158
159 if (ACPI_FAILURE(status)) {
160
161 /* Includes failure from a timeout on time_desc */
162
163 return_ACPI_STATUS(status);
164 }
165
Bob Moore91e38d12008-04-10 19:06:37 +0400166 /* Acquired the mutex: update mutex object */
Bob Mooreba886cd2008-04-10 19:06:37 +0400167
168 obj_desc->mutex.thread_id = thread_id;
169 obj_desc->mutex.acquisition_depth = 1;
170 obj_desc->mutex.original_sync_level = 0;
171 obj_desc->mutex.owner_thread = NULL; /* Used only for AML Acquire() */
172
173 return_ACPI_STATUS(AE_OK);
174}
175
176/*******************************************************************************
177 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * FUNCTION: acpi_ex_acquire_mutex
179 *
Robert Moore44f6c012005-04-18 22:49:35 -0400180 * PARAMETERS: time_desc - Timeout integer
181 * obj_desc - Mutex object
182 * walk_state - Current method execution state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 *
184 * RETURN: Status
185 *
186 * DESCRIPTION: Acquire an AML mutex
187 *
188 ******************************************************************************/
189
190acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400191acpi_ex_acquire_mutex(union acpi_operand_object *time_desc,
192 union acpi_operand_object *obj_desc,
193 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Len Brown4be44fc2005-08-05 00:44:28 -0400195 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Bob Mooreb229cf92006-04-21 17:15:00 -0400197 ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex, obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400200 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
Bob Moorea7499bc2010-04-01 11:04:54 +0800203 /* Must have a valid thread state struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 if (!walk_state->thread) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500206 ACPI_ERROR((AE_INFO,
207 "Cannot acquire Mutex [%4.4s], null thread info",
208 acpi_ut_get_node_name(obj_desc->mutex.node)));
Len Brown4be44fc2005-08-05 00:44:28 -0400209 return_ACPI_STATUS(AE_AML_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211
212 /*
Bob Moorecd162b32015-12-29 13:54:28 +0800213 * Current sync level must be less than or equal to the sync level
214 * of the mutex. This mechanism provides some deadlock prevention.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 */
216 if (walk_state->thread->current_sync_level > obj_desc->mutex.sync_level) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500217 ACPI_ERROR((AE_INFO,
Bob Moorecd162b32015-12-29 13:54:28 +0800218 "Cannot acquire Mutex [%4.4s], "
219 "current SyncLevel is too large (%u)",
Bob Moore967440e32006-06-23 17:04:00 -0400220 acpi_ut_get_node_name(obj_desc->mutex.node),
221 walk_state->thread->current_sync_level));
Len Brown4be44fc2005-08-05 00:44:28 -0400222 return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
Bob Moorecd162b32015-12-29 13:54:28 +0800225 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
226 "Acquiring: Mutex SyncLevel %u, Thread SyncLevel %u, "
227 "Depth %u TID %p\n",
228 obj_desc->mutex.sync_level,
229 walk_state->thread->current_sync_level,
230 obj_desc->mutex.acquisition_depth,
231 walk_state->thread));
232
Lv Zheng5431b652015-12-29 13:52:32 +0800233 status = acpi_ex_acquire_mutex_object((u16)time_desc->integer.value,
Bob Mooreba886cd2008-04-10 19:06:37 +0400234 obj_desc,
235 walk_state->thread->thread_id);
Bob Moorecd162b32015-12-29 13:54:28 +0800236
Bob Mooreba886cd2008-04-10 19:06:37 +0400237 if (ACPI_SUCCESS(status) && obj_desc->mutex.acquisition_depth == 1) {
Bob Moore91e38d12008-04-10 19:06:37 +0400238
239 /* Save Thread object, original/current sync levels */
240
Bob Mooreba886cd2008-04-10 19:06:37 +0400241 obj_desc->mutex.owner_thread = walk_state->thread;
242 obj_desc->mutex.original_sync_level =
243 walk_state->thread->current_sync_level;
244 walk_state->thread->current_sync_level =
245 obj_desc->mutex.sync_level;
246
247 /* Link the mutex to the current thread for force-unlock at method exit */
248
249 acpi_ex_link_mutex(obj_desc, walk_state->thread);
250 }
251
Bob Moorecd162b32015-12-29 13:54:28 +0800252 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
253 "Acquired: Mutex SyncLevel %u, Thread SyncLevel %u, Depth %u\n",
254 obj_desc->mutex.sync_level,
255 walk_state->thread->current_sync_level,
256 obj_desc->mutex.acquisition_depth));
257
Bob Mooreba886cd2008-04-10 19:06:37 +0400258 return_ACPI_STATUS(status);
259}
260
261/*******************************************************************************
262 *
263 * FUNCTION: acpi_ex_release_mutex_object
264 *
265 * PARAMETERS: obj_desc - The object descriptor for this op
266 *
267 * RETURN: Status
268 *
269 * DESCRIPTION: Release a previously acquired Mutex, low level interface.
Bob Moore91e38d12008-04-10 19:06:37 +0400270 * Provides a common path that supports multiple releases (after
271 * previous multiple acquires) by the same thread.
272 *
273 * MUTEX: Interpreter must be locked
274 *
275 * NOTE: This interface is called from three places:
276 * 1) From acpi_ex_release_mutex, via an AML Acquire() operator
277 * 2) From acpi_ex_release_global_lock when an AML Field access requires the
278 * global lock
279 * 3) From the external interface, acpi_release_global_lock
Bob Mooreba886cd2008-04-10 19:06:37 +0400280 *
281 ******************************************************************************/
282
283acpi_status acpi_ex_release_mutex_object(union acpi_operand_object *obj_desc)
284{
285 acpi_status status = AE_OK;
286
287 ACPI_FUNCTION_TRACE(ex_release_mutex_object);
288
Bob Mooref02e9fa2008-04-10 19:06:37 +0400289 if (obj_desc->mutex.acquisition_depth == 0) {
Bob Moore68aafc32012-10-31 02:26:01 +0000290 return_ACPI_STATUS(AE_NOT_ACQUIRED);
Bob Mooref02e9fa2008-04-10 19:06:37 +0400291 }
292
Bob Mooreba886cd2008-04-10 19:06:37 +0400293 /* Match multiple Acquires with multiple Releases */
294
295 obj_desc->mutex.acquisition_depth--;
296 if (obj_desc->mutex.acquisition_depth != 0) {
297
298 /* Just decrement the depth and return */
299
300 return_ACPI_STATUS(AE_OK);
301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Len Brown262a7a22007-05-09 23:01:59 -0400303 if (obj_desc->mutex.owner_thread) {
Bob Mooreba886cd2008-04-10 19:06:37 +0400304
305 /* Unlink the mutex from the owner's list */
306
307 acpi_ex_unlink_mutex(obj_desc);
308 obj_desc->mutex.owner_thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310
Bob Mooreba886cd2008-04-10 19:06:37 +0400311 /* Release the mutex, special case for Global Lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Bob Mooreba886cd2008-04-10 19:06:37 +0400313 if (obj_desc == acpi_gbl_global_lock_mutex) {
314 status = acpi_ev_release_global_lock();
Bob Moorec81da662007-02-02 19:48:18 +0300315 } else {
Bob Mooreba886cd2008-04-10 19:06:37 +0400316 acpi_os_release_mutex(obj_desc->mutex.os_mutex);
Bob Moorec81da662007-02-02 19:48:18 +0300317 }
318
Bob Moore91e38d12008-04-10 19:06:37 +0400319 /* Clear mutex info */
320
Lin Ming28eb3fc2010-09-15 13:55:13 +0800321 obj_desc->mutex.thread_id = 0;
Bob Mooreba886cd2008-04-10 19:06:37 +0400322 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*******************************************************************************
326 *
327 * FUNCTION: acpi_ex_release_mutex
328 *
329 * PARAMETERS: obj_desc - The object descriptor for this op
Robert Moore44f6c012005-04-18 22:49:35 -0400330 * walk_state - Current method execution state
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *
332 * RETURN: Status
333 *
334 * DESCRIPTION: Release a previously acquired Mutex.
335 *
336 ******************************************************************************/
337
338acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400339acpi_ex_release_mutex(union acpi_operand_object *obj_desc,
340 struct acpi_walk_state *walk_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Bob Moore10a3b462009-05-21 10:02:34 +0800342 u8 previous_sync_level;
Lin Minge0f40282010-03-05 17:59:54 +0800343 struct acpi_thread_state *owner_thread;
Bob Moorecd162b32015-12-29 13:54:28 +0800344 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Bob Mooreb229cf92006-04-21 17:15:00 -0400346 ACPI_FUNCTION_TRACE(ex_release_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 if (!obj_desc) {
Len Brown4be44fc2005-08-05 00:44:28 -0400349 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
Lin Minge0f40282010-03-05 17:59:54 +0800352 owner_thread = obj_desc->mutex.owner_thread;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* The mutex must have been previously acquired in order to release it */
355
Lin Minge0f40282010-03-05 17:59:54 +0800356 if (!owner_thread) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500357 ACPI_ERROR((AE_INFO,
358 "Cannot release Mutex [%4.4s], not acquired",
359 acpi_ut_get_node_name(obj_desc->mutex.node)));
Len Brown4be44fc2005-08-05 00:44:28 -0400360 return_ACPI_STATUS(AE_AML_MUTEX_NOT_ACQUIRED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
Lv Zheng75c80442012-12-19 05:36:49 +0000363 /* Must have a valid thread ID */
Lv Zheng3e8214e2012-12-19 05:37:15 +0000364
Dan Carpenterfbc3be22009-12-11 15:31:40 +0800365 if (!walk_state->thread) {
366 ACPI_ERROR((AE_INFO,
367 "Cannot release Mutex [%4.4s], null thread info",
368 acpi_ut_get_node_name(obj_desc->mutex.node)));
369 return_ACPI_STATUS(AE_AML_INTERNAL);
370 }
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /*
373 * The Mutex is owned, but this thread must be the owner.
374 * Special case for Global Lock, any thread can release
375 */
Lin Minge0f40282010-03-05 17:59:54 +0800376 if ((owner_thread->thread_id != walk_state->thread->thread_id) &&
377 (obj_desc != acpi_gbl_global_lock_mutex)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500378 ACPI_ERROR((AE_INFO,
Lin Ming28eb3fc2010-09-15 13:55:13 +0800379 "Thread %u cannot release Mutex [%4.4s] acquired by thread %u",
380 (u32)walk_state->thread->thread_id,
Bob Mooreb8e4d892006-01-27 16:43:00 -0500381 acpi_ut_get_node_name(obj_desc->mutex.node),
Lin Ming28eb3fc2010-09-15 13:55:13 +0800382 (u32)owner_thread->thread_id));
Len Brown4be44fc2005-08-05 00:44:28 -0400383 return_ACPI_STATUS(AE_AML_NOT_OWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
386 /*
Bob Moore315c7282009-05-21 10:04:33 +0800387 * The sync level of the mutex must be equal to the current sync level. In
388 * other words, the current level means that at least one mutex at that
389 * level is currently being held. Attempting to release a mutex of a
390 * different level can only mean that the mutex ordering rule is being
391 * violated. This behavior is clarified in ACPI 4.0 specification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Lin Minge0f40282010-03-05 17:59:54 +0800393 if (obj_desc->mutex.sync_level != owner_thread->current_sync_level) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500394 ACPI_ERROR((AE_INFO,
Bob Moorecd162b32015-12-29 13:54:28 +0800395 "Cannot release Mutex [%4.4s], SyncLevel mismatch: "
396 "mutex %u current %u",
Bob Mooref02e9fa2008-04-10 19:06:37 +0400397 acpi_ut_get_node_name(obj_desc->mutex.node),
398 obj_desc->mutex.sync_level,
399 walk_state->thread->current_sync_level));
Len Brown4be44fc2005-08-05 00:44:28 -0400400 return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
Bob Moore10a3b462009-05-21 10:02:34 +0800403 /*
404 * Get the previous sync_level from the head of the acquired mutex list.
405 * This handles the case where several mutexes at the same level have been
406 * acquired, but are not released in reverse order.
407 */
408 previous_sync_level =
Lin Minge0f40282010-03-05 17:59:54 +0800409 owner_thread->acquired_mutex_list->mutex.original_sync_level;
Bob Moore10a3b462009-05-21 10:02:34 +0800410
Bob Moorecd162b32015-12-29 13:54:28 +0800411 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
412 "Releasing: Object SyncLevel %u, Thread SyncLevel %u, "
413 "Prev SyncLevel %u, Depth %u TID %p\n",
414 obj_desc->mutex.sync_level,
415 walk_state->thread->current_sync_level,
416 previous_sync_level,
417 obj_desc->mutex.acquisition_depth,
418 walk_state->thread));
419
Bob Mooreba886cd2008-04-10 19:06:37 +0400420 status = acpi_ex_release_mutex_object(obj_desc);
Bob Moore315c7282009-05-21 10:04:33 +0800421 if (ACPI_FAILURE(status)) {
422 return_ACPI_STATUS(status);
423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Bob Mooref02e9fa2008-04-10 19:06:37 +0400425 if (obj_desc->mutex.acquisition_depth == 0) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400426
Bob Moore315c7282009-05-21 10:04:33 +0800427 /* Restore the previous sync_level */
Bob Mooref02e9fa2008-04-10 19:06:37 +0400428
Lin Minge0f40282010-03-05 17:59:54 +0800429 owner_thread->current_sync_level = previous_sync_level;
Bob Mooref02e9fa2008-04-10 19:06:37 +0400430 }
Bob Moorea7499bc2010-04-01 11:04:54 +0800431
Bob Moorecd162b32015-12-29 13:54:28 +0800432 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
433 "Released: Object SyncLevel %u, Thread SyncLevel, %u, "
434 "Prev SyncLevel %u, Depth %u\n",
435 obj_desc->mutex.sync_level,
436 walk_state->thread->current_sync_level,
437 previous_sync_level,
438 obj_desc->mutex.acquisition_depth));
439
Len Brown4be44fc2005-08-05 00:44:28 -0400440 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/*******************************************************************************
444 *
445 * FUNCTION: acpi_ex_release_all_mutexes
446 *
Bob Mooreba494be2012-07-12 09:40:10 +0800447 * PARAMETERS: thread - Current executing thread object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 *
449 * RETURN: Status
450 *
Robert Moore44f6c012005-04-18 22:49:35 -0400451 * DESCRIPTION: Release all mutexes held by this thread
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 *
Bob Mooref70a5e72007-02-02 19:48:21 +0300453 * NOTE: This function is called as the thread is exiting the interpreter.
454 * Mutexes are not released when an individual control method is exited, but
455 * only when the parent thread actually exits the interpreter. This allows one
456 * method to acquire a mutex, and a different method to release it, as long as
457 * this is performed underneath a single parent control method.
458 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 ******************************************************************************/
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Len Brown4be44fc2005-08-05 00:44:28 -0400463 union acpi_operand_object *next = thread->acquired_mutex_list;
Bob Moorec81da662007-02-02 19:48:18 +0300464 union acpi_operand_object *obj_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Bob Moorecd162b32015-12-29 13:54:28 +0800466 ACPI_FUNCTION_TRACE(ex_release_all_mutexes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /* Traverse the list of owned mutexes, releasing each one */
469
470 while (next) {
Bob Moorec81da662007-02-02 19:48:18 +0300471 obj_desc = next;
Bob Moore2489ef02012-10-31 02:27:24 +0000472 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Moorecd162b32015-12-29 13:54:28 +0800473 "Mutex [%4.4s] force-release, SyncLevel %u Depth %u\n",
474 obj_desc->mutex.node->name.ascii,
475 obj_desc->mutex.sync_level,
476 obj_desc->mutex.acquisition_depth));
Bob Moore2489ef02012-10-31 02:27:24 +0000477
Bob Moorec81da662007-02-02 19:48:18 +0300478 /* Release the mutex, special case for Global Lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Bob Mooreba886cd2008-04-10 19:06:37 +0400480 if (obj_desc == acpi_gbl_global_lock_mutex) {
Bob Moorec81da662007-02-02 19:48:18 +0300481
482 /* Ignore errors */
483
484 (void)acpi_ev_release_global_lock();
485 } else {
486 acpi_os_release_mutex(obj_desc->mutex.os_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* Update Thread sync_level (Last mutex is the important one) */
490
Bob Moorec81da662007-02-02 19:48:18 +0300491 thread->current_sync_level =
492 obj_desc->mutex.original_sync_level;
Bob Moorecd162b32015-12-29 13:54:28 +0800493
494 /* Mark mutex unowned */
495
496 next = obj_desc->mutex.next;
497
498 obj_desc->mutex.prev = NULL;
499 obj_desc->mutex.next = NULL;
500 obj_desc->mutex.acquisition_depth = 0;
501 obj_desc->mutex.owner_thread = NULL;
502 obj_desc->mutex.thread_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Bob Moorecd162b32015-12-29 13:54:28 +0800504
505 return_VOID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}