usb: fix a typo in a comment
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / acpica / hwgpe.c
blobf610d88a66be86b823f6ceed6abd7e2876c3a81e
2 /******************************************************************************
4 * Module Name: hwgpe - Low level GPE enable/disable/clear functions
6 *****************************************************************************/
8 /*
9 * Copyright (C) 2000 - 2011, Intel Corp.
10 * All rights reserved.
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.
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.
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.
45 #include <acpi/acpi.h>
46 #include "accommon.h"
47 #include "acevents.h"
49 #define _COMPONENT ACPI_HARDWARE
50 ACPI_MODULE_NAME("hwgpe")
52 /* Local prototypes */
53 static acpi_status
54 acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
55 struct acpi_gpe_block_info *gpe_block,
56 void *context);
58 /******************************************************************************
60 * FUNCTION: acpi_hw_get_gpe_register_bit
62 * PARAMETERS: gpe_event_info - Info block for the GPE
63 * gpe_register_info - Info block for the GPE register
65 * RETURN: Register mask with a one in the GPE bit position
67 * DESCRIPTION: Compute the register mask for this GPE. One bit is set in the
68 * correct position for the input GPE.
70 ******************************************************************************/
72 u32 acpi_hw_get_gpe_register_bit(struct acpi_gpe_event_info *gpe_event_info,
73 struct acpi_gpe_register_info *gpe_register_info)
75 return (u32)1 << (gpe_event_info->gpe_number -
76 gpe_register_info->base_gpe_number);
79 /******************************************************************************
81 * FUNCTION: acpi_hw_low_set_gpe
83 * PARAMETERS: gpe_event_info - Info block for the GPE to be disabled
84 * action - Enable or disable
86 * RETURN: Status
88 * DESCRIPTION: Enable or disable a single GPE in the parent enable register.
90 ******************************************************************************/
92 acpi_status
93 acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action)
95 struct acpi_gpe_register_info *gpe_register_info;
96 acpi_status status;
97 u32 enable_mask;
98 u32 register_bit;
100 ACPI_FUNCTION_ENTRY();
102 /* Get the info block for the entire GPE register */
104 gpe_register_info = gpe_event_info->register_info;
105 if (!gpe_register_info) {
106 return (AE_NOT_EXIST);
109 /* Get current value of the enable register that contains this GPE */
111 status = acpi_hw_read(&enable_mask, &gpe_register_info->enable_address);
112 if (ACPI_FAILURE(status)) {
113 return (status);
116 /* Set or clear just the bit that corresponds to this GPE */
118 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info,
119 gpe_register_info);
120 switch (action) {
121 case ACPI_GPE_CONDITIONAL_ENABLE:
123 /* Only enable if the enable_for_run bit is set */
125 if (!(register_bit & gpe_register_info->enable_for_run)) {
126 return (AE_BAD_PARAMETER);
129 /*lint -fallthrough */
131 case ACPI_GPE_ENABLE:
132 ACPI_SET_BIT(enable_mask, register_bit);
133 break;
135 case ACPI_GPE_DISABLE:
136 ACPI_CLEAR_BIT(enable_mask, register_bit);
137 break;
139 default:
140 ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u\n", action));
141 return (AE_BAD_PARAMETER);
144 /* Write the updated enable mask */
146 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address);
147 return (status);
150 /******************************************************************************
152 * FUNCTION: acpi_hw_clear_gpe
154 * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
156 * RETURN: Status
158 * DESCRIPTION: Clear the status bit for a single GPE.
160 ******************************************************************************/
162 acpi_status acpi_hw_clear_gpe(struct acpi_gpe_event_info * gpe_event_info)
164 struct acpi_gpe_register_info *gpe_register_info;
165 acpi_status status;
166 u32 register_bit;
168 ACPI_FUNCTION_ENTRY();
170 /* Get the info block for the entire GPE register */
172 gpe_register_info = gpe_event_info->register_info;
173 if (!gpe_register_info) {
174 return (AE_NOT_EXIST);
178 * Write a one to the appropriate bit in the status register to
179 * clear this GPE.
181 register_bit =
182 acpi_hw_get_gpe_register_bit(gpe_event_info, gpe_register_info);
184 status = acpi_hw_write(register_bit,
185 &gpe_register_info->status_address);
187 return (status);
190 /******************************************************************************
192 * FUNCTION: acpi_hw_get_gpe_status
194 * PARAMETERS: gpe_event_info - Info block for the GPE to queried
195 * event_status - Where the GPE status is returned
197 * RETURN: Status
199 * DESCRIPTION: Return the status of a single GPE.
201 ******************************************************************************/
203 acpi_status
204 acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
205 acpi_event_status * event_status)
207 u32 in_byte;
208 u32 register_bit;
209 struct acpi_gpe_register_info *gpe_register_info;
210 acpi_event_status local_event_status = 0;
211 acpi_status status;
213 ACPI_FUNCTION_ENTRY();
215 if (!event_status) {
216 return (AE_BAD_PARAMETER);
219 /* Get the info block for the entire GPE register */
221 gpe_register_info = gpe_event_info->register_info;
223 /* Get the register bitmask for this GPE */
225 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info,
226 gpe_register_info);
228 /* GPE currently enabled? (enabled for runtime?) */
230 if (register_bit & gpe_register_info->enable_for_run) {
231 local_event_status |= ACPI_EVENT_FLAG_ENABLED;
234 /* GPE enabled for wake? */
236 if (register_bit & gpe_register_info->enable_for_wake) {
237 local_event_status |= ACPI_EVENT_FLAG_WAKE_ENABLED;
240 /* GPE currently active (status bit == 1)? */
242 status = acpi_hw_read(&in_byte, &gpe_register_info->status_address);
243 if (ACPI_FAILURE(status)) {
244 return (status);
247 if (register_bit & in_byte) {
248 local_event_status |= ACPI_EVENT_FLAG_SET;
251 /* Set return value */
253 (*event_status) = local_event_status;
254 return (AE_OK);
257 /******************************************************************************
259 * FUNCTION: acpi_hw_disable_gpe_block
261 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
262 * gpe_block - Gpe Block info
264 * RETURN: Status
266 * DESCRIPTION: Disable all GPEs within a single GPE block
268 ******************************************************************************/
270 acpi_status
271 acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
272 struct acpi_gpe_block_info *gpe_block, void *context)
274 u32 i;
275 acpi_status status;
277 /* Examine each GPE Register within the block */
279 for (i = 0; i < gpe_block->register_count; i++) {
281 /* Disable all GPEs in this register */
283 status =
284 acpi_hw_write(0x00,
285 &gpe_block->register_info[i].enable_address);
286 if (ACPI_FAILURE(status)) {
287 return (status);
291 return (AE_OK);
294 /******************************************************************************
296 * FUNCTION: acpi_hw_clear_gpe_block
298 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
299 * gpe_block - Gpe Block info
301 * RETURN: Status
303 * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
305 ******************************************************************************/
307 acpi_status
308 acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
309 struct acpi_gpe_block_info *gpe_block, void *context)
311 u32 i;
312 acpi_status status;
314 /* Examine each GPE Register within the block */
316 for (i = 0; i < gpe_block->register_count; i++) {
318 /* Clear status on all GPEs in this register */
320 status =
321 acpi_hw_write(0xFF,
322 &gpe_block->register_info[i].status_address);
323 if (ACPI_FAILURE(status)) {
324 return (status);
328 return (AE_OK);
331 /******************************************************************************
333 * FUNCTION: acpi_hw_enable_runtime_gpe_block
335 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
336 * gpe_block - Gpe Block info
338 * RETURN: Status
340 * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
341 * combination wake/run GPEs.
343 ******************************************************************************/
345 acpi_status
346 acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
347 struct acpi_gpe_block_info *gpe_block, void *context)
349 u32 i;
350 acpi_status status;
352 /* NOTE: assumes that all GPEs are currently disabled */
354 /* Examine each GPE Register within the block */
356 for (i = 0; i < gpe_block->register_count; i++) {
357 if (!gpe_block->register_info[i].enable_for_run) {
358 continue;
361 /* Enable all "runtime" GPEs in this register */
363 status =
364 acpi_hw_write(gpe_block->register_info[i].enable_for_run,
365 &gpe_block->register_info[i].enable_address);
366 if (ACPI_FAILURE(status)) {
367 return (status);
371 return (AE_OK);
374 /******************************************************************************
376 * FUNCTION: acpi_hw_enable_wakeup_gpe_block
378 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
379 * gpe_block - Gpe Block info
381 * RETURN: Status
383 * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
384 * combination wake/run GPEs.
386 ******************************************************************************/
388 static acpi_status
389 acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
390 struct acpi_gpe_block_info *gpe_block,
391 void *context)
393 u32 i;
394 acpi_status status;
396 /* Examine each GPE Register within the block */
398 for (i = 0; i < gpe_block->register_count; i++) {
399 if (!gpe_block->register_info[i].enable_for_wake) {
400 continue;
403 /* Enable all "wake" GPEs in this register */
405 status =
406 acpi_hw_write(gpe_block->register_info[i].enable_for_wake,
407 &gpe_block->register_info[i].enable_address);
408 if (ACPI_FAILURE(status)) {
409 return (status);
413 return (AE_OK);
416 /******************************************************************************
418 * FUNCTION: acpi_hw_disable_all_gpes
420 * PARAMETERS: None
422 * RETURN: Status
424 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
426 ******************************************************************************/
428 acpi_status acpi_hw_disable_all_gpes(void)
430 acpi_status status;
432 ACPI_FUNCTION_TRACE(hw_disable_all_gpes);
434 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);
436 return_ACPI_STATUS(status);
439 /******************************************************************************
441 * FUNCTION: acpi_hw_enable_all_runtime_gpes
443 * PARAMETERS: None
445 * RETURN: Status
447 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
449 ******************************************************************************/
451 acpi_status acpi_hw_enable_all_runtime_gpes(void)
453 acpi_status status;
455 ACPI_FUNCTION_TRACE(hw_enable_all_runtime_gpes);
457 status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL);
458 return_ACPI_STATUS(status);
461 /******************************************************************************
463 * FUNCTION: acpi_hw_enable_all_wakeup_gpes
465 * PARAMETERS: None
467 * RETURN: Status
469 * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
471 ******************************************************************************/
473 acpi_status acpi_hw_enable_all_wakeup_gpes(void)
475 acpi_status status;
477 ACPI_FUNCTION_TRACE(hw_enable_all_wakeup_gpes);
479 status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL);
480 return_ACPI_STATUS(status);