blob: ec9ce8429f15b823d5b0077f1e9da1c69888d70b [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
44#include <linux/module.h>
45
46#include <acpi/acpi.h>
47#include <acpi/acevents.h>
48#include <acpi/acnamesp.h>
49
50#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("evxfevnt")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*******************************************************************************
54 *
55 * FUNCTION: acpi_enable
56 *
57 * PARAMETERS: None
58 *
59 * RETURN: Status
60 *
61 * DESCRIPTION: Transfers the system into ACPI mode.
62 *
63 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040064acpi_status acpi_enable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Len Brown4be44fc2005-08-05 00:44:28 -040066 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Len Brown4be44fc2005-08-05 00:44:28 -040068 ACPI_FUNCTION_TRACE("acpi_enable");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Len Brown4be44fc2005-08-05 00:44:28 -040070 /* Make sure we have the FADT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 if (!acpi_gbl_FADT) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050073 ACPI_WARNING((AE_INFO, "No FADT information present!"));
Len Brown4be44fc2005-08-05 00:44:28 -040074 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76
77 if (acpi_hw_get_mode() == ACPI_SYS_MODE_ACPI) {
Len Brown4be44fc2005-08-05 00:44:28 -040078 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
79 "System is already in ACPI mode\n"));
80 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /* Transition to ACPI mode */
82
Len Brown4be44fc2005-08-05 00:44:28 -040083 status = acpi_hw_set_mode(ACPI_SYS_MODE_ACPI);
84 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050085 ACPI_ERROR((AE_INFO,
86 "Could not transition to ACPI mode"));
Len Brown4be44fc2005-08-05 00:44:28 -040087 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89
Len Brown4be44fc2005-08-05 00:44:28 -040090 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
91 "Transition to ACPI mode successful\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93
Len Brown4be44fc2005-08-05 00:44:28 -040094 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
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 ******************************************************************************/
108
Len Brown4be44fc2005-08-05 00:44:28 -0400109acpi_status acpi_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Len Brown4be44fc2005-08-05 00:44:28 -0400111 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Len Brown4be44fc2005-08-05 00:44:28 -0400113 ACPI_FUNCTION_TRACE("acpi_disable");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 if (!acpi_gbl_FADT) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500116 ACPI_WARNING((AE_INFO, "No FADT information present!"));
Len Brown4be44fc2005-08-05 00:44:28 -0400117 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119
120 if (acpi_hw_get_mode() == ACPI_SYS_MODE_LEGACY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400121 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
122 "System is already in legacy (non-ACPI) mode\n"));
123 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* Transition to LEGACY mode */
125
Len Brown4be44fc2005-08-05 00:44:28 -0400126 status = acpi_hw_set_mode(ACPI_SYS_MODE_LEGACY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Len Brown4be44fc2005-08-05 00:44:28 -0400128 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500129 ACPI_ERROR((AE_INFO,
130 "Could not exit ACPI mode to legacy mode"));
Len Brown4be44fc2005-08-05 00:44:28 -0400131 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
Len Brown4be44fc2005-08-05 00:44:28 -0400134 ACPI_DEBUG_PRINT((ACPI_DB_INIT, "ACPI mode disabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*******************************************************************************
141 *
142 * FUNCTION: acpi_enable_event
143 *
144 * PARAMETERS: Event - The fixed eventto be enabled
145 * Flags - Reserved
146 *
147 * RETURN: Status
148 *
149 * DESCRIPTION: Enable an ACPI event (fixed)
150 *
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
Len Brown4be44fc2005-08-05 00:44:28 -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
Len Brown4be44fc2005-08-05 00:44:28 -0400196EXPORT_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 ******************************************************************************/
211
Len Brown4be44fc2005-08-05 00:44:28 -0400212acpi_status acpi_set_gpe_type(acpi_handle gpe_device, u32 gpe_number, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Len Brown4be44fc2005-08-05 00:44:28 -0400214 acpi_status status = AE_OK;
215 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Len Brown4be44fc2005-08-05 00:44:28 -0400217 ACPI_FUNCTION_TRACE("acpi_set_gpe_type");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 /* Ensure that we have a valid GPE number */
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (!gpe_event_info) {
223 status = AE_BAD_PARAMETER;
224 goto unlock_and_exit;
225 }
226
227 if ((gpe_event_info->flags & ACPI_GPE_TYPE_MASK) == type) {
Len Brown4be44fc2005-08-05 00:44:28 -0400228 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230
231 /* Set the new type (will disable GPE if currently enabled) */
232
Len Brown4be44fc2005-08-05 00:44:28 -0400233 status = acpi_ev_set_gpe_type(gpe_event_info, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Len Brown4be44fc2005-08-05 00:44:28 -0400235 unlock_and_exit:
236 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Len Brown4be44fc2005-08-05 00:44:28 -0400239EXPORT_SYMBOL(acpi_set_gpe_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241/*******************************************************************************
242 *
243 * FUNCTION: acpi_enable_gpe
244 *
245 * PARAMETERS: gpe_device - Parent GPE Device
246 * gpe_number - GPE level within the GPE block
247 * Flags - Just enable, or also wake enable?
248 * Called from ISR or not
249 *
250 * RETURN: Status
251 *
252 * DESCRIPTION: Enable an ACPI event (general purpose)
253 *
254 ******************************************************************************/
255
Len Brown4be44fc2005-08-05 00:44:28 -0400256acpi_status acpi_enable_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Len Brown4be44fc2005-08-05 00:44:28 -0400258 acpi_status status = AE_OK;
259 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Len Brown4be44fc2005-08-05 00:44:28 -0400261 ACPI_FUNCTION_TRACE("acpi_enable_gpe");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* Use semaphore lock if not executing at interrupt level */
264
265 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400266 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
267 if (ACPI_FAILURE(status)) {
268 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
270 }
271
272 /* Ensure that we have a valid GPE number */
273
Len Brown4be44fc2005-08-05 00:44:28 -0400274 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!gpe_event_info) {
276 status = AE_BAD_PARAMETER;
277 goto unlock_and_exit;
278 }
279
280 /* Perform the enable */
281
Len Brown4be44fc2005-08-05 00:44:28 -0400282 status = acpi_ev_enable_gpe(gpe_event_info, TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Len Brown4be44fc2005-08-05 00:44:28 -0400284 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400286 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
Len Brown4be44fc2005-08-05 00:44:28 -0400288 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Len Brown4be44fc2005-08-05 00:44:28 -0400291EXPORT_SYMBOL(acpi_enable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293/*******************************************************************************
294 *
295 * FUNCTION: acpi_disable_gpe
296 *
297 * PARAMETERS: gpe_device - Parent GPE Device
298 * gpe_number - GPE level within the GPE block
299 * Flags - Just disable, or also wake disable?
300 * Called from ISR or not
301 *
302 * RETURN: Status
303 *
304 * DESCRIPTION: Disable an ACPI event (general purpose)
305 *
306 ******************************************************************************/
307
Len Brown4be44fc2005-08-05 00:44:28 -0400308acpi_status acpi_disable_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Len Brown4be44fc2005-08-05 00:44:28 -0400310 acpi_status status = AE_OK;
311 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Len Brown4be44fc2005-08-05 00:44:28 -0400313 ACPI_FUNCTION_TRACE("acpi_disable_gpe");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 /* Use semaphore lock if not executing at interrupt level */
316
317 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400318 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
319 if (ACPI_FAILURE(status)) {
320 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322 }
323
324 /* Ensure that we have a valid GPE number */
325
Len Brown4be44fc2005-08-05 00:44:28 -0400326 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (!gpe_event_info) {
328 status = AE_BAD_PARAMETER;
329 goto unlock_and_exit;
330 }
331
Len Brown4be44fc2005-08-05 00:44:28 -0400332 status = acpi_ev_disable_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Len Brown4be44fc2005-08-05 00:44:28 -0400334 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400336 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Len Brown4be44fc2005-08-05 00:44:28 -0400338 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/*******************************************************************************
342 *
343 * FUNCTION: acpi_disable_event
344 *
345 * PARAMETERS: Event - The fixed eventto be enabled
346 * Flags - Reserved
347 *
348 * RETURN: Status
349 *
350 * DESCRIPTION: Disable an ACPI event (fixed)
351 *
352 ******************************************************************************/
353
Len Brown4be44fc2005-08-05 00:44:28 -0400354acpi_status acpi_disable_event(u32 event, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Len Brown4be44fc2005-08-05 00:44:28 -0400356 acpi_status status = AE_OK;
357 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Len Brown4be44fc2005-08-05 00:44:28 -0400359 ACPI_FUNCTION_TRACE("acpi_disable_event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* Decode the Fixed Event */
362
363 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400364 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
367 /*
368 * Disable the requested fixed event (by writing a zero to the
369 * enable register bit)
370 */
Len Brown4be44fc2005-08-05 00:44:28 -0400371 status =
372 acpi_set_register(acpi_gbl_fixed_event_info[event].
373 enable_register_id, 0, ACPI_MTX_LOCK);
374 if (ACPI_FAILURE(status)) {
375 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377
Len Brown4be44fc2005-08-05 00:44:28 -0400378 status =
379 acpi_get_register(acpi_gbl_fixed_event_info[event].
380 enable_register_id, &value, ACPI_MTX_LOCK);
381 if (ACPI_FAILURE(status)) {
382 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
385 if (value != 0) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500386 ACPI_ERROR((AE_INFO,
387 "Could not disable %s events",
388 acpi_ut_get_event_name(event)));
Len Brown4be44fc2005-08-05 00:44:28 -0400389 return_ACPI_STATUS(AE_NO_HARDWARE_RESPONSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
Len Brown4be44fc2005-08-05 00:44:28 -0400392 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Len Brown4be44fc2005-08-05 00:44:28 -0400395EXPORT_SYMBOL(acpi_disable_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/*******************************************************************************
398 *
399 * FUNCTION: acpi_clear_event
400 *
401 * PARAMETERS: Event - The fixed event to be cleared
402 *
403 * RETURN: Status
404 *
405 * DESCRIPTION: Clear an ACPI event (fixed)
406 *
407 ******************************************************************************/
408
Len Brown4be44fc2005-08-05 00:44:28 -0400409acpi_status acpi_clear_event(u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Len Brown4be44fc2005-08-05 00:44:28 -0400411 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Len Brown4be44fc2005-08-05 00:44:28 -0400413 ACPI_FUNCTION_TRACE("acpi_clear_event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* Decode the Fixed Event */
416
417 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400418 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
421 /*
422 * Clear the requested fixed event (By writing a one to the
423 * status register bit)
424 */
Len Brown4be44fc2005-08-05 00:44:28 -0400425 status =
426 acpi_set_register(acpi_gbl_fixed_event_info[event].
427 status_register_id, 1, ACPI_MTX_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Len Brown4be44fc2005-08-05 00:44:28 -0400429 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Len Brown4be44fc2005-08-05 00:44:28 -0400432EXPORT_SYMBOL(acpi_clear_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434/*******************************************************************************
435 *
436 * FUNCTION: acpi_clear_gpe
437 *
438 * PARAMETERS: gpe_device - Parent GPE Device
439 * gpe_number - GPE level within the GPE block
440 * Flags - Called from an ISR or not
441 *
442 * RETURN: Status
443 *
444 * DESCRIPTION: Clear an ACPI event (general purpose)
445 *
446 ******************************************************************************/
447
Len Brown4be44fc2005-08-05 00:44:28 -0400448acpi_status acpi_clear_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Len Brown4be44fc2005-08-05 00:44:28 -0400450 acpi_status status = AE_OK;
451 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Len Brown4be44fc2005-08-05 00:44:28 -0400453 ACPI_FUNCTION_TRACE("acpi_clear_gpe");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 /* Use semaphore lock if not executing at interrupt level */
456
457 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400458 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
459 if (ACPI_FAILURE(status)) {
460 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462 }
463
464 /* Ensure that we have a valid GPE number */
465
Len Brown4be44fc2005-08-05 00:44:28 -0400466 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (!gpe_event_info) {
468 status = AE_BAD_PARAMETER;
469 goto unlock_and_exit;
470 }
471
Len Brown4be44fc2005-08-05 00:44:28 -0400472 status = acpi_hw_clear_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Len Brown4be44fc2005-08-05 00:44:28 -0400474 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400476 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Len Brown4be44fc2005-08-05 00:44:28 -0400478 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#ifdef ACPI_FUTURE_USAGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*******************************************************************************
483 *
484 * FUNCTION: acpi_get_event_status
485 *
486 * PARAMETERS: Event - The fixed event
Robert Moore44f6c012005-04-18 22:49:35 -0400487 * event_status - Where the current status of the event will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 * be returned
489 *
490 * RETURN: Status
491 *
492 * DESCRIPTION: Obtains and returns the current status of the event
493 *
494 ******************************************************************************/
495
Len Brown4be44fc2005-08-05 00:44:28 -0400496acpi_status acpi_get_event_status(u32 event, acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Len Brown4be44fc2005-08-05 00:44:28 -0400498 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Len Brown4be44fc2005-08-05 00:44:28 -0400500 ACPI_FUNCTION_TRACE("acpi_get_event_status");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 if (!event_status) {
Len Brown4be44fc2005-08-05 00:44:28 -0400503 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
506 /* Decode the Fixed Event */
507
508 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400509 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511
512 /* Get the status of the requested fixed event */
513
Len Brown4be44fc2005-08-05 00:44:28 -0400514 status =
515 acpi_get_register(acpi_gbl_fixed_event_info[event].
516 status_register_id, event_status, ACPI_MTX_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Len Brown4be44fc2005-08-05 00:44:28 -0400518 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*******************************************************************************
522 *
523 * FUNCTION: acpi_get_gpe_status
524 *
525 * PARAMETERS: gpe_device - Parent GPE Device
526 * gpe_number - GPE level within the GPE block
527 * Flags - Called from an ISR or not
Robert Moore44f6c012005-04-18 22:49:35 -0400528 * event_status - Where the current status of the event will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 * be returned
530 *
531 * RETURN: Status
532 *
533 * DESCRIPTION: Get status of an event (general purpose)
534 *
535 ******************************************************************************/
536
537acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400538acpi_get_gpe_status(acpi_handle gpe_device,
539 u32 gpe_number, u32 flags, acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Len Brown4be44fc2005-08-05 00:44:28 -0400541 acpi_status status = AE_OK;
542 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Len Brown4be44fc2005-08-05 00:44:28 -0400544 ACPI_FUNCTION_TRACE("acpi_get_gpe_status");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /* Use semaphore lock if not executing at interrupt level */
547
548 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400549 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
550 if (ACPI_FAILURE(status)) {
551 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 }
554
555 /* Ensure that we have a valid GPE number */
556
Len Brown4be44fc2005-08-05 00:44:28 -0400557 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (!gpe_event_info) {
559 status = AE_BAD_PARAMETER;
560 goto unlock_and_exit;
561 }
562
563 /* Obtain status on the requested GPE number */
564
Len Brown4be44fc2005-08-05 00:44:28 -0400565 status = acpi_hw_get_gpe_status(gpe_event_info, event_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400569 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Len Brown4be44fc2005-08-05 00:44:28 -0400571 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
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 ******************************************************************************/
589
590acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400591acpi_install_gpe_block(acpi_handle gpe_device,
592 struct acpi_generic_address *gpe_block_address,
593 u32 register_count, u32 interrupt_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Len Brown4be44fc2005-08-05 00:44:28 -0400595 acpi_status status;
596 union acpi_operand_object *obj_desc;
597 struct acpi_namespace_node *node;
598 struct acpi_gpe_block_info *gpe_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Len Brown4be44fc2005-08-05 00:44:28 -0400600 ACPI_FUNCTION_TRACE("acpi_install_gpe_block");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Len Brown4be44fc2005-08-05 00:44:28 -0400602 if ((!gpe_device) || (!gpe_block_address) || (!register_count)) {
603 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
Len Brown4be44fc2005-08-05 00:44:28 -0400606 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
607 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return (status);
609 }
610
Len Brown4be44fc2005-08-05 00:44:28 -0400611 node = acpi_ns_map_handle_to_node(gpe_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (!node) {
613 status = AE_BAD_PARAMETER;
614 goto unlock_and_exit;
615 }
616
617 /*
618 * For user-installed GPE Block Devices, the gpe_block_base_number
619 * is always zero
620 */
Len Brown4be44fc2005-08-05 00:44:28 -0400621 status =
622 acpi_ev_create_gpe_block(node, gpe_block_address, register_count, 0,
623 interrupt_number, &gpe_block);
624 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 goto unlock_and_exit;
626 }
627
Bob Moore96db2552005-11-02 00:00:00 -0500628 /* Run the _PRW methods and enable the GPEs */
629
630 status = acpi_ev_initialize_gpe_block(node, gpe_block);
631 if (ACPI_FAILURE(status)) {
632 goto unlock_and_exit;
633 }
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* Get the device_object attached to the node */
636
Len Brown4be44fc2005-08-05 00:44:28 -0400637 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!obj_desc) {
639 /* 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
Len Brown4be44fc2005-08-05 00:44:28 -0400668EXPORT_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 ******************************************************************************/
681
Len Brown4be44fc2005-08-05 00:44:28 -0400682acpi_status acpi_remove_gpe_block(acpi_handle gpe_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Len Brown4be44fc2005-08-05 00:44:28 -0400684 union acpi_operand_object *obj_desc;
685 acpi_status status;
686 struct acpi_namespace_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Len Brown4be44fc2005-08-05 00:44:28 -0400688 ACPI_FUNCTION_TRACE("acpi_remove_gpe_block");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (!gpe_device) {
Len Brown4be44fc2005-08-05 00:44:28 -0400691 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
Len Brown4be44fc2005-08-05 00:44:28 -0400694 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
695 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return (status);
697 }
698
Len Brown4be44fc2005-08-05 00:44:28 -0400699 node = acpi_ns_map_handle_to_node(gpe_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (!node) {
701 status = AE_BAD_PARAMETER;
702 goto unlock_and_exit;
703 }
704
705 /* Get the device_object attached to the node */
706
Len Brown4be44fc2005-08-05 00:44:28 -0400707 obj_desc = acpi_ns_get_attached_object(node);
708 if (!obj_desc || !obj_desc->device.gpe_block) {
709 return_ACPI_STATUS(AE_NULL_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
712 /* Delete the GPE block (but not the device_object) */
713
Len Brown4be44fc2005-08-05 00:44:28 -0400714 status = acpi_ev_delete_gpe_block(obj_desc->device.gpe_block);
715 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 obj_desc->device.gpe_block = NULL;
717 }
718
Len Brown4be44fc2005-08-05 00:44:28 -0400719 unlock_and_exit:
720 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
721 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Robert Moore44f6c012005-04-18 22:49:35 -0400723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724EXPORT_SYMBOL(acpi_remove_gpe_block);