Indentation fix, cleanup.
[AROS.git] / arch / all-pc / acpica / source / components / hardware / hwesleep.c
blob5ea8e262257a814f343b07441fd170024ff9bc1e
1 /******************************************************************************
3 * Name: hwesleep.c - ACPI Hardware Sleep/Wake Support functions for the
4 * extended FADT-V5 sleep registers.
6 *****************************************************************************/
8 /*
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
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.
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.
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.
45 #include "acpi.h"
46 #include "accommon.h"
48 #define _COMPONENT ACPI_HARDWARE
49 ACPI_MODULE_NAME ("hwesleep")
52 /*******************************************************************************
54 * FUNCTION: AcpiHwExecuteSleepMethod
56 * PARAMETERS: MethodPathname - Pathname of method to execute
57 * IntegerArgument - Argument to pass to the method
59 * RETURN: None
61 * DESCRIPTION: Execute a sleep/wake related method with one integer argument
62 * and no return value.
64 ******************************************************************************/
66 void
67 AcpiHwExecuteSleepMethod (
68 char *MethodPathname,
69 UINT32 IntegerArgument)
71 ACPI_OBJECT_LIST ArgList;
72 ACPI_OBJECT Arg;
73 ACPI_STATUS Status;
76 ACPI_FUNCTION_TRACE (HwExecuteSleepMethod);
79 /* One argument, IntegerArgument; No return value expected */
81 ArgList.Count = 1;
82 ArgList.Pointer = &Arg;
83 Arg.Type = ACPI_TYPE_INTEGER;
84 Arg.Integer.Value = (UINT64) IntegerArgument;
86 Status = AcpiEvaluateObject (NULL, MethodPathname, &ArgList, NULL);
87 if (ACPI_FAILURE (Status) && Status != AE_NOT_FOUND)
89 ACPI_EXCEPTION ((AE_INFO, Status, "While executing method %s",
90 MethodPathname));
93 return_VOID;
97 /*******************************************************************************
99 * FUNCTION: AcpiHwExtendedSleep
101 * PARAMETERS: SleepState - Which sleep state to enter
103 * RETURN: Status
105 * DESCRIPTION: Enter a system sleep state via the extended FADT sleep
106 * registers (V5 FADT).
107 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
109 ******************************************************************************/
111 ACPI_STATUS
112 AcpiHwExtendedSleep (
113 UINT8 SleepState)
115 ACPI_STATUS Status;
116 UINT8 SleepTypeValue;
117 UINT64 SleepStatus;
120 ACPI_FUNCTION_TRACE (HwExtendedSleep);
123 /* Extended sleep registers must be valid */
125 if (!AcpiGbl_FADT.SleepControl.Address ||
126 !AcpiGbl_FADT.SleepStatus.Address)
128 return_ACPI_STATUS (AE_NOT_EXIST);
131 /* Clear wake status (WAK_STS) */
133 Status = AcpiWrite ((UINT64) ACPI_X_WAKE_STATUS, &AcpiGbl_FADT.SleepStatus);
134 if (ACPI_FAILURE (Status))
136 return_ACPI_STATUS (Status);
139 AcpiGbl_SystemAwakeAndRunning = FALSE;
141 /* Flush caches, as per ACPI specification */
143 ACPI_FLUSH_CPU_CACHE ();
146 * Set the SLP_TYP and SLP_EN bits.
148 * Note: We only use the first value returned by the \_Sx method
149 * (AcpiGbl_SleepTypeA) - As per ACPI specification.
151 ACPI_DEBUG_PRINT ((ACPI_DB_INIT,
152 "Entering sleep state [S%u]\n", SleepState));
154 SleepTypeValue = ((AcpiGbl_SleepTypeA << ACPI_X_SLEEP_TYPE_POSITION) &
155 ACPI_X_SLEEP_TYPE_MASK);
157 Status = AcpiWrite ((UINT64) (SleepTypeValue | ACPI_X_SLEEP_ENABLE),
158 &AcpiGbl_FADT.SleepControl);
159 if (ACPI_FAILURE (Status))
161 return_ACPI_STATUS (Status);
164 /* Wait for transition back to Working State */
168 Status = AcpiRead (&SleepStatus, &AcpiGbl_FADT.SleepStatus);
169 if (ACPI_FAILURE (Status))
171 return_ACPI_STATUS (Status);
174 } while (!(((UINT8) SleepStatus) & ACPI_X_WAKE_STATUS));
176 return_ACPI_STATUS (AE_OK);
180 /*******************************************************************************
182 * FUNCTION: AcpiHwExtendedWakePrep
184 * PARAMETERS: SleepState - Which sleep state we just exited
186 * RETURN: Status
188 * DESCRIPTION: Perform first part of OS-independent ACPI cleanup after
189 * a sleep. Called with interrupts ENABLED.
191 ******************************************************************************/
193 ACPI_STATUS
194 AcpiHwExtendedWakePrep (
195 UINT8 SleepState)
197 ACPI_STATUS Status;
198 UINT8 SleepTypeValue;
201 ACPI_FUNCTION_TRACE (HwExtendedWakePrep);
204 Status = AcpiGetSleepTypeData (ACPI_STATE_S0,
205 &AcpiGbl_SleepTypeA, &AcpiGbl_SleepTypeB);
206 if (ACPI_SUCCESS (Status))
208 SleepTypeValue = ((AcpiGbl_SleepTypeA << ACPI_X_SLEEP_TYPE_POSITION) &
209 ACPI_X_SLEEP_TYPE_MASK);
211 (void) AcpiWrite ((UINT64) (SleepTypeValue | ACPI_X_SLEEP_ENABLE),
212 &AcpiGbl_FADT.SleepControl);
215 return_ACPI_STATUS (AE_OK);
219 /*******************************************************************************
221 * FUNCTION: AcpiHwExtendedWake
223 * PARAMETERS: SleepState - Which sleep state we just exited
225 * RETURN: Status
227 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
228 * Called with interrupts ENABLED.
230 ******************************************************************************/
232 ACPI_STATUS
233 AcpiHwExtendedWake (
234 UINT8 SleepState)
236 ACPI_FUNCTION_TRACE (HwExtendedWake);
239 /* Ensure EnterSleepStatePrep -> EnterSleepState ordering */
241 AcpiGbl_SleepTypeA = ACPI_SLEEP_TYPE_INVALID;
243 /* Execute the wake methods */
245 AcpiHwExecuteSleepMethod (METHOD_PATHNAME__SST, ACPI_SST_WAKING);
246 AcpiHwExecuteSleepMethod (METHOD_PATHNAME__WAK, SleepState);
249 * Some BIOS code assumes that WAK_STS will be cleared on resume
250 * and use it to determine whether the system is rebooting or
251 * resuming. Clear WAK_STS for compatibility.
253 (void) AcpiWrite ((UINT64) ACPI_X_WAKE_STATUS, &AcpiGbl_FADT.SleepStatus);
254 AcpiGbl_SystemAwakeAndRunning = TRUE;
256 AcpiHwExecuteSleepMethod (METHOD_PATHNAME__SST, ACPI_SST_WORKING);
257 return_ACPI_STATUS (AE_OK);