blob: 1aea1a7341598a925cdda1dc4005740fb0e7be2f [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/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
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>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
47#include "acnamesp.h"
48#include "actables.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_EVENTS
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("evxfevnt")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Bob Mooree97d6bf2008-12-30 09:45:17 +080053/* Local prototypes */
Bob Mooree4c1ebf2009-04-22 13:02:06 +080054static acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +080055acpi_ev_get_gpe_device(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
56 struct acpi_gpe_block_info *gpe_block, void *context);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*******************************************************************************
59 *
60 * FUNCTION: acpi_enable
61 *
62 * PARAMETERS: None
63 *
64 * RETURN: Status
65 *
66 * DESCRIPTION: Transfers the system into ACPI mode.
67 *
68 ******************************************************************************/
Bob Mooree97d6bf2008-12-30 09:45:17 +080069
Len Brown4be44fc2005-08-05 00:44:28 -040070acpi_status acpi_enable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Len Brown4be44fc2005-08-05 00:44:28 -040072 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Bob Mooreb229cf92006-04-21 17:15:00 -040074 ACPI_FUNCTION_TRACE(acpi_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Bob Moorec8573032007-02-02 19:48:23 +030076 /* ACPI tables must be present */
77
78 if (!acpi_tb_tables_loaded()) {
79 return_ACPI_STATUS(AE_NO_ACPI_TABLES);
80 }
81
82 /* Check current mode */
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (acpi_hw_get_mode() == ACPI_SYS_MODE_ACPI) {
Len Brown4be44fc2005-08-05 00:44:28 -040085 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
86 "System is already in ACPI mode\n"));
87 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* Transition to ACPI mode */
89
Len Brown4be44fc2005-08-05 00:44:28 -040090 status = acpi_hw_set_mode(ACPI_SYS_MODE_ACPI);
91 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -050092 ACPI_ERROR((AE_INFO,
93 "Could not transition to ACPI mode"));
Len Brown4be44fc2005-08-05 00:44:28 -040094 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
Len Brown4be44fc2005-08-05 00:44:28 -040097 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
98 "Transition to ACPI mode successful\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
Len Brown4be44fc2005-08-05 00:44:28 -0400101 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Bob Moore83135242006-10-03 00:00:00 -0400104ACPI_EXPORT_SYMBOL(acpi_enable)
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*******************************************************************************
107 *
108 * FUNCTION: acpi_disable
109 *
110 * PARAMETERS: None
111 *
112 * RETURN: Status
113 *
Robert Moore44f6c012005-04-18 22:49:35 -0400114 * DESCRIPTION: Transfers the system into LEGACY (non-ACPI) mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *
116 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400117acpi_status acpi_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Len Brown4be44fc2005-08-05 00:44:28 -0400119 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Bob Mooreb229cf92006-04-21 17:15:00 -0400121 ACPI_FUNCTION_TRACE(acpi_disable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (acpi_hw_get_mode() == ACPI_SYS_MODE_LEGACY) {
Len Brown4be44fc2005-08-05 00:44:28 -0400124 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
125 "System is already in legacy (non-ACPI) mode\n"));
126 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* Transition to LEGACY mode */
128
Len Brown4be44fc2005-08-05 00:44:28 -0400129 status = acpi_hw_set_mode(ACPI_SYS_MODE_LEGACY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Len Brown4be44fc2005-08-05 00:44:28 -0400131 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500132 ACPI_ERROR((AE_INFO,
133 "Could not exit ACPI mode to legacy mode"));
Len Brown4be44fc2005-08-05 00:44:28 -0400134 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137 ACPI_DEBUG_PRINT((ACPI_DB_INIT, "ACPI mode disabled\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
Len Brown4be44fc2005-08-05 00:44:28 -0400140 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Bob Moore83135242006-10-03 00:00:00 -0400143ACPI_EXPORT_SYMBOL(acpi_disable)
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*******************************************************************************
146 *
147 * FUNCTION: acpi_enable_event
148 *
149 * PARAMETERS: Event - The fixed eventto be enabled
150 * Flags - Reserved
151 *
152 * RETURN: Status
153 *
154 * DESCRIPTION: Enable an ACPI event (fixed)
155 *
156 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400157acpi_status acpi_enable_event(u32 event, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Len Brown4be44fc2005-08-05 00:44:28 -0400159 acpi_status status = AE_OK;
160 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Bob Mooreb229cf92006-04-21 17:15:00 -0400162 ACPI_FUNCTION_TRACE(acpi_enable_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /* Decode the Fixed Event */
165
166 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400167 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169
170 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800171 * Enable the requested fixed event (by writing a one to the enable
172 * register bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
Len Brown4be44fc2005-08-05 00:44:28 -0400174 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800175 acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
Bob Moore768aaaf2009-03-06 09:49:25 +0800176 enable_register_id, ACPI_ENABLE_EVENT);
Len Brown4be44fc2005-08-05 00:44:28 -0400177 if (ACPI_FAILURE(status)) {
178 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
181 /* Make sure that the hardware responded */
182
Len Brown4be44fc2005-08-05 00:44:28 -0400183 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800184 acpi_read_bit_register(acpi_gbl_fixed_event_info[event].
185 enable_register_id, &value);
Len Brown4be44fc2005-08-05 00:44:28 -0400186 if (ACPI_FAILURE(status)) {
187 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 if (value != 1) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500191 ACPI_ERROR((AE_INFO,
192 "Could not enable %s event",
193 acpi_ut_get_event_name(event)));
Len Brown4be44fc2005-08-05 00:44:28 -0400194 return_ACPI_STATUS(AE_NO_HARDWARE_RESPONSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
Len Brown4be44fc2005-08-05 00:44:28 -0400197 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Bob Moore83135242006-10-03 00:00:00 -0400200ACPI_EXPORT_SYMBOL(acpi_enable_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202/*******************************************************************************
203 *
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100204 * FUNCTION: acpi_set_gpe
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 *
206 * PARAMETERS: gpe_device - Parent GPE Device
207 * gpe_number - GPE level within the GPE block
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100208 * action - Enable or disable
209 * Called from ISR or not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 *
211 * RETURN: Status
212 *
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100213 * DESCRIPTION: Enable or disable an ACPI event (general purpose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 *
215 ******************************************************************************/
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100216acpi_status acpi_set_gpe(acpi_handle gpe_device, u32 gpe_number, u8 action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Len Brown4be44fc2005-08-05 00:44:28 -0400218 acpi_status status = AE_OK;
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100219 acpi_cpu_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400220 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100222 ACPI_FUNCTION_TRACE(acpi_set_gpe);
223
224 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* Ensure that we have a valid GPE number */
227
Len Brown4be44fc2005-08-05 00:44:28 -0400228 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!gpe_event_info) {
230 status = AE_BAD_PARAMETER;
231 goto unlock_and_exit;
232 }
233
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100234 /* Perform the action */
235
236 switch (action) {
237 case ACPI_GPE_ENABLE:
238 status = acpi_ev_enable_gpe(gpe_event_info, TRUE);
239 break;
240
241 case ACPI_GPE_DISABLE:
242 status = acpi_ev_disable_gpe(gpe_event_info);
243 break;
244
245 default:
246 ACPI_ERROR((AE_INFO, "Invalid action\n"));
247 status = AE_BAD_PARAMETER;
248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 unlock_and_exit:
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100252 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400253 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100256ACPI_EXPORT_SYMBOL(acpi_set_gpe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258/*******************************************************************************
259 *
260 * FUNCTION: acpi_enable_gpe
261 *
262 * PARAMETERS: gpe_device - Parent GPE Device
263 * gpe_number - GPE level within the GPE block
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100264 * type - Purpose the GPE will be used for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 *
266 * RETURN: Status
267 *
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100268 * DESCRIPTION: Take a reference to a GPE and enable it if necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 *
270 ******************************************************************************/
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100271acpi_status acpi_enable_gpe(acpi_handle gpe_device, u32 gpe_number, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Len Brown4be44fc2005-08-05 00:44:28 -0400273 acpi_status status = AE_OK;
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400274 acpi_cpu_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400275 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Bob Mooreb229cf92006-04-21 17:15:00 -0400277 ACPI_FUNCTION_TRACE(acpi_enable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400279 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 /* Ensure that we have a valid GPE number */
282
Len Brown4be44fc2005-08-05 00:44:28 -0400283 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (!gpe_event_info) {
285 status = AE_BAD_PARAMETER;
286 goto unlock_and_exit;
287 }
288
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100289 if (type & ACPI_GPE_TYPE_RUNTIME) {
290 if (++gpe_event_info->runtime_count == 1)
291 status = acpi_ev_enable_gpe(gpe_event_info, TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100293 if (ACPI_FAILURE(status))
294 gpe_event_info->runtime_count--;
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100297 if (type & ACPI_GPE_TYPE_WAKE) {
298 if (!(gpe_event_info->flags & ACPI_GPE_CAN_WAKE)) {
299 status = AE_BAD_PARAMETER;
300 goto unlock_and_exit;
301 }
302
303 /*
304 * Wake-up GPEs are only enabled right prior to putting the
305 * system into a sleep state.
306 */
307 if (++gpe_event_info->wakeup_count == 1)
308 acpi_ev_update_gpe_enable_masks(gpe_event_info);
309 }
310
311unlock_and_exit:
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400312 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400313 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
Bob Moore83135242006-10-03 00:00:00 -0400315ACPI_EXPORT_SYMBOL(acpi_enable_gpe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317/*******************************************************************************
318 *
319 * FUNCTION: acpi_disable_gpe
320 *
321 * PARAMETERS: gpe_device - Parent GPE Device
322 * gpe_number - GPE level within the GPE block
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100323 * type - Purpose the GPE won't be used for any more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 *
325 * RETURN: Status
326 *
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100327 * DESCRIPTION: Release a reference to a GPE and disable it if necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 *
329 ******************************************************************************/
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100330acpi_status acpi_disable_gpe(acpi_handle gpe_device, u32 gpe_number, u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Len Brown4be44fc2005-08-05 00:44:28 -0400332 acpi_status status = AE_OK;
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400333 acpi_cpu_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400334 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Bob Mooreb229cf92006-04-21 17:15:00 -0400336 ACPI_FUNCTION_TRACE(acpi_disable_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400338 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /* Ensure that we have a valid GPE number */
340
Len Brown4be44fc2005-08-05 00:44:28 -0400341 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (!gpe_event_info) {
343 status = AE_BAD_PARAMETER;
344 goto unlock_and_exit;
345 }
346
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100347 if ((type & ACPI_GPE_TYPE_WAKE) && gpe_event_info->runtime_count) {
348 if (--gpe_event_info->runtime_count == 0)
349 acpi_ev_disable_gpe(gpe_event_info);
350 }
351
352 if ((type & ACPI_GPE_TYPE_RUNTIME) && gpe_event_info->wakeup_count) {
353 /*
354 * Wake-up GPEs are not enabled after leaving system sleep
355 * states, so we don't need to disable them here.
356 */
357 if (--gpe_event_info->wakeup_count == 0)
358 acpi_ev_update_gpe_enable_masks(gpe_event_info);
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400361unlock_and_exit:
362 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400363 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
Bob Moore83135242006-10-03 00:00:00 -0400365ACPI_EXPORT_SYMBOL(acpi_disable_gpe)
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/*******************************************************************************
368 *
369 * FUNCTION: acpi_disable_event
370 *
371 * PARAMETERS: Event - The fixed eventto be enabled
372 * Flags - Reserved
373 *
374 * RETURN: Status
375 *
376 * DESCRIPTION: Disable an ACPI event (fixed)
377 *
378 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400379acpi_status acpi_disable_event(u32 event, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Len Brown4be44fc2005-08-05 00:44:28 -0400381 acpi_status status = AE_OK;
382 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Bob Mooreb229cf92006-04-21 17:15:00 -0400384 ACPI_FUNCTION_TRACE(acpi_disable_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /* Decode the Fixed Event */
387
388 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400389 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800393 * Disable the requested fixed event (by writing a zero to the enable
394 * register bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
Len Brown4be44fc2005-08-05 00:44:28 -0400396 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800397 acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
Bob Moore768aaaf2009-03-06 09:49:25 +0800398 enable_register_id, ACPI_DISABLE_EVENT);
Len Brown4be44fc2005-08-05 00:44:28 -0400399 if (ACPI_FAILURE(status)) {
400 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
Len Brown4be44fc2005-08-05 00:44:28 -0400403 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800404 acpi_read_bit_register(acpi_gbl_fixed_event_info[event].
405 enable_register_id, &value);
Len Brown4be44fc2005-08-05 00:44:28 -0400406 if (ACPI_FAILURE(status)) {
407 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
410 if (value != 0) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500411 ACPI_ERROR((AE_INFO,
412 "Could not disable %s events",
413 acpi_ut_get_event_name(event)));
Len Brown4be44fc2005-08-05 00:44:28 -0400414 return_ACPI_STATUS(AE_NO_HARDWARE_RESPONSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Len Brown4be44fc2005-08-05 00:44:28 -0400417 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Bob Moore83135242006-10-03 00:00:00 -0400420ACPI_EXPORT_SYMBOL(acpi_disable_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422/*******************************************************************************
423 *
424 * FUNCTION: acpi_clear_event
425 *
426 * PARAMETERS: Event - The fixed event to be cleared
427 *
428 * RETURN: Status
429 *
430 * DESCRIPTION: Clear an ACPI event (fixed)
431 *
432 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400433acpi_status acpi_clear_event(u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Len Brown4be44fc2005-08-05 00:44:28 -0400435 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Bob Mooreb229cf92006-04-21 17:15:00 -0400437 ACPI_FUNCTION_TRACE(acpi_clear_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /* Decode the Fixed Event */
440
441 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400442 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
445 /*
Bob Moore9f15fc62008-11-12 16:01:56 +0800446 * Clear the requested fixed event (By writing a one to the status
447 * register bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Len Brown4be44fc2005-08-05 00:44:28 -0400449 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800450 acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
Bob Moore768aaaf2009-03-06 09:49:25 +0800451 status_register_id, ACPI_CLEAR_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Len Brown4be44fc2005-08-05 00:44:28 -0400453 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Bob Moore83135242006-10-03 00:00:00 -0400456ACPI_EXPORT_SYMBOL(acpi_clear_event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458/*******************************************************************************
459 *
460 * FUNCTION: acpi_clear_gpe
461 *
462 * PARAMETERS: gpe_device - Parent GPE Device
463 * gpe_number - GPE level within the GPE block
464 * Flags - Called from an ISR or not
465 *
466 * RETURN: Status
467 *
468 * DESCRIPTION: Clear an ACPI event (general purpose)
469 *
470 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400471acpi_status acpi_clear_gpe(acpi_handle gpe_device, u32 gpe_number, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Len Brown4be44fc2005-08-05 00:44:28 -0400473 acpi_status status = AE_OK;
474 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Bob Mooreb229cf92006-04-21 17:15:00 -0400476 ACPI_FUNCTION_TRACE(acpi_clear_gpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* Use semaphore lock if not executing at interrupt level */
479
480 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400481 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
482 if (ACPI_FAILURE(status)) {
483 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485 }
486
487 /* Ensure that we have a valid GPE number */
488
Len Brown4be44fc2005-08-05 00:44:28 -0400489 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!gpe_event_info) {
491 status = AE_BAD_PARAMETER;
492 goto unlock_and_exit;
493 }
494
Len Brown4be44fc2005-08-05 00:44:28 -0400495 status = acpi_hw_clear_gpe(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Len Brown4be44fc2005-08-05 00:44:28 -0400497 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400499 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Len Brown4be44fc2005-08-05 00:44:28 -0400501 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Bob Moore83135242006-10-03 00:00:00 -0400504ACPI_EXPORT_SYMBOL(acpi_clear_gpe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505/*******************************************************************************
506 *
507 * FUNCTION: acpi_get_event_status
508 *
509 * PARAMETERS: Event - The fixed event
Robert Moore44f6c012005-04-18 22:49:35 -0400510 * event_status - Where the current status of the event will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * be returned
512 *
513 * RETURN: Status
514 *
515 * DESCRIPTION: Obtains and returns the current status of the event
516 *
517 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400518acpi_status acpi_get_event_status(u32 event, acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Len Brown4be44fc2005-08-05 00:44:28 -0400520 acpi_status status = AE_OK;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800521 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Bob Mooreb229cf92006-04-21 17:15:00 -0400523 ACPI_FUNCTION_TRACE(acpi_get_event_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 if (!event_status) {
Len Brown4be44fc2005-08-05 00:44:28 -0400526 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
529 /* Decode the Fixed Event */
530
531 if (event > ACPI_EVENT_MAX) {
Len Brown4be44fc2005-08-05 00:44:28 -0400532 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
535 /* Get the status of the requested fixed event */
536
Len Brown4be44fc2005-08-05 00:44:28 -0400537 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800538 acpi_read_bit_register(acpi_gbl_fixed_event_info[event].
Zhang Rui71b58cb2008-06-20 09:42:47 +0800539 enable_register_id, &value);
540 if (ACPI_FAILURE(status))
541 return_ACPI_STATUS(status);
542
543 *event_status = value;
544
545 status =
Bob Moore50ffba12009-02-23 15:02:07 +0800546 acpi_read_bit_register(acpi_gbl_fixed_event_info[event].
Zhang Rui71b58cb2008-06-20 09:42:47 +0800547 status_register_id, &value);
548 if (ACPI_FAILURE(status))
549 return_ACPI_STATUS(status);
550
551 if (value)
552 *event_status |= ACPI_EVENT_FLAG_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Zhang Ruied206fa2008-10-27 14:01:02 -0700554 if (acpi_gbl_fixed_event_handlers[event].handler)
555 *event_status |= ACPI_EVENT_FLAG_HANDLE;
556
Len Brown4be44fc2005-08-05 00:44:28 -0400557 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Bob Moore83135242006-10-03 00:00:00 -0400560ACPI_EXPORT_SYMBOL(acpi_get_event_status)
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/*******************************************************************************
563 *
564 * FUNCTION: acpi_get_gpe_status
565 *
566 * PARAMETERS: gpe_device - Parent GPE Device
567 * gpe_number - GPE level within the GPE block
568 * Flags - Called from an ISR or not
Robert Moore44f6c012005-04-18 22:49:35 -0400569 * event_status - Where the current status of the event will
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * be returned
571 *
572 * RETURN: Status
573 *
574 * DESCRIPTION: Get status of an event (general purpose)
575 *
576 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400578acpi_get_gpe_status(acpi_handle gpe_device,
579 u32 gpe_number, u32 flags, acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Len Brown4be44fc2005-08-05 00:44:28 -0400581 acpi_status status = AE_OK;
582 struct acpi_gpe_event_info *gpe_event_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Bob Mooreb229cf92006-04-21 17:15:00 -0400584 ACPI_FUNCTION_TRACE(acpi_get_gpe_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 /* Use semaphore lock if not executing at interrupt level */
587
588 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400589 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
590 if (ACPI_FAILURE(status)) {
591 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593 }
594
595 /* Ensure that we have a valid GPE number */
596
Len Brown4be44fc2005-08-05 00:44:28 -0400597 gpe_event_info = acpi_ev_get_gpe_event_info(gpe_device, gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (!gpe_event_info) {
599 status = AE_BAD_PARAMETER;
600 goto unlock_and_exit;
601 }
602
603 /* Obtain status on the requested GPE number */
604
Len Brown4be44fc2005-08-05 00:44:28 -0400605 status = acpi_hw_get_gpe_status(gpe_event_info, event_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Zhang Ruied206fa2008-10-27 14:01:02 -0700607 if (gpe_event_info->flags & ACPI_GPE_DISPATCH_MASK)
608 *event_status |= ACPI_EVENT_FLAG_HANDLE;
609
Len Brown4be44fc2005-08-05 00:44:28 -0400610 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (flags & ACPI_NOT_ISR) {
Len Brown4be44fc2005-08-05 00:44:28 -0400612 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
Len Brown4be44fc2005-08-05 00:44:28 -0400614 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
Bob Moore83135242006-10-03 00:00:00 -0400616
617ACPI_EXPORT_SYMBOL(acpi_get_gpe_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618/*******************************************************************************
619 *
620 * FUNCTION: acpi_install_gpe_block
621 *
622 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
623 * gpe_block_address - Address and space_iD
624 * register_count - Number of GPE register pairs in the block
Robert Moore6f42ccf2005-05-13 00:00:00 -0400625 * interrupt_number - H/W interrupt for the block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 *
627 * RETURN: Status
628 *
629 * DESCRIPTION: Create and Install a block of GPE registers
630 *
631 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400633acpi_install_gpe_block(acpi_handle gpe_device,
634 struct acpi_generic_address *gpe_block_address,
635 u32 register_count, u32 interrupt_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Len Brown4be44fc2005-08-05 00:44:28 -0400637 acpi_status status;
638 union acpi_operand_object *obj_desc;
639 struct acpi_namespace_node *node;
640 struct acpi_gpe_block_info *gpe_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Bob Mooreb229cf92006-04-21 17:15:00 -0400642 ACPI_FUNCTION_TRACE(acpi_install_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Len Brown4be44fc2005-08-05 00:44:28 -0400644 if ((!gpe_device) || (!gpe_block_address) || (!register_count)) {
645 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647
Len Brown4be44fc2005-08-05 00:44:28 -0400648 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
649 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return (status);
651 }
652
Bob Mooref24b6642009-12-11 14:57:00 +0800653 node = acpi_ns_validate_handle(gpe_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (!node) {
655 status = AE_BAD_PARAMETER;
656 goto unlock_and_exit;
657 }
658
659 /*
660 * For user-installed GPE Block Devices, the gpe_block_base_number
661 * is always zero
662 */
Len Brown4be44fc2005-08-05 00:44:28 -0400663 status =
664 acpi_ev_create_gpe_block(node, gpe_block_address, register_count, 0,
665 interrupt_number, &gpe_block);
666 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 goto unlock_and_exit;
668 }
669
Bob Moore96db2552005-11-02 00:00:00 -0500670 /* Run the _PRW methods and enable the GPEs */
671
672 status = acpi_ev_initialize_gpe_block(node, gpe_block);
673 if (ACPI_FAILURE(status)) {
674 goto unlock_and_exit;
675 }
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /* Get the device_object attached to the node */
678
Len Brown4be44fc2005-08-05 00:44:28 -0400679 obj_desc = acpi_ns_get_attached_object(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (!obj_desc) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* No object, create a new one */
683
Len Brown4be44fc2005-08-05 00:44:28 -0400684 obj_desc = acpi_ut_create_internal_object(ACPI_TYPE_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (!obj_desc) {
686 status = AE_NO_MEMORY;
687 goto unlock_and_exit;
688 }
689
Len Brown4be44fc2005-08-05 00:44:28 -0400690 status =
691 acpi_ns_attach_object(node, obj_desc, ACPI_TYPE_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 /* Remove local reference to the object */
694
Len Brown4be44fc2005-08-05 00:44:28 -0400695 acpi_ut_remove_reference(obj_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Len Brown4be44fc2005-08-05 00:44:28 -0400697 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 goto unlock_and_exit;
699 }
700 }
701
702 /* Install the GPE block in the device_object */
703
704 obj_desc->device.gpe_block = gpe_block;
705
Len Brown4be44fc2005-08-05 00:44:28 -0400706 unlock_and_exit:
707 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
708 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Bob Moore83135242006-10-03 00:00:00 -0400711ACPI_EXPORT_SYMBOL(acpi_install_gpe_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/*******************************************************************************
714 *
715 * FUNCTION: acpi_remove_gpe_block
716 *
717 * PARAMETERS: gpe_device - Handle to the parent GPE Block Device
718 *
719 * RETURN: Status
720 *
721 * DESCRIPTION: Remove a previously installed block of GPE registers
722 *
723 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400724acpi_status acpi_remove_gpe_block(acpi_handle gpe_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Len Brown4be44fc2005-08-05 00:44:28 -0400726 union acpi_operand_object *obj_desc;
727 acpi_status status;
728 struct acpi_namespace_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Bob Mooreb229cf92006-04-21 17:15:00 -0400730 ACPI_FUNCTION_TRACE(acpi_remove_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 if (!gpe_device) {
Len Brown4be44fc2005-08-05 00:44:28 -0400733 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735
Len Brown4be44fc2005-08-05 00:44:28 -0400736 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
737 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return (status);
739 }
740
Bob Mooref24b6642009-12-11 14:57:00 +0800741 node = acpi_ns_validate_handle(gpe_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!node) {
743 status = AE_BAD_PARAMETER;
744 goto unlock_and_exit;
745 }
746
747 /* Get the device_object attached to the node */
748
Len Brown4be44fc2005-08-05 00:44:28 -0400749 obj_desc = acpi_ns_get_attached_object(node);
750 if (!obj_desc || !obj_desc->device.gpe_block) {
751 return_ACPI_STATUS(AE_NULL_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
754 /* Delete the GPE block (but not the device_object) */
755
Len Brown4be44fc2005-08-05 00:44:28 -0400756 status = acpi_ev_delete_gpe_block(obj_desc->device.gpe_block);
757 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 obj_desc->device.gpe_block = NULL;
759 }
760
Len Brown4be44fc2005-08-05 00:44:28 -0400761 unlock_and_exit:
762 (void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
763 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
Robert Moore44f6c012005-04-18 22:49:35 -0400765
Bob Moore83135242006-10-03 00:00:00 -0400766ACPI_EXPORT_SYMBOL(acpi_remove_gpe_block)
Bob Mooree97d6bf2008-12-30 09:45:17 +0800767
768/*******************************************************************************
769 *
770 * FUNCTION: acpi_get_gpe_device
771 *
772 * PARAMETERS: Index - System GPE index (0-current_gpe_count)
773 * gpe_device - Where the parent GPE Device is returned
774 *
775 * RETURN: Status
776 *
777 * DESCRIPTION: Obtain the GPE device associated with the input index. A NULL
778 * gpe device indicates that the gpe number is contained in one of
779 * the FADT-defined gpe blocks. Otherwise, the GPE block device.
780 *
781 ******************************************************************************/
782acpi_status
783acpi_get_gpe_device(u32 index, acpi_handle *gpe_device)
784{
785 struct acpi_gpe_device_info info;
786 acpi_status status;
787
788 ACPI_FUNCTION_TRACE(acpi_get_gpe_device);
789
790 if (!gpe_device) {
791 return_ACPI_STATUS(AE_BAD_PARAMETER);
792 }
793
794 if (index >= acpi_current_gpe_count) {
795 return_ACPI_STATUS(AE_NOT_EXIST);
796 }
797
798 /* Setup and walk the GPE list */
799
800 info.index = index;
801 info.status = AE_NOT_EXIST;
802 info.gpe_device = NULL;
803 info.next_block_base_index = 0;
804
805 status = acpi_ev_walk_gpe_list(acpi_ev_get_gpe_device, &info);
806 if (ACPI_FAILURE(status)) {
807 return_ACPI_STATUS(status);
808 }
809
810 *gpe_device = info.gpe_device;
811 return_ACPI_STATUS(info.status);
812}
813
814ACPI_EXPORT_SYMBOL(acpi_get_gpe_device)
815
816/*******************************************************************************
817 *
818 * FUNCTION: acpi_ev_get_gpe_device
819 *
820 * PARAMETERS: GPE_WALK_CALLBACK
821 *
822 * RETURN: Status
823 *
824 * DESCRIPTION: Matches the input GPE index (0-current_gpe_count) with a GPE
825 * block device. NULL if the GPE is one of the FADT-defined GPEs.
826 *
827 ******************************************************************************/
Bob Mooree4c1ebf2009-04-22 13:02:06 +0800828static acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800829acpi_ev_get_gpe_device(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
830 struct acpi_gpe_block_info *gpe_block, void *context)
831{
832 struct acpi_gpe_device_info *info = context;
833
834 /* Increment Index by the number of GPEs in this block */
835
836 info->next_block_base_index +=
837 (gpe_block->register_count * ACPI_GPE_REGISTER_WIDTH);
838
839 if (info->index < info->next_block_base_index) {
840 /*
841 * The GPE index is within this block, get the node. Leave the node
842 * NULL for the FADT-defined GPEs
843 */
844 if ((gpe_block->node)->type == ACPI_TYPE_DEVICE) {
845 info->gpe_device = gpe_block->node;
846 }
847
848 info->status = AE_OK;
849 return (AE_CTRL_END);
850 }
851
852 return (AE_OK);
853}
Bob Moore08ac07b2008-12-30 09:55:48 +0800854
855/******************************************************************************
856 *
857 * FUNCTION: acpi_disable_all_gpes
858 *
859 * PARAMETERS: None
860 *
861 * RETURN: Status
862 *
863 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
864 *
865 ******************************************************************************/
866
867acpi_status acpi_disable_all_gpes(void)
868{
869 acpi_status status;
870
871 ACPI_FUNCTION_TRACE(acpi_disable_all_gpes);
872
873 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
874 if (ACPI_FAILURE(status)) {
875 return_ACPI_STATUS(status);
876 }
877
878 status = acpi_hw_disable_all_gpes();
879 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
880
881 return_ACPI_STATUS(status);
882}
883
884/******************************************************************************
885 *
886 * FUNCTION: acpi_enable_all_runtime_gpes
887 *
888 * PARAMETERS: None
889 *
890 * RETURN: Status
891 *
892 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
893 *
894 ******************************************************************************/
895
896acpi_status acpi_enable_all_runtime_gpes(void)
897{
898 acpi_status status;
899
900 ACPI_FUNCTION_TRACE(acpi_enable_all_runtime_gpes);
901
902 status = acpi_ut_acquire_mutex(ACPI_MTX_EVENTS);
903 if (ACPI_FAILURE(status)) {
904 return_ACPI_STATUS(status);
905 }
906
907 status = acpi_hw_enable_all_runtime_gpes();
908 (void)acpi_ut_release_mutex(ACPI_MTX_EVENTS);
909
910 return_ACPI_STATUS(status);
911}