ACPICA: adding SPDX headers
[linux-2.6-block.git] / drivers / acpi / acpica / evevent.c
CommitLineData
95857638 1// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
1da177e4
LT
2/******************************************************************************
3 *
4 * Module Name: evevent - Fixed Event handling and dispatch
5 *
da6f8320 6 * Copyright (C) 2000 - 2018, Intel Corp.
1da177e4 7 *
95857638 8 *****************************************************************************/
1da177e4
LT
9
10#include <acpi/acpi.h>
e2f7a777
LB
11#include "accommon.h"
12#include "acevents.h"
1da177e4
LT
13
14#define _COMPONENT ACPI_EVENTS
4be44fcd 15ACPI_MODULE_NAME("evevent")
33620c54 16#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
44f6c012 17/* Local prototypes */
4be44fcd 18static acpi_status acpi_ev_fixed_event_initialize(void);
44f6c012 19
4be44fcd 20static u32 acpi_ev_fixed_event_dispatch(u32 event);
1da177e4
LT
21
22/*******************************************************************************
23 *
24 * FUNCTION: acpi_ev_initialize_events
25 *
26 * PARAMETERS: None
27 *
28 * RETURN: Status
29 *
44f6c012 30 * DESCRIPTION: Initialize global data structures for ACPI events (Fixed, GPE)
1da177e4
LT
31 *
32 ******************************************************************************/
33
4be44fcd 34acpi_status acpi_ev_initialize_events(void)
1da177e4 35{
4be44fcd 36 acpi_status status;
1da177e4 37
b229cf92 38 ACPI_FUNCTION_TRACE(ev_initialize_events);
1da177e4 39
22e5b40a
BM
40 /* If Hardware Reduced flag is set, there are no fixed events */
41
42 if (acpi_gbl_reduced_hardware) {
43 return_ACPI_STATUS(AE_OK);
44 }
45
1da177e4 46 /*
44f6c012 47 * Initialize the Fixed and General Purpose Events. This is done prior to
9f15fc66
BM
48 * enabling SCIs to prevent interrupts from occurring before the handlers
49 * are installed.
1da177e4 50 */
4be44fcd
LB
51 status = acpi_ev_fixed_event_initialize();
52 if (ACPI_FAILURE(status)) {
b8e4d893
BM
53 ACPI_EXCEPTION((AE_INFO, status,
54 "Unable to initialize fixed events"));
4be44fcd 55 return_ACPI_STATUS(status);
1da177e4
LT
56 }
57
4be44fcd
LB
58 status = acpi_ev_gpe_initialize();
59 if (ACPI_FAILURE(status)) {
b8e4d893
BM
60 ACPI_EXCEPTION((AE_INFO, status,
61 "Unable to initialize general purpose events"));
4be44fcd 62 return_ACPI_STATUS(status);
1da177e4
LT
63 }
64
4be44fcd 65 return_ACPI_STATUS(status);
1da177e4
LT
66}
67
1da177e4
LT
68/*******************************************************************************
69 *
70 * FUNCTION: acpi_ev_install_xrupt_handlers
71 *
72 * PARAMETERS: None
73 *
74 * RETURN: Status
75 *
76 * DESCRIPTION: Install interrupt handlers for the SCI and Global Lock
77 *
78 ******************************************************************************/
79
4be44fcd 80acpi_status acpi_ev_install_xrupt_handlers(void)
1da177e4 81{
4be44fcd 82 acpi_status status;
1da177e4 83
b229cf92 84 ACPI_FUNCTION_TRACE(ev_install_xrupt_handlers);
1da177e4 85
22e5b40a
BM
86 /* If Hardware Reduced flag is set, there is no ACPI h/w */
87
88 if (acpi_gbl_reduced_hardware) {
89 return_ACPI_STATUS(AE_OK);
90 }
91
1da177e4
LT
92 /* Install the SCI handler */
93
4be44fcd
LB
94 status = acpi_ev_install_sci_handler();
95 if (ACPI_FAILURE(status)) {
b8e4d893
BM
96 ACPI_EXCEPTION((AE_INFO, status,
97 "Unable to install System Control Interrupt handler"));
4be44fcd 98 return_ACPI_STATUS(status);
1da177e4
LT
99 }
100
101 /* Install the handler for the Global Lock */
102
4be44fcd
LB
103 status = acpi_ev_init_global_lock_handler();
104 if (ACPI_FAILURE(status)) {
b8e4d893
BM
105 ACPI_EXCEPTION((AE_INFO, status,
106 "Unable to initialize Global Lock handler"));
4be44fcd 107 return_ACPI_STATUS(status);
1da177e4
LT
108 }
109
110 acpi_gbl_events_initialized = TRUE;
4be44fcd 111 return_ACPI_STATUS(status);
1da177e4
LT
112}
113
1da177e4
LT
114/*******************************************************************************
115 *
116 * FUNCTION: acpi_ev_fixed_event_initialize
117 *
118 * PARAMETERS: None
119 *
120 * RETURN: Status
121 *
768aaaf1 122 * DESCRIPTION: Install the fixed event handlers and disable all fixed events.
1da177e4
LT
123 *
124 ******************************************************************************/
125
4be44fcd 126static acpi_status acpi_ev_fixed_event_initialize(void)
1da177e4 127{
67a119f9 128 u32 i;
4be44fcd 129 acpi_status status;
1da177e4
LT
130
131 /*
9f15fc66
BM
132 * Initialize the structure that keeps track of fixed event handlers and
133 * enable the fixed events.
1da177e4
LT
134 */
135 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
136 acpi_gbl_fixed_event_handlers[i].handler = NULL;
137 acpi_gbl_fixed_event_handlers[i].context = NULL;
138
768aaaf1 139 /* Disable the fixed event */
1da177e4
LT
140
141 if (acpi_gbl_fixed_event_info[i].enable_register_id != 0xFF) {
4be44fcd 142 status =
50ffba1b 143 acpi_write_bit_register(acpi_gbl_fixed_event_info
768aaaf1
BM
144 [i].enable_register_id,
145 ACPI_DISABLE_EVENT);
4be44fcd 146 if (ACPI_FAILURE(status)) {
1da177e4
LT
147 return (status);
148 }
149 }
150 }
151
152 return (AE_OK);
153}
154
1da177e4
LT
155/*******************************************************************************
156 *
157 * FUNCTION: acpi_ev_fixed_event_detect
158 *
159 * PARAMETERS: None
160 *
161 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
162 *
44f6c012 163 * DESCRIPTION: Checks the PM status register for active fixed events
1da177e4
LT
164 *
165 ******************************************************************************/
166
4be44fcd 167u32 acpi_ev_fixed_event_detect(void)
1da177e4 168{
4be44fcd
LB
169 u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
170 u32 fixed_status;
171 u32 fixed_enable;
67a119f9 172 u32 i;
1da177e4 173
b229cf92 174 ACPI_FUNCTION_NAME(ev_fixed_event_detect);
1da177e4
LT
175
176 /*
177 * Read the fixed feature status and enable registers, as all the cases
9f15fc66 178 * depend on their values. Ignore errors here.
1da177e4 179 */
d30dc9ab
AS
180 (void)acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &fixed_status);
181 (void)acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &fixed_enable);
1da177e4 182
4be44fcd
LB
183 ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
184 "Fixed Event Block: Enable %08X Status %08X\n",
185 fixed_enable, fixed_status));
1da177e4
LT
186
187 /*
188 * Check for all possible Fixed Events and dispatch those that are active
189 */
190 for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
52fc0b02 191
1da177e4
LT
192 /* Both the status and enable bits must be on for this event */
193
4be44fcd
LB
194 if ((fixed_status & acpi_gbl_fixed_event_info[i].
195 status_bit_mask)
196 && (fixed_enable & acpi_gbl_fixed_event_info[i].
197 enable_bit_mask)) {
a0fcdb23
LM
198 /*
199 * Found an active (signalled) event. Invoke global event
200 * handler if present.
201 */
202 acpi_fixed_event_count[i]++;
203 if (acpi_gbl_global_event_handler) {
204 acpi_gbl_global_event_handler
205 (ACPI_EVENT_TYPE_FIXED, NULL, i,
206 acpi_gbl_global_event_handler_context);
207 }
52fc0b02 208
67a119f9 209 int_status |= acpi_ev_fixed_event_dispatch(i);
1da177e4
LT
210 }
211 }
212
213 return (int_status);
214}
215
1da177e4
LT
216/*******************************************************************************
217 *
218 * FUNCTION: acpi_ev_fixed_event_dispatch
219 *
ba494bee 220 * PARAMETERS: event - Event type
1da177e4
LT
221 *
222 * RETURN: INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
223 *
224 * DESCRIPTION: Clears the status bit for the requested event, calls the
225 * handler that previously registered for the event.
d4d32195 226 * NOTE: If there is no handler for the event, the event is
b07a383f 227 * disabled to prevent further interrupts.
1da177e4
LT
228 *
229 ******************************************************************************/
230
4be44fcd 231static u32 acpi_ev_fixed_event_dispatch(u32 event)
1da177e4
LT
232{
233
4be44fcd 234 ACPI_FUNCTION_ENTRY();
1da177e4
LT
235
236 /* Clear the status bit */
237
50ffba1b 238 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
768aaaf1 239 status_register_id, ACPI_CLEAR_STATUS);
1da177e4
LT
240
241 /*
d4d32195
BM
242 * Make sure that a handler exists. If not, report an error
243 * and disable the event to prevent further interrupts.
1da177e4 244 */
d4d32195 245 if (!acpi_gbl_fixed_event_handlers[event].handler) {
50ffba1b 246 (void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
768aaaf1
BM
247 enable_register_id,
248 ACPI_DISABLE_EVENT);
1da177e4 249
b8e4d893 250 ACPI_ERROR((AE_INFO,
d4d32195
BM
251 "No installed handler for fixed event - %s (%u), disabling",
252 acpi_ut_get_event_name(event), event));
1da177e4
LT
253
254 return (ACPI_INTERRUPT_NOT_HANDLED);
255 }
256
257 /* Invoke the Fixed Event handler */
258
4be44fcd
LB
259 return ((acpi_gbl_fixed_event_handlers[event].
260 handler) (acpi_gbl_fixed_event_handlers[event].context));
1da177e4 261}
33620c54
BM
262
263#endif /* !ACPI_REDUCED_HARDWARE */