blob: 89b12afed564e15d2e63afbdbec809af7ae21068 [file] [log] [blame]
Erik Schmauss95857632018-03-14 16:13:07 -07001// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
Bob Moore2feec472012-02-14 15:00:53 +08002/******************************************************************************
3 *
4 * Name: hwxfsleep.c - ACPI Hardware Sleep/Wake External Interfaces
5 *
Bob Moore4441e552021-01-15 10:48:25 -08006 * Copyright (C) 2000 - 2021, Intel Corp.
Bob Moore2feec472012-02-14 15:00:53 +08007 *
Erik Schmauss95857632018-03-14 16:13:07 -07008 *****************************************************************************/
Bob Moore2feec472012-02-14 15:00:53 +08009
Lv Zheng839e9282013-10-29 09:29:51 +080010#define EXPORT_ACPI_INTERFACES
11
Bob Moore2feec472012-02-14 15:00:53 +080012#include <acpi/acpi.h>
13#include "accommon.h"
Bob Moore2feec472012-02-14 15:00:53 +080014
15#define _COMPONENT ACPI_HARDWARE
16ACPI_MODULE_NAME("hwxfsleep")
17
Bob Moore72a88872012-02-14 18:57:13 +080018/* Local prototypes */
Lv Zhengf06147f2015-07-01 14:43:18 +080019#if (!ACPI_REDUCED_HARDWARE)
20static acpi_status
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010021acpi_hw_set_firmware_waking_vector(struct acpi_table_facs *facs,
22 acpi_physical_address physical_address,
23 acpi_physical_address physical_address64);
Lv Zhengf06147f2015-07-01 14:43:18 +080024#endif
25
Bob Moore72a88872012-02-14 18:57:13 +080026/*
27 * These functions are removed for the ACPI_REDUCED_HARDWARE case:
28 * acpi_set_firmware_waking_vector
Bob Moore72a88872012-02-14 18:57:13 +080029 * acpi_enter_sleep_state_s4bios
30 */
31
Bob Moore33620c52012-02-14 18:14:27 +080032#if (!ACPI_REDUCED_HARDWARE)
Bob Moore2feec472012-02-14 15:00:53 +080033/*******************************************************************************
34 *
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010035 * FUNCTION: acpi_hw_set_firmware_waking_vector
Lv Zhengf06147f2015-07-01 14:43:18 +080036 *
37 * PARAMETERS: facs - Pointer to FACS table
38 * physical_address - 32-bit physical address of ACPI real mode
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010039 * entry point
Lv Zhengf06147f2015-07-01 14:43:18 +080040 * physical_address64 - 64-bit physical address of ACPI protected
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010041 * mode entry point
Lv Zhengf06147f2015-07-01 14:43:18 +080042 *
43 * RETURN: Status
44 *
45 * DESCRIPTION: Sets the firmware_waking_vector fields of the FACS
46 *
47 ******************************************************************************/
48
49static acpi_status
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010050acpi_hw_set_firmware_waking_vector(struct acpi_table_facs *facs,
51 acpi_physical_address physical_address,
52 acpi_physical_address physical_address64)
Lv Zhengf06147f2015-07-01 14:43:18 +080053{
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010054 ACPI_FUNCTION_TRACE(acpi_hw_set_firmware_waking_vector);
Lv Zhengf06147f2015-07-01 14:43:18 +080055
56
57 /*
58 * According to the ACPI specification 2.0c and later, the 64-bit
59 * waking vector should be cleared and the 32-bit waking vector should
60 * be used, unless we want the wake-up code to be called by the BIOS in
61 * Protected Mode. Some systems (for example HP dv5-1004nr) are known
62 * to fail to resume if the 64-bit vector is used.
63 */
64
65 /* Set the 32-bit vector */
66
67 facs->firmware_waking_vector = (u32)physical_address;
68
69 if (facs->length > 32) {
70 if (facs->version >= 1) {
71
72 /* Set the 64-bit vector */
73
74 facs->xfirmware_waking_vector = physical_address64;
75 } else {
76 /* Clear the 64-bit vector if it exists */
77
78 facs->xfirmware_waking_vector = 0;
79 }
80 }
81
82 return_ACPI_STATUS(AE_OK);
83}
84
85/*******************************************************************************
86 *
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010087 * FUNCTION: acpi_set_firmware_waking_vector
Bob Moore2feec472012-02-14 15:00:53 +080088 *
89 * PARAMETERS: physical_address - 32-bit physical address of ACPI real mode
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010090 * entry point
Lv Zhengaca2a5d2015-07-01 14:43:04 +080091 * physical_address64 - 64-bit physical address of ACPI protected
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010092 * mode entry point
Bob Moore2feec472012-02-14 15:00:53 +080093 *
94 * RETURN: Status
95 *
Lv Zhengaca2a5d2015-07-01 14:43:04 +080096 * DESCRIPTION: Sets the firmware_waking_vector fields of the FACS
Bob Moore2feec472012-02-14 15:00:53 +080097 *
98 ******************************************************************************/
Bob Moore72a88872012-02-14 18:57:13 +080099
Lv Zhengaca2a5d2015-07-01 14:43:04 +0800100acpi_status
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100101acpi_set_firmware_waking_vector(acpi_physical_address physical_address,
102 acpi_physical_address physical_address64)
Bob Moore2feec472012-02-14 15:00:53 +0800103{
Lv Zhengf06147f2015-07-01 14:43:18 +0800104
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100105 ACPI_FUNCTION_TRACE(acpi_set_firmware_waking_vector);
Bob Moore2feec472012-02-14 15:00:53 +0800106
Lv Zheng74846192015-08-25 10:29:08 +0800107 if (acpi_gbl_FACS) {
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100108 (void)acpi_hw_set_firmware_waking_vector(acpi_gbl_FACS,
109 physical_address,
110 physical_address64);
Bob Moore2feec472012-02-14 15:00:53 +0800111 }
112
113 return_ACPI_STATUS(AE_OK);
114}
115
116ACPI_EXPORT_SYMBOL(acpi_set_firmware_waking_vector)
117
Bob Moore2feec472012-02-14 15:00:53 +0800118/*******************************************************************************
119 *
120 * FUNCTION: acpi_enter_sleep_state_s4bios
121 *
122 * PARAMETERS: None
123 *
124 * RETURN: Status
125 *
126 * DESCRIPTION: Perform a S4 bios request.
127 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
128 *
129 ******************************************************************************/
Lv Zheng40bce102013-10-31 09:31:18 +0800130acpi_status acpi_enter_sleep_state_s4bios(void)
Bob Moore2feec472012-02-14 15:00:53 +0800131{
132 u32 in_value;
133 acpi_status status;
134
135 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_s4bios);
136
137 /* Clear the wake status bit (PM1) */
138
139 status =
140 acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS, ACPI_CLEAR_STATUS);
141 if (ACPI_FAILURE(status)) {
142 return_ACPI_STATUS(status);
143 }
144
145 status = acpi_hw_clear_acpi_status();
146 if (ACPI_FAILURE(status)) {
147 return_ACPI_STATUS(status);
148 }
149
150 /*
Erik Schmauss18996f22018-03-14 16:12:57 -0700151 * 1) Disable all GPEs
Bob Moore2feec472012-02-14 15:00:53 +0800152 * 2) Enable all wakeup GPEs
153 */
154 status = acpi_hw_disable_all_gpes();
155 if (ACPI_FAILURE(status)) {
156 return_ACPI_STATUS(status);
157 }
158 acpi_gbl_system_awake_and_running = FALSE;
159
160 status = acpi_hw_enable_all_wakeup_gpes();
161 if (ACPI_FAILURE(status)) {
162 return_ACPI_STATUS(status);
163 }
164
165 ACPI_FLUSH_CPU_CACHE();
166
167 status = acpi_hw_write_port(acpi_gbl_FADT.smi_command,
Bob Mooreba494be2012-07-12 09:40:10 +0800168 (u32)acpi_gbl_FADT.s4_bios_request, 8);
Bob Mooreaaf75662019-10-25 14:36:51 -0700169 if (ACPI_FAILURE(status)) {
170 return_ACPI_STATUS(status);
171 }
Bob Moore2feec472012-02-14 15:00:53 +0800172
173 do {
Bob Moorec41679a2012-12-31 00:05:46 +0000174 acpi_os_stall(ACPI_USEC_PER_MSEC);
Bob Moore2feec472012-02-14 15:00:53 +0800175 status =
176 acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS, &in_value);
177 if (ACPI_FAILURE(status)) {
178 return_ACPI_STATUS(status);
179 }
Bob Moore1fad8732015-12-29 13:54:36 +0800180
Bob Moore2feec472012-02-14 15:00:53 +0800181 } while (!in_value);
182
183 return_ACPI_STATUS(AE_OK);
184}
185
186ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_s4bios)
Bob Moore33620c52012-02-14 18:14:27 +0800187#endif /* !ACPI_REDUCED_HARDWARE */
Bob Moore72a88872012-02-14 18:57:13 +0800188
189/*******************************************************************************
190 *
Bob Moore2feec472012-02-14 15:00:53 +0800191 * FUNCTION: acpi_enter_sleep_state_prep
192 *
193 * PARAMETERS: sleep_state - Which sleep state to enter
194 *
195 * RETURN: Status
196 *
Bob Moore72a88872012-02-14 18:57:13 +0800197 * DESCRIPTION: Prepare to enter a system sleep state.
Bob Moore2feec472012-02-14 15:00:53 +0800198 * This function must execute with interrupts enabled.
199 * We break sleeping into 2 stages so that OSPM can handle
200 * various OS-specific tasks between the two steps.
201 *
202 ******************************************************************************/
Bob Moore72a88872012-02-14 18:57:13 +0800203
Bob Moore2feec472012-02-14 15:00:53 +0800204acpi_status acpi_enter_sleep_state_prep(u8 sleep_state)
205{
206 acpi_status status;
207 struct acpi_object_list arg_list;
208 union acpi_object arg;
209 u32 sst_value;
210
211 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_prep);
212
Bob Moore2feec472012-02-14 15:00:53 +0800213 status = acpi_get_sleep_type_data(sleep_state,
214 &acpi_gbl_sleep_type_a,
215 &acpi_gbl_sleep_type_b);
216 if (ACPI_FAILURE(status)) {
217 return_ACPI_STATUS(status);
218 }
219
220 /* Execute the _PTS method (Prepare To Sleep) */
221
222 arg_list.count = 1;
223 arg_list.pointer = &arg;
224 arg.type = ACPI_TYPE_INTEGER;
225 arg.integer.value = sleep_state;
226
Bob Moore4efeeec2012-03-21 09:42:45 +0800227 status =
228 acpi_evaluate_object(NULL, METHOD_PATHNAME__PTS, &arg_list, NULL);
Bob Moore2feec472012-02-14 15:00:53 +0800229 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
230 return_ACPI_STATUS(status);
231 }
232
233 /* Setup the argument to the _SST method (System STatus) */
234
235 switch (sleep_state) {
236 case ACPI_STATE_S0:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000237
Bob Moore2feec472012-02-14 15:00:53 +0800238 sst_value = ACPI_SST_WORKING;
239 break;
240
241 case ACPI_STATE_S1:
242 case ACPI_STATE_S2:
243 case ACPI_STATE_S3:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000244
Bob Moore2feec472012-02-14 15:00:53 +0800245 sst_value = ACPI_SST_SLEEPING;
246 break;
247
248 case ACPI_STATE_S4:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000249
Bob Moore2feec472012-02-14 15:00:53 +0800250 sst_value = ACPI_SST_SLEEP_CONTEXT;
251 break;
252
253 default:
Chao Guan1d1ea1b72013-06-08 00:58:14 +0000254
Bob Moore2feec472012-02-14 15:00:53 +0800255 sst_value = ACPI_SST_INDICATOR_OFF; /* Default is off */
256 break;
257 }
258
259 /*
260 * Set the system indicators to show the desired sleep state.
261 * _SST is an optional method (return no error if not found)
262 */
Bob Moore4efeeec2012-03-21 09:42:45 +0800263 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, sst_value);
Bob Moore2feec472012-02-14 15:00:53 +0800264 return_ACPI_STATUS(AE_OK);
265}
266
267ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_prep)
268
269/*******************************************************************************
270 *
271 * FUNCTION: acpi_enter_sleep_state
272 *
273 * PARAMETERS: sleep_state - Which sleep state to enter
274 *
275 * RETURN: Status
276 *
Lv Zheng75c80442012-12-19 05:36:49 +0000277 * DESCRIPTION: Enter a system sleep state
Bob Moore2feec472012-02-14 15:00:53 +0800278 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
279 *
280 ******************************************************************************/
Lv Zheng40bce102013-10-31 09:31:18 +0800281acpi_status acpi_enter_sleep_state(u8 sleep_state)
Bob Moore2feec472012-02-14 15:00:53 +0800282{
283 acpi_status status;
284
285 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state);
286
287 if ((acpi_gbl_sleep_type_a > ACPI_SLEEP_TYPE_MAX) ||
288 (acpi_gbl_sleep_type_b > ACPI_SLEEP_TYPE_MAX)) {
289 ACPI_ERROR((AE_INFO, "Sleep values out of range: A=0x%X B=0x%X",
290 acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b));
291 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
292 }
293
Christoph Hellwigf2fee242019-02-04 16:32:10 +0100294#if !ACPI_REDUCED_HARDWARE
295 if (!acpi_gbl_reduced_hardware)
296 status = acpi_hw_legacy_sleep(sleep_state);
297 else
298#endif
299 status = acpi_hw_extended_sleep(sleep_state);
Bob Moore2feec472012-02-14 15:00:53 +0800300 return_ACPI_STATUS(status);
301}
302
303ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state)
304
305/*******************************************************************************
306 *
307 * FUNCTION: acpi_leave_sleep_state_prep
308 *
309 * PARAMETERS: sleep_state - Which sleep state we are exiting
310 *
311 * RETURN: Status
312 *
313 * DESCRIPTION: Perform the first state of OS-independent ACPI cleanup after a
Lv Zheng75c80442012-12-19 05:36:49 +0000314 * sleep. Called with interrupts DISABLED.
315 * We break wake/resume into 2 stages so that OSPM can handle
316 * various OS-specific tasks between the two steps.
Bob Moore2feec472012-02-14 15:00:53 +0800317 *
318 ******************************************************************************/
Len Brown3f6f49c2012-07-26 20:08:54 -0400319acpi_status acpi_leave_sleep_state_prep(u8 sleep_state)
Bob Moore2feec472012-02-14 15:00:53 +0800320{
321 acpi_status status;
322
Bob Moore72a88872012-02-14 18:57:13 +0800323 ACPI_FUNCTION_TRACE(acpi_leave_sleep_state_prep);
Bob Moore2feec472012-02-14 15:00:53 +0800324
Christoph Hellwigf2fee242019-02-04 16:32:10 +0100325#if !ACPI_REDUCED_HARDWARE
326 if (!acpi_gbl_reduced_hardware)
327 status = acpi_hw_legacy_wake_prep(sleep_state);
328 else
329#endif
330 status = acpi_hw_extended_wake_prep(sleep_state);
Bob Moore2feec472012-02-14 15:00:53 +0800331 return_ACPI_STATUS(status);
332}
333
334ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state_prep)
335
336/*******************************************************************************
337 *
338 * FUNCTION: acpi_leave_sleep_state
339 *
Bob Moore72a88872012-02-14 18:57:13 +0800340 * PARAMETERS: sleep_state - Which sleep state we are exiting
Bob Moore2feec472012-02-14 15:00:53 +0800341 *
342 * RETURN: Status
343 *
344 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
345 * Called with interrupts ENABLED.
346 *
347 ******************************************************************************/
348acpi_status acpi_leave_sleep_state(u8 sleep_state)
349{
350 acpi_status status;
351
352 ACPI_FUNCTION_TRACE(acpi_leave_sleep_state);
353
Christoph Hellwigf2fee242019-02-04 16:32:10 +0100354#if !ACPI_REDUCED_HARDWARE
355 if (!acpi_gbl_reduced_hardware)
356 status = acpi_hw_legacy_wake(sleep_state);
357 else
358#endif
359 status = acpi_hw_extended_wake(sleep_state);
Bob Moore2feec472012-02-14 15:00:53 +0800360 return_ACPI_STATUS(status);
361}
362
363ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state)