Linux Audio

Check our new training course

Loading...
v3.1
 
  1/******************************************************************************
  2 *
  3 * Module Name: evevent - Fixed Event handling and dispatch
  4 *
 
 
  5 *****************************************************************************/
  6
  7/*
  8 * Copyright (C) 2000 - 2011, Intel Corp.
  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 "accommon.h"
 46#include "acevents.h"
 47
 48#define _COMPONENT          ACPI_EVENTS
 49ACPI_MODULE_NAME("evevent")
 50
 51/* Local prototypes */
 52static acpi_status acpi_ev_fixed_event_initialize(void);
 53
 54static u32 acpi_ev_fixed_event_dispatch(u32 event);
 55
 56/*******************************************************************************
 57 *
 58 * FUNCTION:    acpi_ev_initialize_events
 59 *
 60 * PARAMETERS:  None
 61 *
 62 * RETURN:      Status
 63 *
 64 * DESCRIPTION: Initialize global data structures for ACPI events (Fixed, GPE)
 65 *
 66 ******************************************************************************/
 67
 68acpi_status acpi_ev_initialize_events(void)
 69{
 70	acpi_status status;
 71
 72	ACPI_FUNCTION_TRACE(ev_initialize_events);
 73
 
 
 
 
 
 
 74	/*
 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.
 78	 */
 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);
 84	}
 85
 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);
 91	}
 92
 93	return_ACPI_STATUS(status);
 94}
 95
 96/*******************************************************************************
 97 *
 98 * FUNCTION:    acpi_ev_install_xrupt_handlers
 99 *
100 * PARAMETERS:  None
101 *
102 * RETURN:      Status
103 *
104 * DESCRIPTION: Install interrupt handlers for the SCI and Global Lock
105 *
106 ******************************************************************************/
107
108acpi_status acpi_ev_install_xrupt_handlers(void)
109{
110	acpi_status status;
111
112	ACPI_FUNCTION_TRACE(ev_install_xrupt_handlers);
113
 
 
 
 
 
 
114	/* Install the SCI handler */
115
116	status = acpi_ev_install_sci_handler();
117	if (ACPI_FAILURE(status)) {
118		ACPI_EXCEPTION((AE_INFO, status,
119				"Unable to install System Control Interrupt handler"));
120		return_ACPI_STATUS(status);
121	}
122
123	/* Install the handler for the Global Lock */
124
125	status = acpi_ev_init_global_lock_handler();
126	if (ACPI_FAILURE(status)) {
127		ACPI_EXCEPTION((AE_INFO, status,
128				"Unable to initialize Global Lock handler"));
129		return_ACPI_STATUS(status);
130	}
131
132	acpi_gbl_events_initialized = TRUE;
133	return_ACPI_STATUS(status);
134}
135
136/*******************************************************************************
137 *
138 * FUNCTION:    acpi_ev_fixed_event_initialize
139 *
140 * PARAMETERS:  None
141 *
142 * RETURN:      Status
143 *
144 * DESCRIPTION: Install the fixed event handlers and disable all fixed events.
145 *
146 ******************************************************************************/
147
148static acpi_status acpi_ev_fixed_event_initialize(void)
149{
150	u32 i;
151	acpi_status status;
152
153	/*
154	 * Initialize the structure that keeps track of fixed event handlers and
155	 * enable the fixed events.
156	 */
157	for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
158		acpi_gbl_fixed_event_handlers[i].handler = NULL;
159		acpi_gbl_fixed_event_handlers[i].context = NULL;
160
161		/* Disable the fixed event */
162
163		if (acpi_gbl_fixed_event_info[i].enable_register_id != 0xFF) {
164			status =
165			    acpi_write_bit_register(acpi_gbl_fixed_event_info
166						    [i].enable_register_id,
167						    ACPI_DISABLE_EVENT);
168			if (ACPI_FAILURE(status)) {
169				return (status);
170			}
171		}
172	}
173
174	return (AE_OK);
175}
176
177/*******************************************************************************
178 *
179 * FUNCTION:    acpi_ev_fixed_event_detect
180 *
181 * PARAMETERS:  None
182 *
183 * RETURN:      INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
184 *
185 * DESCRIPTION: Checks the PM status register for active fixed events
186 *
187 ******************************************************************************/
188
189u32 acpi_ev_fixed_event_detect(void)
190{
191	u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
192	u32 fixed_status;
193	u32 fixed_enable;
194	u32 i;
 
195
196	ACPI_FUNCTION_NAME(ev_fixed_event_detect);
197
198	/*
199	 * Read the fixed feature status and enable registers, as all the cases
200	 * depend on their values. Ignore errors here.
201	 */
202	(void)acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &fixed_status);
203	(void)acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &fixed_enable);
 
 
 
 
204
205	ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
206			  "Fixed Event Block: Enable %08X Status %08X\n",
207			  fixed_enable, fixed_status));
208
209	/*
210	 * Check for all possible Fixed Events and dispatch those that are active
211	 */
212	for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
213
214		/* Both the status and enable bits must be on for this event */
215
216		if ((fixed_status & acpi_gbl_fixed_event_info[i].
217		     status_bit_mask)
218		    && (fixed_enable & acpi_gbl_fixed_event_info[i].
219			enable_bit_mask)) {
220			/*
221			 * Found an active (signalled) event. Invoke global event
222			 * handler if present.
223			 */
224			acpi_fixed_event_count[i]++;
225			if (acpi_gbl_global_event_handler) {
226				acpi_gbl_global_event_handler
227				    (ACPI_EVENT_TYPE_FIXED, NULL, i,
228				     acpi_gbl_global_event_handler_context);
229			}
230
231			int_status |= acpi_ev_fixed_event_dispatch(i);
232		}
233	}
234
235	return (int_status);
236}
237
238/*******************************************************************************
239 *
240 * FUNCTION:    acpi_ev_fixed_event_dispatch
241 *
242 * PARAMETERS:  Event               - Event type
243 *
244 * RETURN:      INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
245 *
246 * DESCRIPTION: Clears the status bit for the requested event, calls the
247 *              handler that previously registered for the event.
 
 
248 *
249 ******************************************************************************/
250
251static u32 acpi_ev_fixed_event_dispatch(u32 event)
252{
253
254	ACPI_FUNCTION_ENTRY();
255
256	/* Clear the status bit */
257
258	(void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
259				      status_register_id, ACPI_CLEAR_STATUS);
260
261	/*
262	 * Make sure we've got a handler. If not, report an error. The event is
263	 * disabled to prevent further interrupts.
264	 */
265	if (NULL == acpi_gbl_fixed_event_handlers[event].handler) {
266		(void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
267					      enable_register_id,
268					      ACPI_DISABLE_EVENT);
269
270		ACPI_ERROR((AE_INFO,
271			    "No installed handler for fixed event [0x%08X]",
272			    event));
273
274		return (ACPI_INTERRUPT_NOT_HANDLED);
275	}
276
277	/* Invoke the Fixed Event handler */
278
279	return ((acpi_gbl_fixed_event_handlers[event].
280		 handler) (acpi_gbl_fixed_event_handlers[event].context));
281}
v5.9
  1// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
  2/******************************************************************************
  3 *
  4 * Module Name: evevent - Fixed Event handling and dispatch
  5 *
  6 * Copyright (C) 2000 - 2020, Intel Corp.
  7 *
  8 *****************************************************************************/
  9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 10#include <acpi/acpi.h>
 11#include "accommon.h"
 12#include "acevents.h"
 13
 14#define _COMPONENT          ACPI_EVENTS
 15ACPI_MODULE_NAME("evevent")
 16#if (!ACPI_REDUCED_HARDWARE)	/* Entire module */
 17/* Local prototypes */
 18static acpi_status acpi_ev_fixed_event_initialize(void);
 19
 20static u32 acpi_ev_fixed_event_dispatch(u32 event);
 21
 22/*******************************************************************************
 23 *
 24 * FUNCTION:    acpi_ev_initialize_events
 25 *
 26 * PARAMETERS:  None
 27 *
 28 * RETURN:      Status
 29 *
 30 * DESCRIPTION: Initialize global data structures for ACPI events (Fixed, GPE)
 31 *
 32 ******************************************************************************/
 33
 34acpi_status acpi_ev_initialize_events(void)
 35{
 36	acpi_status status;
 37
 38	ACPI_FUNCTION_TRACE(ev_initialize_events);
 39
 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
 46	/*
 47	 * Initialize the Fixed and General Purpose Events. This is done prior to
 48	 * enabling SCIs to prevent interrupts from occurring before the handlers
 49	 * are installed.
 50	 */
 51	status = acpi_ev_fixed_event_initialize();
 52	if (ACPI_FAILURE(status)) {
 53		ACPI_EXCEPTION((AE_INFO, status,
 54				"Unable to initialize fixed events"));
 55		return_ACPI_STATUS(status);
 56	}
 57
 58	status = acpi_ev_gpe_initialize();
 59	if (ACPI_FAILURE(status)) {
 60		ACPI_EXCEPTION((AE_INFO, status,
 61				"Unable to initialize general purpose events"));
 62		return_ACPI_STATUS(status);
 63	}
 64
 65	return_ACPI_STATUS(status);
 66}
 67
 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
 80acpi_status acpi_ev_install_xrupt_handlers(void)
 81{
 82	acpi_status status;
 83
 84	ACPI_FUNCTION_TRACE(ev_install_xrupt_handlers);
 85
 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
 92	/* Install the SCI handler */
 93
 94	status = acpi_ev_install_sci_handler();
 95	if (ACPI_FAILURE(status)) {
 96		ACPI_EXCEPTION((AE_INFO, status,
 97				"Unable to install System Control Interrupt handler"));
 98		return_ACPI_STATUS(status);
 99	}
100
101	/* Install the handler for the Global Lock */
102
103	status = acpi_ev_init_global_lock_handler();
104	if (ACPI_FAILURE(status)) {
105		ACPI_EXCEPTION((AE_INFO, status,
106				"Unable to initialize Global Lock handler"));
107		return_ACPI_STATUS(status);
108	}
109
110	acpi_gbl_events_initialized = TRUE;
111	return_ACPI_STATUS(status);
112}
113
114/*******************************************************************************
115 *
116 * FUNCTION:    acpi_ev_fixed_event_initialize
117 *
118 * PARAMETERS:  None
119 *
120 * RETURN:      Status
121 *
122 * DESCRIPTION: Install the fixed event handlers and disable all fixed events.
123 *
124 ******************************************************************************/
125
126static acpi_status acpi_ev_fixed_event_initialize(void)
127{
128	u32 i;
129	acpi_status status;
130
131	/*
132	 * Initialize the structure that keeps track of fixed event handlers and
133	 * disable all of the fixed events.
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
139		/* Disable the fixed event */
140
141		if (acpi_gbl_fixed_event_info[i].enable_register_id != 0xFF) {
142			status =
143			    acpi_write_bit_register(acpi_gbl_fixed_event_info
144						    [i].enable_register_id,
145						    ACPI_DISABLE_EVENT);
146			if (ACPI_FAILURE(status)) {
147				return (status);
148			}
149		}
150	}
151
152	return (AE_OK);
153}
154
155/*******************************************************************************
156 *
157 * FUNCTION:    acpi_ev_fixed_event_detect
158 *
159 * PARAMETERS:  None
160 *
161 * RETURN:      INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
162 *
163 * DESCRIPTION: Checks the PM status register for active fixed events
164 *
165 ******************************************************************************/
166
167u32 acpi_ev_fixed_event_detect(void)
168{
169	u32 int_status = ACPI_INTERRUPT_NOT_HANDLED;
170	u32 fixed_status;
171	u32 fixed_enable;
172	u32 i;
173	acpi_status status;
174
175	ACPI_FUNCTION_NAME(ev_fixed_event_detect);
176
177	/*
178	 * Read the fixed feature status and enable registers, as all the cases
179	 * depend on their values. Ignore errors here.
180	 */
181	status = acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &fixed_status);
182	status |=
183	    acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &fixed_enable);
184	if (ACPI_FAILURE(status)) {
185		return (int_status);
186	}
187
188	ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
189			  "Fixed Event Block: Enable %08X Status %08X\n",
190			  fixed_enable, fixed_status));
191
192	/*
193	 * Check for all possible Fixed Events and dispatch those that are active
194	 */
195	for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
196
197		/* Both the status and enable bits must be on for this event */
198
199		if ((fixed_status & acpi_gbl_fixed_event_info[i].
200		     status_bit_mask)
201		    && (fixed_enable & acpi_gbl_fixed_event_info[i].
202			enable_bit_mask)) {
203			/*
204			 * Found an active (signalled) event. Invoke global event
205			 * handler if present.
206			 */
207			acpi_fixed_event_count[i]++;
208			if (acpi_gbl_global_event_handler) {
209				acpi_gbl_global_event_handler
210				    (ACPI_EVENT_TYPE_FIXED, NULL, i,
211				     acpi_gbl_global_event_handler_context);
212			}
213
214			int_status |= acpi_ev_fixed_event_dispatch(i);
215		}
216	}
217
218	return (int_status);
219}
220
221/*******************************************************************************
222 *
223 * FUNCTION:    acpi_ev_fixed_event_dispatch
224 *
225 * PARAMETERS:  event               - Event type
226 *
227 * RETURN:      INTERRUPT_HANDLED or INTERRUPT_NOT_HANDLED
228 *
229 * DESCRIPTION: Clears the status bit for the requested event, calls the
230 *              handler that previously registered for the event.
231 *              NOTE: If there is no handler for the event, the event is
232 *              disabled to prevent further interrupts.
233 *
234 ******************************************************************************/
235
236static u32 acpi_ev_fixed_event_dispatch(u32 event)
237{
238
239	ACPI_FUNCTION_ENTRY();
240
241	/* Clear the status bit */
242
243	(void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
244				      status_register_id, ACPI_CLEAR_STATUS);
245
246	/*
247	 * Make sure that a handler exists. If not, report an error
248	 * and disable the event to prevent further interrupts.
249	 */
250	if (!acpi_gbl_fixed_event_handlers[event].handler) {
251		(void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
252					      enable_register_id,
253					      ACPI_DISABLE_EVENT);
254
255		ACPI_ERROR((AE_INFO,
256			    "No installed handler for fixed event - %s (%u), disabling",
257			    acpi_ut_get_event_name(event), event));
258
259		return (ACPI_INTERRUPT_NOT_HANDLED);
260	}
261
262	/* Invoke the Fixed Event handler */
263
264	return ((acpi_gbl_fixed_event_handlers[event].
265		 handler) (acpi_gbl_fixed_event_handlers[event].context));
266}
267
268/*******************************************************************************
269 *
270 * FUNCTION:    acpi_any_fixed_event_status_set
271 *
272 * PARAMETERS:  None
273 *
274 * RETURN:      TRUE or FALSE
275 *
276 * DESCRIPTION: Checks the PM status register for active fixed events
277 *
278 ******************************************************************************/
279
280u32 acpi_any_fixed_event_status_set(void)
281{
282	acpi_status status;
283	u32 in_status;
284	u32 in_enable;
285	u32 i;
286
287	status = acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &in_enable);
288	if (ACPI_FAILURE(status)) {
289		return (FALSE);
290	}
291
292	status = acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &in_status);
293	if (ACPI_FAILURE(status)) {
294		return (FALSE);
295	}
296
297	/*
298	 * Check for all possible Fixed Events and dispatch those that are active
299	 */
300	for (i = 0; i < ACPI_NUM_FIXED_EVENTS; i++) {
301
302		/* Both the status and enable bits must be on for this event */
303
304		if ((in_status & acpi_gbl_fixed_event_info[i].status_bit_mask) &&
305		    (in_enable & acpi_gbl_fixed_event_info[i].enable_bit_mask)) {
306			return (TRUE);
307		}
308	}
309
310	return (FALSE);
311}
312
313#endif				/* !ACPI_REDUCED_HARDWARE */