]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/acpi/acpixf.h
ACPICA: Source restructuring: split large files into 8 new files.
[mirror_ubuntu-zesty-kernel.git] / include / acpi / acpixf.h
CommitLineData
1da177e4
LT
1/******************************************************************************
2 *
3 * Name: acpixf.h - External interfaces to the ACPI subsystem
4 *
5 *****************************************************************************/
6
7/*
75e7386b 8 * Copyright (C) 2000 - 2012, Intel Corp.
1da177e4
LT
9 * 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
1da177e4
LT
44#ifndef __ACXFACE_H__
45#define __ACXFACE_H__
46
50df4d8b
BM
47/* Current ACPICA subsystem version in YYYYMMDD format */
48
f55994f2 49#define ACPI_CA_VERSION 0x20121220
50df4d8b 50
a1ce3928
DH
51#include <acpi/acconfig.h>
52#include <acpi/actypes.h>
53#include <acpi/actbl.h>
d8dc91b7 54#include <acpi/acbuffer.h>
1da177e4 55
889c78be
LM
56extern u8 acpi_gbl_permanent_mmap;
57
50df4d8b 58/*
75c8044f 59 * Globals that are publically available
50df4d8b 60 */
739dcbb9
LZ
61extern 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 */
3e8214e5 65
75c8044f 66/* Runtime configuration of debug print levels */
3e8214e5 67
50df4d8b
BM
68extern u32 acpi_dbg_level;
69extern u32 acpi_dbg_layer;
3e8214e5 70
75c8044f 71/* ACPICA runtime options */
3e8214e5 72
50df4d8b
BM
73extern u8 acpi_gbl_enable_interpreter_slack;
74extern u8 acpi_gbl_all_methods_serialized;
75extern u8 acpi_gbl_create_osi_method;
f8d80cdf 76extern u8 acpi_gbl_use_default_register_widths;
50df4d8b
BM
77extern acpi_name acpi_gbl_trace_method_name;
78extern u32 acpi_gbl_trace_flags;
90ab5ee9 79extern bool acpi_gbl_enable_aml_debug_object;
69ec87ef 80extern u8 acpi_gbl_copy_dsdt_locally;
b681f7d9 81extern u8 acpi_gbl_truncate_io_addresses;
d57b23ad 82extern u8 acpi_gbl_disable_auto_repair;
50df4d8b 83
33620c54
BM
84/*
85 * Hardware-reduced prototypes. All interfaces that use these macros will
86 * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag
87 * is set to TRUE.
88 */
89#if (!ACPI_REDUCED_HARDWARE)
90#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
91 prototype;
92
93#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
94 prototype;
95
96#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
97 prototype;
98
99#else
100#define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \
101 static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);}
102
103#define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \
104 static ACPI_INLINE prototype {return(AE_OK);}
105
106#define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \
107 static ACPI_INLINE prototype {}
108
109#endif /* !ACPI_REDUCED_HARDWARE */
110
237889bf 111extern u32 acpi_rsdt_forced;
44f6c012 112/*
75c8044f 113 * Initialization
1da177e4 114 */
f3d2e786
BM
115acpi_status
116acpi_initialize_tables(struct acpi_table_desc *initial_storage,
117 u32 initial_table_count, u8 allow_resize);
118
dd272b57 119acpi_status __init acpi_initialize_subsystem(void);
1da177e4 120
4be44fcd 121acpi_status acpi_enable_subsystem(u32 flags);
1da177e4 122
4be44fcd 123acpi_status acpi_initialize_objects(u32 flags);
1da177e4 124
4be44fcd 125acpi_status acpi_terminate(void);
1da177e4 126
75c8044f
LZ
127/*
128 * Miscellaneous global interfaces
129 */
33620c54
BM
130ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void))
131ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void))
739dcbb9
LZ
132#ifdef ACPI_FUTURE_USAGE
133acpi_status acpi_subsystem_status(void);
134#endif
1da177e4
LT
135
136#ifdef ACPI_FUTURE_USAGE
4be44fcd 137acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer);
1da177e4
LT
138#endif
139
4be44fcd 140const char *acpi_format_exception(acpi_status exception);
1da177e4 141
4be44fcd 142acpi_status acpi_purge_cached_objects(void);
1da177e4 143
b0ed7a91
LM
144acpi_status acpi_install_interface(acpi_string interface_name);
145
146acpi_status acpi_remove_interface(acpi_string interface_name);
147
f654c0fe
LM
148u32
149acpi_check_address_range(acpi_adr_space_type space_id,
150 acpi_physical_address address,
151 acpi_size length, u8 warn);
152
be030a57
BM
153acpi_status
154acpi_decode_pld_buffer(u8 *in_buffer,
155 acpi_size length, struct acpi_pld_info **return_buffer);
156
1da177e4 157/*
aee07ba6 158 * ACPI Memory management
1da177e4 159 */
4be44fcd 160void *acpi_allocate(u32 size);
1da177e4 161
4be44fcd 162void *acpi_callocate(u32 size);
1da177e4 163
4be44fcd 164void acpi_free(void *address);
1da177e4
LT
165
166/*
f60d8181 167 * ACPI table load/unload interfaces
1da177e4 168 */
f60d8181 169acpi_status acpi_load_table(struct acpi_table_header *table);
f3d2e786 170
f60d8181 171acpi_status acpi_unload_parent_table(acpi_handle object);
1da177e4 172
4be44fcd 173acpi_status acpi_load_tables(void);
1da177e4 174
f60d8181
BM
175/*
176 * ACPI table manipulation interfaces
177 */
178acpi_status acpi_reallocate_root_table(void);
179
180acpi_status acpi_find_root_pointer(acpi_size *rsdp_address);
1da177e4 181
f3d2e786 182acpi_status acpi_unload_table_id(acpi_owner_id id);
1da177e4
LT
183
184acpi_status
f3d2e786 185acpi_get_table_header(acpi_string signature,
1f86e8c1 186 u32 instance, struct acpi_table_header *out_table_header);
1da177e4
LT
187
188acpi_status
7d97277b
YL
189acpi_get_table_with_size(acpi_string signature,
190 u32 instance, struct acpi_table_header **out_table,
191 acpi_size *tbl_size);
192acpi_status
f3d2e786 193acpi_get_table(acpi_string signature,
67a119f9 194 u32 instance, struct acpi_table_header **out_table);
1da177e4
LT
195
196acpi_status
1f86e8c1 197acpi_get_table_by_index(u32 table_index, struct acpi_table_header **out_table);
1da177e4 198
3e08e2d2
LM
199acpi_status
200acpi_install_table_handler(acpi_tbl_handler handler, void *context);
201
202acpi_status acpi_remove_table_handler(acpi_tbl_handler handler);
203
1da177e4
LT
204/*
205 * Namespace and name interfaces
206 */
1da177e4 207acpi_status
4be44fcd
LB
208acpi_walk_namespace(acpi_object_type type,
209 acpi_handle start_object,
210 u32 max_depth,
2263576c
LM
211 acpi_walk_callback pre_order_visit,
212 acpi_walk_callback post_order_visit,
4be44fcd 213 void *context, void **return_value);
1da177e4
LT
214
215acpi_status
70b30fb1 216acpi_get_devices(const char *HID,
4be44fcd
LB
217 acpi_walk_callback user_function,
218 void *context, void **return_value);
1da177e4
LT
219
220acpi_status
b47cf58e 221acpi_get_name(acpi_handle object,
4be44fcd 222 u32 name_type, struct acpi_buffer *ret_path_ptr);
1da177e4
LT
223
224acpi_status
4be44fcd
LB
225acpi_get_handle(acpi_handle parent,
226 acpi_string pathname, acpi_handle * ret_handle);
1da177e4
LT
227
228acpi_status
b47cf58e 229acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data);
1da177e4 230
b47cf58e 231acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler);
1da177e4
LT
232
233acpi_status
b47cf58e 234acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data);
1da177e4 235
50eca3eb
BM
236acpi_status
237acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags);
238
1da177e4
LT
239/*
240 * Object manipulation and enumeration
241 */
1da177e4 242acpi_status
4be44fcd
LB
243acpi_evaluate_object(acpi_handle object,
244 acpi_string pathname,
245 struct acpi_object_list *parameter_objects,
246 struct acpi_buffer *return_object_buffer);
1da177e4 247
1da177e4 248acpi_status
4be44fcd
LB
249acpi_evaluate_object_typed(acpi_handle object,
250 acpi_string pathname,
251 struct acpi_object_list *external_params,
252 struct acpi_buffer *return_buffer,
253 acpi_object_type return_type);
1da177e4
LT
254
255acpi_status
b47cf58e 256acpi_get_object_info(acpi_handle object,
15b8dd53 257 struct acpi_device_info **return_buffer);
1da177e4 258
b2f7ddcf
LM
259acpi_status acpi_install_method(u8 *buffer);
260
1da177e4 261acpi_status
4be44fcd
LB
262acpi_get_next_object(acpi_object_type type,
263 acpi_handle parent,
264 acpi_handle child, acpi_handle * out_handle);
1da177e4 265
4be44fcd 266acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type);
1da177e4 267
0f0fe1a0
JK
268acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type);
269
4be44fcd 270acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle);
1da177e4
LT
271
272/*
ecfbbc7b 273 * Handler interfaces
1da177e4 274 */
ecfbbc7b
BM
275acpi_status
276acpi_install_initialization_handler(acpi_init_handler handler, u32 function);
277
33620c54
BM
278ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
279 acpi_install_global_event_handler
644ef74e 280 (acpi_gbl_event_handler handler, void *context))
33620c54
BM
281
282ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
283 acpi_install_fixed_event_handler(u32
284 acpi_event,
285 acpi_event_handler
286 handler,
287 void
288 *context))
289ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
290 acpi_remove_fixed_event_handler(u32 acpi_event,
291 acpi_event_handler
292 handler))
293ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
294 acpi_install_gpe_handler(acpi_handle
295 gpe_device,
296 u32 gpe_number,
297 u32 type,
298 acpi_gpe_handler
299 address,
300 void *context))
301ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
302 acpi_remove_gpe_handler(acpi_handle gpe_device,
303 u32 gpe_number,
304 acpi_gpe_handler
305 address))
1f86e8c1
LZ
306acpi_status acpi_install_notify_handler(acpi_handle device, u32 handler_type,
307 acpi_notify_handler handler,
308 void *context);
1da177e4
LT
309
310acpi_status
4be44fcd
LB
311acpi_remove_notify_handler(acpi_handle device,
312 u32 handler_type, acpi_notify_handler handler);
1da177e4
LT
313
314acpi_status
4be44fcd
LB
315acpi_install_address_space_handler(acpi_handle device,
316 acpi_adr_space_type space_id,
317 acpi_adr_space_handler handler,
318 acpi_adr_space_setup setup, void *context);
1da177e4
LT
319
320acpi_status
4be44fcd
LB
321acpi_remove_address_space_handler(acpi_handle device,
322 acpi_adr_space_type space_id,
323 acpi_adr_space_handler handler);
1da177e4 324
1da177e4 325#ifdef ACPI_FUTURE_USAGE
4be44fcd 326acpi_status acpi_install_exception_handler(acpi_exception_handler handler);
1da177e4
LT
327#endif
328
b0ed7a91
LM
329acpi_status acpi_install_interface_handler(acpi_interface_handler handler);
330
1da177e4 331/*
ffef6827 332 * Global Lock interfaces
1da177e4 333 */
33620c54
BM
334ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
335 acpi_acquire_global_lock(u16 timeout,
336 u32 *handle))
337ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
338 acpi_release_global_lock(u32 handle))
1da177e4 339
ffef6827
LM
340/*
341 * Interfaces to AML mutex objects
342 */
343acpi_status
344acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout);
345
346acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname);
347
348/*
349 * Fixed Event interfaces
350 */
33620c54
BM
351ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
352 acpi_enable_event(u32 event, u32 flags))
1da177e4 353
33620c54
BM
354ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
355 acpi_disable_event(u32 event, u32 flags))
1da177e4 356
33620c54 357ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event))
1da177e4 358
33620c54
BM
359ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
360 acpi_get_event_status(u32 event,
361 acpi_event_status
362 *event_status))
08ac07b8 363/*
ffef6827 364 * General Purpose Event (GPE) Interfaces
08ac07b8 365 */
33620c54
BM
366ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void))
367
368ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
369 acpi_enable_gpe(acpi_handle gpe_device,
370 u32 gpe_number))
371
372ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
373 acpi_disable_gpe(acpi_handle gpe_device,
374 u32 gpe_number))
375
376ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
377 acpi_clear_gpe(acpi_handle gpe_device,
378 u32 gpe_number))
379
380ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
381 acpi_set_gpe(acpi_handle gpe_device,
382 u32 gpe_number, u8 action))
383
384ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
385 acpi_finish_gpe(acpi_handle gpe_device,
386 u32 gpe_number))
387
388ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
389 acpi_setup_gpe_for_wake(acpi_handle
390 parent_device,
391 acpi_handle gpe_device,
392 u32 gpe_number))
393ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
394 acpi_set_gpe_wake_mask(acpi_handle gpe_device,
395 u32 gpe_number,
396 u8 action))
397ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
398 acpi_get_gpe_status(acpi_handle gpe_device,
399 u32 gpe_number,
400 acpi_event_status
401 *event_status))
402
403ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void))
404
405ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void))
406
407ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
408 acpi_get_gpe_device(u32 gpe_index,
409 acpi_handle * gpe_device))
410
411ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
412 acpi_install_gpe_block(acpi_handle gpe_device,
413 struct
414 acpi_generic_address
415 *gpe_block_address,
416 u32 register_count,
417 u32 interrupt_number))
418ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
419 acpi_remove_gpe_block(acpi_handle gpe_device))
a2100801 420
1da177e4
LT
421/*
422 * Resource interfaces
423 */
1da177e4 424typedef
61686124 425acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource,
4be44fcd 426 void *context);
1da177e4 427
c51a4de8 428acpi_status
b47cf58e 429acpi_get_vendor_resource(acpi_handle device,
c51a4de8
BM
430 char *name,
431 struct acpi_vendor_uuid *uuid,
432 struct acpi_buffer *ret_buffer);
433
1da177e4 434acpi_status
b47cf58e 435acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
1da177e4
LT
436
437#ifdef ACPI_FUTURE_USAGE
438acpi_status
b47cf58e 439acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer);
1da177e4
LT
440#endif
441
a91cdde2
BM
442acpi_status
443acpi_get_event_resources(acpi_handle device_handle,
444 struct acpi_buffer *ret_buffer);
445
afb1bbee
BM
446acpi_status
447acpi_walk_resource_buffer(struct acpi_buffer *buffer,
448 acpi_walk_resource_callback user_function,
449 void *context);
450
1da177e4 451acpi_status
b47cf58e 452acpi_walk_resources(acpi_handle device,
c51a4de8 453 char *name,
61686124 454 acpi_walk_resource_callback user_function, void *context);
1da177e4
LT
455
456acpi_status
b47cf58e 457acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer);
1da177e4
LT
458
459acpi_status
b47cf58e 460acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer);
1da177e4
LT
461
462acpi_status
4be44fcd
LB
463acpi_resource_to_address64(struct acpi_resource *resource,
464 struct acpi_resource_address64 *out);
1da177e4 465
0e243178
BM
466acpi_status
467acpi_buffer_to_resource(u8 *aml_buffer,
468 u16 aml_buffer_length,
469 struct acpi_resource **resource_ptr);
470
1da177e4
LT
471/*
472 * Hardware (ACPI device) interfaces
473 */
d3fd902d
BM
474acpi_status acpi_reset(void);
475
739dcbb9
LZ
476acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg);
477
478acpi_status acpi_write(u64 value, struct acpi_generic_address *reg);
479
33620c54
BM
480ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
481 acpi_read_bit_register(u32 register_id,
482 u32 *return_value))
1da177e4 483
33620c54
BM
484ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
485 acpi_write_bit_register(u32 register_id,
486 u32 value))
1da177e4 487
33620c54
BM
488/*
489 * Sleep/Wake interfaces
490 */
1da177e4 491acpi_status
4be44fcd 492acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b);
1da177e4 493
4be44fcd 494acpi_status acpi_enter_sleep_state_prep(u8 sleep_state);
1da177e4 495
3f6f49c7 496acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state);
1da177e4 497
33620c54 498ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void))
1da177e4 499
3f6f49c7 500acpi_status acpi_leave_sleep_state_prep(u8 sleep_state);
c95d47a8 501
4be44fcd 502acpi_status acpi_leave_sleep_state(u8 sleep_state);
1da177e4 503
739dcbb9
LZ
504ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
505 acpi_set_firmware_waking_vector(u32
506 physical_address))
507
508#if ACPI_MACHINE_WIDTH == 64
509ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
510 acpi_set_firmware_waking_vector64(u64
511 physical_address))
512#endif
d08310fe
BM
513/*
514 * ACPI Timer interfaces
515 */
516#ifdef ACPI_FUTURE_USAGE
33620c54
BM
517ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
518 acpi_get_timer_resolution(u32 *resolution))
d08310fe 519
33620c54 520ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_get_timer(u32 *ticks))
d08310fe 521
33620c54
BM
522ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
523 acpi_get_timer_duration(u32 start_ticks,
524 u32 end_ticks,
525 u32 *time_elapsed))
d08310fe
BM
526#endif /* ACPI_FUTURE_USAGE */
527
50df4d8b 528/*
b74be611 529 * Error/Warning output
50df4d8b
BM
530 */
531void ACPI_INTERNAL_VAR_XFACE
532acpi_error(const char *module_name,
533 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
534
535void ACPI_INTERNAL_VAR_XFACE
536acpi_exception(const char *module_name,
537 u32 line_number,
538 acpi_status status, const char *format, ...) ACPI_PRINTF_LIKE(4);
539
540void ACPI_INTERNAL_VAR_XFACE
541acpi_warning(const char *module_name,
542 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
543
544void ACPI_INTERNAL_VAR_XFACE
545acpi_info(const char *module_name,
546 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
547
62cdd141
BM
548void ACPI_INTERNAL_VAR_XFACE
549acpi_bios_error(const char *module_name,
550 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
551
552void ACPI_INTERNAL_VAR_XFACE
553acpi_bios_warning(const char *module_name,
554 u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3);
555
b74be611
BM
556/*
557 * Debug output
558 */
50df4d8b
BM
559#ifdef ACPI_DEBUG_OUTPUT
560
561void ACPI_INTERNAL_VAR_XFACE
562acpi_debug_print(u32 requested_debug_level,
563 u32 line_number,
564 const char *function_name,
565 const char *module_name,
566 u32 component_id, const char *format, ...) ACPI_PRINTF_LIKE(6);
567
568void ACPI_INTERNAL_VAR_XFACE
569acpi_debug_print_raw(u32 requested_debug_level,
570 u32 line_number,
571 const char *function_name,
572 const char *module_name,
573 u32 component_id,
574 const char *format, ...) ACPI_PRINTF_LIKE(6);
575#endif
576
4be44fcd 577#endif /* __ACXFACE_H__ */