blob: fe84aee5df47abbad08ca2d8dcd5a43803f3bf44 [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 Mooreabd4c922012-09-13 12:29:05 -070050#define ACPI_CA_VERSION 0x20120913
Bob Moore50df4d82008-12-31 03:01:23 +080051
David Howellsa1ce3922012-10-02 18:01:25 +010052#include <acpi/acconfig.h>
53#include <acpi/actypes.h>
54#include <acpi/actbl.h>
Linus Torvaldsd8dc91b2012-10-08 07:14:06 +090055#include <acpi/acbuffer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Lin Ming889c78b2008-12-31 09:23:57 +080057extern u8 acpi_gbl_permanent_mmap;
58
Robert Moore44f6c012005-04-18 22:49:35 -040059/*
Lucas De Marchi58f87ed2010-09-07 12:49:45 -040060 * Globals that are publicly available, allowing for
Bob Moore50df4d82008-12-31 03:01:23 +080061 * run time configuration
62 */
63extern u32 acpi_dbg_level;
64extern u32 acpi_dbg_layer;
65extern u8 acpi_gbl_enable_interpreter_slack;
66extern u8 acpi_gbl_all_methods_serialized;
67extern u8 acpi_gbl_create_osi_method;
Bob Mooref8d80cd2009-06-02 13:28:13 +080068extern u8 acpi_gbl_use_default_register_widths;
Bob Moore50df4d82008-12-31 03:01:23 +080069extern acpi_name acpi_gbl_trace_method_name;
70extern u32 acpi_gbl_trace_flags;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103071extern bool acpi_gbl_enable_aml_debug_object;
Lin Ming69ec87e2010-04-01 11:14:12 +080072extern u8 acpi_gbl_copy_dsdt_locally;
Matthew Garrettb681f7d2010-05-26 11:50:48 +080073extern u8 acpi_gbl_truncate_io_addresses;
Bob Moored57b23a2011-07-04 08:24:03 +000074extern u8 acpi_gbl_disable_auto_repair;
Bob Moore50df4d82008-12-31 03:01:23 +080075
Bob Moore33620c52012-02-14 18:14:27 +080076/*
77 * Hardware-reduced prototypes. All interfaces that use these macros will
78 * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag
79 * is set to TRUE.
80 */
81#if (!ACPI_REDUCED_HARDWARE)
82#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
83 prototype;
84
85#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
86 prototype;
87
88#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
89 prototype;
90
91#else
92#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
93 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
94
95#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
96 static ACPI_INLINE prototype {return(AE_OK);}
97
98#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
99 static ACPI_INLINE prototype {}
100
101#endif /* !ACPI_REDUCED_HARDWARE */
102
Bob Moore50df4d82008-12-31 03:01:23 +0800103extern u32 acpi_current_gpe_count;
104extern struct acpi_table_fadt acpi_gbl_FADT;
Bob Moore31b3d4c2010-09-15 14:02:56 +0800105extern u8 acpi_gbl_system_awake_and_running;
Bob Moore22e5b402011-11-16 10:57:28 +0800106extern u8 acpi_gbl_reduced_hardware; /* ACPI 5.0 */
Bob Moore50df4d82008-12-31 03:01:23 +0800107
Zhao Yakui237889b2008-12-17 16:55:18 +0800108extern u32 acpi_rsdt_forced;
Bob Moore50df4d82008-12-31 03:01:23 +0800109/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * Global interfaces
111 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300112acpi_status
113acpi_initialize_tables(struct acpi_table_desc *initial_storage,
114 u32 initial_table_count, u8 allow_resize);
115
Len Browndd272b52007-05-30 00:26:11 -0400116acpi_status __init acpi_initialize_subsystem(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Len Brown4be44fc2005-08-05 00:44:28 -0400118acpi_status acpi_enable_subsystem(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Len Brown4be44fc2005-08-05 00:44:28 -0400120acpi_status acpi_initialize_objects(u32 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Len Brown4be44fc2005-08-05 00:44:28 -0400122acpi_status acpi_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400125acpi_status acpi_subsystem_status(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#endif
127
Bob Moore33620c52012-02-14 18:14:27 +0800128ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void))
129ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400132acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#endif
134
Len Brown4be44fc2005-08-05 00:44:28 -0400135const char *acpi_format_exception(acpi_status exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Len Brown4be44fc2005-08-05 00:44:28 -0400137acpi_status acpi_purge_cached_objects(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Lin Mingb0ed7a92010-08-06 09:35:51 +0800139acpi_status acpi_install_interface(acpi_string interface_name);
140
141acpi_status acpi_remove_interface(acpi_string interface_name);
142
Lin Mingf654c0f2012-01-12 13:10:32 +0800143u32
144acpi_check_address_range(acpi_adr_space_type space_id,
145 acpi_physical_address address,
146 acpi_size length, u8 warn);
147
Bob Moorebe030a52012-08-17 13:07:54 +0800148acpi_status
149acpi_decode_pld_buffer(u8 *in_buffer,
150 acpi_size length, struct acpi_pld_info **return_buffer);
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Joe Perchesaee07ba2008-02-03 17:07:16 +0200153 * ACPI Memory management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
Len Brown4be44fc2005-08-05 00:44:28 -0400155void *acpi_allocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Len Brown4be44fc2005-08-05 00:44:28 -0400157void *acpi_callocate(u32 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Len Brown4be44fc2005-08-05 00:44:28 -0400159void acpi_free(void *address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161/*
Bob Mooref60d8182012-07-16 10:21:34 +0800162 * ACPI table load/unload interfaces
163 */
164acpi_status acpi_load_table(struct acpi_table_header *table);
165
166acpi_status acpi_unload_parent_table(acpi_handle object);
167
168acpi_status acpi_load_tables(void);
169
170/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * ACPI table manipulation interfaces
172 */
Bob Mooref3d2e782007-02-02 19:48:18 +0300173acpi_status acpi_reallocate_root_table(void);
174
Bob Moore67a119f2008-06-10 13:42:13 +0800175acpi_status acpi_find_root_pointer(acpi_size *rsdp_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Bob Mooref3d2e782007-02-02 19:48:18 +0300177acpi_status acpi_unload_table_id(acpi_owner_id id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300180acpi_get_table_header(acpi_string signature,
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000181 u32 instance, struct acpi_table_header *out_table_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183acpi_status
Yinghai Lu7d972772009-02-07 15:39:41 -0800184acpi_get_table_with_size(acpi_string signature,
185 u32 instance, struct acpi_table_header **out_table,
186 acpi_size *tbl_size);
187acpi_status
Bob Mooref3d2e782007-02-02 19:48:18 +0300188acpi_get_table(acpi_string signature,
Bob Moore67a119f2008-06-10 13:42:13 +0800189 u32 instance, struct acpi_table_header **out_table);
Bob Mooref3d2e782007-02-02 19:48:18 +0300190
191acpi_status
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000192acpi_get_table_by_index(u32 table_index, struct acpi_table_header **out_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Lin Ming3e08e2d2008-04-10 19:06:38 +0400194acpi_status
195acpi_install_table_handler(acpi_tbl_handler handler, void *context);
196
197acpi_status acpi_remove_table_handler(acpi_tbl_handler handler);
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*
200 * Namespace and name interfaces
201 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400203acpi_walk_namespace(acpi_object_type type,
204 acpi_handle start_object,
205 u32 max_depth,
Lin Ming22635762009-11-13 10:06:08 +0800206 acpi_walk_callback pre_order_visit,
207 acpi_walk_callback post_order_visit,
Len Brown4be44fc2005-08-05 00:44:28 -0400208 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210acpi_status
Al Viro70b30fb2007-08-21 16:18:20 +0100211acpi_get_devices(const char *HID,
Len Brown4be44fc2005-08-05 00:44:28 -0400212 acpi_walk_callback user_function,
213 void *context, void **return_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800216acpi_get_name(acpi_handle object,
Len Brown4be44fc2005-08-05 00:44:28 -0400217 u32 name_type, struct acpi_buffer *ret_path_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400220acpi_get_handle(acpi_handle parent,
221 acpi_string pathname, acpi_handle * ret_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800224acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data);
225
226acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800229acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Bob Moore50eca3e2005-09-30 19:03:00 -0400231acpi_status
232acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags);
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/*
235 * Object manipulation and enumeration
236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400238acpi_evaluate_object(acpi_handle object,
239 acpi_string pathname,
240 struct acpi_object_list *parameter_objects,
241 struct acpi_buffer *return_object_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400244acpi_evaluate_object_typed(acpi_handle object,
245 acpi_string pathname,
246 struct acpi_object_list *external_params,
247 struct acpi_buffer *return_buffer,
248 acpi_object_type return_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800251acpi_get_object_info(acpi_handle object,
Bob Moore15b8dd52009-06-29 13:39:29 +0800252 struct acpi_device_info **return_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Lin Mingb2f7ddc2009-05-21 10:42:09 +0800254acpi_status acpi_install_method(u8 *buffer);
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400257acpi_get_next_object(acpi_object_type type,
258 acpi_handle parent,
259 acpi_handle child, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Len Brown4be44fc2005-08-05 00:44:28 -0400261acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
John Keller0f0fe1a2006-12-19 12:56:19 -0800263acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type);
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/*
Bob Mooreecfbbc72008-12-31 02:55:32 +0800268 * Handler interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270acpi_status
Bob Mooreecfbbc72008-12-31 02:55:32 +0800271acpi_install_initialization_handler(acpi_init_handler handler, u32 function);
272
Bob Moore33620c52012-02-14 18:14:27 +0800273ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
274 acpi_install_global_event_handler
Lv Zheng644ef742012-10-31 02:25:36 +0000275 (acpi_gbl_event_handler handler, void *context))
Lin Minga0fcdb22010-12-13 13:39:26 +0800276
Bob Moore33620c52012-02-14 18:14:27 +0800277ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
278 acpi_install_fixed_event_handler(u32
279 acpi_event,
280 acpi_event_handler
281 handler,
282 void
283 *context))
284ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
285 acpi_remove_fixed_event_handler(u32 acpi_event,
286 acpi_event_handler
287 handler))
288ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
289 acpi_install_gpe_handler(acpi_handle
290 gpe_device,
291 u32 gpe_number,
292 u32 type,
293 acpi_gpe_handler
294 address,
295 void *context))
296ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
297 acpi_remove_gpe_handler(acpi_handle gpe_device,
298 u32 gpe_number,
299 acpi_gpe_handler
300 address))
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000301acpi_status acpi_install_notify_handler(acpi_handle device, u32 handler_type,
302 acpi_notify_handler handler,
303 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400306acpi_remove_notify_handler(acpi_handle device,
307 u32 handler_type, acpi_notify_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400310acpi_install_address_space_handler(acpi_handle device,
311 acpi_adr_space_type space_id,
312 acpi_adr_space_handler handler,
313 acpi_adr_space_setup setup, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400316acpi_remove_address_space_handler(acpi_handle device,
317 acpi_adr_space_type space_id,
318 acpi_adr_space_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#ifdef ACPI_FUTURE_USAGE
Len Brown4be44fc2005-08-05 00:44:28 -0400321acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#endif
323
Lin Mingb0ed7a92010-08-06 09:35:51 +0800324acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/*
Lin Mingffef6822011-11-16 11:08:30 +0800327 * Global Lock interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Bob Moore33620c52012-02-14 18:14:27 +0800329ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
330 acpi_acquire_global_lock(u16 timeout,
331 u32 *handle))
332ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
333 acpi_release_global_lock(u32 handle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Lin Mingffef6822011-11-16 11:08:30 +0800335/*
336 * Interfaces to AML mutex objects
337 */
338acpi_status
339acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
340
341acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
342
343/*
344 * Fixed Event interfaces
345 */
Bob Moore33620c52012-02-14 18:14:27 +0800346ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
347 acpi_enable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Bob Moore33620c52012-02-14 18:14:27 +0800349ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
350 acpi_disable_event(u32 event, u32 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Bob Moore33620c52012-02-14 18:14:27 +0800352ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Bob Moore33620c52012-02-14 18:14:27 +0800354ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
355 acpi_get_event_status(u32 event,
356 acpi_event_status
357 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800358/*
Lin Mingffef6822011-11-16 11:08:30 +0800359 * General Purpose Event (GPE) Interfaces
Bob Moore08ac07b2008-12-30 09:55:48 +0800360 */
Bob Moore33620c52012-02-14 18:14:27 +0800361ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void))
Len Brown4be44fc2005-08-05 00:44:28 -0400362
Bob Moore33620c52012-02-14 18:14:27 +0800363ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
364 acpi_enable_gpe(acpi_handle gpe_device,
365 u32 gpe_number))
Len Brown4be44fc2005-08-05 00:44:28 -0400366
Bob Moore33620c52012-02-14 18:14:27 +0800367ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
368 acpi_disable_gpe(acpi_handle gpe_device,
369 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Bob Moore33620c52012-02-14 18:14:27 +0800371ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
372 acpi_clear_gpe(acpi_handle gpe_device,
373 u32 gpe_number))
Lin Mingbba63a22010-12-13 13:39:17 +0800374
Bob Moore33620c52012-02-14 18:14:27 +0800375ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
376 acpi_set_gpe(acpi_handle gpe_device,
377 u32 gpe_number, u8 action))
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200378
Bob Moore33620c52012-02-14 18:14:27 +0800379ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
380 acpi_finish_gpe(acpi_handle gpe_device,
381 u32 gpe_number))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Bob Moore33620c52012-02-14 18:14:27 +0800383ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
384 acpi_setup_gpe_for_wake(acpi_handle
385 parent_device,
386 acpi_handle gpe_device,
387 u32 gpe_number))
388ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
389 acpi_set_gpe_wake_mask(acpi_handle gpe_device,
390 u32 gpe_number,
391 u8 action))
392ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
393 acpi_get_gpe_status(acpi_handle gpe_device,
394 u32 gpe_number,
395 acpi_event_status
396 *event_status))
Bob Moore08ac07b2008-12-30 09:55:48 +0800397
Bob Moore33620c52012-02-14 18:14:27 +0800398ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void))
Bob Moore08ac07b2008-12-30 09:55:48 +0800399
Bob Moore33620c52012-02-14 18:14:27 +0800400ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void))
Bob Mooree97d6bf2008-12-30 09:45:17 +0800401
Bob Moore33620c52012-02-14 18:14:27 +0800402ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
403 acpi_get_gpe_device(u32 gpe_index,
404 acpi_handle * gpe_device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Bob Moore33620c52012-02-14 18:14:27 +0800406ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
407 acpi_install_gpe_block(acpi_handle gpe_device,
408 struct
409 acpi_generic_address
410 *gpe_block_address,
411 u32 register_count,
412 u32 interrupt_number))
413ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
414 acpi_remove_gpe_block(acpi_handle gpe_device))
Rafael J. Wysockia2100802010-09-16 00:30:43 +0200415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
417 * Resource interfaces
418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419typedef
Bob Moore616861242006-03-17 16:44:00 -0500420acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
Len Brown4be44fc2005-08-05 00:44:28 -0400421 void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800424acpi_get_vendor_resource(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500425 char *name,
426 struct acpi_vendor_uuid *uuid,
427 struct acpi_buffer *ret_buffer);
428
429acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800430acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432#ifdef ACPI_FUTURE_USAGE
433acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800434acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#endif
436
437acpi_status
Bob Moorea91cdde2011-11-16 14:46:57 +0800438acpi_get_event_resources(acpi_handle device_handle,
439 struct acpi_buffer *ret_buffer);
440
441acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800442acpi_walk_resources(acpi_handle device,
Bob Moorec51a4de2005-11-17 13:07:00 -0500443 char *name,
Bob Moore616861242006-03-17 16:44:00 -0500444 acpi_walk_resource_callback user_function, void *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800447acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449acpi_status
Bob Mooreb47cf582010-04-27 11:54:40 +0800450acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400453acpi_resource_to_address64(struct acpi_resource *resource,
454 struct acpi_resource_address64 *out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Bob Moore0e243172011-11-16 14:51:01 +0800456acpi_status
457acpi_buffer_to_resource(u8 *aml_buffer,
458 u16 aml_buffer_length,
459 struct acpi_resource **resource_ptr);
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
462 * Hardware (ACPI device) interfaces
463 */
Bob Moored3fd9022008-12-30 11:11:57 +0800464acpi_status acpi_reset(void);
465
Bob Moore33620c52012-02-14 18:14:27 +0800466ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
467 acpi_read_bit_register(u32 register_id,
468 u32 *return_value))
Len Brown4be44fc2005-08-05 00:44:28 -0400469
Bob Moore33620c52012-02-14 18:14:27 +0800470ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
471 acpi_write_bit_register(u32 register_id,
472 u32 value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Bob Moore33620c52012-02-14 18:14:27 +0800474ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
475 acpi_set_firmware_waking_vector(u32
476 physical_address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Bob Moore4f70e372009-02-18 14:52:43 +0800478#if ACPI_MACHINE_WIDTH == 64
Bob Moore33620c52012-02-14 18:14:27 +0800479ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
480 acpi_set_firmware_waking_vector64(u64
481 physical_address))
Bob Moore4f70e372009-02-18 14:52:43 +0800482#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Bob Moorec6b57742009-06-24 09:44:06 +0800484acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
Bob Mooreecfbbc72008-12-31 02:55:32 +0800485
Bob Moorec6b57742009-06-24 09:44:06 +0800486acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
Bob Mooreecfbbc72008-12-31 02:55:32 +0800487
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
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__ */