exmutex.c 15.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8

/******************************************************************************
 *
 * Module Name: exmutex - ASL Mutex Acquire/Release functions
 *
 *****************************************************************************/

/*
L
Len Brown 已提交
9
 * Copyright (C) 2000 - 2008, Intel Corp.
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
L
Len Brown 已提交
46 47 48
#include "accommon.h"
#include "acinterp.h"
#include "acevents.h"
L
Linus Torvalds 已提交
49 50

#define _COMPONENT          ACPI_EXECUTER
L
Len Brown 已提交
51
ACPI_MODULE_NAME("exmutex")
L
Linus Torvalds 已提交
52

R
Robert Moore 已提交
53 54
/* Local prototypes */
static void
L
Len Brown 已提交
55 56
acpi_ex_link_mutex(union acpi_operand_object *obj_desc,
		   struct acpi_thread_state *thread);
L
Linus Torvalds 已提交
57 58 59 60 61 62 63

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_unlink_mutex
 *
 * PARAMETERS:  obj_desc            - The mutex to be unlinked
 *
R
Robert Moore 已提交
64
 * RETURN:      None
L
Linus Torvalds 已提交
65
 *
B
Bob Moore 已提交
66
 * DESCRIPTION: Remove a mutex from the "AcquiredMutex" list
L
Linus Torvalds 已提交
67 68 69
 *
 ******************************************************************************/

70
void acpi_ex_unlink_mutex(union acpi_operand_object *obj_desc)
L
Linus Torvalds 已提交
71
{
72 73
	struct acpi_thread_state *thread = obj_desc->mutex.owner_thread;

L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82 83 84 85
	if (!thread) {
		return;
	}

	/* Doubly linked list */

	if (obj_desc->mutex.next) {
		(obj_desc->mutex.next)->mutex.prev = obj_desc->mutex.prev;
	}

	if (obj_desc->mutex.prev) {
		(obj_desc->mutex.prev)->mutex.next = obj_desc->mutex.next;
86 87 88 89 90 91 92 93 94

		/*
		 * Migrate the previous sync level associated with this mutex to the
		 * previous mutex on the list so that it may be preserved. This handles
		 * the case where several mutexes have been acquired at the same level,
		 * but are not released in opposite order.
		 */
		(obj_desc->mutex.prev)->mutex.original_sync_level =
		    obj_desc->mutex.original_sync_level;
L
Len Brown 已提交
95
	} else {
L
Linus Torvalds 已提交
96 97 98 99 100 101 102 103
		thread->acquired_mutex_list = obj_desc->mutex.next;
	}
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_link_mutex
 *
R
Robert Moore 已提交
104 105
 * PARAMETERS:  obj_desc        - The mutex to be linked
 *              Thread          - Current executing thread object
L
Linus Torvalds 已提交
106
 *
R
Robert Moore 已提交
107
 * RETURN:      None
L
Linus Torvalds 已提交
108
 *
B
Bob Moore 已提交
109
 * DESCRIPTION: Add a mutex to the "AcquiredMutex" list for this walk
L
Linus Torvalds 已提交
110 111 112
 *
 ******************************************************************************/

R
Robert Moore 已提交
113
static void
L
Len Brown 已提交
114 115
acpi_ex_link_mutex(union acpi_operand_object *obj_desc,
		   struct acpi_thread_state *thread)
L
Linus Torvalds 已提交
116
{
L
Len Brown 已提交
117
	union acpi_operand_object *list_head;
L
Linus Torvalds 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136

	list_head = thread->acquired_mutex_list;

	/* This object will be the first object in the list */

	obj_desc->mutex.prev = NULL;
	obj_desc->mutex.next = list_head;

	/* Update old first object to point back to this object */

	if (list_head) {
		list_head->mutex.prev = obj_desc;
	}

	/* Update list head */

	thread->acquired_mutex_list = obj_desc;
}

137 138 139 140 141 142 143 144 145 146
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_mutex_object
 *
 * PARAMETERS:  time_desc           - Timeout in milliseconds
 *              obj_desc            - Mutex object
 *              Thread              - Current thread state
 *
 * RETURN:      Status
 *
147 148 149 150 151 152 153 154 155 156
 * DESCRIPTION: Acquire an AML mutex, low-level interface. Provides a common
 *              path that supports multiple acquires by the same thread.
 *
 * MUTEX:       Interpreter must be locked
 *
 * NOTE: This interface is called from three places:
 * 1) From acpi_ex_acquire_mutex, via an AML Acquire() operator
 * 2) From acpi_ex_acquire_global_lock when an AML Field access requires the
 *    global lock
 * 3) From the external interface, acpi_acquire_global_lock
157 158 159 160 161 162 163 164 165 166 167 168
 *
 ******************************************************************************/

acpi_status
acpi_ex_acquire_mutex_object(u16 timeout,
			     union acpi_operand_object *obj_desc,
			     acpi_thread_id thread_id)
{
	acpi_status status;

	ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex_object, obj_desc);

169 170 171 172
	if (!obj_desc) {
		return_ACPI_STATUS(AE_BAD_PARAMETER);
	}

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
	/* Support for multiple acquires by the owning thread */

	if (obj_desc->mutex.thread_id == thread_id) {
		/*
		 * The mutex is already owned by this thread, just increment the
		 * acquisition depth
		 */
		obj_desc->mutex.acquisition_depth++;
		return_ACPI_STATUS(AE_OK);
	}

	/* Acquire the mutex, wait if necessary. Special case for Global Lock */

	if (obj_desc == acpi_gbl_global_lock_mutex) {
		status = acpi_ev_acquire_global_lock(timeout);
	} else {
		status = acpi_ex_system_wait_mutex(obj_desc->mutex.os_mutex,
						   timeout);
	}

	if (ACPI_FAILURE(status)) {

		/* Includes failure from a timeout on time_desc */

		return_ACPI_STATUS(status);
	}

200
	/* Acquired the mutex: update mutex object */
201 202 203 204 205 206 207 208 209

	obj_desc->mutex.thread_id = thread_id;
	obj_desc->mutex.acquisition_depth = 1;
	obj_desc->mutex.original_sync_level = 0;
	obj_desc->mutex.owner_thread = NULL;	/* Used only for AML Acquire() */

	return_ACPI_STATUS(AE_OK);
}

L
Linus Torvalds 已提交
210 211 212 213
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_mutex
 *
R
Robert Moore 已提交
214 215 216
 * PARAMETERS:  time_desc           - Timeout integer
 *              obj_desc            - Mutex object
 *              walk_state          - Current method execution state
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Acquire an AML mutex
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
225 226 227
acpi_ex_acquire_mutex(union acpi_operand_object *time_desc,
		      union acpi_operand_object *obj_desc,
		      struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
228
{
L
Len Brown 已提交
229
	acpi_status status;
L
Linus Torvalds 已提交
230

B
Bob Moore 已提交
231
	ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex, obj_desc);
L
Linus Torvalds 已提交
232 233

	if (!obj_desc) {
L
Len Brown 已提交
234
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
235 236
	}

237
	/* Must have a valid thread ID */
L
Linus Torvalds 已提交
238 239

	if (!walk_state->thread) {
B
Bob Moore 已提交
240 241 242
		ACPI_ERROR((AE_INFO,
			    "Cannot acquire Mutex [%4.4s], null thread info",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
L
Len Brown 已提交
243
		return_ACPI_STATUS(AE_AML_INTERNAL);
L
Linus Torvalds 已提交
244 245 246
	}

	/*
247
	 * Current sync level must be less than or equal to the sync level of the
B
Bob Moore 已提交
248
	 * mutex. This mechanism provides some deadlock prevention
L
Linus Torvalds 已提交
249 250
	 */
	if (walk_state->thread->current_sync_level > obj_desc->mutex.sync_level) {
B
Bob Moore 已提交
251
		ACPI_ERROR((AE_INFO,
B
Bob Moore 已提交
252 253 254
			    "Cannot acquire Mutex [%4.4s], current SyncLevel is too large (%d)",
			    acpi_ut_get_node_name(obj_desc->mutex.node),
			    walk_state->thread->current_sync_level));
L
Len Brown 已提交
255
		return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
L
Linus Torvalds 已提交
256 257
	}

258 259 260 261
	status = acpi_ex_acquire_mutex_object((u16) time_desc->integer.value,
					      obj_desc,
					      walk_state->thread->thread_id);
	if (ACPI_SUCCESS(status) && obj_desc->mutex.acquisition_depth == 1) {
262 263 264

		/* Save Thread object, original/current sync levels */

265 266 267 268 269
		obj_desc->mutex.owner_thread = walk_state->thread;
		obj_desc->mutex.original_sync_level =
		    walk_state->thread->current_sync_level;
		walk_state->thread->current_sync_level =
		    obj_desc->mutex.sync_level;
L
Linus Torvalds 已提交
270

271 272 273
		/* Link the mutex to the current thread for force-unlock at method exit */

		acpi_ex_link_mutex(obj_desc, walk_state->thread);
L
Linus Torvalds 已提交
274 275
	}

276 277
	return_ACPI_STATUS(status);
}
278

279 280 281 282 283 284 285 286 287
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_mutex_object
 *
 * PARAMETERS:  obj_desc            - The object descriptor for this op
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Release a previously acquired Mutex, low level interface.
288 289 290 291 292 293 294 295 296 297
 *              Provides a common path that supports multiple releases (after
 *              previous multiple acquires) by the same thread.
 *
 * MUTEX:       Interpreter must be locked
 *
 * NOTE: This interface is called from three places:
 * 1) From acpi_ex_release_mutex, via an AML Acquire() operator
 * 2) From acpi_ex_release_global_lock when an AML Field access requires the
 *    global lock
 * 3) From the external interface, acpi_release_global_lock
298 299
 *
 ******************************************************************************/
L
Linus Torvalds 已提交
300

301 302 303
acpi_status acpi_ex_release_mutex_object(union acpi_operand_object *obj_desc)
{
	acpi_status status = AE_OK;
B
Bob Moore 已提交
304

305
	ACPI_FUNCTION_TRACE(ex_release_mutex_object);
L
Linus Torvalds 已提交
306

307 308 309 310
	if (obj_desc->mutex.acquisition_depth == 0) {
		return (AE_NOT_ACQUIRED);
	}

311 312 313 314 315 316 317 318
	/* Match multiple Acquires with multiple Releases */

	obj_desc->mutex.acquisition_depth--;
	if (obj_desc->mutex.acquisition_depth != 0) {

		/* Just decrement the depth and return */

		return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
319 320
	}

321
	if (obj_desc->mutex.owner_thread) {
L
Linus Torvalds 已提交
322

323 324 325 326 327
		/* Unlink the mutex from the owner's list */

		acpi_ex_unlink_mutex(obj_desc);
		obj_desc->mutex.owner_thread = NULL;
	}
L
Linus Torvalds 已提交
328

329
	/* Release the mutex, special case for Global Lock */
L
Linus Torvalds 已提交
330

331 332 333 334 335
	if (obj_desc == acpi_gbl_global_lock_mutex) {
		status = acpi_ev_release_global_lock();
	} else {
		acpi_os_release_mutex(obj_desc->mutex.os_mutex);
	}
L
Linus Torvalds 已提交
336

337 338
	/* Clear mutex info */

339
	obj_desc->mutex.thread_id = NULL;
340
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
341 342 343 344 345 346 347
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_mutex
 *
 * PARAMETERS:  obj_desc            - The object descriptor for this op
R
Robert Moore 已提交
348
 *              walk_state          - Current method execution state
L
Linus Torvalds 已提交
349 350 351 352 353 354 355 356
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Release a previously acquired Mutex.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
357 358
acpi_ex_release_mutex(union acpi_operand_object *obj_desc,
		      struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
359
{
360
	acpi_status status = AE_OK;
361
	u8 previous_sync_level;
L
Linus Torvalds 已提交
362

B
Bob Moore 已提交
363
	ACPI_FUNCTION_TRACE(ex_release_mutex);
L
Linus Torvalds 已提交
364 365

	if (!obj_desc) {
L
Len Brown 已提交
366
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
367 368 369 370
	}

	/* The mutex must have been previously acquired in order to release it */

371
	if (!obj_desc->mutex.owner_thread) {
B
Bob Moore 已提交
372 373 374
		ACPI_ERROR((AE_INFO,
			    "Cannot release Mutex [%4.4s], not acquired",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
L
Len Brown 已提交
375
		return_ACPI_STATUS(AE_AML_MUTEX_NOT_ACQUIRED);
L
Linus Torvalds 已提交
376 377
	}

378 379 380 381 382 383 384 385 386
	/* Must have a valid thread ID */

	if (!walk_state->thread) {
		ACPI_ERROR((AE_INFO,
			    "Cannot release Mutex [%4.4s], null thread info",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
		return_ACPI_STATUS(AE_AML_INTERNAL);
	}

L
Linus Torvalds 已提交
387 388 389 390
	/*
	 * The Mutex is owned, but this thread must be the owner.
	 * Special case for Global Lock, any thread can release
	 */
391
	if ((obj_desc->mutex.owner_thread->thread_id !=
L
Len Brown 已提交
392
	     walk_state->thread->thread_id)
393
	    && (obj_desc != acpi_gbl_global_lock_mutex)) {
B
Bob Moore 已提交
394
		ACPI_ERROR((AE_INFO,
395 396
			    "Thread %p cannot release Mutex [%4.4s] acquired by thread %p",
			    ACPI_CAST_PTR(void, walk_state->thread->thread_id),
B
Bob Moore 已提交
397
			    acpi_ut_get_node_name(obj_desc->mutex.node),
398 399 400
			    ACPI_CAST_PTR(void,
					  obj_desc->mutex.owner_thread->
					  thread_id)));
L
Len Brown 已提交
401
		return_ACPI_STATUS(AE_AML_NOT_OWNER);
L
Linus Torvalds 已提交
402 403 404
	}

	/*
405 406 407 408 409
	 * The sync level of the mutex must be equal to the current sync level. In
	 * other words, the current level means that at least one mutex at that
	 * level is currently being held. Attempting to release a mutex of a
	 * different level can only mean that the mutex ordering rule is being
	 * violated. This behavior is clarified in ACPI 4.0 specification.
L
Linus Torvalds 已提交
410
	 */
411 412
	if (obj_desc->mutex.sync_level !=
	    walk_state->thread->current_sync_level) {
B
Bob Moore 已提交
413
		ACPI_ERROR((AE_INFO,
414 415 416 417
			    "Cannot release Mutex [%4.4s], SyncLevel mismatch: mutex %d current %d",
			    acpi_ut_get_node_name(obj_desc->mutex.node),
			    obj_desc->mutex.sync_level,
			    walk_state->thread->current_sync_level));
L
Len Brown 已提交
418
		return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
L
Linus Torvalds 已提交
419 420
	}

421 422 423 424 425 426 427 428
	/*
	 * Get the previous sync_level from the head of the acquired mutex list.
	 * This handles the case where several mutexes at the same level have been
	 * acquired, but are not released in reverse order.
	 */
	previous_sync_level =
	    walk_state->thread->acquired_mutex_list->mutex.original_sync_level;

429
	status = acpi_ex_release_mutex_object(obj_desc);
430 431 432
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
	}
L
Linus Torvalds 已提交
433

434
	if (obj_desc->mutex.acquisition_depth == 0) {
L
Linus Torvalds 已提交
435

436
		/* Restore the previous sync_level */
437

438
		walk_state->thread->current_sync_level = previous_sync_level;
439
	}
L
Len Brown 已提交
440
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
441 442 443 444 445 446
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_all_mutexes
 *
R
Robert Moore 已提交
447
 * PARAMETERS:  Thread          - Current executing thread object
L
Linus Torvalds 已提交
448 449 450
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
451
 * DESCRIPTION: Release all mutexes held by this thread
L
Linus Torvalds 已提交
452
 *
453 454 455 456 457 458
 * NOTE: This function is called as the thread is exiting the interpreter.
 * Mutexes are not released when an individual control method is exited, but
 * only when the parent thread actually exits the interpreter. This allows one
 * method to acquire a mutex, and a different method to release it, as long as
 * this is performed underneath a single parent control method.
 *
L
Linus Torvalds 已提交
459 460
 ******************************************************************************/

L
Len Brown 已提交
461
void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread)
L
Linus Torvalds 已提交
462
{
L
Len Brown 已提交
463
	union acpi_operand_object *next = thread->acquired_mutex_list;
464
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
465

L
Len Brown 已提交
466
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
467 468 469 470

	/* Traverse the list of owned mutexes, releasing each one */

	while (next) {
471 472 473 474 475
		obj_desc = next;
		next = obj_desc->mutex.next;

		obj_desc->mutex.prev = NULL;
		obj_desc->mutex.next = NULL;
476
		obj_desc->mutex.acquisition_depth = 0;
477 478

		/* Release the mutex, special case for Global Lock */
L
Linus Torvalds 已提交
479

480
		if (obj_desc == acpi_gbl_global_lock_mutex) {
L
Linus Torvalds 已提交
481

482
			/* Ignore errors */
L
Linus Torvalds 已提交
483

484 485 486
			(void)acpi_ev_release_global_lock();
		} else {
			acpi_os_release_mutex(obj_desc->mutex.os_mutex);
L
Linus Torvalds 已提交
487 488 489 490
		}

		/* Mark mutex unowned */

491
		obj_desc->mutex.owner_thread = NULL;
492
		obj_desc->mutex.thread_id = NULL;
L
Linus Torvalds 已提交
493 494 495

		/* Update Thread sync_level (Last mutex is the important one) */

496 497
		thread->current_sync_level =
		    obj_desc->mutex.original_sync_level;
L
Linus Torvalds 已提交
498 499
	}
}