blob: b532dd13f373fbd7271d98901542024193d43ed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/** @file
This is to publish the SMM Control Ppi instance.
Copyright (c) 2019 - 2020, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef _SMM_CONTROL_LIB_H_
#define _SMM_CONTROL_LIB_H_
/**
This function is to install an SMM Control PPI
- <b>Introduction</b> \n
An API to install an instance of EFI_PEI_MM_CONTROL_PPI. This PPI provides a standard
way for other modules to trigger software SMIs.
@retval EFI_SUCCESS - Ppi successfully started and installed.
@retval EFI_NOT_FOUND - Ppi can't be found.
@retval EFI_OUT_OF_RESOURCES - Ppi does not have enough resources to initialize the driver.
**/
EFI_STATUS
EFIAPI
PeiInstallSmmControlPpi (
VOID
);
#endif
|