blob: 26a92fc28a590ce68a198b326632835f46cda1d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/******************************************************************************
3 *
4 * Name: acpixf.h - External interfaces to the ACPI subsystem
5 *
6 *****************************************************************************/
7
8/*
Bob Moore75e73862012-07-12 09:46:46 +08009 * Copyright (C) 2000 - 2012, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
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.
26 *
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.
30 *
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.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#ifndef __ACXFACE_H__
46#define __ACXFACE_H__
47
Bob Moore50df4d82008-12-31 03:01:23 +080048/* Current ACPICA subsystem version in YYYYMMDD format */
49
Bob Moore819f1a62012-07-16 10:36:33 +080050#define ACPI_CA_VERSION 0x20120711
Bob Moore50df4d82008-12-31 03:01:23 +080051
Bob Moore33620c52012-02-14 18:14:27 +080052#include "acconfig.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "actypes.h"
54#include "actbl.h"
55
Lin Ming889c78b2008-12-31 09:23:57 +080056extern u8 acpi_gbl_permanent_mmap;
57
Robert Moore44f6c012005-04-18 22:49:35 -040058/*
Lucas De Marchi58f87ed2010-09-07 12:49:45 -040059 * Globals that are publicly available, allowing for
Bob Moore50df4d82008-12-31 03:01:23 +080060 * run time configuration
61 */
62extern u32 acpi_dbg_level;
63extern u32 acpi_dbg_layer;
64extern u8 acpi_gbl_enable_interpreter_slack;
65extern u8 acpi_gbl_all_methods_serialized;
66extern u8 acpi_gbl_create_osi_method;
Bob Mooref8d80cd2009-06-02 13:28:13 +080067extern u8 acpi_gbl_use_default_register_widths;
Bob Moore50df4d82008-12-31 03:01:23 +080068extern acpi_name acpi_gbl_trace_method_name;
69extern u32 acpi_gbl_trace_flags;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103070extern bool acpi_gbl_enable_aml_debug_object;
Lin Ming69ec87e2010-04-01 11:14:12 +080071extern u8 acpi_gbl_copy_dsdt_locally;
Matthew Garrettb681f7d2010-05-26 11:50:48 +080072extern u8 acpi_gbl_truncate_io_addresses;
Bob Moored57b23a2011-07-04 08:24:03 +000073extern u8 acpi_gbl_disable_auto_repair;
Bob Moore50df4d82008-12-31 03:01:23 +080074
Bob Moore33620c52012-02-14 18:14:27 +080075/*
76 * Hardware-reduced prototypes. All interfaces that use these macros will
77 * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag
78 * is set to TRUE.
79 */
80#if (!ACPI_REDUCED_HARDWARE)
81#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
82 prototype;
83
84#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
85 prototype;
86
87#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
88 prototype;
89
90#else
91#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
92 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
93
94#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
95 static ACPI_INLINE prototype {return(AE_OK);}
96
97#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
98 static ACPI_INLINE prototype {}
99
100#endif /* !ACPI_REDUCED_HARDWARE */
101
Bob Moore50df4d82008-12-31 03:01:23 +0800102extern u32 acpi_current_gpe_count;
103extern struct acpi_table_fadt acpi_gbl_FADT;
Bob Moore31b3d4c2010-09-15 14:02:56 +0800104extern u8 acpi_gbl_system_awake_and_running;
Bob Moore22e5b402011-11-16 10:57:28 +0800105extern u8 acpi_gbl_reduced_hardware; /* ACPI 5.0 */
Bob Moore50df4d82008-12-31 03:01:23 +0800106
Zhao Yakui237889b2008-12-17 16:55:18 +0800107extern u32 acpi_rsdt_forced;
Bob Moore50df4d82008-12-31 03:01:23 +0800108/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * Global interfaces
110 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300111acpi_status
112acpi_initialize_tables(struct acpi_table_desc *initial_storage,
113 u32 initial_table_count, u8 allow_resize);
114
Len Browndd272b52007-05-30 00:26:11 -0400115acpi_status __init acpi_initialize_subsystem(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Len Brown4be44fc2005-08-05 00:44:28 -0400117acpi_status acpi_enable_subsystem(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Len Brown4be44fc2005-08-05 00:44:28 -0400119acpi_status acpi_initialize_objects(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Len Brown4be44fc2005-08-05 00:44:28 -0400121acpi_status acpi_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400124acpi_status acpi_subsystem_status(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif
126
Bob Moore33620c52012-02-14 18:14:27 +0800127ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void))
128ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400131acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#endif
133
Len Brown4be44fc2005-08-05 00:44:28 -0400134const char *acpi_format_exception(acpi_status exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Len Brown4be44fc2005-08-05 00:44:28 -0400136acpi_status acpi_purge_cached_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Lin Mingb0ed7a92010-08-06 09:35:51 +0800138acpi_status acpi_install_interface(acpi_string interface_name);
139
140acpi_status acpi_remove_interface(acpi_string interface_name);
141
Lin Mingf654c0f2012-01-12 13:10:32 +0800142u32
143acpi_check_address_range(acpi_adr_space_type space_id,
144 acpi_physical_address address,
145 acpi_size length, u8 warn);
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
Joe Perchesaee07ba2008-02-03 17:07:16 +0200148 * ACPI Memory management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
Len Brown4be44fc2005-08-05 00:44:28 -0400150void *acpi_allocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Len Brown4be44fc2005-08-05 00:44:28 -0400152void *acpi_callocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Len Brown4be44fc2005-08-05 00:44:28 -0400154void acpi_free(void *address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/*
Bob Mooref60d8182012-07-16 10:21:34 +0800157 * ACPI table load/unload interfaces
158 */
159acpi_status acpi_load_table(struct acpi_table_header *table);
160
161acpi_status acpi_unload_parent_table(acpi_handle object);
162
163acpi_status acpi_load_tables(void);
164
165/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * ACPI table manipulation interfaces
167 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300168acpi_status acpi_reallocate_root_table(void);
169
Bob Moore67a119f2008-06-10 13:42:13 +0800170acpi_status acpi_find_root_pointer(acpi_size *rsdp_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Bob Mooref3d2e782007-02-02 19:48:18 +0300172acpi_status acpi_unload_table_id(acpi_owner_id id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300175acpi_get_table_header(acpi_string signature,
Bob Moore67a119f2008-06-10 13:42:13 +0800176 u32 instance,
Alexey Starikovskiy428f2112007-02-02 19:48:22 +0300177 struct acpi_table_header *out_table_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179acpi_status
Yinghai Lu7d972772009-02-07 15:39:41 -0800180acpi_get_table_with_size(acpi_string signature,
181 u32 instance, struct acpi_table_header **out_table,
182 acpi_size *tbl_size);
183acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300184acpi_get_table(acpi_string signature,
Bob Moore67a119f2008-06-10 13:42:13 +0800185 u32 instance, struct acpi_table_header **out_table);
Bob Mooref3d2e782007-02-02 19:48:18 +0300186
187acpi_status
Bob Moore67a119f2008-06-10 13:42:13 +0800188acpi_get_table_by_index(u32 table_index,
Bob Mooref3d2e782007-02-02 19:48:18 +0300189 struct acpi_table_header **out_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Lin Ming3e08e2d2008-04-10 19:06:38 +0400191acpi_status
192acpi_install_table_handler(acpi_tbl_handler handler, void *context);
193
194acpi_status acpi_remove_table_handler(acpi_tbl_handler handler);
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
197 * Namespace and name interfaces
198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400200acpi_walk_namespace(acpi_object_type type,
201 acpi_handle start_object,
202 u32 max_depth,
Lin Ming22635762009-11-13 10:06:08 +0800203 acpi_walk_callback pre_order_visit,
204 acpi_walk_callback post_order_visit,
Len Brown4be44fc2005-08-05 00:44:28 -0400205 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207acpi_status
Al Viro70b30fb2007-08-21 16:18:20 +0100208acpi_get_devices(const char *HID,
Len Brown4be44fc2005-08-05 00:44:28 -0400209 acpi_walk_callback user_function,
210 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800213acpi_get_name(acpi_handle object,
Len Brown4be44fc2005-08-05 00:44:28 -0400214 u32 name_type, struct acpi_buffer *ret_path_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400217acpi_get_handle(acpi_handle parent,
218 acpi_string pathname, acpi_handle * ret_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800221acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data);
222
223acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800226acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Bob Moore50eca3e2005-09-30 19:03:00 -0400228acpi_status
229acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags);
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
232 * Object manipulation and enumeration
233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400235acpi_evaluate_object(acpi_handle object,
236 acpi_string pathname,
237 struct acpi_object_list *parameter_objects,
238 struct acpi_buffer *return_object_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400241acpi_evaluate_object_typed(acpi_handle object,
242 acpi_string pathname,
243 struct acpi_object_list *external_params,
244 struct acpi_buffer *return_buffer,
245 acpi_object_type return_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800248acpi_get_object_info(acpi_handle object,
Bob Moore15b8dd52009-06-29 13:39:29 +0800249 struct acpi_device_info **return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Lin Mingb2f7ddc2009-05-21 10:42:09 +0800251acpi_status acpi_install_method(u8 *buffer);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400254acpi_get_next_object(acpi_object_type type,
255 acpi_handle parent,
256 acpi_handle child, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Len Brown4be44fc2005-08-05 00:44:28 -0400258acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
John Keller0f0fe1a2006-12-19 12:56:19 -0800260acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type);
261
Len Brown4be44fc2005-08-05 00:44:28 -0400262acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264/*
Bob Mooreecfbbc72008-12-31 02:55:32 +0800265 * Handler interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267acpi_status
Bob Mooreecfbbc72008-12-31 02:55:32 +0800268acpi_install_initialization_handler(acpi_init_handler handler, u32 function);
269
Bob Moore33620c52012-02-14 18:14:27 +0800270ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
271 acpi_install_global_event_handler
272 (ACPI_GBL_EVENT_HANDLER handler, void *context))
Lin Minga0fcdb22010-12-13 13:39:26 +0800273
Bob Moore33620c52012-02-14 18:14:27 +0800274ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
275 acpi_install_fixed_event_handler(u32
276 acpi_event,
277 acpi_event_handler
278 handler,
279 void
280 *context))
281ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
282 acpi_remove_fixed_event_handler(u32 acpi_event,
283 acpi_event_handler
284 handler))
285ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
286 acpi_install_gpe_handler(acpi_handle
287 gpe_device,
288 u32 gpe_number,
289 u32 type,
290 acpi_gpe_handler
291 address,
292 void *context))
293ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
294 acpi_remove_gpe_handler(acpi_handle gpe_device,
295 u32 gpe_number,
296 acpi_gpe_handler
297 address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400299acpi_install_notify_handler(acpi_handle device,
300 u32 handler_type,
301 acpi_notify_handler handler, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400304acpi_remove_notify_handler(acpi_handle device,
305 u32 handler_type, acpi_notify_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400308acpi_install_address_space_handler(acpi_handle device,
309 acpi_adr_space_type space_id,
310 acpi_adr_space_handler handler,
311 acpi_adr_space_setup setup, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400314acpi_remove_address_space_handler(acpi_handle device,
315 acpi_adr_space_type space_id,
316 acpi_adr_space_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400319acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#endif
321
Lin Mingb0ed7a92010-08-06 09:35:51 +0800322acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/*
Lin Mingffef6822011-11-16 11:08:30 +0800325 * Global Lock interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 */
Bob Moore33620c52012-02-14 18:14:27 +0800327ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
328 acpi_acquire_global_lock(u16 timeout,
329 u32 *handle))
330ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
331 acpi_release_global_lock(u32 handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Lin Mingffef6822011-11-16 11:08:30 +0800333/*
334 * Interfaces to AML mutex objects
335 */
336acpi_status
337acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
338
339acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
340
341/*
342 * Fixed Event interfaces
343 */
Bob Moore33620c52012-02-14 18:14:27 +0800344ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
345 acpi_enable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Bob Moore33620c52012-02-14 18:14:27 +0800347ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
348 acpi_disable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Bob Moore33620c52012-02-14 18:14:27 +0800350ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Bob Moore33620c52012-02-14 18:14:27 +0800352ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
353 acpi_get_event_status(u32 event,
354 acpi_event_status
355 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800356/*
Lin Mingffef6822011-11-16 11:08:30 +0800357 * General Purpose Event (GPE) Interfaces
Bob Moore08ac07b2008-12-30 09:55:48 +0800358 */
Bob Moore33620c52012-02-14 18:14:27 +0800359ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void))
Len Brown4be44fc2005-08-05 00:44:28 -0400360
Bob Moore33620c52012-02-14 18:14:27 +0800361ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
362 acpi_enable_gpe(acpi_handle gpe_device,
363 u32 gpe_number))
Len Brown4be44fc2005-08-05 00:44:28 -0400364
Bob Moore33620c52012-02-14 18:14:27 +0800365ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
366 acpi_disable_gpe(acpi_handle gpe_device,
367 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Bob Moore33620c52012-02-14 18:14:27 +0800369ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
370 acpi_clear_gpe(acpi_handle gpe_device,
371 u32 gpe_number))
Lin Mingbba63a22010-12-13 13:39:17 +0800372
Bob Moore33620c52012-02-14 18:14:27 +0800373ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
374 acpi_set_gpe(acpi_handle gpe_device,
375 u32 gpe_number, u8 action))
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200376
Bob Moore33620c52012-02-14 18:14:27 +0800377ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
378 acpi_finish_gpe(acpi_handle gpe_device,
379 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Bob Moore33620c52012-02-14 18:14:27 +0800381ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
382 acpi_setup_gpe_for_wake(acpi_handle
383 parent_device,
384 acpi_handle gpe_device,
385 u32 gpe_number))
386ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
387 acpi_set_gpe_wake_mask(acpi_handle gpe_device,
388 u32 gpe_number,
389 u8 action))
390ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
391 acpi_get_gpe_status(acpi_handle gpe_device,
392 u32 gpe_number,
393 acpi_event_status
394 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800395
Bob Moore33620c52012-02-14 18:14:27 +0800396ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void))
Bob Moore08ac07b2008-12-30 09:55:48 +0800397
Bob Moore33620c52012-02-14 18:14:27 +0800398ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void))
Bob Mooree97d6bf2008-12-30 09:45:17 +0800399
Bob Moore33620c52012-02-14 18:14:27 +0800400ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
401 acpi_get_gpe_device(u32 gpe_index,
402 acpi_handle * gpe_device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Bob Moore33620c52012-02-14 18:14:27 +0800404ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
405 acpi_install_gpe_block(acpi_handle gpe_device,
406 struct
407 acpi_generic_address
408 *gpe_block_address,
409 u32 register_count,
410 u32 interrupt_number))
411ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
412 acpi_remove_gpe_block(acpi_handle gpe_device))
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414/*
415 * Resource interfaces
416 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417typedef
Bob Moore616861242006-03-17 16:44:00 -0500418acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
Len Brown4be44fc2005-08-05 00:44:28 -0400419 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800422acpi_get_vendor_resource(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500423 char *name,
424 struct acpi_vendor_uuid *uuid,
425 struct acpi_buffer *ret_buffer);
426
427acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800428acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430#ifdef ACPI_FUTURE_USAGE
431acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800432acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433#endif
434
435acpi_status
Bob Moorea91cdde2011-11-16 14:46:57 +0800436acpi_get_event_resources(acpi_handle device_handle,
437 struct acpi_buffer *ret_buffer);
438
439acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800440acpi_walk_resources(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500441 char *name,
Bob Moore616861242006-03-17 16:44:00 -0500442 acpi_walk_resource_callback user_function, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800445acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800448acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400451acpi_resource_to_address64(struct acpi_resource *resource,
452 struct acpi_resource_address64 *out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Bob Moore0e243172011-11-16 14:51:01 +0800454acpi_status
455acpi_buffer_to_resource(u8 *aml_buffer,
456 u16 aml_buffer_length,
457 struct acpi_resource **resource_ptr);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/*
460 * Hardware (ACPI device) interfaces
461 */
Bob Moored3fd9022008-12-30 11:11:57 +0800462acpi_status acpi_reset(void);
463
Bob Moore33620c52012-02-14 18:14:27 +0800464ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
465 acpi_read_bit_register(u32 register_id,
466 u32 *return_value))
Len Brown4be44fc2005-08-05 00:44:28 -0400467
Bob Moore33620c52012-02-14 18:14:27 +0800468ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
469 acpi_write_bit_register(u32 register_id,
470 u32 value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Bob Moore33620c52012-02-14 18:14:27 +0800472ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
473 acpi_set_firmware_waking_vector(u32
474 physical_address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Bob Moore4f70e372009-02-18 14:52:43 +0800476#if ACPI_MACHINE_WIDTH == 64
Bob Moore33620c52012-02-14 18:14:27 +0800477ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
478 acpi_set_firmware_waking_vector64(u64
479 physical_address))
Bob Moore4f70e372009-02-18 14:52:43 +0800480#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Bob Moorec6b57742009-06-24 09:44:06 +0800482acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
Bob Mooreecfbbc72008-12-31 02:55:32 +0800483
Bob Moorec6b57742009-06-24 09:44:06 +0800484acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
Bob Mooreecfbbc72008-12-31 02:55:32 +0800485
Bob Moore33620c52012-02-14 18:14:27 +0800486/*
487 * Sleep/Wake interfaces
488 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400490acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Len Brown4be44fc2005-08-05 00:44:28 -0400492acpi_status acpi_enter_sleep_state_prep(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Len Brown3f6f49c2012-07-26 20:08:54 -0400494acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Bob Moore33620c52012-02-14 18:14:27 +0800496ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Len Brown3f6f49c2012-07-26 20:08:54 -0400498acpi_status acpi_leave_sleep_state_prep(u8 sleep_state);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100499
Len Brown4be44fc2005-08-05 00:44:28 -0400500acpi_status acpi_leave_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Bob Moore50df4d82008-12-31 03:01:23 +0800502/*
Bob Moored08310f2012-02-14 15:22:51 +0800503 * ACPI Timer interfaces
504 */
505#ifdef ACPI_FUTURE_USAGE
Bob Moore33620c52012-02-14 18:14:27 +0800506ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
507 acpi_get_timer_resolution(u32 *resolution))
Bob Moored08310f2012-02-14 15:22:51 +0800508
Bob Moore33620c52012-02-14 18:14:27 +0800509ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_get_timer(u32 *ticks))
Bob Moored08310f2012-02-14 15:22:51 +0800510
Bob Moore33620c52012-02-14 18:14:27 +0800511ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
512 acpi_get_timer_duration(u32 start_ticks,
513 u32 end_ticks,
514 u32 *time_elapsed))
Bob Moored08310f2012-02-14 15:22:51 +0800515#endif /* ACPI_FUTURE_USAGE */
516
517/*
Bob Mooreb74be612009-04-22 10:20:23 +0800518 * Error/Warning output
Bob Moore50df4d82008-12-31 03:01:23 +0800519 */
520void ACPI_INTERNAL_VAR_XFACE
521acpi_error(const char *module_name,
522 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
523
524void ACPI_INTERNAL_VAR_XFACE
525acpi_exception(const char *module_name,
526 u32 line_number,
527 acpi_status status, const char *format, ...) ACPI_PRINTF_LIKE(4);
528
529void ACPI_INTERNAL_VAR_XFACE
530acpi_warning(const char *module_name,
531 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
532
533void ACPI_INTERNAL_VAR_XFACE
534acpi_info(const char *module_name,
535 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
536
Bob Moore62cdd142012-07-16 09:25:27 +0800537void ACPI_INTERNAL_VAR_XFACE
538acpi_bios_error(const char *module_name,
539 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
540
541void ACPI_INTERNAL_VAR_XFACE
542acpi_bios_warning(const char *module_name,
543 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
544
Bob Mooreb74be612009-04-22 10:20:23 +0800545/*
546 * Debug output
547 */
Bob Moore50df4d82008-12-31 03:01:23 +0800548#ifdef ACPI_DEBUG_OUTPUT
549
550void ACPI_INTERNAL_VAR_XFACE
551acpi_debug_print(u32 requested_debug_level,
552 u32 line_number,
553 const char *function_name,
554 const char *module_name,
555 u32 component_id, const char *format, ...) ACPI_PRINTF_LIKE(6);
556
557void ACPI_INTERNAL_VAR_XFACE
558acpi_debug_print_raw(u32 requested_debug_level,
559 u32 line_number,
560 const char *function_name,
561 const char *module_name,
562 u32 component_id,
563 const char *format, ...) ACPI_PRINTF_LIKE(6);
564#endif
565
Len Brown4be44fc2005-08-05 00:44:28 -0400566#endif /* __ACXFACE_H__ */