]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystem.h
MdeModulePkg/ResetSystemRuntimeDxe: Add platform filter and handler
[mirror_edk2.git] / MdeModulePkg / Universal / ResetSystemRuntimeDxe / ResetSystem.h
CommitLineData
51a0c5f2 1/** @file\r
2\r
cf6da556 3 Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>\r
51a0c5f2 4\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#ifndef _RESET_SYSTEM_H_\r
16#define _RESET_SYSTEM_H_\r
17\r
18\r
19#include <PiDxe.h>\r
20\r
21#include <Protocol/Reset.h>\r
cf6da556 22#include <Protocol/ResetNotification.h>\r
99a6529e
MK
23#include <Protocol/PlatformSpecificResetFilter.h>\r
24#include <Protocol/PlatformSpecificResetHandler.h>\r
51a0c5f2 25#include <Guid/CapsuleVendor.h>\r
26\r
27#include <Library/BaseLib.h>\r
28#include <Library/DebugLib.h>\r
29#include <Library/UefiLib.h>\r
30#include <Library/IoLib.h>\r
31#include <Library/UefiDriverEntryPoint.h>\r
32#include <Library/UefiBootServicesTableLib.h>\r
33#include <Library/UefiRuntimeLib.h>\r
34#include <Library/UefiRuntimeServicesTableLib.h>\r
35#include <Library/ResetSystemLib.h>\r
37623a5c 36#include <Library/ReportStatusCodeLib.h>\r
cf6da556
RN
37#include <Library/MemoryAllocationLib.h>\r
38\r
99a6529e
MK
39//\r
40// The maximum recurstion depth to ResetSystem() by reset notification handlers\r
41//\r
42#define MAX_RESET_NOTIFY_DEPTH 10\r
43\r
cf6da556
RN
44typedef struct {\r
45 UINT32 Signature;\r
46 LIST_ENTRY Link;\r
47 EFI_RESET_SYSTEM ResetNotify;\r
48} RESET_NOTIFY_ENTRY;\r
49#define RESET_NOTIFY_ENTRY_SIGNATURE SIGNATURE_32('r', 's', 't', 'n')\r
50#define RESET_NOTIFY_ENTRY_FROM_LINK(a) CR (a, RESET_NOTIFY_ENTRY, Link, RESET_NOTIFY_ENTRY_SIGNATURE)\r
51\r
52typedef struct {\r
53 UINT32 Signature;\r
54 EFI_RESET_NOTIFICATION_PROTOCOL ResetNotification;\r
55 LIST_ENTRY ResetNotifies;\r
56} RESET_NOTIFICATION_INSTANCE;\r
57#define RESET_NOTIFICATION_INSTANCE_SIGNATURE SIGNATURE_32('r', 's', 't', 'i')\r
58#define RESET_NOTIFICATION_INSTANCE_FROM_THIS(a) \\r
59 CR (a, RESET_NOTIFICATION_INSTANCE, ResetNotification, RESET_NOTIFICATION_INSTANCE_SIGNATURE)\r
51a0c5f2 60\r
61/**\r
62 The driver's entry point.\r
63\r
64 It initializes the Reset Architectural Protocol.\r
65\r
66 @param[in] ImageHandle The firmware allocated handle for the EFI image. \r
67 @param[in] SystemTable A pointer to the EFI System Table.\r
68 \r
69 @retval EFI_SUCCESS The entry point is executed successfully.\r
70 @retval other Cannot install ResetArch protocol.\r
71\r
72**/\r
73EFI_STATUS\r
74EFIAPI\r
75InitializeResetSystem (\r
76 IN EFI_HANDLE ImageHandle,\r
77 IN EFI_SYSTEM_TABLE *SystemTable\r
78 );\r
79\r
80/**\r
81 Resets the entire platform.\r
82\r
83 @param[in] ResetType The type of reset to perform.\r
84 @param[in] ResetStatus The status code for the reset.\r
eeeabe40 85 @param[in] DataSize The size, in bytes, of ResetData.\r
51a0c5f2 86 @param[in] ResetData For a ResetType of EfiResetCold, EfiResetWarm, or\r
87 EfiResetShutdown the data buffer starts with a Null-terminated\r
88 string, optionally followed by additional binary data.\r
eeeabe40
SZ
89 The string is a description that the caller may use to further\r
90 indicate the reason for the system reset. ResetData is only\r
91 valid if ResetStatus is something other than EFI_SUCCESS\r
92 unless the ResetType is EfiResetPlatformSpecific\r
93 where a minimum amount of ResetData is always required.\r
94 For a ResetType of EfiResetPlatformSpecific the data buffer\r
95 also starts with a Null-terminated string that is followed\r
96 by an EFI_GUID that describes the specific type of reset to perform.\r
51a0c5f2 97\r
98**/\r
99VOID\r
100EFIAPI\r
101ResetSystem (\r
102 IN EFI_RESET_TYPE ResetType,\r
103 IN EFI_STATUS ResetStatus,\r
104 IN UINTN DataSize,\r
105 IN VOID *ResetData OPTIONAL\r
106 );\r
107\r
51a0c5f2 108#endif\r