]>
Commit | Line | Data |
---|---|---|
25126a05 | 1 | /** @file\r |
2 | Internal include file for Report Status Code Router Driver.\r | |
3 | \r | |
4 | Copyright (c) 2009, Intel Corporation\r | |
5 | All rights reserved. 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 __REPORT_STATUS_CODE_ROUTER_RUNTIME_DXE_H__\r | |
16 | #define __REPORT_STATUS_CODE_ROUTER_RUNTIME_DXE_H__\r | |
17 | \r | |
18 | \r | |
19 | #include <Protocol/ReportStatusCodeHandler.h>\r | |
20 | #include <Protocol/StatusCode.h>\r | |
21 | \r | |
22 | #include <Guid/EventGroup.h>\r | |
23 | \r | |
24 | #include <Library/BaseLib.h>\r | |
25 | #include <Library/SynchronizationLib.h>\r | |
26 | #include <Library/DebugLib.h>\r | |
27 | #include <Library/PcdLib.h>\r | |
28 | #include <Library/HobLib.h>\r | |
29 | #include <Library/UefiDriverEntryPoint.h>\r | |
30 | #include <Library/UefiBootServicesTableLib.h>\r | |
31 | #include <Library/MemoryAllocationLib.h>\r | |
cfc2ba61 | 32 | #include <Library/BaseMemoryLib.h>\r |
25126a05 | 33 | #include <Library/UefiRuntimeLib.h>\r |
cfc2ba61 | 34 | #include "Library/UefiLib.h"\r |
25126a05 | 35 | \r |
36 | #define RSC_HANDLER_CALLBACK_ENTRY_SIGNATURE SIGNATURE_32 ('r', 'h', 'c', 'e')\r | |
37 | \r | |
38 | typedef struct {\r | |
39 | UINTN Signature;\r | |
40 | EFI_RSC_HANDLER_CALLBACK RscHandlerCallback;\r | |
41 | EFI_TPL Tpl;\r | |
cfc2ba61 | 42 | EFI_EVENT Event;\r |
43 | EFI_PHYSICAL_ADDRESS StatusCodeDataBuffer;\r | |
44 | UINTN BufferSize;\r | |
45 | EFI_PHYSICAL_ADDRESS EndPointer;\r | |
25126a05 | 46 | LIST_ENTRY Node;\r |
47 | } RSC_HANDLER_CALLBACK_ENTRY;\r | |
48 | \r | |
49 | typedef struct {\r | |
cfc2ba61 | 50 | EFI_STATUS_CODE_TYPE Type;\r |
51 | EFI_STATUS_CODE_VALUE Value;\r | |
52 | UINT32 Instance;\r | |
53 | UINT32 Reserved;\r | |
54 | EFI_GUID CallerId;\r | |
55 | EFI_STATUS_CODE_DATA Data;\r | |
56 | } RSC_DATA_ENTRY;\r | |
25126a05 | 57 | \r |
58 | /**\r | |
59 | Register the callback function for ReportStatusCode() notification.\r | |
60 | \r | |
61 | When this function is called the function pointer is added to an internal list and any future calls to\r | |
62 | ReportStatusCode() will be forwarded to the Callback function. During the bootservices,\r | |
63 | this is the callback for which this service can be invoked. The report status code router\r | |
64 | will create an event such that the callback function is only invoked at the TPL for which it was\r | |
65 | registered. The entity that registers for the callback should also register for an event upon\r | |
66 | generation of exit boot services and invoke the unregister service.\r | |
67 | If the handler does not have a TPL dependency, it should register for a callback at TPL high. The\r | |
68 | router infrastructure will support making callbacks at runtime, but the caller for runtime invocation\r | |
69 | must meet the following criteria:\r | |
70 | 1. must be a runtime driver type so that its memory is not reclaimed\r | |
71 | 2. not unregister at exit boot services so that the router will still have its callback address\r | |
72 | 3. the caller must be self-contained (eg. Not call out into any boot-service interfaces) and be\r | |
73 | runtime safe, in general.\r | |
74 | \r | |
75 | @param[in] Callback A pointer to a function of type EFI_RSC_HANDLER_CALLBACK that is called when\r | |
76 | a call to ReportStatusCode() occurs.\r | |
77 | @param[in] Tpl TPL at which callback can be safely invoked. \r | |
78 | \r | |
79 | @retval EFI_SUCCESS Function was successfully registered.\r | |
80 | @retval EFI_INVALID_PARAMETER The callback function was NULL.\r | |
81 | @retval EFI_OUT_OF_RESOURCES The internal buffer ran out of space. No more functions can be\r | |
82 | registered.\r | |
83 | @retval EFI_ALREADY_STARTED The function was already registered. It can't be registered again.\r | |
84 | \r | |
85 | **/\r | |
86 | EFI_STATUS\r | |
87 | EFIAPI\r | |
88 | Register (\r | |
89 | IN EFI_RSC_HANDLER_CALLBACK Callback,\r | |
90 | IN EFI_TPL Tpl\r | |
91 | );\r | |
92 | \r | |
93 | /**\r | |
94 | Remove a previously registered callback function from the notification list.\r | |
95 | \r | |
96 | A callback function must be unregistered before it is deallocated. It is important that any registered\r | |
97 | callbacks that are not runtime complaint be unregistered when ExitBootServices() is called.\r | |
98 | \r | |
99 | @param[in] Callback A pointer to a function of type EFI_RSC_HANDLER_CALLBACK that is to be\r | |
100 | unregistered.\r | |
101 | \r | |
102 | @retval EFI_SUCCESS The function was successfully unregistered.\r | |
103 | @retval EFI_INVALID_PARAMETER The callback function was NULL.\r | |
104 | @retval EFI_NOT_FOUND The callback function was not found to be unregistered.\r | |
105 | \r | |
106 | **/\r | |
107 | EFI_STATUS\r | |
108 | EFIAPI\r | |
109 | Unregister (\r | |
110 | IN EFI_RSC_HANDLER_CALLBACK Callback\r | |
111 | );\r | |
112 | \r | |
113 | /**\r | |
114 | Provides an interface that a software module can call to report a status code.\r | |
115 | \r | |
116 | @param Type Indicates the type of status code being reported.\r | |
117 | @param Value Describes the current status of a hardware or software entity.\r | |
118 | This included information about the class and subclass that is used to\r | |
119 | classify the entity as well as an operation.\r | |
120 | @param Instance The enumeration of a hardware or software entity within\r | |
121 | the system. Valid instance numbers start with 1.\r | |
122 | @param CallerId This optional parameter may be used to identify the caller.\r | |
123 | This parameter allows the status code driver to apply different rules to\r | |
124 | different callers.\r | |
125 | @param Data This optional parameter may be used to pass additional data.\r | |
126 | \r | |
127 | @retval EFI_SUCCESS The function completed successfully\r | |
128 | @retval EFI_DEVICE_ERROR The function should not be completed due to a device error.\r | |
129 | \r | |
130 | **/\r | |
131 | EFI_STATUS\r | |
132 | EFIAPI\r | |
133 | ReportDispatcher (\r | |
134 | IN EFI_STATUS_CODE_TYPE Type,\r | |
135 | IN EFI_STATUS_CODE_VALUE Value,\r | |
136 | IN UINT32 Instance,\r | |
137 | IN EFI_GUID *CallerId OPTIONAL,\r | |
138 | IN EFI_STATUS_CODE_DATA *Data OPTIONAL\r | |
139 | );\r | |
140 | \r | |
141 | #endif\r | |
142 | \r | |
143 | \r |