1 /*******************************************************************************
3 * Module Name: utmutex - local mutex support
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2006, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
46 #define _COMPONENT ACPI_UTILITIES
47 ACPI_MODULE_NAME("utmutex")
49 /* Local prototypes */
50 static acpi_status
acpi_ut_create_mutex(acpi_mutex_handle mutex_id
);
52 static acpi_status
acpi_ut_delete_mutex(acpi_mutex_handle mutex_id
);
54 /*******************************************************************************
56 * FUNCTION: acpi_ut_mutex_initialize
62 * DESCRIPTION: Create the system mutex objects.
64 ******************************************************************************/
66 acpi_status
acpi_ut_mutex_initialize(void)
71 ACPI_FUNCTION_TRACE(ut_mutex_initialize
);
74 * Create each of the predefined mutex objects
76 for (i
= 0; i
< ACPI_NUM_MUTEX
; i
++) {
77 status
= acpi_ut_create_mutex(i
);
78 if (ACPI_FAILURE(status
)) {
79 return_ACPI_STATUS(status
);
83 /* Create the spinlocks for use at interrupt level */
85 status
= acpi_os_create_lock(&acpi_gbl_gpe_lock
);
86 if (ACPI_FAILURE(status
)) {
87 return_ACPI_STATUS(status
);
90 status
= acpi_os_create_lock(&acpi_gbl_hardware_lock
);
91 return_ACPI_STATUS(status
);
94 /*******************************************************************************
96 * FUNCTION: acpi_ut_mutex_terminate
102 * DESCRIPTION: Delete all of the system mutex objects.
104 ******************************************************************************/
106 void acpi_ut_mutex_terminate(void)
110 ACPI_FUNCTION_TRACE(ut_mutex_terminate
);
113 * Delete each predefined mutex object
115 for (i
= 0; i
< ACPI_NUM_MUTEX
; i
++) {
116 (void)acpi_ut_delete_mutex(i
);
119 /* Delete the spinlocks */
121 acpi_os_delete_lock(acpi_gbl_gpe_lock
);
122 acpi_os_delete_lock(acpi_gbl_hardware_lock
);
126 /*******************************************************************************
128 * FUNCTION: acpi_ut_create_mutex
130 * PARAMETERS: mutex_iD - ID of the mutex to be created
134 * DESCRIPTION: Create a mutex object.
136 ******************************************************************************/
138 static acpi_status
acpi_ut_create_mutex(acpi_mutex_handle mutex_id
)
140 acpi_status status
= AE_OK
;
142 ACPI_FUNCTION_TRACE_U32(ut_create_mutex
, mutex_id
);
144 if (mutex_id
> ACPI_MAX_MUTEX
) {
145 return_ACPI_STATUS(AE_BAD_PARAMETER
);
148 if (!acpi_gbl_mutex_info
[mutex_id
].mutex
) {
149 status
= acpi_os_create_semaphore(1, 1,
152 acpi_gbl_mutex_info
[mutex_id
].thread_id
=
153 ACPI_MUTEX_NOT_ACQUIRED
;
154 acpi_gbl_mutex_info
[mutex_id
].use_count
= 0;
157 return_ACPI_STATUS(status
);
160 /*******************************************************************************
162 * FUNCTION: acpi_ut_delete_mutex
164 * PARAMETERS: mutex_iD - ID of the mutex to be deleted
168 * DESCRIPTION: Delete a mutex object.
170 ******************************************************************************/
172 static acpi_status
acpi_ut_delete_mutex(acpi_mutex_handle mutex_id
)
176 ACPI_FUNCTION_TRACE_U32(ut_delete_mutex
, mutex_id
);
178 if (mutex_id
> ACPI_MAX_MUTEX
) {
179 return_ACPI_STATUS(AE_BAD_PARAMETER
);
182 status
= acpi_os_delete_semaphore(acpi_gbl_mutex_info
[mutex_id
].mutex
);
184 acpi_gbl_mutex_info
[mutex_id
].mutex
= NULL
;
185 acpi_gbl_mutex_info
[mutex_id
].thread_id
= ACPI_MUTEX_NOT_ACQUIRED
;
187 return_ACPI_STATUS(status
);
190 /*******************************************************************************
192 * FUNCTION: acpi_ut_acquire_mutex
194 * PARAMETERS: mutex_iD - ID of the mutex to be acquired
198 * DESCRIPTION: Acquire a mutex object.
200 ******************************************************************************/
202 acpi_status
acpi_ut_acquire_mutex(acpi_mutex_handle mutex_id
)
205 acpi_thread_id this_thread_id
;
207 ACPI_FUNCTION_NAME(ut_acquire_mutex
);
209 if (mutex_id
> ACPI_MAX_MUTEX
) {
210 return (AE_BAD_PARAMETER
);
213 this_thread_id
= acpi_os_get_thread_id();
215 #ifdef ACPI_MUTEX_DEBUG
219 * Mutex debug code, for internal debugging only.
221 * Deadlock prevention. Check if this thread owns any mutexes of value
222 * greater than or equal to this one. If so, the thread has violated
223 * the mutex ordering rule. This indicates a coding error somewhere in
224 * the ACPI subsystem code.
226 for (i
= mutex_id
; i
< ACPI_MAX_MUTEX
; i
++) {
227 if (acpi_gbl_mutex_info
[i
].thread_id
== this_thread_id
) {
230 "Mutex [%s] already acquired by this thread [%X]",
231 acpi_ut_get_mutex_name
235 return (AE_ALREADY_ACQUIRED
);
239 "Invalid acquire order: Thread %X owns [%s], wants [%s]",
241 acpi_ut_get_mutex_name(i
),
242 acpi_ut_get_mutex_name(mutex_id
)));
244 return (AE_ACQUIRE_DEADLOCK
);
250 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
251 "Thread %X attempting to acquire Mutex [%s]\n",
252 this_thread_id
, acpi_ut_get_mutex_name(mutex_id
)));
254 status
= acpi_os_wait_semaphore(acpi_gbl_mutex_info
[mutex_id
].mutex
,
255 1, ACPI_WAIT_FOREVER
);
256 if (ACPI_SUCCESS(status
)) {
257 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
258 "Thread %X acquired Mutex [%s]\n",
260 acpi_ut_get_mutex_name(mutex_id
)));
262 acpi_gbl_mutex_info
[mutex_id
].use_count
++;
263 acpi_gbl_mutex_info
[mutex_id
].thread_id
= this_thread_id
;
265 ACPI_EXCEPTION((AE_INFO
, status
,
266 "Thread %X could not acquire Mutex [%X]",
267 this_thread_id
, mutex_id
));
273 /*******************************************************************************
275 * FUNCTION: acpi_ut_release_mutex
277 * PARAMETERS: mutex_iD - ID of the mutex to be released
281 * DESCRIPTION: Release a mutex object.
283 ******************************************************************************/
285 acpi_status
acpi_ut_release_mutex(acpi_mutex_handle mutex_id
)
288 acpi_thread_id this_thread_id
;
290 ACPI_FUNCTION_NAME(ut_release_mutex
);
292 this_thread_id
= acpi_os_get_thread_id();
293 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
294 "Thread %X releasing Mutex [%s]\n", this_thread_id
,
295 acpi_ut_get_mutex_name(mutex_id
)));
297 if (mutex_id
> ACPI_MAX_MUTEX
) {
298 return (AE_BAD_PARAMETER
);
302 * Mutex must be acquired in order to release it!
304 if (acpi_gbl_mutex_info
[mutex_id
].thread_id
== ACPI_MUTEX_NOT_ACQUIRED
) {
306 "Mutex [%X] is not acquired, cannot release",
309 return (AE_NOT_ACQUIRED
);
311 #ifdef ACPI_MUTEX_DEBUG
315 * Mutex debug code, for internal debugging only.
317 * Deadlock prevention. Check if this thread owns any mutexes of value
318 * greater than this one. If so, the thread has violated the mutex
319 * ordering rule. This indicates a coding error somewhere in
320 * the ACPI subsystem code.
322 for (i
= mutex_id
; i
< ACPI_MAX_MUTEX
; i
++) {
323 if (acpi_gbl_mutex_info
[i
].thread_id
== this_thread_id
) {
329 "Invalid release order: owns [%s], releasing [%s]",
330 acpi_ut_get_mutex_name(i
),
331 acpi_ut_get_mutex_name(mutex_id
)));
333 return (AE_RELEASE_DEADLOCK
);
339 /* Mark unlocked FIRST */
341 acpi_gbl_mutex_info
[mutex_id
].thread_id
= ACPI_MUTEX_NOT_ACQUIRED
;
344 acpi_os_signal_semaphore(acpi_gbl_mutex_info
[mutex_id
].mutex
, 1);
346 if (ACPI_FAILURE(status
)) {
347 ACPI_EXCEPTION((AE_INFO
, status
,
348 "Thread %X could not release Mutex [%X]",
349 this_thread_id
, mutex_id
));
351 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX
,
352 "Thread %X released Mutex [%s]\n",
354 acpi_ut_get_mutex_name(mutex_id
)));