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

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: Fix nits 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
« no previous file with comments | « include/configs/chromeos/tegra2/seaboard/parts/tpm.h ('k') | lib/chromeos/tlcl_stub.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/tpm.h
diff --git a/include/tpm.h b/include/tpm.h
index dd1b4bfe4fb2f4390ba55e6b0af22c26ecb10184..7b0d415088e73472dc05dfde7cbf5d6a94473c77 100644
--- a/include/tpm.h
+++ b/include/tpm.h
@@ -8,8 +8,10 @@
#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_ */
« no previous file with comments | « include/configs/chromeos/tegra2/seaboard/parts/tpm.h ('k') | lib/chromeos/tlcl_stub.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698