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

Unified Diff: drivers/tpm/slb9635_i2c/ifx_auto.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: drivers/tpm/slb9635_i2c/ifx_auto.h
diff --git a/drivers/tpm/slb9635_i2c/ifx_auto.h b/drivers/tpm/slb9635_i2c/ifx_auto.h
new file mode 100644
index 0000000000000000000000000000000000000000..0e0be07c8f3fab1b8311fb3995b2edadd17a1141
--- /dev/null
+++ b/drivers/tpm/slb9635_i2c/ifx_auto.h
@@ -0,0 +1,19 @@
+/* Copyright (c) 2011 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 __tpm_slb9635_i2c_ifx_auto_h__
+#define __tpm_slb9635_i2c_ifx_auto_h__
+
+int tpm_init_v03(void);
+int tpm_open_v03(void);
+int tpm_close_v03(void);
+int tpm_sendrecv_v03(const uint8_t *sendbuf, size_t buf_size, uint8_t *recvbuf, size_t *recv_len);
+int tpm_init_v05(void);
+int tpm_open_v05(void);
+int tpm_close_v05(void);
+int tpm_sendrecv_v05(const uint8_t *sendbuf, size_t buf_size, uint8_t *recvbuf, size_t *recv_len);
+
+#endif /* __tpm_slb9635_i2c_ifx_auto_h__ */
+

Powered by Google App Engine
This is Rietveld 408576698