blob: 9f1ec1d83325743254c8bfc12b062433bbd912c5 [file] [log] [blame]
Ronak Kanabar1ae366f2023-06-07 01:21:56 +05301/** @file
2 Reset Architectural Protocol as defined in PI Specification VOLUME 2 DXE
3
4 Used to provide ResetSystem runtime services
5
6 The ResetSystem () UEFI 2.0 service is added to the EFI system table and the
7 EFI_RESET_ARCH_PROTOCOL_GUID protocol is registered with a NULL pointer.
8
9 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
10 SPDX-License-Identifier: BSD-2-Clause-Patent
11
12**/
13
14#ifndef __ARCH_PROTOCOL_RESET_H__
15#define __ARCH_PROTOCOL_RESET_H__
16
17///
18/// Global ID for the Reset Architectural Protocol
19///
20#define EFI_RESET_ARCH_PROTOCOL_GUID \
21 { 0x27CFAC88, 0x46CC, 0x11d4, {0x9A, 0x38, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } }
22
23extern EFI_GUID gEfiResetArchProtocolGuid;
24
25#endif