File tree 1 file changed +19
-1
lines changed
OvmfPkg/Library/SmmCpuPlatformHookLibQemu
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 2
2
SMM CPU Platform Hook library instance for QEMU.
3
3
4
4
Copyright (c) 2020, Red Hat, Inc.
5
- Copyright (c) 2006 - 2015 , Intel Corporation. All rights reserved.<BR>
5
+ Copyright (c) 2006 - 2024 , Intel Corporation. All rights reserved.<BR>
6
6
SPDX-License-Identifier: BSD-2-Clause-Patent
7
7
8
8
**/
@@ -113,3 +113,21 @@ GetPlatformPageTableAttribute (
113
113
{
114
114
return EFI_UNSUPPORTED ;
115
115
}
116
+
117
+ /**
118
+ SMM CPU Platform Hook before executing MMI Handler.
119
+
120
+ This function can be used to perform the platform specific items before executing MMI Handler.
121
+
122
+ @retval EFI_SUCCESS The smm cpu platform hook before executing MMI Handler is executed successfully.
123
+ @retval EFI_UNSUPPORTED The smm cpu platform hook before executing MMI Handler is unsupported.
124
+
125
+ **/
126
+ EFI_STATUS
127
+ EFIAPI
128
+ SmmCpuPlatformHookBeforeMmiHandler (
129
+ VOID
130
+ )
131
+ {
132
+ return EFI_UNSUPPORTED ;
133
+ }
You can’t perform that action at this time.
0 commit comments