Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Module Name: evmisc - Miscellaneous event manager support functions |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | 4a90c7e | 2006-01-13 16:22:00 -0500 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2006, R. Byron Moore |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * 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 | |
| 44 | #include <acpi/acpi.h> |
| 45 | #include <acpi/acevents.h> |
| 46 | #include <acpi/acnamesp.h> |
| 47 | #include <acpi/acinterp.h> |
| 48 | |
| 49 | #define _COMPONENT ACPI_EVENTS |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 50 | ACPI_MODULE_NAME("evmisc") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 52 | /* Names for Notify() values, used for debug output */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 53 | #ifdef ACPI_DEBUG_OUTPUT |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 54 | static const char *acpi_notify_value_names[] = { |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 55 | "Bus Check", |
| 56 | "Device Check", |
| 57 | "Device Wake", |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 58 | "Eject Request", |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 59 | "Device Check Light", |
| 60 | "Frequency Mismatch", |
| 61 | "Bus Mode Mismatch", |
| 62 | "Power Fault" |
| 63 | }; |
| 64 | #endif |
| 65 | |
| 66 | /* Local prototypes */ |
| 67 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 68 | static void ACPI_SYSTEM_XFACE acpi_ev_notify_dispatch(void *context); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 69 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 70 | static void ACPI_SYSTEM_XFACE acpi_ev_global_lock_thread(void *context); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 71 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 72 | static u32 acpi_ev_global_lock_handler(void *context); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /******************************************************************************* |
| 75 | * |
| 76 | * FUNCTION: acpi_ev_is_notify_object |
| 77 | * |
| 78 | * PARAMETERS: Node - Node to check |
| 79 | * |
| 80 | * RETURN: TRUE if notifies allowed on this object |
| 81 | * |
| 82 | * DESCRIPTION: Check type of node for a object that supports notifies. |
| 83 | * |
| 84 | * TBD: This could be replaced by a flag bit in the node. |
| 85 | * |
| 86 | ******************************************************************************/ |
| 87 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 88 | u8 acpi_ev_is_notify_object(struct acpi_namespace_node *node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
| 90 | switch (node->type) { |
| 91 | case ACPI_TYPE_DEVICE: |
| 92 | case ACPI_TYPE_PROCESSOR: |
| 93 | case ACPI_TYPE_POWER: |
| 94 | case ACPI_TYPE_THERMAL: |
| 95 | /* |
| 96 | * These are the ONLY objects that can receive ACPI notifications |
| 97 | */ |
| 98 | return (TRUE); |
| 99 | |
| 100 | default: |
| 101 | return (FALSE); |
| 102 | } |
| 103 | } |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | /******************************************************************************* |
| 106 | * |
| 107 | * FUNCTION: acpi_ev_queue_notify_request |
| 108 | * |
| 109 | * PARAMETERS: Node - NS node for the notified object |
| 110 | * notify_value - Value from the Notify() request |
| 111 | * |
| 112 | * RETURN: Status |
| 113 | * |
| 114 | * DESCRIPTION: Dispatch a device notification event to a previously |
| 115 | * installed handler. |
| 116 | * |
| 117 | ******************************************************************************/ |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 120 | acpi_ev_queue_notify_request(struct acpi_namespace_node * node, |
| 121 | u32 notify_value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 123 | union acpi_operand_object *obj_desc; |
| 124 | union acpi_operand_object *handler_obj = NULL; |
| 125 | union acpi_generic_state *notify_info; |
| 126 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 128 | ACPI_FUNCTION_NAME(ev_queue_notify_request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | /* |
| 131 | * For value 3 (Ejection Request), some device method may need to be run. |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 132 | * For value 2 (Device Wake) if _PRW exists, the _PS0 method may need |
| 133 | * to be run. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | * For value 0x80 (Status Change) on the power button or sleep button, |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 135 | * initiate soft-off or sleep operation? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 137 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 138 | "Dispatching Notify(%X) on node %p\n", notify_value, |
| 139 | node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
| 141 | if (notify_value <= 7) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 142 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Notify value: %s\n", |
| 143 | acpi_notify_value_names[notify_value])); |
| 144 | } else { |
| 145 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 146 | "Notify value: 0x%2.2X **Device Specific**\n", |
| 147 | notify_value)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | /* Get the notify object attached to the NS Node */ |
| 151 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | obj_desc = acpi_ns_get_attached_object(node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | if (obj_desc) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* We have the notify object, Get the right handler */ |
| 156 | |
| 157 | switch (node->type) { |
| 158 | case ACPI_TYPE_DEVICE: |
| 159 | case ACPI_TYPE_THERMAL: |
| 160 | case ACPI_TYPE_PROCESSOR: |
| 161 | case ACPI_TYPE_POWER: |
| 162 | |
| 163 | if (notify_value <= ACPI_MAX_SYS_NOTIFY) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 164 | handler_obj = |
| 165 | obj_desc->common_notify.system_notify; |
| 166 | } else { |
| 167 | handler_obj = |
| 168 | obj_desc->common_notify.device_notify; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | break; |
| 171 | |
| 172 | default: |
| 173 | /* All other types are not supported */ |
| 174 | return (AE_TYPE); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | /* If there is any handler to run, schedule the dispatcher */ |
| 179 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | if ((acpi_gbl_system_notify.handler |
| 181 | && (notify_value <= ACPI_MAX_SYS_NOTIFY)) |
| 182 | || (acpi_gbl_device_notify.handler |
| 183 | && (notify_value > ACPI_MAX_SYS_NOTIFY)) || handler_obj) { |
| 184 | notify_info = acpi_ut_create_generic_state(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | if (!notify_info) { |
| 186 | return (AE_NO_MEMORY); |
| 187 | } |
| 188 | |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 189 | notify_info->common.descriptor_type = |
| 190 | ACPI_DESC_TYPE_STATE_NOTIFY; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 191 | notify_info->notify.node = node; |
| 192 | notify_info->notify.value = (u16) notify_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | notify_info->notify.handler_obj = handler_obj; |
| 194 | |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 195 | status = |
| 196 | acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_ev_notify_dispatch, |
| 197 | notify_info); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 198 | if (ACPI_FAILURE(status)) { |
| 199 | acpi_ut_delete_generic_state(notify_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | } |
| 202 | |
| 203 | if (!handler_obj) { |
| 204 | /* |
| 205 | * There is no per-device notify handler for this device. |
| 206 | * This may or may not be a problem. |
| 207 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 208 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 209 | "No notify handler for Notify(%4.4s, %X) node %p\n", |
| 210 | acpi_ut_get_node_name(node), notify_value, |
| 211 | node)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | return (status); |
| 215 | } |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /******************************************************************************* |
| 218 | * |
| 219 | * FUNCTION: acpi_ev_notify_dispatch |
| 220 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 221 | * PARAMETERS: Context - To be passed to the notify handler |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | * |
| 223 | * RETURN: None. |
| 224 | * |
| 225 | * DESCRIPTION: Dispatch a device notification event to a previously |
| 226 | * installed handler. |
| 227 | * |
| 228 | ******************************************************************************/ |
| 229 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 230 | static void ACPI_SYSTEM_XFACE acpi_ev_notify_dispatch(void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 232 | union acpi_generic_state *notify_info = |
| 233 | (union acpi_generic_state *)context; |
| 234 | acpi_notify_handler global_handler = NULL; |
| 235 | void *global_context = NULL; |
| 236 | union acpi_operand_object *handler_obj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 238 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
| 240 | /* |
| 241 | * We will invoke a global notify handler if installed. |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 242 | * This is done _before_ we invoke the per-device handler attached |
| 243 | * to the device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | */ |
| 245 | if (notify_info->notify.value <= ACPI_MAX_SYS_NOTIFY) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | /* Global system notification handler */ |
| 248 | |
| 249 | if (acpi_gbl_system_notify.handler) { |
| 250 | global_handler = acpi_gbl_system_notify.handler; |
| 251 | global_context = acpi_gbl_system_notify.context; |
| 252 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 253 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | /* Global driver notification handler */ |
| 255 | |
| 256 | if (acpi_gbl_device_notify.handler) { |
| 257 | global_handler = acpi_gbl_device_notify.handler; |
| 258 | global_context = acpi_gbl_device_notify.context; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | /* Invoke the system handler first, if present */ |
| 263 | |
| 264 | if (global_handler) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 265 | global_handler(notify_info->notify.node, |
| 266 | notify_info->notify.value, global_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | /* Now invoke the per-device handler, if present */ |
| 270 | |
| 271 | handler_obj = notify_info->notify.handler_obj; |
| 272 | if (handler_obj) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 273 | handler_obj->notify.handler(notify_info->notify.node, |
| 274 | notify_info->notify.value, |
| 275 | handler_obj->notify.context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /* All done with the info object */ |
| 279 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 280 | acpi_ut_delete_generic_state(notify_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
| 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | /******************************************************************************* |
| 284 | * |
| 285 | * FUNCTION: acpi_ev_global_lock_thread |
| 286 | * |
| 287 | * PARAMETERS: Context - From thread interface, not used |
| 288 | * |
| 289 | * RETURN: None |
| 290 | * |
| 291 | * DESCRIPTION: Invoked by SCI interrupt handler upon acquisition of the |
| 292 | * Global Lock. Simply signal all threads that are waiting |
| 293 | * for the lock. |
| 294 | * |
| 295 | ******************************************************************************/ |
| 296 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 297 | static void ACPI_SYSTEM_XFACE acpi_ev_global_lock_thread(void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 299 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 301 | /* Signal the thread that is waiting for the lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 303 | /* Send a unit to the semaphore */ |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 304 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 305 | status = acpi_os_signal_semaphore(acpi_gbl_global_lock_semaphore, 1); |
| 306 | if (ACPI_FAILURE(status)) { |
| 307 | ACPI_ERROR((AE_INFO, "Could not signal Global Lock semaphore")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | /******************************************************************************* |
| 312 | * |
| 313 | * FUNCTION: acpi_ev_global_lock_handler |
| 314 | * |
| 315 | * PARAMETERS: Context - From thread interface, not used |
| 316 | * |
| 317 | * RETURN: ACPI_INTERRUPT_HANDLED or ACPI_INTERRUPT_NOT_HANDLED |
| 318 | * |
| 319 | * DESCRIPTION: Invoked directly from the SCI handler when a global lock |
| 320 | * release interrupt occurs. Grab the global lock and queue |
| 321 | * the global lock thread for execution |
| 322 | * |
| 323 | ******************************************************************************/ |
| 324 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 325 | static u32 acpi_ev_global_lock_handler(void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 327 | u8 acquired = FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | /* |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 330 | * Attempt to get the lock. |
| 331 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | * If we don't get it now, it will be marked pending and we will |
| 333 | * take another interrupt when it becomes free. |
| 334 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | ACPI_ACQUIRE_GLOBAL_LOCK(acpi_gbl_common_fACS.global_lock, acquired); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | if (acquired) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 337 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | /* Got the lock, now wake all threads waiting for it */ |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | acpi_gbl_global_lock_acquired = TRUE; |
Alexey Y. Starikovskiy | fcfc638 | 2006-09-26 04:18:16 -0400 | [diff] [blame] | 341 | acpi_ev_global_lock_thread(context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | return (ACPI_INTERRUPT_HANDLED); |
| 345 | } |
| 346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | /******************************************************************************* |
| 348 | * |
| 349 | * FUNCTION: acpi_ev_init_global_lock_handler |
| 350 | * |
| 351 | * PARAMETERS: None |
| 352 | * |
| 353 | * RETURN: Status |
| 354 | * |
| 355 | * DESCRIPTION: Install a handler for the global lock release event |
| 356 | * |
| 357 | ******************************************************************************/ |
| 358 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 359 | acpi_status acpi_ev_init_global_lock_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 361 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 363 | ACPI_FUNCTION_TRACE(ev_init_global_lock_handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | acpi_gbl_global_lock_present = TRUE; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 366 | status = acpi_install_fixed_event_handler(ACPI_EVENT_GLOBAL, |
| 367 | acpi_ev_global_lock_handler, |
| 368 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
| 370 | /* |
| 371 | * If the global lock does not exist on this platform, the attempt |
| 372 | * to enable GBL_STATUS will fail (the GBL_ENABLE bit will not stick) |
| 373 | * Map to AE_OK, but mark global lock as not present. |
| 374 | * Any attempt to actually use the global lock will be flagged |
| 375 | * with an error. |
| 376 | */ |
| 377 | if (status == AE_NO_HARDWARE_RESPONSE) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 378 | ACPI_ERROR((AE_INFO, |
| 379 | "No response from Global Lock hardware, disabling lock")); |
Robert Moore | 0c9938c | 2005-07-29 15:15:00 -0700 | [diff] [blame] | 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | acpi_gbl_global_lock_present = FALSE; |
| 382 | status = AE_OK; |
| 383 | } |
| 384 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 385 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | /****************************************************************************** |
| 389 | * |
| 390 | * FUNCTION: acpi_ev_acquire_global_lock |
| 391 | * |
| 392 | * PARAMETERS: Timeout - Max time to wait for the lock, in millisec. |
| 393 | * |
| 394 | * RETURN: Status |
| 395 | * |
| 396 | * DESCRIPTION: Attempt to gain ownership of the Global Lock. |
| 397 | * |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 398 | * MUTEX: Interpreter must be locked |
| 399 | * |
| 400 | * Note: The original implementation allowed multiple threads to "acquire" the |
| 401 | * Global Lock, and the OS would hold the lock until the last thread had |
| 402 | * released it. However, this could potentially starve the BIOS out of the |
| 403 | * lock, especially in the case where there is a tight handshake between the |
| 404 | * Embedded Controller driver and the BIOS. Therefore, this implementation |
| 405 | * allows only one thread to acquire the HW Global Lock at a time, and makes |
| 406 | * the global lock appear as a standard mutex on the OS side. |
| 407 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | *****************************************************************************/ |
| 409 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 410 | acpi_status acpi_ev_acquire_global_lock(u16 timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 412 | acpi_status status = AE_OK; |
| 413 | u8 acquired = FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 415 | ACPI_FUNCTION_TRACE(ev_acquire_global_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 417 | /* |
| 418 | * Only one thread can acquire the GL at a time, the global_lock_mutex |
| 419 | * enforces this. This interface releases the interpreter if we must wait. |
| 420 | */ |
| 421 | status = acpi_ex_system_wait_mutex(acpi_gbl_global_lock_mutex, timeout); |
| 422 | if (ACPI_FAILURE(status)) { |
| 423 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 426 | /* |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 427 | * Make sure that a global lock actually exists. If not, just treat |
| 428 | * the lock as a standard mutex. |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 429 | */ |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 430 | if (!acpi_gbl_global_lock_present) { |
| 431 | acpi_gbl_global_lock_acquired = TRUE; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 432 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
| 434 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 435 | /* Attempt to acquire the actual hardware lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 437 | ACPI_ACQUIRE_GLOBAL_LOCK(acpi_gbl_common_fACS.global_lock, acquired); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | if (acquired) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 439 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 440 | /* We got the lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 442 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 443 | "Acquired hardware Global Lock\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
| 445 | acpi_gbl_global_lock_acquired = TRUE; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 446 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | /* |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 450 | * Did not get the lock. The pending bit was set above, and we must now |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | * wait until we get the global lock released interrupt. |
| 452 | */ |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 453 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Waiting for hardware Global Lock\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
| 455 | /* |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 456 | * Wait for handshake with the global lock interrupt handler. |
| 457 | * This interface releases the interpreter if we must wait. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | */ |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 459 | status = acpi_ex_system_wait_semaphore(acpi_gbl_global_lock_semaphore, |
| 460 | ACPI_WAIT_FOREVER); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 461 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | /******************************************************************************* |
| 465 | * |
| 466 | * FUNCTION: acpi_ev_release_global_lock |
| 467 | * |
| 468 | * PARAMETERS: None |
| 469 | * |
| 470 | * RETURN: Status |
| 471 | * |
| 472 | * DESCRIPTION: Releases ownership of the Global Lock. |
| 473 | * |
| 474 | ******************************************************************************/ |
| 475 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 476 | acpi_status acpi_ev_release_global_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 478 | u8 pending = FALSE; |
| 479 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 481 | ACPI_FUNCTION_TRACE(ev_release_global_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 483 | /* Lock must be acquired */ |
| 484 | |
| 485 | if (!acpi_gbl_global_lock_acquired) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 486 | ACPI_WARNING((AE_INFO, |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 487 | "Cannot release the ACPI Global Lock, it has not been acquired")); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 488 | return_ACPI_STATUS(AE_NOT_ACQUIRED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 491 | if (acpi_gbl_global_lock_present) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 493 | /* Allow any thread to release the lock */ |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 494 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 495 | ACPI_RELEASE_GLOBAL_LOCK(acpi_gbl_common_fACS.global_lock, |
| 496 | pending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 498 | /* |
| 499 | * If the pending bit was set, we must write GBL_RLS to the control |
| 500 | * register |
| 501 | */ |
| 502 | if (pending) { |
| 503 | status = |
| 504 | acpi_set_register(ACPI_BITREG_GLOBAL_LOCK_RELEASE, |
| 505 | 1, ACPI_MTX_LOCK); |
| 506 | } |
| 507 | |
| 508 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 509 | "Released hardware Global Lock\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | acpi_gbl_global_lock_acquired = FALSE; |
| 513 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 514 | /* Release the local GL mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame^] | 516 | acpi_os_release_mutex(acpi_gbl_global_lock_mutex); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 517 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | /****************************************************************************** |
| 521 | * |
| 522 | * FUNCTION: acpi_ev_terminate |
| 523 | * |
| 524 | * PARAMETERS: none |
| 525 | * |
| 526 | * RETURN: none |
| 527 | * |
| 528 | * DESCRIPTION: Disable events and free memory allocated for table storage. |
| 529 | * |
| 530 | ******************************************************************************/ |
| 531 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 532 | void acpi_ev_terminate(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 534 | acpi_native_uint i; |
| 535 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 537 | ACPI_FUNCTION_TRACE(ev_terminate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
| 539 | if (acpi_gbl_events_initialized) { |
| 540 | /* |
| 541 | * Disable all event-related functionality. |
| 542 | * In all cases, on error, print a message but obviously we don't abort. |
| 543 | */ |
| 544 | |
| 545 | /* Disable all fixed events */ |
| 546 | |
| 547 | for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 548 | status = acpi_disable_event((u32) i, 0); |
| 549 | if (ACPI_FAILURE(status)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 550 | ACPI_ERROR((AE_INFO, |
| 551 | "Could not disable fixed event %d", |
| 552 | (u32) i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | } |
| 554 | } |
| 555 | |
| 556 | /* Disable all GPEs in all GPE blocks */ |
| 557 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 558 | status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | /* Remove SCI handler */ |
| 561 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 562 | status = acpi_ev_remove_sci_handler(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | if (ACPI_FAILURE(status)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 564 | ACPI_ERROR((AE_INFO, "Could not remove SCI handler")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
| 566 | } |
| 567 | |
| 568 | /* Deallocate all handler objects installed within GPE info structs */ |
| 569 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 570 | status = acpi_ev_walk_gpe_list(acpi_ev_delete_gpe_handlers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | |
| 572 | /* Return to original mode if necessary */ |
| 573 | |
| 574 | if (acpi_gbl_original_mode == ACPI_SYS_MODE_LEGACY) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 575 | status = acpi_disable(); |
| 576 | if (ACPI_FAILURE(status)) { |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 577 | ACPI_WARNING((AE_INFO, "AcpiDisable failed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | } |
| 579 | } |
| 580 | return_VOID; |
| 581 | } |