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

Side by Side Diff: src/platform/tpm_lite/src/tlcl/tpmextras.h

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

Powered by Google App Engine
This is Rietveld 408576698