]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - IntelFrameworkPkg/Include/Protocol/DataHub.h
specify the spec revision number followed by protocol
[mirror_edk2.git] / IntelFrameworkPkg / Include / Protocol / DataHub.h
... / ...
CommitLineData
1/** @file\r
2 The data hub protocol is used both by agents wishing to log\r
3 data and those wishing to be made aware of all information that\r
4 has been logged.\r
5\r
6 Copyright (c) 2007 - 2009, Intel Corporation\r
7 All rights reserved. This program and the accompanying materials\r
8 are licensed and made available under the terms and conditions of the BSD License\r
9 which accompanies this distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
11\r
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15 @par Revision Reference:\r
16 The Data Hub Protocol is defined in Framework for EFI Data Hub Specification\r
17 Version 0.9.\r
18\r
19**/\r
20\r
21#ifndef __DATA_HUB_H__\r
22#define __DATA_HUB_H__\r
23\r
24#define EFI_DATA_HUB_PROTOCOL_GUID \\r
25 { \\r
26 0xae80d021, 0x618e, 0x11d4, {0xbc, 0xd7, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \\r
27 }\r
28\r
29//\r
30// EFI generic Data Hub Header\r
31//\r
32// A Data Record is an EFI_DATA_RECORD_HEADER followed by RecordSize bytes of\r
33// data. The format of the data is defined by the DataRecordGuid.\r
34//\r
35// If EFI_DATA_RECORD_HEADER is extended in the future, the Version number and HeaderSize must\r
36// change. \r
37//\r
38// The logger is responcible for initializing:\r
39// Version, HeaderSize, RecordSize, DataRecordGuid, DataRecordClass\r
40//\r
41// The Data Hub driver is responcible for initializing:\r
42// LogTime and LogMonotonicCount.\r
43//\r
44#define EFI_DATA_RECORD_HEADER_VERSION 0x0100\r
45typedef struct {\r
46 UINT16 Version;\r
47 UINT16 HeaderSize;\r
48 UINT32 RecordSize;\r
49 EFI_GUID DataRecordGuid;\r
50 EFI_GUID ProducerName;\r
51 UINT64 DataRecordClass;\r
52 EFI_TIME LogTime;\r
53 UINT64 LogMonotonicCount;\r
54} EFI_DATA_RECORD_HEADER;\r
55\r
56//\r
57// Definition of DataRecordClass. These are used to filter out class types\r
58// at a very high level. The DataRecordGuid still defines the format of\r
59// the data. See the Data Hub Specification for rules on what can and can not be a\r
60// new DataRecordClass\r
61//\r
62#define EFI_DATA_RECORD_CLASS_DEBUG 0x0000000000000001\r
63#define EFI_DATA_RECORD_CLASS_ERROR 0x0000000000000002\r
64#define EFI_DATA_RECORD_CLASS_DATA 0x0000000000000004\r
65#define EFI_DATA_RECORD_CLASS_PROGRESS_CODE 0x0000000000000008\r
66\r
67//\r
68// Forward reference for pure ANSI compatability\r
69//\r
70typedef struct _EFI_DATA_HUB_PROTOCOL EFI_DATA_HUB_PROTOCOL;\r
71\r
72/**\r
73 Logs a data record to the system event log.\r
74\r
75 @param This The EFI_DATA_HUB_PROTOCOL instance.\r
76 @param DataRecordGuid A GUID that indicates the format of the data passed into RawData.\r
77 @param ProducerName A GUID that indicates the identity of the caller to this API.\r
78 @param DataRecordClass This class indicates the generic type of the data record.\r
79 @param RawData The DataRecordGuid-defined data to be logged.\r
80 @param RawDataSize The size in bytes of RawData.\r
81\r
82 @retval EFI_SUCCESS Data was logged.\r
83 @retval EFI_OUT_OF_RESOURCES Data was not logged due to lack of system resources.\r
84\r
85**/\r
86typedef\r
87EFI_STATUS\r
88(EFIAPI *EFI_DATA_HUB_LOG_DATA)(\r
89 IN EFI_DATA_HUB_PROTOCOL *This,\r
90 IN EFI_GUID *DataRecordGuid,\r
91 IN EFI_GUID *ProducerName,\r
92 IN UINT64 DataRecordClass,\r
93 IN VOID *RawData,\r
94 IN UINT32 RawDataSize\r
95 );\r
96\r
97/**\r
98 Allows the system data log to be searched.\r
99\r
100 @param This The EFI_DATA_HUB_PROTOCOL instance.\r
101 @param MonotonicCount On input, it specifies the Record to return.\r
102 An input of zero means to return the first record, as does an input of one.\r
103 @param FilterDriver If FilterDriver is not passed in a MonotonicCount of zero,\r
104 it means to return the first data record. If FilterDriver is passed in,\r
105 then a MonotonicCount of zero means to return the first data not yet read\r
106 by FilterDriver.\r
107 @param Record Returns a dynamically allocated memory buffer with a data\r
108 record that matches MonotonicCount.\r
109\r
110 @retval EFI_SUCCESS Data was returned in Record.\r
111 @retval EFI_INVALID_PARAMETER FilterDriver was passed in but does not exist.\r
112 @retval EFI_NOT_FOUND MonotonicCount does not match any data record\r
113 in the system. If a MonotonicCount of zero was passed in, then no\r
114 data records exist in the system.\r
115 @retval EFI_OUT_OF_RESOURCES Record was not returned due to lack\r
116 of system resources.\r
117 @note: Inconsistent with specification here: \r
118 In Framework for EFI Data Hub Specification, Version 0.9, This definition is named as\r
119 EFI_DATA_HUB_GET_NEXT_DATA_RECORD. The inconsistency is maintained for backward compatibility. \r
120**/\r
121typedef\r
122EFI_STATUS\r
123(EFIAPI *EFI_DATA_HUB_GET_NEXT_RECORD)(\r
124 IN EFI_DATA_HUB_PROTOCOL *This,\r
125 IN OUT UINT64 *MonotonicCount,\r
126 IN EFI_EVENT *FilterDriver OPTIONAL,\r
127 OUT EFI_DATA_RECORD_HEADER **Record\r
128 );\r
129\r
130/**\r
131 Registers an event to be signaled every time a data record is logged in the system.\r
132\r
133 @param This The EFI_DATA_HUB_PROTOCOL instance.\r
134 @param FilterEvent The EFI_EVENT to signal whenever data that matches\r
135 FilterClass is logged in the system.\r
136 @param FilterTpl The maximum EFI_TPL at which FilterEvent can be signaled.\r
137 It is strongly recommended that you use the lowest EFI_TPL possible.\r
138 @param FilterClass FilterEvent will be signaled whenever a bit\r
139 in EFI_DATA_RECORD_HEADER.DataRecordClass is also set in FilterClass.\r
140 If FilterClass is zero, no class-based filtering will be performed.\r
141 @param FilterDataRecordGuid FilterEvent will be signaled whenever\r
142 FilterDataRecordGuid matches EFI_DATA_RECORD_HEADER.DataRecordGuid.\r
143 If FilterDataRecordGuid is NULL, then no GUID-based filtering will be performed.\r
144\r
145 @retval EFI_SUCCESS The filter driver event was registered\r
146 @retval EFI_ALREADY_STARTED FilterEvent was previously registered and cannot be registered again.\r
147 @retval EFI_OUT_OF_RESOURCES The filter driver event was not registered\r
148 due to lack of system resources.\r
149 @note: Inconsistent with specification here: \r
150 In Framework for EFI Data Hub Specification, Version 0.9, This definition is named as\r
151 EFI_DATA_HUB_REGISTER_DATA_FILTER_DRIVER. The inconsistency is maintained for backward compatibility. \r
152**/\r
153typedef\r
154EFI_STATUS\r
155(EFIAPI *EFI_DATA_HUB_REGISTER_FILTER_DRIVER)(\r
156 IN EFI_DATA_HUB_PROTOCOL *This,\r
157 IN EFI_EVENT FilterEvent,\r
158 IN EFI_TPL FilterTpl,\r
159 IN UINT64 FilterClass,\r
160 IN EFI_GUID *FilterDataRecordGuid OPTIONAL\r
161 );\r
162\r
163/**\r
164 Stops a filter driver from being notified when data records are logged.\r
165\r
166 @param This The EFI_DATA_HUB_PROTOCOL instance.\r
167 @param FilterEvent The EFI_EVENT to remove from the list of events to be\r
168 signaled every time errors are logged.\r
169\r
170 @retval EFI_SUCCESS The filter driver represented by FilterEvent was shut off.\r
171 @retval EFI_NOT_FOUND FilterEvent did not exist.\r
172 @note: Inconsistent with specification here: \r
173 In Framework for EFI Data Hub Specification, Version 0.9, This definition is named as\r
174 EFI_DATA_HUB_UNREGISTER_DATA_FILTER_DRIVER. The inconsistency is maintained for backward compatibility. \r
175**/\r
176typedef\r
177EFI_STATUS\r
178(EFIAPI *EFI_DATA_HUB_UNREGISTER_FILTER_DRIVER)(\r
179 IN EFI_DATA_HUB_PROTOCOL *This,\r
180 IN EFI_EVENT FilterEvent\r
181 );\r
182\r
183/**\r
184 This protocol is used to log information and register filter drivers\r
185 to receive data records.\r
186**/\r
187struct _EFI_DATA_HUB_PROTOCOL {\r
188 ///\r
189 /// Logs a data record.\r
190 ///\r
191 EFI_DATA_HUB_LOG_DATA LogData; \r
192 \r
193 ///\r
194 /// Gets a data record. Used both to view the memory-based log and to\r
195 /// get information about which data records have been consumed by a filter driver.\r
196 ///\r
197 EFI_DATA_HUB_GET_NEXT_RECORD GetNextRecord;\r
198 \r
199 ///\r
200 /// Allows the registration of an EFI event to act as a filter driver for all data records that are logged.\r
201 ///\r
202 EFI_DATA_HUB_REGISTER_FILTER_DRIVER RegisterFilterDriver;\r
203 \r
204 ///\r
205 /// Used to remove a filter driver that was added with RegisterFilterDriver().\r
206 ///\r
207 EFI_DATA_HUB_UNREGISTER_FILTER_DRIVER UnregisterFilterDriver;\r
208};\r
209\r
210extern EFI_GUID gEfiDataHubProtocolGuid;\r
211\r
212#endif\r