1 /******************************************************************************
3 * Name: hwxfsleep.c - ACPI Hardware Sleep/Wake External Interfaces
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, 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 #define EXPORT_ACPI_INTERFACES
49 #define _COMPONENT ACPI_HARDWARE
50 ACPI_MODULE_NAME ("hwxfsleep")
52 /* Local prototypes */
60 * Dispatch table used to efficiently branch to the various sleep
63 #define ACPI_SLEEP_FUNCTION_ID 0
64 #define ACPI_WAKE_PREP_FUNCTION_ID 1
65 #define ACPI_WAKE_FUNCTION_ID 2
67 /* Legacy functions are optional, based upon ACPI_REDUCED_HARDWARE */
69 static ACPI_SLEEP_FUNCTIONS AcpiSleepDispatch
[] =
71 {ACPI_HW_OPTIONAL_FUNCTION (AcpiHwLegacySleep
), AcpiHwExtendedSleep
},
72 {ACPI_HW_OPTIONAL_FUNCTION (AcpiHwLegacyWakePrep
), AcpiHwExtendedWakePrep
},
73 {ACPI_HW_OPTIONAL_FUNCTION (AcpiHwLegacyWake
), AcpiHwExtendedWake
}
78 * These functions are removed for the ACPI_REDUCED_HARDWARE case:
79 * AcpiSetFirmwareWakingVector
80 * AcpiSetFirmwareWakingVector64
81 * AcpiEnterSleepStateS4bios
84 #if (!ACPI_REDUCED_HARDWARE)
85 /*******************************************************************************
87 * FUNCTION: AcpiSetFirmwareWakingVector
89 * PARAMETERS: PhysicalAddress - 32-bit physical address of ACPI real mode
94 * DESCRIPTION: Sets the 32-bit FirmwareWakingVector field of the FACS
96 ******************************************************************************/
99 AcpiSetFirmwareWakingVector (
100 UINT32 PhysicalAddress
)
102 ACPI_FUNCTION_TRACE (AcpiSetFirmwareWakingVector
);
106 * According to the ACPI specification 2.0c and later, the 64-bit
107 * waking vector should be cleared and the 32-bit waking vector should
108 * be used, unless we want the wake-up code to be called by the BIOS in
109 * Protected Mode. Some systems (for example HP dv5-1004nr) are known
110 * to fail to resume if the 64-bit vector is used.
113 /* Set the 32-bit vector */
115 AcpiGbl_FACS
->FirmwareWakingVector
= PhysicalAddress
;
117 /* Clear the 64-bit vector if it exists */
119 if ((AcpiGbl_FACS
->Length
> 32) && (AcpiGbl_FACS
->Version
>= 1))
121 AcpiGbl_FACS
->XFirmwareWakingVector
= 0;
124 return_ACPI_STATUS (AE_OK
);
127 ACPI_EXPORT_SYMBOL (AcpiSetFirmwareWakingVector
)
130 #if ACPI_MACHINE_WIDTH == 64
131 /*******************************************************************************
133 * FUNCTION: AcpiSetFirmwareWakingVector64
135 * PARAMETERS: PhysicalAddress - 64-bit physical address of ACPI protected
140 * DESCRIPTION: Sets the 64-bit X_FirmwareWakingVector field of the FACS, if
141 * it exists in the table. This function is intended for use with
142 * 64-bit host operating systems.
144 ******************************************************************************/
147 AcpiSetFirmwareWakingVector64 (
148 UINT64 PhysicalAddress
)
150 ACPI_FUNCTION_TRACE (AcpiSetFirmwareWakingVector64
);
153 /* Determine if the 64-bit vector actually exists */
155 if ((AcpiGbl_FACS
->Length
<= 32) || (AcpiGbl_FACS
->Version
< 1))
157 return_ACPI_STATUS (AE_NOT_EXIST
);
160 /* Clear 32-bit vector, set the 64-bit X_ vector */
162 AcpiGbl_FACS
->FirmwareWakingVector
= 0;
163 AcpiGbl_FACS
->XFirmwareWakingVector
= PhysicalAddress
;
164 return_ACPI_STATUS (AE_OK
);
167 ACPI_EXPORT_SYMBOL (AcpiSetFirmwareWakingVector64
)
171 /*******************************************************************************
173 * FUNCTION: AcpiEnterSleepStateS4bios
179 * DESCRIPTION: Perform a S4 bios request.
180 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
182 ******************************************************************************/
185 AcpiEnterSleepStateS4bios (
192 ACPI_FUNCTION_TRACE (AcpiEnterSleepStateS4bios
);
195 /* Clear the wake status bit (PM1) */
197 Status
= AcpiWriteBitRegister (ACPI_BITREG_WAKE_STATUS
, ACPI_CLEAR_STATUS
);
198 if (ACPI_FAILURE (Status
))
200 return_ACPI_STATUS (Status
);
203 Status
= AcpiHwClearAcpiStatus ();
204 if (ACPI_FAILURE (Status
))
206 return_ACPI_STATUS (Status
);
210 * 1) Disable/Clear all GPEs
211 * 2) Enable all wakeup GPEs
213 Status
= AcpiHwDisableAllGpes ();
214 if (ACPI_FAILURE (Status
))
216 return_ACPI_STATUS (Status
);
218 AcpiGbl_SystemAwakeAndRunning
= FALSE
;
220 Status
= AcpiHwEnableAllWakeupGpes ();
221 if (ACPI_FAILURE (Status
))
223 return_ACPI_STATUS (Status
);
226 ACPI_FLUSH_CPU_CACHE ();
228 Status
= AcpiHwWritePort (AcpiGbl_FADT
.SmiCommand
,
229 (UINT32
) AcpiGbl_FADT
.S4BiosRequest
, 8);
232 AcpiOsStall (ACPI_USEC_PER_MSEC
);
233 Status
= AcpiReadBitRegister (ACPI_BITREG_WAKE_STATUS
, &InValue
);
234 if (ACPI_FAILURE (Status
))
236 return_ACPI_STATUS (Status
);
240 return_ACPI_STATUS (AE_OK
);
243 ACPI_EXPORT_SYMBOL (AcpiEnterSleepStateS4bios
)
245 #endif /* !ACPI_REDUCED_HARDWARE */
248 /*******************************************************************************
250 * FUNCTION: AcpiHwSleepDispatch
252 * PARAMETERS: SleepState - Which sleep state to enter/exit
253 * FunctionId - Sleep, WakePrep, or Wake
255 * RETURN: Status from the invoked sleep handling function.
257 * DESCRIPTION: Dispatch a sleep/wake request to the appropriate handling
260 ******************************************************************************/
263 AcpiHwSleepDispatch (
268 ACPI_SLEEP_FUNCTIONS
*SleepFunctions
= &AcpiSleepDispatch
[FunctionId
];
271 #if (!ACPI_REDUCED_HARDWARE)
273 * If the Hardware Reduced flag is set (from the FADT), we must
274 * use the extended sleep registers (FADT). Note: As per the ACPI
275 * specification, these extended registers are to be used for HW-reduced
276 * platforms only. They are not general-purpose replacements for the
277 * legacy PM register sleep support.
279 if (AcpiGbl_ReducedHardware
)
281 Status
= SleepFunctions
->ExtendedFunction (SleepState
);
287 Status
= SleepFunctions
->LegacyFunction (SleepState
);
294 * For the case where reduced-hardware-only code is being generated,
295 * we know that only the extended sleep registers are available
297 Status
= SleepFunctions
->ExtendedFunction (SleepState
);
300 #endif /* !ACPI_REDUCED_HARDWARE */
304 /*******************************************************************************
306 * FUNCTION: AcpiEnterSleepStatePrep
308 * PARAMETERS: SleepState - Which sleep state to enter
312 * DESCRIPTION: Prepare to enter a system sleep state.
313 * This function must execute with interrupts enabled.
314 * We break sleeping into 2 stages so that OSPM can handle
315 * various OS-specific tasks between the two steps.
317 ******************************************************************************/
320 AcpiEnterSleepStatePrep (
324 ACPI_OBJECT_LIST ArgList
;
329 ACPI_FUNCTION_TRACE (AcpiEnterSleepStatePrep
);
332 Status
= AcpiGetSleepTypeData (SleepState
,
333 &AcpiGbl_SleepTypeA
, &AcpiGbl_SleepTypeB
);
334 if (ACPI_FAILURE (Status
))
336 return_ACPI_STATUS (Status
);
339 /* Execute the _PTS method (Prepare To Sleep) */
342 ArgList
.Pointer
= &Arg
;
343 Arg
.Type
= ACPI_TYPE_INTEGER
;
344 Arg
.Integer
.Value
= SleepState
;
346 Status
= AcpiEvaluateObject (NULL
, METHOD_PATHNAME__PTS
, &ArgList
, NULL
);
347 if (ACPI_FAILURE (Status
) && Status
!= AE_NOT_FOUND
)
349 return_ACPI_STATUS (Status
);
352 /* Setup the argument to the _SST method (System STatus) */
358 SstValue
= ACPI_SST_WORKING
;
365 SstValue
= ACPI_SST_SLEEPING
;
370 SstValue
= ACPI_SST_SLEEP_CONTEXT
;
375 SstValue
= ACPI_SST_INDICATOR_OFF
; /* Default is off */
380 * Set the system indicators to show the desired sleep state.
381 * _SST is an optional method (return no error if not found)
383 AcpiHwExecuteSleepMethod (METHOD_PATHNAME__SST
, SstValue
);
384 return_ACPI_STATUS (AE_OK
);
387 ACPI_EXPORT_SYMBOL (AcpiEnterSleepStatePrep
)
390 /*******************************************************************************
392 * FUNCTION: AcpiEnterSleepState
394 * PARAMETERS: SleepState - Which sleep state to enter
398 * DESCRIPTION: Enter a system sleep state
399 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
401 ******************************************************************************/
404 AcpiEnterSleepState (
410 ACPI_FUNCTION_TRACE (AcpiEnterSleepState
);
413 if ((AcpiGbl_SleepTypeA
> ACPI_SLEEP_TYPE_MAX
) ||
414 (AcpiGbl_SleepTypeB
> ACPI_SLEEP_TYPE_MAX
))
416 ACPI_ERROR ((AE_INFO
, "Sleep values out of range: A=0x%X B=0x%X",
417 AcpiGbl_SleepTypeA
, AcpiGbl_SleepTypeB
));
418 return_ACPI_STATUS (AE_AML_OPERAND_VALUE
);
421 Status
= AcpiHwSleepDispatch (SleepState
, ACPI_SLEEP_FUNCTION_ID
);
422 return_ACPI_STATUS (Status
);
425 ACPI_EXPORT_SYMBOL (AcpiEnterSleepState
)
428 /*******************************************************************************
430 * FUNCTION: AcpiLeaveSleepStatePrep
432 * PARAMETERS: SleepState - Which sleep state we are exiting
436 * DESCRIPTION: Perform the first state of OS-independent ACPI cleanup after a
437 * sleep. Called with interrupts DISABLED.
438 * We break wake/resume into 2 stages so that OSPM can handle
439 * various OS-specific tasks between the two steps.
441 ******************************************************************************/
444 AcpiLeaveSleepStatePrep (
450 ACPI_FUNCTION_TRACE (AcpiLeaveSleepStatePrep
);
453 Status
= AcpiHwSleepDispatch (SleepState
, ACPI_WAKE_PREP_FUNCTION_ID
);
454 return_ACPI_STATUS (Status
);
457 ACPI_EXPORT_SYMBOL (AcpiLeaveSleepStatePrep
)
460 /*******************************************************************************
462 * FUNCTION: AcpiLeaveSleepState
464 * PARAMETERS: SleepState - Which sleep state we are exiting
468 * DESCRIPTION: Perform OS-independent ACPI cleanup after a sleep
469 * Called with interrupts ENABLED.
471 ******************************************************************************/
474 AcpiLeaveSleepState (
480 ACPI_FUNCTION_TRACE (AcpiLeaveSleepState
);
483 Status
= AcpiHwSleepDispatch (SleepState
, ACPI_WAKE_FUNCTION_ID
);
484 return_ACPI_STATUS (Status
);
487 ACPI_EXPORT_SYMBOL (AcpiLeaveSleepState
)