blob: 7ebc2efac936ce5a2d3a7005a508fe658580af4c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: evxfevnt - External Interfaces, ACPI event disable/enable
4 *
5 *****************************************************************************/
6
7/*
Bob Moore4a90c7e2006-01-13 16:22:00 -05008 * Copyright (C) 2000 - 2006, R. Byron Moore
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
45#include <acpi/acevents.h>
46#include <acpi/acnamesp.h>
47
48#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("evxfevnt")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*******************************************************************************
52 *
53 * FUNCTION: acpi_enable
54 *
55 * PARAMETERS: None
56 *
57 * RETURN: Status
58 *
59 * DESCRIPTION: Transfers the system into ACPI mode.
60 *
61 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040062acpi_status acpi_enable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Len Brown4be44fc2005-08-05 00:44:28 -040064 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Bob Mooreb229cf92006-04-21 17:15:00 -040066 ACPI_FUNCTION_TRACE(acpi_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Len Brown4be44fc2005-08-05 00:44:28 -040068 /* Make sure we have the FADT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 if (!acpi_gbl_FADT) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050071 ACPI_WARNING((AE_INFO, "No FADT information present!"));
Len Brown4be44fc2005-08-05 00:44:28 -040072 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74
75 if (acpi_hw_get_mode() == ACPI_SYS_MODE_ACPI) {
Len Brown4be44fc2005-08-05 00:44:28 -040076 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
77 "System is already in ACPI mode\n"));
78 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 /* Transition to ACPI mode */
80
Len Brown4be44fc2005-08-05 00:44:28 -040081 status = acpi_hw_set_mode(ACPI_SYS_MODE_ACPI);
82 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050083 ACPI_ERROR((AE_INFO,
84 "Could not transition to ACPI mode"));
Len Brown4be44fc2005-08-05 00:44:28 -040085 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87
Len Brown4be44fc2005-08-05 00:44:28 -040088 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
89 "Transition to ACPI mode successful\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
91
Len Brown4be44fc2005-08-05 00:44:28 -040092 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Bob Moore83135242006-10-03 00:00:00 -040095ACPI_EXPORT_SYMBOL(acpi_enable)
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*******************************************************************************
98 *
99 * FUNCTION: acpi_disable
100 *
101 * PARAMETERS: None
102 *
103 * RETURN: Status
104 *
Robert Moore44f6c012005-04-18 22:49:35 -0400105 * DESCRIPTION: Transfers the system into LEGACY (non-ACPI) mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 *
107 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400108acpi_status acpi_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Len Brown4be44fc2005-08-05 00:44:28 -0400110 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Bob Mooreb229cf92006-04-21 17:15:00 -0400112 ACPI_FUNCTION_TRACE(acpi_disable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 if (!acpi_gbl_FADT) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500115 ACPI_WARNING((AE_INFO, "No FADT information present!"));
Len Brown4be44fc2005-08-05 00:44:28 -0400116 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
119 if (acpi_hw_get_mode() == ACPI_SYS_MODE_LEGACY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400120 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
121 "System is already in legacy (non-ACPI) mode\n"));
122 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* Transition to LEGACY mode */
124
Len Brown4be44fc2005-08-05 00:44:28 -0400125 status = acpi_hw_set_mode(ACPI_SYS_MODE_LEGACY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Len Brown4be44fc2005-08-05 00:44:28 -0400127 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500128 ACPI_ERROR((AE_INFO,
129 "Could not exit ACPI mode to legacy mode"));
Len Brown4be44fc2005-08-05 00:44:28 -0400130 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132
Len Brown4be44fc2005-08-05 00:44:28 -0400133 ACPI_DEBUG_PRINT((ACPI_DB_INIT, "ACPI mode disabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
Len Brown4be44fc2005-08-05 00:44:28 -0400136 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Bob Moore83135242006-10-03 00:00:00 -0400139ACPI_EXPORT_SYMBOL(acpi_disable)
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*******************************************************************************
142 *
143 * FUNCTION: acpi_enable_event
144 *
145 * PARAMETERS: Event - The fixed eventto be enabled
146 * Flags - Reserved
147 *
148 * RETURN: Status
149 *
150 * DESCRIPTION: Enable an ACPI event (fixed)
151 *
152 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400153acpi_status acpi_enable_event(u32 event, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Len Brown4be44fc2005-08-05 00:44:28 -0400155 acpi_status status = AE_OK;
156 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Bob Mooreb229cf92006-04-21 17:15:00 -0400158 ACPI_FUNCTION_TRACE(acpi_enable_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /* Decode the Fixed Event */
161
162 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400163 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
166 /*
167 * Enable the requested fixed event (by writing a one to the
168 * enable register bit)
169 */
Len Brown4be44fc2005-08-05 00:44:28 -0400170 status =
171 acpi_set_register(acpi_gbl_fixed_event_info[event].
172 enable_register_id, 1, ACPI_MTX_LOCK);
173 if (ACPI_FAILURE(status)) {
174 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176
177 /* Make sure that the hardware responded */
178
Len Brown4be44fc2005-08-05 00:44:28 -0400179 status =
180 acpi_get_register(acpi_gbl_fixed_event_info[event].
181 enable_register_id, &value, ACPI_MTX_LOCK);
182 if (ACPI_FAILURE(status)) {
183 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
186 if (value != 1) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500187 ACPI_ERROR((AE_INFO,
188 "Could not enable %s event",
189 acpi_ut_get_event_name(event)));
Len Brown4be44fc2005-08-05 00:44:28 -0400190 return_ACPI_STATUS(AE_NO_HARDWARE_RESPONSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
Len Brown4be44fc2005-08-05 00:44:28 -0400193 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Bob Moore83135242006-10-03 00:00:00 -0400196ACPI_EXPORT_SYMBOL(acpi_enable_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/*******************************************************************************
199 *
200 * FUNCTION: acpi_set_gpe_type
201 *
202 * PARAMETERS: gpe_device - Parent GPE Device
203 * gpe_number - GPE level within the GPE block
204 * Type - New GPE type
205 *
206 * RETURN: Status
207 *
Robert Moore44f6c012005-04-18 22:49:35 -0400208 * DESCRIPTION: Set the type of an individual GPE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *
210 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400211acpi_status acpi_set_gpe_type(acpi_handle gpe_device, u32 gpe_number, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Len Brown4be44fc2005-08-05 00:44:28 -0400213 acpi_status status = AE_OK;
214 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Bob Mooreb229cf92006-04-21 17:15:00 -0400216 ACPI_FUNCTION_TRACE(acpi_set_gpe_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 /* Ensure that we have a valid GPE number */
219
Len Brown4be44fc2005-08-05 00:44:28 -0400220 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!gpe_event_info) {
222 status = AE_BAD_PARAMETER;
223 goto unlock_and_exit;
224 }
225
226 if ((gpe_event_info->flags & ACPI_GPE_TYPE_MASK) == type) {
Len Brown4be44fc2005-08-05 00:44:28 -0400227 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
230 /* Set the new type (will disable GPE if currently enabled) */
231
Len Brown4be44fc2005-08-05 00:44:28 -0400232 status = acpi_ev_set_gpe_type(gpe_event_info, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Len Brown4be44fc2005-08-05 00:44:28 -0400234 unlock_and_exit:
235 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Bob Moore83135242006-10-03 00:00:00 -0400238ACPI_EXPORT_SYMBOL(acpi_set_gpe_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240/*******************************************************************************
241 *
242 * FUNCTION: acpi_enable_gpe
243 *
244 * PARAMETERS: gpe_device - Parent GPE Device
245 * gpe_number - GPE level within the GPE block
246 * Flags - Just enable, or also wake enable?
247 * Called from ISR or not
248 *
249 * RETURN: Status
250 *
251 * DESCRIPTION: Enable an ACPI event (general purpose)
252 *
253 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400254acpi_status acpi_enable_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Len Brown4be44fc2005-08-05 00:44:28 -0400256 acpi_status status = AE_OK;
257 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Bob Mooreb229cf92006-04-21 17:15:00 -0400259 ACPI_FUNCTION_TRACE(acpi_enable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 /* Use semaphore lock if not executing at interrupt level */
262
263 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400264 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
265 if (ACPI_FAILURE(status)) {
266 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268 }
269
270 /* Ensure that we have a valid GPE number */
271
Len Brown4be44fc2005-08-05 00:44:28 -0400272 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!gpe_event_info) {
274 status = AE_BAD_PARAMETER;
275 goto unlock_and_exit;
276 }
277
278 /* Perform the enable */
279
Len Brown4be44fc2005-08-05 00:44:28 -0400280 status = acpi_ev_enable_gpe(gpe_event_info, TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Len Brown4be44fc2005-08-05 00:44:28 -0400282 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400284 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Len Brown4be44fc2005-08-05 00:44:28 -0400286 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Bob Moore83135242006-10-03 00:00:00 -0400289ACPI_EXPORT_SYMBOL(acpi_enable_gpe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291/*******************************************************************************
292 *
293 * FUNCTION: acpi_disable_gpe
294 *
295 * PARAMETERS: gpe_device - Parent GPE Device
296 * gpe_number - GPE level within the GPE block
297 * Flags - Just disable, or also wake disable?
298 * Called from ISR or not
299 *
300 * RETURN: Status
301 *
302 * DESCRIPTION: Disable an ACPI event (general purpose)
303 *
304 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400305acpi_status acpi_disable_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Len Brown4be44fc2005-08-05 00:44:28 -0400307 acpi_status status = AE_OK;
308 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Bob Mooreb229cf92006-04-21 17:15:00 -0400310 ACPI_FUNCTION_TRACE(acpi_disable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 /* Use semaphore lock if not executing at interrupt level */
313
314 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400315 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
316 if (ACPI_FAILURE(status)) {
317 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 }
320
321 /* Ensure that we have a valid GPE number */
322
Len Brown4be44fc2005-08-05 00:44:28 -0400323 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!gpe_event_info) {
325 status = AE_BAD_PARAMETER;
326 goto unlock_and_exit;
327 }
328
Len Brown4be44fc2005-08-05 00:44:28 -0400329 status = acpi_ev_disable_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Len Brown4be44fc2005-08-05 00:44:28 -0400331 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400333 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Len Brown4be44fc2005-08-05 00:44:28 -0400335 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Bob Moore83135242006-10-03 00:00:00 -0400338ACPI_EXPORT_SYMBOL(acpi_disable_gpe)
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/*******************************************************************************
341 *
342 * FUNCTION: acpi_disable_event
343 *
344 * PARAMETERS: Event - The fixed eventto be enabled
345 * Flags - Reserved
346 *
347 * RETURN: Status
348 *
349 * DESCRIPTION: Disable an ACPI event (fixed)
350 *
351 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400352acpi_status acpi_disable_event(u32 event, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Len Brown4be44fc2005-08-05 00:44:28 -0400354 acpi_status status = AE_OK;
355 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Bob Mooreb229cf92006-04-21 17:15:00 -0400357 ACPI_FUNCTION_TRACE(acpi_disable_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /* Decode the Fixed Event */
360
361 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400362 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364
365 /*
366 * Disable the requested fixed event (by writing a zero to the
367 * enable register bit)
368 */
Len Brown4be44fc2005-08-05 00:44:28 -0400369 status =
370 acpi_set_register(acpi_gbl_fixed_event_info[event].
371 enable_register_id, 0, ACPI_MTX_LOCK);
372 if (ACPI_FAILURE(status)) {
373 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Len Brown4be44fc2005-08-05 00:44:28 -0400376 status =
377 acpi_get_register(acpi_gbl_fixed_event_info[event].
378 enable_register_id, &value, ACPI_MTX_LOCK);
379 if (ACPI_FAILURE(status)) {
380 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 if (value != 0) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500384 ACPI_ERROR((AE_INFO,
385 "Could not disable %s events",
386 acpi_ut_get_event_name(event)));
Len Brown4be44fc2005-08-05 00:44:28 -0400387 return_ACPI_STATUS(AE_NO_HARDWARE_RESPONSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389
Len Brown4be44fc2005-08-05 00:44:28 -0400390 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Bob Moore83135242006-10-03 00:00:00 -0400393ACPI_EXPORT_SYMBOL(acpi_disable_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395/*******************************************************************************
396 *
397 * FUNCTION: acpi_clear_event
398 *
399 * PARAMETERS: Event - The fixed event to be cleared
400 *
401 * RETURN: Status
402 *
403 * DESCRIPTION: Clear an ACPI event (fixed)
404 *
405 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400406acpi_status acpi_clear_event(u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Len Brown4be44fc2005-08-05 00:44:28 -0400408 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Bob Mooreb229cf92006-04-21 17:15:00 -0400410 ACPI_FUNCTION_TRACE(acpi_clear_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* Decode the Fixed Event */
413
414 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400415 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
418 /*
419 * Clear the requested fixed event (By writing a one to the
420 * status register bit)
421 */
Len Brown4be44fc2005-08-05 00:44:28 -0400422 status =
423 acpi_set_register(acpi_gbl_fixed_event_info[event].
424 status_register_id, 1, ACPI_MTX_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Len Brown4be44fc2005-08-05 00:44:28 -0400426 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Bob Moore83135242006-10-03 00:00:00 -0400429ACPI_EXPORT_SYMBOL(acpi_clear_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431/*******************************************************************************
432 *
433 * FUNCTION: acpi_clear_gpe
434 *
435 * PARAMETERS: gpe_device - Parent GPE Device
436 * gpe_number - GPE level within the GPE block
437 * Flags - Called from an ISR or not
438 *
439 * RETURN: Status
440 *
441 * DESCRIPTION: Clear an ACPI event (general purpose)
442 *
443 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400444acpi_status acpi_clear_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Len Brown4be44fc2005-08-05 00:44:28 -0400446 acpi_status status = AE_OK;
447 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Bob Mooreb229cf92006-04-21 17:15:00 -0400449 ACPI_FUNCTION_TRACE(acpi_clear_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* Use semaphore lock if not executing at interrupt level */
452
453 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400454 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
455 if (ACPI_FAILURE(status)) {
456 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 }
459
460 /* Ensure that we have a valid GPE number */
461
Len Brown4be44fc2005-08-05 00:44:28 -0400462 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (!gpe_event_info) {
464 status = AE_BAD_PARAMETER;
465 goto unlock_and_exit;
466 }
467
Len Brown4be44fc2005-08-05 00:44:28 -0400468 status = acpi_hw_clear_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Len Brown4be44fc2005-08-05 00:44:28 -0400470 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400472 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Len Brown4be44fc2005-08-05 00:44:28 -0400474 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Bob Moore83135242006-10-03 00:00:00 -0400477ACPI_EXPORT_SYMBOL(acpi_clear_gpe)
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifdef ACPI_FUTURE_USAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/*******************************************************************************
481 *
482 * FUNCTION: acpi_get_event_status
483 *
484 * PARAMETERS: Event - The fixed event
Robert Moore44f6c012005-04-18 22:49:35 -0400485 * event_status - Where the current status of the event will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * be returned
487 *
488 * RETURN: Status
489 *
490 * DESCRIPTION: Obtains and returns the current status of the event
491 *
492 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400493acpi_status acpi_get_event_status(u32 event, acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Len Brown4be44fc2005-08-05 00:44:28 -0400495 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Bob Mooreb229cf92006-04-21 17:15:00 -0400497 ACPI_FUNCTION_TRACE(acpi_get_event_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (!event_status) {
Len Brown4be44fc2005-08-05 00:44:28 -0400500 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
502
503 /* Decode the Fixed Event */
504
505 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400506 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
509 /* Get the status of the requested fixed event */
510
Len Brown4be44fc2005-08-05 00:44:28 -0400511 status =
512 acpi_get_register(acpi_gbl_fixed_event_info[event].
513 status_register_id, event_status, ACPI_MTX_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Len Brown4be44fc2005-08-05 00:44:28 -0400515 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Bob Moore83135242006-10-03 00:00:00 -0400518ACPI_EXPORT_SYMBOL(acpi_get_event_status)
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*******************************************************************************
521 *
522 * FUNCTION: acpi_get_gpe_status
523 *
524 * PARAMETERS: gpe_device - Parent GPE Device
525 * gpe_number - GPE level within the GPE block
526 * Flags - Called from an ISR or not
Robert Moore44f6c012005-04-18 22:49:35 -0400527 * event_status - Where the current status of the event will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 * be returned
529 *
530 * RETURN: Status
531 *
532 * DESCRIPTION: Get status of an event (general purpose)
533 *
534 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400536acpi_get_gpe_status(acpi_handle gpe_device,
537 u32 gpe_number, u32 flags, acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Len Brown4be44fc2005-08-05 00:44:28 -0400539 acpi_status status = AE_OK;
540 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Bob Mooreb229cf92006-04-21 17:15:00 -0400542 ACPI_FUNCTION_TRACE(acpi_get_gpe_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* Use semaphore lock if not executing at interrupt level */
545
546 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400547 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
548 if (ACPI_FAILURE(status)) {
549 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551 }
552
553 /* Ensure that we have a valid GPE number */
554
Len Brown4be44fc2005-08-05 00:44:28 -0400555 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!gpe_event_info) {
557 status = AE_BAD_PARAMETER;
558 goto unlock_and_exit;
559 }
560
561 /* Obtain status on the requested GPE number */
562
Len Brown4be44fc2005-08-05 00:44:28 -0400563 status = acpi_hw_get_gpe_status(gpe_event_info, event_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Len Brown4be44fc2005-08-05 00:44:28 -0400565 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400567 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Len Brown4be44fc2005-08-05 00:44:28 -0400569 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570}
Bob Moore83135242006-10-03 00:00:00 -0400571
572ACPI_EXPORT_SYMBOL(acpi_get_gpe_status)
Len Brown4be44fc2005-08-05 00:44:28 -0400573#endif /* ACPI_FUTURE_USAGE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575/*******************************************************************************
576 *
577 * FUNCTION: acpi_install_gpe_block
578 *
579 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
580 * gpe_block_address - Address and space_iD
581 * register_count - Number of GPE register pairs in the block
Robert Moore6f42ccf2005-05-13 00:00:00 -0400582 * interrupt_number - H/W interrupt for the block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 *
584 * RETURN: Status
585 *
586 * DESCRIPTION: Create and Install a block of GPE registers
587 *
588 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400590acpi_install_gpe_block(acpi_handle gpe_device,
591 struct acpi_generic_address *gpe_block_address,
592 u32 register_count, u32 interrupt_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Len Brown4be44fc2005-08-05 00:44:28 -0400594 acpi_status status;
595 union acpi_operand_object *obj_desc;
596 struct acpi_namespace_node *node;
597 struct acpi_gpe_block_info *gpe_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Bob Mooreb229cf92006-04-21 17:15:00 -0400599 ACPI_FUNCTION_TRACE(acpi_install_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Len Brown4be44fc2005-08-05 00:44:28 -0400601 if ((!gpe_device) || (!gpe_block_address) || (!register_count)) {
602 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Len Brown4be44fc2005-08-05 00:44:28 -0400605 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
606 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return (status);
608 }
609
Len Brown4be44fc2005-08-05 00:44:28 -0400610 node = acpi_ns_map_handle_to_node(gpe_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (!node) {
612 status = AE_BAD_PARAMETER;
613 goto unlock_and_exit;
614 }
615
616 /*
617 * For user-installed GPE Block Devices, the gpe_block_base_number
618 * is always zero
619 */
Len Brown4be44fc2005-08-05 00:44:28 -0400620 status =
621 acpi_ev_create_gpe_block(node, gpe_block_address, register_count, 0,
622 interrupt_number, &gpe_block);
623 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 goto unlock_and_exit;
625 }
626
Bob Moore96db2552005-11-02 00:00:00 -0500627 /* Run the _PRW methods and enable the GPEs */
628
629 status = acpi_ev_initialize_gpe_block(node, gpe_block);
630 if (ACPI_FAILURE(status)) {
631 goto unlock_and_exit;
632 }
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* Get the device_object attached to the node */
635
Len Brown4be44fc2005-08-05 00:44:28 -0400636 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (!obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* No object, create a new one */
640
Len Brown4be44fc2005-08-05 00:44:28 -0400641 obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (!obj_desc) {
643 status = AE_NO_MEMORY;
644 goto unlock_and_exit;
645 }
646
Len Brown4be44fc2005-08-05 00:44:28 -0400647 status =
648 acpi_ns_attach_object(node, obj_desc, ACPI_TYPE_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /* Remove local reference to the object */
651
Len Brown4be44fc2005-08-05 00:44:28 -0400652 acpi_ut_remove_reference(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Len Brown4be44fc2005-08-05 00:44:28 -0400654 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 goto unlock_and_exit;
656 }
657 }
658
659 /* Install the GPE block in the device_object */
660
661 obj_desc->device.gpe_block = gpe_block;
662
Len Brown4be44fc2005-08-05 00:44:28 -0400663 unlock_and_exit:
664 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
665 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Bob Moore83135242006-10-03 00:00:00 -0400668ACPI_EXPORT_SYMBOL(acpi_install_gpe_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670/*******************************************************************************
671 *
672 * FUNCTION: acpi_remove_gpe_block
673 *
674 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
675 *
676 * RETURN: Status
677 *
678 * DESCRIPTION: Remove a previously installed block of GPE registers
679 *
680 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400681acpi_status acpi_remove_gpe_block(acpi_handle gpe_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Len Brown4be44fc2005-08-05 00:44:28 -0400683 union acpi_operand_object *obj_desc;
684 acpi_status status;
685 struct acpi_namespace_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Bob Mooreb229cf92006-04-21 17:15:00 -0400687 ACPI_FUNCTION_TRACE(acpi_remove_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (!gpe_device) {
Len Brown4be44fc2005-08-05 00:44:28 -0400690 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692
Len Brown4be44fc2005-08-05 00:44:28 -0400693 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
694 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return (status);
696 }
697
Len Brown4be44fc2005-08-05 00:44:28 -0400698 node = acpi_ns_map_handle_to_node(gpe_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (!node) {
700 status = AE_BAD_PARAMETER;
701 goto unlock_and_exit;
702 }
703
704 /* Get the device_object attached to the node */
705
Len Brown4be44fc2005-08-05 00:44:28 -0400706 obj_desc = acpi_ns_get_attached_object(node);
707 if (!obj_desc || !obj_desc->device.gpe_block) {
708 return_ACPI_STATUS(AE_NULL_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
711 /* Delete the GPE block (but not the device_object) */
712
Len Brown4be44fc2005-08-05 00:44:28 -0400713 status = acpi_ev_delete_gpe_block(obj_desc->device.gpe_block);
714 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 obj_desc->device.gpe_block = NULL;
716 }
717
Len Brown4be44fc2005-08-05 00:44:28 -0400718 unlock_and_exit:
719 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
720 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
Robert Moore44f6c012005-04-18 22:49:35 -0400722
Bob Moore83135242006-10-03 00:00:00 -0400723ACPI_EXPORT_SYMBOL(acpi_remove_gpe_block)