blob: d7aa4b328f3d8e78f16599c07572287524bf84aa [file] [log] [blame]
Vadim Bendeburybbd79002015-05-31 14:44:07 -07001/*
2 * Copyright 2015 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef __TPM2_PP_FP_H
8#define __TPM2_PP_FP_H
9
10TPMI_YES_NO PhysicalPresenceCapGetCCList(
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPM_CC commandCode, // IN: start command code
12 UINT32 count, // IN: count of returned TPM_CC
13 TPML_CC *commandList // OUT: list of TPM_CC
14 );
15void PhysicalPresenceCommandClear(TPM_CC commandCode // IN: command code
16 );
17void PhysicalPresenceCommandSet(TPM_CC commandCode // IN: command code
18 );
19BOOL PhysicalPresenceIsRequired(TPM_CC commandCode // IN: command code
20 );
21void PhysicalPresencePreInstall_Init(void);
Vadim Bendeburyb6994e82015-06-01 12:26:35 -070022
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070023#endif // __TPM2_PP_FP_H