aboutsummaryrefslogtreecommitdiff
path: root/PP_fp.h
blob: d7aa4b328f3d8e78f16599c07572287524bf84aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright 2015 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __TPM2_PP_FP_H
#define __TPM2_PP_FP_H

TPMI_YES_NO PhysicalPresenceCapGetCCList(
    TPM_CC commandCode,   // IN: start command code
    UINT32 count,         // IN: count of returned TPM_CC
    TPML_CC *commandList  // OUT: list of TPM_CC
    );
void PhysicalPresenceCommandClear(TPM_CC commandCode  // IN: command code
                                  );
void PhysicalPresenceCommandSet(TPM_CC commandCode  // IN: command code
                                );
BOOL PhysicalPresenceIsRequired(TPM_CC commandCode  // IN: command code
                                );
void PhysicalPresencePreInstall_Init(void);

#endif  // __TPM2_PP_FP_H