Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1742)

Unified Diff: include/tpm.h

Issue 6683023: Add Infineon v05 TPM driver (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/u-boot-next.git@chromeos-v2010.09
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: include/tpm.h
diff --git a/include/tpm.h b/include/tpm.h
index dd1b4bfe4fb2f4390ba55e6b0af22c26ecb10184..7cdbb5135913de3d6621fdd8caf3c1672a62291b 100644
--- a/include/tpm.h
+++ b/include/tpm.h
@@ -8,8 +8,9 @@
#include <common.h>
-int tpm_init(void);
-int tpm_send(const uint8_t *pdata, size_t length);
-int tpm_receive(uint8_t *pdata, size_t max_length);
+int tis_init(void);
+int tis_open(void);
+int tis_close(void);
+int tis_sendrecv(const uint8_t *sendbuf, size_t send_size, uint8_t *recvbuf, size_t *recv_len);
#endif /* TPM_H_ */

Powered by Google App Engine
This is Rietveld 408576698