blob: b447d585a7a525c191e70688b1a62dc6c5c65cf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* This driver checks if the PTT Bit is set correctly within the FWSTS4
* register. This is needed in order to use the iTPM, because we have to
* check prior using the interface that this bit is set correctly - otherwise
* it could work unpredictable. The bit should already be set if the Intel ME
* is still in the preboot phase.
*
*/
/*
* ptt_active
*
* Checks if the Intel PTT is active. If PTT is active, returns true,
* false otherwise.
*/
bool ptt_active(void);
|