Home | History | Annotate | Download | only in tpm2
      1 /*
      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 
     10 TPMI_YES_NO PhysicalPresenceCapGetCCList(
     11     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     );
     15 void PhysicalPresenceCommandClear(TPM_CC commandCode  // IN: command code
     16                                   );
     17 void PhysicalPresenceCommandSet(TPM_CC commandCode  // IN: command code
     18                                 );
     19 BOOL PhysicalPresenceIsRequired(TPM_CC commandCode  // IN: command code
     20                                 );
     21 void PhysicalPresencePreInstall_Init(void);
     22 
     23 #endif  // __TPM2_PP_FP_H
     24