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 | * |
| 4 | * Module Name: exsystem - Interface to OS services |
| 5 | * |
Bob Moore | 800ba7c | 2020-01-10 11:31:49 -0800 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2020, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame] | 8 | *****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 11 | #include "accommon.h" |
| 12 | #include "acinterp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | #define _COMPONENT ACPI_EXECUTER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 15 | ACPI_MODULE_NAME("exsystem") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | /******************************************************************************* |
| 18 | * |
| 19 | * FUNCTION: acpi_ex_system_wait_semaphore |
| 20 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 21 | * PARAMETERS: semaphore - Semaphore to wait on |
| 22 | * timeout - Max time to wait |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * |
| 24 | * RETURN: Status |
| 25 | * |
| 26 | * DESCRIPTION: Implements a semaphore wait with a check to see if the |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 27 | * semaphore is available immediately. If it is not, the |
Bob Moore | f6dd922 | 2006-07-07 20:44:38 -0400 | [diff] [blame] | 28 | * interpreter is released before waiting. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * |
| 30 | ******************************************************************************/ |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 31 | acpi_status acpi_ex_system_wait_semaphore(acpi_semaphore semaphore, u16 timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 33 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 35 | ACPI_FUNCTION_TRACE(ex_system_wait_semaphore); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 37 | status = acpi_os_wait_semaphore(semaphore, 1, ACPI_DO_NOT_WAIT); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 38 | if (ACPI_SUCCESS(status)) { |
| 39 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | if (status == AE_TIME) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* We must wait, so unlock the interpreter */ |
| 45 | |
Lv Zheng | e2b8ddc | 2014-03-24 14:48:45 +0800 | [diff] [blame] | 46 | acpi_ex_exit_interpreter(); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 47 | status = acpi_os_wait_semaphore(semaphore, 1, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 49 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 50 | "*** Thread awake after blocking, %s\n", |
| 51 | acpi_format_exception(status))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | /* Reacquire the interpreter */ |
| 54 | |
Lv Zheng | e2b8ddc | 2014-03-24 14:48:45 +0800 | [diff] [blame] | 55 | acpi_ex_enter_interpreter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 58 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /******************************************************************************* |
| 62 | * |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 63 | * FUNCTION: acpi_ex_system_wait_mutex |
| 64 | * |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 65 | * PARAMETERS: mutex - Mutex to wait on |
| 66 | * timeout - Max time to wait |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 67 | * |
| 68 | * RETURN: Status |
| 69 | * |
Bob Moore | f6dd922 | 2006-07-07 20:44:38 -0400 | [diff] [blame] | 70 | * DESCRIPTION: Implements a mutex wait with a check to see if the |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 71 | * mutex is available immediately. If it is not, the |
Bob Moore | f6dd922 | 2006-07-07 20:44:38 -0400 | [diff] [blame] | 72 | * interpreter is released before waiting. |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 73 | * |
| 74 | ******************************************************************************/ |
| 75 | |
| 76 | acpi_status acpi_ex_system_wait_mutex(acpi_mutex mutex, u16 timeout) |
| 77 | { |
| 78 | acpi_status status; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 79 | |
| 80 | ACPI_FUNCTION_TRACE(ex_system_wait_mutex); |
| 81 | |
| 82 | status = acpi_os_acquire_mutex(mutex, ACPI_DO_NOT_WAIT); |
| 83 | if (ACPI_SUCCESS(status)) { |
| 84 | return_ACPI_STATUS(status); |
| 85 | } |
| 86 | |
| 87 | if (status == AE_TIME) { |
| 88 | |
| 89 | /* We must wait, so unlock the interpreter */ |
| 90 | |
Lv Zheng | e2b8ddc | 2014-03-24 14:48:45 +0800 | [diff] [blame] | 91 | acpi_ex_exit_interpreter(); |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 92 | status = acpi_os_acquire_mutex(mutex, timeout); |
| 93 | |
| 94 | ACPI_DEBUG_PRINT((ACPI_DB_EXEC, |
| 95 | "*** Thread awake after blocking, %s\n", |
| 96 | acpi_format_exception(status))); |
| 97 | |
| 98 | /* Reacquire the interpreter */ |
| 99 | |
Lv Zheng | e2b8ddc | 2014-03-24 14:48:45 +0800 | [diff] [blame] | 100 | acpi_ex_enter_interpreter(); |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | return_ACPI_STATUS(status); |
| 104 | } |
| 105 | |
| 106 | /******************************************************************************* |
| 107 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | * FUNCTION: acpi_ex_system_do_stall |
| 109 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 110 | * PARAMETERS: how_long - The amount of time to stall, |
| 111 | * in microseconds |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | * |
| 113 | * RETURN: Status |
| 114 | * |
| 115 | * DESCRIPTION: Suspend running thread for specified amount of time. |
| 116 | * Note: ACPI specification requires that Stall() does not |
| 117 | * relinquish the processor, and delays longer than 100 usec |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 118 | * should use Sleep() instead. We allow stalls up to 255 usec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | * for compatibility with other interpreters and existing BIOSs. |
| 120 | * |
| 121 | ******************************************************************************/ |
| 122 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 123 | acpi_status acpi_ex_system_do_stall(u32 how_long) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 125 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 127 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 129 | if (how_long > 255) { /* 255 microseconds */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | /* |
| 131 | * Longer than 255 usec, this is an error |
| 132 | * |
| 133 | * (ACPI specifies 100 usec as max, but this gives some slack in |
| 134 | * order to support existing BIOSs) |
| 135 | */ |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 136 | ACPI_ERROR((AE_INFO, |
| 137 | "Time parameter is too large (%u)", how_long)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | status = AE_AML_OPERAND_VALUE; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 139 | } else { |
| 140 | acpi_os_stall(how_long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | return (status); |
| 144 | } |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | /******************************************************************************* |
| 147 | * |
Bob Moore | ada241d | 2010-04-27 11:48:02 +0800 | [diff] [blame] | 148 | * FUNCTION: acpi_ex_system_do_sleep |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | * |
Bob Moore | ada241d | 2010-04-27 11:48:02 +0800 | [diff] [blame] | 150 | * PARAMETERS: how_long - The amount of time to sleep, |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 151 | * in milliseconds |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | * |
| 153 | * RETURN: None |
| 154 | * |
Bob Moore | ada241d | 2010-04-27 11:48:02 +0800 | [diff] [blame] | 155 | * DESCRIPTION: Sleep the running thread for specified amount of time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | * |
| 157 | ******************************************************************************/ |
| 158 | |
Bob Moore | ada241d | 2010-04-27 11:48:02 +0800 | [diff] [blame] | 159 | acpi_status acpi_ex_system_do_sleep(u64 how_long) |
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 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
| 163 | /* Since this thread will sleep, we must release the interpreter */ |
| 164 | |
Lv Zheng | e2b8ddc | 2014-03-24 14:48:45 +0800 | [diff] [blame] | 165 | acpi_ex_exit_interpreter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
Bob Moore | 9cbfa18 | 2010-05-26 11:22:41 +0800 | [diff] [blame] | 167 | /* |
| 168 | * For compatibility with other ACPI implementations and to prevent |
| 169 | * accidental deep sleeps, limit the sleep time to something reasonable. |
| 170 | */ |
| 171 | if (how_long > ACPI_MAX_SLEEP) { |
| 172 | how_long = ACPI_MAX_SLEEP; |
| 173 | } |
| 174 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | acpi_os_sleep(how_long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
| 177 | /* And now we must get the interpreter again */ |
| 178 | |
Lv Zheng | e2b8ddc | 2014-03-24 14:48:45 +0800 | [diff] [blame] | 179 | acpi_ex_enter_interpreter(); |
Len Brown | 4d2acd9 | 2007-05-09 22:56:38 -0400 | [diff] [blame] | 180 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /******************************************************************************* |
| 184 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | * FUNCTION: acpi_ex_system_signal_event |
| 186 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 187 | * PARAMETERS: obj_desc - The object descriptor for this op |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 189 | * RETURN: Status |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | * |
| 191 | * DESCRIPTION: Provides an access point to perform synchronization operations |
| 192 | * within the AML. |
| 193 | * |
| 194 | ******************************************************************************/ |
| 195 | |
Bob Moore | c81da66 | 2007-02-02 19:48:18 +0300 | [diff] [blame] | 196 | acpi_status acpi_ex_system_signal_event(union acpi_operand_object * obj_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 198 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 200 | ACPI_FUNCTION_TRACE(ex_system_signal_event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | if (obj_desc) { |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 203 | status = |
| 204 | acpi_os_signal_semaphore(obj_desc->event.os_semaphore, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /******************************************************************************* |
| 211 | * |
| 212 | * FUNCTION: acpi_ex_system_wait_event |
| 213 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 214 | * PARAMETERS: time_desc - The 'time to delay' object descriptor |
| 215 | * obj_desc - The object descriptor for this op |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * |
| 217 | * RETURN: Status |
| 218 | * |
| 219 | * DESCRIPTION: Provides an access point to perform synchronization operations |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 220 | * within the AML. This operation is a request to wait for an |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | * event. |
| 222 | * |
| 223 | ******************************************************************************/ |
| 224 | |
| 225 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 226 | acpi_ex_system_wait_event(union acpi_operand_object *time_desc, |
| 227 | union acpi_operand_object *obj_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 229 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 231 | ACPI_FUNCTION_TRACE(ex_system_wait_event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
| 233 | if (obj_desc) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | status = |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 235 | acpi_ex_system_wait_semaphore(obj_desc->event.os_semaphore, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 236 | (u16) time_desc->integer. |
| 237 | value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 240 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | /******************************************************************************* |
| 244 | * |
| 245 | * FUNCTION: acpi_ex_system_reset_event |
| 246 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 247 | * PARAMETERS: obj_desc - The object descriptor for this op |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | * |
| 249 | * RETURN: Status |
| 250 | * |
| 251 | * DESCRIPTION: Reset an event to a known state. |
| 252 | * |
| 253 | ******************************************************************************/ |
| 254 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | acpi_status acpi_ex_system_reset_event(union acpi_operand_object *obj_desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 257 | acpi_status status = AE_OK; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 258 | acpi_semaphore temp_semaphore; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 260 | ACPI_FUNCTION_ENTRY(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | /* |
| 263 | * We are going to simply delete the existing semaphore and |
| 264 | * create a new one! |
| 265 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 266 | status = |
| 267 | acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0, &temp_semaphore); |
| 268 | if (ACPI_SUCCESS(status)) { |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 269 | (void)acpi_os_delete_semaphore(obj_desc->event.os_semaphore); |
| 270 | obj_desc->event.os_semaphore = temp_semaphore; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | return (status); |
| 274 | } |