Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Name: acpixf.h - External interfaces to the ACPI subsystem |
| 4 | * |
| 5 | *****************************************************************************/ |
| 6 | |
| 7 | /* |
Bob Moore | 25f044e | 2013-01-25 05:38:56 +0000 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2013, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #ifndef __ACXFACE_H__ |
| 45 | #define __ACXFACE_H__ |
| 46 | |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 47 | /* Current ACPICA subsystem version in YYYYMMDD format */ |
| 48 | |
Bob Moore | 67a9277 | 2013-05-30 10:01:19 +0800 | [diff] [blame] | 49 | #define ACPI_CA_VERSION 0x20130418 |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 50 | |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 51 | #include <acpi/acconfig.h> |
| 52 | #include <acpi/actypes.h> |
| 53 | #include <acpi/actbl.h> |
Linus Torvalds | d8dc91b | 2012-10-08 07:14:06 +0900 | [diff] [blame] | 54 | #include <acpi/acbuffer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Lin Ming | 889c78b | 2008-12-31 09:23:57 +0800 | [diff] [blame] | 56 | extern u8 acpi_gbl_permanent_mmap; |
| 57 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 58 | /* |
Lv Zheng | 75c8044 | 2012-12-19 05:36:49 +0000 | [diff] [blame] | 59 | * Globals that are publically available |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 60 | */ |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 61 | extern u32 acpi_current_gpe_count; |
| 62 | extern struct acpi_table_fadt acpi_gbl_FADT; |
| 63 | extern u8 acpi_gbl_system_awake_and_running; |
| 64 | extern u8 acpi_gbl_reduced_hardware; /* ACPI 5.0 */ |
Lv Zheng | 3e8214e | 2012-12-19 05:37:15 +0000 | [diff] [blame] | 65 | |
Lv Zheng | 75c8044 | 2012-12-19 05:36:49 +0000 | [diff] [blame] | 66 | /* Runtime configuration of debug print levels */ |
Lv Zheng | 3e8214e | 2012-12-19 05:37:15 +0000 | [diff] [blame] | 67 | |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 68 | extern u32 acpi_dbg_level; |
| 69 | extern u32 acpi_dbg_layer; |
Lv Zheng | 3e8214e | 2012-12-19 05:37:15 +0000 | [diff] [blame] | 70 | |
Lv Zheng | 75c8044 | 2012-12-19 05:36:49 +0000 | [diff] [blame] | 71 | /* ACPICA runtime options */ |
Lv Zheng | 3e8214e | 2012-12-19 05:37:15 +0000 | [diff] [blame] | 72 | |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 73 | extern u8 acpi_gbl_enable_interpreter_slack; |
| 74 | extern u8 acpi_gbl_all_methods_serialized; |
| 75 | extern u8 acpi_gbl_create_osi_method; |
Bob Moore | f8d80cd | 2009-06-02 13:28:13 +0800 | [diff] [blame] | 76 | extern u8 acpi_gbl_use_default_register_widths; |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 77 | extern acpi_name acpi_gbl_trace_method_name; |
| 78 | extern u32 acpi_gbl_trace_flags; |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 79 | extern bool acpi_gbl_enable_aml_debug_object; |
Lin Ming | 69ec87e | 2010-04-01 11:14:12 +0800 | [diff] [blame] | 80 | extern u8 acpi_gbl_copy_dsdt_locally; |
Matthew Garrett | b681f7d | 2010-05-26 11:50:48 +0800 | [diff] [blame] | 81 | extern u8 acpi_gbl_truncate_io_addresses; |
Bob Moore | d57b23a | 2011-07-04 08:24:03 +0000 | [diff] [blame] | 82 | extern u8 acpi_gbl_disable_auto_repair; |
Lv Zheng | b75dd29 | 2013-06-08 00:58:48 +0000 | [diff] [blame^] | 83 | extern u8 acpi_gbl_disable_ssdt_table_load; |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 84 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 85 | /* |
| 86 | * Hardware-reduced prototypes. All interfaces that use these macros will |
| 87 | * be configured out of the ACPICA build if the ACPI_REDUCED_HARDWARE flag |
| 88 | * is set to TRUE. |
| 89 | */ |
| 90 | #if (!ACPI_REDUCED_HARDWARE) |
| 91 | #define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \ |
| 92 | prototype; |
| 93 | |
| 94 | #define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \ |
| 95 | prototype; |
| 96 | |
| 97 | #define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \ |
| 98 | prototype; |
| 99 | |
| 100 | #else |
| 101 | #define ACPI_HW_DEPENDENT_RETURN_STATUS(prototype) \ |
| 102 | static ACPI_INLINE prototype {return(AE_NOT_CONFIGURED);} |
| 103 | |
| 104 | #define ACPI_HW_DEPENDENT_RETURN_OK(prototype) \ |
| 105 | static ACPI_INLINE prototype {return(AE_OK);} |
| 106 | |
| 107 | #define ACPI_HW_DEPENDENT_RETURN_VOID(prototype) \ |
| 108 | static ACPI_INLINE prototype {} |
| 109 | |
| 110 | #endif /* !ACPI_REDUCED_HARDWARE */ |
| 111 | |
Zhao Yakui | 237889b | 2008-12-17 16:55:18 +0800 | [diff] [blame] | 112 | extern u32 acpi_rsdt_forced; |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 113 | /* |
Lv Zheng | 75c8044 | 2012-12-19 05:36:49 +0000 | [diff] [blame] | 114 | * Initialization |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | */ |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 116 | acpi_status |
| 117 | acpi_initialize_tables(struct acpi_table_desc *initial_storage, |
| 118 | u32 initial_table_count, u8 allow_resize); |
| 119 | |
Len Brown | dd272b5 | 2007-05-30 00:26:11 -0400 | [diff] [blame] | 120 | acpi_status __init acpi_initialize_subsystem(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 122 | acpi_status acpi_enable_subsystem(u32 flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 124 | acpi_status acpi_initialize_objects(u32 flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | acpi_status acpi_terminate(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Lv Zheng | 75c8044 | 2012-12-19 05:36:49 +0000 | [diff] [blame] | 128 | /* |
| 129 | * Miscellaneous global interfaces |
| 130 | */ |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 131 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable(void)) |
| 132 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable(void)) |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 133 | #ifdef ACPI_FUTURE_USAGE |
| 134 | acpi_status acpi_subsystem_status(void); |
| 135 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | #ifdef ACPI_FUTURE_USAGE |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | acpi_status acpi_get_system_info(struct acpi_buffer *ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | #endif |
| 140 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 141 | const char *acpi_format_exception(acpi_status exception); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 143 | acpi_status acpi_purge_cached_objects(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 145 | acpi_status acpi_install_interface(acpi_string interface_name); |
| 146 | |
| 147 | acpi_status acpi_remove_interface(acpi_string interface_name); |
| 148 | |
Lin Ming | f654c0f | 2012-01-12 13:10:32 +0800 | [diff] [blame] | 149 | u32 |
| 150 | acpi_check_address_range(acpi_adr_space_type space_id, |
| 151 | acpi_physical_address address, |
| 152 | acpi_size length, u8 warn); |
| 153 | |
Bob Moore | be030a5 | 2012-08-17 13:07:54 +0800 | [diff] [blame] | 154 | acpi_status |
| 155 | acpi_decode_pld_buffer(u8 *in_buffer, |
| 156 | acpi_size length, struct acpi_pld_info **return_buffer); |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* |
Joe Perches | aee07ba | 2008-02-03 17:07:16 +0200 | [diff] [blame] | 159 | * ACPI Memory management |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 161 | void *acpi_allocate(u32 size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 163 | void *acpi_callocate(u32 size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 165 | void acpi_free(void *address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | /* |
Bob Moore | f60d818 | 2012-07-16 10:21:34 +0800 | [diff] [blame] | 168 | * ACPI table load/unload interfaces |
| 169 | */ |
| 170 | acpi_status acpi_load_table(struct acpi_table_header *table); |
| 171 | |
| 172 | acpi_status acpi_unload_parent_table(acpi_handle object); |
| 173 | |
| 174 | acpi_status acpi_load_tables(void); |
| 175 | |
| 176 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | * ACPI table manipulation interfaces |
| 178 | */ |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 179 | acpi_status acpi_reallocate_root_table(void); |
| 180 | |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 181 | acpi_status acpi_find_root_pointer(acpi_size *rsdp_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 183 | acpi_status acpi_unload_table_id(acpi_owner_id id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | acpi_status |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 186 | acpi_get_table_header(acpi_string signature, |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 187 | u32 instance, struct acpi_table_header *out_table_header); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
| 189 | acpi_status |
Yinghai Lu | 7d97277 | 2009-02-07 15:39:41 -0800 | [diff] [blame] | 190 | acpi_get_table_with_size(acpi_string signature, |
| 191 | u32 instance, struct acpi_table_header **out_table, |
| 192 | acpi_size *tbl_size); |
| 193 | acpi_status |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 194 | acpi_get_table(acpi_string signature, |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 195 | u32 instance, struct acpi_table_header **out_table); |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 196 | |
| 197 | acpi_status |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 198 | acpi_get_table_by_index(u32 table_index, struct acpi_table_header **out_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Lin Ming | 3e08e2d | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 200 | acpi_status |
Lv Zheng | b43e106 | 2013-01-12 15:29:38 +0000 | [diff] [blame] | 201 | acpi_install_table_handler(acpi_table_handler handler, void *context); |
Lin Ming | 3e08e2d | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 202 | |
Lv Zheng | b43e106 | 2013-01-12 15:29:38 +0000 | [diff] [blame] | 203 | acpi_status acpi_remove_table_handler(acpi_table_handler handler); |
Lin Ming | 3e08e2d | 2008-04-10 19:06:38 +0400 | [diff] [blame] | 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | /* |
| 206 | * Namespace and name interfaces |
| 207 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 209 | acpi_walk_namespace(acpi_object_type type, |
| 210 | acpi_handle start_object, |
| 211 | u32 max_depth, |
Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 212 | acpi_walk_callback pre_order_visit, |
| 213 | acpi_walk_callback post_order_visit, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 214 | void *context, void **return_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | acpi_status |
Al Viro | 70b30fb | 2007-08-21 16:18:20 +0100 | [diff] [blame] | 217 | acpi_get_devices(const char *HID, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 218 | acpi_walk_callback user_function, |
| 219 | void *context, void **return_value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 222 | acpi_get_name(acpi_handle object, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 223 | u32 name_type, struct acpi_buffer *ret_path_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 226 | acpi_get_handle(acpi_handle parent, |
| 227 | acpi_string pathname, acpi_handle * ret_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 230 | acpi_attach_data(acpi_handle object, acpi_object_handler handler, void *data); |
| 231 | |
| 232 | acpi_status acpi_detach_data(acpi_handle object, acpi_object_handler handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 235 | acpi_get_data(acpi_handle object, acpi_object_handler handler, void **data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 237 | acpi_status |
| 238 | acpi_debug_trace(char *name, u32 debug_level, u32 debug_layer, u32 flags); |
| 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | /* |
| 241 | * Object manipulation and enumeration |
| 242 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 244 | acpi_evaluate_object(acpi_handle object, |
| 245 | acpi_string pathname, |
| 246 | struct acpi_object_list *parameter_objects, |
| 247 | struct acpi_buffer *return_object_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 250 | acpi_evaluate_object_typed(acpi_handle object, |
| 251 | acpi_string pathname, |
| 252 | struct acpi_object_list *external_params, |
| 253 | struct acpi_buffer *return_buffer, |
| 254 | acpi_object_type return_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
| 256 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 257 | acpi_get_object_info(acpi_handle object, |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 258 | struct acpi_device_info **return_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Lin Ming | b2f7ddc | 2009-05-21 10:42:09 +0800 | [diff] [blame] | 260 | acpi_status acpi_install_method(u8 *buffer); |
| 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 263 | acpi_get_next_object(acpi_object_type type, |
| 264 | acpi_handle parent, |
| 265 | acpi_handle child, acpi_handle * out_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 267 | acpi_status acpi_get_type(acpi_handle object, acpi_object_type * out_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
John Keller | 0f0fe1a | 2006-12-19 12:56:19 -0800 | [diff] [blame] | 269 | acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type); |
| 270 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 271 | acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | /* |
Bob Moore | ecfbbc7 | 2008-12-31 02:55:32 +0800 | [diff] [blame] | 274 | * Handler interfaces |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | acpi_status |
Bob Moore | ecfbbc7 | 2008-12-31 02:55:32 +0800 | [diff] [blame] | 277 | acpi_install_initialization_handler(acpi_init_handler handler, u32 function); |
| 278 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 279 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 280 | acpi_install_global_event_handler |
Lv Zheng | 644ef74 | 2012-10-31 02:25:36 +0000 | [diff] [blame] | 281 | (acpi_gbl_event_handler handler, void *context)) |
Lin Ming | a0fcdb2 | 2010-12-13 13:39:26 +0800 | [diff] [blame] | 282 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 283 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 284 | acpi_install_fixed_event_handler(u32 |
| 285 | acpi_event, |
| 286 | acpi_event_handler |
| 287 | handler, |
| 288 | void |
| 289 | *context)) |
| 290 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 291 | acpi_remove_fixed_event_handler(u32 acpi_event, |
| 292 | acpi_event_handler |
| 293 | handler)) |
| 294 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 295 | acpi_install_gpe_handler(acpi_handle |
| 296 | gpe_device, |
| 297 | u32 gpe_number, |
| 298 | u32 type, |
| 299 | acpi_gpe_handler |
| 300 | address, |
| 301 | void *context)) |
| 302 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 303 | acpi_remove_gpe_handler(acpi_handle gpe_device, |
| 304 | u32 gpe_number, |
| 305 | acpi_gpe_handler |
| 306 | address)) |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 307 | acpi_status acpi_install_notify_handler(acpi_handle device, u32 handler_type, |
| 308 | acpi_notify_handler handler, |
| 309 | void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 312 | acpi_remove_notify_handler(acpi_handle device, |
| 313 | u32 handler_type, acpi_notify_handler handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
| 315 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 316 | acpi_install_address_space_handler(acpi_handle device, |
| 317 | acpi_adr_space_type space_id, |
| 318 | acpi_adr_space_handler handler, |
| 319 | acpi_adr_space_setup setup, void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 322 | acpi_remove_address_space_handler(acpi_handle device, |
| 323 | acpi_adr_space_type space_id, |
| 324 | acpi_adr_space_handler handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | #ifdef ACPI_FUTURE_USAGE |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 327 | acpi_status acpi_install_exception_handler(acpi_exception_handler handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | #endif |
| 329 | |
Lin Ming | b0ed7a9 | 2010-08-06 09:35:51 +0800 | [diff] [blame] | 330 | acpi_status acpi_install_interface_handler(acpi_interface_handler handler); |
| 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | /* |
Lin Ming | ffef682 | 2011-11-16 11:08:30 +0800 | [diff] [blame] | 333 | * Global Lock interfaces |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | */ |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 335 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 336 | acpi_acquire_global_lock(u16 timeout, |
| 337 | u32 *handle)) |
| 338 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 339 | acpi_release_global_lock(u32 handle)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
Lin Ming | ffef682 | 2011-11-16 11:08:30 +0800 | [diff] [blame] | 341 | /* |
| 342 | * Interfaces to AML mutex objects |
| 343 | */ |
| 344 | acpi_status |
| 345 | acpi_acquire_mutex(acpi_handle handle, acpi_string pathname, u16 timeout); |
| 346 | |
| 347 | acpi_status acpi_release_mutex(acpi_handle handle, acpi_string pathname); |
| 348 | |
| 349 | /* |
| 350 | * Fixed Event interfaces |
| 351 | */ |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 352 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 353 | acpi_enable_event(u32 event, u32 flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 355 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 356 | acpi_disable_event(u32 event, u32 flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 358 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_clear_event(u32 event)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 360 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 361 | acpi_get_event_status(u32 event, |
| 362 | acpi_event_status |
| 363 | *event_status)) |
Bob Moore | 08ac07b | 2008-12-30 09:55:48 +0800 | [diff] [blame] | 364 | /* |
Lin Ming | ffef682 | 2011-11-16 11:08:30 +0800 | [diff] [blame] | 365 | * General Purpose Event (GPE) Interfaces |
Bob Moore | 08ac07b | 2008-12-30 09:55:48 +0800 | [diff] [blame] | 366 | */ |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 367 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_update_all_gpes(void)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 368 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 369 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 370 | acpi_enable_gpe(acpi_handle gpe_device, |
| 371 | u32 gpe_number)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 372 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 373 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 374 | acpi_disable_gpe(acpi_handle gpe_device, |
| 375 | u32 gpe_number)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 377 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 378 | acpi_clear_gpe(acpi_handle gpe_device, |
| 379 | u32 gpe_number)) |
Lin Ming | bba63a2 | 2010-12-13 13:39:17 +0800 | [diff] [blame] | 380 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 381 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 382 | acpi_set_gpe(acpi_handle gpe_device, |
| 383 | u32 gpe_number, u8 action)) |
Rafael J. Wysocki | e8b6f97 | 2010-06-25 01:18:39 +0200 | [diff] [blame] | 384 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 385 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 386 | acpi_finish_gpe(acpi_handle gpe_device, |
| 387 | u32 gpe_number)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 389 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 390 | acpi_setup_gpe_for_wake(acpi_handle |
| 391 | parent_device, |
| 392 | acpi_handle gpe_device, |
| 393 | u32 gpe_number)) |
| 394 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 395 | acpi_set_gpe_wake_mask(acpi_handle gpe_device, |
| 396 | u32 gpe_number, |
| 397 | u8 action)) |
| 398 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 399 | acpi_get_gpe_status(acpi_handle gpe_device, |
| 400 | u32 gpe_number, |
| 401 | acpi_event_status |
| 402 | *event_status)) |
Bob Moore | 08ac07b | 2008-12-30 09:55:48 +0800 | [diff] [blame] | 403 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 404 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_disable_all_gpes(void)) |
Bob Moore | 08ac07b | 2008-12-30 09:55:48 +0800 | [diff] [blame] | 405 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 406 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_enable_all_runtime_gpes(void)) |
Bob Moore | e97d6bf | 2008-12-30 09:45:17 +0800 | [diff] [blame] | 407 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 408 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 409 | acpi_get_gpe_device(u32 gpe_index, |
| 410 | acpi_handle * gpe_device)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 412 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 413 | acpi_install_gpe_block(acpi_handle gpe_device, |
| 414 | struct |
| 415 | acpi_generic_address |
| 416 | *gpe_block_address, |
| 417 | u32 register_count, |
| 418 | u32 interrupt_number)) |
| 419 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 420 | acpi_remove_gpe_block(acpi_handle gpe_device)) |
Rafael J. Wysocki | a210080 | 2010-09-16 00:30:43 +0200 | [diff] [blame] | 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | /* |
| 423 | * Resource interfaces |
| 424 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | typedef |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 426 | acpi_status(*acpi_walk_resource_callback) (struct acpi_resource * resource, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 427 | void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
| 429 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 430 | acpi_get_vendor_resource(acpi_handle device, |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 431 | char *name, |
| 432 | struct acpi_vendor_uuid *uuid, |
| 433 | struct acpi_buffer *ret_buffer); |
| 434 | |
| 435 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 436 | acpi_get_current_resources(acpi_handle device, struct acpi_buffer *ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | #ifdef ACPI_FUTURE_USAGE |
| 439 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 440 | acpi_get_possible_resources(acpi_handle device, struct acpi_buffer *ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | #endif |
| 442 | |
| 443 | acpi_status |
Bob Moore | a91cdde | 2011-11-16 14:46:57 +0800 | [diff] [blame] | 444 | acpi_get_event_resources(acpi_handle device_handle, |
| 445 | struct acpi_buffer *ret_buffer); |
| 446 | |
| 447 | acpi_status |
Bob Moore | afb1bbe | 2012-12-31 00:03:58 +0000 | [diff] [blame] | 448 | acpi_walk_resource_buffer(struct acpi_buffer *buffer, |
| 449 | acpi_walk_resource_callback user_function, |
| 450 | void *context); |
| 451 | |
| 452 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 453 | acpi_walk_resources(acpi_handle device, |
Bob Moore | c51a4de | 2005-11-17 13:07:00 -0500 | [diff] [blame] | 454 | char *name, |
Bob Moore | 61686124 | 2006-03-17 16:44:00 -0500 | [diff] [blame] | 455 | acpi_walk_resource_callback user_function, void *context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
| 457 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 458 | acpi_set_current_resources(acpi_handle device, struct acpi_buffer *in_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
| 460 | acpi_status |
Bob Moore | b47cf58 | 2010-04-27 11:54:40 +0800 | [diff] [blame] | 461 | acpi_get_irq_routing_table(acpi_handle device, struct acpi_buffer *ret_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 464 | acpi_resource_to_address64(struct acpi_resource *resource, |
| 465 | struct acpi_resource_address64 *out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
Bob Moore | 0e24317 | 2011-11-16 14:51:01 +0800 | [diff] [blame] | 467 | acpi_status |
| 468 | acpi_buffer_to_resource(u8 *aml_buffer, |
| 469 | u16 aml_buffer_length, |
| 470 | struct acpi_resource **resource_ptr); |
| 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | /* |
| 473 | * Hardware (ACPI device) interfaces |
| 474 | */ |
Bob Moore | d3fd902 | 2008-12-30 11:11:57 +0800 | [diff] [blame] | 475 | acpi_status acpi_reset(void); |
| 476 | |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 477 | acpi_status acpi_read(u64 *value, struct acpi_generic_address *reg); |
| 478 | |
| 479 | acpi_status acpi_write(u64 value, struct acpi_generic_address *reg); |
| 480 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 481 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 482 | acpi_read_bit_register(u32 register_id, |
| 483 | u32 *return_value)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 484 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 485 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 486 | acpi_write_bit_register(u32 register_id, |
| 487 | u32 value)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 489 | /* |
| 490 | * Sleep/Wake interfaces |
| 491 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 493 | acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 495 | acpi_status acpi_enter_sleep_state_prep(u8 sleep_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Len Brown | 3f6f49c | 2012-07-26 20:08:54 -0400 | [diff] [blame] | 497 | acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 499 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
Len Brown | 3f6f49c | 2012-07-26 20:08:54 -0400 | [diff] [blame] | 501 | acpi_status acpi_leave_sleep_state_prep(u8 sleep_state); |
Rafael J. Wysocki | c95d47a | 2008-01-08 00:05:21 +0100 | [diff] [blame] | 502 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 503 | acpi_status acpi_leave_sleep_state(u8 sleep_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 505 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 506 | acpi_set_firmware_waking_vector(u32 |
| 507 | physical_address)) |
| 508 | |
| 509 | #if ACPI_MACHINE_WIDTH == 64 |
| 510 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 511 | acpi_set_firmware_waking_vector64(u64 |
| 512 | physical_address)) |
| 513 | #endif |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 514 | /* |
Bob Moore | d08310f | 2012-02-14 15:22:51 +0800 | [diff] [blame] | 515 | * ACPI Timer interfaces |
| 516 | */ |
| 517 | #ifdef ACPI_FUTURE_USAGE |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 518 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 519 | acpi_get_timer_resolution(u32 *resolution)) |
Bob Moore | d08310f | 2012-02-14 15:22:51 +0800 | [diff] [blame] | 520 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 521 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status acpi_get_timer(u32 *ticks)) |
Bob Moore | d08310f | 2012-02-14 15:22:51 +0800 | [diff] [blame] | 522 | |
Bob Moore | 33620c5 | 2012-02-14 18:14:27 +0800 | [diff] [blame] | 523 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status |
| 524 | acpi_get_timer_duration(u32 start_ticks, |
| 525 | u32 end_ticks, |
| 526 | u32 *time_elapsed)) |
Bob Moore | d08310f | 2012-02-14 15:22:51 +0800 | [diff] [blame] | 527 | #endif /* ACPI_FUTURE_USAGE */ |
| 528 | |
| 529 | /* |
Bob Moore | b74be61 | 2009-04-22 10:20:23 +0800 | [diff] [blame] | 530 | * Error/Warning output |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 531 | */ |
| 532 | void ACPI_INTERNAL_VAR_XFACE |
| 533 | acpi_error(const char *module_name, |
| 534 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); |
| 535 | |
| 536 | void ACPI_INTERNAL_VAR_XFACE |
| 537 | acpi_exception(const char *module_name, |
| 538 | u32 line_number, |
| 539 | acpi_status status, const char *format, ...) ACPI_PRINTF_LIKE(4); |
| 540 | |
| 541 | void ACPI_INTERNAL_VAR_XFACE |
| 542 | acpi_warning(const char *module_name, |
| 543 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); |
| 544 | |
| 545 | void ACPI_INTERNAL_VAR_XFACE |
| 546 | acpi_info(const char *module_name, |
| 547 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); |
| 548 | |
Bob Moore | 62cdd14 | 2012-07-16 09:25:27 +0800 | [diff] [blame] | 549 | void ACPI_INTERNAL_VAR_XFACE |
| 550 | acpi_bios_error(const char *module_name, |
| 551 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); |
| 552 | |
| 553 | void ACPI_INTERNAL_VAR_XFACE |
| 554 | acpi_bios_warning(const char *module_name, |
| 555 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); |
| 556 | |
Bob Moore | b74be61 | 2009-04-22 10:20:23 +0800 | [diff] [blame] | 557 | /* |
| 558 | * Debug output |
| 559 | */ |
Bob Moore | 50df4d8 | 2008-12-31 03:01:23 +0800 | [diff] [blame] | 560 | #ifdef ACPI_DEBUG_OUTPUT |
| 561 | |
| 562 | void ACPI_INTERNAL_VAR_XFACE |
| 563 | acpi_debug_print(u32 requested_debug_level, |
| 564 | u32 line_number, |
| 565 | const char *function_name, |
| 566 | const char *module_name, |
| 567 | u32 component_id, const char *format, ...) ACPI_PRINTF_LIKE(6); |
| 568 | |
| 569 | void ACPI_INTERNAL_VAR_XFACE |
| 570 | acpi_debug_print_raw(u32 requested_debug_level, |
| 571 | u32 line_number, |
| 572 | const char *function_name, |
| 573 | const char *module_name, |
| 574 | u32 component_id, |
| 575 | const char *format, ...) ACPI_PRINTF_LIKE(6); |
| 576 | #endif |
| 577 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 578 | #endif /* __ACXFACE_H__ */ |