]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Ppi/Reset.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Include / Ppi / Reset.h
1 /** @file
2 This file declares Reset PPI used to reset the platform.
3
4 This PPI is installed by some platform- or chipset-specific PEIM that
5 abstracts the Reset Service to other agents.
6
7 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9
10 @par Revision Reference:
11 This PPI is introduced in PI Version 1.0.
12
13 **/
14
15 #ifndef __RESET_PPI_H__
16 #define __RESET_PPI_H__
17
18 #define EFI_PEI_RESET_PPI_GUID \
19 { \
20 0xef398d58, 0x9dfd, 0x4103, {0xbf, 0x94, 0x78, 0xc6, 0xf4, 0xfe, 0x71, 0x2f } \
21 }
22
23 //
24 // EFI_PEI_RESET_PPI.ResetSystem() is equivalent to the
25 // PEI Service ResetSystem().
26 // It is introduced in PIPeiCis.h.
27 //
28
29 ///
30 /// This PPI provides provide a simple reset service.
31 ///
32 typedef struct {
33 EFI_PEI_RESET_SYSTEM ResetSystem;
34 } EFI_PEI_RESET_PPI;
35
36 extern EFI_GUID gEfiPeiResetPpiGuid;
37
38 #endif