1 /******************************************************************************
3 * Module Name: hwgpe - Low level GPE enable/disable/clear functions
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, 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
,
58 acpi_hw_gpe_enable_write(u8 enable_mask
,
59 struct acpi_gpe_register_info
*gpe_register_info
);
61 /******************************************************************************
63 * FUNCTION: acpi_hw_get_gpe_register_bit
65 * PARAMETERS: gpe_event_info - Info block for the GPE
67 * RETURN: Register mask with a one in the GPE bit position
69 * DESCRIPTION: Compute the register mask for this GPE. One bit is set in the
70 * correct position for the input GPE.
72 ******************************************************************************/
74 u32
acpi_hw_get_gpe_register_bit(struct acpi_gpe_event_info
*gpe_event_info
)
78 (gpe_event_info
->gpe_number
-
79 gpe_event_info
->register_info
->base_gpe_number
));
82 /******************************************************************************
84 * FUNCTION: acpi_hw_low_set_gpe
86 * PARAMETERS: gpe_event_info - Info block for the GPE to be disabled
87 * action - Enable or disable
91 * DESCRIPTION: Enable or disable a single GPE in the parent enable register.
92 * The enable_mask field of the involved GPE register must be
93 * updated by the caller if necessary.
95 ******************************************************************************/
98 acpi_hw_low_set_gpe(struct acpi_gpe_event_info
*gpe_event_info
, u32 action
)
100 struct acpi_gpe_register_info
*gpe_register_info
;
105 ACPI_FUNCTION_ENTRY();
107 /* Get the info block for the entire GPE register */
109 gpe_register_info
= gpe_event_info
->register_info
;
110 if (!gpe_register_info
) {
111 return (AE_NOT_EXIST
);
114 /* Get current value of the enable register that contains this GPE */
116 status
= acpi_hw_read(&enable_mask
, &gpe_register_info
->enable_address
);
117 if (ACPI_FAILURE(status
)) {
121 /* Set or clear just the bit that corresponds to this GPE */
123 register_bit
= acpi_hw_get_gpe_register_bit(gpe_event_info
);
125 case ACPI_GPE_CONDITIONAL_ENABLE
:
127 /* Only enable if the corresponding enable_mask bit is set */
129 if (!(register_bit
& gpe_register_info
->enable_mask
)) {
130 return (AE_BAD_PARAMETER
);
133 /*lint -fallthrough */
135 case ACPI_GPE_ENABLE
:
137 ACPI_SET_BIT(enable_mask
, register_bit
);
140 case ACPI_GPE_DISABLE
:
142 ACPI_CLEAR_BIT(enable_mask
, register_bit
);
147 ACPI_ERROR((AE_INFO
, "Invalid GPE Action, %u", action
));
148 return (AE_BAD_PARAMETER
);
151 /* Write the updated enable mask */
153 status
= acpi_hw_write(enable_mask
, &gpe_register_info
->enable_address
);
157 /******************************************************************************
159 * FUNCTION: acpi_hw_clear_gpe
161 * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
165 * DESCRIPTION: Clear the status bit for a single GPE.
167 ******************************************************************************/
169 acpi_status
acpi_hw_clear_gpe(struct acpi_gpe_event_info
* gpe_event_info
)
171 struct acpi_gpe_register_info
*gpe_register_info
;
175 ACPI_FUNCTION_ENTRY();
177 /* Get the info block for the entire GPE register */
179 gpe_register_info
= gpe_event_info
->register_info
;
180 if (!gpe_register_info
) {
181 return (AE_NOT_EXIST
);
185 * Write a one to the appropriate bit in the status register to
188 register_bit
= acpi_hw_get_gpe_register_bit(gpe_event_info
);
191 acpi_hw_write(register_bit
, &gpe_register_info
->status_address
);
195 /******************************************************************************
197 * FUNCTION: acpi_hw_get_gpe_status
199 * PARAMETERS: gpe_event_info - Info block for the GPE to queried
200 * event_status - Where the GPE status is returned
204 * DESCRIPTION: Return the status of a single GPE.
206 ******************************************************************************/
209 acpi_hw_get_gpe_status(struct acpi_gpe_event_info
* gpe_event_info
,
210 acpi_event_status
*event_status
)
214 struct acpi_gpe_register_info
*gpe_register_info
;
215 acpi_event_status local_event_status
= 0;
218 ACPI_FUNCTION_ENTRY();
221 return (AE_BAD_PARAMETER
);
224 /* GPE currently handled? */
226 if (ACPI_GPE_DISPATCH_TYPE(gpe_event_info
->flags
) !=
227 ACPI_GPE_DISPATCH_NONE
) {
228 local_event_status
|= ACPI_EVENT_FLAG_HAS_HANDLER
;
231 /* Get the info block for the entire GPE register */
233 gpe_register_info
= gpe_event_info
->register_info
;
235 /* Get the register bitmask for this GPE */
237 register_bit
= acpi_hw_get_gpe_register_bit(gpe_event_info
);
239 /* GPE currently enabled? (enabled for runtime?) */
241 if (register_bit
& gpe_register_info
->enable_for_run
) {
242 local_event_status
|= ACPI_EVENT_FLAG_ENABLED
;
245 /* GPE enabled for wake? */
247 if (register_bit
& gpe_register_info
->enable_for_wake
) {
248 local_event_status
|= ACPI_EVENT_FLAG_WAKE_ENABLED
;
251 /* GPE currently enabled (enable bit == 1)? */
253 status
= acpi_hw_read(&in_byte
, &gpe_register_info
->enable_address
);
254 if (ACPI_FAILURE(status
)) {
258 if (register_bit
& in_byte
) {
259 local_event_status
|= ACPI_EVENT_FLAG_ENABLE_SET
;
262 /* GPE currently active (status bit == 1)? */
264 status
= acpi_hw_read(&in_byte
, &gpe_register_info
->status_address
);
265 if (ACPI_FAILURE(status
)) {
269 if (register_bit
& in_byte
) {
270 local_event_status
|= ACPI_EVENT_FLAG_STATUS_SET
;
273 /* Set return value */
275 (*event_status
) = local_event_status
;
279 /******************************************************************************
281 * FUNCTION: acpi_hw_gpe_enable_write
283 * PARAMETERS: enable_mask - Bit mask to write to the GPE register
284 * gpe_register_info - Gpe Register info
288 * DESCRIPTION: Write the enable mask byte to the given GPE register.
290 ******************************************************************************/
293 acpi_hw_gpe_enable_write(u8 enable_mask
,
294 struct acpi_gpe_register_info
*gpe_register_info
)
298 gpe_register_info
->enable_mask
= enable_mask
;
300 status
= acpi_hw_write(enable_mask
, &gpe_register_info
->enable_address
);
304 /******************************************************************************
306 * FUNCTION: acpi_hw_disable_gpe_block
308 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
309 * gpe_block - Gpe Block info
313 * DESCRIPTION: Disable all GPEs within a single GPE block
315 ******************************************************************************/
318 acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info
*gpe_xrupt_info
,
319 struct acpi_gpe_block_info
*gpe_block
, void *context
)
324 /* Examine each GPE Register within the block */
326 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
328 /* Disable all GPEs in this register */
331 acpi_hw_gpe_enable_write(0x00,
332 &gpe_block
->register_info
[i
]);
333 if (ACPI_FAILURE(status
)) {
341 /******************************************************************************
343 * FUNCTION: acpi_hw_clear_gpe_block
345 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
346 * gpe_block - Gpe Block info
350 * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
352 ******************************************************************************/
355 acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info
*gpe_xrupt_info
,
356 struct acpi_gpe_block_info
*gpe_block
, void *context
)
361 /* Examine each GPE Register within the block */
363 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
365 /* Clear status on all GPEs in this register */
369 &gpe_block
->register_info
[i
].status_address
);
370 if (ACPI_FAILURE(status
)) {
378 /******************************************************************************
380 * FUNCTION: acpi_hw_enable_runtime_gpe_block
382 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
383 * gpe_block - Gpe Block info
387 * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
388 * combination wake/run GPEs.
390 ******************************************************************************/
393 acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info
*gpe_xrupt_info
,
394 struct acpi_gpe_block_info
* gpe_block
,
399 struct acpi_gpe_register_info
*gpe_register_info
;
401 /* NOTE: assumes that all GPEs are currently disabled */
403 /* Examine each GPE Register within the block */
405 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
406 gpe_register_info
= &gpe_block
->register_info
[i
];
407 if (!gpe_register_info
->enable_for_run
) {
411 /* Enable all "runtime" GPEs in this register */
414 acpi_hw_gpe_enable_write(gpe_register_info
->enable_for_run
,
416 if (ACPI_FAILURE(status
)) {
424 /******************************************************************************
426 * FUNCTION: acpi_hw_enable_wakeup_gpe_block
428 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
429 * gpe_block - Gpe Block info
433 * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
434 * combination wake/run GPEs.
436 ******************************************************************************/
439 acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info
*gpe_xrupt_info
,
440 struct acpi_gpe_block_info
*gpe_block
,
445 struct acpi_gpe_register_info
*gpe_register_info
;
447 /* Examine each GPE Register within the block */
449 for (i
= 0; i
< gpe_block
->register_count
; i
++) {
450 gpe_register_info
= &gpe_block
->register_info
[i
];
453 * Enable all "wake" GPEs in this register and disable the
458 acpi_hw_gpe_enable_write(gpe_register_info
->enable_for_wake
,
460 if (ACPI_FAILURE(status
)) {
468 /******************************************************************************
470 * FUNCTION: acpi_hw_disable_all_gpes
476 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
478 ******************************************************************************/
480 acpi_status
acpi_hw_disable_all_gpes(void)
484 ACPI_FUNCTION_TRACE(hw_disable_all_gpes
);
486 status
= acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block
, NULL
);
487 status
= acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block
, NULL
);
488 return_ACPI_STATUS(status
);
491 /******************************************************************************
493 * FUNCTION: acpi_hw_enable_all_runtime_gpes
499 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
501 ******************************************************************************/
503 acpi_status
acpi_hw_enable_all_runtime_gpes(void)
507 ACPI_FUNCTION_TRACE(hw_enable_all_runtime_gpes
);
509 status
= acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block
, NULL
);
510 return_ACPI_STATUS(status
);
513 /******************************************************************************
515 * FUNCTION: acpi_hw_enable_all_wakeup_gpes
521 * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
523 ******************************************************************************/
525 acpi_status
acpi_hw_enable_all_wakeup_gpes(void)
529 ACPI_FUNCTION_TRACE(hw_enable_all_wakeup_gpes
);
531 status
= acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block
, NULL
);
532 return_ACPI_STATUS(status
);
535 #endif /* !ACPI_REDUCED_HARDWARE */