Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /****************************************************************************** |
| 3 | * |
| 4 | * Name: acevents.h - Event subcomponent prototypes and defines |
| 5 | * |
Bob Moore | 4441e55 | 2021-01-15 10:48:25 -0800 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2021, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 8 | *****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | #ifndef __ACEVENTS_H__ |
| 11 | #define __ACEVENTS_H__ |
| 12 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 13 | /* |
Erik Schmauss | 87cd826 | 2018-03-14 16:12:59 -0700 | [diff] [blame] | 14 | * Conditions to trigger post enabling GPE polling: |
| 15 | * It is not sufficient to trigger edge-triggered GPE with specific GPE |
| 16 | * chips, software need to poll once after enabling. |
| 17 | */ |
| 18 | #ifdef ACPI_USE_GPE_POLLING |
| 19 | #define ACPI_GPE_IS_POLLING_NEEDED(__gpe__) \ |
| 20 | ((__gpe__)->runtime_count == 1 && \ |
| 21 | (__gpe__)->flags & ACPI_GPE_INITIALIZED && \ |
| 22 | ((__gpe__)->flags & ACPI_GPE_XRUPT_TYPE_MASK) == ACPI_GPE_EDGE_TRIGGERED) |
| 23 | #else |
| 24 | #define ACPI_GPE_IS_POLLING_NEEDED(__gpe__) FALSE |
| 25 | #endif |
| 26 | |
| 27 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 28 | * evevent |
| 29 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 30 | acpi_status acpi_ev_initialize_events(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 32 | acpi_status acpi_ev_install_xrupt_handlers(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 34 | u32 acpi_ev_fixed_event_detect(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 37 | * evmisc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 39 | u8 acpi_ev_is_notify_object(struct acpi_namespace_node *node); |
| 40 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 41 | u32 acpi_ev_get_gpe_number_index(u32 gpe_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
| 43 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 44 | acpi_ev_queue_notify_request(struct acpi_namespace_node *node, |
| 45 | u32 notify_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | /* |
Bob Moore | 0f6896f | 2011-04-13 11:33:17 +0800 | [diff] [blame] | 48 | * evglock - Global Lock support |
| 49 | */ |
| 50 | acpi_status acpi_ev_init_global_lock_handler(void); |
| 51 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 52 | ACPI_HW_DEPENDENT_RETURN_OK(acpi_status |
| 53 | acpi_ev_acquire_global_lock(u16 timeout)) |
Lv Zheng | cd27d79 | 2013-10-29 09:30:22 +0800 | [diff] [blame] | 54 | ACPI_HW_DEPENDENT_RETURN_OK(acpi_status acpi_ev_release_global_lock(void)) |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 55 | |
Lv Zheng | ed60694 | 2014-01-08 13:44:56 +0800 | [diff] [blame] | 56 | acpi_status acpi_ev_remove_global_lock_handler(void); |
Bob Moore | 0f6896f | 2011-04-13 11:33:17 +0800 | [diff] [blame] | 57 | |
| 58 | /* |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 59 | * evgpe - Low-level GPE support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | */ |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 61 | u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info *gpe_xrupt_list); |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | acpi_status |
Rafael J. Wysocki | a44061a | 2010-07-01 10:11:45 +0800 | [diff] [blame] | 64 | acpi_ev_update_gpe_enable_mask(struct acpi_gpe_event_info *gpe_event_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Rafael J. Wysocki | 3bd741b | 2010-07-01 11:01:12 +0800 | [diff] [blame] | 66 | acpi_status acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info); |
| 67 | |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 68 | acpi_status |
Lv Zheng | 2af52c2 | 2016-08-04 16:43:39 +0800 | [diff] [blame] | 69 | acpi_ev_mask_gpe(struct acpi_gpe_event_info *gpe_event_info, u8 is_masked); |
| 70 | |
| 71 | acpi_status |
Rafael J. Wysocki | 44758ba | 2019-06-17 13:31:45 +0200 | [diff] [blame] | 72 | acpi_ev_add_gpe_reference(struct acpi_gpe_event_info *gpe_event_info, |
| 73 | u8 clear_on_enable); |
Rafael J. Wysocki | 28f4f8a | 2010-08-03 23:55:14 +0200 | [diff] [blame] | 74 | |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 75 | acpi_status |
| 76 | acpi_ev_remove_gpe_reference(struct acpi_gpe_event_info *gpe_event_info); |
Rafael J. Wysocki | 28f4f8a | 2010-08-03 23:55:14 +0200 | [diff] [blame] | 77 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 78 | struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device, |
| 79 | u32 gpe_number); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 80 | |
Lin Ming | 0f849d2 | 2010-04-06 14:52:37 +0800 | [diff] [blame] | 81 | struct acpi_gpe_event_info *acpi_ev_low_get_gpe_info(u32 gpe_number, |
| 82 | struct acpi_gpe_block_info |
| 83 | *gpe_block); |
| 84 | |
Lin Ming | bba63a2 | 2010-12-13 13:39:17 +0800 | [diff] [blame] | 85 | acpi_status acpi_ev_finish_gpe(struct acpi_gpe_event_info *gpe_event_info); |
| 86 | |
Erik Schmauss | 8d59349 | 2018-03-14 16:12:58 -0700 | [diff] [blame] | 87 | u32 |
| 88 | acpi_ev_detect_gpe(struct acpi_namespace_node *gpe_device, |
| 89 | struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number); |
| 90 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 91 | /* |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 92 | * evgpeblk - Upper-level GPE block support |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 93 | */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 94 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 95 | acpi_ev_create_gpe_block(struct acpi_namespace_node *gpe_device, |
Bob Moore | 7505da4 | 2014-04-30 10:06:15 +0800 | [diff] [blame] | 96 | u64 address, |
| 97 | u8 space_id, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 98 | u32 register_count, |
Bob Moore | 7505da4 | 2014-04-30 10:06:15 +0800 | [diff] [blame] | 99 | u16 gpe_block_base_number, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 100 | u32 interrupt_number, |
| 101 | struct acpi_gpe_block_info **return_gpe_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 103 | acpi_status |
Rafael J. Wysocki | a210080 | 2010-09-16 00:30:43 +0200 | [diff] [blame] | 104 | acpi_ev_initialize_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info, |
| 105 | struct acpi_gpe_block_info *gpe_block, |
Lin Ming | 3a37898 | 2010-12-13 13:36:15 +0800 | [diff] [blame] | 106 | void *context); |
Bob Moore | 96db255 | 2005-11-02 00:00:00 -0500 | [diff] [blame] | 107 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 108 | ACPI_HW_DEPENDENT_RETURN_OK(acpi_status |
| 109 | acpi_ev_delete_gpe_block(struct acpi_gpe_block_info |
| 110 | *gpe_block)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | u32 |
Lin Ming | 8b6cd8a | 2010-12-13 13:38:46 +0800 | [diff] [blame] | 113 | acpi_ev_gpe_dispatch(struct acpi_namespace_node *gpe_device, |
| 114 | struct acpi_gpe_event_info *gpe_event_info, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 115 | u32 gpe_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 117 | /* |
| 118 | * evgpeinit - GPE initialization and update |
| 119 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 120 | acpi_status acpi_ev_gpe_initialize(void); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 121 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 122 | ACPI_HW_DEPENDENT_RETURN_VOID(void |
| 123 | acpi_ev_update_gpes(acpi_owner_id table_owner_id)) |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 124 | |
Lv Zheng | ed60694 | 2014-01-08 13:44:56 +0800 | [diff] [blame] | 125 | acpi_status |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 126 | acpi_ev_match_gpe_method(acpi_handle obj_handle, |
| 127 | u32 level, void *context, void **return_value); |
| 128 | |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 129 | /* |
| 130 | * evgpeutil - GPE utilities |
| 131 | */ |
| 132 | acpi_status |
| 133 | acpi_ev_walk_gpe_list(acpi_gpe_callback gpe_walk_callback, void *context); |
| 134 | |
Lin Ming | 3cfd53d | 2010-12-13 13:36:02 +0800 | [diff] [blame] | 135 | acpi_status |
| 136 | acpi_ev_get_gpe_device(struct acpi_gpe_xrupt_info *gpe_xrupt_info, |
| 137 | struct acpi_gpe_block_info *gpe_block, void *context); |
| 138 | |
Bob Moore | 4bec3d8 | 2014-01-08 13:44:10 +0800 | [diff] [blame] | 139 | acpi_status |
| 140 | acpi_ev_get_gpe_xrupt_block(u32 interrupt_number, |
| 141 | struct acpi_gpe_xrupt_info **gpe_xrupt_block); |
Bob Moore | 3fe5020 | 2010-04-27 11:41:19 +0800 | [diff] [blame] | 142 | |
| 143 | acpi_status acpi_ev_delete_gpe_xrupt(struct acpi_gpe_xrupt_info *gpe_xrupt); |
| 144 | |
| 145 | acpi_status |
| 146 | acpi_ev_delete_gpe_handlers(struct acpi_gpe_xrupt_info *gpe_xrupt_info, |
| 147 | struct acpi_gpe_block_info *gpe_block, |
| 148 | void *context); |
| 149 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 150 | /* |
Bob Moore | 42f8fb7 | 2013-01-11 13:08:51 +0100 | [diff] [blame] | 151 | * evhandler - Address space handling |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 152 | */ |
Lv Zheng | f31a99ce | 2015-12-29 14:02:00 +0800 | [diff] [blame] | 153 | union acpi_operand_object *acpi_ev_find_region_handler(acpi_adr_space_type |
| 154 | space_id, |
| 155 | union acpi_operand_object |
| 156 | *handler_obj); |
| 157 | |
Bob Moore | 42f8fb7 | 2013-01-11 13:08:51 +0100 | [diff] [blame] | 158 | u8 |
| 159 | acpi_ev_has_default_handler(struct acpi_namespace_node *node, |
| 160 | acpi_adr_space_type space_id); |
| 161 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 162 | acpi_status acpi_ev_install_region_handlers(void); |
| 163 | |
Bob Moore | 42f8fb7 | 2013-01-11 13:08:51 +0100 | [diff] [blame] | 164 | acpi_status |
| 165 | acpi_ev_install_space_handler(struct acpi_namespace_node *node, |
| 166 | acpi_adr_space_type space_id, |
| 167 | acpi_adr_space_handler handler, |
| 168 | acpi_adr_space_setup setup, void *context); |
| 169 | |
| 170 | /* |
| 171 | * evregion - Operation region support |
| 172 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 173 | acpi_status acpi_ev_initialize_op_regions(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 176 | acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj, |
Bob Moore | 9ce8178 | 2011-11-16 13:39:07 +0800 | [diff] [blame] | 177 | union acpi_operand_object *field_obj, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 178 | u32 function, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 179 | u32 region_offset, u32 bit_width, u64 *value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
| 181 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 182 | acpi_ev_attach_region(union acpi_operand_object *handler_obj, |
| 183 | union acpi_operand_object *region_obj, |
| 184 | u8 acpi_ns_is_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 187 | acpi_ev_detach_region(union acpi_operand_object *region_obj, |
| 188 | u8 acpi_ns_is_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Lv Zheng | d815346 | 2015-12-29 14:03:43 +0800 | [diff] [blame] | 190 | void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 191 | acpi_ev_execute_reg_methods(struct acpi_namespace_node *node, |
Lv Zheng | d815346 | 2015-12-29 14:03:43 +0800 | [diff] [blame] | 192 | acpi_adr_space_type space_id, u32 function); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 195 | acpi_ev_execute_reg_method(union acpi_operand_object *region_obj, u32 function); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
| 197 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 198 | * evregini - Region initialization and setup |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | acpi_ev_system_memory_region_setup(acpi_handle handle, |
| 202 | u32 function, |
| 203 | void *handler_context, |
| 204 | void **region_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | acpi_ev_io_space_region_setup(acpi_handle handle, |
| 208 | u32 function, |
| 209 | void *handler_context, void **region_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
| 211 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 212 | acpi_ev_pci_config_region_setup(acpi_handle handle, |
| 213 | u32 function, |
| 214 | void *handler_context, void **region_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 217 | acpi_ev_cmos_region_setup(acpi_handle handle, |
| 218 | u32 function, |
| 219 | void *handler_context, void **region_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 222 | acpi_ev_pci_bar_region_setup(acpi_handle handle, |
| 223 | u32 function, |
| 224 | void *handler_context, void **region_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
| 226 | acpi_status |
Jessica Clarke | ca25f92b | 2021-12-22 17:21:25 +0100 | [diff] [blame] | 227 | acpi_ev_data_table_region_setup(acpi_handle handle, |
| 228 | u32 function, |
| 229 | void *handler_context, void **region_context); |
| 230 | |
| 231 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 232 | acpi_ev_default_region_setup(acpi_handle handle, |
| 233 | u32 function, |
| 234 | void *handler_context, void **region_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
Lv Zheng | 760235c | 2016-11-30 15:21:12 +0800 | [diff] [blame] | 236 | acpi_status acpi_ev_initialize_region(union acpi_operand_object *region_obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Bob Moore | 8b1cafd | 2018-10-03 11:45:38 -0700 | [diff] [blame] | 238 | u8 acpi_ev_is_pci_root_bridge(struct acpi_namespace_node *node); |
| 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | /* |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 241 | * evsci - SCI (System Control Interrupt) handling/dispatch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 243 | u32 ACPI_SYSTEM_XFACE acpi_ev_gpe_xrupt_handler(void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Lv Zheng | a2fd4b4 | 2013-09-23 09:52:05 +0800 | [diff] [blame] | 245 | u32 acpi_ev_sci_dispatch(void); |
| 246 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 247 | u32 acpi_ev_install_sci_handler(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Lv Zheng | a2fd4b4 | 2013-09-23 09:52:05 +0800 | [diff] [blame] | 249 | acpi_status acpi_ev_remove_all_sci_handlers(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 251 | ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_ev_terminate(void)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 252 | #endif /* __ACEVENTS_H__ */ |