blob: 01ba80b1f91f24f4ff5ecc13174addd706cdb6b4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Name: acpixf.h - External interfaces to the ACPI subsystem
4 *
5 *****************************************************************************/
6
7/*
Bob Moore25f044e2013-01-25 05:38:56 +00008 * Copyright (C) 2000 - 2013, 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#ifndef __ACXFACE_H__
45#define __ACXFACE_H__
46
Bob Moore50df4d82008-12-31 03:01:23 +080047/* Current ACPICA subsystem version in YYYYMMDD format */
48
Bob Moorea3ccfcc2013-11-21 12:20:16 +080049#define ACPI_CA_VERSION 0x20131115
Bob Moore50df4d82008-12-31 03:01:23 +080050
David Howellsa1ce3922012-10-02 18:01:25 +010051#include <acpi/acconfig.h>
52#include <acpi/actypes.h>
53#include <acpi/actbl.h>
Linus Torvaldsd8dc91b2012-10-08 07:14:06 +090054#include <acpi/acbuffer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Lin Ming889c78b2008-12-31 09:23:57 +080056extern u8 acpi_gbl_permanent_mmap;
57
Robert Moore44f6c012005-04-18 22:49:35 -040058/*
Lv Zheng75c80442012-12-19 05:36:49 +000059 * Globals that are publically available
Bob Moore50df4d82008-12-31 03:01:23 +080060 */
Lv Zheng739dcbb2012-12-20 01:07:26 +000061extern u32 acpi_current_gpe_count;
62extern struct acpi_table_fadt acpi_gbl_FADT;
63extern u8 acpi_gbl_system_awake_and_running;
64extern u8 acpi_gbl_reduced_hardware; /* ACPI 5.0 */
Aaron Lu242b2282013-07-02 21:59:10 +080065extern u8 acpi_gbl_osi_data;
Lv Zheng3e8214e2012-12-19 05:37:15 +000066
Lv Zheng75c80442012-12-19 05:36:49 +000067/* Runtime configuration of debug print levels */
Lv Zheng3e8214e2012-12-19 05:37:15 +000068
Bob Moore50df4d82008-12-31 03:01:23 +080069extern u32 acpi_dbg_level;
70extern u32 acpi_dbg_layer;
Lv Zheng3e8214e2012-12-19 05:37:15 +000071
Lv Zheng75c80442012-12-19 05:36:49 +000072/* ACPICA runtime options */
Lv Zheng3e8214e2012-12-19 05:37:15 +000073
Bob Moore50df4d82008-12-31 03:01:23 +080074extern u8 acpi_gbl_all_methods_serialized;
Lin Ming69ec87e2010-04-01 11:14:12 +080075extern u8 acpi_gbl_copy_dsdt_locally;
Lv Zhengfab46102014-01-08 13:43:40 +080076extern u8 acpi_gbl_create_osi_method;
Bob Moored57b23a2011-07-04 08:24:03 +000077extern u8 acpi_gbl_disable_auto_repair;
Lv Zhengb75dd292013-06-08 00:58:48 +000078extern u8 acpi_gbl_disable_ssdt_table_load;
Lv Zhengfab46102014-01-08 13:43:40 +080079extern u8 acpi_gbl_do_not_use_xsdt;
80extern bool acpi_gbl_enable_aml_debug_object;
81extern u8 acpi_gbl_enable_interpreter_slack;
82extern u32 acpi_gbl_trace_flags;
83extern acpi_name acpi_gbl_trace_method_name;
84extern u8 acpi_gbl_truncate_io_addresses;
Bob Moore0249ed22014-01-08 13:43:46 +080085extern u8 acpi_gbl_use32_bit_fadt_addresses;
Lv Zhengfab46102014-01-08 13:43:40 +080086extern u8 acpi_gbl_use_default_register_widths;
Bob Moore50df4d82008-12-31 03:01:23 +080087
Bob Moore33620c52012-02-14 18:14:27 +080088/*
89 * Hardware-reduced prototypes. All interfaces that use these macros will
90 * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag
91 * is set to TRUE.
92 */
93#if (!ACPI_REDUCED_HARDWARE)
94#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
95 prototype;
96
97#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
98 prototype;
99
100#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
101 prototype;
102
103#else
104#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
105 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
106
107#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
108 static ACPI_INLINE prototype {return(AE_OK);}
109
110#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
Bob Moorec26f3c92013-10-29 09:29:16 +0800111 static ACPI_INLINE prototype {return;}
Bob Moore33620c52012-02-14 18:14:27 +0800112
113#endif /* !ACPI_REDUCED_HARDWARE */
114
Bob Moore50df4d82008-12-31 03:01:23 +0800115/*
Lv Zheng75c80442012-12-19 05:36:49 +0000116 * Initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
Lv Zheng45c9f782013-10-31 09:31:24 +0800118acpi_status __init
Bob Mooref3d2e782007-02-02 19:48:18 +0300119acpi_initialize_tables(struct acpi_table_desc *initial_storage,
120 u32 initial_table_count, u8 allow_resize);
121
Len Browndd272b52007-05-30 00:26:11 -0400122acpi_status __init acpi_initialize_subsystem(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Lv Zheng45c9f782013-10-31 09:31:24 +0800124acpi_status __init acpi_enable_subsystem(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Lv Zheng45c9f782013-10-31 09:31:24 +0800126acpi_status __init acpi_initialize_objects(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Lv Zheng45c9f782013-10-31 09:31:24 +0800128acpi_status __init acpi_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Lv Zheng75c80442012-12-19 05:36:49 +0000130/*
131 * Miscellaneous global interfaces
132 */
Bob Moore33620c52012-02-14 18:14:27 +0800133ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void))
Lv Zhengcd27d792013-10-29 09:30:22 +0800134
Bob Moore33620c52012-02-14 18:14:27 +0800135ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void))
Lv Zheng739dcbb2012-12-20 01:07:26 +0000136#ifdef ACPI_FUTURE_USAGE
Lv Zhengcd27d792013-10-29 09:30:22 +0800137 acpi_status acpi_subsystem_status(void);
Lv Zheng739dcbb2012-12-20 01:07:26 +0000138#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400141acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#endif
143
Lv Zheng9187a412013-10-31 09:30:28 +0800144acpi_status acpi_get_statistics(struct acpi_statistics *stats);
145
Len Brown4be44fc2005-08-05 00:44:28 -0400146const char *acpi_format_exception(acpi_status exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Len Brown4be44fc2005-08-05 00:44:28 -0400148acpi_status acpi_purge_cached_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Lin Mingb0ed7a92010-08-06 09:35:51 +0800150acpi_status acpi_install_interface(acpi_string interface_name);
151
152acpi_status acpi_remove_interface(acpi_string interface_name);
153
Lv Zheng2cf9f5b2013-07-22 16:08:16 +0800154acpi_status acpi_update_interfaces(u8 action);
155
Lin Mingf654c0f2012-01-12 13:10:32 +0800156u32
157acpi_check_address_range(acpi_adr_space_type space_id,
158 acpi_physical_address address,
159 acpi_size length, u8 warn);
160
Bob Moorebe030a52012-08-17 13:07:54 +0800161acpi_status
162acpi_decode_pld_buffer(u8 *in_buffer,
163 acpi_size length, struct acpi_pld_info **return_buffer);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
Bob Mooref60d8182012-07-16 10:21:34 +0800166 * ACPI table load/unload interfaces
167 */
168acpi_status acpi_load_table(struct acpi_table_header *table);
169
170acpi_status acpi_unload_parent_table(acpi_handle object);
171
Lv Zheng45c9f782013-10-31 09:31:24 +0800172acpi_status __init acpi_load_tables(void);
Bob Mooref60d8182012-07-16 10:21:34 +0800173
174/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * ACPI table manipulation interfaces
176 */
Lv Zheng45c9f782013-10-31 09:31:24 +0800177acpi_status __init acpi_reallocate_root_table(void);
Bob Mooref3d2e782007-02-02 19:48:18 +0300178
Lv Zheng45c9f782013-10-31 09:31:24 +0800179acpi_status __init acpi_find_root_pointer(acpi_size *rsdp_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Bob Mooref3d2e782007-02-02 19:48:18 +0300181acpi_status acpi_unload_table_id(acpi_owner_id id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300184acpi_get_table_header(acpi_string signature,
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000185 u32 instance, struct acpi_table_header *out_table_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187acpi_status
Yinghai Lu7d972772009-02-07 15:39:41 -0800188acpi_get_table_with_size(acpi_string signature,
189 u32 instance, struct acpi_table_header **out_table,
190 acpi_size *tbl_size);
Lv Zhengcd27d792013-10-29 09:30:22 +0800191
Yinghai Lu7d972772009-02-07 15:39:41 -0800192acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300193acpi_get_table(acpi_string signature,
Bob Moore67a119f2008-06-10 13:42:13 +0800194 u32 instance, struct acpi_table_header **out_table);
Bob Mooref3d2e782007-02-02 19:48:18 +0300195
196acpi_status
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000197acpi_get_table_by_index(u32 table_index, struct acpi_table_header **out_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Lin Ming3e08e2d2008-04-10 19:06:38 +0400199acpi_status
Lv Zhengb43e1062013-01-12 15:29:38 +0000200acpi_install_table_handler(acpi_table_handler handler, void *context);
Lin Ming3e08e2d2008-04-10 19:06:38 +0400201
Lv Zhengb43e1062013-01-12 15:29:38 +0000202acpi_status acpi_remove_table_handler(acpi_table_handler handler);
Lin Ming3e08e2d2008-04-10 19:06:38 +0400203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
205 * Namespace and name interfaces
206 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400208acpi_walk_namespace(acpi_object_type type,
209 acpi_handle start_object,
210 u32 max_depth,
Bob Moore4ef17502013-08-08 15:30:05 +0800211 acpi_walk_callback descending_callback,
212 acpi_walk_callback ascending_callback,
Len Brown4be44fc2005-08-05 00:44:28 -0400213 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215acpi_status
Al Viro70b30fb2007-08-21 16:18:20 +0100216acpi_get_devices(const char *HID,
Len Brown4be44fc2005-08-05 00:44:28 -0400217 acpi_walk_callback user_function,
218 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800221acpi_get_name(acpi_handle object,
Len Brown4be44fc2005-08-05 00:44:28 -0400222 u32 name_type, struct acpi_buffer *ret_path_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400225acpi_get_handle(acpi_handle parent,
226 acpi_string pathname, acpi_handle * ret_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800229acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data);
230
231acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800234acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Bob Moore50eca3e2005-09-30 19:03:00 -0400236acpi_status
237acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags);
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * Object manipulation and enumeration
241 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400243acpi_evaluate_object(acpi_handle object,
244 acpi_string pathname,
245 struct acpi_object_list *parameter_objects,
246 struct acpi_buffer *return_object_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400249acpi_evaluate_object_typed(acpi_handle object,
250 acpi_string pathname,
251 struct acpi_object_list *external_params,
252 struct acpi_buffer *return_buffer,
253 acpi_object_type return_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800256acpi_get_object_info(acpi_handle object,
Bob Moore15b8dd52009-06-29 13:39:29 +0800257 struct acpi_device_info **return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Lin Mingb2f7ddc2009-05-21 10:42:09 +0800259acpi_status acpi_install_method(u8 *buffer);
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400262acpi_get_next_object(acpi_object_type type,
263 acpi_handle parent,
264 acpi_handle child, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Len Brown4be44fc2005-08-05 00:44:28 -0400266acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
John Keller0f0fe1a2006-12-19 12:56:19 -0800268acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type);
269
Len Brown4be44fc2005-08-05 00:44:28 -0400270acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272/*
Bob Mooreecfbbc72008-12-31 02:55:32 +0800273 * Handler interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275acpi_status
Bob Mooreecfbbc72008-12-31 02:55:32 +0800276acpi_install_initialization_handler(acpi_init_handler handler, u32 function);
277
Bob Moore33620c52012-02-14 18:14:27 +0800278ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800279 acpi_install_sci_handler(acpi_sci_handler
280 address,
281 void *context))
Lv Zhengcd27d792013-10-29 09:30:22 +0800282
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800283ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
284 acpi_remove_sci_handler(acpi_sci_handler
285 address))
Lv Zhengcd27d792013-10-29 09:30:22 +0800286
Lv Zhenga2fd4b42013-09-23 09:52:05 +0800287ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
288 acpi_install_global_event_handler
289 (acpi_gbl_event_handler handler,
290 void *context))
Lv Zhengcd27d792013-10-29 09:30:22 +0800291
Bob Moore33620c52012-02-14 18:14:27 +0800292ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
293 acpi_install_fixed_event_handler(u32
294 acpi_event,
295 acpi_event_handler
296 handler,
297 void
298 *context))
Lv Zhengcd27d792013-10-29 09:30:22 +0800299
Bob Moore33620c52012-02-14 18:14:27 +0800300ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
301 acpi_remove_fixed_event_handler(u32 acpi_event,
302 acpi_event_handler
303 handler))
Lv Zhengcd27d792013-10-29 09:30:22 +0800304
Bob Moore33620c52012-02-14 18:14:27 +0800305ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
306 acpi_install_gpe_handler(acpi_handle
307 gpe_device,
308 u32 gpe_number,
309 u32 type,
310 acpi_gpe_handler
311 address,
312 void *context))
Lv Zhengcd27d792013-10-29 09:30:22 +0800313
Bob Moore33620c52012-02-14 18:14:27 +0800314ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
315 acpi_remove_gpe_handler(acpi_handle gpe_device,
316 u32 gpe_number,
317 acpi_gpe_handler
318 address))
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000319acpi_status acpi_install_notify_handler(acpi_handle device, u32 handler_type,
320 acpi_notify_handler handler,
321 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400324acpi_remove_notify_handler(acpi_handle device,
325 u32 handler_type, acpi_notify_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400328acpi_install_address_space_handler(acpi_handle device,
329 acpi_adr_space_type space_id,
330 acpi_adr_space_handler handler,
331 acpi_adr_space_setup setup, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400334acpi_remove_address_space_handler(acpi_handle device,
335 acpi_adr_space_type space_id,
336 acpi_adr_space_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400339acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#endif
341
Lin Mingb0ed7a92010-08-06 09:35:51 +0800342acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/*
Lin Mingffef6822011-11-16 11:08:30 +0800345 * Global Lock interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 */
Bob Moore33620c52012-02-14 18:14:27 +0800347ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
348 acpi_acquire_global_lock(u16 timeout,
349 u32 *handle))
Lv Zhengcd27d792013-10-29 09:30:22 +0800350
Bob Moore33620c52012-02-14 18:14:27 +0800351ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
352 acpi_release_global_lock(u32 handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Lin Mingffef6822011-11-16 11:08:30 +0800354/*
355 * Interfaces to AML mutex objects
356 */
357acpi_status
358acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
359
360acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
361
362/*
363 * Fixed Event interfaces
364 */
Bob Moore33620c52012-02-14 18:14:27 +0800365ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
366 acpi_enable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Bob Moore33620c52012-02-14 18:14:27 +0800368ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
369 acpi_disable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Bob Moore33620c52012-02-14 18:14:27 +0800371ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Bob Moore33620c52012-02-14 18:14:27 +0800373ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
374 acpi_get_event_status(u32 event,
375 acpi_event_status
376 *event_status))
Lv Zhengcd27d792013-10-29 09:30:22 +0800377
Bob Moore08ac07b2008-12-30 09:55:48 +0800378/*
Lin Mingffef6822011-11-16 11:08:30 +0800379 * General Purpose Event (GPE) Interfaces
Bob Moore08ac07b2008-12-30 09:55:48 +0800380 */
Bob Moore33620c52012-02-14 18:14:27 +0800381ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void))
Len Brown4be44fc2005-08-05 00:44:28 -0400382
Bob Moore33620c52012-02-14 18:14:27 +0800383ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
384 acpi_enable_gpe(acpi_handle gpe_device,
385 u32 gpe_number))
Len Brown4be44fc2005-08-05 00:44:28 -0400386
Bob Moore33620c52012-02-14 18:14:27 +0800387ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
388 acpi_disable_gpe(acpi_handle gpe_device,
389 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Bob Moore33620c52012-02-14 18:14:27 +0800391ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
392 acpi_clear_gpe(acpi_handle gpe_device,
393 u32 gpe_number))
Lin Mingbba63a22010-12-13 13:39:17 +0800394
Bob Moore33620c52012-02-14 18:14:27 +0800395ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
396 acpi_set_gpe(acpi_handle gpe_device,
397 u32 gpe_number, u8 action))
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200398
Bob Moore33620c52012-02-14 18:14:27 +0800399ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
400 acpi_finish_gpe(acpi_handle gpe_device,
401 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Bob Moore33620c52012-02-14 18:14:27 +0800403ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
404 acpi_setup_gpe_for_wake(acpi_handle
405 parent_device,
406 acpi_handle gpe_device,
407 u32 gpe_number))
Lv Zhengcd27d792013-10-29 09:30:22 +0800408
Bob Moore33620c52012-02-14 18:14:27 +0800409ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
410 acpi_set_gpe_wake_mask(acpi_handle gpe_device,
411 u32 gpe_number,
412 u8 action))
Lv Zhengcd27d792013-10-29 09:30:22 +0800413
Bob Moore33620c52012-02-14 18:14:27 +0800414ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
415 acpi_get_gpe_status(acpi_handle gpe_device,
416 u32 gpe_number,
417 acpi_event_status
418 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800419
Bob Moore33620c52012-02-14 18:14:27 +0800420ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void))
Bob Moore08ac07b2008-12-30 09:55:48 +0800421
Bob Moore33620c52012-02-14 18:14:27 +0800422ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void))
Bob Mooree97d6bf2008-12-30 09:45:17 +0800423
Bob Moore33620c52012-02-14 18:14:27 +0800424ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
425 acpi_get_gpe_device(u32 gpe_index,
426 acpi_handle * gpe_device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Bob Moore33620c52012-02-14 18:14:27 +0800428ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
429 acpi_install_gpe_block(acpi_handle gpe_device,
430 struct
431 acpi_generic_address
432 *gpe_block_address,
433 u32 register_count,
434 u32 interrupt_number))
Lv Zhengcd27d792013-10-29 09:30:22 +0800435
Bob Moore33620c52012-02-14 18:14:27 +0800436ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
437 acpi_remove_gpe_block(acpi_handle gpe_device))
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/*
440 * Resource interfaces
441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442typedef
Bob Moore616861242006-03-17 16:44:00 -0500443acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
Len Brown4be44fc2005-08-05 00:44:28 -0400444 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800447acpi_get_vendor_resource(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500448 char *name,
449 struct acpi_vendor_uuid *uuid,
450 struct acpi_buffer *ret_buffer);
451
452acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800453acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455#ifdef ACPI_FUTURE_USAGE
456acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800457acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458#endif
459
460acpi_status
Bob Moorea91cdde2011-11-16 14:46:57 +0800461acpi_get_event_resources(acpi_handle device_handle,
462 struct acpi_buffer *ret_buffer);
463
464acpi_status
Bob Mooreafb1bbe2012-12-31 00:03:58 +0000465acpi_walk_resource_buffer(struct acpi_buffer *buffer,
466 acpi_walk_resource_callback user_function,
467 void *context);
468
469acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800470acpi_walk_resources(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500471 char *name,
Bob Moore616861242006-03-17 16:44:00 -0500472 acpi_walk_resource_callback user_function, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800475acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800478acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400481acpi_resource_to_address64(struct acpi_resource *resource,
482 struct acpi_resource_address64 *out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Bob Moore0e243172011-11-16 14:51:01 +0800484acpi_status
485acpi_buffer_to_resource(u8 *aml_buffer,
486 u16 aml_buffer_length,
487 struct acpi_resource **resource_ptr);
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
490 * Hardware (ACPI device) interfaces
491 */
Bob Moored3fd9022008-12-30 11:11:57 +0800492acpi_status acpi_reset(void);
493
Lv Zheng739dcbb2012-12-20 01:07:26 +0000494acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
495
496acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
497
Bob Moore33620c52012-02-14 18:14:27 +0800498ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
499 acpi_read_bit_register(u32 register_id,
500 u32 *return_value))
Len Brown4be44fc2005-08-05 00:44:28 -0400501
Bob Moore33620c52012-02-14 18:14:27 +0800502ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
503 acpi_write_bit_register(u32 register_id,
504 u32 value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Bob Moore33620c52012-02-14 18:14:27 +0800506/*
507 * Sleep/Wake interfaces
508 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509acpi_status
Lv Zhengcd27d792013-10-29 09:30:22 +0800510acpi_get_sleep_type_data(u8 sleep_state, u8 *slp_typ_a, u8 *slp_typ_b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Len Brown4be44fc2005-08-05 00:44:28 -0400512acpi_status acpi_enter_sleep_state_prep(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Lv Zheng40bce102013-10-31 09:31:18 +0800514acpi_status acpi_enter_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Lv Zheng40bce102013-10-31 09:31:18 +0800516ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enter_sleep_state_s4bios(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Len Brown3f6f49c2012-07-26 20:08:54 -0400518acpi_status acpi_leave_sleep_state_prep(u8 sleep_state);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100519
Len Brown4be44fc2005-08-05 00:44:28 -0400520acpi_status acpi_leave_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Lv Zheng739dcbb2012-12-20 01:07:26 +0000522ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
523 acpi_set_firmware_waking_vector(u32
524 physical_address))
Lv Zheng739dcbb2012-12-20 01:07:26 +0000525#if ACPI_MACHINE_WIDTH == 64
526ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
527 acpi_set_firmware_waking_vector64(u64
528 physical_address))
529#endif
Bob Moore50df4d82008-12-31 03:01:23 +0800530/*
Bob Moored08310f2012-02-14 15:22:51 +0800531 * ACPI Timer interfaces
532 */
533#ifdef ACPI_FUTURE_USAGE
Bob Moore33620c52012-02-14 18:14:27 +0800534ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
535 acpi_get_timer_resolution(u32 *resolution))
Bob Moored08310f2012-02-14 15:22:51 +0800536
Bob Moore33620c52012-02-14 18:14:27 +0800537ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_get_timer(u32 *ticks))
Bob Moored08310f2012-02-14 15:22:51 +0800538
Bob Moore33620c52012-02-14 18:14:27 +0800539ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
540 acpi_get_timer_duration(u32 start_ticks,
541 u32 end_ticks,
542 u32 *time_elapsed))
Bob Moored08310f2012-02-14 15:22:51 +0800543#endif /* ACPI_FUTURE_USAGE */
544
545/*
Bob Mooreb74be612009-04-22 10:20:23 +0800546 * Error/Warning output
Bob Moore50df4d82008-12-31 03:01:23 +0800547 */
Lv Zheng4506bf22013-10-29 09:30:16 +0800548ACPI_PRINTF_LIKE(3)
Bob Moore50df4d82008-12-31 03:01:23 +0800549void ACPI_INTERNAL_VAR_XFACE
Lv Zheng4506bf22013-10-29 09:30:16 +0800550acpi_error(const char *module_name, u32 line_number, const char *format, ...);
Bob Moore50df4d82008-12-31 03:01:23 +0800551
Lv Zheng4506bf22013-10-29 09:30:16 +0800552ACPI_PRINTF_LIKE(4)
Bob Moore50df4d82008-12-31 03:01:23 +0800553void ACPI_INTERNAL_VAR_XFACE
554acpi_exception(const char *module_name,
Lv Zheng4506bf22013-10-29 09:30:16 +0800555 u32 line_number, acpi_status status, const char *format, ...);
Bob Moore50df4d82008-12-31 03:01:23 +0800556
Lv Zheng4506bf22013-10-29 09:30:16 +0800557ACPI_PRINTF_LIKE(3)
Bob Moore50df4d82008-12-31 03:01:23 +0800558void ACPI_INTERNAL_VAR_XFACE
Lv Zheng4506bf22013-10-29 09:30:16 +0800559acpi_warning(const char *module_name, u32 line_number, const char *format, ...);
Bob Moore50df4d82008-12-31 03:01:23 +0800560
Lv Zheng4506bf22013-10-29 09:30:16 +0800561ACPI_PRINTF_LIKE(3)
Bob Moore50df4d82008-12-31 03:01:23 +0800562void ACPI_INTERNAL_VAR_XFACE
Lv Zheng4506bf22013-10-29 09:30:16 +0800563acpi_info(const char *module_name, u32 line_number, const char *format, ...);
Bob Moore50df4d82008-12-31 03:01:23 +0800564
Lv Zheng4506bf22013-10-29 09:30:16 +0800565ACPI_PRINTF_LIKE(3)
Bob Moore62cdd142012-07-16 09:25:27 +0800566void ACPI_INTERNAL_VAR_XFACE
567acpi_bios_error(const char *module_name,
Lv Zheng4506bf22013-10-29 09:30:16 +0800568 u32 line_number, const char *format, ...);
Bob Moore62cdd142012-07-16 09:25:27 +0800569
Lv Zheng4506bf22013-10-29 09:30:16 +0800570ACPI_PRINTF_LIKE(3)
Bob Moore62cdd142012-07-16 09:25:27 +0800571void ACPI_INTERNAL_VAR_XFACE
572acpi_bios_warning(const char *module_name,
Lv Zheng4506bf22013-10-29 09:30:16 +0800573 u32 line_number, const char *format, ...);
Bob Moore62cdd142012-07-16 09:25:27 +0800574
Bob Mooreb74be612009-04-22 10:20:23 +0800575/*
576 * Debug output
577 */
Bob Moore50df4d82008-12-31 03:01:23 +0800578#ifdef ACPI_DEBUG_OUTPUT
579
Lv Zheng4506bf22013-10-29 09:30:16 +0800580ACPI_PRINTF_LIKE(6)
Bob Moore50df4d82008-12-31 03:01:23 +0800581void ACPI_INTERNAL_VAR_XFACE
582acpi_debug_print(u32 requested_debug_level,
583 u32 line_number,
584 const char *function_name,
585 const char *module_name,
Lv Zheng4506bf22013-10-29 09:30:16 +0800586 u32 component_id, const char *format, ...);
Bob Moore50df4d82008-12-31 03:01:23 +0800587
Lv Zheng4506bf22013-10-29 09:30:16 +0800588ACPI_PRINTF_LIKE(6)
Bob Moore50df4d82008-12-31 03:01:23 +0800589void ACPI_INTERNAL_VAR_XFACE
590acpi_debug_print_raw(u32 requested_debug_level,
591 u32 line_number,
592 const char *function_name,
593 const char *module_name,
Lv Zheng4506bf22013-10-29 09:30:16 +0800594 u32 component_id, const char *format, ...);
Bob Moore50df4d82008-12-31 03:01:23 +0800595#endif
596
Len Brown4be44fc2005-08-05 00:44:28 -0400597#endif /* __ACXFACE_H__ */