OLD | NEW |
(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 |
OLD | NEW |