]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Protocol/AcpiS3Save.h
Clarify @pram b in Base.h. Accepted and edited in Qing Huang changes for @retval...
[mirror_edk2.git] / IntelFrameworkPkg / Include / Protocol / AcpiS3Save.h
CommitLineData
cf7e50f8 1/** @file\r
4a71b21a 2 This protocol is used to prepare all information that is needed for the S3 resume boot path. This\r
3 protocol is not required for all platforms.\r
4a71b21a 4 \r
534b8251 5 Copyright (c) 2006 - 2009, Intel Corporation\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
8f23e4e6 10\r
534b8251 11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
8f23e4e6 13\r
534b8251 14 @par Revision Reference:\r
15 This Protocol is defined in Framework of S3 Resume Boot Path Spec.\r
16 Version 0.9.\r
17 \r
cf7e50f8 18**/\r
8f23e4e6 19\r
4ebb0d9e 20#ifndef _ACPI_S3_SAVE_PROTOCOL_H_\r
21#define _ACPI_S3_SAVE_PROTOCOL_H_\r
8f23e4e6 22\r
8f23e4e6 23//\r
24// Forward reference for pure ANSI compatability\r
25//\r
26typedef struct _EFI_ACPI_S3_SAVE_PROTOCOL EFI_ACPI_S3_SAVE_PROTOCOL;\r
27\r
28//\r
29// S3 Save Protocol GUID\r
30//\r
31#define EFI_ACPI_S3_SAVE_GUID \\r
32 { \\r
33 0x125f2de1, 0xfb85, 0x440c, {0xa5, 0x4c, 0x4d, 0x99, 0x35, 0x8a, 0x8d, 0x38 } \\r
34 }\r
35\r
36//\r
37// Protocol Data Structures\r
38//\r
534b8251 39\r
40/**\r
5259c97d 41 This function is used to:\r
534b8251 42 \r
43 - Prepare all information that is needed in the S3 resume boot path. This information can include\r
44 the following:\r
45 -- Framework boot script table\r
46 -- RSDT pointer\r
47 -- Reserved memory for the S3 resume\r
48 \r
5259c97d 49 - Get the minimum legacy memory length (meaning below 1 MB) that is required for the S3 resume boot path.\r
534b8251 50 If LegacyMemoryAddress is NULL, the firmware will be unable to jump into a real-mode\r
51 waking vector. However, it might still be able to jump into a flat-mode waking vector as long as the\r
b4420c36 52 OS provides a flat-mode waking vector. It is the caller's responsibility to ensure the\r
534b8251 53 LegacyMemoryAddress is valid. If the LegacyMemoryAddress is higher than 1 MB,\r
54 EFI_INVALID_PARAMETER will be returned.\r
55\r
56 @param This A pointer to the EFI_ACPI_S3_SAVE_PROTOCOL instance.\r
57 @param LegacyMemoryAddress The base of legacy memory.\r
58\r
59 @retval EFI_SUCCESS All information was saved successfully.\r
60 @retval EFI_INVALID_PARAMETER The memory range is not located below 1 MB.\r
61 @retval EFI_OUT_OF_RESOURCES Resources were insufficient to save all the information.\r
5259c97d 62 @retval EFI_NOT_FOUND Some necessary information cannot be found. \r
63\r
64**/\r
65typedef\r
66EFI_STATUS\r
67(EFIAPI *EFI_ACPI_S3_SAVE)(\r
68 IN EFI_ACPI_S3_SAVE_PROTOCOL * This,\r
69 IN VOID * LegacyMemoryAddress\r
70 );\r
71\r
72/**\r
73 This function returns the size of the legacy memory (meaning below 1 MB) that is required during an S3\r
74 resume. Before the Framework-based firmware transfers control to the OS, it has to transition from\r
75 flat mode into real mode in case the OS supplies only a real-mode waking vector. This transition\r
76 requires a certain amount of legacy memory. After getting the size of legacy memory\r
77 below, the caller is responsible for allocating the legacy memory below 1 MB according to\r
78 the size that is returned. The specific implementation of allocating the legacy memory is out of the\r
79 scope of this specification.\r
80\r
81 @param This A pointer to the EFI_ACPI_S3_SAVE_PROTOCOL instance.\r
82 @param Size The returned size of legacy memory below 1MB.\r
83\r
84 @retval EFI_SUCCESS Size is successfully returned.\r
85 @retval EFI_INVALID_PARAMETER The pointer Size is NULL.\r
86 \r
534b8251 87**/\r
8f23e4e6 88typedef\r
89EFI_STATUS\r
69686d56 90(EFIAPI *EFI_ACPI_GET_LEGACY_MEMORY_SIZE)(\r
8f23e4e6 91 IN EFI_ACPI_S3_SAVE_PROTOCOL * This,\r
92 OUT UINTN * Size\r
93);\r
94\r
534b8251 95/**\r
534b8251 96 The EFI_ACPI_S3_SAVE_PROTOCOL is responsible for preparing all the information that the\r
b4420c36 97 Framework needs to restore the platform's preboot state during an S3 resume boot. This\r
534b8251 98 information can include the following:\r
99 - The Framework boot script table, containing all necessary operations to initialize the platform\r
100 - ACPI table information, such as RSDT, through which the OS waking vector can be located\r
101 - Range of reserved memory that can be used on the S3 resume boot path\r
102 This protocol can be used after the Framework makes sure that the boot process is complete and\r
5259c97d 103 that no hardware has been left unconfigured. Where to call this protocol to save information is implementation-specific. \r
104 In the case of an EFI-aware OS, ExitBootServices() can be a choice to provide this hook.\r
534b8251 105 The currently executing EFI OS loader image calls ExitBootServices()to terminate all boot\r
106 services. After ExitBootServices() successfully completes, the loader becomes responsible\r
107 for the continued operation of the system.\r
108 On a normal boot, ExitBootServices() checks if the platform supports S3 by looking for\r
109 EFI_ACPI_S3_SAVE_PROTOCOL. If the protocol exists, ExitBootServices()will assume\r
110 that the target platform supports an S3 resume and then call EFI_ACPI_S3_SAVE_PROTOCOL\r
111 to save the S3 resume information. The entire Framework boot script table will then be generated,\r
112 assuming the platform currently is in the preboot state.\r
534b8251 113**/\r
8f23e4e6 114struct _EFI_ACPI_S3_SAVE_PROTOCOL {\r
2bbaeb0d 115 ///\r
116 /// Gets the size of legacy memory below 1 MB that is required for S3 resume.\r
117 ///\r
8f23e4e6 118 EFI_ACPI_GET_LEGACY_MEMORY_SIZE GetLegacyMemorySize;\r
2bbaeb0d 119 \r
120 ///\r
121 /// Prepare all information for an S3 resume.\r
122 ///\r
8f23e4e6 123 EFI_ACPI_S3_SAVE S3Save;\r
124};\r
125\r
126extern EFI_GUID gEfiAcpiS3SaveProtocolGuid;\r
127\r
128#endif\r