1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /** @file
| Header file for the PeiCheckIommuSupport library.
|
|
| Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
|
| #ifndef _PEI_CHECK_IOMMU_SUPPORT_LIBRARY_H_
| #define _PEI_CHECK_IOMMU_SUPPORT_LIBRARY_H_
|
| /**
| Check Iommu Ability base on SKU type, CSME FW type, Vtd and setup options.
| **/
| VOID
| PeiCheckIommuSupport (
| VOID
| );
|
| #endif // _PEI_CHECK_IOMMU_SUPPORT_LIBRARY_H_
|
|
|