blob: 3f22f7dd4556de3820210f7f0800b0950dac112c [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 Mooreda6f8322018-01-04 10:06:38 -08006 * Copyright (C) 2000 - 2018, 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
Lv Zheng1f86e8c2012-10-31 02:25:45 +000026static acpi_status acpi_hw_sleep_dispatch(u8 sleep_state, u32 function_id);
Bob Moore72a88872012-02-14 18:57:13 +080027
28/*
29 * Dispatch table used to efficiently branch to the various sleep
30 * functions.
31 */
Lin Ming8a73b172012-03-21 10:01:49 +080032#define ACPI_SLEEP_FUNCTION_ID 0
33#define ACPI_WAKE_PREP_FUNCTION_ID 1
34#define ACPI_WAKE_FUNCTION_ID 2
Bob Moore72a88872012-02-14 18:57:13 +080035
36/* Legacy functions are optional, based upon ACPI_REDUCED_HARDWARE */
37
38static struct acpi_sleep_functions acpi_sleep_dispatch[] = {
Kees Cook3d867f62017-06-27 00:53:07 +020039 {ACPI_STRUCT_INIT(legacy_function,
40 ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_sleep)),
Kees Cook99e597a2017-07-10 15:23:08 +080041 ACPI_STRUCT_INIT(extended_function,
42 acpi_hw_extended_sleep)},
Kees Cook3d867f62017-06-27 00:53:07 +020043 {ACPI_STRUCT_INIT(legacy_function,
44 ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_wake_prep)),
Kees Cook99e597a2017-07-10 15:23:08 +080045 ACPI_STRUCT_INIT(extended_function,
46 acpi_hw_extended_wake_prep)},
Kees Cook3d867f62017-06-27 00:53:07 +020047 {ACPI_STRUCT_INIT(legacy_function,
48 ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_wake)),
Kees Cook99e597a2017-07-10 15:23:08 +080049 ACPI_STRUCT_INIT(extended_function,
50 acpi_hw_extended_wake)}
Bob Moore72a88872012-02-14 18:57:13 +080051};
52
53/*
54 * These functions are removed for the ACPI_REDUCED_HARDWARE case:
55 * acpi_set_firmware_waking_vector
Bob Moore72a88872012-02-14 18:57:13 +080056 * acpi_enter_sleep_state_s4bios
57 */
58
Bob Moore33620c52012-02-14 18:14:27 +080059#if (!ACPI_REDUCED_HARDWARE)
Bob Moore2feec472012-02-14 15:00:53 +080060/*******************************************************************************
61 *
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010062 * FUNCTION: acpi_hw_set_firmware_waking_vector
Lv Zhengf06147f2015-07-01 14:43:18 +080063 *
64 * PARAMETERS: facs - Pointer to FACS table
65 * physical_address - 32-bit physical address of ACPI real mode
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010066 * entry point
Lv Zhengf06147f2015-07-01 14:43:18 +080067 * physical_address64 - 64-bit physical address of ACPI protected
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010068 * mode entry point
Lv Zhengf06147f2015-07-01 14:43:18 +080069 *
70 * RETURN: Status
71 *
72 * DESCRIPTION: Sets the firmware_waking_vector fields of the FACS
73 *
74 ******************************************************************************/
75
76static acpi_status
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010077acpi_hw_set_firmware_waking_vector(struct acpi_table_facs *facs,
78 acpi_physical_address physical_address,
79 acpi_physical_address physical_address64)
Lv Zhengf06147f2015-07-01 14:43:18 +080080{
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010081 ACPI_FUNCTION_TRACE(acpi_hw_set_firmware_waking_vector);
Lv Zhengf06147f2015-07-01 14:43:18 +080082
83
84 /*
85 * According to the ACPI specification 2.0c and later, the 64-bit
86 * waking vector should be cleared and the 32-bit waking vector should
87 * be used, unless we want the wake-up code to be called by the BIOS in
88 * Protected Mode. Some systems (for example HP dv5-1004nr) are known
89 * to fail to resume if the 64-bit vector is used.
90 */
91
92 /* Set the 32-bit vector */
93
94 facs->firmware_waking_vector = (u32)physical_address;
95
96 if (facs->length > 32) {
97 if (facs->version >= 1) {
98
99 /* Set the 64-bit vector */
100
101 facs->xfirmware_waking_vector = physical_address64;
102 } else {
103 /* Clear the 64-bit vector if it exists */
104
105 facs->xfirmware_waking_vector = 0;
106 }
107 }
108
109 return_ACPI_STATUS(AE_OK);
110}
111
112/*******************************************************************************
113 *
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100114 * FUNCTION: acpi_set_firmware_waking_vector
Bob Moore2feec472012-02-14 15:00:53 +0800115 *
116 * PARAMETERS: physical_address - 32-bit physical address of ACPI real mode
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100117 * entry point
Lv Zhengaca2a5d2015-07-01 14:43:04 +0800118 * physical_address64 - 64-bit physical address of ACPI protected
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100119 * mode entry point
Bob Moore2feec472012-02-14 15:00:53 +0800120 *
121 * RETURN: Status
122 *
Lv Zhengaca2a5d2015-07-01 14:43:04 +0800123 * DESCRIPTION: Sets the firmware_waking_vector fields of the FACS
Bob Moore2feec472012-02-14 15:00:53 +0800124 *
125 ******************************************************************************/
Bob Moore72a88872012-02-14 18:57:13 +0800126
Lv Zhengaca2a5d2015-07-01 14:43:04 +0800127acpi_status
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100128acpi_set_firmware_waking_vector(acpi_physical_address physical_address,
129 acpi_physical_address physical_address64)
Bob Moore2feec472012-02-14 15:00:53 +0800130{
Lv Zhengf06147f2015-07-01 14:43:18 +0800131
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100132 ACPI_FUNCTION_TRACE(acpi_set_firmware_waking_vector);
Bob Moore2feec472012-02-14 15:00:53 +0800133
Lv Zheng74846192015-08-25 10:29:08 +0800134 if (acpi_gbl_FACS) {
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100135 (void)acpi_hw_set_firmware_waking_vector(acpi_gbl_FACS,
136 physical_address,
137 physical_address64);
Bob Moore2feec472012-02-14 15:00:53 +0800138 }
139
140 return_ACPI_STATUS(AE_OK);
141}
142
143ACPI_EXPORT_SYMBOL(acpi_set_firmware_waking_vector)
144
Bob Moore2feec472012-02-14 15:00:53 +0800145/*******************************************************************************
146 *
147 * FUNCTION: acpi_enter_sleep_state_s4bios
148 *
149 * PARAMETERS: None
150 *
151 * RETURN: Status
152 *
153 * DESCRIPTION: Perform a S4 bios request.
154 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
155 *
156 ******************************************************************************/
Lv Zheng40bce102013-10-31 09:31:18 +0800157acpi_status acpi_enter_sleep_state_s4bios(void)
Bob Moore2feec472012-02-14 15:00:53 +0800158{
159 u32 in_value;
160 acpi_status status;
161
162 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_s4bios);
163
164 /* Clear the wake status bit (PM1) */
165
166 status =
167 acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS, ACPI_CLEAR_STATUS);
168 if (ACPI_FAILURE(status)) {
169 return_ACPI_STATUS(status);
170 }
171
172 status = acpi_hw_clear_acpi_status();
173 if (ACPI_FAILURE(status)) {
174 return_ACPI_STATUS(status);
175 }
176
177 /*
Erik Schmauss18996f22018-03-14 16:12:57 -0700178 * 1) Disable all GPEs
Bob Moore2feec472012-02-14 15:00:53 +0800179 * 2) Enable all wakeup GPEs
180 */
181 status = acpi_hw_disable_all_gpes();
182 if (ACPI_FAILURE(status)) {
183 return_ACPI_STATUS(status);
184 }
185 acpi_gbl_system_awake_and_running = FALSE;
186
187 status = acpi_hw_enable_all_wakeup_gpes();
188 if (ACPI_FAILURE(status)) {
189 return_ACPI_STATUS(status);
190 }
191
192 ACPI_FLUSH_CPU_CACHE();
193
194 status = acpi_hw_write_port(acpi_gbl_FADT.smi_command,
Bob Mooreba494be2012-07-12 09:40:10 +0800195 (u32)acpi_gbl_FADT.s4_bios_request, 8);
Bob Moore2feec472012-02-14 15:00:53 +0800196
197 do {
Bob Moorec41679a2012-12-31 00:05:46 +0000198 acpi_os_stall(ACPI_USEC_PER_MSEC);
Bob Moore2feec472012-02-14 15:00:53 +0800199 status =
200 acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS, &in_value);
201 if (ACPI_FAILURE(status)) {
202 return_ACPI_STATUS(status);
203 }
Bob Moore1fad8732015-12-29 13:54:36 +0800204
Bob Moore2feec472012-02-14 15:00:53 +0800205 } while (!in_value);
206
207 return_ACPI_STATUS(AE_OK);
208}
209
210ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_s4bios)
Bob Moore33620c52012-02-14 18:14:27 +0800211#endif /* !ACPI_REDUCED_HARDWARE */
Bob Moore2feec472012-02-14 15:00:53 +0800212/*******************************************************************************
213 *
Bob Moore72a88872012-02-14 18:57:13 +0800214 * FUNCTION: acpi_hw_sleep_dispatch
215 *
216 * PARAMETERS: sleep_state - Which sleep state to enter/exit
217 * function_id - Sleep, wake_prep, or Wake
218 *
219 * RETURN: Status from the invoked sleep handling function.
220 *
221 * DESCRIPTION: Dispatch a sleep/wake request to the appropriate handling
222 * function.
223 *
224 ******************************************************************************/
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000225static acpi_status acpi_hw_sleep_dispatch(u8 sleep_state, u32 function_id)
Bob Moore72a88872012-02-14 18:57:13 +0800226{
227 acpi_status status;
228 struct acpi_sleep_functions *sleep_functions =
229 &acpi_sleep_dispatch[function_id];
230
231#if (!ACPI_REDUCED_HARDWARE)
Bob Moore72a88872012-02-14 18:57:13 +0800232 /*
233 * If the Hardware Reduced flag is set (from the FADT), we must
Lv Zheng7cec7042013-06-08 00:59:18 +0000234 * use the extended sleep registers (FADT). Note: As per the ACPI
235 * specification, these extended registers are to be used for HW-reduced
236 * platforms only. They are not general-purpose replacements for the
237 * legacy PM register sleep support.
Bob Moore72a88872012-02-14 18:57:13 +0800238 */
Lv Zheng7cec7042013-06-08 00:59:18 +0000239 if (acpi_gbl_reduced_hardware) {
Len Brown3f6f49c2012-07-26 20:08:54 -0400240 status = sleep_functions->extended_function(sleep_state);
Bob Moore72a88872012-02-14 18:57:13 +0800241 } else {
242 /* Legacy sleep */
243
Len Brown3f6f49c2012-07-26 20:08:54 -0400244 status = sleep_functions->legacy_function(sleep_state);
Bob Moore72a88872012-02-14 18:57:13 +0800245 }
246
247 return (status);
248
249#else
250 /*
251 * For the case where reduced-hardware-only code is being generated,
252 * we know that only the extended sleep registers are available
253 */
Len Brown3f6f49c2012-07-26 20:08:54 -0400254 status = sleep_functions->extended_function(sleep_state);
Bob Moore72a88872012-02-14 18:57:13 +0800255 return (status);
256
257#endif /* !ACPI_REDUCED_HARDWARE */
258}
259
260/*******************************************************************************
261 *
Bob Moore2feec472012-02-14 15:00:53 +0800262 * FUNCTION: acpi_enter_sleep_state_prep
263 *
264 * PARAMETERS: sleep_state - Which sleep state to enter
265 *
266 * RETURN: Status
267 *
Bob Moore72a88872012-02-14 18:57:13 +0800268 * DESCRIPTION: Prepare to enter a system sleep state.
Bob Moore2feec472012-02-14 15:00:53 +0800269 * This function must execute with interrupts enabled.
270 * We break sleeping into 2 stages so that OSPM can handle
271 * various OS-specific tasks between the two steps.
272 *
273 ******************************************************************************/
Bob Moore72a88872012-02-14 18:57:13 +0800274
Bob Moore2feec472012-02-14 15:00:53 +0800275acpi_status acpi_enter_sleep_state_prep(u8 sleep_state)
276{
277 acpi_status status;
278 struct acpi_object_list arg_list;
279 union acpi_object arg;
280 u32 sst_value;
281
282 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_prep);
283
Bob Moore2feec472012-02-14 15:00:53 +0800284 status = acpi_get_sleep_type_data(sleep_state,
285 &acpi_gbl_sleep_type_a,
286 &acpi_gbl_sleep_type_b);
287 if (ACPI_FAILURE(status)) {
288 return_ACPI_STATUS(status);
289 }
290
291 /* Execute the _PTS method (Prepare To Sleep) */
292
293 arg_list.count = 1;
294 arg_list.pointer = &arg;
295 arg.type = ACPI_TYPE_INTEGER;
296 arg.integer.value = sleep_state;
297
Bob Moore4efeeec2012-03-21 09:42:45 +0800298 status =
299 acpi_evaluate_object(NULL, METHOD_PATHNAME__PTS, &arg_list, NULL);
Bob Moore2feec472012-02-14 15:00:53 +0800300 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
301 return_ACPI_STATUS(status);
302 }
303
304 /* Setup the argument to the _SST method (System STatus) */
305
306 switch (sleep_state) {
307 case ACPI_STATE_S0:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000308
Bob Moore2feec472012-02-14 15:00:53 +0800309 sst_value = ACPI_SST_WORKING;
310 break;
311
312 case ACPI_STATE_S1:
313 case ACPI_STATE_S2:
314 case ACPI_STATE_S3:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000315
Bob Moore2feec472012-02-14 15:00:53 +0800316 sst_value = ACPI_SST_SLEEPING;
317 break;
318
319 case ACPI_STATE_S4:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000320
Bob Moore2feec472012-02-14 15:00:53 +0800321 sst_value = ACPI_SST_SLEEP_CONTEXT;
322 break;
323
324 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000325
Bob Moore2feec472012-02-14 15:00:53 +0800326 sst_value = ACPI_SST_INDICATOR_OFF; /* Default is off */
327 break;
328 }
329
330 /*
331 * Set the system indicators to show the desired sleep state.
332 * _SST is an optional method (return no error if not found)
333 */
Bob Moore4efeeec2012-03-21 09:42:45 +0800334 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, sst_value);
Bob Moore2feec472012-02-14 15:00:53 +0800335 return_ACPI_STATUS(AE_OK);
336}
337
338ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_prep)
339
340/*******************************************************************************
341 *
342 * FUNCTION: acpi_enter_sleep_state
343 *
344 * PARAMETERS: sleep_state - Which sleep state to enter
345 *
346 * RETURN: Status
347 *
Lv Zheng75c80442012-12-19 05:36:49 +0000348 * DESCRIPTION: Enter a system sleep state
Bob Moore2feec472012-02-14 15:00:53 +0800349 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
350 *
351 ******************************************************************************/
Lv Zheng40bce102013-10-31 09:31:18 +0800352acpi_status acpi_enter_sleep_state(u8 sleep_state)
Bob Moore2feec472012-02-14 15:00:53 +0800353{
354 acpi_status status;
355
356 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state);
357
358 if ((acpi_gbl_sleep_type_a > ACPI_SLEEP_TYPE_MAX) ||
359 (acpi_gbl_sleep_type_b > ACPI_SLEEP_TYPE_MAX)) {
360 ACPI_ERROR((AE_INFO, "Sleep values out of range: A=0x%X B=0x%X",
361 acpi_gbl_sleep_type_a, acpi_gbl_sleep_type_b));
362 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
363 }
364
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000365 status = acpi_hw_sleep_dispatch(sleep_state, ACPI_SLEEP_FUNCTION_ID);
Bob Moore2feec472012-02-14 15:00:53 +0800366 return_ACPI_STATUS(status);
367}
368
369ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state)
370
371/*******************************************************************************
372 *
373 * FUNCTION: acpi_leave_sleep_state_prep
374 *
375 * PARAMETERS: sleep_state - Which sleep state we are exiting
376 *
377 * RETURN: Status
378 *
379 * DESCRIPTION: Perform the first state of OS-independent ACPI cleanup after a
Lv Zheng75c80442012-12-19 05:36:49 +0000380 * sleep. Called with interrupts DISABLED.
381 * We break wake/resume into 2 stages so that OSPM can handle
382 * various OS-specific tasks between the two steps.
Bob Moore2feec472012-02-14 15:00:53 +0800383 *
384 ******************************************************************************/
Len Brown3f6f49c2012-07-26 20:08:54 -0400385acpi_status acpi_leave_sleep_state_prep(u8 sleep_state)
Bob Moore2feec472012-02-14 15:00:53 +0800386{
387 acpi_status status;
388
Bob Moore72a88872012-02-14 18:57:13 +0800389 ACPI_FUNCTION_TRACE(acpi_leave_sleep_state_prep);
Bob Moore2feec472012-02-14 15:00:53 +0800390
Lin Ming8a73b172012-03-21 10:01:49 +0800391 status =
Lv Zheng1f86e8c2012-10-31 02:25:45 +0000392 acpi_hw_sleep_dispatch(sleep_state, ACPI_WAKE_PREP_FUNCTION_ID);
Bob Moore2feec472012-02-14 15:00:53 +0800393 return_ACPI_STATUS(status);
394}
395
396ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state_prep)
397
398/*******************************************************************************
399 *
400 * FUNCTION: acpi_leave_sleep_state
401 *
Bob Moore72a88872012-02-14 18:57:13 +0800402 * PARAMETERS: sleep_state - Which sleep state we are exiting
Bob Moore2feec472012-02-14 15:00:53 +0800403 *
404 * RETURN: Status
405 *
406 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
407 * Called with interrupts ENABLED.
408 *
409 ******************************************************************************/
410acpi_status acpi_leave_sleep_state(u8 sleep_state)
411{
412 acpi_status status;
413
414 ACPI_FUNCTION_TRACE(acpi_leave_sleep_state);
415
Len Brown3f6f49c2012-07-26 20:08:54 -0400416 status = acpi_hw_sleep_dispatch(sleep_state, ACPI_WAKE_FUNCTION_ID);
Bob Moore2feec472012-02-14 15:00:53 +0800417 return_ACPI_STATUS(status);
418}
419
420ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state)