Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /****************************************************************************** |
| 3 | * |
Bob Moore | abf95c3 | 2012-10-31 02:27:04 +0000 | [diff] [blame] | 4 | * Name: acpiosxf.h - All interfaces to the OS Services Layer (OSL). These |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * interfaces must be implemented by OSL to interface the |
| 6 | * ACPI components to the host operating system. |
| 7 | * |
Bob Moore | da6f832 | 2018-01-04 10:06:38 -0800 | [diff] [blame] | 8 | * Copyright (C) 2000 - 2018, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 10 | *****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | #ifndef __ACPIOSXF_H__ |
| 13 | #define __ACPIOSXF_H__ |
| 14 | |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 15 | #include <acpi/platform/acenv.h> |
| 16 | #include <acpi/actypes.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 18 | /* Types for acpi_os_execute */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 20 | typedef enum { |
| 21 | OSL_GLOBAL_LOCK_HANDLER, |
| 22 | OSL_NOTIFY_HANDLER, |
| 23 | OSL_GPE_HANDLER, |
Lv Zheng | f988f24 | 2015-10-19 10:25:50 +0800 | [diff] [blame] | 24 | OSL_DEBUGGER_MAIN_THREAD, |
| 25 | OSL_DEBUGGER_EXEC_THREAD, |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 26 | OSL_EC_POLL_HANDLER, |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 27 | OSL_EC_BURST_HANDLER |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 28 | } acpi_execute_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | #define ACPI_NO_UNIT_LIMIT ((u32) -1) |
| 31 | #define ACPI_MUTEX_SEM 1 |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* Functions for acpi_os_signal */ |
| 34 | |
| 35 | #define ACPI_SIGNAL_FATAL 0 |
| 36 | #define ACPI_SIGNAL_BREAKPOINT 1 |
| 37 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 38 | struct acpi_signal_fatal_info { |
| 39 | u32 type; |
| 40 | u32 code; |
| 41 | u32 argument; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | }; |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* |
| 45 | * OSL Initialization and shutdown primitives |
| 46 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 47 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_initialize |
Lv Zheng | 9322058 | 2013-10-29 09:30:41 +0800 | [diff] [blame] | 48 | acpi_status acpi_os_initialize(void); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 49 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 51 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_terminate |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 52 | acpi_status acpi_os_terminate(void); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 53 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * ACPI Table interfaces |
| 57 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 58 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_root_pointer |
Bob Moore | f3d2e78 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 59 | acpi_physical_address acpi_os_get_root_pointer(void); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 60 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 62 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_predefined_override |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 64 | acpi_os_predefined_override(const struct acpi_predefined_names *init_val, |
Lv Zheng | 80b2881 | 2016-03-24 09:38:28 +0800 | [diff] [blame] | 65 | acpi_string *new_val); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 66 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 68 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_table_override |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 70 | acpi_os_table_override(struct acpi_table_header *existing_table, |
| 71 | struct acpi_table_header **new_table); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 72 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 74 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_physical_table_override |
Bob Moore | f7b004a | 2012-02-14 18:31:56 +0800 | [diff] [blame] | 75 | acpi_status |
| 76 | acpi_os_physical_table_override(struct acpi_table_header *existing_table, |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 77 | acpi_physical_address *new_address, |
Bob Moore | f7b004a | 2012-02-14 18:31:56 +0800 | [diff] [blame] | 78 | u32 *new_table_length); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 79 | #endif |
Bob Moore | f7b004a | 2012-02-14 18:31:56 +0800 | [diff] [blame] | 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | /* |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 82 | * Spinlock primitives |
| 83 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 84 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_lock |
Lv Zheng | 3e8214e | 2012-12-19 05:37:15 +0000 | [diff] [blame] | 85 | acpi_status acpi_os_create_lock(acpi_spinlock * out_handle); |
Rafael J. Wysocki | 07e49a7 | 2011-07-06 20:44:25 +0200 | [diff] [blame] | 86 | #endif |
Lin Ming | 9f63b88 | 2011-03-23 17:26:34 +0800 | [diff] [blame] | 87 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 88 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_lock |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 89 | void acpi_os_delete_lock(acpi_spinlock handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 90 | #endif |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 91 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 92 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_lock |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 93 | acpi_cpu_flags acpi_os_acquire_lock(acpi_spinlock handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 94 | #endif |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 95 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 96 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_lock |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 97 | void acpi_os_release_lock(acpi_spinlock handle, acpi_cpu_flags flags); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 98 | #endif |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 99 | |
| 100 | /* |
| 101 | * Semaphore primitives |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 103 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_semaphore |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 105 | acpi_os_create_semaphore(u32 max_units, |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 106 | u32 initial_units, acpi_semaphore * out_handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 107 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 109 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_semaphore |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 110 | acpi_status acpi_os_delete_semaphore(acpi_semaphore handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 111 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 113 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_semaphore |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 114 | acpi_status |
| 115 | acpi_os_wait_semaphore(acpi_semaphore handle, u32 units, u16 timeout); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 116 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 118 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_signal_semaphore |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 119 | acpi_status acpi_os_signal_semaphore(acpi_semaphore handle, u32 units); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 120 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 122 | /* |
Bob Moore | 1685bd4 | 2008-12-31 03:03:29 +0800 | [diff] [blame] | 123 | * Mutex primitives. May be configured to use semaphores instead via |
| 124 | * ACPI_MUTEX_TYPE (see platform/acenv.h) |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 125 | */ |
Bob Moore | 1685bd4 | 2008-12-31 03:03:29 +0800 | [diff] [blame] | 126 | #if (ACPI_MUTEX_TYPE != ACPI_BINARY_SEMAPHORE) |
| 127 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 128 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 129 | acpi_status acpi_os_create_mutex(acpi_mutex * out_handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 130 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 132 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 133 | void acpi_os_delete_mutex(acpi_mutex handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 134 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 136 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 137 | acpi_status acpi_os_acquire_mutex(acpi_mutex handle, u16 timeout); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 138 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 140 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 141 | void acpi_os_release_mutex(acpi_mutex handle); |
Bob Moore | 1685bd4 | 2008-12-31 03:03:29 +0800 | [diff] [blame] | 142 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 144 | #endif |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | /* |
| 147 | * Memory allocation and mapping |
| 148 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 149 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_allocate |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 150 | void *acpi_os_allocate(acpi_size size); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 151 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 153 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_allocate_zeroed |
Lv Zheng | b3c86c3 | 2013-10-29 09:29:27 +0800 | [diff] [blame] | 154 | void *acpi_os_allocate_zeroed(acpi_size size); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 155 | #endif |
Lv Zheng | b3c86c3 | 2013-10-29 09:29:27 +0800 | [diff] [blame] | 156 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 157 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_free |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 158 | void acpi_os_free(void *memory); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 159 | #endif |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 160 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 161 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_map_memory |
Lv Zheng | 9322058 | 2013-10-29 09:30:41 +0800 | [diff] [blame] | 162 | void *acpi_os_map_memory(acpi_physical_address where, acpi_size length); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 163 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 165 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_unmap_memory |
Lv Zheng | 9322058 | 2013-10-29 09:30:41 +0800 | [diff] [blame] | 166 | void acpi_os_unmap_memory(void *logical_address, acpi_size size); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 167 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 169 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_physical_address |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 171 | acpi_os_get_physical_address(void *logical_address, |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 172 | acpi_physical_address *physical_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | #endif |
| 174 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 175 | /* |
| 176 | * Memory/Object Cache |
| 177 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 178 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_cache |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 179 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | acpi_os_create_cache(char *cache_name, |
| 181 | u16 object_size, |
| 182 | u16 max_depth, acpi_cache_t ** return_cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 183 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 184 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 185 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_cache |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 186 | acpi_status acpi_os_delete_cache(acpi_cache_t * cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 187 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 188 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 189 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_purge_cache |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 190 | acpi_status acpi_os_purge_cache(acpi_cache_t * cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 191 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 192 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 193 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_object |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 194 | void *acpi_os_acquire_object(acpi_cache_t * cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 195 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 196 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 197 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_object |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 198 | acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 199 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /* |
| 202 | * Interrupt handlers |
| 203 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 204 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_install_interrupt_handler |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | acpi_status |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 206 | acpi_os_install_interrupt_handler(u32 interrupt_number, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | acpi_osd_handler service_routine, |
| 208 | void *context); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 209 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 211 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_remove_interrupt_handler |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | acpi_status |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 213 | acpi_os_remove_interrupt_handler(u32 interrupt_number, |
| 214 | acpi_osd_handler service_routine); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 215 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | /* |
| 218 | * Threads and Scheduling |
| 219 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 220 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_thread_id |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 221 | acpi_thread_id acpi_os_get_thread_id(void); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 222 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 224 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_execute |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | acpi_status |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 226 | acpi_os_execute(acpi_execute_type type, |
| 227 | acpi_osd_exec_callback function, void *context); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 228 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 230 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_events_complete |
Lin Ming | bd6f10a | 2012-05-22 16:43:49 +0800 | [diff] [blame] | 231 | void acpi_os_wait_events_complete(void); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 232 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 234 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_sleep |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 235 | void acpi_os_sleep(u64 milliseconds); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 236 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 238 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_stall |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 239 | void acpi_os_stall(u32 microseconds); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 240 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
| 242 | /* |
| 243 | * Platform and hardware-independent I/O interfaces |
| 244 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 245 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_port |
| 246 | acpi_status acpi_os_read_port(acpi_io_address address, u32 *value, u32 width); |
| 247 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 249 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_port |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 250 | acpi_status acpi_os_write_port(acpi_io_address address, u32 value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 251 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
| 253 | /* |
| 254 | * Platform and hardware-independent physical memory interfaces |
| 255 | */ |
Srinivas Pandruvada | eeb2d80 | 2017-10-05 16:24:03 -0700 | [diff] [blame] | 256 | int acpi_os_read_iomem(void __iomem *virt_addr, u64 *value, u32 width); |
| 257 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 258 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_memory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | acpi_status |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 260 | acpi_os_read_memory(acpi_physical_address address, u64 *value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 261 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 263 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_memory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | acpi_status |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 265 | acpi_os_write_memory(acpi_physical_address address, u64 value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 266 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
| 268 | /* |
| 269 | * Platform and hardware-independent PCI configuration space access |
| 270 | * Note: Can't use "Register" as a parameter, changed to "Reg" -- |
| 271 | * certain compilers complain. |
| 272 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 273 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_pci_configuration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 275 | acpi_os_read_pci_configuration(struct acpi_pci_id *pci_id, |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 276 | u32 reg, u64 *value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 277 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 279 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_pci_configuration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 281 | acpi_os_write_pci_configuration(struct acpi_pci_id *pci_id, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 282 | u32 reg, u64 value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 283 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | * Miscellaneous |
| 287 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 288 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_readable |
| 289 | u8 acpi_os_readable(void *pointer, acpi_size length); |
| 290 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 292 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_writable |
| 293 | u8 acpi_os_writable(void *pointer, acpi_size length); |
| 294 | #endif |
| 295 | |
| 296 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_timer |
| 297 | u64 acpi_os_get_timer(void); |
| 298 | #endif |
| 299 | |
| 300 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_signal |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 301 | acpi_status acpi_os_signal(u32 function, void *info); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 302 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Lv Zheng | 0fc5e8f | 2016-12-28 15:28:49 +0800 | [diff] [blame] | 304 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_enter_sleep |
| 305 | acpi_status acpi_os_enter_sleep(u8 sleep_state, u32 rega_value, u32 regb_value); |
| 306 | #endif |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | /* |
| 309 | * Debug print routines |
| 310 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 311 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_printf |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 312 | void ACPI_INTERNAL_VAR_XFACE acpi_os_printf(const char *format, ...); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 313 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 315 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_vprintf |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 316 | void acpi_os_vprintf(const char *format, va_list args); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 317 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 319 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_redirect_output |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 320 | void acpi_os_redirect_output(void *destination); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 321 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | /* |
Lv Zheng | f8d3148 | 2015-12-03 10:42:46 +0800 | [diff] [blame] | 324 | * Debug IO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 326 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_line |
| 327 | acpi_status acpi_os_get_line(char *buffer, u32 buffer_length, u32 *bytes_read); |
| 328 | #endif |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 329 | |
Lv Zheng | 703ecd2 | 2016-12-28 15:28:07 +0800 | [diff] [blame] | 330 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_initialize_debugger |
| 331 | acpi_status acpi_os_initialize_debugger(void); |
Lv Zheng | f8d3148 | 2015-12-03 10:42:46 +0800 | [diff] [blame] | 332 | #endif |
| 333 | |
Lv Zheng | 703ecd2 | 2016-12-28 15:28:07 +0800 | [diff] [blame] | 334 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_terminate_debugger |
| 335 | void acpi_os_terminate_debugger(void); |
Lv Zheng | f8d3148 | 2015-12-03 10:42:46 +0800 | [diff] [blame] | 336 | #endif |
| 337 | |
| 338 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_command_ready |
| 339 | acpi_status acpi_os_wait_command_ready(void); |
| 340 | #endif |
| 341 | |
| 342 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_notify_command_complete |
| 343 | acpi_status acpi_os_notify_command_complete(void); |
| 344 | #endif |
| 345 | |
Lv Zheng | dd99cbc | 2016-08-04 16:45:13 +0800 | [diff] [blame] | 346 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_trace_point |
| 347 | void |
| 348 | acpi_os_trace_point(acpi_trace_event_type type, |
| 349 | u8 begin, u8 *aml, char *pathname); |
| 350 | #endif |
| 351 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 352 | /* |
| 353 | * Obtain ACPI table(s) |
| 354 | */ |
| 355 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_name |
| 356 | acpi_status |
| 357 | acpi_os_get_table_by_name(char *signature, |
| 358 | u32 instance, |
| 359 | struct acpi_table_header **table, |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 360 | acpi_physical_address *address); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 361 | #endif |
| 362 | |
| 363 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_index |
| 364 | acpi_status |
| 365 | acpi_os_get_table_by_index(u32 index, |
| 366 | struct acpi_table_header **table, |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 367 | u32 *instance, acpi_physical_address *address); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 368 | #endif |
| 369 | |
| 370 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_address |
| 371 | acpi_status |
| 372 | acpi_os_get_table_by_address(acpi_physical_address address, |
| 373 | struct acpi_table_header **table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | #endif |
| 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | /* |
| 377 | * Directory manipulation |
| 378 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 379 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_open_directory |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 380 | void *acpi_os_open_directory(char *pathname, |
| 381 | char *wildcard_spec, char requested_file_type); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 382 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
| 384 | /* requeste_file_type values */ |
| 385 | |
| 386 | #define REQUEST_FILE_ONLY 0 |
| 387 | #define REQUEST_DIR_ONLY 1 |
| 388 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 389 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_next_filename |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 390 | char *acpi_os_get_next_filename(void *dir_handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 391 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 393 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_close_directory |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 394 | void acpi_os_close_directory(void *dir_handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 395 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 397 | #endif /* __ACPIOSXF_H__ */ |