1 | /** @file
|
---|
2 | MM Ready To Lock protocol introduced in the PI 1.5 specification.
|
---|
3 |
|
---|
4 | This protocol is a mandatory protocol published by the MM Foundation
|
---|
5 | code when the system is preparing to lock certain resources and interfaces
|
---|
6 | in anticipation of the invocation of 3rd party extensible modules.
|
---|
7 | This protocol is an MM counterpart of the DXE MM Ready to Lock Protocol.
|
---|
8 | This protocol prorogates resource locking notification into MM environment.
|
---|
9 | This protocol is installed after installation of the MM End of DXE Protocol.
|
---|
10 |
|
---|
11 | Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
|
---|
12 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
13 |
|
---|
14 | **/
|
---|
15 |
|
---|
16 | #ifndef _MM_READY_TO_LOCK_H_
|
---|
17 | #define _MM_READY_TO_LOCK_H_
|
---|
18 |
|
---|
19 | #define EFI_MM_READY_TO_LOCK_PROTOCOL_GUID \
|
---|
20 | { \
|
---|
21 | 0x47b7fa8c, 0xf4bd, 0x4af6, { 0x82, 0x00, 0x33, 0x30, 0x86, 0xf0, 0xd2, 0xc8 } \
|
---|
22 | }
|
---|
23 |
|
---|
24 | extern EFI_GUID gEfiMmReadyToLockProtocolGuid;
|
---|
25 |
|
---|
26 | #endif
|
---|