| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /******************************************************************************* | 
 | 2 |  * | 
 | 3 |  * Module Name: evsci - System Control Interrupt configuration and | 
 | 4 |  *                      legacy to ACPI mode state transition functions | 
 | 5 |  * | 
 | 6 |  ******************************************************************************/ | 
 | 7 |  | 
 | 8 | /* | 
| Bob Moore | b4e104e | 2011-01-17 11:05:40 +0800 | [diff] [blame] | 9 |  * Copyright (C) 2000 - 2011, 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 |  | 
 | 45 | #include <acpi/acpi.h> | 
| Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 46 | #include "accommon.h" | 
 | 47 | #include "acevents.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #define _COMPONENT          ACPI_EVENTS | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 50 | ACPI_MODULE_NAME("evsci") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 |  | 
| Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 52 | /* Local prototypes */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 53 | static u32 ACPI_SYSTEM_XFACE acpi_ev_sci_xrupt_handler(void *context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 |  | 
 | 55 | /******************************************************************************* | 
 | 56 |  * | 
 | 57 |  * FUNCTION:    acpi_ev_sci_xrupt_handler | 
 | 58 |  * | 
 | 59 |  * PARAMETERS:  Context   - Calling Context | 
 | 60 |  * | 
 | 61 |  * RETURN:      Status code indicates whether interrupt was handled. | 
 | 62 |  * | 
 | 63 |  * DESCRIPTION: Interrupt handler that will figure out what function or | 
 | 64 |  *              control method to call to deal with a SCI. | 
 | 65 |  * | 
 | 66 |  ******************************************************************************/ | 
 | 67 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 68 | static u32 ACPI_SYSTEM_XFACE acpi_ev_sci_xrupt_handler(void *context) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 70 | 	struct acpi_gpe_xrupt_info *gpe_xrupt_list = context; | 
 | 71 | 	u32 interrupt_handled = ACPI_INTERRUPT_NOT_HANDLED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 73 | 	ACPI_FUNCTION_TRACE(ev_sci_xrupt_handler); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | 	/* | 
 | 76 | 	 * We are guaranteed by the ACPI CA initialization/shutdown code that | 
 | 77 | 	 * if this interrupt handler is installed, ACPI is enabled. | 
 | 78 | 	 */ | 
 | 79 |  | 
 | 80 | 	/* | 
 | 81 | 	 * Fixed Events: | 
 | 82 | 	 * Check for and dispatch any Fixed Events that have occurred | 
 | 83 | 	 */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 84 | 	interrupt_handled |= acpi_ev_fixed_event_detect(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
 | 86 | 	/* | 
 | 87 | 	 * General Purpose Events: | 
 | 88 | 	 * Check for and dispatch any GPEs that have occurred | 
 | 89 | 	 */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 90 | 	interrupt_handled |= acpi_ev_gpe_detect(gpe_xrupt_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 |  | 
| Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 92 | 	return_UINT32(interrupt_handled); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } | 
 | 94 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /******************************************************************************* | 
 | 96 |  * | 
 | 97 |  * FUNCTION:    acpi_ev_gpe_xrupt_handler | 
 | 98 |  * | 
 | 99 |  * PARAMETERS:  Context   - Calling Context | 
 | 100 |  * | 
 | 101 |  * RETURN:      Status code indicates whether interrupt was handled. | 
 | 102 |  * | 
 | 103 |  * DESCRIPTION: Handler for GPE Block Device interrupts | 
 | 104 |  * | 
 | 105 |  ******************************************************************************/ | 
 | 106 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 107 | u32 ACPI_SYSTEM_XFACE acpi_ev_gpe_xrupt_handler(void *context) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 109 | 	struct acpi_gpe_xrupt_info *gpe_xrupt_list = context; | 
 | 110 | 	u32 interrupt_handled = ACPI_INTERRUPT_NOT_HANDLED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 112 | 	ACPI_FUNCTION_TRACE(ev_gpe_xrupt_handler); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | 	/* | 
 | 115 | 	 * We are guaranteed by the ACPI CA initialization/shutdown code that | 
 | 116 | 	 * if this interrupt handler is installed, ACPI is enabled. | 
 | 117 | 	 */ | 
 | 118 |  | 
| Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 119 | 	/* GPEs: Check for and dispatch any GPEs that have occurred */ | 
 | 120 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 121 | 	interrupt_handled |= acpi_ev_gpe_detect(gpe_xrupt_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 |  | 
| Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 123 | 	return_UINT32(interrupt_handled); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } | 
 | 125 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | /****************************************************************************** | 
 | 127 |  * | 
 | 128 |  * FUNCTION:    acpi_ev_install_sci_handler | 
 | 129 |  * | 
 | 130 |  * PARAMETERS:  none | 
 | 131 |  * | 
 | 132 |  * RETURN:      Status | 
 | 133 |  * | 
 | 134 |  * DESCRIPTION: Installs SCI handler. | 
 | 135 |  * | 
 | 136 |  ******************************************************************************/ | 
 | 137 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | u32 acpi_ev_install_sci_handler(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 140 | 	u32 status = AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 142 | 	ACPI_FUNCTION_TRACE(ev_install_sci_handler); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 144 | 	status = | 
 | 145 | 	    acpi_os_install_interrupt_handler((u32) acpi_gbl_FADT.sci_interrupt, | 
 | 146 | 					      acpi_ev_sci_xrupt_handler, | 
 | 147 | 					      acpi_gbl_gpe_xrupt_list_head); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 148 | 	return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } | 
 | 150 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | /****************************************************************************** | 
 | 152 |  * | 
 | 153 |  * FUNCTION:    acpi_ev_remove_sci_handler | 
 | 154 |  * | 
 | 155 |  * PARAMETERS:  none | 
 | 156 |  * | 
 | 157 |  * RETURN:      E_OK if handler uninstalled OK, E_ERROR if handler was not | 
 | 158 |  *              installed to begin with | 
 | 159 |  * | 
| Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 160 |  * DESCRIPTION: Remove the SCI interrupt handler. No further SCIs will be | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 |  *              taken. | 
 | 162 |  * | 
 | 163 |  * Note:  It doesn't seem important to disable all events or set the event | 
| Bob Moore | 9f15fc6 | 2008-11-12 16:01:56 +0800 | [diff] [blame] | 164 |  *        enable registers to their original values. The OS should disable | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 |  *        the SCI interrupt level when the handler is removed, so no more | 
 | 166 |  *        events will come in. | 
 | 167 |  * | 
 | 168 |  ******************************************************************************/ | 
 | 169 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 170 | acpi_status acpi_ev_remove_sci_handler(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 172 | 	acpi_status status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 |  | 
| Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 174 | 	ACPI_FUNCTION_TRACE(ev_remove_sci_handler); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 |  | 
 | 176 | 	/* Just let the OS remove the handler and disable the level */ | 
 | 177 |  | 
| Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 178 | 	status = | 
 | 179 | 	    acpi_os_remove_interrupt_handler((u32) acpi_gbl_FADT.sci_interrupt, | 
 | 180 | 					     acpi_ev_sci_xrupt_handler); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 182 | 	return_ACPI_STATUS(status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |