]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Protocol/BootScriptSave.h
add some definitions about HII
[mirror_edk2.git] / IntelFrameworkPkg / Include / Protocol / BootScriptSave.h
CommitLineData
79964ac8 1/** @file\r
2 Definition of the Boot Script Save protocol.\r
3\r
4 Copyright (c) 2007, Intel Corporation\r
5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13 Module Name: BootScriptSave.h\r
14\r
15 @par Revision Reference:\r
16 This protocol defined in the Boot Script Specification, Version 0.91.\r
17\r
18**/\r
19\r
20#ifndef _BOOT_SCRIPT_SAVE_PROTOCOL_H\r
21#define _BOOT_SCRIPT_SAVE_PROTOCOL_H\r
22\r
b80fbe85 23#include <PiDxe.h>\r
24\r
79964ac8 25//\r
26// S3 Save Protocol GUID\r
27//\r
28#define EFI_BOOT_SCRIPT_SAVE_PROTOCOL_GUID \\r
29 { \\r
30 0x470e1529, 0xb79e, 0x4e32, {0xa0, 0xfe, 0x6a, 0x15, 0x6d, 0x29, 0xf9, 0xb2 } \\r
31 }\r
32\r
33typedef struct _EFI_BOOT_SCRIPT_SAVE_PROTOCOL EFI_BOOT_SCRIPT_SAVE_PROTOCOL;\r
34\r
35//\r
36// Protocol Member_Function\r
37//\r
38/**\r
39 Adds a record into a specified Framework boot script table.\r
40\r
41 @param This A pointer to the EFI_BOOT_SCRIPT_SAVE_PROTOCOL instance.\r
42 @param TableName Name of the script table.Currently, the only meaningful\r
43 value is EFI_ACPI_S3_RESUME_SCRIPT_TABLE.\r
44 @param OpCode The operation code (opcode) number.\r
45 @param ... Argument list that is specific to each opcode.\r
46\r
47 @retval EFI_SUCCESS The operation succeeded. A record was added into the specified script table.\r
48 @retval EFI_INVALID_PARAMETER The parameter is illegal or the given boot script is not supported.\r
49 @retval EFI_OUT_OF_RESOURCES There is insufficient memory to store the boot script.\r
50\r
51**/\r
52typedef\r
53EFI_STATUS\r
54(EFIAPI *EFI_BOOT_SCRIPT_WRITE) (\r
55 IN EFI_BOOT_SCRIPT_SAVE_PROTOCOL *This,\r
56 IN UINT16 TableName,\r
57 IN UINT16 OpCode,\r
58 ...\r
59 );\r
60\r
61/**\r
62 Closes the specified script table.\r
63\r
64 @param This A pointer to the EFI_BOOT_SCRIPT_SAVE_PROTOCOL instance.\r
65 @param TableName Name of the script table.\r
66 @param Address A pointer to the physical address where the table begins.\r
67\r
68 @retval EFI_SUCCESS The table was successfully returned.\r
69 @retval EFI_NOT_FOUND The specified table was not created previously.\r
70 @retval EFI_OUT_OF_RESOURCES Memory is insufficient to hold the reorganized boot script table.\r
71\r
72**/\r
73typedef\r
74EFI_STATUS\r
75(EFIAPI *EFI_BOOT_SCRIPT_CLOSE_TABLE) (\r
76 IN EFI_BOOT_SCRIPT_SAVE_PROTOCOL *This,\r
77 IN UINT16 TableName,\r
78 OUT EFI_PHYSICAL_ADDRESS *Address\r
79 );\r
80\r
81//\r
82// S3 Save Protocol data structure\r
83//\r
84/**\r
85 @par Protocol Description:\r
86 The EFI_BOOT_SCRIPT_SAVE_PROTOCOL publishes the Framework boot script abstractions\r
87 to store or record various boot scripts into boot script tables.\r
88\r
89 @param Write\r
90 Writes various boot scripts to a boot script table.\r
91\r
92 @param CloseTable\r
93 Retrieves and closes a script table.\r
94\r
95**/\r
96struct _EFI_BOOT_SCRIPT_SAVE_PROTOCOL {\r
97 EFI_BOOT_SCRIPT_WRITE Write;\r
98 EFI_BOOT_SCRIPT_CLOSE_TABLE CloseTable;\r
99};\r
100\r
101extern EFI_GUID gEfiBootScriptSaveProtocolGuid;\r
102\r
103#endif\r
104\r