blob: 8ab325cefa68a4eea8be1c1c320c5e8c2ceffbc3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
Bob Moore70958572012-02-14 18:47:42 +08003 * Name: hwsleep.c - ACPI Hardware Sleep/Wake Support functions for the
4 * original/legacy sleep/PM registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 *****************************************************************************/
7
8/*
Bob Moore77848132012-01-12 13:27:23 +08009 * Copyright (C) 2000 - 2012, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
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.
26 *
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.
30 *
31 * NO WARRANTY
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.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050046#include "accommon.h"
Shane Wang69575d32009-09-01 18:25:07 -070047#include <linux/tboot.h>
Paul Gortmakercc4b8592011-07-01 14:30:49 -040048#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define _COMPONENT ACPI_HARDWARE
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("hwsleep")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Bob Moore70958572012-02-14 18:47:42 +080053#if (!ACPI_REDUCED_HARDWARE) /* Entire module */
Bob Moore2feec472012-02-14 15:00:53 +080054/*******************************************************************************
55 *
56 * FUNCTION: acpi_hw_legacy_sleep
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * PARAMETERS: sleep_state - Which sleep state to enter
Lin Ming8a73b172012-03-21 10:01:49 +080059 * Flags - ACPI_EXECUTE_GTS to run optional method
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * RETURN: Status
62 *
Bob Moore2feec472012-02-14 15:00:53 +080063 * DESCRIPTION: Enter a system sleep state via the legacy FADT PM registers
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
65 *
66 ******************************************************************************/
Lin Ming8a73b172012-03-21 10:01:49 +080067acpi_status acpi_hw_legacy_sleep(u8 sleep_state, u8 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Len Brown4be44fc2005-08-05 00:44:28 -040069 struct acpi_bit_register_info *sleep_type_reg_info;
70 struct acpi_bit_register_info *sleep_enable_reg_info;
Bob Moore2feec472012-02-14 15:00:53 +080071 u32 pm1a_control;
72 u32 pm1b_control;
Len Brown4be44fc2005-08-05 00:44:28 -040073 u32 in_value;
74 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Bob Moore2feec472012-02-14 15:00:53 +080076 ACPI_FUNCTION_TRACE(hw_legacy_sleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Len Brown4be44fc2005-08-05 00:44:28 -040078 sleep_type_reg_info =
Bob Moore82d79b82009-02-18 14:31:05 +080079 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE);
Len Brown4be44fc2005-08-05 00:44:28 -040080 sleep_enable_reg_info =
81 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 /* Clear wake status */
84
Bob Moore768aaaf2009-03-06 09:49:25 +080085 status =
86 acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS, ACPI_CLEAR_STATUS);
Len Brown4be44fc2005-08-05 00:44:28 -040087 if (ACPI_FAILURE(status)) {
88 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
90
91 /* Clear all fixed and general purpose status bits */
92
Bob Moored8c71b62007-02-02 19:48:21 +030093 status = acpi_hw_clear_acpi_status();
Len Brown4be44fc2005-08-05 00:44:28 -040094 if (ACPI_FAILURE(status)) {
95 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
97
Bob Moore2feec472012-02-14 15:00:53 +080098 if (sleep_state != ACPI_STATE_S5) {
99 /*
100 * Disable BM arbitration. This feature is contained within an
101 * optional register (PM2 Control), so ignore a BAD_ADDRESS
102 * exception.
103 */
104 status = acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 1);
105 if (ACPI_FAILURE(status) && (status != AE_BAD_ADDRESS)) {
106 return_ACPI_STATUS(status);
107 }
108 }
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 /*
Pavel Machek23b168d2008-02-05 19:27:12 +0100111 * 1) Disable/Clear all GPEs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * 2) Enable all wakeup GPEs
113 */
Alexey Starikovskiy1d999672007-03-12 14:49:26 -0400114 status = acpi_hw_disable_all_gpes();
115 if (ACPI_FAILURE(status)) {
116 return_ACPI_STATUS(status);
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 acpi_gbl_system_awake_and_running = FALSE;
119
Len Brown4be44fc2005-08-05 00:44:28 -0400120 status = acpi_hw_enable_all_wakeup_gpes();
121 if (ACPI_FAILURE(status)) {
122 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
Lin Ming8a73b172012-03-21 10:01:49 +0800125 /* Optionally execute _GTS (Going To Sleep) */
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100126
Lin Ming8a73b172012-03-21 10:01:49 +0800127 if (flags & ACPI_EXECUTE_GTS) {
128 acpi_hw_execute_sleep_method(METHOD_PATHNAME__GTS, sleep_state);
129 }
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* Get current value of PM1A control */
132
Bob Moore32c9ef92009-02-18 14:36:05 +0800133 status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL,
134 &pm1a_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400135 if (ACPI_FAILURE(status)) {
136 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
Len Brown4be44fc2005-08-05 00:44:28 -0400138 ACPI_DEBUG_PRINT((ACPI_DB_INIT,
Bob Mooreb27d6592010-05-26 11:47:13 +0800139 "Entering sleep state [S%u]\n", sleep_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Bob Moore32c9ef92009-02-18 14:36:05 +0800141 /* Clear the SLP_EN and SLP_TYP fields */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Bob Moore32c9ef92009-02-18 14:36:05 +0800143 pm1a_control &= ~(sleep_type_reg_info->access_bit_mask |
144 sleep_enable_reg_info->access_bit_mask);
145 pm1b_control = pm1a_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Bob Moore32c9ef92009-02-18 14:36:05 +0800147 /* Insert the SLP_TYP bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Bob Moore32c9ef92009-02-18 14:36:05 +0800149 pm1a_control |=
Len Brown4be44fc2005-08-05 00:44:28 -0400150 (acpi_gbl_sleep_type_a << sleep_type_reg_info->bit_position);
Bob Moore32c9ef92009-02-18 14:36:05 +0800151 pm1b_control |=
Len Brown4be44fc2005-08-05 00:44:28 -0400152 (acpi_gbl_sleep_type_b << sleep_type_reg_info->bit_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /*
155 * We split the writes of SLP_TYP and SLP_EN to workaround
156 * poorly implemented hardware.
157 */
158
Bob Moore32c9ef92009-02-18 14:36:05 +0800159 /* Write #1: write the SLP_TYP data to the PM1 Control registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Bob Moore32c9ef92009-02-18 14:36:05 +0800161 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400162 if (ACPI_FAILURE(status)) {
163 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
Bob Moore32c9ef92009-02-18 14:36:05 +0800166 /* Insert the sleep enable (SLP_EN) bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Bob Moore32c9ef92009-02-18 14:36:05 +0800168 pm1a_control |= sleep_enable_reg_info->access_bit_mask;
169 pm1b_control |= sleep_enable_reg_info->access_bit_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Bob Moore32c9ef92009-02-18 14:36:05 +0800171 /* Flush caches, as per ACPI specification */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Len Brown4be44fc2005-08-05 00:44:28 -0400173 ACPI_FLUSH_CPU_CACHE();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Joseph Cihula86886e52009-06-30 19:31:07 -0700175 tboot_sleep(sleep_state, pm1a_control, pm1b_control);
176
Bob Moore32c9ef92009-02-18 14:36:05 +0800177 /* Write #2: Write both SLP_TYP + SLP_EN */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Bob Moore32c9ef92009-02-18 14:36:05 +0800179 status = acpi_hw_write_pm1_control(pm1a_control, pm1b_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400180 if (ACPI_FAILURE(status)) {
181 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
184 if (sleep_state > ACPI_STATE_S3) {
185 /*
Robert Moore44f6c012005-04-18 22:49:35 -0400186 * We wanted to sleep > S3, but it didn't happen (by virtue of the
187 * fact that we are still executing!)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *
Robert Moore44f6c012005-04-18 22:49:35 -0400189 * Wait ten seconds, then try again. This is to get S4/S5 to work on
190 * all machines.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 *
Bob Moored4913dc2009-03-06 10:05:18 +0800192 * We wait so long to allow chipsets that poll this reg very slowly
193 * to still read the right value. Ideally, this block would go
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * away entirely.
195 */
Len Brown4be44fc2005-08-05 00:44:28 -0400196 acpi_os_stall(10000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Alexey Starikovskiyd30dc9ab2007-09-30 22:39:36 +0400198 status = acpi_hw_register_write(ACPI_REGISTER_PM1_CONTROL,
Len Brown4be44fc2005-08-05 00:44:28 -0400199 sleep_enable_reg_info->
200 access_bit_mask);
201 if (ACPI_FAILURE(status)) {
202 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
204 }
205
Bob Moore2feec472012-02-14 15:00:53 +0800206 /* Wait for transition back to Working State */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 do {
Bob Moore50ffba12009-02-23 15:02:07 +0800209 status =
210 acpi_read_bit_register(ACPI_BITREG_WAKE_STATUS, &in_value);
Len Brown4be44fc2005-08-05 00:44:28 -0400211 if (ACPI_FAILURE(status)) {
212 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Bob Moore2feec472012-02-14 15:00:53 +0800214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 } while (!in_value);
216
Len Brown4be44fc2005-08-05 00:44:28 -0400217 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Robert Moore44f6c012005-04-18 22:49:35 -0400220/*******************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 *
Bob Moore2feec472012-02-14 15:00:53 +0800222 * FUNCTION: acpi_hw_legacy_wake_prep
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 *
Bob Moore2feec472012-02-14 15:00:53 +0800224 * PARAMETERS: sleep_state - Which sleep state we just exited
Lin Ming8a73b172012-03-21 10:01:49 +0800225 * Flags - ACPI_EXECUTE_BFS to run optional method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 *
227 * RETURN: Status
228 *
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100229 * DESCRIPTION: Perform the first state of OS-independent ACPI cleanup after a
230 * sleep.
Bob Moore2feec472012-02-14 15:00:53 +0800231 * Called with interrupts ENABLED.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 *
233 ******************************************************************************/
Bob Moore2feec472012-02-14 15:00:53 +0800234
Lin Ming8a73b172012-03-21 10:01:49 +0800235acpi_status acpi_hw_legacy_wake_prep(u8 sleep_state, u8 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Len Brown4be44fc2005-08-05 00:44:28 -0400237 acpi_status status;
238 struct acpi_bit_register_info *sleep_type_reg_info;
239 struct acpi_bit_register_info *sleep_enable_reg_info;
Bob Moore32c9ef92009-02-18 14:36:05 +0800240 u32 pm1a_control;
241 u32 pm1b_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Bob Moore2feec472012-02-14 15:00:53 +0800243 ACPI_FUNCTION_TRACE(hw_legacy_wake_prep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /*
246 * Set SLP_TYPE and SLP_EN to state S0.
247 * This is unclear from the ACPI Spec, but it is required
248 * by some machines.
249 */
Len Brown4be44fc2005-08-05 00:44:28 -0400250 status = acpi_get_sleep_type_data(ACPI_STATE_S0,
251 &acpi_gbl_sleep_type_a,
252 &acpi_gbl_sleep_type_b);
253 if (ACPI_SUCCESS(status)) {
254 sleep_type_reg_info =
Bob Moore82d79b82009-02-18 14:31:05 +0800255 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE);
Len Brown4be44fc2005-08-05 00:44:28 -0400256 sleep_enable_reg_info =
257 acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* Get current value of PM1A control */
260
Alexey Starikovskiyd30dc9ab2007-09-30 22:39:36 +0400261 status = acpi_hw_register_read(ACPI_REGISTER_PM1_CONTROL,
Bob Moore32c9ef92009-02-18 14:36:05 +0800262 &pm1a_control);
Len Brown4be44fc2005-08-05 00:44:28 -0400263 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400264
Bob Moore32c9ef92009-02-18 14:36:05 +0800265 /* Clear the SLP_EN and SLP_TYP fields */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Bob Moore32c9ef92009-02-18 14:36:05 +0800267 pm1a_control &= ~(sleep_type_reg_info->access_bit_mask |
268 sleep_enable_reg_info->
269 access_bit_mask);
270 pm1b_control = pm1a_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Bob Moore32c9ef92009-02-18 14:36:05 +0800272 /* Insert the SLP_TYP bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Bob Moored4913dc2009-03-06 10:05:18 +0800274 pm1a_control |= (acpi_gbl_sleep_type_a <<
275 sleep_type_reg_info->bit_position);
276 pm1b_control |= (acpi_gbl_sleep_type_b <<
277 sleep_type_reg_info->bit_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Bob Moore32c9ef92009-02-18 14:36:05 +0800279 /* Write the control registers and ignore any errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Bob Moore32c9ef92009-02-18 14:36:05 +0800281 (void)acpi_hw_write_pm1_control(pm1a_control,
282 pm1b_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284 }
285
Lin Ming8a73b172012-03-21 10:01:49 +0800286 /* Optionally execute _BFS (Back From Sleep) */
287
288 if (flags & ACPI_EXECUTE_BFS) {
289 acpi_hw_execute_sleep_method(METHOD_PATHNAME__BFS, sleep_state);
290 }
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100291 return_ACPI_STATUS(status);
292}
293
294/*******************************************************************************
295 *
Bob Moore2feec472012-02-14 15:00:53 +0800296 * FUNCTION: acpi_hw_legacy_wake
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100297 *
298 * PARAMETERS: sleep_state - Which sleep state we just exited
Lin Ming8a73b172012-03-21 10:01:49 +0800299 * Flags - Reserved, set to zero
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100300 *
301 * RETURN: Status
302 *
303 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
304 * Called with interrupts ENABLED.
305 *
306 ******************************************************************************/
Bob Moore2feec472012-02-14 15:00:53 +0800307
Lin Ming8a73b172012-03-21 10:01:49 +0800308acpi_status acpi_hw_legacy_wake(u8 sleep_state, u8 flags)
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100309{
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100310 acpi_status status;
311
Bob Moore2feec472012-02-14 15:00:53 +0800312 ACPI_FUNCTION_TRACE(hw_legacy_wake);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* Ensure enter_sleep_state_prep -> enter_sleep_state ordering */
315
316 acpi_gbl_sleep_type_a = ACPI_SLEEP_TYPE_INVALID;
Bob Moore4efeeec2012-03-21 09:42:45 +0800317 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, ACPI_SST_WAKING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /*
Thomas Renninger79d2dfa2007-08-24 01:24:47 -0400320 * GPEs must be enabled before _WAK is called as GPEs
321 * might get fired there
322 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * Restore the GPEs:
324 * 1) Disable/Clear all GPEs
325 * 2) Enable all runtime GPEs
326 */
Len Brown4be44fc2005-08-05 00:44:28 -0400327 status = acpi_hw_disable_all_gpes();
328 if (ACPI_FAILURE(status)) {
329 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Bob Moore2feec472012-02-14 15:00:53 +0800331
Len Brown4be44fc2005-08-05 00:44:28 -0400332 status = acpi_hw_enable_all_runtime_gpes();
333 if (ACPI_FAILURE(status)) {
334 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
Bob Moore2feec472012-02-14 15:00:53 +0800337 /*
338 * Now we can execute _WAK, etc. Some machines require that the GPEs
339 * are enabled before the wake methods are executed.
340 */
Bob Moore4efeeec2012-03-21 09:42:45 +0800341 acpi_hw_execute_sleep_method(METHOD_PATHNAME__WAK, sleep_state);
Thomas Renninger79d2dfa2007-08-24 01:24:47 -0400342
Matthew Garretta68823e2008-08-06 19:12:04 +0100343 /*
Bob Moore2feec472012-02-14 15:00:53 +0800344 * Some BIOS code assumes that WAK_STS will be cleared on resume
345 * and use it to determine whether the system is rebooting or
346 * resuming. Clear WAK_STS for compatibility.
Matthew Garretta68823e2008-08-06 19:12:04 +0100347 */
Bob Moore50ffba12009-02-23 15:02:07 +0800348 acpi_write_bit_register(ACPI_BITREG_WAKE_STATUS, 1);
Thomas Renninger79d2dfa2007-08-24 01:24:47 -0400349 acpi_gbl_system_awake_and_running = TRUE;
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /* Enable power button */
352
Len Brown4be44fc2005-08-05 00:44:28 -0400353 (void)
Bob Moore50ffba12009-02-23 15:02:07 +0800354 acpi_write_bit_register(acpi_gbl_fixed_event_info
Bob Moore2feec472012-02-14 15:00:53 +0800355 [ACPI_EVENT_POWER_BUTTON].
356 enable_register_id, ACPI_ENABLE_EVENT);
Robert Moore44f6c012005-04-18 22:49:35 -0400357
Len Brown4be44fc2005-08-05 00:44:28 -0400358 (void)
Bob Moore50ffba12009-02-23 15:02:07 +0800359 acpi_write_bit_register(acpi_gbl_fixed_event_info
Bob Moore2feec472012-02-14 15:00:53 +0800360 [ACPI_EVENT_POWER_BUTTON].
361 status_register_id, ACPI_CLEAR_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Bob Moore2feec472012-02-14 15:00:53 +0800363 /*
364 * Enable BM arbitration. This feature is contained within an
365 * optional register (PM2 Control), so ignore a BAD_ADDRESS
366 * exception.
367 */
368 status = acpi_write_bit_register(ACPI_BITREG_ARB_DISABLE, 0);
369 if (ACPI_FAILURE(status) && (status != AE_BAD_ADDRESS)) {
370 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Bob Moore4efeeec2012-03-21 09:42:45 +0800373 acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, ACPI_SST_WORKING);
Len Brown4be44fc2005-08-05 00:44:28 -0400374 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
Bob Moore83135242006-10-03 00:00:00 -0400376
Bob Moore33620c52012-02-14 18:14:27 +0800377#endif /* !ACPI_REDUCED_HARDWARE */