Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
Ilias Apalodimas | 915e3ae | 2020-11-11 11:18:10 +0200 | [diff] [blame] | 3 | * Defines APIs and structures that allow software to interact with a |
| 4 | * TPM2 device |
| 5 | * |
| 6 | * Copyright (c) 2020 Linaro |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 7 | * Copyright (c) 2018 Bootlin |
Ilias Apalodimas | 915e3ae | 2020-11-11 11:18:10 +0200 | [diff] [blame] | 8 | * |
| 9 | * https://trustedcomputinggroup.org/resource/tss-overview-common-structures-specification/ |
| 10 | * |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 11 | * Author: Miquel Raynal <miquel.raynal@bootlin.com> |
| 12 | */ |
| 13 | |
| 14 | #ifndef __TPM_V2_H |
| 15 | #define __TPM_V2_H |
| 16 | |
| 17 | #include <tpm-common.h> |
| 18 | |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 19 | struct udevice; |
| 20 | |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 21 | #define TPM2_DIGEST_LEN 32 |
| 22 | |
Ilias Apalodimas | 8e0b087 | 2020-11-30 11:47:39 +0200 | [diff] [blame] | 23 | #define TPM2_SHA1_DIGEST_SIZE 20 |
| 24 | #define TPM2_SHA256_DIGEST_SIZE 32 |
| 25 | #define TPM2_SHA384_DIGEST_SIZE 48 |
| 26 | #define TPM2_SHA512_DIGEST_SIZE 64 |
| 27 | #define TPM2_SM3_256_DIGEST_SIZE 32 |
| 28 | |
Ilias Apalodimas | 915e3ae | 2020-11-11 11:18:10 +0200 | [diff] [blame] | 29 | #define TPM2_MAX_PCRS 32 |
| 30 | #define TPM2_PCR_SELECT_MAX ((TPM2_MAX_PCRS + 7) / 8) |
| 31 | #define TPM2_MAX_CAP_BUFFER 1024 |
| 32 | #define TPM2_MAX_TPM_PROPERTIES ((TPM2_MAX_CAP_BUFFER - sizeof(u32) /* TPM2_CAP */ - \ |
| 33 | sizeof(u32)) / sizeof(struct tpms_tagged_property)) |
| 34 | |
| 35 | /* |
| 36 | * We deviate from this draft of the specification by increasing the value of |
| 37 | * TPM2_NUM_PCR_BANKS from 3 to 16 to ensure compatibility with TPM2 |
| 38 | * implementations that have enabled a larger than typical number of PCR |
| 39 | * banks. This larger value for TPM2_NUM_PCR_BANKS is expected to be included |
| 40 | * in a future revision of the specification. |
| 41 | */ |
| 42 | #define TPM2_NUM_PCR_BANKS 16 |
| 43 | |
| 44 | /* Definition of (UINT32) TPM2_CAP Constants */ |
| 45 | #define TPM2_CAP_PCRS 0x00000005U |
| 46 | #define TPM2_CAP_TPM_PROPERTIES 0x00000006U |
| 47 | |
| 48 | /* Definition of (UINT32) TPM2_PT Constants */ |
| 49 | #define TPM2_PT_GROUP (u32)(0x00000100) |
| 50 | #define TPM2_PT_FIXED (u32)(TPM2_PT_GROUP * 1) |
| 51 | #define TPM2_PT_MANUFACTURER (u32)(TPM2_PT_FIXED + 5) |
| 52 | #define TPM2_PT_PCR_COUNT (u32)(TPM2_PT_FIXED + 18) |
| 53 | #define TPM2_PT_MAX_COMMAND_SIZE (u32)(TPM2_PT_FIXED + 30) |
| 54 | #define TPM2_PT_MAX_RESPONSE_SIZE (u32)(TPM2_PT_FIXED + 31) |
| 55 | |
Ilias Apalodimas | 8e0b087 | 2020-11-30 11:47:39 +0200 | [diff] [blame] | 56 | /* event types */ |
| 57 | #define EV_POST_CODE ((u32)0x00000001) |
| 58 | #define EV_NO_ACTION ((u32)0x00000003) |
| 59 | #define EV_SEPARATOR ((u32)0x00000004) |
| 60 | #define EV_S_CRTM_CONTENTS ((u32)0x00000007) |
| 61 | #define EV_S_CRTM_VERSION ((u32)0x00000008) |
| 62 | #define EV_CPU_MICROCODE ((u32)0x00000009) |
| 63 | #define EV_TABLE_OF_DEVICES ((u32)0x0000000B) |
| 64 | |
Ilias Apalodimas | 915e3ae | 2020-11-11 11:18:10 +0200 | [diff] [blame] | 65 | /* TPMS_TAGGED_PROPERTY Structure */ |
| 66 | struct tpms_tagged_property { |
| 67 | u32 property; |
| 68 | u32 value; |
| 69 | } __packed; |
| 70 | |
| 71 | /* TPMS_PCR_SELECTION Structure */ |
| 72 | struct tpms_pcr_selection { |
| 73 | u16 hash; |
| 74 | u8 size_of_select; |
| 75 | u8 pcr_select[TPM2_PCR_SELECT_MAX]; |
| 76 | } __packed; |
| 77 | |
| 78 | /* TPML_PCR_SELECTION Structure */ |
| 79 | struct tpml_pcr_selection { |
| 80 | u32 count; |
| 81 | struct tpms_pcr_selection selection[TPM2_NUM_PCR_BANKS]; |
| 82 | } __packed; |
| 83 | |
| 84 | /* TPML_TAGGED_TPM_PROPERTY Structure */ |
| 85 | struct tpml_tagged_tpm_property { |
| 86 | u32 count; |
| 87 | struct tpms_tagged_property tpm_property[TPM2_MAX_TPM_PROPERTIES]; |
| 88 | } __packed; |
| 89 | |
| 90 | /* TPMU_CAPABILITIES Union */ |
| 91 | union tpmu_capabilities { |
| 92 | /* |
| 93 | * Non exhaustive. Only added the structs needed for our |
| 94 | * current code |
| 95 | */ |
| 96 | struct tpml_pcr_selection assigned_pcr; |
| 97 | struct tpml_tagged_tpm_property tpm_properties; |
| 98 | } __packed; |
| 99 | |
| 100 | /* TPMS_CAPABILITY_DATA Structure */ |
| 101 | struct tpms_capability_data { |
| 102 | u32 capability; |
| 103 | union tpmu_capabilities data; |
| 104 | } __packed; |
| 105 | |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 106 | /** |
Ilias Apalodimas | 8e0b087 | 2020-11-30 11:47:39 +0200 | [diff] [blame] | 107 | * SHA1 Event Log Entry Format |
| 108 | * |
| 109 | * @pcr_index: PCRIndex event extended to |
| 110 | * @event_type: Type of event (see EFI specs) |
| 111 | * @digest: Value extended into PCR index |
| 112 | * @event_size: Size of event |
| 113 | * @event: Event data |
| 114 | */ |
| 115 | struct tcg_pcr_event { |
| 116 | u32 pcr_index; |
| 117 | u32 event_type; |
| 118 | u8 digest[TPM2_SHA1_DIGEST_SIZE]; |
| 119 | u32 event_size; |
| 120 | u8 event[]; |
| 121 | } __packed; |
| 122 | |
| 123 | /** |
| 124 | * Definition of TPMU_HA Union |
| 125 | */ |
| 126 | union tmpu_ha { |
| 127 | u8 sha1[TPM2_SHA1_DIGEST_SIZE]; |
| 128 | u8 sha256[TPM2_SHA256_DIGEST_SIZE]; |
| 129 | u8 sm3_256[TPM2_SM3_256_DIGEST_SIZE]; |
| 130 | u8 sha384[TPM2_SHA384_DIGEST_SIZE]; |
| 131 | u8 sha512[TPM2_SHA512_DIGEST_SIZE]; |
| 132 | } __packed; |
| 133 | |
| 134 | /** |
| 135 | * Definition of TPMT_HA Structure |
| 136 | * |
| 137 | * @hash_alg: Hash algorithm defined in enum tpm2_algorithms |
| 138 | * @digest: Digest value for a given algorithm |
| 139 | */ |
| 140 | struct tpmt_ha { |
| 141 | u16 hash_alg; |
| 142 | union tmpu_ha digest; |
| 143 | } __packed; |
| 144 | |
| 145 | /** |
| 146 | * Definition of TPML_DIGEST_VALUES Structure |
| 147 | * |
| 148 | * @count: Number of algorithms supported by hardware |
| 149 | * @digests: struct for algorithm id and hash value |
| 150 | */ |
| 151 | struct tpml_digest_values { |
| 152 | u32 count; |
| 153 | struct tpmt_ha digests[TPM2_NUM_PCR_BANKS]; |
| 154 | } __packed; |
| 155 | |
| 156 | /** |
| 157 | * Crypto Agile Log Entry Format |
| 158 | * |
| 159 | * @pcr_index: PCRIndex event extended to |
| 160 | * @event_type: Type of event |
| 161 | * @digests: List of digestsextended to PCR index |
| 162 | * @event_size: Size of the event data |
| 163 | * @event: Event data |
| 164 | */ |
| 165 | struct tcg_pcr_event2 { |
| 166 | u32 pcr_index; |
| 167 | u32 event_type; |
| 168 | struct tpml_digest_values digests; |
| 169 | u32 event_size; |
| 170 | u8 event[]; |
| 171 | } __packed; |
| 172 | |
| 173 | /** |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 174 | * TPM2 Structure Tags for command/response buffers. |
| 175 | * |
| 176 | * @TPM2_ST_NO_SESSIONS: the command does not need an authentication. |
| 177 | * @TPM2_ST_SESSIONS: the command needs an authentication. |
| 178 | */ |
| 179 | enum tpm2_structures { |
| 180 | TPM2_ST_NO_SESSIONS = 0x8001, |
| 181 | TPM2_ST_SESSIONS = 0x8002, |
| 182 | }; |
| 183 | |
| 184 | /** |
| 185 | * TPM2 type of boolean. |
| 186 | */ |
| 187 | enum tpm2_yes_no { |
| 188 | TPMI_YES = 1, |
| 189 | TPMI_NO = 0, |
| 190 | }; |
| 191 | |
| 192 | /** |
| 193 | * TPM2 startup values. |
| 194 | * |
| 195 | * @TPM2_SU_CLEAR: reset the internal state. |
| 196 | * @TPM2_SU_STATE: restore saved state (if any). |
| 197 | */ |
| 198 | enum tpm2_startup_types { |
| 199 | TPM2_SU_CLEAR = 0x0000, |
| 200 | TPM2_SU_STATE = 0x0001, |
| 201 | }; |
| 202 | |
| 203 | /** |
| 204 | * TPM2 permanent handles. |
| 205 | * |
| 206 | * @TPM2_RH_OWNER: refers to the 'owner' hierarchy. |
| 207 | * @TPM2_RS_PW: indicates a password. |
| 208 | * @TPM2_RH_LOCKOUT: refers to the 'lockout' hierarchy. |
| 209 | * @TPM2_RH_ENDORSEMENT: refers to the 'endorsement' hierarchy. |
| 210 | * @TPM2_RH_PLATFORM: refers to the 'platform' hierarchy. |
| 211 | */ |
| 212 | enum tpm2_handles { |
| 213 | TPM2_RH_OWNER = 0x40000001, |
| 214 | TPM2_RS_PW = 0x40000009, |
| 215 | TPM2_RH_LOCKOUT = 0x4000000A, |
| 216 | TPM2_RH_ENDORSEMENT = 0x4000000B, |
| 217 | TPM2_RH_PLATFORM = 0x4000000C, |
| 218 | }; |
| 219 | |
| 220 | /** |
| 221 | * TPM2 command codes used at the beginning of a buffer, gives the command. |
| 222 | * |
| 223 | * @TPM2_CC_STARTUP: TPM2_Startup(). |
| 224 | * @TPM2_CC_SELF_TEST: TPM2_SelfTest(). |
| 225 | * @TPM2_CC_CLEAR: TPM2_Clear(). |
| 226 | * @TPM2_CC_CLEARCONTROL: TPM2_ClearControl(). |
| 227 | * @TPM2_CC_HIERCHANGEAUTH: TPM2_HierarchyChangeAuth(). |
| 228 | * @TPM2_CC_PCR_SETAUTHPOL: TPM2_PCR_SetAuthPolicy(). |
| 229 | * @TPM2_CC_DAM_RESET: TPM2_DictionaryAttackLockReset(). |
| 230 | * @TPM2_CC_DAM_PARAMETERS: TPM2_DictionaryAttackParameters(). |
| 231 | * @TPM2_CC_GET_CAPABILITY: TPM2_GetCapibility(). |
Dhananjay Phadke | 06bea49 | 2020-06-04 16:43:59 -0700 | [diff] [blame] | 232 | * @TPM2_CC_GET_RANDOM: TPM2_GetRandom(). |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 233 | * @TPM2_CC_PCR_READ: TPM2_PCR_Read(). |
| 234 | * @TPM2_CC_PCR_EXTEND: TPM2_PCR_Extend(). |
| 235 | * @TPM2_CC_PCR_SETAUTHVAL: TPM2_PCR_SetAuthValue(). |
| 236 | */ |
| 237 | enum tpm2_command_codes { |
| 238 | TPM2_CC_STARTUP = 0x0144, |
| 239 | TPM2_CC_SELF_TEST = 0x0143, |
Simon Glass | 63af92e | 2021-02-06 14:23:42 -0700 | [diff] [blame] | 240 | TPM2_CC_HIER_CONTROL = 0x0121, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 241 | TPM2_CC_CLEAR = 0x0126, |
| 242 | TPM2_CC_CLEARCONTROL = 0x0127, |
| 243 | TPM2_CC_HIERCHANGEAUTH = 0x0129, |
Simon Glass | eadcbc7 | 2021-02-06 14:23:39 -0700 | [diff] [blame] | 244 | TPM2_CC_NV_DEFINE_SPACE = 0x012a, |
Miquel Raynal | b9dd4fab | 2018-05-15 11:57:20 +0200 | [diff] [blame] | 245 | TPM2_CC_PCR_SETAUTHPOL = 0x012C, |
Simon Glass | 6719cbe | 2021-02-06 14:23:40 -0700 | [diff] [blame] | 246 | TPM2_CC_NV_WRITE = 0x0137, |
Simon Glass | 7785bc1 | 2021-02-06 14:23:41 -0700 | [diff] [blame] | 247 | TPM2_CC_NV_WRITELOCK = 0x0138, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 248 | TPM2_CC_DAM_RESET = 0x0139, |
| 249 | TPM2_CC_DAM_PARAMETERS = 0x013A, |
Simon Glass | 998af31 | 2018-10-01 11:55:17 -0600 | [diff] [blame] | 250 | TPM2_CC_NV_READ = 0x014E, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 251 | TPM2_CC_GET_CAPABILITY = 0x017A, |
Dhananjay Phadke | 06bea49 | 2020-06-04 16:43:59 -0700 | [diff] [blame] | 252 | TPM2_CC_GET_RANDOM = 0x017B, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 253 | TPM2_CC_PCR_READ = 0x017E, |
| 254 | TPM2_CC_PCR_EXTEND = 0x0182, |
Miquel Raynal | b9dd4fab | 2018-05-15 11:57:20 +0200 | [diff] [blame] | 255 | TPM2_CC_PCR_SETAUTHVAL = 0x0183, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 256 | }; |
| 257 | |
| 258 | /** |
| 259 | * TPM2 return codes. |
| 260 | */ |
| 261 | enum tpm2_return_codes { |
| 262 | TPM2_RC_SUCCESS = 0x0000, |
| 263 | TPM2_RC_BAD_TAG = 0x001E, |
| 264 | TPM2_RC_FMT1 = 0x0080, |
| 265 | TPM2_RC_HASH = TPM2_RC_FMT1 + 0x0003, |
| 266 | TPM2_RC_VALUE = TPM2_RC_FMT1 + 0x0004, |
| 267 | TPM2_RC_SIZE = TPM2_RC_FMT1 + 0x0015, |
| 268 | TPM2_RC_BAD_AUTH = TPM2_RC_FMT1 + 0x0022, |
| 269 | TPM2_RC_HANDLE = TPM2_RC_FMT1 + 0x000B, |
| 270 | TPM2_RC_VER1 = 0x0100, |
| 271 | TPM2_RC_INITIALIZE = TPM2_RC_VER1 + 0x0000, |
| 272 | TPM2_RC_FAILURE = TPM2_RC_VER1 + 0x0001, |
| 273 | TPM2_RC_DISABLED = TPM2_RC_VER1 + 0x0020, |
| 274 | TPM2_RC_AUTH_MISSING = TPM2_RC_VER1 + 0x0025, |
| 275 | TPM2_RC_COMMAND_CODE = TPM2_RC_VER1 + 0x0043, |
| 276 | TPM2_RC_AUTHSIZE = TPM2_RC_VER1 + 0x0044, |
| 277 | TPM2_RC_AUTH_CONTEXT = TPM2_RC_VER1 + 0x0045, |
Simon Glass | 63af92e | 2021-02-06 14:23:42 -0700 | [diff] [blame] | 278 | TPM2_RC_NV_DEFINED = TPM2_RC_VER1 + 0x004c, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 279 | TPM2_RC_NEEDS_TEST = TPM2_RC_VER1 + 0x0053, |
| 280 | TPM2_RC_WARN = 0x0900, |
| 281 | TPM2_RC_TESTING = TPM2_RC_WARN + 0x000A, |
| 282 | TPM2_RC_REFERENCE_H0 = TPM2_RC_WARN + 0x0010, |
| 283 | TPM2_RC_LOCKOUT = TPM2_RC_WARN + 0x0021, |
| 284 | }; |
| 285 | |
| 286 | /** |
| 287 | * TPM2 algorithms. |
| 288 | */ |
| 289 | enum tpm2_algorithms { |
Ilias Apalodimas | 915e3ae | 2020-11-11 11:18:10 +0200 | [diff] [blame] | 290 | TPM2_ALG_SHA1 = 0x04, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 291 | TPM2_ALG_XOR = 0x0A, |
| 292 | TPM2_ALG_SHA256 = 0x0B, |
| 293 | TPM2_ALG_SHA384 = 0x0C, |
| 294 | TPM2_ALG_SHA512 = 0x0D, |
| 295 | TPM2_ALG_NULL = 0x10, |
Ilias Apalodimas | 915e3ae | 2020-11-11 11:18:10 +0200 | [diff] [blame] | 296 | TPM2_ALG_SM3_256 = 0x12, |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 297 | }; |
| 298 | |
Simon Glass | be8a025 | 2018-11-23 21:29:34 -0700 | [diff] [blame] | 299 | /* NV index attributes */ |
| 300 | enum tpm_index_attrs { |
| 301 | TPMA_NV_PPWRITE = 1UL << 0, |
| 302 | TPMA_NV_OWNERWRITE = 1UL << 1, |
| 303 | TPMA_NV_AUTHWRITE = 1UL << 2, |
| 304 | TPMA_NV_POLICYWRITE = 1UL << 3, |
| 305 | TPMA_NV_COUNTER = 1UL << 4, |
| 306 | TPMA_NV_BITS = 1UL << 5, |
| 307 | TPMA_NV_EXTEND = 1UL << 6, |
| 308 | TPMA_NV_POLICY_DELETE = 1UL << 10, |
| 309 | TPMA_NV_WRITELOCKED = 1UL << 11, |
| 310 | TPMA_NV_WRITEALL = 1UL << 12, |
| 311 | TPMA_NV_WRITEDEFINE = 1UL << 13, |
| 312 | TPMA_NV_WRITE_STCLEAR = 1UL << 14, |
| 313 | TPMA_NV_GLOBALLOCK = 1UL << 15, |
| 314 | TPMA_NV_PPREAD = 1UL << 16, |
| 315 | TPMA_NV_OWNERREAD = 1UL << 17, |
| 316 | TPMA_NV_AUTHREAD = 1UL << 18, |
| 317 | TPMA_NV_POLICYREAD = 1UL << 19, |
| 318 | TPMA_NV_NO_DA = 1UL << 25, |
| 319 | TPMA_NV_ORDERLY = 1UL << 26, |
| 320 | TPMA_NV_CLEAR_STCLEAR = 1UL << 27, |
| 321 | TPMA_NV_READLOCKED = 1UL << 28, |
| 322 | TPMA_NV_WRITTEN = 1UL << 29, |
| 323 | TPMA_NV_PLATFORMCREATE = 1UL << 30, |
| 324 | TPMA_NV_READ_STCLEAR = 1UL << 31, |
| 325 | |
| 326 | TPMA_NV_MASK_READ = TPMA_NV_PPREAD | TPMA_NV_OWNERREAD | |
| 327 | TPMA_NV_AUTHREAD | TPMA_NV_POLICYREAD, |
| 328 | TPMA_NV_MASK_WRITE = TPMA_NV_PPWRITE | TPMA_NV_OWNERWRITE | |
| 329 | TPMA_NV_AUTHWRITE | TPMA_NV_POLICYWRITE, |
| 330 | }; |
| 331 | |
Simon Glass | 1400a7f | 2020-02-06 09:55:03 -0700 | [diff] [blame] | 332 | enum { |
| 333 | TPM_ACCESS_VALID = 1 << 7, |
| 334 | TPM_ACCESS_ACTIVE_LOCALITY = 1 << 5, |
| 335 | TPM_ACCESS_REQUEST_PENDING = 1 << 2, |
| 336 | TPM_ACCESS_REQUEST_USE = 1 << 1, |
| 337 | TPM_ACCESS_ESTABLISHMENT = 1 << 0, |
| 338 | }; |
| 339 | |
| 340 | enum { |
| 341 | TPM_STS_FAMILY_SHIFT = 26, |
| 342 | TPM_STS_FAMILY_MASK = 0x3 << TPM_STS_FAMILY_SHIFT, |
| 343 | TPM_STS_FAMILY_TPM2 = 1 << TPM_STS_FAMILY_SHIFT, |
| 344 | TPM_STS_RESE_TESTABLISMENT_BIT = 1 << 25, |
| 345 | TPM_STS_COMMAND_CANCEL = 1 << 24, |
| 346 | TPM_STS_BURST_COUNT_SHIFT = 8, |
| 347 | TPM_STS_BURST_COUNT_MASK = 0xffff << TPM_STS_BURST_COUNT_SHIFT, |
| 348 | TPM_STS_VALID = 1 << 7, |
| 349 | TPM_STS_COMMAND_READY = 1 << 6, |
| 350 | TPM_STS_GO = 1 << 5, |
| 351 | TPM_STS_DATA_AVAIL = 1 << 4, |
| 352 | TPM_STS_DATA_EXPECT = 1 << 3, |
| 353 | TPM_STS_SELF_TEST_DONE = 1 << 2, |
| 354 | TPM_STS_RESPONSE_RETRY = 1 << 1, |
| 355 | }; |
| 356 | |
| 357 | enum { |
| 358 | TPM_CMD_COUNT_OFFSET = 2, |
| 359 | TPM_CMD_ORDINAL_OFFSET = 6, |
| 360 | TPM_MAX_BUF_SIZE = 1260, |
| 361 | }; |
| 362 | |
Simon Glass | 6719cbe | 2021-02-06 14:23:40 -0700 | [diff] [blame] | 363 | enum { |
| 364 | /* Secure storage for firmware settings */ |
| 365 | TPM_HT_PCR = 0, |
| 366 | TPM_HT_NV_INDEX, |
| 367 | TPM_HT_HMAC_SESSION, |
| 368 | TPM_HT_POLICY_SESSION, |
| 369 | |
| 370 | HR_SHIFT = 24, |
| 371 | HR_PCR = TPM_HT_PCR << HR_SHIFT, |
| 372 | HR_HMAC_SESSION = TPM_HT_HMAC_SESSION << HR_SHIFT, |
| 373 | HR_POLICY_SESSION = TPM_HT_POLICY_SESSION << HR_SHIFT, |
| 374 | HR_NV_INDEX = TPM_HT_NV_INDEX << HR_SHIFT, |
| 375 | }; |
| 376 | |
Miquel Raynal | 1922df2 | 2018-05-15 11:57:12 +0200 | [diff] [blame] | 377 | /** |
| 378 | * Issue a TPM2_Startup command. |
| 379 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 380 | * @dev TPM device |
Miquel Raynal | 1922df2 | 2018-05-15 11:57:12 +0200 | [diff] [blame] | 381 | * @mode TPM startup mode |
| 382 | * |
| 383 | * @return code of the operation |
| 384 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 385 | u32 tpm2_startup(struct udevice *dev, enum tpm2_startup_types mode); |
Miquel Raynal | 1922df2 | 2018-05-15 11:57:12 +0200 | [diff] [blame] | 386 | |
Miquel Raynal | 2dc6d97 | 2018-05-15 11:57:13 +0200 | [diff] [blame] | 387 | /** |
| 388 | * Issue a TPM2_SelfTest command. |
| 389 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 390 | * @dev TPM device |
Miquel Raynal | 2dc6d97 | 2018-05-15 11:57:13 +0200 | [diff] [blame] | 391 | * @full_test Asking to perform all tests or only the untested ones |
| 392 | * |
| 393 | * @return code of the operation |
| 394 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 395 | u32 tpm2_self_test(struct udevice *dev, enum tpm2_yes_no full_test); |
Miquel Raynal | 2dc6d97 | 2018-05-15 11:57:13 +0200 | [diff] [blame] | 396 | |
Miquel Raynal | bad8ff5 | 2018-05-15 11:57:14 +0200 | [diff] [blame] | 397 | /** |
| 398 | * Issue a TPM2_Clear command. |
| 399 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 400 | * @dev TPM device |
Miquel Raynal | bad8ff5 | 2018-05-15 11:57:14 +0200 | [diff] [blame] | 401 | * @handle Handle |
| 402 | * @pw Password |
| 403 | * @pw_sz Length of the password |
| 404 | * |
| 405 | * @return code of the operation |
| 406 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 407 | u32 tpm2_clear(struct udevice *dev, u32 handle, const char *pw, |
| 408 | const ssize_t pw_sz); |
Miquel Raynal | bad8ff5 | 2018-05-15 11:57:14 +0200 | [diff] [blame] | 409 | |
Miquel Raynal | 6284be5 | 2018-05-15 11:57:15 +0200 | [diff] [blame] | 410 | /** |
Simon Glass | eadcbc7 | 2021-02-06 14:23:39 -0700 | [diff] [blame] | 411 | * Issue a TPM_NV_DefineSpace command |
| 412 | * |
| 413 | * This allows a space to be defined with given attributes and policy |
| 414 | * |
| 415 | * @dev TPM device |
| 416 | * @space_index index of the area |
| 417 | * @space_size size of area in bytes |
| 418 | * @nv_attributes TPM_NV_ATTRIBUTES of the area |
| 419 | * @nv_policy policy to use |
| 420 | * @nv_policy_size size of the policy |
| 421 | * @return return code of the operation |
| 422 | */ |
| 423 | u32 tpm2_nv_define_space(struct udevice *dev, u32 space_index, |
| 424 | size_t space_size, u32 nv_attributes, |
| 425 | const u8 *nv_policy, size_t nv_policy_size); |
| 426 | |
| 427 | /** |
Miquel Raynal | 6284be5 | 2018-05-15 11:57:15 +0200 | [diff] [blame] | 428 | * Issue a TPM2_PCR_Extend command. |
| 429 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 430 | * @dev TPM device |
Miquel Raynal | 6284be5 | 2018-05-15 11:57:15 +0200 | [diff] [blame] | 431 | * @index Index of the PCR |
Ilias Apalodimas | e926136 | 2020-11-26 23:07:22 +0200 | [diff] [blame] | 432 | * @algorithm Algorithm used, defined in 'enum tpm2_algorithms' |
Miquel Raynal | 6284be5 | 2018-05-15 11:57:15 +0200 | [diff] [blame] | 433 | * @digest Value representing the event to be recorded |
Ilias Apalodimas | e926136 | 2020-11-26 23:07:22 +0200 | [diff] [blame] | 434 | * @digest_len len of the hash |
Miquel Raynal | 6284be5 | 2018-05-15 11:57:15 +0200 | [diff] [blame] | 435 | * |
| 436 | * @return code of the operation |
| 437 | */ |
Ilias Apalodimas | e926136 | 2020-11-26 23:07:22 +0200 | [diff] [blame] | 438 | u32 tpm2_pcr_extend(struct udevice *dev, u32 index, u32 algorithm, |
| 439 | const u8 *digest, u32 digest_len); |
Miquel Raynal | 6284be5 | 2018-05-15 11:57:15 +0200 | [diff] [blame] | 440 | |
Miquel Raynal | 1c4ea8f | 2018-05-15 11:57:16 +0200 | [diff] [blame] | 441 | /** |
Simon Glass | 6719cbe | 2021-02-06 14:23:40 -0700 | [diff] [blame] | 442 | * Read data from the secure storage |
| 443 | * |
| 444 | * @dev TPM device |
| 445 | * @index Index of data to read |
| 446 | * @data Place to put data |
| 447 | * @count Number of bytes of data |
| 448 | * @return code of the operation |
| 449 | */ |
| 450 | u32 tpm2_nv_read_value(struct udevice *dev, u32 index, void *data, u32 count); |
| 451 | |
| 452 | /** |
| 453 | * Write data to the secure storage |
| 454 | * |
| 455 | * @dev TPM device |
| 456 | * @index Index of data to write |
| 457 | * @data Data to write |
| 458 | * @count Number of bytes of data |
| 459 | * @return code of the operation |
| 460 | */ |
| 461 | u32 tpm2_nv_write_value(struct udevice *dev, u32 index, const void *data, |
| 462 | u32 count); |
| 463 | |
| 464 | /** |
Miquel Raynal | 1c4ea8f | 2018-05-15 11:57:16 +0200 | [diff] [blame] | 465 | * Issue a TPM2_PCR_Read command. |
| 466 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 467 | * @dev TPM device |
Miquel Raynal | 1c4ea8f | 2018-05-15 11:57:16 +0200 | [diff] [blame] | 468 | * @idx Index of the PCR |
| 469 | * @idx_min_sz Minimum size in bytes of the pcrSelect array |
| 470 | * @data Output buffer for contents of the named PCR |
| 471 | * @updates Optional out parameter: number of updates for this PCR |
| 472 | * |
| 473 | * @return code of the operation |
| 474 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 475 | u32 tpm2_pcr_read(struct udevice *dev, u32 idx, unsigned int idx_min_sz, |
| 476 | void *data, unsigned int *updates); |
Miquel Raynal | 1c4ea8f | 2018-05-15 11:57:16 +0200 | [diff] [blame] | 477 | |
Miquel Raynal | 69cd8f0 | 2018-05-15 11:57:17 +0200 | [diff] [blame] | 478 | /** |
| 479 | * Issue a TPM2_GetCapability command. This implementation is limited |
| 480 | * to query property index that is 4-byte wide. |
| 481 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 482 | * @dev TPM device |
Miquel Raynal | 69cd8f0 | 2018-05-15 11:57:17 +0200 | [diff] [blame] | 483 | * @capability Partition of capabilities |
| 484 | * @property Further definition of capability, limited to be 4 bytes wide |
| 485 | * @buf Output buffer for capability information |
| 486 | * @prop_count Size of output buffer |
| 487 | * |
| 488 | * @return code of the operation |
| 489 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 490 | u32 tpm2_get_capability(struct udevice *dev, u32 capability, u32 property, |
| 491 | void *buf, size_t prop_count); |
Miquel Raynal | 69cd8f0 | 2018-05-15 11:57:17 +0200 | [diff] [blame] | 492 | |
Miquel Raynal | da9c339 | 2018-05-15 11:57:18 +0200 | [diff] [blame] | 493 | /** |
| 494 | * Issue a TPM2_DictionaryAttackLockReset command. |
| 495 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 496 | * @dev TPM device |
Miquel Raynal | da9c339 | 2018-05-15 11:57:18 +0200 | [diff] [blame] | 497 | * @pw Password |
| 498 | * @pw_sz Length of the password |
| 499 | * |
| 500 | * @return code of the operation |
| 501 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 502 | u32 tpm2_dam_reset(struct udevice *dev, const char *pw, const ssize_t pw_sz); |
Miquel Raynal | da9c339 | 2018-05-15 11:57:18 +0200 | [diff] [blame] | 503 | |
| 504 | /** |
| 505 | * Issue a TPM2_DictionaryAttackParameters command. |
| 506 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 507 | * @dev TPM device |
Miquel Raynal | da9c339 | 2018-05-15 11:57:18 +0200 | [diff] [blame] | 508 | * @pw Password |
| 509 | * @pw_sz Length of the password |
| 510 | * @max_tries Count of authorizations before lockout |
| 511 | * @recovery_time Time before decrementation of the failure count |
| 512 | * @lockout_recovery Time to wait after a lockout |
| 513 | * |
| 514 | * @return code of the operation |
| 515 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 516 | u32 tpm2_dam_parameters(struct udevice *dev, const char *pw, |
| 517 | const ssize_t pw_sz, unsigned int max_tries, |
| 518 | unsigned int recovery_time, |
Miquel Raynal | da9c339 | 2018-05-15 11:57:18 +0200 | [diff] [blame] | 519 | unsigned int lockout_recovery); |
| 520 | |
Miquel Raynal | dc26e91 | 2018-05-15 11:57:19 +0200 | [diff] [blame] | 521 | /** |
| 522 | * Issue a TPM2_HierarchyChangeAuth command. |
| 523 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 524 | * @dev TPM device |
Miquel Raynal | dc26e91 | 2018-05-15 11:57:19 +0200 | [diff] [blame] | 525 | * @handle Handle |
| 526 | * @newpw New password |
| 527 | * @newpw_sz Length of the new password |
| 528 | * @oldpw Old password |
| 529 | * @oldpw_sz Length of the old password |
| 530 | * |
| 531 | * @return code of the operation |
| 532 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 533 | int tpm2_change_auth(struct udevice *dev, u32 handle, const char *newpw, |
| 534 | const ssize_t newpw_sz, const char *oldpw, |
| 535 | const ssize_t oldpw_sz); |
Miquel Raynal | dc26e91 | 2018-05-15 11:57:19 +0200 | [diff] [blame] | 536 | |
Miquel Raynal | b9dd4fab | 2018-05-15 11:57:20 +0200 | [diff] [blame] | 537 | /** |
| 538 | * Issue a TPM_PCR_SetAuthPolicy command. |
| 539 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 540 | * @dev TPM device |
Miquel Raynal | b9dd4fab | 2018-05-15 11:57:20 +0200 | [diff] [blame] | 541 | * @pw Platform password |
| 542 | * @pw_sz Length of the password |
| 543 | * @index Index of the PCR |
| 544 | * @digest New key to access the PCR |
| 545 | * |
| 546 | * @return code of the operation |
| 547 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 548 | u32 tpm2_pcr_setauthpolicy(struct udevice *dev, const char *pw, |
| 549 | const ssize_t pw_sz, u32 index, const char *key); |
Miquel Raynal | b9dd4fab | 2018-05-15 11:57:20 +0200 | [diff] [blame] | 550 | |
| 551 | /** |
| 552 | * Issue a TPM_PCR_SetAuthValue command. |
| 553 | * |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 554 | * @dev TPM device |
Miquel Raynal | b9dd4fab | 2018-05-15 11:57:20 +0200 | [diff] [blame] | 555 | * @pw Platform password |
| 556 | * @pw_sz Length of the password |
| 557 | * @index Index of the PCR |
| 558 | * @digest New key to access the PCR |
| 559 | * @key_sz Length of the new key |
| 560 | * |
| 561 | * @return code of the operation |
| 562 | */ |
Simon Glass | abdc7b8 | 2018-11-18 14:22:27 -0700 | [diff] [blame] | 563 | u32 tpm2_pcr_setauthvalue(struct udevice *dev, const char *pw, |
| 564 | const ssize_t pw_sz, u32 index, const char *key, |
| 565 | const ssize_t key_sz); |
Miquel Raynal | b9dd4fab | 2018-05-15 11:57:20 +0200 | [diff] [blame] | 566 | |
Dhananjay Phadke | 06bea49 | 2020-06-04 16:43:59 -0700 | [diff] [blame] | 567 | /** |
| 568 | * Issue a TPM2_GetRandom command. |
| 569 | * |
| 570 | * @dev TPM device |
| 571 | * @param data output buffer for the random bytes |
| 572 | * @param count size of output buffer |
| 573 | * |
| 574 | * @return return code of the operation |
| 575 | */ |
| 576 | u32 tpm2_get_random(struct udevice *dev, void *data, u32 count); |
| 577 | |
Simon Glass | 7785bc1 | 2021-02-06 14:23:41 -0700 | [diff] [blame] | 578 | /** |
| 579 | * Lock data in the TPM |
| 580 | * |
| 581 | * Once locked the data cannot be written until after a reboot |
| 582 | * |
| 583 | * @dev TPM device |
| 584 | * @index Index of data to lock |
| 585 | * @return code of the operation |
| 586 | */ |
| 587 | u32 tpm2_write_lock(struct udevice *dev, u32 index); |
| 588 | |
Simon Glass | 63af92e | 2021-02-06 14:23:42 -0700 | [diff] [blame] | 589 | /** |
| 590 | * Disable access to any platform data |
| 591 | * |
| 592 | * This can be called to close off access to the firmware data in the data, |
| 593 | * before calling the kernel. |
| 594 | * |
| 595 | * @dev TPM device |
| 596 | * @return code of the operation |
| 597 | */ |
| 598 | u32 tpm2_disable_platform_hierarchy(struct udevice *dev); |
| 599 | |
Miquel Raynal | ff32245 | 2018-05-15 11:57:08 +0200 | [diff] [blame] | 600 | #endif /* __TPM_V2_H */ |