blob: 68ec61fff1886872da7143ec804013ab5b504656 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Name: acevents.h - Event subcomponent prototypes and defines
4 *
5 *****************************************************************************/
6
7/*
Bob Moorefbb7a2d2014-02-08 09:42:25 +08008 * Copyright (C) 2000 - 2014, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
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.
25 *
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.
29 *
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.
42 */
43
44#ifndef __ACEVENTS_H__
45#define __ACEVENTS_H__
46
Robert Moore44f6c012005-04-18 22:49:35 -040047/*
48 * evevent
49 */
Len Brown4be44fc2005-08-05 00:44:28 -040050acpi_status acpi_ev_initialize_events(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Len Brown4be44fc2005-08-05 00:44:28 -040052acpi_status acpi_ev_install_xrupt_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Len Brown4be44fc2005-08-05 00:44:28 -040054u32 acpi_ev_fixed_event_detect(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
Robert Moore44f6c012005-04-18 22:49:35 -040057 * evmisc
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
Len Brown4be44fc2005-08-05 00:44:28 -040059u8 acpi_ev_is_notify_object(struct acpi_namespace_node *node);
60
Len Brown4be44fc2005-08-05 00:44:28 -040061u32 acpi_ev_get_gpe_number_index(u32 gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040064acpi_ev_queue_notify_request(struct acpi_namespace_node *node,
65 u32 notify_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
Bob Moore0f6896f2011-04-13 11:33:17 +080068 * evglock - Global Lock support
69 */
70acpi_status acpi_ev_init_global_lock_handler(void);
71
Bob Moore33620c52012-02-14 18:14:27 +080072ACPI_HW_DEPENDENT_RETURN_OK(acpi_status
73 acpi_ev_acquire_global_lock(u16 timeout))
Lv Zhengcd27d792013-10-29 09:30:22 +080074ACPI_HW_DEPENDENT_RETURN_OK(acpi_status acpi_ev_release_global_lock(void))
Lv Zhenged606942014-01-08 13:44:56 +080075acpi_status acpi_ev_remove_global_lock_handler(void);
Bob Moore0f6896f2011-04-13 11:33:17 +080076
77/*
Bob Moore3fe50202010-04-27 11:41:19 +080078 * evgpe - Low-level GPE support
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 */
Bob Moore3fe50202010-04-27 11:41:19 +080080u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info *gpe_xrupt_list);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082acpi_status
Rafael J. Wysockia44061a2010-07-01 10:11:45 +080083acpi_ev_update_gpe_enable_mask(struct acpi_gpe_event_info *gpe_event_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Rafael J. Wysocki3bd741b2010-07-01 11:01:12 +080085acpi_status acpi_ev_enable_gpe(struct acpi_gpe_event_info *gpe_event_info);
86
Lv Zheng1f86e8c2012-10-31 02:25:45 +000087acpi_status
88acpi_ev_add_gpe_reference(struct acpi_gpe_event_info *gpe_event_info);
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +020089
Lv Zheng1f86e8c2012-10-31 02:25:45 +000090acpi_status
91acpi_ev_remove_gpe_reference(struct acpi_gpe_event_info *gpe_event_info);
Rafael J. Wysocki28f4f8a2010-08-03 23:55:14 +020092
Len Brown4be44fc2005-08-05 00:44:28 -040093struct acpi_gpe_event_info *acpi_ev_get_gpe_event_info(acpi_handle gpe_device,
94 u32 gpe_number);
Robert Moore44f6c012005-04-18 22:49:35 -040095
Lin Ming0f849d22010-04-06 14:52:37 +080096struct acpi_gpe_event_info *acpi_ev_low_get_gpe_info(u32 gpe_number,
97 struct acpi_gpe_block_info
98 *gpe_block);
99
Lin Mingbba63a22010-12-13 13:39:17 +0800100acpi_status acpi_ev_finish_gpe(struct acpi_gpe_event_info *gpe_event_info);
101
Robert Moore44f6c012005-04-18 22:49:35 -0400102/*
Bob Moore3fe50202010-04-27 11:41:19 +0800103 * evgpeblk - Upper-level GPE block support
Robert Moore44f6c012005-04-18 22:49:35 -0400104 */
Robert Moore44f6c012005-04-18 22:49:35 -0400105acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400106acpi_ev_create_gpe_block(struct acpi_namespace_node *gpe_device,
107 struct acpi_generic_address *gpe_block_address,
108 u32 register_count,
109 u8 gpe_block_base_number,
110 u32 interrupt_number,
111 struct acpi_gpe_block_info **return_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Bob Moore96db2552005-11-02 00:00:00 -0500113acpi_status
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200114acpi_ev_initialize_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
115 struct acpi_gpe_block_info *gpe_block,
Lin Ming3a378982010-12-13 13:36:15 +0800116 void *context);
Bob Moore96db2552005-11-02 00:00:00 -0500117
Bob Moore33620c52012-02-14 18:14:27 +0800118ACPI_HW_DEPENDENT_RETURN_OK(acpi_status
119 acpi_ev_delete_gpe_block(struct acpi_gpe_block_info
120 *gpe_block))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122u32
Lin Ming8b6cd8a2010-12-13 13:38:46 +0800123acpi_ev_gpe_dispatch(struct acpi_namespace_node *gpe_device,
124 struct acpi_gpe_event_info *gpe_event_info,
Len Brown4be44fc2005-08-05 00:44:28 -0400125 u32 gpe_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Bob Moore3fe50202010-04-27 11:41:19 +0800127/*
128 * evgpeinit - GPE initialization and update
129 */
Len Brown4be44fc2005-08-05 00:44:28 -0400130acpi_status acpi_ev_gpe_initialize(void);
Robert Moore44f6c012005-04-18 22:49:35 -0400131
Bob Moore33620c52012-02-14 18:14:27 +0800132ACPI_HW_DEPENDENT_RETURN_VOID(void
133 acpi_ev_update_gpes(acpi_owner_id table_owner_id))
Bob Moore3fe50202010-04-27 11:41:19 +0800134
Lv Zhenged606942014-01-08 13:44:56 +0800135acpi_status
Bob Moore3fe50202010-04-27 11:41:19 +0800136acpi_ev_match_gpe_method(acpi_handle obj_handle,
137 u32 level, void *context, void **return_value);
138
Bob Moore3fe50202010-04-27 11:41:19 +0800139/*
140 * evgpeutil - GPE utilities
141 */
142acpi_status
143acpi_ev_walk_gpe_list(acpi_gpe_callback gpe_walk_callback, void *context);
144
145u8 acpi_ev_valid_gpe_event(struct acpi_gpe_event_info *gpe_event_info);
146
Lin Ming3cfd53d2010-12-13 13:36:02 +0800147acpi_status
148acpi_ev_get_gpe_device(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
149 struct acpi_gpe_block_info *gpe_block, void *context);
150
Bob Moore4bec3d82014-01-08 13:44:10 +0800151acpi_status
152acpi_ev_get_gpe_xrupt_block(u32 interrupt_number,
153 struct acpi_gpe_xrupt_info **gpe_xrupt_block);
Bob Moore3fe50202010-04-27 11:41:19 +0800154
155acpi_status acpi_ev_delete_gpe_xrupt(struct acpi_gpe_xrupt_info *gpe_xrupt);
156
157acpi_status
158acpi_ev_delete_gpe_handlers(struct acpi_gpe_xrupt_info *gpe_xrupt_info,
159 struct acpi_gpe_block_info *gpe_block,
160 void *context);
161
Robert Moore44f6c012005-04-18 22:49:35 -0400162/*
Bob Moore42f8fb72013-01-11 13:08:51 +0100163 * evhandler - Address space handling
Robert Moore44f6c012005-04-18 22:49:35 -0400164 */
Bob Moore42f8fb72013-01-11 13:08:51 +0100165u8
166acpi_ev_has_default_handler(struct acpi_namespace_node *node,
167 acpi_adr_space_type space_id);
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169acpi_status acpi_ev_install_region_handlers(void);
170
Bob Moore42f8fb72013-01-11 13:08:51 +0100171acpi_status
172acpi_ev_install_space_handler(struct acpi_namespace_node *node,
173 acpi_adr_space_type space_id,
174 acpi_adr_space_handler handler,
175 acpi_adr_space_setup setup, void *context);
176
177/*
178 * evregion - Operation region support
179 */
Len Brown4be44fc2005-08-05 00:44:28 -0400180acpi_status acpi_ev_initialize_op_regions(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400183acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj,
Bob Moore9ce81782011-11-16 13:39:07 +0800184 union acpi_operand_object *field_obj,
Len Brown4be44fc2005-08-05 00:44:28 -0400185 u32 function,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800186 u32 region_offset, u32 bit_width, u64 *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400189acpi_ev_attach_region(union acpi_operand_object *handler_obj,
190 union acpi_operand_object *region_obj,
191 u8 acpi_ns_is_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193void
Len Brown4be44fc2005-08-05 00:44:28 -0400194acpi_ev_detach_region(union acpi_operand_object *region_obj,
195 u8 acpi_ns_is_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400198acpi_ev_execute_reg_methods(struct acpi_namespace_node *node,
199 acpi_adr_space_type space_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400202acpi_ev_execute_reg_method(union acpi_operand_object *region_obj, u32 function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204/*
Robert Moore44f6c012005-04-18 22:49:35 -0400205 * evregini - Region initialization and setup
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400208acpi_ev_system_memory_region_setup(acpi_handle handle,
209 u32 function,
210 void *handler_context,
211 void **region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400214acpi_ev_io_space_region_setup(acpi_handle handle,
215 u32 function,
216 void *handler_context, void **region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400219acpi_ev_pci_config_region_setup(acpi_handle handle,
220 u32 function,
221 void *handler_context, void **region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400224acpi_ev_cmos_region_setup(acpi_handle handle,
225 u32 function,
226 void *handler_context, void **region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400229acpi_ev_pci_bar_region_setup(acpi_handle handle,
230 u32 function,
231 void *handler_context, void **region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400234acpi_ev_default_region_setup(acpi_handle handle,
235 u32 function,
236 void *handler_context, void **region_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400239acpi_ev_initialize_region(union acpi_operand_object *region_obj,
240 u8 acpi_ns_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242/*
Robert Moore44f6c012005-04-18 22:49:35 -0400243 * evsci - SCI (System Control Interrupt) handling/dispatch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
Len Brown4be44fc2005-08-05 00:44:28 -0400245u32 ACPI_SYSTEM_XFACE acpi_ev_gpe_xrupt_handler(void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800247u32 acpi_ev_sci_dispatch(void);
248
Len Brown4be44fc2005-08-05 00:44:28 -0400249u32 acpi_ev_install_sci_handler(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800251acpi_status acpi_ev_remove_all_sci_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Bob Moore33620c52012-02-14 18:14:27 +0800253ACPI_HW_DEPENDENT_RETURN_VOID(void acpi_ev_terminate(void))
Len Brown4be44fc2005-08-05 00:44:28 -0400254#endif /* __ACEVENTS_H__ */