1 /******************************************************************************
3 * Name: hwxfsleep.c - ACPI Hardware Sleep/Wake External Interfaces
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2012, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
46 #include <linux/module.h>
48 #define _COMPONENT ACPI_HARDWARE
49 ACPI_MODULE_NAME("hwxfsleep")
51 /* Local prototypes */
52 static acpi_status
acpi_hw_sleep_dispatch(u8 sleep_state
, u32 function_id
);
55 * Dispatch table used to efficiently branch to the various sleep
58 #define ACPI_SLEEP_FUNCTION_ID 0
59 #define ACPI_WAKE_PREP_FUNCTION_ID 1
60 #define ACPI_WAKE_FUNCTION_ID 2
62 /* Legacy functions are optional, based upon ACPI_REDUCED_HARDWARE */
64 static struct acpi_sleep_functions acpi_sleep_dispatch
[] = {
65 {ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_sleep
),
66 acpi_hw_extended_sleep
},
67 {ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_wake_prep
),
68 acpi_hw_extended_wake_prep
},
69 {ACPI_HW_OPTIONAL_FUNCTION(acpi_hw_legacy_wake
), acpi_hw_extended_wake
}
73 * These functions are removed for the ACPI_REDUCED_HARDWARE case:
74 * acpi_set_firmware_waking_vector
75 * acpi_set_firmware_waking_vector64
76 * acpi_enter_sleep_state_s4bios
79 #if (!ACPI_REDUCED_HARDWARE)
80 /*******************************************************************************
82 * FUNCTION: acpi_set_firmware_waking_vector
84 * PARAMETERS: physical_address - 32-bit physical address of ACPI real mode
89 * DESCRIPTION: Sets the 32-bit firmware_waking_vector field of the FACS
91 ******************************************************************************/
93 acpi_status
acpi_set_firmware_waking_vector(u32 physical_address
)
95 ACPI_FUNCTION_TRACE(acpi_set_firmware_waking_vector
);
99 * According to the ACPI specification 2.0c and later, the 64-bit
100 * waking vector should be cleared and the 32-bit waking vector should
101 * be used, unless we want the wake-up code to be called by the BIOS in
102 * Protected Mode. Some systems (for example HP dv5-1004nr) are known
103 * to fail to resume if the 64-bit vector is used.
106 /* Set the 32-bit vector */
108 acpi_gbl_FACS
->firmware_waking_vector
= physical_address
;
110 /* Clear the 64-bit vector if it exists */
112 if ((acpi_gbl_FACS
->length
> 32) && (acpi_gbl_FACS
->version
>= 1)) {
113 acpi_gbl_FACS
->xfirmware_waking_vector
= 0;
116 return_ACPI_STATUS(AE_OK
);
119 ACPI_EXPORT_SYMBOL(acpi_set_firmware_waking_vector
)
121 #if ACPI_MACHINE_WIDTH == 64
122 /*******************************************************************************
124 * FUNCTION: acpi_set_firmware_waking_vector64
126 * PARAMETERS: physical_address - 64-bit physical address of ACPI protected
131 * DESCRIPTION: Sets the 64-bit X_firmware_waking_vector field of the FACS, if
132 * it exists in the table. This function is intended for use with
133 * 64-bit host operating systems.
135 ******************************************************************************/
136 acpi_status
acpi_set_firmware_waking_vector64(u64 physical_address
)
138 ACPI_FUNCTION_TRACE(acpi_set_firmware_waking_vector64
);
141 /* Determine if the 64-bit vector actually exists */
143 if ((acpi_gbl_FACS
->length
<= 32) || (acpi_gbl_FACS
->version
< 1)) {
144 return_ACPI_STATUS(AE_NOT_EXIST
);
147 /* Clear 32-bit vector, set the 64-bit X_ vector */
149 acpi_gbl_FACS
->firmware_waking_vector
= 0;
150 acpi_gbl_FACS
->xfirmware_waking_vector
= physical_address
;
151 return_ACPI_STATUS(AE_OK
);
154 ACPI_EXPORT_SYMBOL(acpi_set_firmware_waking_vector64
)
157 /*******************************************************************************
159 * FUNCTION: acpi_enter_sleep_state_s4bios
165 * DESCRIPTION: Perform a S4 bios request.
166 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
168 ******************************************************************************/
169 acpi_status asmlinkage
acpi_enter_sleep_state_s4bios(void)
174 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_s4bios
);
176 /* Clear the wake status bit (PM1) */
179 acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS
, ACPI_CLEAR_STATUS
);
180 if (ACPI_FAILURE(status
)) {
181 return_ACPI_STATUS(status
);
184 status
= acpi_hw_clear_acpi_status();
185 if (ACPI_FAILURE(status
)) {
186 return_ACPI_STATUS(status
);
190 * 1) Disable/Clear all GPEs
191 * 2) Enable all wakeup GPEs
193 status
= acpi_hw_disable_all_gpes();
194 if (ACPI_FAILURE(status
)) {
195 return_ACPI_STATUS(status
);
197 acpi_gbl_system_awake_and_running
= FALSE
;
199 status
= acpi_hw_enable_all_wakeup_gpes();
200 if (ACPI_FAILURE(status
)) {
201 return_ACPI_STATUS(status
);
204 ACPI_FLUSH_CPU_CACHE();
206 status
= acpi_hw_write_port(acpi_gbl_FADT
.smi_command
,
207 (u32
)acpi_gbl_FADT
.s4_bios_request
, 8);
212 acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS
, &in_value
);
213 if (ACPI_FAILURE(status
)) {
214 return_ACPI_STATUS(status
);
218 return_ACPI_STATUS(AE_OK
);
221 ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_s4bios
)
222 #endif /* !ACPI_REDUCED_HARDWARE */
223 /*******************************************************************************
225 * FUNCTION: acpi_hw_sleep_dispatch
227 * PARAMETERS: sleep_state - Which sleep state to enter/exit
228 * function_id - Sleep, wake_prep, or Wake
230 * RETURN: Status from the invoked sleep handling function.
232 * DESCRIPTION: Dispatch a sleep/wake request to the appropriate handling
235 ******************************************************************************/
236 static acpi_status
acpi_hw_sleep_dispatch(u8 sleep_state
, u32 function_id
)
239 struct acpi_sleep_functions
*sleep_functions
=
240 &acpi_sleep_dispatch
[function_id
];
242 #if (!ACPI_REDUCED_HARDWARE)
245 * If the Hardware Reduced flag is set (from the FADT), we must
246 * use the extended sleep registers
248 if (acpi_gbl_reduced_hardware
|| acpi_gbl_FADT
.sleep_control
.address
) {
249 status
= sleep_functions
->extended_function(sleep_state
);
253 status
= sleep_functions
->legacy_function(sleep_state
);
260 * For the case where reduced-hardware-only code is being generated,
261 * we know that only the extended sleep registers are available
263 status
= sleep_functions
->extended_function(sleep_state
);
266 #endif /* !ACPI_REDUCED_HARDWARE */
269 /*******************************************************************************
271 * FUNCTION: acpi_enter_sleep_state_prep
273 * PARAMETERS: sleep_state - Which sleep state to enter
277 * DESCRIPTION: Prepare to enter a system sleep state.
278 * This function must execute with interrupts enabled.
279 * We break sleeping into 2 stages so that OSPM can handle
280 * various OS-specific tasks between the two steps.
282 ******************************************************************************/
284 acpi_status
acpi_enter_sleep_state_prep(u8 sleep_state
)
287 struct acpi_object_list arg_list
;
288 union acpi_object arg
;
291 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_prep
);
293 status
= acpi_get_sleep_type_data(sleep_state
,
294 &acpi_gbl_sleep_type_a
,
295 &acpi_gbl_sleep_type_b
);
296 if (ACPI_FAILURE(status
)) {
297 return_ACPI_STATUS(status
);
300 /* Execute the _PTS method (Prepare To Sleep) */
303 arg_list
.pointer
= &arg
;
304 arg
.type
= ACPI_TYPE_INTEGER
;
305 arg
.integer
.value
= sleep_state
;
308 acpi_evaluate_object(NULL
, METHOD_PATHNAME__PTS
, &arg_list
, NULL
);
309 if (ACPI_FAILURE(status
) && status
!= AE_NOT_FOUND
) {
310 return_ACPI_STATUS(status
);
313 /* Setup the argument to the _SST method (System STatus) */
315 switch (sleep_state
) {
317 sst_value
= ACPI_SST_WORKING
;
323 sst_value
= ACPI_SST_SLEEPING
;
327 sst_value
= ACPI_SST_SLEEP_CONTEXT
;
331 sst_value
= ACPI_SST_INDICATOR_OFF
; /* Default is off */
336 * Set the system indicators to show the desired sleep state.
337 * _SST is an optional method (return no error if not found)
339 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST
, sst_value
);
340 return_ACPI_STATUS(AE_OK
);
343 ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_prep
)
345 /*******************************************************************************
347 * FUNCTION: acpi_enter_sleep_state
349 * PARAMETERS: sleep_state - Which sleep state to enter
353 * DESCRIPTION: Enter a system sleep state (see ACPI 2.0 spec p 231)
354 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
356 ******************************************************************************/
357 acpi_status asmlinkage
acpi_enter_sleep_state(u8 sleep_state
)
361 ACPI_FUNCTION_TRACE(acpi_enter_sleep_state
);
363 if ((acpi_gbl_sleep_type_a
> ACPI_SLEEP_TYPE_MAX
) ||
364 (acpi_gbl_sleep_type_b
> ACPI_SLEEP_TYPE_MAX
)) {
365 ACPI_ERROR((AE_INFO
, "Sleep values out of range: A=0x%X B=0x%X",
366 acpi_gbl_sleep_type_a
, acpi_gbl_sleep_type_b
));
367 return_ACPI_STATUS(AE_AML_OPERAND_VALUE
);
370 status
= acpi_hw_sleep_dispatch(sleep_state
, ACPI_SLEEP_FUNCTION_ID
);
371 return_ACPI_STATUS(status
);
374 ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state
)
376 /*******************************************************************************
378 * FUNCTION: acpi_leave_sleep_state_prep
380 * PARAMETERS: sleep_state - Which sleep state we are exiting
384 * DESCRIPTION: Perform the first state of OS-independent ACPI cleanup after a
386 * Called with interrupts DISABLED.
388 ******************************************************************************/
389 acpi_status
acpi_leave_sleep_state_prep(u8 sleep_state
)
393 ACPI_FUNCTION_TRACE(acpi_leave_sleep_state_prep
);
396 acpi_hw_sleep_dispatch(sleep_state
, ACPI_WAKE_PREP_FUNCTION_ID
);
397 return_ACPI_STATUS(status
);
400 ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state_prep
)
402 /*******************************************************************************
404 * FUNCTION: acpi_leave_sleep_state
406 * PARAMETERS: sleep_state - Which sleep state we are exiting
410 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
411 * Called with interrupts ENABLED.
413 ******************************************************************************/
414 acpi_status
acpi_leave_sleep_state(u8 sleep_state
)
418 ACPI_FUNCTION_TRACE(acpi_leave_sleep_state
);
420 status
= acpi_hw_sleep_dispatch(sleep_state
, ACPI_WAKE_FUNCTION_ID
);
421 return_ACPI_STATUS(status
);
424 ACPI_EXPORT_SYMBOL(acpi_leave_sleep_state
)