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

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

/*
B
Bob Moore 已提交
9
 * Copyright (C) 2000 - 2007, R. Byron Moore
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 46
 * 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>
#include <acpi/acinterp.h>
47
#include <acpi/acevents.h>
L
Linus Torvalds 已提交
48 49

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

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

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

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

L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82 83 84
	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;
L
Len Brown 已提交
85
	} else {
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93
		thread->acquired_mutex_list = obj_desc->mutex.next;
	}
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_link_mutex
 *
R
Robert Moore 已提交
94 95
 * PARAMETERS:  obj_desc        - The mutex to be linked
 *              Thread          - Current executing thread object
L
Linus Torvalds 已提交
96
 *
R
Robert Moore 已提交
97
 * RETURN:      None
L
Linus Torvalds 已提交
98
 *
B
Bob Moore 已提交
99
 * DESCRIPTION: Add a mutex to the "AcquiredMutex" list for this walk
L
Linus Torvalds 已提交
100 101 102
 *
 ******************************************************************************/

R
Robert Moore 已提交
103
static void
L
Len Brown 已提交
104 105
acpi_ex_link_mutex(union acpi_operand_object *obj_desc,
		   struct acpi_thread_state *thread)
L
Linus Torvalds 已提交
106
{
L
Len Brown 已提交
107
	union acpi_operand_object *list_head;
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126

	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;
}

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_mutex_object
 *
 * PARAMETERS:  time_desc           - Timeout in milliseconds
 *              obj_desc            - Mutex object
 *              Thread              - Current thread state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Acquire an AML mutex, low-level interface
 *
 ******************************************************************************/

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);

	/* 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);
	}

	/* Have the mutex: update mutex and save the sync_level */

	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 已提交
187 188 189 190
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_acquire_mutex
 *
R
Robert Moore 已提交
191 192 193
 * PARAMETERS:  time_desc           - Timeout integer
 *              obj_desc            - Mutex object
 *              walk_state          - Current method execution state
L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Acquire an AML mutex
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
202 203 204
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 已提交
205
{
L
Len Brown 已提交
206
	acpi_status status;
L
Linus Torvalds 已提交
207

B
Bob Moore 已提交
208
	ACPI_FUNCTION_TRACE_PTR(ex_acquire_mutex, obj_desc);
L
Linus Torvalds 已提交
209 210

	if (!obj_desc) {
L
Len Brown 已提交
211
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
212 213
	}

214
	/* Sanity check: we must have a valid thread ID */
L
Linus Torvalds 已提交
215 216

	if (!walk_state->thread) {
B
Bob Moore 已提交
217 218 219
		ACPI_ERROR((AE_INFO,
			    "Cannot acquire Mutex [%4.4s], null thread info",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
L
Len Brown 已提交
220
		return_ACPI_STATUS(AE_AML_INTERNAL);
L
Linus Torvalds 已提交
221 222 223
	}

	/*
224
	 * Current Sync level must be less than or equal to the sync level of the
B
Bob Moore 已提交
225
	 * mutex. This mechanism provides some deadlock prevention
L
Linus Torvalds 已提交
226 227
	 */
	if (walk_state->thread->current_sync_level > obj_desc->mutex.sync_level) {
B
Bob Moore 已提交
228
		ACPI_ERROR((AE_INFO,
B
Bob Moore 已提交
229 230 231
			    "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 已提交
232
		return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
L
Linus Torvalds 已提交
233 234
	}

235 236 237 238 239 240 241 242 243
	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) {
		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 已提交
244

245 246 247
		/* 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 已提交
248 249
	}

250 251
	return_ACPI_STATUS(status);
}
252

253 254 255 256 257 258 259 260 261 262 263
/*******************************************************************************
 *
 * 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.
 *
 ******************************************************************************/
L
Linus Torvalds 已提交
264

265 266 267
acpi_status acpi_ex_release_mutex_object(union acpi_operand_object *obj_desc)
{
	acpi_status status = AE_OK;
B
Bob Moore 已提交
268

269
	ACPI_FUNCTION_TRACE(ex_release_mutex_object);
L
Linus Torvalds 已提交
270

271 272 273 274 275 276 277 278
	/* 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 已提交
279 280
	}

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

283 284 285 286 287
		/* Unlink the mutex from the owner's list */

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

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

291 292 293 294 295
	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 已提交
296

297 298
	obj_desc->mutex.thread_id = 0;
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
299 300 301 302 303 304 305
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_mutex
 *
 * PARAMETERS:  obj_desc            - The object descriptor for this op
R
Robert Moore 已提交
306
 *              walk_state          - Current method execution state
L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Release a previously acquired Mutex.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
315 316
acpi_ex_release_mutex(union acpi_operand_object *obj_desc,
		      struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
317
{
318
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
319

B
Bob Moore 已提交
320
	ACPI_FUNCTION_TRACE(ex_release_mutex);
L
Linus Torvalds 已提交
321 322

	if (!obj_desc) {
L
Len Brown 已提交
323
		return_ACPI_STATUS(AE_BAD_PARAMETER);
L
Linus Torvalds 已提交
324 325 326 327
	}

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

328
	if (!obj_desc->mutex.owner_thread) {
B
Bob Moore 已提交
329 330 331
		ACPI_ERROR((AE_INFO,
			    "Cannot release Mutex [%4.4s], not acquired",
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
L
Len Brown 已提交
332
		return_ACPI_STATUS(AE_AML_MUTEX_NOT_ACQUIRED);
L
Linus Torvalds 已提交
333 334 335 336 337 338
	}

	/*
	 * The Mutex is owned, but this thread must be the owner.
	 * Special case for Global Lock, any thread can release
	 */
339
	if ((obj_desc->mutex.owner_thread->thread_id !=
L
Len Brown 已提交
340
	     walk_state->thread->thread_id)
341
	    && (obj_desc != acpi_gbl_global_lock_mutex)) {
B
Bob Moore 已提交
342
		ACPI_ERROR((AE_INFO,
343 344
			    "Thread %lX cannot release Mutex [%4.4s] acquired by thread %lX",
			    (unsigned long)walk_state->thread->thread_id,
B
Bob Moore 已提交
345
			    acpi_ut_get_node_name(obj_desc->mutex.node),
L
Len Brown 已提交
346 347
			    (unsigned long)obj_desc->mutex.owner_thread->
			    thread_id));
L
Len Brown 已提交
348
		return_ACPI_STATUS(AE_AML_NOT_OWNER);
L
Linus Torvalds 已提交
349 350
	}

351 352 353 354 355 356 357 358 359
	/* Sanity check: we 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 已提交
360
	/*
361 362
	 * The sync level of the mutex must be less than or equal to the current
	 * sync level
L
Linus Torvalds 已提交
363 364
	 */
	if (obj_desc->mutex.sync_level > walk_state->thread->current_sync_level) {
B
Bob Moore 已提交
365
		ACPI_ERROR((AE_INFO,
B
Bob Moore 已提交
366
			    "Cannot release Mutex [%4.4s], incorrect SyncLevel",
B
Bob Moore 已提交
367
			    acpi_ut_get_node_name(obj_desc->mutex.node)));
L
Len Brown 已提交
368
		return_ACPI_STATUS(AE_AML_MUTEX_ORDER);
L
Linus Torvalds 已提交
369 370
	}

371
	status = acpi_ex_release_mutex_object(obj_desc);
L
Linus Torvalds 已提交
372

373
	/* Restore sync_level */
L
Linus Torvalds 已提交
374

L
Len Brown 已提交
375 376 377
	walk_state->thread->current_sync_level =
	    obj_desc->mutex.original_sync_level;
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
378 379 380 381 382 383
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_release_all_mutexes
 *
R
Robert Moore 已提交
384
 * PARAMETERS:  Thread          - Current executing thread object
L
Linus Torvalds 已提交
385 386 387
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
388
 * DESCRIPTION: Release all mutexes held by this thread
L
Linus Torvalds 已提交
389
 *
390 391 392 393 394 395
 * 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 已提交
396 397
 ******************************************************************************/

L
Len Brown 已提交
398
void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread)
L
Linus Torvalds 已提交
399
{
L
Len Brown 已提交
400
	union acpi_operand_object *next = thread->acquired_mutex_list;
401
	union acpi_operand_object *obj_desc;
L
Linus Torvalds 已提交
402

L
Len Brown 已提交
403
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
404 405 406 407

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

	while (next) {
408 409 410 411 412
		obj_desc = next;
		next = obj_desc->mutex.next;

		obj_desc->mutex.prev = NULL;
		obj_desc->mutex.next = NULL;
413
		obj_desc->mutex.acquisition_depth = 0;
414 415

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

417
		if (obj_desc == acpi_gbl_global_lock_mutex) {
L
Linus Torvalds 已提交
418

419
			/* Ignore errors */
L
Linus Torvalds 已提交
420

421 422 423
			(void)acpi_ev_release_global_lock();
		} else {
			acpi_os_release_mutex(obj_desc->mutex.os_mutex);
L
Linus Torvalds 已提交
424 425 426 427
		}

		/* Mark mutex unowned */

428
		obj_desc->mutex.owner_thread = NULL;
429
		obj_desc->mutex.thread_id = 0;
L
Linus Torvalds 已提交
430 431 432

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

433 434
		thread->current_sync_level =
		    obj_desc->mutex.original_sync_level;
L
Linus Torvalds 已提交
435 436
	}
}