]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Ppi/PlatformSpecificResetHandler.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Include / Ppi / PlatformSpecificResetHandler.h
1 /** @file
2 This PPI provides services to register a platform specific handler for
3 ResetSystem(). The registered handlers are processed after
4 EDKII_PLATFORM_SPECIFIC_RESET_NOTIFICATION_PPI notifications.
5
6 Copyright (c) 2017 - 2018 Intel Corporation. All rights reserved.<BR>
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11 #ifndef _PLATFORM_SPECIFIC_RESET_HANDLER_PPI_H_
12 #define _PLATFORM_SPECIFIC_RESET_HANDLER_PPI_H_
13
14 #include <Protocol/ResetNotification.h>
15
16 #define EDKII_PLATFORM_SPECIFIC_RESET_HANDLER_PPI_GUID \
17 { 0x75cf14ae, 0x3441, 0x49dc, { 0xaa, 0x10, 0xbb, 0x35, 0xa7, 0xba, 0x8b, 0xab } }
18
19 typedef EFI_RESET_NOTIFICATION_PROTOCOL EDKII_PLATFORM_SPECIFIC_RESET_HANDLER_PPI;
20
21 extern EFI_GUID gEdkiiPlatformSpecificResetHandlerPpiGuid;
22
23 #endif