Loading...
1 2 3 4 5 6 7 8 9 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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | /****************************************************************************** * * Module Name: evmisc - ACPI device notification handler dispatch * and ACPI Global Lock support * $Revision: 31 $ * *****************************************************************************/ /* * Copyright (C) 2000, 2001 R. Byron Moore * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "acpi.h" #include "acevents.h" #include "acnamesp.h" #include "acinterp.h" #include "achware.h" #define _COMPONENT ACPI_EVENTS MODULE_NAME ("evmisc") /******************************************************************************* * * FUNCTION: Acpi_ev_queue_notify_request * * PARAMETERS: * * RETURN: None. * * DESCRIPTION: Dispatch a device notification event to a previously * installed handler. * ******************************************************************************/ ACPI_STATUS acpi_ev_queue_notify_request ( ACPI_NAMESPACE_NODE *node, u32 notify_value) { ACPI_OPERAND_OBJECT *obj_desc; ACPI_OPERAND_OBJECT *handler_obj = NULL; ACPI_GENERIC_STATE *notify_info; ACPI_STATUS status = AE_OK; PROC_NAME ("Ev_queue_notify_request"); /* * For value 1 (Ejection Request), some device method may need to be run. * For value 2 (Device Wake) if _PRW exists, the _PS0 method may need to be run. * For value 0x80 (Status Change) on the power button or sleep button, * initiate soft-off or sleep operation? */ switch (notify_value) { case 0: break; case 1: break; case 2: break; case 0x80: break; default: break; } /* * Get the notify object attached to the device Node */ obj_desc = acpi_ns_get_attached_object (node); if (obj_desc) { /* We have the notify object, Get the right handler */ switch (node->type) { case ACPI_TYPE_DEVICE: if (notify_value <= MAX_SYS_NOTIFY) { handler_obj = obj_desc->device.sys_handler; } else { handler_obj = obj_desc->device.drv_handler; } break; case ACPI_TYPE_THERMAL: if (notify_value <= MAX_SYS_NOTIFY) { handler_obj = obj_desc->thermal_zone.sys_handler; } else { handler_obj = obj_desc->thermal_zone.drv_handler; } break; } } /* If there is any handler to run, schedule the dispatcher */ if ((acpi_gbl_sys_notify.handler && (notify_value <= MAX_SYS_NOTIFY)) || (acpi_gbl_drv_notify.handler && (notify_value > MAX_SYS_NOTIFY)) || handler_obj) { notify_info = acpi_ut_create_generic_state (); if (!notify_info) { return (AE_NO_MEMORY); } notify_info->notify.node = node; notify_info->notify.value = (u16) notify_value; notify_info->notify.handler_obj = handler_obj; status = acpi_os_queue_for_execution (OSD_PRIORITY_HIGH, acpi_ev_notify_dispatch, notify_info); if (ACPI_FAILURE (status)) { acpi_ut_delete_generic_state (notify_info); } } if (!handler_obj) { /* There is no per-device notify handler for this device */ } return (status); } /******************************************************************************* * * FUNCTION: Acpi_ev_notify_dispatch * * PARAMETERS: * * RETURN: None. * * DESCRIPTION: Dispatch a device notification event to a previously * installed handler. * ******************************************************************************/ void acpi_ev_notify_dispatch ( void *context) { ACPI_GENERIC_STATE *notify_info = (ACPI_GENERIC_STATE *) context; ACPI_NOTIFY_HANDLER global_handler = NULL; void *global_context = NULL; ACPI_OPERAND_OBJECT *handler_obj; /* * We will invoke a global notify handler if installed. * This is done _before_ we invoke the per-device handler attached to the device. */ if (notify_info->notify.value <= MAX_SYS_NOTIFY) { /* Global system notification handler */ if (acpi_gbl_sys_notify.handler) { global_handler = acpi_gbl_sys_notify.handler; global_context = acpi_gbl_sys_notify.context; } } else { /* Global driver notification handler */ if (acpi_gbl_drv_notify.handler) { global_handler = acpi_gbl_drv_notify.handler; global_context = acpi_gbl_drv_notify.context; } } /* Invoke the system handler first, if present */ if (global_handler) { global_handler (notify_info->notify.node, notify_info->notify.value, global_context); } /* Now invoke the per-device handler, if present */ handler_obj = notify_info->notify.handler_obj; if (handler_obj) { handler_obj->notify_handler.handler (notify_info->notify.node, notify_info->notify.value, handler_obj->notify_handler.context); } /* All done with the info object */ acpi_ut_delete_generic_state (notify_info); } /******************************************************************************* * * FUNCTION: Acpi_ev_global_lock_thread * * RETURN: None * * DESCRIPTION: Invoked by SCI interrupt handler upon acquisition of the * Global Lock. Simply signal all threads that are waiting * for the lock. * ******************************************************************************/ static void acpi_ev_global_lock_thread ( void *context) { /* Signal threads that are waiting for the lock */ if (acpi_gbl_global_lock_thread_count) { /* Send sufficient units to the semaphore */ acpi_os_signal_semaphore (acpi_gbl_global_lock_semaphore, acpi_gbl_global_lock_thread_count); } } /******************************************************************************* * * FUNCTION: Acpi_ev_global_lock_handler * * RETURN: Status * * DESCRIPTION: Invoked directly from the SCI handler when a global lock * release interrupt occurs. Grab the global lock and queue * the global lock thread for execution * ******************************************************************************/ static u32 acpi_ev_global_lock_handler ( void *context) { u8 acquired = FALSE; void *global_lock; /* * Attempt to get the lock * If we don't get it now, it will be marked pending and we will * take another interrupt when it becomes free. */ global_lock = acpi_gbl_FACS->global_lock; ACPI_ACQUIRE_GLOBAL_LOCK (global_lock, acquired); if (acquired) { /* Got the lock, now wake all threads waiting for it */ acpi_gbl_global_lock_acquired = TRUE; /* Run the Global Lock thread which will signal all waiting threads */ acpi_os_queue_for_execution (OSD_PRIORITY_HIGH, acpi_ev_global_lock_thread, context); } return (INTERRUPT_HANDLED); } /******************************************************************************* * * FUNCTION: Acpi_ev_init_global_lock_handler * * RETURN: Status * * DESCRIPTION: Install a handler for the global lock release event * ******************************************************************************/ ACPI_STATUS acpi_ev_init_global_lock_handler (void) { ACPI_STATUS status; acpi_gbl_global_lock_present = TRUE; status = acpi_install_fixed_event_handler (ACPI_EVENT_GLOBAL, acpi_ev_global_lock_handler, NULL); /* * If the global lock does not exist on this platform, the attempt * to enable GBL_STS will fail (the GBL_EN bit will not stick) * Map to AE_OK, but mark global lock as not present. * Any attempt to actually use the global lock will be flagged * with an error. */ if (status == AE_NO_HARDWARE_RESPONSE) { acpi_gbl_global_lock_present = FALSE; status = AE_OK; } return (status); } /****************************************************************************** * * FUNCTION: Acpi_ev_acquire_global_lock * * RETURN: Status * * DESCRIPTION: Attempt to gain ownership of the Global Lock. * *****************************************************************************/ ACPI_STATUS acpi_ev_acquire_global_lock(void) { ACPI_STATUS status = AE_OK; u8 acquired = FALSE; void *global_lock; /* Make sure that we actually have a global lock */ if (!acpi_gbl_global_lock_present) { return (AE_NO_GLOBAL_LOCK); } /* One more thread wants the global lock */ acpi_gbl_global_lock_thread_count++; /* If we (OS side) have the hardware lock already, we are done */ if (acpi_gbl_global_lock_acquired) { return (AE_OK); } /* Only if the FACS is valid */ if (!acpi_gbl_FACS) { return (AE_OK); } /* We must acquire the actual hardware lock */ global_lock = acpi_gbl_FACS->global_lock; ACPI_ACQUIRE_GLOBAL_LOCK (global_lock, acquired); if (acquired) { /* We got the lock */ acpi_gbl_global_lock_acquired = TRUE; return (AE_OK); } /* * Did not get the lock. The pending bit was set above, and we must now * wait until we get the global lock released interrupt. */ /* * Acquire the global lock semaphore first. * Since this wait will block, we must release the interpreter */ status = acpi_ex_system_wait_semaphore (acpi_gbl_global_lock_semaphore, ACPI_UINT32_MAX); return (status); } /******************************************************************************* * * FUNCTION: Acpi_ev_release_global_lock * * DESCRIPTION: Releases ownership of the Global Lock. * ******************************************************************************/ void acpi_ev_release_global_lock (void) { u8 pending = FALSE; void *global_lock; if (!acpi_gbl_global_lock_thread_count) { REPORT_WARNING(("Global Lock has not be acquired, cannot release\n")); return; } /* One fewer thread has the global lock */ acpi_gbl_global_lock_thread_count--; /* Have all threads released the lock? */ if (!acpi_gbl_global_lock_thread_count) { /* * No more threads holding lock, we can do the actual hardware * release */ global_lock = acpi_gbl_FACS->global_lock; ACPI_RELEASE_GLOBAL_LOCK (global_lock, pending); acpi_gbl_global_lock_acquired = FALSE; /* * If the pending bit was set, we must write GBL_RLS to the control * register */ if (pending) { acpi_hw_register_bit_access (ACPI_WRITE, ACPI_MTX_LOCK, GBL_RLS, 1); } } return; } |