1 /******************************************************************************
3 * Module Name: hwgpe - Low level GPE enable/disable/clear functions
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
48 #define _COMPONENT ACPI_HARDWARE
49 ACPI_MODULE_NAME("hwgpe")
50 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
51 /* Local prototypes */
53 acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
54 struct acpi_gpe_block_info *gpe_block,
57 /******************************************************************************
59 * FUNCTION: acpi_hw_get_gpe_register_bit
61 * PARAMETERS: gpe_event_info - Info block for the GPE
63 * RETURN: Register mask with a one in the GPE bit position
65 * DESCRIPTION: Compute the register mask for this GPE. One bit is set in the
66 * correct position for the input GPE.
68 ******************************************************************************/
70 u32 acpi_hw_get_gpe_register_bit(struct acpi_gpe_event_info *gpe_event_info)
74 (gpe_event_info->gpe_number -
75 gpe_event_info->register_info->base_gpe_number));
78 /******************************************************************************
80 * FUNCTION: acpi_hw_low_set_gpe
82 * PARAMETERS: gpe_event_info - Info block for the GPE to be disabled
83 * action - Enable or disable
87 * DESCRIPTION: Enable or disable a single GPE in the parent enable register.
89 ******************************************************************************/
92 acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action)
94 struct acpi_gpe_register_info *gpe_register_info;
99 ACPI_FUNCTION_ENTRY();
101 /* Get the info block for the entire GPE register */
103 gpe_register_info = gpe_event_info->register_info;
104 if (!gpe_register_info) {
105 return (AE_NOT_EXIST);
108 /* Get current value of the enable register that contains this GPE */
110 status = acpi_hw_read(&enable_mask, &gpe_register_info->enable_address);
111 if (ACPI_FAILURE(status)) {
115 /* Set or clear just the bit that corresponds to this GPE */
117 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
119 case ACPI_GPE_CONDITIONAL_ENABLE:
121 /* Only enable if the enable_for_run bit is set */
123 if (!(register_bit & gpe_register_info->enable_for_run)) {
124 return (AE_BAD_PARAMETER);
127 /*lint -fallthrough */
129 case ACPI_GPE_ENABLE:
130 ACPI_SET_BIT(enable_mask, register_bit);
133 case ACPI_GPE_DISABLE:
134 ACPI_CLEAR_BIT(enable_mask, register_bit);
138 ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u", action));
139 return (AE_BAD_PARAMETER);
142 /* Write the updated enable mask */
144 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address);
148 /******************************************************************************
150 * FUNCTION: acpi_hw_clear_gpe
152 * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
156 * DESCRIPTION: Clear the status bit for a single GPE.
158 ******************************************************************************/
160 acpi_status acpi_hw_clear_gpe(struct acpi_gpe_event_info * gpe_event_info)
162 struct acpi_gpe_register_info *gpe_register_info;
166 ACPI_FUNCTION_ENTRY();
168 /* Get the info block for the entire GPE register */
170 gpe_register_info = gpe_event_info->register_info;
171 if (!gpe_register_info) {
172 return (AE_NOT_EXIST);
176 * Write a one to the appropriate bit in the status register to
179 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
181 status = acpi_hw_write(register_bit,
182 &gpe_register_info->status_address);
187 /******************************************************************************
189 * FUNCTION: acpi_hw_get_gpe_status
191 * PARAMETERS: gpe_event_info - Info block for the GPE to queried
192 * event_status - Where the GPE status is returned
196 * DESCRIPTION: Return the status of a single GPE.
198 ******************************************************************************/
201 acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
202 acpi_event_status * event_status)
206 struct acpi_gpe_register_info *gpe_register_info;
207 acpi_event_status local_event_status = 0;
210 ACPI_FUNCTION_ENTRY();
213 return (AE_BAD_PARAMETER);
216 /* Get the info block for the entire GPE register */
218 gpe_register_info = gpe_event_info->register_info;
220 /* Get the register bitmask for this GPE */
222 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
224 /* GPE currently enabled? (enabled for runtime?) */
226 if (register_bit & gpe_register_info->enable_for_run) {
227 local_event_status |= ACPI_EVENT_FLAG_ENABLED;
230 /* GPE enabled for wake? */
232 if (register_bit & gpe_register_info->enable_for_wake) {
233 local_event_status |= ACPI_EVENT_FLAG_WAKE_ENABLED;
236 /* GPE currently active (status bit == 1)? */
238 status = acpi_hw_read(&in_byte, &gpe_register_info->status_address);
239 if (ACPI_FAILURE(status)) {
243 if (register_bit & in_byte) {
244 local_event_status |= ACPI_EVENT_FLAG_SET;
247 /* Set return value */
249 (*event_status) = local_event_status;
253 /******************************************************************************
255 * FUNCTION: acpi_hw_disable_gpe_block
257 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
258 * gpe_block - Gpe Block info
262 * DESCRIPTION: Disable all GPEs within a single GPE block
264 ******************************************************************************/
267 acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
268 struct acpi_gpe_block_info *gpe_block, void *context)
273 /* Examine each GPE Register within the block */
275 for (i = 0; i < gpe_block->register_count; i++) {
277 /* Disable all GPEs in this register */
281 &gpe_block->register_info[i].enable_address);
282 if (ACPI_FAILURE(status)) {
290 /******************************************************************************
292 * FUNCTION: acpi_hw_clear_gpe_block
294 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
295 * gpe_block - Gpe Block info
299 * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
301 ******************************************************************************/
304 acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
305 struct acpi_gpe_block_info *gpe_block, void *context)
310 /* Examine each GPE Register within the block */
312 for (i = 0; i < gpe_block->register_count; i++) {
314 /* Clear status on all GPEs in this register */
318 &gpe_block->register_info[i].status_address);
319 if (ACPI_FAILURE(status)) {
327 /******************************************************************************
329 * FUNCTION: acpi_hw_enable_runtime_gpe_block
331 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
332 * gpe_block - Gpe Block info
336 * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
337 * combination wake/run GPEs.
339 ******************************************************************************/
342 acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
343 struct acpi_gpe_block_info * gpe_block,
349 /* NOTE: assumes that all GPEs are currently disabled */
351 /* Examine each GPE Register within the block */
353 for (i = 0; i < gpe_block->register_count; i++) {
354 if (!gpe_block->register_info[i].enable_for_run) {
358 /* Enable all "runtime" GPEs in this register */
361 acpi_hw_write(gpe_block->register_info[i].enable_for_run,
362 &gpe_block->register_info[i].enable_address);
363 if (ACPI_FAILURE(status)) {
371 /******************************************************************************
373 * FUNCTION: acpi_hw_enable_wakeup_gpe_block
375 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
376 * gpe_block - Gpe Block info
380 * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
381 * combination wake/run GPEs.
383 ******************************************************************************/
386 acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
387 struct acpi_gpe_block_info *gpe_block,
393 /* Examine each GPE Register within the block */
395 for (i = 0; i < gpe_block->register_count; i++) {
396 if (!gpe_block->register_info[i].enable_for_wake) {
400 /* Enable all "wake" GPEs in this register */
403 acpi_hw_write(gpe_block->register_info[i].enable_for_wake,
404 &gpe_block->register_info[i].enable_address);
405 if (ACPI_FAILURE(status)) {
413 /******************************************************************************
415 * FUNCTION: acpi_hw_disable_all_gpes
421 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
423 ******************************************************************************/
425 acpi_status acpi_hw_disable_all_gpes(void)
429 ACPI_FUNCTION_TRACE(hw_disable_all_gpes);
431 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);
433 return_ACPI_STATUS(status);
436 /******************************************************************************
438 * FUNCTION: acpi_hw_enable_all_runtime_gpes
444 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
446 ******************************************************************************/
448 acpi_status acpi_hw_enable_all_runtime_gpes(void)
452 ACPI_FUNCTION_TRACE(hw_enable_all_runtime_gpes);
454 status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL);
455 return_ACPI_STATUS(status);
458 /******************************************************************************
460 * FUNCTION: acpi_hw_enable_all_wakeup_gpes
466 * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
468 ******************************************************************************/
470 acpi_status acpi_hw_enable_all_wakeup_gpes(void)
474 ACPI_FUNCTION_TRACE(hw_enable_all_wakeup_gpes);
476 status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL);
477 return_ACPI_STATUS(status);
480 #endif /* !ACPI_REDUCED_HARDWARE */