2007-09-26 11:35:36 +02:00
|
|
|
/** @file
|
2009-06-11 16:17:23 +02:00
|
|
|
S3 library class defines a set of methods related to S3 boot mode.
|
2009-08-11 17:51:48 +02:00
|
|
|
This library class is no longer used and modules using this library should
|
2010-03-17 21:48:52 +01:00
|
|
|
directly locate EFI_PEI_S3_RESUME_PPI, defined in the PI 1.2 specification.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
2010-04-24 11:49:11 +02:00
|
|
|
Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR>
|
2010-03-17 21:48:52 +01:00
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that accompanies this distribution.
|
|
|
|
The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2008-04-09 07:44:04 +02:00
|
|
|
|
2010-03-17 21:48:52 +01:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
2008-04-09 07:44:04 +02:00
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __S3_LIB_H__
|
|
|
|
#define __S3_LIB_H__
|
|
|
|
|
|
|
|
/**
|
2007-09-27 05:20:28 +02:00
|
|
|
This function is responsible for calling the S3 resume vector in the ACPI Tables.
|
2007-09-26 11:35:36 +02:00
|
|
|
|
2010-03-17 21:48:52 +01:00
|
|
|
@retval EFI_SUCCESS Successfully restored the configuration from S3.
|
|
|
|
@retval Others Failed to restore the configuration from S3.
|
2008-04-09 07:44:04 +02:00
|
|
|
|
2007-09-26 11:35:36 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2007-09-27 05:20:28 +02:00
|
|
|
AcpiS3ResumeOs (
|
2007-09-26 11:35:36 +02:00
|
|
|
VOID
|
2008-09-04 11:37:28 +02:00
|
|
|
);
|
2007-09-26 11:35:36 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|