blob: 20d02e93c99021e10038849b5290d77e360b55fc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: hwgpe - Low level GPE enable/disable/clear functions
4 *
5 *****************************************************************************/
6
7/*
Bob Moore25f044e2013-01-25 05:38:56 +00008 * Copyright (C) 2000 - 2013, 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
44#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acevents.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define _COMPONENT ACPI_HARDWARE
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("hwgpe")
Bob Moore33620c52012-02-14 18:14:27 +080050#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
Robert Moore44f6c012005-04-18 22:49:35 -040051/* Local prototypes */
Robert Moore44f6c012005-04-18 22:49:35 -040052static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040053acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
Bob Mooree97d6bf2008-12-30 09:45:17 +080054 struct acpi_gpe_block_info *gpe_block,
55 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/******************************************************************************
58 *
Lin Mingb76df672010-07-01 10:07:17 +080059 * FUNCTION: acpi_hw_get_gpe_register_bit
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020060 *
61 * PARAMETERS: gpe_event_info - Info block for the GPE
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020062 *
Lin Mingda503372010-12-13 13:39:37 +080063 * RETURN: Register mask with a one in the GPE bit position
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020064 *
Lin Mingda503372010-12-13 13:39:37 +080065 * DESCRIPTION: Compute the register mask for this GPE. One bit is set in the
66 * correct position for the input GPE.
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020067 *
68 ******************************************************************************/
69
Feng Tang1d94e1e2012-08-17 11:10:02 +080070u32 acpi_hw_get_gpe_register_bit(struct acpi_gpe_event_info *gpe_event_info)
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020071{
Lv Zheng9c0d7932012-12-19 05:37:21 +000072
73 return ((u32)1 <<
74 (gpe_event_info->gpe_number -
75 gpe_event_info->register_info->base_gpe_number));
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020076}
77
78/******************************************************************************
79 *
Rafael J. Wysockifd247442010-06-08 10:49:08 +020080 * FUNCTION: acpi_hw_low_set_gpe
Bob Mooree38e8a02008-06-13 08:28:55 +080081 *
82 * PARAMETERS: gpe_event_info - Info block for the GPE to be disabled
Rafael J. Wysockifd247442010-06-08 10:49:08 +020083 * action - Enable or disable
Bob Mooree38e8a02008-06-13 08:28:55 +080084 *
85 * RETURN: Status
86 *
Lin Mingda503372010-12-13 13:39:37 +080087 * DESCRIPTION: Enable or disable a single GPE in the parent enable register.
Bob Mooree38e8a02008-06-13 08:28:55 +080088 *
89 ******************************************************************************/
90
Rafael J. Wysockifd247442010-06-08 10:49:08 +020091acpi_status
Lin Mingda503372010-12-13 13:39:37 +080092acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action)
Bob Mooree38e8a02008-06-13 08:28:55 +080093{
94 struct acpi_gpe_register_info *gpe_register_info;
95 acpi_status status;
96 u32 enable_mask;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +020097 u32 register_bit;
Bob Mooree38e8a02008-06-13 08:28:55 +080098
Rafael J. Wysockifd247442010-06-08 10:49:08 +020099 ACPI_FUNCTION_ENTRY();
100
Bob Mooree38e8a02008-06-13 08:28:55 +0800101 /* Get the info block for the entire GPE register */
102
103 gpe_register_info = gpe_event_info->register_info;
104 if (!gpe_register_info) {
105 return (AE_NOT_EXIST);
106 }
107
108 /* Get current value of the enable register that contains this GPE */
109
Bob Moorec6b57742009-06-24 09:44:06 +0800110 status = acpi_hw_read(&enable_mask, &gpe_register_info->enable_address);
Bob Mooree38e8a02008-06-13 08:28:55 +0800111 if (ACPI_FAILURE(status)) {
112 return (status);
113 }
114
Lin Mingda503372010-12-13 13:39:37 +0800115 /* Set or clear just the bit that corresponds to this GPE */
Bob Mooree38e8a02008-06-13 08:28:55 +0800116
Feng Tang1d94e1e2012-08-17 11:10:02 +0800117 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200118 switch (action) {
Lin Ming3a378982010-12-13 13:36:15 +0800119 case ACPI_GPE_CONDITIONAL_ENABLE:
Lin Mingda503372010-12-13 13:39:37 +0800120
121 /* Only enable if the enable_for_run bit is set */
122
123 if (!(register_bit & gpe_register_info->enable_for_run)) {
Rafael J. Wysockic9a8bbb2010-06-08 10:49:45 +0200124 return (AE_BAD_PARAMETER);
Lin Mingda503372010-12-13 13:39:37 +0800125 }
126
127 /*lint -fallthrough */
Rafael J. Wysockic9a8bbb2010-06-08 10:49:45 +0200128
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200129 case ACPI_GPE_ENABLE:
130 ACPI_SET_BIT(enable_mask, register_bit);
131 break;
132
133 case ACPI_GPE_DISABLE:
134 ACPI_CLEAR_BIT(enable_mask, register_bit);
135 break;
136
137 default:
Bob Moore5e30a962013-01-25 05:41:16 +0000138 ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u", action));
Rafael J. Wysockifd247442010-06-08 10:49:08 +0200139 return (AE_BAD_PARAMETER);
140 }
Bob Mooree38e8a02008-06-13 08:28:55 +0800141
142 /* Write the updated enable mask */
143
Bob Moorec6b57742009-06-24 09:44:06 +0800144 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address);
Bob Mooree38e8a02008-06-13 08:28:55 +0800145 return (status);
146}
147
148/******************************************************************************
149 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 * FUNCTION: acpi_hw_clear_gpe
151 *
152 * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
153 *
154 * RETURN: Status
155 *
156 * DESCRIPTION: Clear the status bit for a single GPE.
157 *
158 ******************************************************************************/
159
Len Brown4be44fc2005-08-05 00:44:28 -0400160acpi_status acpi_hw_clear_gpe(struct acpi_gpe_event_info * gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200162 struct acpi_gpe_register_info *gpe_register_info;
Len Brown4be44fc2005-08-05 00:44:28 -0400163 acpi_status status;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200164 u32 register_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Len Brown4be44fc2005-08-05 00:44:28 -0400166 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200168 /* Get the info block for the entire GPE register */
169
170 gpe_register_info = gpe_event_info->register_info;
171 if (!gpe_register_info) {
172 return (AE_NOT_EXIST);
173 }
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /*
176 * Write a one to the appropriate bit in the status register to
177 * clear this GPE.
178 */
Feng Tang1d94e1e2012-08-17 11:10:02 +0800179 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
Lin Mingda503372010-12-13 13:39:37 +0800180
Bob Moorec6b57742009-06-24 09:44:06 +0800181 status = acpi_hw_write(register_bit,
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200182 &gpe_register_info->status_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 return (status);
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/******************************************************************************
188 *
189 * FUNCTION: acpi_hw_get_gpe_status
190 *
191 * PARAMETERS: gpe_event_info - Info block for the GPE to queried
192 * event_status - Where the GPE status is returned
193 *
194 * RETURN: Status
195 *
196 * DESCRIPTION: Return the status of a single GPE.
197 *
198 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400201acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
202 acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Len Brown4be44fc2005-08-05 00:44:28 -0400204 u32 in_byte;
Rafael J. Wysockie4e9a732010-06-08 10:48:26 +0200205 u32 register_bit;
Len Brown4be44fc2005-08-05 00:44:28 -0400206 struct acpi_gpe_register_info *gpe_register_info;
Len Brown4be44fc2005-08-05 00:44:28 -0400207 acpi_event_status local_event_status = 0;
Lin Mingda503372010-12-13 13:39:37 +0800208 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Len Brown4be44fc2005-08-05 00:44:28 -0400210 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if (!event_status) {
213 return (AE_BAD_PARAMETER);
214 }
215
216 /* Get the info block for the entire GPE register */
217
218 gpe_register_info = gpe_event_info->register_info;
219
220 /* Get the register bitmask for this GPE */
221
Feng Tang1d94e1e2012-08-17 11:10:02 +0800222 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* GPE currently enabled? (enabled for runtime?) */
225
226 if (register_bit & gpe_register_info->enable_for_run) {
227 local_event_status |= ACPI_EVENT_FLAG_ENABLED;
228 }
229
230 /* GPE enabled for wake? */
231
232 if (register_bit & gpe_register_info->enable_for_wake) {
233 local_event_status |= ACPI_EVENT_FLAG_WAKE_ENABLED;
234 }
235
236 /* GPE currently active (status bit == 1)? */
237
Bob Moorec6b57742009-06-24 09:44:06 +0800238 status = acpi_hw_read(&in_byte, &gpe_register_info->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400239 if (ACPI_FAILURE(status)) {
Bob Moore2147d3f2010-01-21 09:08:31 +0800240 return (status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 if (register_bit & in_byte) {
244 local_event_status |= ACPI_EVENT_FLAG_SET;
245 }
246
247 /* Set return value */
248
249 (*event_status) = local_event_status;
Bob Moore2147d3f2010-01-21 09:08:31 +0800250 return (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/******************************************************************************
254 *
255 * FUNCTION: acpi_hw_disable_gpe_block
256 *
257 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
258 * gpe_block - Gpe Block info
259 *
260 * RETURN: Status
261 *
Robert Moore44f6c012005-04-18 22:49:35 -0400262 * DESCRIPTION: Disable all GPEs within a single GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 *
264 ******************************************************************************/
265
266acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800267acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
268 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Len Brown4be44fc2005-08-05 00:44:28 -0400270 u32 i;
271 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /* Examine each GPE Register within the block */
274
275 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* Disable all GPEs in this register */
278
Bob Mooreecfbbc72008-12-31 02:55:32 +0800279 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800280 acpi_hw_write(0x00,
281 &gpe_block->register_info[i].enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400282 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return (status);
284 }
285 }
286
287 return (AE_OK);
288}
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/******************************************************************************
291 *
292 * FUNCTION: acpi_hw_clear_gpe_block
293 *
294 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
295 * gpe_block - Gpe Block info
296 *
297 * RETURN: Status
298 *
Robert Moore44f6c012005-04-18 22:49:35 -0400299 * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 *
301 ******************************************************************************/
302
303acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800304acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
305 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Len Brown4be44fc2005-08-05 00:44:28 -0400307 u32 i;
308 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* Examine each GPE Register within the block */
311
312 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* Clear status on all GPEs in this register */
315
Bob Mooreecfbbc72008-12-31 02:55:32 +0800316 status =
Bob Moorec6b57742009-06-24 09:44:06 +0800317 acpi_hw_write(0xFF,
318 &gpe_block->register_info[i].status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400319 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return (status);
321 }
322 }
323
324 return (AE_OK);
325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/******************************************************************************
328 *
329 * FUNCTION: acpi_hw_enable_runtime_gpe_block
330 *
331 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
332 * gpe_block - Gpe Block info
333 *
334 * RETURN: Status
335 *
Robert Moore44f6c012005-04-18 22:49:35 -0400336 * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
337 * combination wake/run GPEs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 *
339 ******************************************************************************/
340
341acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800342acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000343 struct acpi_gpe_block_info * gpe_block,
344 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Len Brown4be44fc2005-08-05 00:44:28 -0400346 u32 i;
347 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /* NOTE: assumes that all GPEs are currently disabled */
350
351 /* Examine each GPE Register within the block */
352
353 for (i = 0; i < gpe_block->register_count; i++) {
354 if (!gpe_block->register_info[i].enable_for_run) {
355 continue;
356 }
357
358 /* Enable all "runtime" GPEs in this register */
359
Bob Moorec6b57742009-06-24 09:44:06 +0800360 status =
361 acpi_hw_write(gpe_block->register_info[i].enable_for_run,
362 &gpe_block->register_info[i].enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400363 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return (status);
365 }
366 }
367
368 return (AE_OK);
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/******************************************************************************
372 *
373 * FUNCTION: acpi_hw_enable_wakeup_gpe_block
374 *
375 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
376 * gpe_block - Gpe Block info
377 *
378 * RETURN: Status
379 *
Robert Moore44f6c012005-04-18 22:49:35 -0400380 * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
381 * combination wake/run GPEs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *
383 ******************************************************************************/
384
Robert Moore44f6c012005-04-18 22:49:35 -0400385static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400386acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
Bob Mooree97d6bf2008-12-30 09:45:17 +0800387 struct acpi_gpe_block_info *gpe_block,
388 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Len Brown4be44fc2005-08-05 00:44:28 -0400390 u32 i;
391 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /* Examine each GPE Register within the block */
394
395 for (i = 0; i < gpe_block->register_count; i++) {
396 if (!gpe_block->register_info[i].enable_for_wake) {
397 continue;
398 }
399
400 /* Enable all "wake" GPEs in this register */
401
Bob Moorec6b57742009-06-24 09:44:06 +0800402 status =
403 acpi_hw_write(gpe_block->register_info[i].enable_for_wake,
404 &gpe_block->register_info[i].enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400405 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return (status);
407 }
408 }
409
410 return (AE_OK);
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/******************************************************************************
414 *
415 * FUNCTION: acpi_hw_disable_all_gpes
416 *
Robert Moore73459f72005-06-24 00:00:00 -0400417 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 *
419 * RETURN: Status
420 *
Robert Moore44f6c012005-04-18 22:49:35 -0400421 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 *
423 ******************************************************************************/
424
Len Brown4be44fc2005-08-05 00:44:28 -0400425acpi_status acpi_hw_disable_all_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Len Brown4be44fc2005-08-05 00:44:28 -0400427 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Bob Mooreb229cf92006-04-21 17:15:00 -0400429 ACPI_FUNCTION_TRACE(hw_disable_all_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Bob Mooree97d6bf2008-12-30 09:45:17 +0800431 status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block, NULL);
432 status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400433 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436/******************************************************************************
437 *
438 * FUNCTION: acpi_hw_enable_all_runtime_gpes
439 *
Robert Moore73459f72005-06-24 00:00:00 -0400440 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 *
442 * RETURN: Status
443 *
Robert Moore44f6c012005-04-18 22:49:35 -0400444 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 *
446 ******************************************************************************/
447
Len Brown4be44fc2005-08-05 00:44:28 -0400448acpi_status acpi_hw_enable_all_runtime_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Len Brown4be44fc2005-08-05 00:44:28 -0400450 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Bob Mooreb229cf92006-04-21 17:15:00 -0400452 ACPI_FUNCTION_TRACE(hw_enable_all_runtime_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Bob Mooree97d6bf2008-12-30 09:45:17 +0800454 status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400455 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458/******************************************************************************
459 *
460 * FUNCTION: acpi_hw_enable_all_wakeup_gpes
461 *
Robert Moore73459f72005-06-24 00:00:00 -0400462 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 *
464 * RETURN: Status
465 *
Robert Moore44f6c012005-04-18 22:49:35 -0400466 * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 *
468 ******************************************************************************/
469
Len Brown4be44fc2005-08-05 00:44:28 -0400470acpi_status acpi_hw_enable_all_wakeup_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Len Brown4be44fc2005-08-05 00:44:28 -0400472 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Bob Mooreb229cf92006-04-21 17:15:00 -0400474 ACPI_FUNCTION_TRACE(hw_enable_all_wakeup_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Bob Mooree97d6bf2008-12-30 09:45:17 +0800476 status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400477 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
Bob Moore33620c52012-02-14 18:14:27 +0800479
480#endif /* !ACPI_REDUCED_HARDWARE */