ACPI: bugfix reporting of event handler status
[linux-2.6/mini2440.git] / drivers / acpi / events / evxfevnt.c
blob211e93a90e955a6afe9455fab953a06adba2cdef
1 /******************************************************************************
3 * Module Name: evxfevnt - External Interfaces, ACPI event disable/enable
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2008, Intel Corp.
9 * All rights reserved.
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include <acpi/acevents.h>
46 #include <acpi/acnamesp.h>
47 #include <acpi/actables.h>
49 #define _COMPONENT ACPI_EVENTS
50 ACPI_MODULE_NAME("evxfevnt")
52 /*******************************************************************************
54 * FUNCTION: acpi_enable
56 * PARAMETERS: None
58 * RETURN: Status
60 * DESCRIPTION: Transfers the system into ACPI mode.
62 ******************************************************************************/
63 acpi_status acpi_enable(void)
65 acpi_status status = AE_OK;
67 ACPI_FUNCTION_TRACE(acpi_enable);
69 /* ACPI tables must be present */
71 if (!acpi_tb_tables_loaded()) {
72 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
75 /* Check current mode */
77 if (acpi_hw_get_mode() == ACPI_SYS_MODE_ACPI) {
78 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
79 "System is already in ACPI mode\n"));
80 } else {
81 /* Transition to ACPI mode */
83 status = acpi_hw_set_mode(ACPI_SYS_MODE_ACPI);
84 if (ACPI_FAILURE(status)) {
85 ACPI_ERROR((AE_INFO,
86 "Could not transition to ACPI mode"));
87 return_ACPI_STATUS(status);
90 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
91 "Transition to ACPI mode successful\n"));
94 return_ACPI_STATUS(status);
97 ACPI_EXPORT_SYMBOL(acpi_enable)
99 /*******************************************************************************
101 * FUNCTION: acpi_disable
103 * PARAMETERS: None
105 * RETURN: Status
107 * DESCRIPTION: Transfers the system into LEGACY (non-ACPI) mode.
109 ******************************************************************************/
110 acpi_status acpi_disable(void)
112 acpi_status status = AE_OK;
114 ACPI_FUNCTION_TRACE(acpi_disable);
116 if (acpi_hw_get_mode() == ACPI_SYS_MODE_LEGACY) {
117 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
118 "System is already in legacy (non-ACPI) mode\n"));
119 } else {
120 /* Transition to LEGACY mode */
122 status = acpi_hw_set_mode(ACPI_SYS_MODE_LEGACY);
124 if (ACPI_FAILURE(status)) {
125 ACPI_ERROR((AE_INFO,
126 "Could not exit ACPI mode to legacy mode"));
127 return_ACPI_STATUS(status);
130 ACPI_DEBUG_PRINT((ACPI_DB_INIT, "ACPI mode disabled\n"));
133 return_ACPI_STATUS(status);
136 ACPI_EXPORT_SYMBOL(acpi_disable)
138 /*******************************************************************************
140 * FUNCTION: acpi_enable_event
142 * PARAMETERS: Event - The fixed eventto be enabled
143 * Flags - Reserved
145 * RETURN: Status
147 * DESCRIPTION: Enable an ACPI event (fixed)
149 ******************************************************************************/
150 acpi_status acpi_enable_event(u32 event, u32 flags)
152 acpi_status status = AE_OK;
153 u32 value;
155 ACPI_FUNCTION_TRACE(acpi_enable_event);
157 /* Decode the Fixed Event */
159 if (event > ACPI_EVENT_MAX) {
160 return_ACPI_STATUS(AE_BAD_PARAMETER);
164 * Enable the requested fixed event (by writing a one to the
165 * enable register bit)
167 status =
168 acpi_set_register(acpi_gbl_fixed_event_info[event].
169 enable_register_id, 1);
170 if (ACPI_FAILURE(status)) {
171 return_ACPI_STATUS(status);
174 /* Make sure that the hardware responded */
176 status =
177 acpi_get_register(acpi_gbl_fixed_event_info[event].
178 enable_register_id, &value);
179 if (ACPI_FAILURE(status)) {
180 return_ACPI_STATUS(status);
183 if (value != 1) {
184 ACPI_ERROR((AE_INFO,
185 "Could not enable %s event",
186 acpi_ut_get_event_name(event)));
187 return_ACPI_STATUS(AE_NO_HARDWARE_RESPONSE);
190 return_ACPI_STATUS(status);
193 ACPI_EXPORT_SYMBOL(acpi_enable_event)
195 /*******************************************************************************
197 * FUNCTION: acpi_set_gpe_type
199 * PARAMETERS: gpe_device - Parent GPE Device
200 * gpe_number - GPE level within the GPE block
201 * Type - New GPE type
203 * RETURN: Status
205 * DESCRIPTION: Set the type of an individual GPE
207 ******************************************************************************/
208 acpi_status acpi_set_gpe_type(acpi_handle gpe_device, u32 gpe_number, u8 type)
210 acpi_status status = AE_OK;
211 struct acpi_gpe_event_info *gpe_event_info;
213 ACPI_FUNCTION_TRACE(acpi_set_gpe_type);
215 /* Ensure that we have a valid GPE number */
217 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
218 if (!gpe_event_info) {
219 status = AE_BAD_PARAMETER;
220 goto unlock_and_exit;
223 if ((gpe_event_info->flags & ACPI_GPE_TYPE_MASK) == type) {
224 return_ACPI_STATUS(AE_OK);
227 /* Set the new type (will disable GPE if currently enabled) */
229 status = acpi_ev_set_gpe_type(gpe_event_info, type);
231 unlock_and_exit:
232 return_ACPI_STATUS(status);
235 ACPI_EXPORT_SYMBOL(acpi_set_gpe_type)
237 /*******************************************************************************
239 * FUNCTION: acpi_enable_gpe
241 * PARAMETERS: gpe_device - Parent GPE Device
242 * gpe_number - GPE level within the GPE block
243 * Flags - Just enable, or also wake enable?
244 * Called from ISR or not
246 * RETURN: Status
248 * DESCRIPTION: Enable an ACPI event (general purpose)
250 ******************************************************************************/
251 acpi_status acpi_enable_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
253 acpi_status status = AE_OK;
254 struct acpi_gpe_event_info *gpe_event_info;
256 ACPI_FUNCTION_TRACE(acpi_enable_gpe);
258 /* Use semaphore lock if not executing at interrupt level */
260 if (flags & ACPI_NOT_ISR) {
261 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
262 if (ACPI_FAILURE(status)) {
263 return_ACPI_STATUS(status);
267 /* Ensure that we have a valid GPE number */
269 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
270 if (!gpe_event_info) {
271 status = AE_BAD_PARAMETER;
272 goto unlock_and_exit;
275 /* Perform the enable */
277 status = acpi_ev_enable_gpe(gpe_event_info, TRUE);
279 unlock_and_exit:
280 if (flags & ACPI_NOT_ISR) {
281 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
283 return_ACPI_STATUS(status);
286 ACPI_EXPORT_SYMBOL(acpi_enable_gpe)
288 /*******************************************************************************
290 * FUNCTION: acpi_disable_gpe
292 * PARAMETERS: gpe_device - Parent GPE Device
293 * gpe_number - GPE level within the GPE block
294 * Flags - Just disable, or also wake disable?
295 * Called from ISR or not
297 * RETURN: Status
299 * DESCRIPTION: Disable an ACPI event (general purpose)
301 ******************************************************************************/
302 acpi_status acpi_disable_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
304 acpi_status status = AE_OK;
305 struct acpi_gpe_event_info *gpe_event_info;
307 ACPI_FUNCTION_TRACE(acpi_disable_gpe);
309 /* Use semaphore lock if not executing at interrupt level */
311 if (flags & ACPI_NOT_ISR) {
312 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
313 if (ACPI_FAILURE(status)) {
314 return_ACPI_STATUS(status);
318 /* Ensure that we have a valid GPE number */
320 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
321 if (!gpe_event_info) {
322 status = AE_BAD_PARAMETER;
323 goto unlock_and_exit;
326 status = acpi_ev_disable_gpe(gpe_event_info);
328 unlock_and_exit:
329 if (flags & ACPI_NOT_ISR) {
330 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
332 return_ACPI_STATUS(status);
335 ACPI_EXPORT_SYMBOL(acpi_disable_gpe)
337 /*******************************************************************************
339 * FUNCTION: acpi_disable_event
341 * PARAMETERS: Event - The fixed eventto be enabled
342 * Flags - Reserved
344 * RETURN: Status
346 * DESCRIPTION: Disable an ACPI event (fixed)
348 ******************************************************************************/
349 acpi_status acpi_disable_event(u32 event, u32 flags)
351 acpi_status status = AE_OK;
352 u32 value;
354 ACPI_FUNCTION_TRACE(acpi_disable_event);
356 /* Decode the Fixed Event */
358 if (event > ACPI_EVENT_MAX) {
359 return_ACPI_STATUS(AE_BAD_PARAMETER);
363 * Disable the requested fixed event (by writing a zero to the
364 * enable register bit)
366 status =
367 acpi_set_register(acpi_gbl_fixed_event_info[event].
368 enable_register_id, 0);
369 if (ACPI_FAILURE(status)) {
370 return_ACPI_STATUS(status);
373 status =
374 acpi_get_register(acpi_gbl_fixed_event_info[event].
375 enable_register_id, &value);
376 if (ACPI_FAILURE(status)) {
377 return_ACPI_STATUS(status);
380 if (value != 0) {
381 ACPI_ERROR((AE_INFO,
382 "Could not disable %s events",
383 acpi_ut_get_event_name(event)));
384 return_ACPI_STATUS(AE_NO_HARDWARE_RESPONSE);
387 return_ACPI_STATUS(status);
390 ACPI_EXPORT_SYMBOL(acpi_disable_event)
392 /*******************************************************************************
394 * FUNCTION: acpi_clear_event
396 * PARAMETERS: Event - The fixed event to be cleared
398 * RETURN: Status
400 * DESCRIPTION: Clear an ACPI event (fixed)
402 ******************************************************************************/
403 acpi_status acpi_clear_event(u32 event)
405 acpi_status status = AE_OK;
407 ACPI_FUNCTION_TRACE(acpi_clear_event);
409 /* Decode the Fixed Event */
411 if (event > ACPI_EVENT_MAX) {
412 return_ACPI_STATUS(AE_BAD_PARAMETER);
416 * Clear the requested fixed event (By writing a one to the
417 * status register bit)
419 status =
420 acpi_set_register(acpi_gbl_fixed_event_info[event].
421 status_register_id, 1);
423 return_ACPI_STATUS(status);
426 ACPI_EXPORT_SYMBOL(acpi_clear_event)
428 /*******************************************************************************
430 * FUNCTION: acpi_clear_gpe
432 * PARAMETERS: gpe_device - Parent GPE Device
433 * gpe_number - GPE level within the GPE block
434 * Flags - Called from an ISR or not
436 * RETURN: Status
438 * DESCRIPTION: Clear an ACPI event (general purpose)
440 ******************************************************************************/
441 acpi_status acpi_clear_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
443 acpi_status status = AE_OK;
444 struct acpi_gpe_event_info *gpe_event_info;
446 ACPI_FUNCTION_TRACE(acpi_clear_gpe);
448 /* Use semaphore lock if not executing at interrupt level */
450 if (flags & ACPI_NOT_ISR) {
451 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
452 if (ACPI_FAILURE(status)) {
453 return_ACPI_STATUS(status);
457 /* Ensure that we have a valid GPE number */
459 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
460 if (!gpe_event_info) {
461 status = AE_BAD_PARAMETER;
462 goto unlock_and_exit;
465 status = acpi_hw_clear_gpe(gpe_event_info);
467 unlock_and_exit:
468 if (flags & ACPI_NOT_ISR) {
469 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
471 return_ACPI_STATUS(status);
474 ACPI_EXPORT_SYMBOL(acpi_clear_gpe)
475 /*******************************************************************************
477 * FUNCTION: acpi_get_event_status
479 * PARAMETERS: Event - The fixed event
480 * event_status - Where the current status of the event will
481 * be returned
483 * RETURN: Status
485 * DESCRIPTION: Obtains and returns the current status of the event
487 ******************************************************************************/
488 acpi_status acpi_get_event_status(u32 event, acpi_event_status * event_status)
490 acpi_status status = AE_OK;
491 u32 value;
493 ACPI_FUNCTION_TRACE(acpi_get_event_status);
495 if (!event_status) {
496 return_ACPI_STATUS(AE_BAD_PARAMETER);
499 /* Decode the Fixed Event */
501 if (event > ACPI_EVENT_MAX) {
502 return_ACPI_STATUS(AE_BAD_PARAMETER);
505 /* Get the status of the requested fixed event */
507 status =
508 acpi_get_register(acpi_gbl_fixed_event_info[event].
509 enable_register_id, &value);
510 if (ACPI_FAILURE(status))
511 return_ACPI_STATUS(status);
513 *event_status = value;
515 status =
516 acpi_get_register(acpi_gbl_fixed_event_info[event].
517 status_register_id, &value);
518 if (ACPI_FAILURE(status))
519 return_ACPI_STATUS(status);
521 if (value)
522 *event_status |= ACPI_EVENT_FLAG_SET;
524 if (acpi_gbl_fixed_event_handlers[event].handler)
525 *event_status |= ACPI_EVENT_FLAG_HANDLE;
527 return_ACPI_STATUS(status);
530 ACPI_EXPORT_SYMBOL(acpi_get_event_status)
532 /*******************************************************************************
534 * FUNCTION: acpi_get_gpe_status
536 * PARAMETERS: gpe_device - Parent GPE Device
537 * gpe_number - GPE level within the GPE block
538 * Flags - Called from an ISR or not
539 * event_status - Where the current status of the event will
540 * be returned
542 * RETURN: Status
544 * DESCRIPTION: Get status of an event (general purpose)
546 ******************************************************************************/
547 acpi_status
548 acpi_get_gpe_status(acpi_handle gpe_device,
549 u32 gpe_number, u32 flags, acpi_event_status * event_status)
551 acpi_status status = AE_OK;
552 struct acpi_gpe_event_info *gpe_event_info;
554 ACPI_FUNCTION_TRACE(acpi_get_gpe_status);
556 /* Use semaphore lock if not executing at interrupt level */
558 if (flags & ACPI_NOT_ISR) {
559 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
560 if (ACPI_FAILURE(status)) {
561 return_ACPI_STATUS(status);
565 /* Ensure that we have a valid GPE number */
567 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
568 if (!gpe_event_info) {
569 status = AE_BAD_PARAMETER;
570 goto unlock_and_exit;
573 /* Obtain status on the requested GPE number */
575 status = acpi_hw_get_gpe_status(gpe_event_info, event_status);
577 if (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK)
578 *event_status |= ACPI_EVENT_FLAG_HANDLE;
580 unlock_and_exit:
581 if (flags & ACPI_NOT_ISR) {
582 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
584 return_ACPI_STATUS(status);
587 ACPI_EXPORT_SYMBOL(acpi_get_gpe_status)
588 /*******************************************************************************
590 * FUNCTION: acpi_install_gpe_block
592 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
593 * gpe_block_address - Address and space_iD
594 * register_count - Number of GPE register pairs in the block
595 * interrupt_number - H/W interrupt for the block
597 * RETURN: Status
599 * DESCRIPTION: Create and Install a block of GPE registers
601 ******************************************************************************/
602 acpi_status
603 acpi_install_gpe_block(acpi_handle gpe_device,
604 struct acpi_generic_address *gpe_block_address,
605 u32 register_count, u32 interrupt_number)
607 acpi_status status;
608 union acpi_operand_object *obj_desc;
609 struct acpi_namespace_node *node;
610 struct acpi_gpe_block_info *gpe_block;
612 ACPI_FUNCTION_TRACE(acpi_install_gpe_block);
614 if ((!gpe_device) || (!gpe_block_address) || (!register_count)) {
615 return_ACPI_STATUS(AE_BAD_PARAMETER);
618 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
619 if (ACPI_FAILURE(status)) {
620 return (status);
623 node = acpi_ns_map_handle_to_node(gpe_device);
624 if (!node) {
625 status = AE_BAD_PARAMETER;
626 goto unlock_and_exit;
630 * For user-installed GPE Block Devices, the gpe_block_base_number
631 * is always zero
633 status =
634 acpi_ev_create_gpe_block(node, gpe_block_address, register_count, 0,
635 interrupt_number, &gpe_block);
636 if (ACPI_FAILURE(status)) {
637 goto unlock_and_exit;
640 /* Run the _PRW methods and enable the GPEs */
642 status = acpi_ev_initialize_gpe_block(node, gpe_block);
643 if (ACPI_FAILURE(status)) {
644 goto unlock_and_exit;
647 /* Get the device_object attached to the node */
649 obj_desc = acpi_ns_get_attached_object(node);
650 if (!obj_desc) {
652 /* No object, create a new one */
654 obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_DEVICE);
655 if (!obj_desc) {
656 status = AE_NO_MEMORY;
657 goto unlock_and_exit;
660 status =
661 acpi_ns_attach_object(node, obj_desc, ACPI_TYPE_DEVICE);
663 /* Remove local reference to the object */
665 acpi_ut_remove_reference(obj_desc);
667 if (ACPI_FAILURE(status)) {
668 goto unlock_and_exit;
672 /* Install the GPE block in the device_object */
674 obj_desc->device.gpe_block = gpe_block;
676 unlock_and_exit:
677 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
678 return_ACPI_STATUS(status);
681 ACPI_EXPORT_SYMBOL(acpi_install_gpe_block)
683 /*******************************************************************************
685 * FUNCTION: acpi_remove_gpe_block
687 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
689 * RETURN: Status
691 * DESCRIPTION: Remove a previously installed block of GPE registers
693 ******************************************************************************/
694 acpi_status acpi_remove_gpe_block(acpi_handle gpe_device)
696 union acpi_operand_object *obj_desc;
697 acpi_status status;
698 struct acpi_namespace_node *node;
700 ACPI_FUNCTION_TRACE(acpi_remove_gpe_block);
702 if (!gpe_device) {
703 return_ACPI_STATUS(AE_BAD_PARAMETER);
706 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
707 if (ACPI_FAILURE(status)) {
708 return (status);
711 node = acpi_ns_map_handle_to_node(gpe_device);
712 if (!node) {
713 status = AE_BAD_PARAMETER;
714 goto unlock_and_exit;
717 /* Get the device_object attached to the node */
719 obj_desc = acpi_ns_get_attached_object(node);
720 if (!obj_desc || !obj_desc->device.gpe_block) {
721 return_ACPI_STATUS(AE_NULL_OBJECT);
724 /* Delete the GPE block (but not the device_object) */
726 status = acpi_ev_delete_gpe_block(obj_desc->device.gpe_block);
727 if (ACPI_SUCCESS(status)) {
728 obj_desc->device.gpe_block = NULL;
731 unlock_and_exit:
732 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
733 return_ACPI_STATUS(status);
736 ACPI_EXPORT_SYMBOL(acpi_remove_gpe_block)