1 /******************************************************************************
3 * Name: hwesleep.c - ACPI Hardware Sleep/Wake Support functions for the
4 * extended FADT-V5 sleep registers.
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2013, Intel Corp.
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
45 #include <acpi/acpi.h>
46 #include <linux/acpi.h>
49 #define _COMPONENT ACPI_HARDWARE
50 ACPI_MODULE_NAME("hwesleep")
52 /*******************************************************************************
54 * FUNCTION: acpi_hw_execute_sleep_method
56 * PARAMETERS: method_pathname - Pathname of method to execute
57 * integer_argument - Argument to pass to the method
61 * DESCRIPTION: Execute a sleep/wake related method with one integer argument
62 * and no return value.
64 ******************************************************************************/
65 void acpi_hw_execute_sleep_method(char *method_pathname
, u32 integer_argument
)
67 struct acpi_object_list arg_list
;
68 union acpi_object arg
;
71 ACPI_FUNCTION_TRACE(hw_execute_sleep_method
);
73 /* One argument, integer_argument; No return value expected */
76 arg_list
.pointer
= &arg
;
77 arg
.type
= ACPI_TYPE_INTEGER
;
78 arg
.integer
.value
= (u64
)integer_argument
;
80 status
= acpi_evaluate_object(NULL
, method_pathname
, &arg_list
, NULL
);
81 if (ACPI_FAILURE(status
) && status
!= AE_NOT_FOUND
) {
82 ACPI_EXCEPTION((AE_INFO
, status
, "While executing method %s",
89 /*******************************************************************************
91 * FUNCTION: acpi_hw_extended_sleep
93 * PARAMETERS: sleep_state - Which sleep state to enter
97 * DESCRIPTION: Enter a system sleep state via the extended FADT sleep
98 * registers (V5 FADT).
99 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
101 ******************************************************************************/
103 acpi_status
acpi_hw_extended_sleep(u8 sleep_state
)
109 ACPI_FUNCTION_TRACE(hw_extended_sleep
);
111 /* Extended sleep registers must be valid */
113 if (!acpi_gbl_FADT
.sleep_control
.address
||
114 !acpi_gbl_FADT
.sleep_status
.address
) {
115 return_ACPI_STATUS(AE_NOT_EXIST
);
118 /* Clear wake status (WAK_STS) */
121 acpi_write((u64
)ACPI_X_WAKE_STATUS
, &acpi_gbl_FADT
.sleep_status
);
122 if (ACPI_FAILURE(status
)) {
123 return_ACPI_STATUS(status
);
126 acpi_gbl_system_awake_and_running
= FALSE
;
128 /* Flush caches, as per ACPI specification */
130 ACPI_FLUSH_CPU_CACHE();
132 status
= acpi_os_prepare_extended_sleep(sleep_state
,
133 acpi_gbl_sleep_type_a
,
134 acpi_gbl_sleep_type_b
);
135 if (ACPI_SKIP(status
))
136 return_ACPI_STATUS(AE_OK
);
137 if (ACPI_FAILURE(status
))
138 return_ACPI_STATUS(status
);
141 * Set the SLP_TYP and SLP_EN bits.
143 * Note: We only use the first value returned by the \_Sx method
144 * (acpi_gbl_sleep_type_a) - As per ACPI specification.
146 ACPI_DEBUG_PRINT((ACPI_DB_INIT
,
147 "Entering sleep state [S%u]\n", sleep_state
));
150 ((acpi_gbl_sleep_type_a
<< ACPI_X_SLEEP_TYPE_POSITION
) &
151 ACPI_X_SLEEP_TYPE_MASK
);
153 status
= acpi_write((u64
)(sleep_type_value
| ACPI_X_SLEEP_ENABLE
),
154 &acpi_gbl_FADT
.sleep_control
);
155 if (ACPI_FAILURE(status
)) {
156 return_ACPI_STATUS(status
);
159 /* Wait for transition back to Working State */
162 status
= acpi_read(&sleep_status
, &acpi_gbl_FADT
.sleep_status
);
163 if (ACPI_FAILURE(status
)) {
164 return_ACPI_STATUS(status
);
167 } while (!(((u8
)sleep_status
) & ACPI_X_WAKE_STATUS
));
169 return_ACPI_STATUS(AE_OK
);
172 /*******************************************************************************
174 * FUNCTION: acpi_hw_extended_wake_prep
176 * PARAMETERS: sleep_state - Which sleep state we just exited
180 * DESCRIPTION: Perform first part of OS-independent ACPI cleanup after
181 * a sleep. Called with interrupts ENABLED.
183 ******************************************************************************/
185 acpi_status
acpi_hw_extended_wake_prep(u8 sleep_state
)
190 ACPI_FUNCTION_TRACE(hw_extended_wake_prep
);
192 status
= acpi_get_sleep_type_data(ACPI_STATE_S0
,
193 &acpi_gbl_sleep_type_a
,
194 &acpi_gbl_sleep_type_b
);
195 if (ACPI_SUCCESS(status
)) {
197 ((acpi_gbl_sleep_type_a
<< ACPI_X_SLEEP_TYPE_POSITION
) &
198 ACPI_X_SLEEP_TYPE_MASK
);
200 (void)acpi_write((u64
)(sleep_type_value
| ACPI_X_SLEEP_ENABLE
),
201 &acpi_gbl_FADT
.sleep_control
);
204 return_ACPI_STATUS(AE_OK
);
207 /*******************************************************************************
209 * FUNCTION: acpi_hw_extended_wake
211 * PARAMETERS: sleep_state - Which sleep state we just exited
215 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
216 * Called with interrupts ENABLED.
218 ******************************************************************************/
220 acpi_status
acpi_hw_extended_wake(u8 sleep_state
)
222 ACPI_FUNCTION_TRACE(hw_extended_wake
);
224 /* Ensure enter_sleep_state_prep -> enter_sleep_state ordering */
226 acpi_gbl_sleep_type_a
= ACPI_SLEEP_TYPE_INVALID
;
228 /* Execute the wake methods */
230 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST
, ACPI_SST_WAKING
);
231 acpi_hw_execute_sleep_method(METHOD_PATHNAME__WAK
, sleep_state
);
234 * Some BIOS code assumes that WAK_STS will be cleared on resume
235 * and use it to determine whether the system is rebooting or
236 * resuming. Clear WAK_STS for compatibility.
238 (void)acpi_write((u64
)ACPI_X_WAKE_STATUS
, &acpi_gbl_FADT
.sleep_status
);
239 acpi_gbl_system_awake_and_running
= TRUE
;
241 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST
, ACPI_SST_WORKING
);
242 return_ACPI_STATUS(AE_OK
);