| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 |  | 
|  | 2 | /****************************************************************************** | 
|  | 3 | * | 
|  | 4 | * Module Name: exsystem - Interface to OS services | 
|  | 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> | 
|  | 46 | #include <acpi/acinterp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
|  | 48 | #define _COMPONENT          ACPI_EXECUTER | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 49 | ACPI_MODULE_NAME("exsystem") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 |  | 
|  | 51 | /******************************************************************************* | 
|  | 52 | * | 
|  | 53 | * FUNCTION:    acpi_ex_system_wait_semaphore | 
|  | 54 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 55 | * PARAMETERS:  Semaphore       - Semaphore to wait on | 
|  | 56 | *              Timeout         - Max time to wait | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | * | 
|  | 58 | * RETURN:      Status | 
|  | 59 | * | 
|  | 60 | * DESCRIPTION: Implements a semaphore wait with a check to see if the | 
|  | 61 | *              semaphore is available immediately.  If it is not, the | 
| Bob Moore | f6dd922 | 2006-07-07 20:44:38 -0400 | [diff] [blame] | 62 | *              interpreter is released before waiting. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | * | 
|  | 64 | ******************************************************************************/ | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 65 | acpi_status acpi_ex_system_wait_semaphore(acpi_semaphore semaphore, u16 timeout) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 67 | acpi_status status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 69 | ACPI_FUNCTION_TRACE(ex_system_wait_semaphore); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 |  | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 71 | status = acpi_os_wait_semaphore(semaphore, 1, ACPI_DO_NOT_WAIT); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 72 | if (ACPI_SUCCESS(status)) { | 
|  | 73 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } | 
|  | 75 |  | 
|  | 76 | if (status == AE_TIME) { | 
| Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 77 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | /* We must wait, so unlock the interpreter */ | 
|  | 79 |  | 
| Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 80 | acpi_ex_relinquish_interpreter(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 82 | status = acpi_os_wait_semaphore(semaphore, 1, timeout); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 84 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, | 
|  | 85 | "*** Thread awake after blocking, %s\n", | 
|  | 86 | acpi_format_exception(status))); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
|  | 88 | /* Reacquire the interpreter */ | 
|  | 89 |  | 
| Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 90 | acpi_ex_reacquire_interpreter(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } | 
|  | 92 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 93 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } | 
|  | 95 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | /******************************************************************************* | 
|  | 97 | * | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 98 | * FUNCTION:    acpi_ex_system_wait_mutex | 
|  | 99 | * | 
|  | 100 | * PARAMETERS:  Mutex           - Mutex to wait on | 
|  | 101 | *              Timeout         - Max time to wait | 
|  | 102 | * | 
|  | 103 | * RETURN:      Status | 
|  | 104 | * | 
| Bob Moore | f6dd922 | 2006-07-07 20:44:38 -0400 | [diff] [blame] | 105 | * DESCRIPTION: Implements a mutex wait with a check to see if the | 
|  | 106 | *              mutex is available immediately.  If it is not, the | 
|  | 107 | *              interpreter is released before waiting. | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 108 | * | 
|  | 109 | ******************************************************************************/ | 
|  | 110 |  | 
|  | 111 | acpi_status acpi_ex_system_wait_mutex(acpi_mutex mutex, u16 timeout) | 
|  | 112 | { | 
|  | 113 | acpi_status status; | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 114 |  | 
|  | 115 | ACPI_FUNCTION_TRACE(ex_system_wait_mutex); | 
|  | 116 |  | 
|  | 117 | status = acpi_os_acquire_mutex(mutex, ACPI_DO_NOT_WAIT); | 
|  | 118 | if (ACPI_SUCCESS(status)) { | 
|  | 119 | return_ACPI_STATUS(status); | 
|  | 120 | } | 
|  | 121 |  | 
|  | 122 | if (status == AE_TIME) { | 
|  | 123 |  | 
|  | 124 | /* We must wait, so unlock the interpreter */ | 
|  | 125 |  | 
| Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 126 | acpi_ex_relinquish_interpreter(); | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 127 |  | 
|  | 128 | status = acpi_os_acquire_mutex(mutex, timeout); | 
|  | 129 |  | 
|  | 130 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, | 
|  | 131 | "*** Thread awake after blocking, %s\n", | 
|  | 132 | acpi_format_exception(status))); | 
|  | 133 |  | 
|  | 134 | /* Reacquire the interpreter */ | 
|  | 135 |  | 
| Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 136 | acpi_ex_reacquire_interpreter(); | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 137 | } | 
|  | 138 |  | 
|  | 139 | return_ACPI_STATUS(status); | 
|  | 140 | } | 
|  | 141 |  | 
|  | 142 | /******************************************************************************* | 
|  | 143 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | * FUNCTION:    acpi_ex_system_do_stall | 
|  | 145 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 146 | * PARAMETERS:  how_long        - The amount of time to stall, | 
|  | 147 | *                                in microseconds | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | * | 
|  | 149 | * RETURN:      Status | 
|  | 150 | * | 
|  | 151 | * DESCRIPTION: Suspend running thread for specified amount of time. | 
|  | 152 | *              Note: ACPI specification requires that Stall() does not | 
|  | 153 | *              relinquish the processor, and delays longer than 100 usec | 
|  | 154 | *              should use Sleep() instead.  We allow stalls up to 255 usec | 
|  | 155 | *              for compatibility with other interpreters and existing BIOSs. | 
|  | 156 | * | 
|  | 157 | ******************************************************************************/ | 
|  | 158 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 159 | acpi_status acpi_ex_system_do_stall(u32 how_long) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 161 | acpi_status status = AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 163 | ACPI_FUNCTION_ENTRY(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 165 | if (how_long > 255) {	/* 255 microseconds */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | /* | 
|  | 167 | * Longer than 255 usec, this is an error | 
|  | 168 | * | 
|  | 169 | * (ACPI specifies 100 usec as max, but this gives some slack in | 
|  | 170 | * order to support existing BIOSs) | 
|  | 171 | */ | 
| Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 172 | ACPI_ERROR((AE_INFO, "Time parameter is too large (%d)", | 
|  | 173 | how_long)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | status = AE_AML_OPERAND_VALUE; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | } else { | 
|  | 176 | acpi_os_stall(how_long); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } | 
|  | 178 |  | 
|  | 179 | return (status); | 
|  | 180 | } | 
|  | 181 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /******************************************************************************* | 
|  | 183 | * | 
|  | 184 | * FUNCTION:    acpi_ex_system_do_suspend | 
|  | 185 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 186 | * PARAMETERS:  how_long        - The amount of time to suspend, | 
|  | 187 | *                                in milliseconds | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | * | 
|  | 189 | * RETURN:      None | 
|  | 190 | * | 
|  | 191 | * DESCRIPTION: Suspend running thread for specified amount of time. | 
|  | 192 | * | 
|  | 193 | ******************************************************************************/ | 
|  | 194 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 195 | acpi_status acpi_ex_system_do_suspend(acpi_integer how_long) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 197 | ACPI_FUNCTION_ENTRY(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 |  | 
|  | 199 | /* Since this thread will sleep, we must release the interpreter */ | 
|  | 200 |  | 
| Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 201 | acpi_ex_relinquish_interpreter(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 203 | acpi_os_sleep(how_long); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 |  | 
|  | 205 | /* And now we must get the interpreter again */ | 
|  | 206 |  | 
| Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 207 | acpi_ex_reacquire_interpreter(); | 
|  | 208 | return (AE_OK); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } | 
|  | 210 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | /******************************************************************************* | 
|  | 212 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | * FUNCTION:    acpi_ex_system_signal_event | 
|  | 214 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 215 | * PARAMETERS:  obj_desc        - The object descriptor for this op | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 217 | * RETURN:      Status | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | * | 
|  | 219 | * DESCRIPTION: Provides an access point to perform synchronization operations | 
|  | 220 | *              within the AML. | 
|  | 221 | * | 
|  | 222 | ******************************************************************************/ | 
|  | 223 |  | 
| Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 224 | acpi_status acpi_ex_system_signal_event(union acpi_operand_object * obj_desc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 226 | acpi_status status = AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 228 | ACPI_FUNCTION_TRACE(ex_system_signal_event); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 |  | 
|  | 230 | if (obj_desc) { | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 231 | status = | 
|  | 232 | acpi_os_signal_semaphore(obj_desc->event.os_semaphore, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } | 
|  | 234 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 235 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } | 
|  | 237 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | /******************************************************************************* | 
|  | 239 | * | 
|  | 240 | * FUNCTION:    acpi_ex_system_wait_event | 
|  | 241 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 242 | * PARAMETERS:  time_desc       - The 'time to delay' object descriptor | 
|  | 243 | *              obj_desc        - The object descriptor for this op | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | * | 
|  | 245 | * RETURN:      Status | 
|  | 246 | * | 
|  | 247 | * DESCRIPTION: Provides an access point to perform synchronization operations | 
|  | 248 | *              within the AML.  This operation is a request to wait for an | 
|  | 249 | *              event. | 
|  | 250 | * | 
|  | 251 | ******************************************************************************/ | 
|  | 252 |  | 
|  | 253 | acpi_status | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 254 | acpi_ex_system_wait_event(union acpi_operand_object *time_desc, | 
|  | 255 | union acpi_operand_object *obj_desc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 257 | acpi_status status = AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 259 | ACPI_FUNCTION_TRACE(ex_system_wait_event); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 |  | 
|  | 261 | if (obj_desc) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 262 | status = | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 263 | acpi_ex_system_wait_semaphore(obj_desc->event.os_semaphore, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 264 | (u16) time_desc->integer. | 
|  | 265 | value); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } | 
|  | 267 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 268 | return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } | 
|  | 270 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | /******************************************************************************* | 
|  | 272 | * | 
|  | 273 | * FUNCTION:    acpi_ex_system_reset_event | 
|  | 274 | * | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 275 | * PARAMETERS:  obj_desc        - The object descriptor for this op | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | * | 
|  | 277 | * RETURN:      Status | 
|  | 278 | * | 
|  | 279 | * DESCRIPTION: Reset an event to a known state. | 
|  | 280 | * | 
|  | 281 | ******************************************************************************/ | 
|  | 282 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 283 | acpi_status acpi_ex_system_reset_event(union acpi_operand_object *obj_desc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 285 | acpi_status status = AE_OK; | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 286 | acpi_semaphore temp_semaphore; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 288 | ACPI_FUNCTION_ENTRY(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 |  | 
|  | 290 | /* | 
|  | 291 | * We are going to simply delete the existing semaphore and | 
|  | 292 | * create a new one! | 
|  | 293 | */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 294 | status = | 
|  | 295 | acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0, &temp_semaphore); | 
|  | 296 | if (ACPI_SUCCESS(status)) { | 
| Bob Moore | 967440e | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 297 | (void)acpi_os_delete_semaphore(obj_desc->event.os_semaphore); | 
|  | 298 | obj_desc->event.os_semaphore = temp_semaphore; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | } | 
|  | 300 |  | 
|  | 301 | return (status); | 
|  | 302 | } |