]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ppi/Reset.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[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 7 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9344f092 8 SPDX-License-Identifier: BSD-2-Clause-Patent\r
5879b875 9\r
5879b875 10 @par Revision Reference:\r
0047820e 11 This PPI is introduced in PI Version 1.0.\r
5879b875 12\r
13**/\r
14\r
15#ifndef __RESET_PPI_H__\r
16#define __RESET_PPI_H__\r
17\r
18#define EFI_PEI_RESET_PPI_GUID \\r
19 { \\r
20 0xef398d58, 0x9dfd, 0x4103, {0xbf, 0x94, 0x78, 0xc6, 0xf4, 0xfe, 0x71, 0x2f } \\r
21 }\r
22\r
13c38031 23//\r
24// EFI_PEI_RESET_PPI.ResetSystem() is equivalent to the\r
25// PEI Service ResetSystem().\r
9095d37b 26// It is introduced in PIPeiCis.h.\r
13c38031 27//\r
28\r
29///\r
9095d37b 30/// This PPI provides provide a simple reset service.\r
13c38031 31///\r
5879b875 32typedef struct {\r
2f88bd3a 33 EFI_PEI_RESET_SYSTEM ResetSystem;\r
5879b875 34} EFI_PEI_RESET_PPI;\r
35\r
2f88bd3a 36extern EFI_GUID gEfiPeiResetPpiGuid;\r
5879b875 37\r
38#endif\r