blob: ffaff55270b10ab1a9039b0b228af13296921a52 [file] [log] [blame]
Robert Moore73459f72005-06-24 00:00:00 -04001/*******************************************************************************
2 *
3 * Module Name: utmutex - local mutex support
4 *
5 ******************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
Robert Moore73459f72005-06-24 00:00:00 -04009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
25 *
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.
29 *
30 * NO WARRANTY
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.
42 */
43
Robert Moore73459f72005-06-24 00:00:00 -040044#include <acpi/acpi.h>
45
46#define _COMPONENT ACPI_UTILITIES
Len Brown4be44fc2005-08-05 00:44:28 -040047ACPI_MODULE_NAME("utmutex")
Robert Moore73459f72005-06-24 00:00:00 -040048
49/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040050static acpi_status acpi_ut_create_mutex(acpi_mutex_handle mutex_id);
Robert Moore73459f72005-06-24 00:00:00 -040051
Len Brown4be44fc2005-08-05 00:44:28 -040052static acpi_status acpi_ut_delete_mutex(acpi_mutex_handle mutex_id);
Robert Moore73459f72005-06-24 00:00:00 -040053
54/*******************************************************************************
55 *
56 * FUNCTION: acpi_ut_mutex_initialize
57 *
58 * PARAMETERS: None.
59 *
60 * RETURN: Status
61 *
62 * DESCRIPTION: Create the system mutex objects.
63 *
64 ******************************************************************************/
65
Len Brown4be44fc2005-08-05 00:44:28 -040066acpi_status acpi_ut_mutex_initialize(void)
Robert Moore73459f72005-06-24 00:00:00 -040067{
Len Brown4be44fc2005-08-05 00:44:28 -040068 u32 i;
69 acpi_status status;
Robert Moore73459f72005-06-24 00:00:00 -040070
Len Brown4be44fc2005-08-05 00:44:28 -040071 ACPI_FUNCTION_TRACE("ut_mutex_initialize");
Robert Moore73459f72005-06-24 00:00:00 -040072
73 /*
74 * Create each of the predefined mutex objects
75 */
76 for (i = 0; i < NUM_MUTEX; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -040077 status = acpi_ut_create_mutex(i);
78 if (ACPI_FAILURE(status)) {
79 return_ACPI_STATUS(status);
Robert Moore73459f72005-06-24 00:00:00 -040080 }
81 }
82
Len Brown4be44fc2005-08-05 00:44:28 -040083 status = acpi_os_create_lock(&acpi_gbl_gpe_lock);
84 return_ACPI_STATUS(status);
Robert Moore73459f72005-06-24 00:00:00 -040085}
86
Robert Moore73459f72005-06-24 00:00:00 -040087/*******************************************************************************
88 *
89 * FUNCTION: acpi_ut_mutex_terminate
90 *
91 * PARAMETERS: None.
92 *
93 * RETURN: None.
94 *
95 * DESCRIPTION: Delete all of the system mutex objects.
96 *
97 ******************************************************************************/
98
Len Brown4be44fc2005-08-05 00:44:28 -040099void acpi_ut_mutex_terminate(void)
Robert Moore73459f72005-06-24 00:00:00 -0400100{
Len Brown4be44fc2005-08-05 00:44:28 -0400101 u32 i;
Robert Moore73459f72005-06-24 00:00:00 -0400102
Len Brown4be44fc2005-08-05 00:44:28 -0400103 ACPI_FUNCTION_TRACE("ut_mutex_terminate");
Robert Moore73459f72005-06-24 00:00:00 -0400104
105 /*
106 * Delete each predefined mutex object
107 */
108 for (i = 0; i < NUM_MUTEX; i++) {
Len Brown4be44fc2005-08-05 00:44:28 -0400109 (void)acpi_ut_delete_mutex(i);
Robert Moore73459f72005-06-24 00:00:00 -0400110 }
111
Len Brown4be44fc2005-08-05 00:44:28 -0400112 acpi_os_delete_lock(acpi_gbl_gpe_lock);
Robert Moore73459f72005-06-24 00:00:00 -0400113 return_VOID;
114}
115
Robert Moore73459f72005-06-24 00:00:00 -0400116/*******************************************************************************
117 *
118 * FUNCTION: acpi_ut_create_mutex
119 *
120 * PARAMETERS: mutex_iD - ID of the mutex to be created
121 *
122 * RETURN: Status
123 *
124 * DESCRIPTION: Create a mutex object.
125 *
126 ******************************************************************************/
127
Len Brown4be44fc2005-08-05 00:44:28 -0400128static acpi_status acpi_ut_create_mutex(acpi_mutex_handle mutex_id)
Robert Moore73459f72005-06-24 00:00:00 -0400129{
Len Brown4be44fc2005-08-05 00:44:28 -0400130 acpi_status status = AE_OK;
Robert Moore73459f72005-06-24 00:00:00 -0400131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 ACPI_FUNCTION_TRACE_U32("ut_create_mutex", mutex_id);
Robert Moore73459f72005-06-24 00:00:00 -0400133
134 if (mutex_id > MAX_MUTEX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400135 return_ACPI_STATUS(AE_BAD_PARAMETER);
Robert Moore73459f72005-06-24 00:00:00 -0400136 }
137
138 if (!acpi_gbl_mutex_info[mutex_id].mutex) {
Len Brown4be44fc2005-08-05 00:44:28 -0400139 status = acpi_os_create_semaphore(1, 1,
140 &acpi_gbl_mutex_info
141 [mutex_id].mutex);
142 acpi_gbl_mutex_info[mutex_id].thread_id =
143 ACPI_MUTEX_NOT_ACQUIRED;
Robert Moore73459f72005-06-24 00:00:00 -0400144 acpi_gbl_mutex_info[mutex_id].use_count = 0;
145 }
146
Len Brown4be44fc2005-08-05 00:44:28 -0400147 return_ACPI_STATUS(status);
Robert Moore73459f72005-06-24 00:00:00 -0400148}
149
Robert Moore73459f72005-06-24 00:00:00 -0400150/*******************************************************************************
151 *
152 * FUNCTION: acpi_ut_delete_mutex
153 *
154 * PARAMETERS: mutex_iD - ID of the mutex to be deleted
155 *
156 * RETURN: Status
157 *
158 * DESCRIPTION: Delete a mutex object.
159 *
160 ******************************************************************************/
161
Len Brown4be44fc2005-08-05 00:44:28 -0400162static acpi_status acpi_ut_delete_mutex(acpi_mutex_handle mutex_id)
Robert Moore73459f72005-06-24 00:00:00 -0400163{
Len Brown4be44fc2005-08-05 00:44:28 -0400164 acpi_status status;
Robert Moore73459f72005-06-24 00:00:00 -0400165
Len Brown4be44fc2005-08-05 00:44:28 -0400166 ACPI_FUNCTION_TRACE_U32("ut_delete_mutex", mutex_id);
Robert Moore73459f72005-06-24 00:00:00 -0400167
168 if (mutex_id > MAX_MUTEX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400169 return_ACPI_STATUS(AE_BAD_PARAMETER);
Robert Moore73459f72005-06-24 00:00:00 -0400170 }
171
Len Brown4be44fc2005-08-05 00:44:28 -0400172 status = acpi_os_delete_semaphore(acpi_gbl_mutex_info[mutex_id].mutex);
Robert Moore73459f72005-06-24 00:00:00 -0400173
174 acpi_gbl_mutex_info[mutex_id].mutex = NULL;
Robert Mooref9f46012005-07-08 00:00:00 -0400175 acpi_gbl_mutex_info[mutex_id].thread_id = ACPI_MUTEX_NOT_ACQUIRED;
Robert Moore73459f72005-06-24 00:00:00 -0400176
Len Brown4be44fc2005-08-05 00:44:28 -0400177 return_ACPI_STATUS(status);
Robert Moore73459f72005-06-24 00:00:00 -0400178}
179
Robert Moore73459f72005-06-24 00:00:00 -0400180/*******************************************************************************
181 *
182 * FUNCTION: acpi_ut_acquire_mutex
183 *
184 * PARAMETERS: mutex_iD - ID of the mutex to be acquired
185 *
186 * RETURN: Status
187 *
188 * DESCRIPTION: Acquire a mutex object.
189 *
190 ******************************************************************************/
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192acpi_status acpi_ut_acquire_mutex(acpi_mutex_handle mutex_id)
Robert Moore73459f72005-06-24 00:00:00 -0400193{
Len Brown4be44fc2005-08-05 00:44:28 -0400194 acpi_status status;
195 u32 this_thread_id;
Robert Moore73459f72005-06-24 00:00:00 -0400196
Len Brown4be44fc2005-08-05 00:44:28 -0400197 ACPI_FUNCTION_NAME("ut_acquire_mutex");
Robert Moore73459f72005-06-24 00:00:00 -0400198
199 if (mutex_id > MAX_MUTEX) {
200 return (AE_BAD_PARAMETER);
201 }
202
Len Brown4be44fc2005-08-05 00:44:28 -0400203 this_thread_id = acpi_os_get_thread_id();
Robert Moore73459f72005-06-24 00:00:00 -0400204
205#ifdef ACPI_MUTEX_DEBUG
206 {
Len Brown4be44fc2005-08-05 00:44:28 -0400207 u32 i;
Robert Moore73459f72005-06-24 00:00:00 -0400208 /*
209 * Mutex debug code, for internal debugging only.
210 *
211 * Deadlock prevention. Check if this thread owns any mutexes of value
212 * greater than or equal to this one. If so, the thread has violated
213 * the mutex ordering rule. This indicates a coding error somewhere in
214 * the ACPI subsystem code.
215 */
216 for (i = mutex_id; i < MAX_MUTEX; i++) {
Robert Moorebda663d2005-09-16 16:51:15 -0400217 if (acpi_gbl_mutex_info[i].thread_id == this_thread_id) {
Robert Moore73459f72005-06-24 00:00:00 -0400218 if (i == mutex_id) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500219 ACPI_REPORT_ERROR(("Mutex [%s] already acquired by this thread [%X]\n", acpi_ut_get_mutex_name(mutex_id), this_thread_id));
Robert Moore73459f72005-06-24 00:00:00 -0400220
221 return (AE_ALREADY_ACQUIRED);
222 }
223
Bob Moore4a90c7e2006-01-13 16:22:00 -0500224 ACPI_REPORT_ERROR(("Invalid acquire order: Thread %X owns [%s], wants [%s]\n", this_thread_id, acpi_ut_get_mutex_name(i), acpi_ut_get_mutex_name(mutex_id)));
Robert Moore73459f72005-06-24 00:00:00 -0400225
226 return (AE_ACQUIRE_DEADLOCK);
227 }
228 }
229 }
230#endif
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
233 "Thread %X attempting to acquire Mutex [%s]\n",
234 this_thread_id, acpi_ut_get_mutex_name(mutex_id)));
Robert Moore73459f72005-06-24 00:00:00 -0400235
Len Brown4be44fc2005-08-05 00:44:28 -0400236 status = acpi_os_wait_semaphore(acpi_gbl_mutex_info[mutex_id].mutex,
237 1, ACPI_WAIT_FOREVER);
238 if (ACPI_SUCCESS(status)) {
239 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
240 "Thread %X acquired Mutex [%s]\n",
241 this_thread_id,
242 acpi_ut_get_mutex_name(mutex_id)));
Robert Moore73459f72005-06-24 00:00:00 -0400243
244 acpi_gbl_mutex_info[mutex_id].use_count++;
Robert Mooref9f46012005-07-08 00:00:00 -0400245 acpi_gbl_mutex_info[mutex_id].thread_id = this_thread_id;
Len Brown4be44fc2005-08-05 00:44:28 -0400246 } else {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500247 ACPI_REPORT_ERROR(("Thread %X could not acquire Mutex [%X] %s\n", this_thread_id, mutex_id, acpi_format_exception(status)));
Robert Moore73459f72005-06-24 00:00:00 -0400248 }
249
250 return (status);
251}
252
Robert Moore73459f72005-06-24 00:00:00 -0400253/*******************************************************************************
254 *
255 * FUNCTION: acpi_ut_release_mutex
256 *
257 * PARAMETERS: mutex_iD - ID of the mutex to be released
258 *
259 * RETURN: Status
260 *
261 * DESCRIPTION: Release a mutex object.
262 *
263 ******************************************************************************/
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265acpi_status acpi_ut_release_mutex(acpi_mutex_handle mutex_id)
Robert Moore73459f72005-06-24 00:00:00 -0400266{
Len Brown4be44fc2005-08-05 00:44:28 -0400267 acpi_status status;
268 u32 this_thread_id;
Robert Moore73459f72005-06-24 00:00:00 -0400269
Len Brown4be44fc2005-08-05 00:44:28 -0400270 ACPI_FUNCTION_NAME("ut_release_mutex");
Robert Moore73459f72005-06-24 00:00:00 -0400271
Len Brown4be44fc2005-08-05 00:44:28 -0400272 this_thread_id = acpi_os_get_thread_id();
273 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
274 "Thread %X releasing Mutex [%s]\n", this_thread_id,
275 acpi_ut_get_mutex_name(mutex_id)));
Robert Moore73459f72005-06-24 00:00:00 -0400276
277 if (mutex_id > MAX_MUTEX) {
278 return (AE_BAD_PARAMETER);
279 }
280
281 /*
282 * Mutex must be acquired in order to release it!
283 */
Robert Mooref9f46012005-07-08 00:00:00 -0400284 if (acpi_gbl_mutex_info[mutex_id].thread_id == ACPI_MUTEX_NOT_ACQUIRED) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500285 ACPI_REPORT_ERROR(("Mutex [%X] is not acquired, cannot release\n", mutex_id));
Robert Moore73459f72005-06-24 00:00:00 -0400286
287 return (AE_NOT_ACQUIRED);
288 }
Robert Moore73459f72005-06-24 00:00:00 -0400289#ifdef ACPI_MUTEX_DEBUG
290 {
Len Brown4be44fc2005-08-05 00:44:28 -0400291 u32 i;
Robert Moore73459f72005-06-24 00:00:00 -0400292 /*
293 * Mutex debug code, for internal debugging only.
294 *
295 * Deadlock prevention. Check if this thread owns any mutexes of value
296 * greater than this one. If so, the thread has violated the mutex
297 * ordering rule. This indicates a coding error somewhere in
298 * the ACPI subsystem code.
299 */
300 for (i = mutex_id; i < MAX_MUTEX; i++) {
Robert Moorebda663d2005-09-16 16:51:15 -0400301 if (acpi_gbl_mutex_info[i].thread_id == this_thread_id) {
Robert Moore73459f72005-06-24 00:00:00 -0400302 if (i == mutex_id) {
303 continue;
304 }
305
Bob Moore4a90c7e2006-01-13 16:22:00 -0500306 ACPI_REPORT_ERROR(("Invalid release order: owns [%s], releasing [%s]\n", acpi_ut_get_mutex_name(i), acpi_ut_get_mutex_name(mutex_id)));
Robert Moore73459f72005-06-24 00:00:00 -0400307
308 return (AE_RELEASE_DEADLOCK);
309 }
310 }
311 }
312#endif
313
314 /* Mark unlocked FIRST */
315
Robert Mooref9f46012005-07-08 00:00:00 -0400316 acpi_gbl_mutex_info[mutex_id].thread_id = ACPI_MUTEX_NOT_ACQUIRED;
Robert Moore73459f72005-06-24 00:00:00 -0400317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 status =
319 acpi_os_signal_semaphore(acpi_gbl_mutex_info[mutex_id].mutex, 1);
Robert Moore73459f72005-06-24 00:00:00 -0400320
Len Brown4be44fc2005-08-05 00:44:28 -0400321 if (ACPI_FAILURE(status)) {
Bob Moore4a90c7e2006-01-13 16:22:00 -0500322 ACPI_REPORT_ERROR(("Thread %X could not release Mutex [%X] %s\n", this_thread_id, mutex_id, acpi_format_exception(status)));
Len Brown4be44fc2005-08-05 00:44:28 -0400323 } else {
324 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX,
325 "Thread %X released Mutex [%s]\n",
326 this_thread_id,
327 acpi_ut_get_mutex_name(mutex_id)));
Robert Moore73459f72005-06-24 00:00:00 -0400328 }
329
330 return (status);
331}