blob: d8b2ea673fc6950eb5cff95197d8bb6d4b7988b8 [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 Moore75e73862012-07-12 09:46:46 +08008 * Copyright (C) 2000 - 2012, 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 Mooref55994f2012-12-31 00:11:58 +000049#define ACPI_CA_VERSION 0x20121220
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 */
Lv Zheng3e8214e2012-12-19 05:37:15 +000065
Lv Zheng75c80442012-12-19 05:36:49 +000066/* Runtime configuration of debug print levels */
Lv Zheng3e8214e2012-12-19 05:37:15 +000067
Bob Moore50df4d82008-12-31 03:01:23 +080068extern u32 acpi_dbg_level;
69extern u32 acpi_dbg_layer;
Lv Zheng3e8214e2012-12-19 05:37:15 +000070
Lv Zheng75c80442012-12-19 05:36:49 +000071/* ACPICA runtime options */
Lv Zheng3e8214e2012-12-19 05:37:15 +000072
Bob Moore50df4d82008-12-31 03:01:23 +080073extern u8 acpi_gbl_enable_interpreter_slack;
74extern u8 acpi_gbl_all_methods_serialized;
75extern u8 acpi_gbl_create_osi_method;
Bob Mooref8d80cd2009-06-02 13:28:13 +080076extern u8 acpi_gbl_use_default_register_widths;
Bob Moore50df4d82008-12-31 03:01:23 +080077extern acpi_name acpi_gbl_trace_method_name;
78extern u32 acpi_gbl_trace_flags;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103079extern bool acpi_gbl_enable_aml_debug_object;
Lin Ming69ec87e2010-04-01 11:14:12 +080080extern u8 acpi_gbl_copy_dsdt_locally;
Matthew Garrettb681f7d2010-05-26 11:50:48 +080081extern u8 acpi_gbl_truncate_io_addresses;
Bob Moored57b23a2011-07-04 08:24:03 +000082extern u8 acpi_gbl_disable_auto_repair;
Bob Moore50df4d82008-12-31 03:01:23 +080083
Bob Moore33620c52012-02-14 18:14:27 +080084/*
85 * Hardware-reduced prototypes. All interfaces that use these macros will
86 * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag
87 * is set to TRUE.
88 */
89#if (!ACPI_REDUCED_HARDWARE)
90#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
91 prototype;
92
93#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
94 prototype;
95
96#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
97 prototype;
98
99#else
100#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
101 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
102
103#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
104 static ACPI_INLINE prototype {return(AE_OK);}
105
106#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
107 static ACPI_INLINE prototype {}
108
109#endif /* !ACPI_REDUCED_HARDWARE */
110
Zhao Yakui237889b2008-12-17 16:55:18 +0800111extern u32 acpi_rsdt_forced;
Bob Moore50df4d82008-12-31 03:01:23 +0800112/*
Lv Zheng75c80442012-12-19 05:36:49 +0000113 * Initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300115acpi_status
116acpi_initialize_tables(struct acpi_table_desc *initial_storage,
117 u32 initial_table_count, u8 allow_resize);
118
Len Browndd272b52007-05-30 00:26:11 -0400119acpi_status __init acpi_initialize_subsystem(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Len Brown4be44fc2005-08-05 00:44:28 -0400121acpi_status acpi_enable_subsystem(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Len Brown4be44fc2005-08-05 00:44:28 -0400123acpi_status acpi_initialize_objects(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Len Brown4be44fc2005-08-05 00:44:28 -0400125acpi_status acpi_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Lv Zheng75c80442012-12-19 05:36:49 +0000127/*
128 * Miscellaneous global interfaces
129 */
Bob Moore33620c52012-02-14 18:14:27 +0800130ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void))
131ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void))
Lv Zheng739dcbb2012-12-20 01:07:26 +0000132#ifdef ACPI_FUTURE_USAGE
133acpi_status acpi_subsystem_status(void);
134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400137acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif
139
Len Brown4be44fc2005-08-05 00:44:28 -0400140const char *acpi_format_exception(acpi_status exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Len Brown4be44fc2005-08-05 00:44:28 -0400142acpi_status acpi_purge_cached_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Lin Mingb0ed7a92010-08-06 09:35:51 +0800144acpi_status acpi_install_interface(acpi_string interface_name);
145
146acpi_status acpi_remove_interface(acpi_string interface_name);
147
Lin Mingf654c0f2012-01-12 13:10:32 +0800148u32
149acpi_check_address_range(acpi_adr_space_type space_id,
150 acpi_physical_address address,
151 acpi_size length, u8 warn);
152
Bob Moorebe030a52012-08-17 13:07:54 +0800153acpi_status
154acpi_decode_pld_buffer(u8 *in_buffer,
155 acpi_size length, struct acpi_pld_info **return_buffer);
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
Joe Perchesaee07ba2008-02-03 17:07:16 +0200158 * ACPI Memory management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Len Brown4be44fc2005-08-05 00:44:28 -0400160void *acpi_allocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Len Brown4be44fc2005-08-05 00:44:28 -0400162void *acpi_callocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Len Brown4be44fc2005-08-05 00:44:28 -0400164void acpi_free(void *address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/*
Bob Mooref60d8182012-07-16 10:21:34 +0800167 * ACPI table load/unload interfaces
168 */
169acpi_status acpi_load_table(struct acpi_table_header *table);
170
171acpi_status acpi_unload_parent_table(acpi_handle object);
172
173acpi_status acpi_load_tables(void);
174
175/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * ACPI table manipulation interfaces
177 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300178acpi_status acpi_reallocate_root_table(void);
179
Bob Moore67a119f2008-06-10 13:42:13 +0800180acpi_status acpi_find_root_pointer(acpi_size *rsdp_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Bob Mooref3d2e782007-02-02 19:48:18 +0300182acpi_status acpi_unload_table_id(acpi_owner_id id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300185acpi_get_table_header(acpi_string signature,
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000186 u32 instance, struct acpi_table_header *out_table_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188acpi_status
Yinghai Lu7d972772009-02-07 15:39:41 -0800189acpi_get_table_with_size(acpi_string signature,
190 u32 instance, struct acpi_table_header **out_table,
191 acpi_size *tbl_size);
192acpi_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,
Lin Ming22635762009-11-13 10:06:08 +0800211 acpi_walk_callback pre_order_visit,
212 acpi_walk_callback post_order_visit,
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
279 acpi_install_global_event_handler
Lv Zheng644ef742012-10-31 02:25:36 +0000280 (acpi_gbl_event_handler handler, void *context))
Lin Minga0fcdb22010-12-13 13:39:26 +0800281
Bob Moore33620c52012-02-14 18:14:27 +0800282ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
283 acpi_install_fixed_event_handler(u32
284 acpi_event,
285 acpi_event_handler
286 handler,
287 void
288 *context))
289ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
290 acpi_remove_fixed_event_handler(u32 acpi_event,
291 acpi_event_handler
292 handler))
293ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
294 acpi_install_gpe_handler(acpi_handle
295 gpe_device,
296 u32 gpe_number,
297 u32 type,
298 acpi_gpe_handler
299 address,
300 void *context))
301ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
302 acpi_remove_gpe_handler(acpi_handle gpe_device,
303 u32 gpe_number,
304 acpi_gpe_handler
305 address))
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000306acpi_status acpi_install_notify_handler(acpi_handle device, u32 handler_type,
307 acpi_notify_handler handler,
308 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400311acpi_remove_notify_handler(acpi_handle device,
312 u32 handler_type, acpi_notify_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400315acpi_install_address_space_handler(acpi_handle device,
316 acpi_adr_space_type space_id,
317 acpi_adr_space_handler handler,
318 acpi_adr_space_setup setup, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400321acpi_remove_address_space_handler(acpi_handle device,
322 acpi_adr_space_type space_id,
323 acpi_adr_space_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400326acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#endif
328
Lin Mingb0ed7a92010-08-06 09:35:51 +0800329acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/*
Lin Mingffef6822011-11-16 11:08:30 +0800332 * Global Lock interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
Bob Moore33620c52012-02-14 18:14:27 +0800334ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
335 acpi_acquire_global_lock(u16 timeout,
336 u32 *handle))
337ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
338 acpi_release_global_lock(u32 handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Lin Mingffef6822011-11-16 11:08:30 +0800340/*
341 * Interfaces to AML mutex objects
342 */
343acpi_status
344acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
345
346acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
347
348/*
349 * Fixed Event interfaces
350 */
Bob Moore33620c52012-02-14 18:14:27 +0800351ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
352 acpi_enable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Bob Moore33620c52012-02-14 18:14:27 +0800354ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
355 acpi_disable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Bob Moore33620c52012-02-14 18:14:27 +0800357ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Bob Moore33620c52012-02-14 18:14:27 +0800359ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
360 acpi_get_event_status(u32 event,
361 acpi_event_status
362 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800363/*
Lin Mingffef6822011-11-16 11:08:30 +0800364 * General Purpose Event (GPE) Interfaces
Bob Moore08ac07b2008-12-30 09:55:48 +0800365 */
Bob Moore33620c52012-02-14 18:14:27 +0800366ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void))
Len Brown4be44fc2005-08-05 00:44:28 -0400367
Bob Moore33620c52012-02-14 18:14:27 +0800368ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
369 acpi_enable_gpe(acpi_handle gpe_device,
370 u32 gpe_number))
Len Brown4be44fc2005-08-05 00:44:28 -0400371
Bob Moore33620c52012-02-14 18:14:27 +0800372ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
373 acpi_disable_gpe(acpi_handle gpe_device,
374 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Bob Moore33620c52012-02-14 18:14:27 +0800376ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
377 acpi_clear_gpe(acpi_handle gpe_device,
378 u32 gpe_number))
Lin Mingbba63a22010-12-13 13:39:17 +0800379
Bob Moore33620c52012-02-14 18:14:27 +0800380ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
381 acpi_set_gpe(acpi_handle gpe_device,
382 u32 gpe_number, u8 action))
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200383
Bob Moore33620c52012-02-14 18:14:27 +0800384ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
385 acpi_finish_gpe(acpi_handle gpe_device,
386 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Bob Moore33620c52012-02-14 18:14:27 +0800388ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
389 acpi_setup_gpe_for_wake(acpi_handle
390 parent_device,
391 acpi_handle gpe_device,
392 u32 gpe_number))
393ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
394 acpi_set_gpe_wake_mask(acpi_handle gpe_device,
395 u32 gpe_number,
396 u8 action))
397ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
398 acpi_get_gpe_status(acpi_handle gpe_device,
399 u32 gpe_number,
400 acpi_event_status
401 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800402
Bob Moore33620c52012-02-14 18:14:27 +0800403ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void))
Bob Moore08ac07b2008-12-30 09:55:48 +0800404
Bob Moore33620c52012-02-14 18:14:27 +0800405ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void))
Bob Mooree97d6bf2008-12-30 09:45:17 +0800406
Bob Moore33620c52012-02-14 18:14:27 +0800407ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
408 acpi_get_gpe_device(u32 gpe_index,
409 acpi_handle * gpe_device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bob Moore33620c52012-02-14 18:14:27 +0800411ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
412 acpi_install_gpe_block(acpi_handle gpe_device,
413 struct
414 acpi_generic_address
415 *gpe_block_address,
416 u32 register_count,
417 u32 interrupt_number))
418ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
419 acpi_remove_gpe_block(acpi_handle gpe_device))
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/*
422 * Resource interfaces
423 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424typedef
Bob Moore616861242006-03-17 16:44:00 -0500425acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
Len Brown4be44fc2005-08-05 00:44:28 -0400426 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800429acpi_get_vendor_resource(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500430 char *name,
431 struct acpi_vendor_uuid *uuid,
432 struct acpi_buffer *ret_buffer);
433
434acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800435acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437#ifdef ACPI_FUTURE_USAGE
438acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800439acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440#endif
441
442acpi_status
Bob Moorea91cdde2011-11-16 14:46:57 +0800443acpi_get_event_resources(acpi_handle device_handle,
444 struct acpi_buffer *ret_buffer);
445
446acpi_status
Bob Mooreafb1bbe2012-12-31 00:03:58 +0000447acpi_walk_resource_buffer(struct acpi_buffer *buffer,
448 acpi_walk_resource_callback user_function,
449 void *context);
450
451acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800452acpi_walk_resources(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500453 char *name,
Bob Moore616861242006-03-17 16:44:00 -0500454 acpi_walk_resource_callback user_function, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800457acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800460acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400463acpi_resource_to_address64(struct acpi_resource *resource,
464 struct acpi_resource_address64 *out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Bob Moore0e243172011-11-16 14:51:01 +0800466acpi_status
467acpi_buffer_to_resource(u8 *aml_buffer,
468 u16 aml_buffer_length,
469 struct acpi_resource **resource_ptr);
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/*
472 * Hardware (ACPI device) interfaces
473 */
Bob Moored3fd9022008-12-30 11:11:57 +0800474acpi_status acpi_reset(void);
475
Lv Zheng739dcbb2012-12-20 01:07:26 +0000476acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
477
478acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
479
Bob Moore33620c52012-02-14 18:14:27 +0800480ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
481 acpi_read_bit_register(u32 register_id,
482 u32 *return_value))
Len Brown4be44fc2005-08-05 00:44:28 -0400483
Bob Moore33620c52012-02-14 18:14:27 +0800484ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
485 acpi_write_bit_register(u32 register_id,
486 u32 value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Bob Moore33620c52012-02-14 18:14:27 +0800488/*
489 * Sleep/Wake interfaces
490 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400492acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Len Brown4be44fc2005-08-05 00:44:28 -0400494acpi_status acpi_enter_sleep_state_prep(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Len Brown3f6f49c2012-07-26 20:08:54 -0400496acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Bob Moore33620c52012-02-14 18:14:27 +0800498ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Len Brown3f6f49c2012-07-26 20:08:54 -0400500acpi_status acpi_leave_sleep_state_prep(u8 sleep_state);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100501
Len Brown4be44fc2005-08-05 00:44:28 -0400502acpi_status acpi_leave_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Lv Zheng739dcbb2012-12-20 01:07:26 +0000504ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
505 acpi_set_firmware_waking_vector(u32
506 physical_address))
507
508#if ACPI_MACHINE_WIDTH == 64
509ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
510 acpi_set_firmware_waking_vector64(u64
511 physical_address))
512#endif
Bob Moore50df4d82008-12-31 03:01:23 +0800513/*
Bob Moored08310f2012-02-14 15:22:51 +0800514 * ACPI Timer interfaces
515 */
516#ifdef ACPI_FUTURE_USAGE
Bob Moore33620c52012-02-14 18:14:27 +0800517ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
518 acpi_get_timer_resolution(u32 *resolution))
Bob Moored08310f2012-02-14 15:22:51 +0800519
Bob Moore33620c52012-02-14 18:14:27 +0800520ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_get_timer(u32 *ticks))
Bob Moored08310f2012-02-14 15:22:51 +0800521
Bob Moore33620c52012-02-14 18:14:27 +0800522ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
523 acpi_get_timer_duration(u32 start_ticks,
524 u32 end_ticks,
525 u32 *time_elapsed))
Bob Moored08310f2012-02-14 15:22:51 +0800526#endif /* ACPI_FUTURE_USAGE */
527
528/*
Bob Mooreb74be612009-04-22 10:20:23 +0800529 * Error/Warning output
Bob Moore50df4d82008-12-31 03:01:23 +0800530 */
531void ACPI_INTERNAL_VAR_XFACE
532acpi_error(const char *module_name,
533 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
534
535void ACPI_INTERNAL_VAR_XFACE
536acpi_exception(const char *module_name,
537 u32 line_number,
538 acpi_status status, const char *format, ...) ACPI_PRINTF_LIKE(4);
539
540void ACPI_INTERNAL_VAR_XFACE
541acpi_warning(const char *module_name,
542 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
543
544void ACPI_INTERNAL_VAR_XFACE
545acpi_info(const char *module_name,
546 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
547
Bob Moore62cdd142012-07-16 09:25:27 +0800548void ACPI_INTERNAL_VAR_XFACE
549acpi_bios_error(const char *module_name,
550 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
551
552void ACPI_INTERNAL_VAR_XFACE
553acpi_bios_warning(const char *module_name,
554 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
555
Bob Mooreb74be612009-04-22 10:20:23 +0800556/*
557 * Debug output
558 */
Bob Moore50df4d82008-12-31 03:01:23 +0800559#ifdef ACPI_DEBUG_OUTPUT
560
561void ACPI_INTERNAL_VAR_XFACE
562acpi_debug_print(u32 requested_debug_level,
563 u32 line_number,
564 const char *function_name,
565 const char *module_name,
566 u32 component_id, const char *format, ...) ACPI_PRINTF_LIKE(6);
567
568void ACPI_INTERNAL_VAR_XFACE
569acpi_debug_print_raw(u32 requested_debug_level,
570 u32 line_number,
571 const char *function_name,
572 const char *module_name,
573 u32 component_id,
574 const char *format, ...) ACPI_PRINTF_LIKE(6);
575#endif
576
Len Brown4be44fc2005-08-05 00:44:28 -0400577#endif /* __ACXFACE_H__ */