]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Ppi/Reset2.h
8441c2adb52511678c2b9ba89f678a70f0d7be83
[mirror_edk2.git] / MdePkg / Include / Ppi / Reset2.h
1 /** @file
2 This file declares Reset2 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) 2015, Intel Corporation. All rights reserved.<BR>
8 This program and the accompanying materials
9 are licensed and made available under the terms and conditions of the BSD License
10 which accompanies this distribution. The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 @par Revision Reference:
17 This PPI is introduced in PI Version 1.4.
18
19 **/
20
21 #ifndef __RESET2_PPI_H__
22 #define __RESET2_PPI_H__
23
24 #define EFI_PEI_RESET2_PPI_GUID \
25 { \
26 0x6cc45765, 0xcce4, 0x42fd, {0xbc, 0x56, 0x1, 0x1a, 0xaa, 0xc6, 0xc9, 0xa8 } \
27 }
28
29 ///
30 /// This PPI provides provide a simple reset service.
31 ///
32 typedef struct _EFI_PEI_RESET2_PPI {
33 EFI_PEI_RESET2_SYSTEM ResetSystem;
34 } EFI_PEI_RESET2_PPI;
35
36 extern EFI_GUID gEfiPeiReset2PpiGuid;
37
38 #endif