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