blob: 85bfdbe178052bd2231dce137b1463d174b2bffe [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 Moore36b99b22013-08-08 15:30:11 +080049#define ACPI_CA_VERSION 0x20130725
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_enable_interpreter_slack;
75extern u8 acpi_gbl_all_methods_serialized;
76extern u8 acpi_gbl_create_osi_method;
Bob Mooref8d80cd2009-06-02 13:28:13 +080077extern u8 acpi_gbl_use_default_register_widths;
Bob Moore50df4d82008-12-31 03:01:23 +080078extern acpi_name acpi_gbl_trace_method_name;
79extern u32 acpi_gbl_trace_flags;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103080extern bool acpi_gbl_enable_aml_debug_object;
Lin Ming69ec87e2010-04-01 11:14:12 +080081extern u8 acpi_gbl_copy_dsdt_locally;
Matthew Garrettb681f7d2010-05-26 11:50:48 +080082extern u8 acpi_gbl_truncate_io_addresses;
Bob Moored57b23a2011-07-04 08:24:03 +000083extern u8 acpi_gbl_disable_auto_repair;
Lv Zhengb75dd292013-06-08 00:58:48 +000084extern u8 acpi_gbl_disable_ssdt_table_load;
Bob Moore50df4d82008-12-31 03:01:23 +080085
Bob Moore33620c52012-02-14 18:14:27 +080086/*
87 * Hardware-reduced prototypes. All interfaces that use these macros will
88 * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag
89 * is set to TRUE.
90 */
91#if (!ACPI_REDUCED_HARDWARE)
92#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
93 prototype;
94
95#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
96 prototype;
97
98#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
99 prototype;
100
101#else
102#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
103 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
104
105#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
106 static ACPI_INLINE prototype {return(AE_OK);}
107
108#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
109 static ACPI_INLINE prototype {}
110
111#endif /* !ACPI_REDUCED_HARDWARE */
112
Zhao Yakui237889b2008-12-17 16:55:18 +0800113extern u32 acpi_rsdt_forced;
Bob Moore50df4d82008-12-31 03:01:23 +0800114/*
Lv Zheng75c80442012-12-19 05:36:49 +0000115 * Initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300117acpi_status
118acpi_initialize_tables(struct acpi_table_desc *initial_storage,
119 u32 initial_table_count, u8 allow_resize);
120
Len Browndd272b52007-05-30 00:26:11 -0400121acpi_status __init acpi_initialize_subsystem(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Len Brown4be44fc2005-08-05 00:44:28 -0400123acpi_status acpi_enable_subsystem(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Len Brown4be44fc2005-08-05 00:44:28 -0400125acpi_status acpi_initialize_objects(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Len Brown4be44fc2005-08-05 00:44:28 -0400127acpi_status acpi_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Lv Zheng75c80442012-12-19 05:36:49 +0000129/*
130 * Miscellaneous global interfaces
131 */
Bob Moore33620c52012-02-14 18:14:27 +0800132ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void))
133ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void))
Lv Zheng739dcbb2012-12-20 01:07:26 +0000134#ifdef ACPI_FUTURE_USAGE
135acpi_status acpi_subsystem_status(void);
136#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400139acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#endif
141
Len Brown4be44fc2005-08-05 00:44:28 -0400142const char *acpi_format_exception(acpi_status exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Len Brown4be44fc2005-08-05 00:44:28 -0400144acpi_status acpi_purge_cached_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Lin Mingb0ed7a92010-08-06 09:35:51 +0800146acpi_status acpi_install_interface(acpi_string interface_name);
147
148acpi_status acpi_remove_interface(acpi_string interface_name);
149
Lv Zheng2cf9f5b2013-07-22 16:08:16 +0800150acpi_status acpi_update_interfaces(u8 action);
151
Lin Mingf654c0f2012-01-12 13:10:32 +0800152u32
153acpi_check_address_range(acpi_adr_space_type space_id,
154 acpi_physical_address address,
155 acpi_size length, u8 warn);
156
Bob Moorebe030a52012-08-17 13:07:54 +0800157acpi_status
158acpi_decode_pld_buffer(u8 *in_buffer,
159 acpi_size length, struct acpi_pld_info **return_buffer);
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
Joe Perchesaee07ba2008-02-03 17:07:16 +0200162 * ACPI Memory management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Len Brown4be44fc2005-08-05 00:44:28 -0400164void *acpi_allocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Len Brown4be44fc2005-08-05 00:44:28 -0400166void *acpi_callocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Len Brown4be44fc2005-08-05 00:44:28 -0400168void acpi_free(void *address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/*
Bob Mooref60d8182012-07-16 10:21:34 +0800171 * ACPI table load/unload interfaces
172 */
173acpi_status acpi_load_table(struct acpi_table_header *table);
174
175acpi_status acpi_unload_parent_table(acpi_handle object);
176
177acpi_status acpi_load_tables(void);
178
179/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * ACPI table manipulation interfaces
181 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300182acpi_status acpi_reallocate_root_table(void);
183
Bob Moore67a119f2008-06-10 13:42:13 +0800184acpi_status acpi_find_root_pointer(acpi_size *rsdp_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Bob Mooref3d2e782007-02-02 19:48:18 +0300186acpi_status acpi_unload_table_id(acpi_owner_id id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300189acpi_get_table_header(acpi_string signature,
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000190 u32 instance, struct acpi_table_header *out_table_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192acpi_status
Yinghai Lu7d972772009-02-07 15:39:41 -0800193acpi_get_table_with_size(acpi_string signature,
194 u32 instance, struct acpi_table_header **out_table,
195 acpi_size *tbl_size);
196acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300197acpi_get_table(acpi_string signature,
Bob Moore67a119f2008-06-10 13:42:13 +0800198 u32 instance, struct acpi_table_header **out_table);
Bob Mooref3d2e782007-02-02 19:48:18 +0300199
200acpi_status
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000201acpi_get_table_by_index(u32 table_index, struct acpi_table_header **out_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Lin Ming3e08e2d2008-04-10 19:06:38 +0400203acpi_status
Lv Zhengb43e1062013-01-12 15:29:38 +0000204acpi_install_table_handler(acpi_table_handler handler, void *context);
Lin Ming3e08e2d2008-04-10 19:06:38 +0400205
Lv Zhengb43e1062013-01-12 15:29:38 +0000206acpi_status acpi_remove_table_handler(acpi_table_handler handler);
Lin Ming3e08e2d2008-04-10 19:06:38 +0400207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*
209 * Namespace and name interfaces
210 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400212acpi_walk_namespace(acpi_object_type type,
213 acpi_handle start_object,
214 u32 max_depth,
Bob Moore4ef17502013-08-08 15:30:05 +0800215 acpi_walk_callback descending_callback,
216 acpi_walk_callback ascending_callback,
Len Brown4be44fc2005-08-05 00:44:28 -0400217 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219acpi_status
Al Viro70b30fb2007-08-21 16:18:20 +0100220acpi_get_devices(const char *HID,
Len Brown4be44fc2005-08-05 00:44:28 -0400221 acpi_walk_callback user_function,
222 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800225acpi_get_name(acpi_handle object,
Len Brown4be44fc2005-08-05 00:44:28 -0400226 u32 name_type, struct acpi_buffer *ret_path_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400229acpi_get_handle(acpi_handle parent,
230 acpi_string pathname, acpi_handle * ret_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800233acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data);
234
235acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800238acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Bob Moore50eca3e2005-09-30 19:03:00 -0400240acpi_status
241acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags);
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/*
244 * Object manipulation and enumeration
245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400247acpi_evaluate_object(acpi_handle object,
248 acpi_string pathname,
249 struct acpi_object_list *parameter_objects,
250 struct acpi_buffer *return_object_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400253acpi_evaluate_object_typed(acpi_handle object,
254 acpi_string pathname,
255 struct acpi_object_list *external_params,
256 struct acpi_buffer *return_buffer,
257 acpi_object_type return_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800260acpi_get_object_info(acpi_handle object,
Bob Moore15b8dd52009-06-29 13:39:29 +0800261 struct acpi_device_info **return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Lin Mingb2f7ddc2009-05-21 10:42:09 +0800263acpi_status acpi_install_method(u8 *buffer);
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400266acpi_get_next_object(acpi_object_type type,
267 acpi_handle parent,
268 acpi_handle child, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Len Brown4be44fc2005-08-05 00:44:28 -0400270acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
John Keller0f0fe1a2006-12-19 12:56:19 -0800272acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type);
273
Len Brown4be44fc2005-08-05 00:44:28 -0400274acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/*
Bob Mooreecfbbc72008-12-31 02:55:32 +0800277 * Handler interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279acpi_status
Bob Mooreecfbbc72008-12-31 02:55:32 +0800280acpi_install_initialization_handler(acpi_init_handler handler, u32 function);
281
Bob Moore33620c52012-02-14 18:14:27 +0800282ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
283 acpi_install_global_event_handler
Lv Zheng644ef742012-10-31 02:25:36 +0000284 (acpi_gbl_event_handler handler, void *context))
Lin Minga0fcdb22010-12-13 13:39:26 +0800285
Bob Moore33620c52012-02-14 18:14:27 +0800286ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
287 acpi_install_fixed_event_handler(u32
288 acpi_event,
289 acpi_event_handler
290 handler,
291 void
292 *context))
293ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
294 acpi_remove_fixed_event_handler(u32 acpi_event,
295 acpi_event_handler
296 handler))
297ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
298 acpi_install_gpe_handler(acpi_handle
299 gpe_device,
300 u32 gpe_number,
301 u32 type,
302 acpi_gpe_handler
303 address,
304 void *context))
305ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
306 acpi_remove_gpe_handler(acpi_handle gpe_device,
307 u32 gpe_number,
308 acpi_gpe_handler
309 address))
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000310acpi_status acpi_install_notify_handler(acpi_handle device, u32 handler_type,
311 acpi_notify_handler handler,
312 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400315acpi_remove_notify_handler(acpi_handle device,
316 u32 handler_type, acpi_notify_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400319acpi_install_address_space_handler(acpi_handle device,
320 acpi_adr_space_type space_id,
321 acpi_adr_space_handler handler,
322 acpi_adr_space_setup setup, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400325acpi_remove_address_space_handler(acpi_handle device,
326 acpi_adr_space_type space_id,
327 acpi_adr_space_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400330acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#endif
332
Lin Mingb0ed7a92010-08-06 09:35:51 +0800333acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
Lin Mingffef6822011-11-16 11:08:30 +0800336 * Global Lock interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Bob Moore33620c52012-02-14 18:14:27 +0800338ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
339 acpi_acquire_global_lock(u16 timeout,
340 u32 *handle))
341ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
342 acpi_release_global_lock(u32 handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Lin Mingffef6822011-11-16 11:08:30 +0800344/*
345 * Interfaces to AML mutex objects
346 */
347acpi_status
348acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
349
350acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
351
352/*
353 * Fixed Event interfaces
354 */
Bob Moore33620c52012-02-14 18:14:27 +0800355ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
356 acpi_enable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Bob Moore33620c52012-02-14 18:14:27 +0800358ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
359 acpi_disable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Bob Moore33620c52012-02-14 18:14:27 +0800361ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Bob Moore33620c52012-02-14 18:14:27 +0800363ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
364 acpi_get_event_status(u32 event,
365 acpi_event_status
366 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800367/*
Lin Mingffef6822011-11-16 11:08:30 +0800368 * General Purpose Event (GPE) Interfaces
Bob Moore08ac07b2008-12-30 09:55:48 +0800369 */
Bob Moore33620c52012-02-14 18:14:27 +0800370ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void))
Len Brown4be44fc2005-08-05 00:44:28 -0400371
Bob Moore33620c52012-02-14 18:14:27 +0800372ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
373 acpi_enable_gpe(acpi_handle gpe_device,
374 u32 gpe_number))
Len Brown4be44fc2005-08-05 00:44:28 -0400375
Bob Moore33620c52012-02-14 18:14:27 +0800376ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
377 acpi_disable_gpe(acpi_handle gpe_device,
378 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Bob Moore33620c52012-02-14 18:14:27 +0800380ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
381 acpi_clear_gpe(acpi_handle gpe_device,
382 u32 gpe_number))
Lin Mingbba63a22010-12-13 13:39:17 +0800383
Bob Moore33620c52012-02-14 18:14:27 +0800384ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
385 acpi_set_gpe(acpi_handle gpe_device,
386 u32 gpe_number, u8 action))
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200387
Bob Moore33620c52012-02-14 18:14:27 +0800388ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
389 acpi_finish_gpe(acpi_handle gpe_device,
390 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Bob Moore33620c52012-02-14 18:14:27 +0800392ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
393 acpi_setup_gpe_for_wake(acpi_handle
394 parent_device,
395 acpi_handle gpe_device,
396 u32 gpe_number))
397ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
398 acpi_set_gpe_wake_mask(acpi_handle gpe_device,
399 u32 gpe_number,
400 u8 action))
401ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
402 acpi_get_gpe_status(acpi_handle gpe_device,
403 u32 gpe_number,
404 acpi_event_status
405 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800406
Bob Moore33620c52012-02-14 18:14:27 +0800407ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void))
Bob Moore08ac07b2008-12-30 09:55:48 +0800408
Bob Moore33620c52012-02-14 18:14:27 +0800409ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void))
Bob Mooree97d6bf2008-12-30 09:45:17 +0800410
Bob Moore33620c52012-02-14 18:14:27 +0800411ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
412 acpi_get_gpe_device(u32 gpe_index,
413 acpi_handle * gpe_device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Bob Moore33620c52012-02-14 18:14:27 +0800415ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
416 acpi_install_gpe_block(acpi_handle gpe_device,
417 struct
418 acpi_generic_address
419 *gpe_block_address,
420 u32 register_count,
421 u32 interrupt_number))
422ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
423 acpi_remove_gpe_block(acpi_handle gpe_device))
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/*
426 * Resource interfaces
427 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428typedef
Bob Moore616861242006-03-17 16:44:00 -0500429acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
Len Brown4be44fc2005-08-05 00:44:28 -0400430 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800433acpi_get_vendor_resource(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500434 char *name,
435 struct acpi_vendor_uuid *uuid,
436 struct acpi_buffer *ret_buffer);
437
438acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800439acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441#ifdef ACPI_FUTURE_USAGE
442acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800443acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#endif
445
446acpi_status
Bob Moorea91cdde2011-11-16 14:46:57 +0800447acpi_get_event_resources(acpi_handle device_handle,
448 struct acpi_buffer *ret_buffer);
449
450acpi_status
Bob Mooreafb1bbe2012-12-31 00:03:58 +0000451acpi_walk_resource_buffer(struct acpi_buffer *buffer,
452 acpi_walk_resource_callback user_function,
453 void *context);
454
455acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800456acpi_walk_resources(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500457 char *name,
Bob Moore616861242006-03-17 16:44:00 -0500458 acpi_walk_resource_callback user_function, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800461acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800464acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400467acpi_resource_to_address64(struct acpi_resource *resource,
468 struct acpi_resource_address64 *out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Bob Moore0e243172011-11-16 14:51:01 +0800470acpi_status
471acpi_buffer_to_resource(u8 *aml_buffer,
472 u16 aml_buffer_length,
473 struct acpi_resource **resource_ptr);
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/*
476 * Hardware (ACPI device) interfaces
477 */
Bob Moored3fd9022008-12-30 11:11:57 +0800478acpi_status acpi_reset(void);
479
Lv Zheng739dcbb2012-12-20 01:07:26 +0000480acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
481
482acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
483
Bob Moore33620c52012-02-14 18:14:27 +0800484ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
485 acpi_read_bit_register(u32 register_id,
486 u32 *return_value))
Len Brown4be44fc2005-08-05 00:44:28 -0400487
Bob Moore33620c52012-02-14 18:14:27 +0800488ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
489 acpi_write_bit_register(u32 register_id,
490 u32 value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Bob Moore33620c52012-02-14 18:14:27 +0800492/*
493 * Sleep/Wake interfaces
494 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400496acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Len Brown4be44fc2005-08-05 00:44:28 -0400498acpi_status acpi_enter_sleep_state_prep(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Len Brown3f6f49c2012-07-26 20:08:54 -0400500acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Bob Moore33620c52012-02-14 18:14:27 +0800502ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Len Brown3f6f49c2012-07-26 20:08:54 -0400504acpi_status acpi_leave_sleep_state_prep(u8 sleep_state);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100505
Len Brown4be44fc2005-08-05 00:44:28 -0400506acpi_status acpi_leave_sleep_state(u8 sleep_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Lv Zheng739dcbb2012-12-20 01:07:26 +0000508ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
509 acpi_set_firmware_waking_vector(u32
510 physical_address))
511
512#if ACPI_MACHINE_WIDTH == 64
513ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
514 acpi_set_firmware_waking_vector64(u64
515 physical_address))
516#endif
Bob Moore50df4d82008-12-31 03:01:23 +0800517/*
Bob Moored08310f2012-02-14 15:22:51 +0800518 * ACPI Timer interfaces
519 */
520#ifdef ACPI_FUTURE_USAGE
Bob Moore33620c52012-02-14 18:14:27 +0800521ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
522 acpi_get_timer_resolution(u32 *resolution))
Bob Moored08310f2012-02-14 15:22:51 +0800523
Bob Moore33620c52012-02-14 18:14:27 +0800524ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_get_timer(u32 *ticks))
Bob Moored08310f2012-02-14 15:22:51 +0800525
Bob Moore33620c52012-02-14 18:14:27 +0800526ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
527 acpi_get_timer_duration(u32 start_ticks,
528 u32 end_ticks,
529 u32 *time_elapsed))
Bob Moored08310f2012-02-14 15:22:51 +0800530#endif /* ACPI_FUTURE_USAGE */
531
532/*
Bob Mooreb74be612009-04-22 10:20:23 +0800533 * Error/Warning output
Bob Moore50df4d82008-12-31 03:01:23 +0800534 */
535void ACPI_INTERNAL_VAR_XFACE
536acpi_error(const char *module_name,
537 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
538
539void ACPI_INTERNAL_VAR_XFACE
540acpi_exception(const char *module_name,
541 u32 line_number,
542 acpi_status status, const char *format, ...) ACPI_PRINTF_LIKE(4);
543
544void ACPI_INTERNAL_VAR_XFACE
545acpi_warning(const char *module_name,
546 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
547
548void ACPI_INTERNAL_VAR_XFACE
549acpi_info(const char *module_name,
550 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
551
Bob Moore62cdd142012-07-16 09:25:27 +0800552void ACPI_INTERNAL_VAR_XFACE
553acpi_bios_error(const char *module_name,
554 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
555
556void ACPI_INTERNAL_VAR_XFACE
557acpi_bios_warning(const char *module_name,
558 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
559
Bob Mooreb74be612009-04-22 10:20:23 +0800560/*
561 * Debug output
562 */
Bob Moore50df4d82008-12-31 03:01:23 +0800563#ifdef ACPI_DEBUG_OUTPUT
564
565void ACPI_INTERNAL_VAR_XFACE
566acpi_debug_print(u32 requested_debug_level,
567 u32 line_number,
568 const char *function_name,
569 const char *module_name,
570 u32 component_id, const char *format, ...) ACPI_PRINTF_LIKE(6);
571
572void ACPI_INTERNAL_VAR_XFACE
573acpi_debug_print_raw(u32 requested_debug_level,
574 u32 line_number,
575 const char *function_name,
576 const char *module_name,
577 u32 component_id,
578 const char *format, ...) ACPI_PRINTF_LIKE(6);
579#endif
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581#endif /* __ACXFACE_H__ */