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

Unified Diff: firmware/include/tlcl_stub.h

Issue 4266002: Fix integration bugs (vboot side) (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: Rename tpm_lite.h to tlcl_stub.h Created 10 years, 1 month 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 | « firmware/Makefile ('k') | firmware/include/tss_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: firmware/include/tlcl_stub.h
diff --git a/firmware/include/tlcl_stub.h b/firmware/include/tlcl_stub.h
new file mode 100644
index 0000000000000000000000000000000000000000..72582af0564adfcfda047b5de17f7b6f24a1f5d6
--- /dev/null
+++ b/firmware/include/tlcl_stub.h
@@ -0,0 +1,35 @@
+/* Copyright (c) 2010 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.
+ */
+
+/* TPM Lightweight Command Library.
+ *
+ * A low-level library for interfacing to TPM hardware or an emulator.
+ */
+
+#ifndef VBOOT_REFERENCE_TLCL_STUB_H_
+#define VBOOT_REFERENCE_TLCL_STUB_H_
+
+#include "sysincludes.h"
+#include "tss_constants.h"
+
+/*****************************************************************************/
+/* Functions to be implemented by the stub library */
+
+/* Initialize the stub library */
+void TlclStubInit(void);
+
+/* Close and open the device. This is needed for running more complex commands
+ * at user level, such as TPM_TakeOwnership, since the TPM device can be opened
+ * only by one process at a time.
+ */
+void TlclCloseDevice(void);
+void TlclOpenDevice(void);
+
+/* Send data to the TPM and receive a response. Returns 0 if success,
+ * nonzero if error. */
+uint32_t TlclStubSendReceive(const uint8_t* request, int request_length,
+ uint8_t* response, int max_length);
+
+#endif /* VBOOT_REFERENCE_TLCL_STUB_H_ */
« no previous file with comments | « firmware/Makefile ('k') | firmware/include/tss_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698