blob: 842d1e3fb37b968c66ec45c8a6a5f9485d55df1a [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/*
8 * Copyright (C) 2000 - 2005, R. Byron Moore
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
47#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040048ACPI_MODULE_NAME("evevent")
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Robert Moore44f6c012005-04-18 22:49:35 -040050/* Local prototypes */
Len Brown4be44fc2005-08-05 00:44:28 -040051static acpi_status acpi_ev_fixed_event_initialize(void);
Robert Moore44f6c012005-04-18 22:49:35 -040052
Len Brown4be44fc2005-08-05 00:44:28 -040053static u32 acpi_ev_fixed_event_dispatch(u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*******************************************************************************
56 *
57 * FUNCTION: acpi_ev_initialize_events
58 *
59 * PARAMETERS: None
60 *
61 * RETURN: Status
62 *
Robert Moore44f6c012005-04-18 22:49:35 -040063 * DESCRIPTION: Initialize global data structures for ACPI events (Fixed, GPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
65 ******************************************************************************/
66
Len Brown4be44fc2005-08-05 00:44:28 -040067acpi_status acpi_ev_initialize_events(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Len Brown4be44fc2005-08-05 00:44:28 -040069 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Len Brown4be44fc2005-08-05 00:44:28 -040071 ACPI_FUNCTION_TRACE("ev_initialize_events");
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 /* Make sure we have ACPI tables */
74
75 if (!acpi_gbl_DSDT) {
Len Brown4be44fc2005-08-05 00:44:28 -040076 ACPI_DEBUG_PRINT((ACPI_DB_WARN, "No ACPI tables present!\n"));
77 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79
80 /*
Robert Moore44f6c012005-04-18 22:49:35 -040081 * Initialize the Fixed and General Purpose Events. This is done prior to
82 * enabling SCIs to prevent interrupts from occurring before the handlers are
83 * 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)) {
87 ACPI_REPORT_ERROR(("Unable to initialize fixed events, %s\n",
88 acpi_format_exception(status)));
89 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)) {
94 ACPI_REPORT_ERROR(("Unable to initialize general purpose events, %s\n", acpi_format_exception(status)));
95 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
97
Len Brown4be44fc2005-08-05 00:44:28 -040098 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*******************************************************************************
102 *
103 * FUNCTION: acpi_ev_install_xrupt_handlers
104 *
105 * PARAMETERS: None
106 *
107 * RETURN: Status
108 *
109 * DESCRIPTION: Install interrupt handlers for the SCI and Global Lock
110 *
111 ******************************************************************************/
112
Len Brown4be44fc2005-08-05 00:44:28 -0400113acpi_status acpi_ev_install_xrupt_handlers(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Len Brown4be44fc2005-08-05 00:44:28 -0400115 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Len Brown4be44fc2005-08-05 00:44:28 -0400117 ACPI_FUNCTION_TRACE("ev_install_xrupt_handlers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 /* Install the SCI handler */
120
Len Brown4be44fc2005-08-05 00:44:28 -0400121 status = acpi_ev_install_sci_handler();
122 if (ACPI_FAILURE(status)) {
123 ACPI_REPORT_ERROR(("Unable to install System Control Interrupt Handler, %s\n", acpi_format_exception(status)));
124 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
127 /* Install the handler for the Global Lock */
128
Len Brown4be44fc2005-08-05 00:44:28 -0400129 status = acpi_ev_init_global_lock_handler();
130 if (ACPI_FAILURE(status)) {
131 ACPI_REPORT_ERROR(("Unable to initialize Global Lock handler, %s\n", acpi_format_exception(status)));
132 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
135 acpi_gbl_events_initialized = TRUE;
Len Brown4be44fc2005-08-05 00:44:28 -0400136 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*******************************************************************************
140 *
141 * FUNCTION: acpi_ev_fixed_event_initialize
142 *
143 * PARAMETERS: None
144 *
145 * RETURN: Status
146 *
147 * DESCRIPTION: Install the fixed event handlers and enable the fixed events.
148 *
149 ******************************************************************************/
150
Len Brown4be44fc2005-08-05 00:44:28 -0400151static acpi_status acpi_ev_fixed_event_initialize(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Len Brown4be44fc2005-08-05 00:44:28 -0400153 acpi_native_uint i;
154 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /*
157 * Initialize the structure that keeps track of fixed event handlers
158 * and enable the fixed events.
159 */
160 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
161 acpi_gbl_fixed_event_handlers[i].handler = NULL;
162 acpi_gbl_fixed_event_handlers[i].context = NULL;
163
164 /* Enable the fixed event */
165
166 if (acpi_gbl_fixed_event_info[i].enable_register_id != 0xFF) {
Len Brown4be44fc2005-08-05 00:44:28 -0400167 status =
168 acpi_set_register(acpi_gbl_fixed_event_info[i].
169 enable_register_id, 0,
170 ACPI_MTX_LOCK);
171 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return (status);
173 }
174 }
175 }
176
177 return (AE_OK);
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*******************************************************************************
181 *
182 * FUNCTION: acpi_ev_fixed_event_detect
183 *
184 * PARAMETERS: None
185 *
186 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
187 *
Robert Moore44f6c012005-04-18 22:49:35 -0400188 * DESCRIPTION: Checks the PM status register for active fixed events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
190 ******************************************************************************/
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192u32 acpi_ev_fixed_event_detect(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Len Brown4be44fc2005-08-05 00:44:28 -0400194 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
195 u32 fixed_status;
196 u32 fixed_enable;
197 acpi_native_uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Len Brown4be44fc2005-08-05 00:44:28 -0400199 ACPI_FUNCTION_NAME("ev_fixed_event_detect");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /*
202 * Read the fixed feature status and enable registers, as all the cases
203 * depend on their values. Ignore errors here.
204 */
Len Brown4be44fc2005-08-05 00:44:28 -0400205 (void)acpi_hw_register_read(ACPI_MTX_DO_NOT_LOCK,
206 ACPI_REGISTER_PM1_STATUS, &fixed_status);
207 (void)acpi_hw_register_read(ACPI_MTX_DO_NOT_LOCK,
208 ACPI_REGISTER_PM1_ENABLE, &fixed_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Len Brown4be44fc2005-08-05 00:44:28 -0400210 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
211 "Fixed Event Block: Enable %08X Status %08X\n",
212 fixed_enable, fixed_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /*
215 * Check for all possible Fixed Events and dispatch those that are active
216 */
217 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
218 /* Both the status and enable bits must be on for this event */
219
Len Brown4be44fc2005-08-05 00:44:28 -0400220 if ((fixed_status & acpi_gbl_fixed_event_info[i].
221 status_bit_mask)
222 && (fixed_enable & acpi_gbl_fixed_event_info[i].
223 enable_bit_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* Found an active (signalled) event */
225
Len Brown4be44fc2005-08-05 00:44:28 -0400226 int_status |= acpi_ev_fixed_event_dispatch((u32) i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228 }
229
230 return (int_status);
231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/*******************************************************************************
234 *
235 * FUNCTION: acpi_ev_fixed_event_dispatch
236 *
237 * PARAMETERS: Event - Event type
238 *
239 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
240 *
241 * DESCRIPTION: Clears the status bit for the requested event, calls the
242 * handler that previously registered for the event.
243 *
244 ******************************************************************************/
245
Len Brown4be44fc2005-08-05 00:44:28 -0400246static u32 acpi_ev_fixed_event_dispatch(u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248
Len Brown4be44fc2005-08-05 00:44:28 -0400249 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 /* Clear the status bit */
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253 (void)acpi_set_register(acpi_gbl_fixed_event_info[event].
254 status_register_id, 1, ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /*
257 * Make sure we've got a handler. If not, report an error.
258 * The event is disabled to prevent further interrupts.
259 */
260 if (NULL == acpi_gbl_fixed_event_handlers[event].handler) {
Len Brown4be44fc2005-08-05 00:44:28 -0400261 (void)acpi_set_register(acpi_gbl_fixed_event_info[event].
262 enable_register_id, 0,
263 ACPI_MTX_DO_NOT_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Len Brown4be44fc2005-08-05 00:44:28 -0400265 ACPI_REPORT_ERROR(("No installed handler for fixed event [%08X]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 return (ACPI_INTERRUPT_NOT_HANDLED);
268 }
269
270 /* Invoke the Fixed Event handler */
271
Len Brown4be44fc2005-08-05 00:44:28 -0400272 return ((acpi_gbl_fixed_event_handlers[event].
273 handler) (acpi_gbl_fixed_event_handlers[event].context));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}