]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ppi/Reset.h
BaseTools/BinToPcd: Fix Python 2.7.x compatibility issue
[mirror_edk2.git] / MdePkg / Include / Ppi / Reset.h
CommitLineData
5879b875 1/** @file\r
d7132512 2 This file declares Reset PPI used to reset the platform.\r
9095d37b
LG
3\r
4 This PPI is installed by some platform- or chipset-specific PEIM that\r
d7132512 5 abstracts the Reset Service to other agents.\r
5879b875 6\r
9095d37b
LG
7 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
8 This program and the accompanying materials\r
9 are licensed and made available under the terms and conditions of the BSD License\r
10 which accompanies this distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
5879b875 12\r
9095d37b
LG
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
5879b875 15\r
5879b875 16 @par Revision Reference:\r
0047820e 17 This PPI is introduced in PI Version 1.0.\r
5879b875 18\r
19**/\r
20\r
21#ifndef __RESET_PPI_H__\r
22#define __RESET_PPI_H__\r
23\r
24#define EFI_PEI_RESET_PPI_GUID \\r
25 { \\r
26 0xef398d58, 0x9dfd, 0x4103, {0xbf, 0x94, 0x78, 0xc6, 0xf4, 0xfe, 0x71, 0x2f } \\r
27 }\r
28\r
13c38031 29//\r
30// EFI_PEI_RESET_PPI.ResetSystem() is equivalent to the\r
31// PEI Service ResetSystem().\r
9095d37b 32// It is introduced in PIPeiCis.h.\r
13c38031 33//\r
34\r
35///\r
9095d37b 36/// This PPI provides provide a simple reset service.\r
13c38031 37///\r
5879b875 38typedef struct {\r
39 EFI_PEI_RESET_SYSTEM ResetSystem;\r
40} EFI_PEI_RESET_PPI;\r
41\r
42extern EFI_GUID gEfiPeiResetPpiGuid;\r
43\r
44#endif\r