blob: b409406d3ccf94ab604bfe844b4b223a95dc1e4b [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 Moorea19ec8a2012-10-31 02:28:46 +000049#define ACPI_CA_VERSION 0x20121018
Bob Moore50df4d82008-12-31 03:01:23 +080050
David Howellsa1ce39282012-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 Zheng75c80442012-12-19 05:36:49 +000065/* Runtime configuration of debug print levels */
Bob Moore50df4d82008-12-31 03:01:23 +080066extern u32 acpi_dbg_level;
67extern u32 acpi_dbg_layer;
Lv Zheng75c80442012-12-19 05:36:49 +000068/* ACPICA runtime options */
Bob Moore50df4d82008-12-31 03:01:23 +080069extern u8 acpi_gbl_enable_interpreter_slack;
70extern u8 acpi_gbl_all_methods_serialized;
71extern u8 acpi_gbl_create_osi_method;
Bob Mooref8d80cd2009-06-02 13:28:13 +080072extern u8 acpi_gbl_use_default_register_widths;
Bob Moore50df4d82008-12-31 03:01:23 +080073extern acpi_name acpi_gbl_trace_method_name;
74extern u32 acpi_gbl_trace_flags;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103075extern bool acpi_gbl_enable_aml_debug_object;
Lin Ming69ec87e2010-04-01 11:14:12 +080076extern u8 acpi_gbl_copy_dsdt_locally;
Matthew Garrettb681f7d2010-05-26 11:50:48 +080077extern u8 acpi_gbl_truncate_io_addresses;
Bob Moored57b23a2011-07-04 08:24:03 +000078extern u8 acpi_gbl_disable_auto_repair;
Bob Moore50df4d82008-12-31 03:01:23 +080079
Bob Moore33620c52012-02-14 18:14:27 +080080/*
81 * Hardware-reduced prototypes. All interfaces that use these macros will
82 * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag
83 * is set to TRUE.
84 */
85#if (!ACPI_REDUCED_HARDWARE)
86#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
87 prototype;
88
89#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
90 prototype;
91
92#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
93 prototype;
94
95#else
96#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
97 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
98
99#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
100 static ACPI_INLINE prototype {return(AE_OK);}
101
102#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
103 static ACPI_INLINE prototype {}
104
105#endif /* !ACPI_REDUCED_HARDWARE */
106
Zhao Yakui237889b2008-12-17 16:55:18 +0800107extern u32 acpi_rsdt_forced;
Bob Moore50df4d82008-12-31 03:01:23 +0800108/*
Lv Zheng75c80442012-12-19 05:36:49 +0000109 * Initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
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
Lv Zheng75c80442012-12-19 05:36:49 +0000123/*
124 * Miscellaneous global interfaces
125 */
Bob Moore33620c52012-02-14 18:14:27 +0800126ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void))
127ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void))
Lv Zheng739dcbb2012-12-20 01:07:26 +0000128#ifdef ACPI_FUTURE_USAGE
129acpi_status acpi_subsystem_status(void);
130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400133acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#endif
135
Len Brown4be44fc2005-08-05 00:44:28 -0400136const char *acpi_format_exception(acpi_status exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Len Brown4be44fc2005-08-05 00:44:28 -0400138acpi_status acpi_purge_cached_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Lin Mingb0ed7a92010-08-06 09:35:51 +0800140acpi_status acpi_install_interface(acpi_string interface_name);
141
142acpi_status acpi_remove_interface(acpi_string interface_name);
143
Lin Mingf654c0f2012-01-12 13:10:32 +0800144u32
145acpi_check_address_range(acpi_adr_space_type space_id,
146 acpi_physical_address address,
147 acpi_size length, u8 warn);
148
Bob Moorebe030a52012-08-17 13:07:54 +0800149acpi_status
150acpi_decode_pld_buffer(u8 *in_buffer,
151 acpi_size length, struct acpi_pld_info **return_buffer);
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/*
Joe Perchesaee07ba62008-02-03 17:07:16 +0200154 * ACPI Memory management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Len Brown4be44fc2005-08-05 00:44:28 -0400156void *acpi_allocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Len Brown4be44fc2005-08-05 00:44:28 -0400158void *acpi_callocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Len Brown4be44fc2005-08-05 00:44:28 -0400160void acpi_free(void *address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162/*
Bob Mooref60d8182012-07-16 10:21:34 +0800163 * ACPI table load/unload interfaces
164 */
165acpi_status acpi_load_table(struct acpi_table_header *table);
166
167acpi_status acpi_unload_parent_table(acpi_handle object);
168
169acpi_status acpi_load_tables(void);
170
171/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * ACPI table manipulation interfaces
173 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300174acpi_status acpi_reallocate_root_table(void);
175
Bob Moore67a119f2008-06-10 13:42:13 +0800176acpi_status acpi_find_root_pointer(acpi_size *rsdp_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Bob Mooref3d2e782007-02-02 19:48:18 +0300178acpi_status acpi_unload_table_id(acpi_owner_id id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300181acpi_get_table_header(acpi_string signature,
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000182 u32 instance, struct acpi_table_header *out_table_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184acpi_status
Yinghai Lu7d972772009-02-07 15:39:41 -0800185acpi_get_table_with_size(acpi_string signature,
186 u32 instance, struct acpi_table_header **out_table,
187 acpi_size *tbl_size);
188acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300189acpi_get_table(acpi_string signature,
Bob Moore67a119f2008-06-10 13:42:13 +0800190 u32 instance, struct acpi_table_header **out_table);
Bob Mooref3d2e782007-02-02 19:48:18 +0300191
192acpi_status
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000193acpi_get_table_by_index(u32 table_index, struct acpi_table_header **out_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Lin Ming3e08e2d2008-04-10 19:06:38 +0400195acpi_status
196acpi_install_table_handler(acpi_tbl_handler handler, void *context);
197
198acpi_status acpi_remove_table_handler(acpi_tbl_handler handler);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/*
201 * Namespace and name interfaces
202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400204acpi_walk_namespace(acpi_object_type type,
205 acpi_handle start_object,
206 u32 max_depth,
Lin Ming22635762009-11-13 10:06:08 +0800207 acpi_walk_callback pre_order_visit,
208 acpi_walk_callback post_order_visit,
Len Brown4be44fc2005-08-05 00:44:28 -0400209 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211acpi_status
Al Viro70b30fb2007-08-21 16:18:20 +0100212acpi_get_devices(const char *HID,
Len Brown4be44fc2005-08-05 00:44:28 -0400213 acpi_walk_callback user_function,
214 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800217acpi_get_name(acpi_handle object,
Len Brown4be44fc2005-08-05 00:44:28 -0400218 u32 name_type, struct acpi_buffer *ret_path_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400221acpi_get_handle(acpi_handle parent,
222 acpi_string pathname, acpi_handle * ret_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800225acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data);
226
227acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800230acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Bob Moore50eca3e2005-09-30 19:03:00 -0400232acpi_status
233acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags);
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
236 * Object manipulation and enumeration
237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400239acpi_evaluate_object(acpi_handle object,
240 acpi_string pathname,
241 struct acpi_object_list *parameter_objects,
242 struct acpi_buffer *return_object_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400245acpi_evaluate_object_typed(acpi_handle object,
246 acpi_string pathname,
247 struct acpi_object_list *external_params,
248 struct acpi_buffer *return_buffer,
249 acpi_object_type return_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800252acpi_get_object_info(acpi_handle object,
Bob Moore15b8dd52009-06-29 13:39:29 +0800253 struct acpi_device_info **return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Lin Mingb2f7ddc2009-05-21 10:42:09 +0800255acpi_status acpi_install_method(u8 *buffer);
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400258acpi_get_next_object(acpi_object_type type,
259 acpi_handle parent,
260 acpi_handle child, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Len Brown4be44fc2005-08-05 00:44:28 -0400262acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
John Keller0f0fe1a2006-12-19 12:56:19 -0800264acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type);
265
Len Brown4be44fc2005-08-05 00:44:28 -0400266acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268/*
Bob Mooreecfbbc72008-12-31 02:55:32 +0800269 * Handler interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271acpi_status
Bob Mooreecfbbc72008-12-31 02:55:32 +0800272acpi_install_initialization_handler(acpi_init_handler handler, u32 function);
273
Bob Moore33620c52012-02-14 18:14:27 +0800274ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
275 acpi_install_global_event_handler
Lv Zheng644ef742012-10-31 02:25:36 +0000276 (acpi_gbl_event_handler handler, void *context))
Lin Minga0fcdb22010-12-13 13:39:26 +0800277
Bob Moore33620c52012-02-14 18:14:27 +0800278ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
279 acpi_install_fixed_event_handler(u32
280 acpi_event,
281 acpi_event_handler
282 handler,
283 void
284 *context))
285ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
286 acpi_remove_fixed_event_handler(u32 acpi_event,
287 acpi_event_handler
288 handler))
289ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
290 acpi_install_gpe_handler(acpi_handle
291 gpe_device,
292 u32 gpe_number,
293 u32 type,
294 acpi_gpe_handler
295 address,
296 void *context))
297ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
298 acpi_remove_gpe_handler(acpi_handle gpe_device,
299 u32 gpe_number,
300 acpi_gpe_handler
301 address))
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000302acpi_status acpi_install_notify_handler(acpi_handle device, u32 handler_type,
303 acpi_notify_handler handler,
304 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400307acpi_remove_notify_handler(acpi_handle device,
308 u32 handler_type, acpi_notify_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400311acpi_install_address_space_handler(acpi_handle device,
312 acpi_adr_space_type space_id,
313 acpi_adr_space_handler handler,
314 acpi_adr_space_setup setup, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400317acpi_remove_address_space_handler(acpi_handle device,
318 acpi_adr_space_type space_id,
319 acpi_adr_space_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400322acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323#endif
324
Lin Mingb0ed7a92010-08-06 09:35:51 +0800325acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/*
Lin Mingffef6822011-11-16 11:08:30 +0800328 * Global Lock interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 */
Bob Moore33620c52012-02-14 18:14:27 +0800330ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
331 acpi_acquire_global_lock(u16 timeout,
332 u32 *handle))
333ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
334 acpi_release_global_lock(u32 handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Lin Mingffef6822011-11-16 11:08:30 +0800336/*
337 * Interfaces to AML mutex objects
338 */
339acpi_status
340acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
341
342acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
343
344/*
345 * Fixed Event interfaces
346 */
Bob Moore33620c52012-02-14 18:14:27 +0800347ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
348 acpi_enable_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
351 acpi_disable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Bob Moore33620c52012-02-14 18:14:27 +0800353ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Bob Moore33620c52012-02-14 18:14:27 +0800355ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
356 acpi_get_event_status(u32 event,
357 acpi_event_status
358 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800359/*
Lin Mingffef6822011-11-16 11:08:30 +0800360 * General Purpose Event (GPE) Interfaces
Bob Moore08ac07b2008-12-30 09:55:48 +0800361 */
Bob Moore33620c52012-02-14 18:14:27 +0800362ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void))
Len Brown4be44fc2005-08-05 00:44:28 -0400363
Bob Moore33620c52012-02-14 18:14:27 +0800364ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
365 acpi_enable_gpe(acpi_handle gpe_device,
366 u32 gpe_number))
Len Brown4be44fc2005-08-05 00:44:28 -0400367
Bob Moore33620c52012-02-14 18:14:27 +0800368ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
369 acpi_disable_gpe(acpi_handle gpe_device,
370 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Bob Moore33620c52012-02-14 18:14:27 +0800372ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
373 acpi_clear_gpe(acpi_handle gpe_device,
374 u32 gpe_number))
Lin Mingbba63a22010-12-13 13:39:17 +0800375
Bob Moore33620c52012-02-14 18:14:27 +0800376ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
377 acpi_set_gpe(acpi_handle gpe_device,
378 u32 gpe_number, u8 action))
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200379
Bob Moore33620c52012-02-14 18:14:27 +0800380ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
381 acpi_finish_gpe(acpi_handle gpe_device,
382 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Bob Moore33620c52012-02-14 18:14:27 +0800384ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
385 acpi_setup_gpe_for_wake(acpi_handle
386 parent_device,
387 acpi_handle gpe_device,
388 u32 gpe_number))
389ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
390 acpi_set_gpe_wake_mask(acpi_handle gpe_device,
391 u32 gpe_number,
392 u8 action))
393ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
394 acpi_get_gpe_status(acpi_handle gpe_device,
395 u32 gpe_number,
396 acpi_event_status
397 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800398
Bob Moore33620c52012-02-14 18:14:27 +0800399ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void))
Bob Moore08ac07b2008-12-30 09:55:48 +0800400
Bob Moore33620c52012-02-14 18:14:27 +0800401ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void))
Bob Mooree97d6bf2008-12-30 09:45:17 +0800402
Bob Moore33620c52012-02-14 18:14:27 +0800403ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
404 acpi_get_gpe_device(u32 gpe_index,
405 acpi_handle * gpe_device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Bob Moore33620c52012-02-14 18:14:27 +0800407ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
408 acpi_install_gpe_block(acpi_handle gpe_device,
409 struct
410 acpi_generic_address
411 *gpe_block_address,
412 u32 register_count,
413 u32 interrupt_number))
414ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
415 acpi_remove_gpe_block(acpi_handle gpe_device))
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/*
418 * Resource interfaces
419 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420typedef
Bob Moore616861242006-03-17 16:44:00 -0500421acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
Len Brown4be44fc2005-08-05 00:44:28 -0400422 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800425acpi_get_vendor_resource(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500426 char *name,
427 struct acpi_vendor_uuid *uuid,
428 struct acpi_buffer *ret_buffer);
429
430acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800431acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433#ifdef ACPI_FUTURE_USAGE
434acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800435acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#endif
437
438acpi_status
Bob Moorea91cdde22011-11-16 14:46:57 +0800439acpi_get_event_resources(acpi_handle device_handle,
440 struct acpi_buffer *ret_buffer);
441
442acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800443acpi_walk_resources(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500444 char *name,
Bob Moore616861242006-03-17 16:44:00 -0500445 acpi_walk_resource_callback user_function, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800448acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800451acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400454acpi_resource_to_address64(struct acpi_resource *resource,
455 struct acpi_resource_address64 *out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Bob Moore0e243172011-11-16 14:51:01 +0800457acpi_status
458acpi_buffer_to_resource(u8 *aml_buffer,
459 u16 aml_buffer_length,
460 struct acpi_resource **resource_ptr);
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*
463 * Hardware (ACPI device) interfaces
464 */
Bob Moored3fd9022008-12-30 11:11:57 +0800465acpi_status acpi_reset(void);
466
Lv Zheng739dcbb2012-12-20 01:07:26 +0000467acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
468
469acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
470
Bob Moore33620c52012-02-14 18:14:27 +0800471ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
472 acpi_read_bit_register(u32 register_id,
473 u32 *return_value))
Len Brown4be44fc2005-08-05 00:44:28 -0400474
Bob Moore33620c52012-02-14 18:14:27 +0800475ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
476 acpi_write_bit_register(u32 register_id,
477 u32 value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Bob Moore33620c52012-02-14 18:14:27 +0800479/*
480 * Sleep/Wake interfaces
481 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400483acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Len Brown4be44fc2005-08-05 00:44:28 -0400485acpi_status acpi_enter_sleep_state_prep(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Len Brown3f6f49c2012-07-26 20:08:54 -0400487acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Bob Moore33620c52012-02-14 18:14:27 +0800489ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Len Brown3f6f49c2012-07-26 20:08:54 -0400491acpi_status acpi_leave_sleep_state_prep(u8 sleep_state);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100492
Len Brown4be44fc2005-08-05 00:44:28 -0400493acpi_status acpi_leave_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Lv Zheng739dcbb2012-12-20 01:07:26 +0000495ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
496 acpi_set_firmware_waking_vector(u32
497 physical_address))
498
499#if ACPI_MACHINE_WIDTH == 64
500ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
501 acpi_set_firmware_waking_vector64(u64
502 physical_address))
503#endif
Bob Moore50df4d82008-12-31 03:01:23 +0800504/*
Bob Moored08310f2012-02-14 15:22:51 +0800505 * ACPI Timer interfaces
506 */
507#ifdef ACPI_FUTURE_USAGE
Bob Moore33620c52012-02-14 18:14:27 +0800508ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
509 acpi_get_timer_resolution(u32 *resolution))
Bob Moored08310f2012-02-14 15:22:51 +0800510
Bob Moore33620c52012-02-14 18:14:27 +0800511ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_get_timer(u32 *ticks))
Bob Moored08310f2012-02-14 15:22:51 +0800512
Bob Moore33620c52012-02-14 18:14:27 +0800513ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
514 acpi_get_timer_duration(u32 start_ticks,
515 u32 end_ticks,
516 u32 *time_elapsed))
Bob Moored08310f2012-02-14 15:22:51 +0800517#endif /* ACPI_FUTURE_USAGE */
518
519/*
Bob Mooreb74be612009-04-22 10:20:23 +0800520 * Error/Warning output
Bob Moore50df4d82008-12-31 03:01:23 +0800521 */
522void ACPI_INTERNAL_VAR_XFACE
523acpi_error(const char *module_name,
524 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
525
526void ACPI_INTERNAL_VAR_XFACE
527acpi_exception(const char *module_name,
528 u32 line_number,
529 acpi_status status, const char *format, ...) ACPI_PRINTF_LIKE(4);
530
531void ACPI_INTERNAL_VAR_XFACE
532acpi_warning(const char *module_name,
533 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
534
535void ACPI_INTERNAL_VAR_XFACE
536acpi_info(const char *module_name,
537 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
538
Bob Moore62cdd142012-07-16 09:25:27 +0800539void ACPI_INTERNAL_VAR_XFACE
540acpi_bios_error(const char *module_name,
541 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
542
543void ACPI_INTERNAL_VAR_XFACE
544acpi_bios_warning(const char *module_name,
545 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
546
Bob Mooreb74be612009-04-22 10:20:23 +0800547/*
548 * Debug output
549 */
Bob Moore50df4d82008-12-31 03:01:23 +0800550#ifdef ACPI_DEBUG_OUTPUT
551
552void ACPI_INTERNAL_VAR_XFACE
553acpi_debug_print(u32 requested_debug_level,
554 u32 line_number,
555 const char *function_name,
556 const char *module_name,
557 u32 component_id, const char *format, ...) ACPI_PRINTF_LIKE(6);
558
559void ACPI_INTERNAL_VAR_XFACE
560acpi_debug_print_raw(u32 requested_debug_level,
561 u32 line_number,
562 const char *function_name,
563 const char *module_name,
564 u32 component_id,
565 const char *format, ...) ACPI_PRINTF_LIKE(6);
566#endif
567
Len Brown4be44fc2005-08-05 00:44:28 -0400568#endif /* __ACXFACE_H__ */