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 | /* |
Sebastian Andrzej Siewior | c305259 | 2018-04-25 16:28:26 +0200 | [diff] [blame] | 101 | * RAW spinlock primitives. If the OS does not provide them, fallback to |
| 102 | * spinlock primitives |
| 103 | */ |
| 104 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_raw_lock |
| 105 | # define acpi_os_create_raw_lock(out_handle) acpi_os_create_lock(out_handle) |
| 106 | #endif |
| 107 | |
| 108 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_raw_lock |
| 109 | # define acpi_os_delete_raw_lock(handle) acpi_os_delete_lock(handle) |
| 110 | #endif |
| 111 | |
| 112 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_raw_lock |
| 113 | # define acpi_os_acquire_raw_lock(handle) acpi_os_acquire_lock(handle) |
| 114 | #endif |
| 115 | |
| 116 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_raw_lock |
| 117 | # define acpi_os_release_raw_lock(handle, flags) \ |
| 118 | acpi_os_release_lock(handle, flags) |
| 119 | #endif |
| 120 | |
| 121 | /* |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 122 | * Semaphore primitives |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 124 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_semaphore |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | acpi_os_create_semaphore(u32 max_units, |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 127 | u32 initial_units, acpi_semaphore * out_handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 128 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 130 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_semaphore |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 131 | acpi_status acpi_os_delete_semaphore(acpi_semaphore handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 132 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 134 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_semaphore |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 135 | acpi_status |
| 136 | acpi_os_wait_semaphore(acpi_semaphore handle, u32 units, u16 timeout); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 137 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 139 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_signal_semaphore |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 140 | acpi_status acpi_os_signal_semaphore(acpi_semaphore handle, u32 units); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 141 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 143 | /* |
Bob Moore | 1685bd4 | 2008-12-31 03:03:29 +0800 | [diff] [blame] | 144 | * Mutex primitives. May be configured to use semaphores instead via |
| 145 | * ACPI_MUTEX_TYPE (see platform/acenv.h) |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 146 | */ |
Bob Moore | 1685bd4 | 2008-12-31 03:03:29 +0800 | [diff] [blame] | 147 | #if (ACPI_MUTEX_TYPE != ACPI_BINARY_SEMAPHORE) |
| 148 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 149 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 150 | acpi_status acpi_os_create_mutex(acpi_mutex * out_handle); |
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_delete_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 154 | void acpi_os_delete_mutex(acpi_mutex handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 155 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 157 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 158 | acpi_status acpi_os_acquire_mutex(acpi_mutex handle, u16 timeout); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 159 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 161 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_mutex |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 162 | void acpi_os_release_mutex(acpi_mutex handle); |
Bob Moore | 1685bd4 | 2008-12-31 03:03:29 +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 | #endif |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /* |
| 168 | * Memory allocation and mapping |
| 169 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 170 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_allocate |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 171 | void *acpi_os_allocate(acpi_size size); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 172 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 174 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_allocate_zeroed |
Lv Zheng | b3c86c3 | 2013-10-29 09:29:27 +0800 | [diff] [blame] | 175 | void *acpi_os_allocate_zeroed(acpi_size size); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 176 | #endif |
Lv Zheng | b3c86c3 | 2013-10-29 09:29:27 +0800 | [diff] [blame] | 177 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 178 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_free |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 179 | void acpi_os_free(void *memory); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 180 | #endif |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 181 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 182 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_map_memory |
Lv Zheng | 9322058 | 2013-10-29 09:30:41 +0800 | [diff] [blame] | 183 | void *acpi_os_map_memory(acpi_physical_address where, acpi_size length); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 184 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 186 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_unmap_memory |
Lv Zheng | 9322058 | 2013-10-29 09:30:41 +0800 | [diff] [blame] | 187 | void acpi_os_unmap_memory(void *logical_address, acpi_size size); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 188 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 190 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_physical_address |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 192 | acpi_os_get_physical_address(void *logical_address, |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 193 | acpi_physical_address *physical_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | #endif |
| 195 | |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 196 | /* |
| 197 | * Memory/Object Cache |
| 198 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 199 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_create_cache |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 200 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | acpi_os_create_cache(char *cache_name, |
| 202 | u16 object_size, |
| 203 | u16 max_depth, acpi_cache_t ** return_cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 204 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 205 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 206 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_delete_cache |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | acpi_status acpi_os_delete_cache(acpi_cache_t * cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 208 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 209 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 210 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_purge_cache |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 211 | acpi_status acpi_os_purge_cache(acpi_cache_t * cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 212 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 213 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 214 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_acquire_object |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 215 | void *acpi_os_acquire_object(acpi_cache_t * cache); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 216 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 217 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 218 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_release_object |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 219 | acpi_status acpi_os_release_object(acpi_cache_t * cache, void *object); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 220 | #endif |
Robert Moore | 73459f7 | 2005-06-24 00:00:00 -0400 | [diff] [blame] | 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | /* |
| 223 | * Interrupt handlers |
| 224 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 225 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_install_interrupt_handler |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | acpi_status |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 227 | acpi_os_install_interrupt_handler(u32 interrupt_number, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | acpi_osd_handler service_routine, |
| 229 | void *context); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 230 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 232 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_remove_interrupt_handler |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | acpi_status |
Lv Zheng | 739dcbb | 2012-12-20 01:07:26 +0000 | [diff] [blame] | 234 | acpi_os_remove_interrupt_handler(u32 interrupt_number, |
| 235 | acpi_osd_handler service_routine); |
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 | |
| 238 | /* |
| 239 | * Threads and Scheduling |
| 240 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 241 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_thread_id |
Bob Moore | 8313524 | 2006-10-03 00:00:00 -0400 | [diff] [blame] | 242 | acpi_thread_id acpi_os_get_thread_id(void); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 243 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 245 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_execute |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | acpi_status |
Bob Moore | 958dd24 | 2006-05-12 17:12:00 -0400 | [diff] [blame] | 247 | acpi_os_execute(acpi_execute_type type, |
| 248 | acpi_osd_exec_callback function, void *context); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 249 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 251 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_events_complete |
Lin Ming | bd6f10a | 2012-05-22 16:43:49 +0800 | [diff] [blame] | 252 | void acpi_os_wait_events_complete(void); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 253 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 255 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_sleep |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 256 | void acpi_os_sleep(u64 milliseconds); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 257 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 259 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_stall |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 260 | void acpi_os_stall(u32 microseconds); |
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 | |
| 263 | /* |
| 264 | * Platform and hardware-independent I/O interfaces |
| 265 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 266 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_port |
| 267 | acpi_status acpi_os_read_port(acpi_io_address address, u32 *value, u32 width); |
| 268 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 270 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_port |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 271 | 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] | 272 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | /* |
| 275 | * Platform and hardware-independent physical memory interfaces |
| 276 | */ |
Srinivas Pandruvada | eeb2d80 | 2017-10-05 16:24:03 -0700 | [diff] [blame] | 277 | int acpi_os_read_iomem(void __iomem *virt_addr, u64 *value, u32 width); |
| 278 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 279 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_memory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | acpi_status |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 281 | acpi_os_read_memory(acpi_physical_address address, u64 *value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 282 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 284 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_memory |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | acpi_status |
Bob Moore | 653f4b5 | 2012-02-14 18:29:55 +0800 | [diff] [blame] | 286 | acpi_os_write_memory(acpi_physical_address address, u64 value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 287 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
| 289 | /* |
| 290 | * Platform and hardware-independent PCI configuration space access |
| 291 | * Note: Can't use "Register" as a parameter, changed to "Reg" -- |
| 292 | * certain compilers complain. |
| 293 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 294 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_read_pci_configuration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 296 | acpi_os_read_pci_configuration(struct acpi_pci_id *pci_id, |
Bob Moore | c5f0231 | 2010-08-06 08:57:53 +0800 | [diff] [blame] | 297 | u32 reg, u64 *value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 298 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 300 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_write_pci_configuration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 302 | acpi_os_write_pci_configuration(struct acpi_pci_id *pci_id, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 303 | u32 reg, u64 value, u32 width); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 304 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
| 306 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | * Miscellaneous |
| 308 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 309 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_readable |
| 310 | u8 acpi_os_readable(void *pointer, acpi_size length); |
| 311 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 313 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_writable |
| 314 | u8 acpi_os_writable(void *pointer, acpi_size length); |
| 315 | #endif |
| 316 | |
| 317 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_timer |
| 318 | u64 acpi_os_get_timer(void); |
| 319 | #endif |
| 320 | |
| 321 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_signal |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 322 | acpi_status acpi_os_signal(u32 function, void *info); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 323 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
Lv Zheng | 0fc5e8f | 2016-12-28 15:28:49 +0800 | [diff] [blame] | 325 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_enter_sleep |
| 326 | acpi_status acpi_os_enter_sleep(u8 sleep_state, u32 rega_value, u32 regb_value); |
| 327 | #endif |
| 328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | /* |
| 330 | * Debug print routines |
| 331 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 332 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_printf |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 333 | void ACPI_INTERNAL_VAR_XFACE acpi_os_printf(const char *format, ...); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 334 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 336 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_vprintf |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 337 | void acpi_os_vprintf(const char *format, va_list args); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 338 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 340 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_redirect_output |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 341 | void acpi_os_redirect_output(void *destination); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 342 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | /* |
Lv Zheng | f8d3148 | 2015-12-03 10:42:46 +0800 | [diff] [blame] | 345 | * Debug IO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 347 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_line |
| 348 | acpi_status acpi_os_get_line(char *buffer, u32 buffer_length, u32 *bytes_read); |
| 349 | #endif |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 350 | |
Lv Zheng | 703ecd2 | 2016-12-28 15:28:07 +0800 | [diff] [blame] | 351 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_initialize_debugger |
| 352 | acpi_status acpi_os_initialize_debugger(void); |
Lv Zheng | f8d3148 | 2015-12-03 10:42:46 +0800 | [diff] [blame] | 353 | #endif |
| 354 | |
Lv Zheng | 703ecd2 | 2016-12-28 15:28:07 +0800 | [diff] [blame] | 355 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_terminate_debugger |
| 356 | void acpi_os_terminate_debugger(void); |
Lv Zheng | f8d3148 | 2015-12-03 10:42:46 +0800 | [diff] [blame] | 357 | #endif |
| 358 | |
| 359 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_wait_command_ready |
| 360 | acpi_status acpi_os_wait_command_ready(void); |
| 361 | #endif |
| 362 | |
| 363 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_notify_command_complete |
| 364 | acpi_status acpi_os_notify_command_complete(void); |
| 365 | #endif |
| 366 | |
Lv Zheng | dd99cbc | 2016-08-04 16:45:13 +0800 | [diff] [blame] | 367 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_trace_point |
| 368 | void |
| 369 | acpi_os_trace_point(acpi_trace_event_type type, |
| 370 | u8 begin, u8 *aml, char *pathname); |
| 371 | #endif |
| 372 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 373 | /* |
| 374 | * Obtain ACPI table(s) |
| 375 | */ |
| 376 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_name |
| 377 | acpi_status |
| 378 | acpi_os_get_table_by_name(char *signature, |
| 379 | u32 instance, |
| 380 | struct acpi_table_header **table, |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 381 | acpi_physical_address *address); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 382 | #endif |
| 383 | |
| 384 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_index |
| 385 | acpi_status |
| 386 | acpi_os_get_table_by_index(u32 index, |
| 387 | struct acpi_table_header **table, |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 388 | u32 *instance, acpi_physical_address *address); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 389 | #endif |
| 390 | |
| 391 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_table_by_address |
| 392 | acpi_status |
| 393 | acpi_os_get_table_by_address(acpi_physical_address address, |
| 394 | struct acpi_table_header **table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | #endif |
| 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* |
| 398 | * Directory manipulation |
| 399 | */ |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 400 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_open_directory |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 401 | void *acpi_os_open_directory(char *pathname, |
| 402 | char *wildcard_spec, char requested_file_type); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 403 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | /* requeste_file_type values */ |
| 406 | |
| 407 | #define REQUEST_FILE_ONLY 0 |
| 408 | #define REQUEST_DIR_ONLY 1 |
| 409 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 410 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_get_next_filename |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 411 | char *acpi_os_get_next_filename(void *dir_handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 412 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 414 | #ifndef ACPI_USE_ALTERNATE_PROTOTYPE_acpi_os_close_directory |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 415 | void acpi_os_close_directory(void *dir_handle); |
Lv Zheng | 7e94632f | 2013-10-29 09:30:35 +0800 | [diff] [blame] | 416 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 418 | #endif /* __ACPIOSXF_H__ */ |