blob: a0015f23abd2ab68800c94f51fdea47c0448c64e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/** @file TestPointDmaProtectionLib.h
Library to provide VTD related implementation for TestPointCheckLib
Copyright (c) Microsoft Corporation.
**/
#ifndef _TEST_POINT_CHECK_DMA_PROTECTION_LIB_H_
#define _TEST_POINT_CHECK_DMA_PROTECTION_LIB_H_
/**
This service checks if VTD DMA protection is supported.
@retval EFI_SUCCESS DMA protection is supported.
@retval other DMA protection is nor supported.
**/
EFI_STATUS
EFIAPI
TestPointVtdEngine (
VOID
);
#endif
|