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

Side by Side Diff: firmware/stub/include/tpmextras.h

Issue 2919010: Add tpm lite to vboot reference (Closed) Base URL: ssh://gitrw.chromium.org/vboot_reference.git
Patch Set: Created 10 years, 5 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 unified diff | Download patch
« no previous file with comments | « firmware/stub/include/biosincludes.h ('k') | firmware/stub/tlcl.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 /*
7 * TPM definitions not available in any TSS include file :-(
8 */
9
10 #ifndef TPM_LITE_TPMEXTRAS_H_
11 #define TPM_LITE_TPMEXTRAS_H_
12
13 #include <tss/tcs.h>
14
15 #define TPM_MAX_COMMAND_SIZE 4096
16 #define TPM_LARGE_ENOUGH_COMMAND_SIZE 256 /* saves space in the firmware */
17
18 typedef struct tdTPM_WRITE_INFO {
19 uint32_t nvIndex;
20 uint32_t offset;
21 uint32_t dataSize;
22 } TPM_WRITE_INFO;
23
24 #define TPM_ALL_LOCALITIES (TPM_LOC_ZERO | TPM_LOC_ONE | TPM_LOC_TWO \
25 | TPM_LOC_THREE | TPM_LOC_FOUR) /* 0x1f */
26
27 #define TPM_ENCAUTH_SIZE 20
28 #define TPM_PUBEK_SIZE 256
29
30 #endif
OLDNEW
« no previous file with comments | « firmware/stub/include/biosincludes.h ('k') | firmware/stub/tlcl.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698