x86/boot: Rename overlapping memcpy() to memmove()
[linux/fpc-iii.git] / drivers / acpi / acpica / hwgpe.c
blob1c4f4518611a7211881dac61d2d8f99736288b6b
1 /******************************************************************************
3 * Module Name: hwgpe - Low level GPE enable/disable/clear functions
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2016, Intel Corp.
9 * All rights reserved.
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.
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.
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.
44 #include <acpi/acpi.h>
45 #include "accommon.h"
46 #include "acevents.h"
48 #define _COMPONENT ACPI_HARDWARE
49 ACPI_MODULE_NAME("hwgpe")
50 #if (!ACPI_REDUCED_HARDWARE) /* Entire module */
51 /* Local prototypes */
52 static acpi_status
53 acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
54 struct acpi_gpe_block_info *gpe_block,
55 void *context);
57 static acpi_status
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)
77 return ((u32)1 <<
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
89 * RETURN: Status
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 ******************************************************************************/
97 acpi_status
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;
101 acpi_status status;
102 u32 enable_mask;
103 u32 register_bit;
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)) {
118 return (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);
124 switch (action) {
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);
138 break;
140 case ACPI_GPE_DISABLE:
142 ACPI_CLEAR_BIT(enable_mask, register_bit);
143 break;
145 default:
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);
154 return (status);
157 /******************************************************************************
159 * FUNCTION: acpi_hw_clear_gpe
161 * PARAMETERS: gpe_event_info - Info block for the GPE to be cleared
163 * RETURN: Status
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;
172 acpi_status status;
173 u32 register_bit;
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
186 * clear this GPE.
188 register_bit = acpi_hw_get_gpe_register_bit(gpe_event_info);
190 status =
191 acpi_hw_write(register_bit, &gpe_register_info->status_address);
192 return (status);
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
202 * RETURN: Status
204 * DESCRIPTION: Return the status of a single GPE.
206 ******************************************************************************/
208 acpi_status
209 acpi_hw_get_gpe_status(struct acpi_gpe_event_info * gpe_event_info,
210 acpi_event_status *event_status)
212 u32 in_byte;
213 u32 register_bit;
214 struct acpi_gpe_register_info *gpe_register_info;
215 acpi_event_status local_event_status = 0;
216 acpi_status status;
218 ACPI_FUNCTION_ENTRY();
220 if (!event_status) {
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)) {
255 return (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)) {
266 return (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;
276 return (AE_OK);
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
286 * RETURN: Status
288 * DESCRIPTION: Write the enable mask byte to the given GPE register.
290 ******************************************************************************/
292 static acpi_status
293 acpi_hw_gpe_enable_write(u8 enable_mask,
294 struct acpi_gpe_register_info *gpe_register_info)
296 acpi_status status;
298 gpe_register_info->enable_mask = enable_mask;
300 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address);
301 return (status);
304 /******************************************************************************
306 * FUNCTION: acpi_hw_disable_gpe_block
308 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
309 * gpe_block - Gpe Block info
311 * RETURN: Status
313 * DESCRIPTION: Disable all GPEs within a single GPE block
315 ******************************************************************************/
317 acpi_status
318 acpi_hw_disable_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
319 struct acpi_gpe_block_info *gpe_block, void *context)
321 u32 i;
322 acpi_status status;
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 */
330 status =
331 acpi_hw_gpe_enable_write(0x00,
332 &gpe_block->register_info[i]);
333 if (ACPI_FAILURE(status)) {
334 return (status);
338 return (AE_OK);
341 /******************************************************************************
343 * FUNCTION: acpi_hw_clear_gpe_block
345 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
346 * gpe_block - Gpe Block info
348 * RETURN: Status
350 * DESCRIPTION: Clear status bits for all GPEs within a single GPE block
352 ******************************************************************************/
354 acpi_status
355 acpi_hw_clear_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
356 struct acpi_gpe_block_info *gpe_block, void *context)
358 u32 i;
359 acpi_status status;
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 */
367 status =
368 acpi_hw_write(0xFF,
369 &gpe_block->register_info[i].status_address);
370 if (ACPI_FAILURE(status)) {
371 return (status);
375 return (AE_OK);
378 /******************************************************************************
380 * FUNCTION: acpi_hw_enable_runtime_gpe_block
382 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
383 * gpe_block - Gpe Block info
385 * RETURN: Status
387 * DESCRIPTION: Enable all "runtime" GPEs within a single GPE block. Includes
388 * combination wake/run GPEs.
390 ******************************************************************************/
392 acpi_status
393 acpi_hw_enable_runtime_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
394 struct acpi_gpe_block_info * gpe_block,
395 void *context)
397 u32 i;
398 acpi_status status;
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) {
408 continue;
411 /* Enable all "runtime" GPEs in this register */
413 status =
414 acpi_hw_gpe_enable_write(gpe_register_info->enable_for_run,
415 gpe_register_info);
416 if (ACPI_FAILURE(status)) {
417 return (status);
421 return (AE_OK);
424 /******************************************************************************
426 * FUNCTION: acpi_hw_enable_wakeup_gpe_block
428 * PARAMETERS: gpe_xrupt_info - GPE Interrupt info
429 * gpe_block - Gpe Block info
431 * RETURN: Status
433 * DESCRIPTION: Enable all "wake" GPEs within a single GPE block. Includes
434 * combination wake/run GPEs.
436 ******************************************************************************/
438 static acpi_status
439 acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
440 struct acpi_gpe_block_info *gpe_block,
441 void *context)
443 u32 i;
444 acpi_status status;
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
454 * remaining ones.
457 status =
458 acpi_hw_gpe_enable_write(gpe_register_info->enable_for_wake,
459 gpe_register_info);
460 if (ACPI_FAILURE(status)) {
461 return (status);
465 return (AE_OK);
468 /******************************************************************************
470 * FUNCTION: acpi_hw_disable_all_gpes
472 * PARAMETERS: None
474 * RETURN: Status
476 * DESCRIPTION: Disable and clear all GPEs in all GPE blocks
478 ******************************************************************************/
480 acpi_status acpi_hw_disable_all_gpes(void)
482 acpi_status status;
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
495 * PARAMETERS: None
497 * RETURN: Status
499 * DESCRIPTION: Enable all "runtime" GPEs, in all GPE blocks
501 ******************************************************************************/
503 acpi_status acpi_hw_enable_all_runtime_gpes(void)
505 acpi_status status;
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
517 * PARAMETERS: None
519 * RETURN: Status
521 * DESCRIPTION: Enable all "wakeup" GPEs, in all GPE blocks
523 ******************************************************************************/
525 acpi_status acpi_hw_enable_all_wakeup_gpes(void)
527 acpi_status status;
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 */