added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / drivers / acpi / acpica / evevent.c
blob803edd9e3f6a65f853b31232b07d5719a787c7a2
1 /******************************************************************************
3 * Module Name: evevent - Fixed Event handling and dispatch
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 "accommon.h"
46 #include "acevents.h"
48 #define _COMPONENT ACPI_EVENTS
49 ACPI_MODULE_NAME("evevent")
51 /* Local prototypes */
52 static acpi_status acpi_ev_fixed_event_initialize(void);
54 static u32 acpi_ev_fixed_event_dispatch(u32 event);
56 /*******************************************************************************
58 * FUNCTION: acpi_ev_initialize_events
60 * PARAMETERS: None
62 * RETURN: Status
64 * DESCRIPTION: Initialize global data structures for ACPI events (Fixed, GPE)
66 ******************************************************************************/
68 acpi_status acpi_ev_initialize_events(void)
70 acpi_status status;
72 ACPI_FUNCTION_TRACE(ev_initialize_events);
75 * Initialize the Fixed and General Purpose Events. This is done prior to
76 * enabling SCIs to prevent interrupts from occurring before the handlers
77 * are installed.
79 status = acpi_ev_fixed_event_initialize();
80 if (ACPI_FAILURE(status)) {
81 ACPI_EXCEPTION((AE_INFO, status,
82 "Unable to initialize fixed events"));
83 return_ACPI_STATUS(status);
86 status = acpi_ev_gpe_initialize();
87 if (ACPI_FAILURE(status)) {
88 ACPI_EXCEPTION((AE_INFO, status,
89 "Unable to initialize general purpose events"));
90 return_ACPI_STATUS(status);
93 return_ACPI_STATUS(status);
96 /*******************************************************************************
98 * FUNCTION: acpi_ev_install_fadt_gpes
100 * PARAMETERS: None
102 * RETURN: Status
104 * DESCRIPTION: Completes initialization of the FADT-defined GPE blocks
105 * (0 and 1). This causes the _PRW methods to be run, so the HW
106 * must be fully initialized at this point, including global lock
107 * support.
109 ******************************************************************************/
111 acpi_status acpi_ev_install_fadt_gpes(void)
113 acpi_status status;
115 ACPI_FUNCTION_TRACE(ev_install_fadt_gpes);
117 /* Namespace must be locked */
119 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
120 if (ACPI_FAILURE(status)) {
121 return (status);
124 /* FADT GPE Block 0 */
126 (void)acpi_ev_initialize_gpe_block(acpi_gbl_fadt_gpe_device,
127 acpi_gbl_gpe_fadt_blocks[0]);
129 /* FADT GPE Block 1 */
131 (void)acpi_ev_initialize_gpe_block(acpi_gbl_fadt_gpe_device,
132 acpi_gbl_gpe_fadt_blocks[1]);
134 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
135 return_ACPI_STATUS(AE_OK);
138 /*******************************************************************************
140 * FUNCTION: acpi_ev_install_xrupt_handlers
142 * PARAMETERS: None
144 * RETURN: Status
146 * DESCRIPTION: Install interrupt handlers for the SCI and Global Lock
148 ******************************************************************************/
150 acpi_status acpi_ev_install_xrupt_handlers(void)
152 acpi_status status;
154 ACPI_FUNCTION_TRACE(ev_install_xrupt_handlers);
156 /* Install the SCI handler */
158 status = acpi_ev_install_sci_handler();
159 if (ACPI_FAILURE(status)) {
160 ACPI_EXCEPTION((AE_INFO, status,
161 "Unable to install System Control Interrupt handler"));
162 return_ACPI_STATUS(status);
165 /* Install the handler for the Global Lock */
167 status = acpi_ev_init_global_lock_handler();
168 if (ACPI_FAILURE(status)) {
169 ACPI_EXCEPTION((AE_INFO, status,
170 "Unable to initialize Global Lock handler"));
171 return_ACPI_STATUS(status);
174 acpi_gbl_events_initialized = TRUE;
175 return_ACPI_STATUS(status);
178 /*******************************************************************************
180 * FUNCTION: acpi_ev_fixed_event_initialize
182 * PARAMETERS: None
184 * RETURN: Status
186 * DESCRIPTION: Install the fixed event handlers and enable the fixed events.
188 ******************************************************************************/
190 static acpi_status acpi_ev_fixed_event_initialize(void)
192 u32 i;
193 acpi_status status;
196 * Initialize the structure that keeps track of fixed event handlers and
197 * enable the fixed events.
199 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
200 acpi_gbl_fixed_event_handlers[i].handler = NULL;
201 acpi_gbl_fixed_event_handlers[i].context = NULL;
203 /* Enable the fixed event */
205 if (acpi_gbl_fixed_event_info[i].enable_register_id != 0xFF) {
206 status =
207 acpi_set_register(acpi_gbl_fixed_event_info[i].
208 enable_register_id, 0);
209 if (ACPI_FAILURE(status)) {
210 return (status);
215 return (AE_OK);
218 /*******************************************************************************
220 * FUNCTION: acpi_ev_fixed_event_detect
222 * PARAMETERS: None
224 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
226 * DESCRIPTION: Checks the PM status register for active fixed events
228 ******************************************************************************/
230 u32 acpi_ev_fixed_event_detect(void)
232 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
233 u32 fixed_status;
234 u32 fixed_enable;
235 u32 i;
237 ACPI_FUNCTION_NAME(ev_fixed_event_detect);
240 * Read the fixed feature status and enable registers, as all the cases
241 * depend on their values. Ignore errors here.
243 (void)acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &fixed_status);
244 (void)acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &fixed_enable);
246 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
247 "Fixed Event Block: Enable %08X Status %08X\n",
248 fixed_enable, fixed_status));
251 * Check for all possible Fixed Events and dispatch those that are active
253 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
255 /* Both the status and enable bits must be on for this event */
257 if ((fixed_status & acpi_gbl_fixed_event_info[i].
258 status_bit_mask)
259 && (fixed_enable & acpi_gbl_fixed_event_info[i].
260 enable_bit_mask)) {
262 /* Found an active (signalled) event */
263 acpi_os_fixed_event_count(i);
264 int_status |= acpi_ev_fixed_event_dispatch(i);
268 return (int_status);
271 /*******************************************************************************
273 * FUNCTION: acpi_ev_fixed_event_dispatch
275 * PARAMETERS: Event - Event type
277 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
279 * DESCRIPTION: Clears the status bit for the requested event, calls the
280 * handler that previously registered for the event.
282 ******************************************************************************/
284 static u32 acpi_ev_fixed_event_dispatch(u32 event)
287 ACPI_FUNCTION_ENTRY();
289 /* Clear the status bit */
291 (void)acpi_set_register(acpi_gbl_fixed_event_info[event].
292 status_register_id, 1);
295 * Make sure we've got a handler. If not, report an error. The event is
296 * disabled to prevent further interrupts.
298 if (NULL == acpi_gbl_fixed_event_handlers[event].handler) {
299 (void)acpi_set_register(acpi_gbl_fixed_event_info[event].
300 enable_register_id, 0);
302 ACPI_ERROR((AE_INFO,
303 "No installed handler for fixed event [%08X]",
304 event));
306 return (ACPI_INTERRUPT_NOT_HANDLED);
309 /* Invoke the Fixed Event handler */
311 return ((acpi_gbl_fixed_event_handlers[event].
312 handler) (acpi_gbl_fixed_event_handlers[event].context));