blob: 2013b66745d2c90cf1edb48317cb1235c605e89e [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/*
Len Brown75a44ce2008-04-23 23:00:13 -04009 * Copyright (C) 2000 - 2008, 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 *
Bob Mooree38e8a02008-06-13 08:28:55 +080060 * FUNCTION: acpi_hw_low_disable_gpe
61 *
62 * PARAMETERS: gpe_event_info - Info block for the GPE to be disabled
63 *
64 * RETURN: Status
65 *
66 * DESCRIPTION: Disable a single GPE in the enable register.
67 *
68 ******************************************************************************/
69
70acpi_status acpi_hw_low_disable_gpe(struct acpi_gpe_event_info *gpe_event_info)
71{
72 struct acpi_gpe_register_info *gpe_register_info;
73 acpi_status status;
74 u32 enable_mask;
75
76 /* Get the info block for the entire GPE register */
77
78 gpe_register_info = gpe_event_info->register_info;
79 if (!gpe_register_info) {
80 return (AE_NOT_EXIST);
81 }
82
83 /* Get current value of the enable register that contains this GPE */
84
Bob Mooreecfbbc72008-12-31 02:55:32 +080085 status = acpi_read(&enable_mask, &gpe_register_info->enable_address);
Bob Mooree38e8a02008-06-13 08:28:55 +080086 if (ACPI_FAILURE(status)) {
87 return (status);
88 }
89
90 /* Clear just the bit that corresponds to this GPE */
91
92 ACPI_CLEAR_BIT(enable_mask,
93 ((u32) 1 <<
94 (gpe_event_info->gpe_number -
95 gpe_register_info->base_gpe_number)));
96
97 /* Write the updated enable mask */
98
Bob Mooreecfbbc72008-12-31 02:55:32 +080099 status = acpi_write(enable_mask, &gpe_register_info->enable_address);
Bob Mooree38e8a02008-06-13 08:28:55 +0800100 return (status);
101}
102
103/******************************************************************************
104 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * FUNCTION: acpi_hw_write_gpe_enable_reg
106 *
107 * PARAMETERS: gpe_event_info - Info block for the GPE to be enabled
108 *
109 * RETURN: Status
110 *
111 * DESCRIPTION: Write a GPE enable register. Note: The bit for this GPE must
112 * already be cleared or set in the parent register
113 * enable_for_run mask.
114 *
115 ******************************************************************************/
116
117acpi_status
Bob Mooree38e8a02008-06-13 08:28:55 +0800118acpi_hw_write_gpe_enable_reg(struct acpi_gpe_event_info * gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Len Brown4be44fc2005-08-05 00:44:28 -0400120 struct acpi_gpe_register_info *gpe_register_info;
121 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Len Brown4be44fc2005-08-05 00:44:28 -0400123 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 /* Get the info block for the entire GPE register */
126
127 gpe_register_info = gpe_event_info->register_info;
128 if (!gpe_register_info) {
129 return (AE_NOT_EXIST);
130 }
131
132 /* Write the entire GPE (runtime) enable register */
133
Bob Mooreecfbbc72008-12-31 02:55:32 +0800134 status = acpi_write(gpe_register_info->enable_for_run,
135 &gpe_register_info->enable_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 return (status);
138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/******************************************************************************
141 *
142 * FUNCTION: acpi_hw_clear_gpe
143 *
144 * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
145 *
146 * RETURN: Status
147 *
148 * DESCRIPTION: Clear the status bit for a single GPE.
149 *
150 ******************************************************************************/
151
Len Brown4be44fc2005-08-05 00:44:28 -0400152acpi_status acpi_hw_clear_gpe(struct acpi_gpe_event_info * gpe_event_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Len Brown4be44fc2005-08-05 00:44:28 -0400154 acpi_status status;
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300155 u8 register_bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Len Brown4be44fc2005-08-05 00:44:28 -0400157 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300159 register_bit = (u8)
160 (1 <<
161 (gpe_event_info->gpe_number -
162 gpe_event_info->register_info->base_gpe_number));
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /*
165 * Write a one to the appropriate bit in the status register to
166 * clear this GPE.
167 */
Bob Mooreecfbbc72008-12-31 02:55:32 +0800168 status = acpi_write(register_bit,
169 &gpe_event_info->register_info->status_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 return (status);
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/******************************************************************************
175 *
176 * FUNCTION: acpi_hw_get_gpe_status
177 *
178 * PARAMETERS: gpe_event_info - Info block for the GPE to queried
179 * event_status - Where the GPE status is returned
180 *
181 * RETURN: Status
182 *
183 * DESCRIPTION: Return the status of a single GPE.
184 *
185 ******************************************************************************/
Robert Moore44f6c012005-04-18 22:49:35 -0400186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400188acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
189 acpi_event_status * event_status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Len Brown4be44fc2005-08-05 00:44:28 -0400191 u32 in_byte;
192 u8 register_bit;
193 struct acpi_gpe_register_info *gpe_register_info;
194 acpi_status status;
195 acpi_event_status local_event_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Len Brown4be44fc2005-08-05 00:44:28 -0400197 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (!event_status) {
200 return (AE_BAD_PARAMETER);
201 }
202
203 /* Get the info block for the entire GPE register */
204
205 gpe_register_info = gpe_event_info->register_info;
206
207 /* Get the register bitmask for this GPE */
208
Alexey Starikovskiy69874162007-02-02 19:48:19 +0300209 register_bit = (u8)
210 (1 <<
211 (gpe_event_info->gpe_number -
212 gpe_event_info->register_info->base_gpe_number));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /* GPE currently enabled? (enabled for runtime?) */
215
216 if (register_bit & gpe_register_info->enable_for_run) {
217 local_event_status |= ACPI_EVENT_FLAG_ENABLED;
218 }
219
220 /* GPE enabled for wake? */
221
222 if (register_bit & gpe_register_info->enable_for_wake) {
223 local_event_status |= ACPI_EVENT_FLAG_WAKE_ENABLED;
224 }
225
226 /* GPE currently active (status bit == 1)? */
227
Bob Mooreecfbbc72008-12-31 02:55:32 +0800228 status = acpi_read(&in_byte, &gpe_register_info->status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400229 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 goto unlock_and_exit;
231 }
232
233 if (register_bit & in_byte) {
234 local_event_status |= ACPI_EVENT_FLAG_SET;
235 }
236
237 /* Set return value */
238
239 (*event_status) = local_event_status;
240
Len Brown4be44fc2005-08-05 00:44:28 -0400241 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return (status);
243}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245/******************************************************************************
246 *
247 * FUNCTION: acpi_hw_disable_gpe_block
248 *
249 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
250 * gpe_block - Gpe Block info
251 *
252 * RETURN: Status
253 *
Robert Moore44f6c012005-04-18 22:49:35 -0400254 * DESCRIPTION: Disable all GPEs within a single GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
256 ******************************************************************************/
257
258acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800259acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
260 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Len Brown4be44fc2005-08-05 00:44:28 -0400262 u32 i;
263 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /* Examine each GPE Register within the block */
266
267 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* Disable all GPEs in this register */
270
Bob Mooreecfbbc72008-12-31 02:55:32 +0800271 status =
272 acpi_write(0x00,
273 &gpe_block->register_info[i].enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400274 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return (status);
276 }
277 }
278
279 return (AE_OK);
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/******************************************************************************
283 *
284 * FUNCTION: acpi_hw_clear_gpe_block
285 *
286 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
287 * gpe_block - Gpe Block info
288 *
289 * RETURN: Status
290 *
Robert Moore44f6c012005-04-18 22:49:35 -0400291 * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 *
293 ******************************************************************************/
294
295acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800296acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
297 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Len Brown4be44fc2005-08-05 00:44:28 -0400299 u32 i;
300 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /* Examine each GPE Register within the block */
303
304 for (i = 0; i < gpe_block->register_count; i++) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* Clear status on all GPEs in this register */
307
Bob Mooreecfbbc72008-12-31 02:55:32 +0800308 status =
309 acpi_write(0xFF,
310 &gpe_block->register_info[i].status_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400311 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return (status);
313 }
314 }
315
316 return (AE_OK);
317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/******************************************************************************
320 *
321 * FUNCTION: acpi_hw_enable_runtime_gpe_block
322 *
323 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
324 * gpe_block - Gpe Block info
325 *
326 * RETURN: Status
327 *
Robert Moore44f6c012005-04-18 22:49:35 -0400328 * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
329 * combination wake/run GPEs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *
331 ******************************************************************************/
332
333acpi_status
Bob Mooree97d6bf2008-12-30 09:45:17 +0800334acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
335 struct acpi_gpe_block_info *gpe_block, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Len Brown4be44fc2005-08-05 00:44:28 -0400337 u32 i;
338 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /* NOTE: assumes that all GPEs are currently disabled */
341
342 /* Examine each GPE Register within the block */
343
344 for (i = 0; i < gpe_block->register_count; i++) {
345 if (!gpe_block->register_info[i].enable_for_run) {
346 continue;
347 }
348
349 /* Enable all "runtime" GPEs in this register */
350
Bob Mooreecfbbc72008-12-31 02:55:32 +0800351 status = acpi_write(gpe_block->register_info[i].enable_for_run,
352 &gpe_block->register_info[i].
353 enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400354 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return (status);
356 }
357 }
358
359 return (AE_OK);
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/******************************************************************************
363 *
364 * FUNCTION: acpi_hw_enable_wakeup_gpe_block
365 *
366 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
367 * gpe_block - Gpe Block info
368 *
369 * RETURN: Status
370 *
Robert Moore44f6c012005-04-18 22:49:35 -0400371 * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
372 * combination wake/run GPEs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 *
374 ******************************************************************************/
375
Robert Moore44f6c012005-04-18 22:49:35 -0400376static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400377acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
Bob Mooree97d6bf2008-12-30 09:45:17 +0800378 struct acpi_gpe_block_info *gpe_block,
379 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Len Brown4be44fc2005-08-05 00:44:28 -0400381 u32 i;
382 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* Examine each GPE Register within the block */
385
386 for (i = 0; i < gpe_block->register_count; i++) {
387 if (!gpe_block->register_info[i].enable_for_wake) {
388 continue;
389 }
390
391 /* Enable all "wake" GPEs in this register */
392
Bob Mooreecfbbc72008-12-31 02:55:32 +0800393 status = acpi_write(gpe_block->register_info[i].enable_for_wake,
394 &gpe_block->register_info[i].
395 enable_address);
Len Brown4be44fc2005-08-05 00:44:28 -0400396 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return (status);
398 }
399 }
400
401 return (AE_OK);
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/******************************************************************************
405 *
406 * FUNCTION: acpi_hw_disable_all_gpes
407 *
Robert Moore73459f72005-06-24 00:00:00 -0400408 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 *
410 * RETURN: Status
411 *
Robert Moore44f6c012005-04-18 22:49:35 -0400412 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 *
414 ******************************************************************************/
415
Len Brown4be44fc2005-08-05 00:44:28 -0400416acpi_status acpi_hw_disable_all_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Len Brown4be44fc2005-08-05 00:44:28 -0400418 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Bob Mooreb229cf92006-04-21 17:15:00 -0400420 ACPI_FUNCTION_TRACE(hw_disable_all_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Bob Mooree97d6bf2008-12-30 09:45:17 +0800422 status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block, NULL);
423 status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400424 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/******************************************************************************
428 *
429 * FUNCTION: acpi_hw_enable_all_runtime_gpes
430 *
Robert Moore73459f72005-06-24 00:00:00 -0400431 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
433 * RETURN: Status
434 *
Robert Moore44f6c012005-04-18 22:49:35 -0400435 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *
437 ******************************************************************************/
438
Len Brown4be44fc2005-08-05 00:44:28 -0400439acpi_status acpi_hw_enable_all_runtime_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Len Brown4be44fc2005-08-05 00:44:28 -0400441 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Bob Mooreb229cf92006-04-21 17:15:00 -0400443 ACPI_FUNCTION_TRACE(hw_enable_all_runtime_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Bob Mooree97d6bf2008-12-30 09:45:17 +0800445 status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400446 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/******************************************************************************
450 *
451 * FUNCTION: acpi_hw_enable_all_wakeup_gpes
452 *
Robert Moore73459f72005-06-24 00:00:00 -0400453 * PARAMETERS: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 *
455 * RETURN: Status
456 *
Robert Moore44f6c012005-04-18 22:49:35 -0400457 * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 *
459 ******************************************************************************/
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461acpi_status acpi_hw_enable_all_wakeup_gpes(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Len Brown4be44fc2005-08-05 00:44:28 -0400463 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Bob Mooreb229cf92006-04-21 17:15:00 -0400465 ACPI_FUNCTION_TRACE(hw_enable_all_wakeup_gpes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Bob Mooree97d6bf2008-12-30 09:45:17 +0800467 status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400468 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}