]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Protocol/PlatformSpecificResetHandler.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdeModulePkg / Include / Protocol / PlatformSpecificResetHandler.h
1 /** @file
2 This protocol provides services to register a platform specific handler for
3 ResetSystem(). The registered handlers are called after the UEFI 2.7 Reset
4 Notifications are processed
5
6 Copyright (c) 2017 Intel Corporation. All rights reserved.<BR>
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11 #ifndef _PLATFORM_SPECIFIC_RESET_HANDLER_PROTOCOL_H_
12 #define _PLATFORM_SPECIFIC_RESET_HANDLER_PROTOCOL_H_
13
14 #include <Protocol/ResetNotification.h>
15
16 #define EDKII_PLATFORM_SPECIFIC_RESET_HANDLER_PROTOCOL_GUID \
17 { 0x2df6ba0b, 0x7092, 0x440d, { 0xbd, 0x4, 0xfb, 0x9, 0x1e, 0xc3, 0xf3, 0xc1 } }
18
19 typedef EFI_RESET_NOTIFICATION_PROTOCOL EDKII_PLATFORM_SPECIFIC_RESET_HANDLER_PROTOCOL;
20
21 extern EFI_GUID gEdkiiPlatformSpecificResetHandlerProtocolGuid;
22
23 #endif