blob: bbd5ceee07664fd6006c79af778f0fa9cb2be76d [file] [log] [blame]
yshang15879b872007-06-13 11:11:23 +00001/** @file
lgao4d7132512008-07-16 10:44:37 +00002 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.
yshang15879b872007-06-13 11:11:23 +00006
hhtian9df063a2010-04-23 15:46:20 +00007 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
8 This program and the accompanying materials
yshang15879b872007-06-13 11:11:23 +00009 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
yshang15879b872007-06-13 11:11:23 +000016 @par Revision Reference:
xli2400478202008-10-28 13:04:40 +000017 This PPI is introduced in PI Version 1.0.
yshang15879b872007-06-13 11:11:23 +000018
19**/
20
21#ifndef __RESET_PPI_H__
22#define __RESET_PPI_H__
23
24#define EFI_PEI_RESET_PPI_GUID \
25 { \
26 0xef398d58, 0x9dfd, 0x4103, {0xbf, 0x94, 0x78, 0xc6, 0xf4, 0xfe, 0x71, 0x2f } \
27 }
28
xli2413c38032008-09-23 07:55:57 +000029//
30// EFI_PEI_RESET_PPI.ResetSystem() is equivalent to the
31// PEI Service ResetSystem().
xli2400478202008-10-28 13:04:40 +000032// It is introduced in PIPeiCis.h.
xli2413c38032008-09-23 07:55:57 +000033//
lgao4d7132512008-07-16 10:44:37 +000034
xli2413c38032008-09-23 07:55:57 +000035///
36/// This PPI provides provide a simple reset service.
37///
yshang15879b872007-06-13 11:11:23 +000038typedef struct {
yshang15879b872007-06-13 11:11:23 +000039 EFI_PEI_RESET_SYSTEM ResetSystem;
40} EFI_PEI_RESET_PPI;
41
42extern EFI_GUID gEfiPeiResetPpiGuid;
43
44#endif