Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
| 2 | /****************************************************************************** |
| 3 | * |
| 4 | * Module Name: exmutex - ASL Mutex Acquire/Release functions |
| 5 | * |
| 6 | *****************************************************************************/ |
| 7 | |
| 8 | /* |
Len Brown | 75a44ce | 2008-04-23 23:00:13 -0400 | [diff] [blame] | 9 | * Copyright (C) 2000 - 2008, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * All rights reserved. |
| 11 | * |
| 12 | * Redistribution and use in source and binary forms, with or without |
| 13 | * modification, are permitted provided that the following conditions |
| 14 | * are met: |
| 15 | * 1. Redistributions of source code must retain the above copyright |
| 16 | * notice, this list of conditions, and the following disclaimer, |
| 17 | * without modification. |
| 18 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 19 | * substantially similar to the "NO WARRANTY" disclaimer below |
| 20 | * ("Disclaimer") and any redistribution must be conditioned upon |
| 21 | * including a substantially similar Disclaimer requirement for further |
| 22 | * binary redistribution. |
| 23 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 24 | * of any contributors may be used to endorse or promote products derived |
| 25 | * from this software without specific prior written permission. |
| 26 | * |
| 27 | * Alternatively, this software may be distributed under the terms of the |
| 28 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 29 | * Software Foundation. |
| 30 | * |
| 31 | * NO WARRANTY |
| 32 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 33 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 34 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR |
| 35 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 36 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 37 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 38 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 39 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 40 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
| 41 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 42 | * POSSIBILITY OF SUCH DAMAGES. |
| 43 | */ |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 46 | #include "accommon.h" |
| 47 | #include "acinterp.h" |
| 48 | #include "acevents.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | #define _COMPONENT ACPI_EXECUTER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | ACPI_MODULE_NAME("exmutex") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 53 | /* Local prototypes */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 54 | static void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | acpi_ex_link_mutex(union acpi_operand_object *obj_desc, |
| 56 | struct acpi_thread_state *thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | /******************************************************************************* |
| 59 | * |
| 60 | * FUNCTION: acpi_ex_unlink_mutex |
| 61 | * |
| 62 | * PARAMETERS: obj_desc - The mutex to be unlinked |
| 63 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 64 | * RETURN: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | * |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 66 | * DESCRIPTION: Remove a mutex from the "AcquiredMutex" list |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | * |
| 68 | ******************************************************************************/ |
| 69 | |
Len Brown | 262a7a2 | 2007-05-09 23:01:59 -0400 | [diff] [blame] | 70 | void acpi_ex_unlink_mutex(union acpi_operand_object *obj_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
Len Brown | 262a7a2 | 2007-05-09 23:01:59 -0400 | [diff] [blame] | 72 | struct acpi_thread_state *thread = obj_desc->mutex.owner_thread; |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | if (!thread) { |
| 75 | return; |
| 76 | } |
| 77 | |
| 78 | /* Doubly linked list */ |
| 79 | |
| 80 | if (obj_desc->mutex.next) { |
| 81 | (obj_desc->mutex.next)->mutex.prev = obj_desc->mutex.prev; |
| 82 | } |
| 83 | |
| 84 | if (obj_desc->mutex.prev) { |
| 85 | (obj_desc->mutex.prev)->mutex.next = obj_desc->mutex.next; |
Bob Moore | 10a3b46 | 2009-05-21 10:02:34 +0800 | [diff] [blame^] | 86 | |
| 87 | /* |
| 88 | * Migrate the previous sync level associated with this mutex to the |
| 89 | * previous mutex on the list so that it may be preserved. This handles |
| 90 | * the case where several mutexes have been acquired at the same level, |
| 91 | * but are not released in opposite order. |
| 92 | */ |
| 93 | (obj_desc->mutex.prev)->mutex.original_sync_level = |
| 94 | obj_desc->mutex.original_sync_level; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 95 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | thread->acquired_mutex_list = obj_desc->mutex.next; |
| 97 | } |
| 98 | } |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | /******************************************************************************* |
| 101 | * |
| 102 | * FUNCTION: acpi_ex_link_mutex |
| 103 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 104 | * PARAMETERS: obj_desc - The mutex to be linked |
| 105 | * Thread - Current executing thread object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 107 | * RETURN: None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | * |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 109 | * DESCRIPTION: Add a mutex to the "AcquiredMutex" list for this walk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | * |
| 111 | ******************************************************************************/ |
| 112 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 113 | static void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 114 | acpi_ex_link_mutex(union acpi_operand_object *obj_desc, |
| 115 | struct acpi_thread_state *thread) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 117 | union acpi_operand_object *list_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | list_head = thread->acquired_mutex_list; |
| 120 | |
| 121 | /* This object will be the first object in the list */ |
| 122 | |
| 123 | obj_desc->mutex.prev = NULL; |
| 124 | obj_desc->mutex.next = list_head; |
| 125 | |
| 126 | /* Update old first object to point back to this object */ |
| 127 | |
| 128 | if (list_head) { |
| 129 | list_head->mutex.prev = obj_desc; |
| 130 | } |
| 131 | |
| 132 | /* Update list head */ |
| 133 | |
| 134 | thread->acquired_mutex_list = obj_desc; |
| 135 | } |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /******************************************************************************* |
| 138 | * |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 139 | * FUNCTION: acpi_ex_acquire_mutex_object |
| 140 | * |
| 141 | * PARAMETERS: time_desc - Timeout in milliseconds |
| 142 | * obj_desc - Mutex object |
| 143 | * Thread - Current thread state |
| 144 | * |
| 145 | * RETURN: Status |
| 146 | * |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 147 | * DESCRIPTION: Acquire an AML mutex, low-level interface. Provides a common |
| 148 | * path that supports multiple acquires by the same thread. |
| 149 | * |
| 150 | * MUTEX: Interpreter must be locked |
| 151 | * |
| 152 | * NOTE: This interface is called from three places: |
| 153 | * 1) From acpi_ex_acquire_mutex, via an AML Acquire() operator |
| 154 | * 2) From acpi_ex_acquire_global_lock when an AML Field access requires the |
| 155 | * global lock |
| 156 | * 3) From the external interface, acpi_acquire_global_lock |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 157 | * |
| 158 | ******************************************************************************/ |
| 159 | |
| 160 | acpi_status |
| 161 | acpi_ex_acquire_mutex_object(u16 timeout, |
| 162 | union acpi_operand_object *obj_desc, |
| 163 | acpi_thread_id thread_id) |
| 164 | { |
| 165 | acpi_status status; |
| 166 | |
| 167 | ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex_object, obj_desc); |
| 168 | |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 169 | if (!obj_desc) { |
| 170 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
| 171 | } |
| 172 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 173 | /* Support for multiple acquires by the owning thread */ |
| 174 | |
| 175 | if (obj_desc->mutex.thread_id == thread_id) { |
| 176 | /* |
| 177 | * The mutex is already owned by this thread, just increment the |
| 178 | * acquisition depth |
| 179 | */ |
| 180 | obj_desc->mutex.acquisition_depth++; |
| 181 | return_ACPI_STATUS(AE_OK); |
| 182 | } |
| 183 | |
| 184 | /* Acquire the mutex, wait if necessary. Special case for Global Lock */ |
| 185 | |
| 186 | if (obj_desc == acpi_gbl_global_lock_mutex) { |
| 187 | status = acpi_ev_acquire_global_lock(timeout); |
| 188 | } else { |
| 189 | status = acpi_ex_system_wait_mutex(obj_desc->mutex.os_mutex, |
| 190 | timeout); |
| 191 | } |
| 192 | |
| 193 | if (ACPI_FAILURE(status)) { |
| 194 | |
| 195 | /* Includes failure from a timeout on time_desc */ |
| 196 | |
| 197 | return_ACPI_STATUS(status); |
| 198 | } |
| 199 | |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 200 | /* Acquired the mutex: update mutex object */ |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 201 | |
| 202 | obj_desc->mutex.thread_id = thread_id; |
| 203 | obj_desc->mutex.acquisition_depth = 1; |
| 204 | obj_desc->mutex.original_sync_level = 0; |
| 205 | obj_desc->mutex.owner_thread = NULL; /* Used only for AML Acquire() */ |
| 206 | |
| 207 | return_ACPI_STATUS(AE_OK); |
| 208 | } |
| 209 | |
| 210 | /******************************************************************************* |
| 211 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | * FUNCTION: acpi_ex_acquire_mutex |
| 213 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 214 | * PARAMETERS: time_desc - Timeout integer |
| 215 | * obj_desc - Mutex object |
| 216 | * walk_state - Current method execution state |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | * |
| 218 | * RETURN: Status |
| 219 | * |
| 220 | * DESCRIPTION: Acquire an AML mutex |
| 221 | * |
| 222 | ******************************************************************************/ |
| 223 | |
| 224 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 225 | acpi_ex_acquire_mutex(union acpi_operand_object *time_desc, |
| 226 | union acpi_operand_object *obj_desc, |
| 227 | struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 229 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 231 | ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex, obj_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
| 233 | if (!obj_desc) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 237 | /* Must have a valid thread ID */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
| 239 | if (!walk_state->thread) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 240 | ACPI_ERROR((AE_INFO, |
| 241 | "Cannot acquire Mutex [%4.4s], null thread info", |
| 242 | acpi_ut_get_node_name(obj_desc->mutex.node))); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 243 | return_ACPI_STATUS(AE_AML_INTERNAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | /* |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 247 | * Current sync level must be less than or equal to the sync level of the |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 248 | * mutex. This mechanism provides some deadlock prevention |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | */ |
| 250 | if (walk_state->thread->current_sync_level > obj_desc->mutex.sync_level) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 251 | ACPI_ERROR((AE_INFO, |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 252 | "Cannot acquire Mutex [%4.4s], current SyncLevel is too large (%d)", |
| 253 | acpi_ut_get_node_name(obj_desc->mutex.node), |
| 254 | walk_state->thread->current_sync_level)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | return_ACPI_STATUS(AE_AML_MUTEX_ORDER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } |
| 257 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 258 | status = acpi_ex_acquire_mutex_object((u16) time_desc->integer.value, |
| 259 | obj_desc, |
| 260 | walk_state->thread->thread_id); |
| 261 | if (ACPI_SUCCESS(status) && obj_desc->mutex.acquisition_depth == 1) { |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 262 | |
| 263 | /* Save Thread object, original/current sync levels */ |
| 264 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 265 | obj_desc->mutex.owner_thread = walk_state->thread; |
| 266 | obj_desc->mutex.original_sync_level = |
| 267 | walk_state->thread->current_sync_level; |
| 268 | walk_state->thread->current_sync_level = |
| 269 | obj_desc->mutex.sync_level; |
| 270 | |
| 271 | /* Link the mutex to the current thread for force-unlock at method exit */ |
| 272 | |
| 273 | acpi_ex_link_mutex(obj_desc, walk_state->thread); |
| 274 | } |
| 275 | |
| 276 | return_ACPI_STATUS(status); |
| 277 | } |
| 278 | |
| 279 | /******************************************************************************* |
| 280 | * |
| 281 | * FUNCTION: acpi_ex_release_mutex_object |
| 282 | * |
| 283 | * PARAMETERS: obj_desc - The object descriptor for this op |
| 284 | * |
| 285 | * RETURN: Status |
| 286 | * |
| 287 | * DESCRIPTION: Release a previously acquired Mutex, low level interface. |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 288 | * Provides a common path that supports multiple releases (after |
| 289 | * previous multiple acquires) by the same thread. |
| 290 | * |
| 291 | * MUTEX: Interpreter must be locked |
| 292 | * |
| 293 | * NOTE: This interface is called from three places: |
| 294 | * 1) From acpi_ex_release_mutex, via an AML Acquire() operator |
| 295 | * 2) From acpi_ex_release_global_lock when an AML Field access requires the |
| 296 | * global lock |
| 297 | * 3) From the external interface, acpi_release_global_lock |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 298 | * |
| 299 | ******************************************************************************/ |
| 300 | |
| 301 | acpi_status acpi_ex_release_mutex_object(union acpi_operand_object *obj_desc) |
| 302 | { |
| 303 | acpi_status status = AE_OK; |
| 304 | |
| 305 | ACPI_FUNCTION_TRACE(ex_release_mutex_object); |
| 306 | |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 307 | if (obj_desc->mutex.acquisition_depth == 0) { |
| 308 | return (AE_NOT_ACQUIRED); |
| 309 | } |
| 310 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 311 | /* Match multiple Acquires with multiple Releases */ |
| 312 | |
| 313 | obj_desc->mutex.acquisition_depth--; |
| 314 | if (obj_desc->mutex.acquisition_depth != 0) { |
| 315 | |
| 316 | /* Just decrement the depth and return */ |
| 317 | |
| 318 | return_ACPI_STATUS(AE_OK); |
| 319 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Len Brown | 262a7a2 | 2007-05-09 23:01:59 -0400 | [diff] [blame] | 321 | if (obj_desc->mutex.owner_thread) { |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 322 | |
| 323 | /* Unlink the mutex from the owner's list */ |
| 324 | |
| 325 | acpi_ex_unlink_mutex(obj_desc); |
| 326 | obj_desc->mutex.owner_thread = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 329 | /* Release the mutex, special case for Global Lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 331 | if (obj_desc == acpi_gbl_global_lock_mutex) { |
| 332 | status = acpi_ev_release_global_lock(); |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 333 | } else { |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 334 | acpi_os_release_mutex(obj_desc->mutex.os_mutex); |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 335 | } |
| 336 | |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 337 | /* Clear mutex info */ |
| 338 | |
Harvey Harrison | b62151d | 2008-05-22 15:45:06 -0700 | [diff] [blame] | 339 | obj_desc->mutex.thread_id = NULL; |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 340 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /******************************************************************************* |
| 344 | * |
| 345 | * FUNCTION: acpi_ex_release_mutex |
| 346 | * |
| 347 | * PARAMETERS: obj_desc - The object descriptor for this op |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 348 | * walk_state - Current method execution state |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | * |
| 350 | * RETURN: Status |
| 351 | * |
| 352 | * DESCRIPTION: Release a previously acquired Mutex. |
| 353 | * |
| 354 | ******************************************************************************/ |
| 355 | |
| 356 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 357 | acpi_ex_release_mutex(union acpi_operand_object *obj_desc, |
| 358 | struct acpi_walk_state *walk_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 360 | acpi_status status = AE_OK; |
Bob Moore | 10a3b46 | 2009-05-21 10:02:34 +0800 | [diff] [blame^] | 361 | u8 previous_sync_level; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 363 | ACPI_FUNCTION_TRACE(ex_release_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | if (!obj_desc) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 366 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | /* The mutex must have been previously acquired in order to release it */ |
| 370 | |
Len Brown | 262a7a2 | 2007-05-09 23:01:59 -0400 | [diff] [blame] | 371 | if (!obj_desc->mutex.owner_thread) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 372 | ACPI_ERROR((AE_INFO, |
| 373 | "Cannot release Mutex [%4.4s], not acquired", |
| 374 | acpi_ut_get_node_name(obj_desc->mutex.node))); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 375 | return_ACPI_STATUS(AE_AML_MUTEX_NOT_ACQUIRED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | /* |
| 379 | * The Mutex is owned, but this thread must be the owner. |
| 380 | * Special case for Global Lock, any thread can release |
| 381 | */ |
Len Brown | 262a7a2 | 2007-05-09 23:01:59 -0400 | [diff] [blame] | 382 | if ((obj_desc->mutex.owner_thread->thread_id != |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 383 | walk_state->thread->thread_id) |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 384 | && (obj_desc != acpi_gbl_global_lock_mutex)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 385 | ACPI_ERROR((AE_INFO, |
Bob Moore | 10b6575 | 2009-04-22 11:39:10 +0800 | [diff] [blame] | 386 | "Thread %p cannot release Mutex [%4.4s] acquired by thread %p", |
| 387 | ACPI_CAST_PTR(void, walk_state->thread->thread_id), |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 388 | acpi_ut_get_node_name(obj_desc->mutex.node), |
Bob Moore | 10b6575 | 2009-04-22 11:39:10 +0800 | [diff] [blame] | 389 | ACPI_CAST_PTR(void, |
| 390 | obj_desc->mutex.owner_thread-> |
| 391 | thread_id))); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 392 | return_ACPI_STATUS(AE_AML_NOT_OWNER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | } |
| 394 | |
Bob Moore | 91e38d1 | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 395 | /* Must have a valid thread ID */ |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 396 | |
| 397 | if (!walk_state->thread) { |
| 398 | ACPI_ERROR((AE_INFO, |
| 399 | "Cannot release Mutex [%4.4s], null thread info", |
| 400 | acpi_ut_get_node_name(obj_desc->mutex.node))); |
| 401 | return_ACPI_STATUS(AE_AML_INTERNAL); |
| 402 | } |
| 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | /* |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 405 | * The sync level of the mutex must be less than or equal to the current |
| 406 | * sync level |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | */ |
| 408 | if (obj_desc->mutex.sync_level > walk_state->thread->current_sync_level) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 409 | ACPI_ERROR((AE_INFO, |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 410 | "Cannot release Mutex [%4.4s], SyncLevel mismatch: mutex %d current %d", |
| 411 | acpi_ut_get_node_name(obj_desc->mutex.node), |
| 412 | obj_desc->mutex.sync_level, |
| 413 | walk_state->thread->current_sync_level)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 414 | return_ACPI_STATUS(AE_AML_MUTEX_ORDER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
| 416 | |
Bob Moore | 10a3b46 | 2009-05-21 10:02:34 +0800 | [diff] [blame^] | 417 | /* |
| 418 | * Get the previous sync_level from the head of the acquired mutex list. |
| 419 | * This handles the case where several mutexes at the same level have been |
| 420 | * acquired, but are not released in reverse order. |
| 421 | */ |
| 422 | previous_sync_level = |
| 423 | walk_state->thread->acquired_mutex_list->mutex.original_sync_level; |
| 424 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 425 | status = acpi_ex_release_mutex_object(obj_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 427 | if (obj_desc->mutex.acquisition_depth == 0) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 428 | |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 429 | /* Restore the original sync_level */ |
| 430 | |
Bob Moore | 10a3b46 | 2009-05-21 10:02:34 +0800 | [diff] [blame^] | 431 | walk_state->thread->current_sync_level = previous_sync_level; |
Bob Moore | f02e9fa | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 432 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 433 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | /******************************************************************************* |
| 437 | * |
| 438 | * FUNCTION: acpi_ex_release_all_mutexes |
| 439 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 440 | * PARAMETERS: Thread - Current executing thread object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | * |
| 442 | * RETURN: Status |
| 443 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 444 | * DESCRIPTION: Release all mutexes held by this thread |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | * |
Bob Moore | f70a5e7 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 446 | * NOTE: This function is called as the thread is exiting the interpreter. |
| 447 | * Mutexes are not released when an individual control method is exited, but |
| 448 | * only when the parent thread actually exits the interpreter. This allows one |
| 449 | * method to acquire a mutex, and a different method to release it, as long as |
| 450 | * this is performed underneath a single parent control method. |
| 451 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | ******************************************************************************/ |
| 453 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 454 | void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 456 | union acpi_operand_object *next = thread->acquired_mutex_list; |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 457 | union acpi_operand_object *obj_desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 459 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | /* Traverse the list of owned mutexes, releasing each one */ |
| 462 | |
| 463 | while (next) { |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 464 | obj_desc = next; |
| 465 | next = obj_desc->mutex.next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 467 | obj_desc->mutex.prev = NULL; |
| 468 | obj_desc->mutex.next = NULL; |
Bob Moore | f70a5e7 | 2007-02-02 19:48:21 +0300 | [diff] [blame] | 469 | obj_desc->mutex.acquisition_depth = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 471 | /* Release the mutex, special case for Global Lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
Bob Moore | ba886cd | 2008-04-10 19:06:37 +0400 | [diff] [blame] | 473 | if (obj_desc == acpi_gbl_global_lock_mutex) { |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 474 | |
| 475 | /* Ignore errors */ |
| 476 | |
| 477 | (void)acpi_ev_release_global_lock(); |
| 478 | } else { |
| 479 | acpi_os_release_mutex(obj_desc->mutex.os_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | /* Mark mutex unowned */ |
| 483 | |
Len Brown | 262a7a2 | 2007-05-09 23:01:59 -0400 | [diff] [blame] | 484 | obj_desc->mutex.owner_thread = NULL; |
Harvey Harrison | b62151d | 2008-05-22 15:45:06 -0700 | [diff] [blame] | 485 | obj_desc->mutex.thread_id = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | /* Update Thread sync_level (Last mutex is the important one) */ |
| 488 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 489 | thread->current_sync_level = |
| 490 | obj_desc->mutex.original_sync_level; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | } |
| 492 | } |