]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/StatusCodeHandler/Smm/StatusCodeHandlerSmm.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Universal / StatusCodeHandler / Smm / StatusCodeHandlerSmm.h
1 /** @file
2 Internal include file for Status Code Handler Driver.
3
4 Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
5 (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef __STATUS_CODE_HANDLER_SMM_H__
11 #define __STATUS_CODE_HANDLER_SMM_H__
12
13 #include <Protocol/SmmReportStatusCodeHandler.h>
14
15 #include <Guid/MemoryStatusCodeRecord.h>
16 #include <Guid/StatusCodeDataTypeId.h>
17 #include <Guid/StatusCodeDataTypeDebug.h>
18
19 #include <Library/SynchronizationLib.h>
20 #include <Library/DebugLib.h>
21 #include <Library/ReportStatusCodeLib.h>
22 #include <Library/PrintLib.h>
23 #include <Library/PcdLib.h>
24 #include <Library/UefiDriverEntryPoint.h>
25 #include <Library/SmmServicesTableLib.h>
26 #include <Library/SerialPortLib.h>
27 #include <Library/MemoryAllocationLib.h>
28 #include <Library/BaseMemoryLib.h>
29
30 //
31 // Define the maximum message length
32 //
33 #define MAX_DEBUG_MESSAGE_LENGTH 0x100
34
35 extern RUNTIME_MEMORY_STATUSCODE_HEADER *mSmmMemoryStatusCodeTable;
36
37 /**
38 Locates Serial I/O Protocol as initialization for serial status code worker.
39
40 @retval EFI_SUCCESS Serial I/O Protocol is successfully located.
41
42 **/
43 EFI_STATUS
44 EfiSerialStatusCodeInitializeWorker (
45 VOID
46 );
47
48
49 /**
50 Convert status code value and extended data to readable ASCII string, send string to serial I/O device.
51
52 @param CodeType Indicates the type of status code being reported.
53 @param Value Describes the current status of a hardware or software entity.
54 This included information about the class and subclass that is used to
55 classify the entity as well as an operation.
56 @param Instance The enumeration of a hardware or software entity within
57 the system. Valid instance numbers start with 1.
58 @param CallerId This optional parameter may be used to identify the caller.
59 This parameter allows the status code driver to apply different rules to
60 different callers.
61 @param Data This optional parameter may be used to pass additional data.
62
63 @retval EFI_SUCCESS Status code reported to serial I/O successfully.
64 @retval EFI_DEVICE_ERROR EFI serial device cannot work after ExitBootService() is called.
65 @retval EFI_DEVICE_ERROR EFI serial device cannot work with TPL higher than TPL_CALLBACK.
66
67 **/
68 EFI_STATUS
69 EFIAPI
70 SerialStatusCodeReportWorker (
71 IN EFI_STATUS_CODE_TYPE CodeType,
72 IN EFI_STATUS_CODE_VALUE Value,
73 IN UINT32 Instance,
74 IN EFI_GUID *CallerId,
75 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
76 );
77
78 /**
79 Initialize runtime memory status code table as initialization for runtime memory status code worker
80
81 @retval EFI_SUCCESS Runtime memory status code table successfully initialized.
82
83 **/
84 EFI_STATUS
85 MemoryStatusCodeInitializeWorker (
86 VOID
87 );
88
89 /**
90 Report status code into runtime memory. If the runtime pool is full, roll back to the
91 first record and overwrite it.
92
93 @param CodeType Indicates the type of status code being reported.
94 @param Value Describes the current status of a hardware or software entity.
95 This included information about the class and subclass that is used to
96 classify the entity as well as an operation.
97 @param Instance The enumeration of a hardware or software entity within
98 the system. Valid instance numbers start with 1.
99 @param CallerId This optional parameter may be used to identify the caller.
100 This parameter allows the status code driver to apply different rules to
101 different callers.
102 @param Data This optional parameter may be used to pass additional data.
103
104 @retval EFI_SUCCESS Status code successfully recorded in runtime memory status code table.
105
106 **/
107 EFI_STATUS
108 EFIAPI
109 MemoryStatusCodeReportWorker (
110 IN EFI_STATUS_CODE_TYPE CodeType,
111 IN EFI_STATUS_CODE_VALUE Value,
112 IN UINT32 Instance,
113 IN EFI_GUID *CallerId,
114 IN EFI_STATUS_CODE_DATA *Data OPTIONAL
115 );
116
117 #endif