blob: f610d88a66be86b823f6ceed6abd7e2876c3a81e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Module Name: hwgpe - Low level GPE enable/disable/clear functions
5 *
6 *****************************************************************************/
7
8/*
Bob Mooreb4e104e2011-01-17 11:05:40 +08009 * Copyright (C) 2000 - 2011, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
30 *
31 * NO WARRANTY
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
43 */
44
45#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
47#include "acevents.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#define _COMPONENT ACPI_HARDWARE
Len Brown4be44fc2005-08-05 00:44:28 -040050ACPI_MODULE_NAME("hwgpe")
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Robert Moore44f6c012005-04-18 22:49:35 -040052/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040053static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040054acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
Bob Mooree97d6bf2008-12-30 09:45:17 +080055 struct acpi_gpe_block_info *gpe_block,
56 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/******************************************************************************
59 *
Lin Mingb76df672010-07-01 10:07:17 +080060 * FUNCTION: acpi_hw_get_gpe_register_bit
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020061 *
62 * PARAMETERS: gpe_event_info - Info block for the GPE
63 * gpe_register_info - Info block for the GPE register
64 *
Lin Mingda503372010-12-13 13:39:37 +080065 * RETURN: Register mask with a one in the GPE bit position
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020066 *
Lin Mingda503372010-12-13 13:39:37 +080067 * DESCRIPTION: Compute the register mask for this GPE. One bit is set in the
68 * correct position for the input GPE.
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020069 *
70 ******************************************************************************/
71
Lin Mingb76df672010-07-01 10:07:17 +080072u32 acpi_hw_get_gpe_register_bit(struct acpi_gpe_event_info *gpe_event_info,
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020073 struct acpi_gpe_register_info *gpe_register_info)
74{
75 return (u32)1 << (gpe_event_info->gpe_number -
76 gpe_register_info->base_gpe_number);
77}
78
79/******************************************************************************
80 *
Rafael J. Wysockifd247442010-06-08 10:49:08 +020081 * FUNCTION: acpi_hw_low_set_gpe
Bob Mooree38e8a02008-06-13 08:28:55 +080082 *
83 * PARAMETERS: gpe_event_info - Info block for the GPE to be disabled
Rafael J. Wysockifd247442010-06-08 10:49:08 +020084 * action - Enable or disable
Bob Mooree38e8a02008-06-13 08:28:55 +080085 *
86 * RETURN: Status
87 *
Lin Mingda503372010-12-13 13:39:37 +080088 * DESCRIPTION: Enable or disable a single GPE in the parent enable register.
Bob Mooree38e8a02008-06-13 08:28:55 +080089 *
90 ******************************************************************************/
91
Rafael J. Wysockifd247442010-06-08 10:49:08 +020092acpi_status
Lin Mingda503372010-12-13 13:39:37 +080093acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action)
Bob Mooree38e8a02008-06-13 08:28:55 +080094{
95 struct acpi_gpe_register_info *gpe_register_info;
96 acpi_status status;
97 u32 enable_mask;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020098 u32 register_bit;
Bob Mooree38e8a02008-06-13 08:28:55 +080099
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200100 ACPI_FUNCTION_ENTRY();
101
Bob Mooree38e8a02008-06-13 08:28:55 +0800102 /* Get the info block for the entire GPE register */
103
104 gpe_register_info = gpe_event_info->register_info;
105 if (!gpe_register_info) {
106 return (AE_NOT_EXIST);
107 }
108
109 /* Get current value of the enable register that contains this GPE */
110
Bob Moorec6b57742009-06-24 09:44:06 +0800111 status = acpi_hw_read(&enable_mask, &gpe_register_info->enable_address);
Bob Mooree38e8a02008-06-13 08:28:55 +0800112 if (ACPI_FAILURE(status)) {
113 return (status);
114 }
115
Lin Mingda503372010-12-13 13:39:37 +0800116 /* Set or clear just the bit that corresponds to this GPE */
Bob Mooree38e8a02008-06-13 08:28:55 +0800117
Lin Mingb76df672010-07-01 10:07:17 +0800118 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info,
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200119 gpe_register_info);
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200120 switch (action) {
Lin Ming3a378982010-12-13 13:36:15 +0800121 case ACPI_GPE_CONDITIONAL_ENABLE:
Lin Mingda503372010-12-13 13:39:37 +0800122
123 /* Only enable if the enable_for_run bit is set */
124
125 if (!(register_bit & gpe_register_info->enable_for_run)) {
Rafael J. Wysockic9a8bbb2010-06-08 10:49:45 +0200126 return (AE_BAD_PARAMETER);
Lin Mingda503372010-12-13 13:39:37 +0800127 }
128
129 /*lint -fallthrough */
Rafael J. Wysockic9a8bbb2010-06-08 10:49:45 +0200130
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200131 case ACPI_GPE_ENABLE:
132 ACPI_SET_BIT(enable_mask, register_bit);
133 break;
134
135 case ACPI_GPE_DISABLE:
136 ACPI_CLEAR_BIT(enable_mask, register_bit);
137 break;
138
139 default:
Lin Mingda503372010-12-13 13:39:37 +0800140 ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u\n", action));
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200141 return (AE_BAD_PARAMETER);
142 }
Bob Mooree38e8a02008-06-13 08:28:55 +0800143
144 /* Write the updated enable mask */
145
Bob Moorec6b57742009-06-24 09:44:06 +0800146 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address);
Bob Mooree38e8a02008-06-13 08:28:55 +0800147 return (status);
148}
149
150/******************************************************************************
151 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * FUNCTION: acpi_hw_clear_gpe
153 *
154 * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
155 *
156 * RETURN: Status
157 *
158 * DESCRIPTION: Clear the status bit for a single GPE.
159 *
160 ******************************************************************************/
161
Len Brown4be44fc2005-08-05 00:44:28 -0400162acpi_status acpi_hw_clear_gpe(struct acpi_gpe_event_info * gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200164 struct acpi_gpe_register_info *gpe_register_info;
Len Brown4be44fc2005-08-05 00:44:28 -0400165 acpi_status status;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200166 u32 register_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Len Brown4be44fc2005-08-05 00:44:28 -0400168 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200170 /* Get the info block for the entire GPE register */
171
172 gpe_register_info = gpe_event_info->register_info;
173 if (!gpe_register_info) {
174 return (AE_NOT_EXIST);
175 }
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
178 * Write a one to the appropriate bit in the status register to
179 * clear this GPE.
180 */
Lin Mingda503372010-12-13 13:39:37 +0800181 register_bit =
182 acpi_hw_get_gpe_register_bit(gpe_event_info, gpe_register_info);
183
Bob Moorec6b57742009-06-24 09:44:06 +0800184 status = acpi_hw_write(register_bit,
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200185 &gpe_register_info->status_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 return (status);
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/******************************************************************************
191 *
192 * FUNCTION: acpi_hw_get_gpe_status
193 *
194 * PARAMETERS: gpe_event_info - Info block for the GPE to queried
195 * event_status - Where the GPE status is returned
196 *
197 * RETURN: Status
198 *
199 * DESCRIPTION: Return the status of a single GPE.
200 *
201 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400204acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
205 acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Len Brown4be44fc2005-08-05 00:44:28 -0400207 u32 in_byte;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200208 u32 register_bit;
Len Brown4be44fc2005-08-05 00:44:28 -0400209 struct acpi_gpe_register_info *gpe_register_info;
Len Brown4be44fc2005-08-05 00:44:28 -0400210 acpi_event_status local_event_status = 0;
Lin Mingda503372010-12-13 13:39:37 +0800211 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Len Brown4be44fc2005-08-05 00:44:28 -0400213 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 if (!event_status) {
216 return (AE_BAD_PARAMETER);
217 }
218
219 /* Get the info block for the entire GPE register */
220
221 gpe_register_info = gpe_event_info->register_info;
222
223 /* Get the register bitmask for this GPE */
224
Lin Mingb76df672010-07-01 10:07:17 +0800225 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info,
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200226 gpe_register_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* GPE currently enabled? (enabled for runtime?) */
229
230 if (register_bit & gpe_register_info->enable_for_run) {
231 local_event_status |= ACPI_EVENT_FLAG_ENABLED;
232 }
233
234 /* GPE enabled for wake? */
235
236 if (register_bit & gpe_register_info->enable_for_wake) {
237 local_event_status |= ACPI_EVENT_FLAG_WAKE_ENABLED;
238 }
239
240 /* GPE currently active (status bit == 1)? */
241
Bob Moorec6b57742009-06-24 09:44:06 +0800242 status = acpi_hw_read(&in_byte, &gpe_register_info->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400243 if (ACPI_FAILURE(status)) {
Bob Moore2147d3f2010-01-21 09:08:31 +0800244 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246
247 if (register_bit & in_byte) {
248 local_event_status |= ACPI_EVENT_FLAG_SET;
249 }
250
251 /* Set return value */
252
253 (*event_status) = local_event_status;
Bob Moore2147d3f2010-01-21 09:08:31 +0800254 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257/******************************************************************************
258 *
259 * FUNCTION: acpi_hw_disable_gpe_block
260 *
261 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
262 * gpe_block - Gpe Block info
263 *
264 * RETURN: Status
265 *
Robert Moore44f6c012005-04-18 22:49:35 -0400266 * DESCRIPTION: Disable all GPEs within a single GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 *
268 ******************************************************************************/
269
270acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800271acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
272 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Len Brown4be44fc2005-08-05 00:44:28 -0400274 u32 i;
275 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 /* Examine each GPE Register within the block */
278
279 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* Disable all GPEs in this register */
282
Bob Mooreecfbbc72008-12-31 02:55:32 +0800283 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800284 acpi_hw_write(0x00,
285 &gpe_block->register_info[i].enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400286 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return (status);
288 }
289 }
290
291 return (AE_OK);
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/******************************************************************************
295 *
296 * FUNCTION: acpi_hw_clear_gpe_block
297 *
298 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
299 * gpe_block - Gpe Block info
300 *
301 * RETURN: Status
302 *
Robert Moore44f6c012005-04-18 22:49:35 -0400303 * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 *
305 ******************************************************************************/
306
307acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800308acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
309 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Len Brown4be44fc2005-08-05 00:44:28 -0400311 u32 i;
312 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* Examine each GPE Register within the block */
315
316 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* Clear status on all GPEs in this register */
319
Bob Mooreecfbbc72008-12-31 02:55:32 +0800320 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800321 acpi_hw_write(0xFF,
322 &gpe_block->register_info[i].status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400323 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return (status);
325 }
326 }
327
328 return (AE_OK);
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/******************************************************************************
332 *
333 * FUNCTION: acpi_hw_enable_runtime_gpe_block
334 *
335 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
336 * gpe_block - Gpe Block info
337 *
338 * RETURN: Status
339 *
Robert Moore44f6c012005-04-18 22:49:35 -0400340 * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
341 * combination wake/run GPEs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 *
343 ******************************************************************************/
344
345acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800346acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
347 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Len Brown4be44fc2005-08-05 00:44:28 -0400349 u32 i;
350 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 /* NOTE: assumes that all GPEs are currently disabled */
353
354 /* Examine each GPE Register within the block */
355
356 for (i = 0; i < gpe_block->register_count; i++) {
357 if (!gpe_block->register_info[i].enable_for_run) {
358 continue;
359 }
360
361 /* Enable all "runtime" GPEs in this register */
362
Bob Moorec6b57742009-06-24 09:44:06 +0800363 status =
364 acpi_hw_write(gpe_block->register_info[i].enable_for_run,
365 &gpe_block->register_info[i].enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400366 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return (status);
368 }
369 }
370
371 return (AE_OK);
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/******************************************************************************
375 *
376 * FUNCTION: acpi_hw_enable_wakeup_gpe_block
377 *
378 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
379 * gpe_block - Gpe Block info
380 *
381 * RETURN: Status
382 *
Robert Moore44f6c012005-04-18 22:49:35 -0400383 * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
384 * combination wake/run GPEs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 *
386 ******************************************************************************/
387
Robert Moore44f6c012005-04-18 22:49:35 -0400388static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400389acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
Bob Mooree97d6bf2008-12-30 09:45:17 +0800390 struct acpi_gpe_block_info *gpe_block,
391 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Len Brown4be44fc2005-08-05 00:44:28 -0400393 u32 i;
394 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /* Examine each GPE Register within the block */
397
398 for (i = 0; i < gpe_block->register_count; i++) {
399 if (!gpe_block->register_info[i].enable_for_wake) {
400 continue;
401 }
402
403 /* Enable all "wake" GPEs in this register */
404
Bob Moorec6b57742009-06-24 09:44:06 +0800405 status =
406 acpi_hw_write(gpe_block->register_info[i].enable_for_wake,
407 &gpe_block->register_info[i].enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400408 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return (status);
410 }
411 }
412
413 return (AE_OK);
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/******************************************************************************
417 *
418 * FUNCTION: acpi_hw_disable_all_gpes
419 *
Robert Moore73459f72005-06-24 00:00:00 -0400420 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 *
422 * RETURN: Status
423 *
Robert Moore44f6c012005-04-18 22:49:35 -0400424 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 *
426 ******************************************************************************/
427
Len Brown4be44fc2005-08-05 00:44:28 -0400428acpi_status acpi_hw_disable_all_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Len Brown4be44fc2005-08-05 00:44:28 -0400430 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Bob Mooreb229cf92006-04-21 17:15:00 -0400432 ACPI_FUNCTION_TRACE(hw_disable_all_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Bob Mooree97d6bf2008-12-30 09:45:17 +0800434 status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block, NULL);
435 status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400436 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/******************************************************************************
440 *
441 * FUNCTION: acpi_hw_enable_all_runtime_gpes
442 *
Robert Moore73459f72005-06-24 00:00:00 -0400443 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
445 * RETURN: Status
446 *
Robert Moore44f6c012005-04-18 22:49:35 -0400447 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 *
449 ******************************************************************************/
450
Len Brown4be44fc2005-08-05 00:44:28 -0400451acpi_status acpi_hw_enable_all_runtime_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Len Brown4be44fc2005-08-05 00:44:28 -0400453 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Bob Mooreb229cf92006-04-21 17:15:00 -0400455 ACPI_FUNCTION_TRACE(hw_enable_all_runtime_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Bob Mooree97d6bf2008-12-30 09:45:17 +0800457 status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400458 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/******************************************************************************
462 *
463 * FUNCTION: acpi_hw_enable_all_wakeup_gpes
464 *
Robert Moore73459f72005-06-24 00:00:00 -0400465 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 *
467 * RETURN: Status
468 *
Robert Moore44f6c012005-04-18 22:49:35 -0400469 * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
471 ******************************************************************************/
472
Len Brown4be44fc2005-08-05 00:44:28 -0400473acpi_status acpi_hw_enable_all_wakeup_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Len Brown4be44fc2005-08-05 00:44:28 -0400475 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Bob Mooreb229cf92006-04-21 17:15:00 -0400477 ACPI_FUNCTION_TRACE(hw_enable_all_wakeup_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Bob Mooree97d6bf2008-12-30 09:45:17 +0800479 status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400480 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}