WIP FPC-III support
[linux/fpc-iii.git] / drivers / acpi / acpica / exsystem.c
blobf329b01672bb67f332bb0731bf1056391ff03ecc
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: exsystem - Interface to OS services
6 * Copyright (C) 2000 - 2020, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
11 #include "accommon.h"
12 #include "acinterp.h"
14 #define _COMPONENT ACPI_EXECUTER
15 ACPI_MODULE_NAME("exsystem")
17 /*******************************************************************************
19 * FUNCTION: acpi_ex_system_wait_semaphore
21 * PARAMETERS: semaphore - Semaphore to wait on
22 * timeout - Max time to wait
24 * RETURN: Status
26 * DESCRIPTION: Implements a semaphore wait with a check to see if the
27 * semaphore is available immediately. If it is not, the
28 * interpreter is released before waiting.
30 ******************************************************************************/
31 acpi_status acpi_ex_system_wait_semaphore(acpi_semaphore semaphore, u16 timeout)
33 acpi_status status;
35 ACPI_FUNCTION_TRACE(ex_system_wait_semaphore);
37 status = acpi_os_wait_semaphore(semaphore, 1, ACPI_DO_NOT_WAIT);
38 if (ACPI_SUCCESS(status)) {
39 return_ACPI_STATUS(status);
42 if (status == AE_TIME) {
44 /* We must wait, so unlock the interpreter */
46 acpi_ex_exit_interpreter();
47 status = acpi_os_wait_semaphore(semaphore, 1, timeout);
49 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
50 "*** Thread awake after blocking, %s\n",
51 acpi_format_exception(status)));
53 /* Reacquire the interpreter */
55 acpi_ex_enter_interpreter();
58 return_ACPI_STATUS(status);
61 /*******************************************************************************
63 * FUNCTION: acpi_ex_system_wait_mutex
65 * PARAMETERS: mutex - Mutex to wait on
66 * timeout - Max time to wait
68 * RETURN: Status
70 * DESCRIPTION: Implements a mutex wait with a check to see if the
71 * mutex is available immediately. If it is not, the
72 * interpreter is released before waiting.
74 ******************************************************************************/
76 acpi_status acpi_ex_system_wait_mutex(acpi_mutex mutex, u16 timeout)
78 acpi_status status;
80 ACPI_FUNCTION_TRACE(ex_system_wait_mutex);
82 status = acpi_os_acquire_mutex(mutex, ACPI_DO_NOT_WAIT);
83 if (ACPI_SUCCESS(status)) {
84 return_ACPI_STATUS(status);
87 if (status == AE_TIME) {
89 /* We must wait, so unlock the interpreter */
91 acpi_ex_exit_interpreter();
92 status = acpi_os_acquire_mutex(mutex, timeout);
94 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
95 "*** Thread awake after blocking, %s\n",
96 acpi_format_exception(status)));
98 /* Reacquire the interpreter */
100 acpi_ex_enter_interpreter();
103 return_ACPI_STATUS(status);
106 /*******************************************************************************
108 * FUNCTION: acpi_ex_system_do_stall
110 * PARAMETERS: how_long - The amount of time to stall,
111 * in microseconds
113 * RETURN: Status
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
118 * should use Sleep() instead. We allow stalls up to 255 usec
119 * for compatibility with other interpreters and existing BIOSs.
121 ******************************************************************************/
123 acpi_status acpi_ex_system_do_stall(u32 how_long)
125 acpi_status status = AE_OK;
127 ACPI_FUNCTION_ENTRY();
129 if (how_long > 255) { /* 255 microseconds */
131 * Longer than 255 usec, this is an error
133 * (ACPI specifies 100 usec as max, but this gives some slack in
134 * order to support existing BIOSs)
136 ACPI_ERROR((AE_INFO,
137 "Time parameter is too large (%u)", how_long));
138 status = AE_AML_OPERAND_VALUE;
139 } else {
140 acpi_os_stall(how_long);
143 return (status);
146 /*******************************************************************************
148 * FUNCTION: acpi_ex_system_do_sleep
150 * PARAMETERS: how_long - The amount of time to sleep,
151 * in milliseconds
153 * RETURN: None
155 * DESCRIPTION: Sleep the running thread for specified amount of time.
157 ******************************************************************************/
159 acpi_status acpi_ex_system_do_sleep(u64 how_long)
161 ACPI_FUNCTION_ENTRY();
163 /* Since this thread will sleep, we must release the interpreter */
165 acpi_ex_exit_interpreter();
168 * For compatibility with other ACPI implementations and to prevent
169 * accidental deep sleeps, limit the sleep time to something reasonable.
171 if (how_long > ACPI_MAX_SLEEP) {
172 how_long = ACPI_MAX_SLEEP;
175 acpi_os_sleep(how_long);
177 /* And now we must get the interpreter again */
179 acpi_ex_enter_interpreter();
180 return (AE_OK);
183 /*******************************************************************************
185 * FUNCTION: acpi_ex_system_signal_event
187 * PARAMETERS: obj_desc - The object descriptor for this op
189 * RETURN: Status
191 * DESCRIPTION: Provides an access point to perform synchronization operations
192 * within the AML.
194 ******************************************************************************/
196 acpi_status acpi_ex_system_signal_event(union acpi_operand_object * obj_desc)
198 acpi_status status = AE_OK;
200 ACPI_FUNCTION_TRACE(ex_system_signal_event);
202 if (obj_desc) {
203 status =
204 acpi_os_signal_semaphore(obj_desc->event.os_semaphore, 1);
207 return_ACPI_STATUS(status);
210 /*******************************************************************************
212 * FUNCTION: acpi_ex_system_wait_event
214 * PARAMETERS: time_desc - The 'time to delay' object descriptor
215 * obj_desc - The object descriptor for this op
217 * RETURN: Status
219 * DESCRIPTION: Provides an access point to perform synchronization operations
220 * within the AML. This operation is a request to wait for an
221 * event.
223 ******************************************************************************/
225 acpi_status
226 acpi_ex_system_wait_event(union acpi_operand_object *time_desc,
227 union acpi_operand_object *obj_desc)
229 acpi_status status = AE_OK;
231 ACPI_FUNCTION_TRACE(ex_system_wait_event);
233 if (obj_desc) {
234 status =
235 acpi_ex_system_wait_semaphore(obj_desc->event.os_semaphore,
236 (u16) time_desc->integer.
237 value);
240 return_ACPI_STATUS(status);
243 /*******************************************************************************
245 * FUNCTION: acpi_ex_system_reset_event
247 * PARAMETERS: obj_desc - The object descriptor for this op
249 * RETURN: Status
251 * DESCRIPTION: Reset an event to a known state.
253 ******************************************************************************/
255 acpi_status acpi_ex_system_reset_event(union acpi_operand_object *obj_desc)
257 acpi_status status = AE_OK;
258 acpi_semaphore temp_semaphore;
260 ACPI_FUNCTION_ENTRY();
263 * We are going to simply delete the existing semaphore and
264 * create a new one!
266 status =
267 acpi_os_create_semaphore(ACPI_NO_UNIT_LIMIT, 0, &temp_semaphore);
268 if (ACPI_SUCCESS(status)) {
269 (void)acpi_os_delete_semaphore(obj_desc->event.os_semaphore);
270 obj_desc->event.os_semaphore = temp_semaphore;
273 return (status);