]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Ppi/BootScriptExecuter.h
Update for NetworkPkg.
[mirror_edk2.git] / IntelFrameworkPkg / Include / Ppi / BootScriptExecuter.h
CommitLineData
79964ac8 1/** @file\r
f22f941e 2 This file declares the Boot Script Executer PPI.\r
79964ac8 3\r
4a71b21a 4 This PPI is published by a PEIM upon dispatch and provides an execution engine for the\r
5 Framework boot script. This PEIM should be platform neutral and have no specific knowledge of\r
5259c97d 6 platform instructions or other information. The ability to interpret the boot script depends on the\r
4a71b21a 7 abundance of other PPIs that are available. For example, if the script requests an SMBus command\r
8 execution, the PEIM looks for a relevant PPI that is available to execute it, rather than executing it\r
9 by issuing the native IA-32 instruction.\r
10\r
2b3687db 11Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>\r
f22f941e 12This program and the accompanying materials are licensed and made available under \r
13the terms and conditions of the BSD License that accompanies this distribution. \r
14The full text of the license may be found at\r
15http://opensource.org/licenses/bsd-license.php. \r
16 \r
17THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
18WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
79964ac8 19\r
79964ac8 20 @par Revision Reference:\r
21 This PPI is defined in Framework of EFI BootScript spec.\r
22 Version 0.91.\r
23\r
24**/\r
25\r
694b922c 26#ifndef _PEI_BOOT_SCRIPT_EXECUTER_PPI_H_\r
27#define _PEI_BOOT_SCRIPT_EXECUTER_PPI_H_\r
28\r
79964ac8 29#define EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI_GUID \\r
30 { \\r
31 0xabd42895, 0x78cf, 0x4872, {0x84, 0x44, 0x1b, 0x5c, 0x18, 0x0b, 0xfb, 0xff } \\r
32 }\r
33\r
34typedef struct _EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI;\r
35\r
36/**\r
37 Executes the Framework boot script table.\r
38\r
39 @param PeiServices A pointer to the system PEI Services Table.\r
40 @param This A pointer to the EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI instance.\r
41 @param Address The physical memory address where the table is stored.\r
f22f941e 42 It must be zero if the table to be executed is stored in \r
43 a firmware volume file.\r
79964ac8 44 @param FvFile The firmware volume file name that contains the table to\r
f22f941e 45 be executed. It must be NULL if the table to be executed \r
46 is stored in physical memory.\r
79964ac8 47\r
48 @retval EFI_SUCCESS The boot script table was executed successfully.\r
49 @retval EFI_INVALID_PARAMETER Address is zero and FvFile is NULL.\r
50 @retval EFI_NOT_FOUND The file name specified in FvFile cannot be found.\r
51 @retval EFI_UNSUPPORTED The format of the boot script table is invalid.\r
f22f941e 52 Or, an unsupported opcode occurred in the table.\r
53 Or there were opcode execution errors, such as an \r
54 insufficient dependency.\r
79964ac8 55\r
56**/\r
57typedef\r
58EFI_STATUS\r
69686d56 59(EFIAPI *EFI_PEI_BOOT_SCRIPT_EXECUTE)(\r
79964ac8 60 IN EFI_PEI_SERVICES **PeiServices,\r
61 IN EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI *This,\r
62 IN EFI_PHYSICAL_ADDRESS Address,\r
63 IN EFI_GUID *FvFile OPTIONAL\r
64 );\r
65\r
2bbaeb0d 66///\r
18998e40 67/// EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI produces the function which interprets and \r
f22f941e 68/// executes the Framework boot script table.\r
2bbaeb0d 69///\r
79964ac8 70struct _EFI_PEI_BOOT_SCRIPT_EXECUTER_PPI {\r
18998e40 71 ///\r
f22f941e 72 /// Executes a boot script table.\r
18998e40 73 ///\r
74 EFI_PEI_BOOT_SCRIPT_EXECUTE Execute; \r
79964ac8 75};\r
76\r
77extern EFI_GUID gEfiPeiBootScriptExecuterPpiGuid;\r
78\r
79#endif\r