Index: firmware/lib/tpm_lite/tlcl.c |
diff --git a/firmware/lib/tpm_lite/tlcl.c b/firmware/lib/tpm_lite/tlcl.c |
index 09b07e6aa2257911600cc08af63c07f95975ee84..5a28f67b50a41a95f4b2459af32f9e31af273dcf 100644 |
--- a/firmware/lib/tpm_lite/tlcl.c |
+++ b/firmware/lib/tpm_lite/tlcl.c |
@@ -176,6 +176,11 @@ uint32_t TlclAssertPhysicalPresence(void) { |
return Send(tpm_ppassert_cmd.buffer); |
} |
+uint32_t TlclPhysicalPresenceCMDEnable(void) { |
+ VBDEBUG(("TPM: Enable the physical presence command\n")); |
+ return Send(tpm_ppenable_cmd.buffer); |
+} |
+ |
uint32_t TlclAssertPhysicalPresenceResult(void) { |
uint8_t response[TPM_LARGE_ENOUGH_COMMAND_SIZE]; |
return TlclSendReceive(tpm_ppassert_cmd.buffer, response, sizeof(response)); |
@@ -269,7 +274,7 @@ uint32_t TlclGetFlags(uint8_t* disable, |
} |
return result; |
} |
- |
+ |
uint32_t TlclSetGlobalLock(void) { |
uint32_t x; |
VBDEBUG(("TPM: Set global lock\n")); |