blob: 80fc0b9b11e542c5a2d5b8f158a3a57fba1c5c60 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evevent - Fixed Event handling and dispatch
4 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("evevent")
Bob Moore33620c52012-02-14 18:14:27 +080050#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
Robert Moore44f6c012005-04-18 22:49:35 -040051/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040052static acpi_status acpi_ev_fixed_event_initialize(void);
Robert Moore44f6c012005-04-18 22:49:35 -040053
Len Brown4be44fc2005-08-05 00:44:28 -040054static u32 acpi_ev_fixed_event_dispatch(u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*******************************************************************************
57 *
58 * FUNCTION: acpi_ev_initialize_events
59 *
60 * PARAMETERS: None
61 *
62 * RETURN: Status
63 *
Robert Moore44f6c012005-04-18 22:49:35 -040064 * DESCRIPTION: Initialize global data structures for ACPI events (Fixed, GPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
66 ******************************************************************************/
67
Len Brown4be44fc2005-08-05 00:44:28 -040068acpi_status acpi_ev_initialize_events(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Len Brown4be44fc2005-08-05 00:44:28 -040070 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Bob Mooreb229cf92006-04-21 17:15:00 -040072 ACPI_FUNCTION_TRACE(ev_initialize_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Bob Moore22e5b402011-11-16 10:57:28 +080074 /* If Hardware Reduced flag is set, there are no fixed events */
75
76 if (acpi_gbl_reduced_hardware) {
77 return_ACPI_STATUS(AE_OK);
78 }
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 /*
Robert Moore44f6c012005-04-18 22:49:35 -040081 * Initialize the Fixed and General Purpose Events. This is done prior to
Bob Moore9f15fc62008-11-12 16:01:56 +080082 * enabling SCIs to prevent interrupts from occurring before the handlers
83 * are installed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 */
Len Brown4be44fc2005-08-05 00:44:28 -040085 status = acpi_ev_fixed_event_initialize();
86 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050087 ACPI_EXCEPTION((AE_INFO, status,
88 "Unable to initialize fixed events"));
Len Brown4be44fc2005-08-05 00:44:28 -040089 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
91
Len Brown4be44fc2005-08-05 00:44:28 -040092 status = acpi_ev_gpe_initialize();
93 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050094 ACPI_EXCEPTION((AE_INFO, status,
95 "Unable to initialize general purpose events"));
Len Brown4be44fc2005-08-05 00:44:28 -040096 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
Len Brown4be44fc2005-08-05 00:44:28 -040099 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*******************************************************************************
103 *
104 * FUNCTION: acpi_ev_install_xrupt_handlers
105 *
106 * PARAMETERS: None
107 *
108 * RETURN: Status
109 *
110 * DESCRIPTION: Install interrupt handlers for the SCI and Global Lock
111 *
112 ******************************************************************************/
113
Len Brown4be44fc2005-08-05 00:44:28 -0400114acpi_status acpi_ev_install_xrupt_handlers(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Len Brown4be44fc2005-08-05 00:44:28 -0400116 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Bob Mooreb229cf92006-04-21 17:15:00 -0400118 ACPI_FUNCTION_TRACE(ev_install_xrupt_handlers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Bob Moore22e5b402011-11-16 10:57:28 +0800120 /* If Hardware Reduced flag is set, there is no ACPI h/w */
121
122 if (acpi_gbl_reduced_hardware) {
123 return_ACPI_STATUS(AE_OK);
124 }
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* Install the SCI handler */
127
Len Brown4be44fc2005-08-05 00:44:28 -0400128 status = acpi_ev_install_sci_handler();
129 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500130 ACPI_EXCEPTION((AE_INFO, status,
131 "Unable to install System Control Interrupt handler"));
Len Brown4be44fc2005-08-05 00:44:28 -0400132 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
135 /* Install the handler for the Global Lock */
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137 status = acpi_ev_init_global_lock_handler();
138 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500139 ACPI_EXCEPTION((AE_INFO, status,
140 "Unable to initialize Global Lock handler"));
Len Brown4be44fc2005-08-05 00:44:28 -0400141 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143
144 acpi_gbl_events_initialized = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400145 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*******************************************************************************
149 *
150 * FUNCTION: acpi_ev_fixed_event_initialize
151 *
152 * PARAMETERS: None
153 *
154 * RETURN: Status
155 *
Bob Moore768aaaf2009-03-06 09:49:25 +0800156 * DESCRIPTION: Install the fixed event handlers and disable all fixed events.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
158 ******************************************************************************/
159
Len Brown4be44fc2005-08-05 00:44:28 -0400160static acpi_status acpi_ev_fixed_event_initialize(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Bob Moore67a119f2008-06-10 13:42:13 +0800162 u32 i;
Len Brown4be44fc2005-08-05 00:44:28 -0400163 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800166 * Initialize the structure that keeps track of fixed event handlers and
167 * enable the fixed events.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
169 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
170 acpi_gbl_fixed_event_handlers[i].handler = NULL;
171 acpi_gbl_fixed_event_handlers[i].context = NULL;
172
Bob Moore768aaaf2009-03-06 09:49:25 +0800173 /* Disable the fixed event */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (acpi_gbl_fixed_event_info[i].enable_register_id != 0xFF) {
Len Brown4be44fc2005-08-05 00:44:28 -0400176 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800177 acpi_write_bit_register(acpi_gbl_fixed_event_info
Bob Moore768aaaf2009-03-06 09:49:25 +0800178 [i].enable_register_id,
179 ACPI_DISABLE_EVENT);
Len Brown4be44fc2005-08-05 00:44:28 -0400180 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return (status);
182 }
183 }
184 }
185
186 return (AE_OK);
187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*******************************************************************************
190 *
191 * FUNCTION: acpi_ev_fixed_event_detect
192 *
193 * PARAMETERS: None
194 *
195 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
196 *
Robert Moore44f6c012005-04-18 22:49:35 -0400197 * DESCRIPTION: Checks the PM status register for active fixed events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 *
199 ******************************************************************************/
200
Len Brown4be44fc2005-08-05 00:44:28 -0400201u32 acpi_ev_fixed_event_detect(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Len Brown4be44fc2005-08-05 00:44:28 -0400203 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
204 u32 fixed_status;
205 u32 fixed_enable;
Bob Moore67a119f2008-06-10 13:42:13 +0800206 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Bob Mooreb229cf92006-04-21 17:15:00 -0400208 ACPI_FUNCTION_NAME(ev_fixed_event_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /*
211 * Read the fixed feature status and enable registers, as all the cases
Bob Moore9f15fc62008-11-12 16:01:56 +0800212 * depend on their values. Ignore errors here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 */
Alexey Starikovskiyd30dc9ab2007-09-30 22:39:36 +0400214 (void)acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &fixed_status);
215 (void)acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &fixed_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Len Brown4be44fc2005-08-05 00:44:28 -0400217 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
218 "Fixed Event Block: Enable %08X Status %08X\n",
219 fixed_enable, fixed_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /*
222 * Check for all possible Fixed Events and dispatch those that are active
223 */
224 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* Both the status and enable bits must be on for this event */
227
Len Brown4be44fc2005-08-05 00:44:28 -0400228 if ((fixed_status & acpi_gbl_fixed_event_info[i].
229 status_bit_mask)
230 && (fixed_enable & acpi_gbl_fixed_event_info[i].
231 enable_bit_mask)) {
Lin Minga0fcdb22010-12-13 13:39:26 +0800232 /*
233 * Found an active (signalled) event. Invoke global event
234 * handler if present.
235 */
236 acpi_fixed_event_count[i]++;
237 if (acpi_gbl_global_event_handler) {
238 acpi_gbl_global_event_handler
239 (ACPI_EVENT_TYPE_FIXED, NULL, i,
240 acpi_gbl_global_event_handler_context);
241 }
Bob Moore52fc0b02006-10-02 00:00:00 -0400242
Bob Moore67a119f2008-06-10 13:42:13 +0800243 int_status |= acpi_ev_fixed_event_dispatch(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245 }
246
247 return (int_status);
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*******************************************************************************
251 *
252 * FUNCTION: acpi_ev_fixed_event_dispatch
253 *
Bob Mooreba494be2012-07-12 09:40:10 +0800254 * PARAMETERS: event - Event type
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
256 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
257 *
258 * DESCRIPTION: Clears the status bit for the requested event, calls the
259 * handler that previously registered for the event.
Bob Moored4d32192013-03-08 09:21:41 +0000260 * NOTE: If there is no handler for the event, the event is
Colin Ian Kingb07a3832013-04-12 00:25:10 +0000261 * disabled to prevent further interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 *
263 ******************************************************************************/
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265static u32 acpi_ev_fixed_event_dispatch(u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267
Len Brown4be44fc2005-08-05 00:44:28 -0400268 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /* Clear the status bit */
271
Bob Moore50ffba12009-02-23 15:02:07 +0800272 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
Bob Moore768aaaf2009-03-06 09:49:25 +0800273 status_register_id, ACPI_CLEAR_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /*
Bob Moored4d32192013-03-08 09:21:41 +0000276 * Make sure that a handler exists. If not, report an error
277 * and disable the event to prevent further interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
Bob Moored4d32192013-03-08 09:21:41 +0000279 if (!acpi_gbl_fixed_event_handlers[event].handler) {
Bob Moore50ffba12009-02-23 15:02:07 +0800280 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
Bob Moore768aaaf2009-03-06 09:49:25 +0800281 enable_register_id,
282 ACPI_DISABLE_EVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Bob Mooreb8e4d892006-01-27 16:43:00 -0500284 ACPI_ERROR((AE_INFO,
Bob Moored4d32192013-03-08 09:21:41 +0000285 "No installed handler for fixed event - %s (%u), disabling",
286 acpi_ut_get_event_name(event), event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 return (ACPI_INTERRUPT_NOT_HANDLED);
289 }
290
291 /* Invoke the Fixed Event handler */
292
Len Brown4be44fc2005-08-05 00:44:28 -0400293 return ((acpi_gbl_fixed_event_handlers[event].
294 handler) (acpi_gbl_fixed_event_handlers[event].context));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
Bob Moore33620c52012-02-14 18:14:27 +0800296
297#endif /* !ACPI_REDUCED_HARDWARE */