]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/acpi/acpixf.h
Merge branch 'drm-intel-fixes' of git://people.freedesktop.org/~keithp/linux into...
[mirror_ubuntu-zesty-kernel.git] / include / acpi / acpixf.h
CommitLineData
1da177e4
LT
1
2/******************************************************************************
3 *
4 * Name: acpixf.h - External interfaces to the ACPI subsystem
5 *
6 *****************************************************************************/
7
8/*
b4e104ea 9 * Copyright (C) 2000 - 2011, Intel Corp.
1da177e4
LT
10 * 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
1da177e4
LT
45#ifndef __ACXFACE_H__
46#define __ACXFACE_H__
47
50df4d8b
BM
48/* Current ACPICA subsystem version in YYYYMMDD format */
49
5d1f8657 50#define ACPI_CA_VERSION 0x20120111
50df4d8b 51
1da177e4
LT
52#include "actypes.h"
53#include "actbl.h"
54
889c78be
LM
55extern u8 acpi_gbl_permanent_mmap;
56
50df4d8b 57/*
58f87ed0 58 * Globals that are publicly available, allowing for
50df4d8b
BM
59 * run time configuration
60 */
61extern u32 acpi_dbg_level;
62extern u32 acpi_dbg_layer;
63extern u8 acpi_gbl_enable_interpreter_slack;
64extern u8 acpi_gbl_all_methods_serialized;
65extern u8 acpi_gbl_create_osi_method;
f8d80cdf 66extern u8 acpi_gbl_use_default_register_widths;
50df4d8b
BM
67extern acpi_name acpi_gbl_trace_method_name;
68extern u32 acpi_gbl_trace_flags;
90ab5ee9 69extern bool acpi_gbl_enable_aml_debug_object;
69ec87ef 70extern u8 acpi_gbl_copy_dsdt_locally;
b681f7d9 71extern u8 acpi_gbl_truncate_io_addresses;
d57b23ad 72extern u8 acpi_gbl_disable_auto_repair;
50df4d8b
BM
73
74extern u32 acpi_current_gpe_count;
75extern struct acpi_table_fadt acpi_gbl_FADT;
31b3d4c3 76extern u8 acpi_gbl_system_awake_and_running;
22e5b40a 77extern u8 acpi_gbl_reduced_hardware; /* ACPI 5.0 */
50df4d8b 78
237889bf 79extern u32 acpi_rsdt_forced;
44f6c012 80/*
1da177e4
LT
81 * Global interfaces
82 */
f3d2e786
BM
83acpi_status
84acpi_initialize_tables(struct acpi_table_desc *initial_storage,
85 u32 initial_table_count, u8 allow_resize);
86
dd272b57 87acpi_status __init acpi_initialize_subsystem(void);
1da177e4 88
4be44fcd 89acpi_status acpi_enable_subsystem(u32 flags);
1da177e4 90
4be44fcd 91acpi_status acpi_initialize_objects(u32 flags);
1da177e4 92
4be44fcd 93acpi_status acpi_terminate(void);
1da177e4
LT
94
95#ifdef ACPI_FUTURE_USAGE
4be44fcd 96acpi_status acpi_subsystem_status(void);
1da177e4
LT
97#endif
98
4be44fcd 99acpi_status acpi_enable(void);
1da177e4 100
4be44fcd 101acpi_status acpi_disable(void);
1da177e4
LT
102
103#ifdef ACPI_FUTURE_USAGE
4be44fcd 104acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
1da177e4
LT
105#endif
106
4be44fcd 107const char *acpi_format_exception(acpi_status exception);
1da177e4 108
4be44fcd 109acpi_status acpi_purge_cached_objects(void);
1da177e4 110
b0ed7a91
LM
111acpi_status acpi_install_interface(acpi_string interface_name);
112
113acpi_status acpi_remove_interface(acpi_string interface_name);
114
f654c0fe
LM
115u32
116acpi_check_address_range(acpi_adr_space_type space_id,
117 acpi_physical_address address,
118 acpi_size length, u8 warn);
119
1da177e4 120/*
aee07ba6 121 * ACPI Memory management
1da177e4 122 */
4be44fcd 123void *acpi_allocate(u32 size);
1da177e4 124
4be44fcd 125void *acpi_callocate(u32 size);
1da177e4 126
4be44fcd 127void acpi_free(void *address);
1da177e4
LT
128
129/*
130 * ACPI table manipulation interfaces
131 */
f3d2e786
BM
132acpi_status acpi_reallocate_root_table(void);
133
67a119f9 134acpi_status acpi_find_root_pointer(acpi_size *rsdp_address);
1da177e4 135
4be44fcd 136acpi_status acpi_load_tables(void);
1da177e4 137
4be44fcd 138acpi_status acpi_load_table(struct acpi_table_header *table_ptr);
1da177e4 139
f3d2e786 140acpi_status acpi_unload_table_id(acpi_owner_id id);
1da177e4
LT
141
142acpi_status
f3d2e786 143acpi_get_table_header(acpi_string signature,
67a119f9 144 u32 instance,
428f2112 145 struct acpi_table_header *out_table_header);
1da177e4
LT
146
147acpi_status
7d97277b
YL
148acpi_get_table_with_size(acpi_string signature,
149 u32 instance, struct acpi_table_header **out_table,
150 acpi_size *tbl_size);
151acpi_status
f3d2e786 152acpi_get_table(acpi_string signature,
67a119f9 153 u32 instance, struct acpi_table_header **out_table);
1da177e4
LT
154
155acpi_status
67a119f9 156acpi_get_table_by_index(u32 table_index,
f3d2e786 157 struct acpi_table_header **out_table);
1da177e4 158
3e08e2d2
LM
159acpi_status
160acpi_install_table_handler(acpi_tbl_handler handler, void *context);
161
162acpi_status acpi_remove_table_handler(acpi_tbl_handler handler);
163
1da177e4
LT
164/*
165 * Namespace and name interfaces
166 */
1da177e4 167acpi_status
4be44fcd
LB
168acpi_walk_namespace(acpi_object_type type,
169 acpi_handle start_object,
170 u32 max_depth,
2263576c
LM
171 acpi_walk_callback pre_order_visit,
172 acpi_walk_callback post_order_visit,
4be44fcd 173 void *context, void **return_value);
1da177e4
LT
174
175acpi_status
70b30fb1 176acpi_get_devices(const char *HID,
4be44fcd
LB
177 acpi_walk_callback user_function,
178 void *context, void **return_value);
1da177e4
LT
179
180acpi_status
b47cf58e 181acpi_get_name(acpi_handle object,
4be44fcd 182 u32 name_type, struct acpi_buffer *ret_path_ptr);
1da177e4
LT
183
184acpi_status
4be44fcd
LB
185acpi_get_handle(acpi_handle parent,
186 acpi_string pathname, acpi_handle * ret_handle);
1da177e4
LT
187
188acpi_status
b47cf58e 189acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data);
1da177e4 190
b47cf58e 191acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler);
1da177e4
LT
192
193acpi_status
b47cf58e 194acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data);
1da177e4 195
50eca3eb
BM
196acpi_status
197acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags);
198
1da177e4
LT
199/*
200 * Object manipulation and enumeration
201 */
1da177e4 202acpi_status
4be44fcd
LB
203acpi_evaluate_object(acpi_handle object,
204 acpi_string pathname,
205 struct acpi_object_list *parameter_objects,
206 struct acpi_buffer *return_object_buffer);
1da177e4 207
1da177e4 208acpi_status
4be44fcd
LB
209acpi_evaluate_object_typed(acpi_handle object,
210 acpi_string pathname,
211 struct acpi_object_list *external_params,
212 struct acpi_buffer *return_buffer,
213 acpi_object_type return_type);
1da177e4
LT
214
215acpi_status
b47cf58e 216acpi_get_object_info(acpi_handle object,
15b8dd53 217 struct acpi_device_info **return_buffer);
1da177e4 218
b2f7ddcf
LM
219acpi_status acpi_install_method(u8 *buffer);
220
1da177e4 221acpi_status
4be44fcd
LB
222acpi_get_next_object(acpi_object_type type,
223 acpi_handle parent,
224 acpi_handle child, acpi_handle * out_handle);
1da177e4 225
4be44fcd 226acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type);
1da177e4 227
0f0fe1a0
JK
228acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type);
229
4be44fcd 230acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle);
1da177e4
LT
231
232/*
ecfbbc7b 233 * Handler interfaces
1da177e4 234 */
ecfbbc7b
BM
235acpi_status
236acpi_install_initialization_handler(acpi_init_handler handler, u32 function);
237
a0fcdb23
LM
238acpi_status
239acpi_install_global_event_handler(ACPI_GBL_EVENT_HANDLER handler,
240 void *context);
241
1da177e4 242acpi_status
4be44fcd
LB
243acpi_install_fixed_event_handler(u32 acpi_event,
244 acpi_event_handler handler, void *context);
1da177e4
LT
245
246acpi_status
4be44fcd 247acpi_remove_fixed_event_handler(u32 acpi_event, acpi_event_handler handler);
1da177e4
LT
248
249acpi_status
4be44fcd
LB
250acpi_install_notify_handler(acpi_handle device,
251 u32 handler_type,
252 acpi_notify_handler handler, void *context);
1da177e4
LT
253
254acpi_status
4be44fcd
LB
255acpi_remove_notify_handler(acpi_handle device,
256 u32 handler_type, acpi_notify_handler handler);
1da177e4
LT
257
258acpi_status
4be44fcd
LB
259acpi_install_address_space_handler(acpi_handle device,
260 acpi_adr_space_type space_id,
261 acpi_adr_space_handler handler,
262 acpi_adr_space_setup setup, void *context);
1da177e4
LT
263
264acpi_status
4be44fcd
LB
265acpi_remove_address_space_handler(acpi_handle device,
266 acpi_adr_space_type space_id,
267 acpi_adr_space_handler handler);
1da177e4
LT
268
269acpi_status
4be44fcd
LB
270acpi_install_gpe_handler(acpi_handle gpe_device,
271 u32 gpe_number,
8b6cd8ad 272 u32 type, acpi_gpe_handler address, void *context);
1da177e4 273
08ac07b8
BM
274acpi_status
275acpi_remove_gpe_handler(acpi_handle gpe_device,
8b6cd8ad 276 u32 gpe_number, acpi_gpe_handler address);
08ac07b8 277
1da177e4 278#ifdef ACPI_FUTURE_USAGE
4be44fcd 279acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
1da177e4
LT
280#endif
281
b0ed7a91
LM
282acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
283
1da177e4 284/*
ffef6827 285 * Global Lock interfaces
1da177e4 286 */
4be44fcd 287acpi_status acpi_acquire_global_lock(u16 timeout, u32 * handle);
1da177e4 288
4be44fcd 289acpi_status acpi_release_global_lock(u32 handle);
1da177e4 290
ffef6827
LM
291/*
292 * Interfaces to AML mutex objects
293 */
294acpi_status
295acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
296
297acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
298
299/*
300 * Fixed Event interfaces
301 */
4be44fcd 302acpi_status acpi_enable_event(u32 event, u32 flags);
1da177e4 303
4be44fcd 304acpi_status acpi_disable_event(u32 event, u32 flags);
1da177e4 305
4be44fcd 306acpi_status acpi_clear_event(u32 event);
1da177e4 307
4be44fcd 308acpi_status acpi_get_event_status(u32 event, acpi_event_status * event_status);
1da177e4 309
08ac07b8 310/*
ffef6827 311 * General Purpose Event (GPE) Interfaces
08ac07b8 312 */
a44061aa 313acpi_status acpi_enable_gpe(acpi_handle gpe_device, u32 gpe_number);
1da177e4 314
a44061aa 315acpi_status acpi_disable_gpe(acpi_handle gpe_device, u32 gpe_number);
1da177e4 316
0f849d2c 317acpi_status acpi_clear_gpe(acpi_handle gpe_device, u32 gpe_number);
1da177e4 318
bba63a29
LM
319acpi_status
320acpi_setup_gpe_for_wake(acpi_handle parent_device,
321 acpi_handle gpe_device, u32 gpe_number);
322
3a37898d 323acpi_status acpi_set_gpe_wake_mask(acpi_handle gpe_device, u32 gpe_number, u8 action);
e8b6f970 324
1da177e4 325acpi_status
4be44fcd 326acpi_get_gpe_status(acpi_handle gpe_device,
0f849d2c 327 u32 gpe_number, acpi_event_status *event_status);
1da177e4 328
08ac07b8
BM
329acpi_status acpi_disable_all_gpes(void);
330
331acpi_status acpi_enable_all_runtime_gpes(void);
332
e97d6bf1
BM
333acpi_status acpi_get_gpe_device(u32 gpe_index, acpi_handle *gpe_device);
334
1da177e4 335acpi_status
4be44fcd
LB
336acpi_install_gpe_block(acpi_handle gpe_device,
337 struct acpi_generic_address *gpe_block_address,
338 u32 register_count, u32 interrupt_number);
1da177e4 339
4be44fcd 340acpi_status acpi_remove_gpe_block(acpi_handle gpe_device);
1da177e4 341
3a37898d 342acpi_status acpi_update_all_gpes(void);
a2100801 343
1da177e4
LT
344/*
345 * Resource interfaces
346 */
1da177e4 347typedef
61686124 348acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
4be44fcd 349 void *context);
1da177e4 350
c51a4de8 351acpi_status
b47cf58e 352acpi_get_vendor_resource(acpi_handle device,
c51a4de8
BM
353 char *name,
354 struct acpi_vendor_uuid *uuid,
355 struct acpi_buffer *ret_buffer);
356
1da177e4 357acpi_status
b47cf58e 358acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
1da177e4
LT
359
360#ifdef ACPI_FUTURE_USAGE
361acpi_status
b47cf58e 362acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
1da177e4
LT
363#endif
364
a91cdde2
BM
365acpi_status
366acpi_get_event_resources(acpi_handle device_handle,
367 struct acpi_buffer *ret_buffer);
368
1da177e4 369acpi_status
b47cf58e 370acpi_walk_resources(acpi_handle device,
c51a4de8 371 char *name,
61686124 372 acpi_walk_resource_callback user_function, void *context);
1da177e4
LT
373
374acpi_status
b47cf58e 375acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
1da177e4
LT
376
377acpi_status
b47cf58e 378acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
1da177e4
LT
379
380acpi_status
4be44fcd
LB
381acpi_resource_to_address64(struct acpi_resource *resource,
382 struct acpi_resource_address64 *out);
1da177e4 383
0e243178
BM
384acpi_status
385acpi_buffer_to_resource(u8 *aml_buffer,
386 u16 aml_buffer_length,
387 struct acpi_resource **resource_ptr);
388
1da177e4
LT
389/*
390 * Hardware (ACPI device) interfaces
391 */
d3fd902d
BM
392acpi_status acpi_reset(void);
393
50ffba1b 394acpi_status acpi_read_bit_register(u32 register_id, u32 *return_value);
1da177e4 395
50ffba1b 396acpi_status acpi_write_bit_register(u32 register_id, u32 value);
1da177e4 397
4f70e371 398acpi_status acpi_set_firmware_waking_vector(u32 physical_address);
1da177e4 399
4f70e371
BM
400#if ACPI_MACHINE_WIDTH == 64
401acpi_status acpi_set_firmware_waking_vector64(u64 physical_address);
402#endif
1da177e4 403
c6b5774c 404acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
ecfbbc7b 405
c6b5774c 406acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
ecfbbc7b 407
1da177e4 408acpi_status
4be44fcd 409acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b);
1da177e4 410
4be44fcd 411acpi_status acpi_enter_sleep_state_prep(u8 sleep_state);
1da177e4 412
4be44fcd 413acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state);
1da177e4 414
4be44fcd 415acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void);
1da177e4 416
c95d47a8
RW
417acpi_status acpi_leave_sleep_state_prep(u8 sleep_state);
418
4be44fcd 419acpi_status acpi_leave_sleep_state(u8 sleep_state);
1da177e4 420
50df4d8b 421/*
b74be611 422 * Error/Warning output
50df4d8b
BM
423 */
424void ACPI_INTERNAL_VAR_XFACE
425acpi_error(const char *module_name,
426 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
427
428void ACPI_INTERNAL_VAR_XFACE
429acpi_exception(const char *module_name,
430 u32 line_number,
431 acpi_status status, const char *format, ...) ACPI_PRINTF_LIKE(4);
432
433void ACPI_INTERNAL_VAR_XFACE
434acpi_warning(const char *module_name,
435 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
436
437void ACPI_INTERNAL_VAR_XFACE
438acpi_info(const char *module_name,
439 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
440
b74be611
BM
441/*
442 * Debug output
443 */
50df4d8b
BM
444#ifdef ACPI_DEBUG_OUTPUT
445
446void ACPI_INTERNAL_VAR_XFACE
447acpi_debug_print(u32 requested_debug_level,
448 u32 line_number,
449 const char *function_name,
450 const char *module_name,
451 u32 component_id, const char *format, ...) ACPI_PRINTF_LIKE(6);
452
453void ACPI_INTERNAL_VAR_XFACE
454acpi_debug_print_raw(u32 requested_debug_level,
455 u32 line_number,
456 const char *function_name,
457 const char *module_name,
458 u32 component_id,
459 const char *format, ...) ACPI_PRINTF_LIKE(6);
460#endif
461
4be44fcd 462#endif /* __ACXFACE_H__ */