blob: c6316329f5ab58c720135eb8b68f4cb107aa7aa6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Vadim Bendebury5e124722011-10-17 08:36:14 +00002/*
Che-liang Chiou8732b072013-02-28 09:34:57 +00003 * Copyright (c) 2013 The Chromium OS Authors.
Reinhard Pfaube6c1522013-06-26 15:55:13 +02004 * Coypright (c) 2013 Guntermann & Drunck GmbH
Vadim Bendebury5e124722011-10-17 08:36:14 +00005 */
6
Che-liang Chiou8732b072013-02-28 09:34:57 +00007#ifndef __TPM_H
8#define __TPM_H
Vadim Bendebury5e124722011-10-17 08:36:14 +00009
Vadim Bendebury5e124722011-10-17 08:36:14 +000010/*
Che-liang Chiou8732b072013-02-28 09:34:57 +000011 * Here is a partial implementation of TPM commands. Please consult TCG Main
12 * Specification for definitions of TPM commands.
Vadim Bendebury5e124722011-10-17 08:36:14 +000013 */
Vadim Bendebury5e124722011-10-17 08:36:14 +000014
Simon Glassf255d312015-08-22 18:31:31 -060015#define TPM_HEADER_SIZE 10
16
17enum tpm_duration {
18 TPM_SHORT = 0,
19 TPM_MEDIUM = 1,
20 TPM_LONG = 2,
21 TPM_UNDEFINED,
22
23 TPM_DURATION_COUNT,
24};
25
Che-liang Chiou8732b072013-02-28 09:34:57 +000026enum tpm_startup_type {
27 TPM_ST_CLEAR = 0x0001,
28 TPM_ST_STATE = 0x0002,
29 TPM_ST_DEACTIVATED = 0x0003,
30};
31
32enum tpm_physical_presence {
33 TPM_PHYSICAL_PRESENCE_HW_DISABLE = 0x0200,
34 TPM_PHYSICAL_PRESENCE_CMD_DISABLE = 0x0100,
35 TPM_PHYSICAL_PRESENCE_LIFETIME_LOCK = 0x0080,
36 TPM_PHYSICAL_PRESENCE_HW_ENABLE = 0x0040,
37 TPM_PHYSICAL_PRESENCE_CMD_ENABLE = 0x0020,
38 TPM_PHYSICAL_PRESENCE_NOTPRESENT = 0x0010,
39 TPM_PHYSICAL_PRESENCE_PRESENT = 0x0008,
40 TPM_PHYSICAL_PRESENCE_LOCK = 0x0004,
41};
42
43enum tpm_nv_index {
44 TPM_NV_INDEX_LOCK = 0xffffffff,
45 TPM_NV_INDEX_0 = 0x00000000,
46 TPM_NV_INDEX_DIR = 0x10000001,
47};
48
Mario Six7690be32017-01-11 16:00:50 +010049enum tpm_resource_type {
50 TPM_RT_KEY = 0x00000001,
51 TPM_RT_AUTH = 0x00000002,
52 TPM_RT_HASH = 0x00000003,
53 TPM_RT_TRANS = 0x00000004,
54 TPM_RT_CONTEXT = 0x00000005,
55 TPM_RT_COUNTER = 0x00000006,
56 TPM_RT_DELEGATE = 0x00000007,
57 TPM_RT_DAA_TPM = 0x00000008,
58 TPM_RT_DAA_V0 = 0x00000009,
59 TPM_RT_DAA_V1 = 0x0000000A,
60};
61
62enum tpm_capability_areas {
63 TPM_CAP_ORD = 0x00000001,
64 TPM_CAP_ALG = 0x00000002,
65 TPM_CAP_PID = 0x00000003,
66 TPM_CAP_FLAG = 0x00000004,
67 TPM_CAP_PROPERTY = 0x00000005,
68 TPM_CAP_VERSION = 0x00000006,
69 TPM_CAP_KEY_HANDLE = 0x00000007,
70 TPM_CAP_CHECK_LOADED = 0x00000008,
71 TPM_CAP_SYM_MODE = 0x00000009,
72 TPM_CAP_KEY_STATUS = 0x0000000C,
73 TPM_CAP_NV_LIST = 0x0000000D,
74 TPM_CAP_MFR = 0x00000010,
75 TPM_CAP_NV_INDEX = 0x00000011,
76 TPM_CAP_TRANS_ALG = 0x00000012,
77 TPM_CAP_HANDLE = 0x00000014,
78 TPM_CAP_TRANS_ES = 0x00000015,
79 TPM_CAP_AUTH_ENCRYPT = 0x00000017,
80 TPM_CAP_SELECT_SIZE = 0x00000018,
81 TPM_CAP_DA_LOGIC = 0x00000019,
82 TPM_CAP_VERSION_VAL = 0x0000001A,
83};
84
Simon Glass2132f972015-08-22 18:31:41 -060085#define TPM_NV_PER_GLOBALLOCK (1U << 15)
André Draszik1259f772017-10-03 16:55:53 +010086#define TPM_NV_PER_PPREAD (1U << 16)
Simon Glass2132f972015-08-22 18:31:41 -060087#define TPM_NV_PER_PPWRITE (1U << 0)
88#define TPM_NV_PER_READ_STCLEAR (1U << 31)
89#define TPM_NV_PER_WRITE_STCLEAR (1U << 14)
André Draszik1259f772017-10-03 16:55:53 +010090#define TPM_NV_PER_WRITEDEFINE (1U << 13)
91#define TPM_NV_PER_WRITEALL (1U << 12)
Simon Glass2132f972015-08-22 18:31:41 -060092
93enum {
94 TPM_PUBEK_SIZE = 256,
95};
96
Che-liang Chiou8732b072013-02-28 09:34:57 +000097/**
Reinhard Pfaube6c1522013-06-26 15:55:13 +020098 * TPM return codes as defined in the TCG Main specification
99 * (TPM Main Part 2 Structures; Specification version 1.2)
100 */
101enum tpm_return_code {
102 TPM_BASE = 0x00000000,
103 TPM_NON_FATAL = 0x00000800,
104 TPM_SUCCESS = TPM_BASE,
105 /* TPM-defined fatal error codes */
106 TPM_AUTHFAIL = TPM_BASE + 1,
107 TPM_BADINDEX = TPM_BASE + 2,
108 TPM_BAD_PARAMETER = TPM_BASE + 3,
109 TPM_AUDITFAILURE = TPM_BASE + 4,
110 TPM_CLEAR_DISABLED = TPM_BASE + 5,
111 TPM_DEACTIVATED = TPM_BASE + 6,
112 TPM_DISABLED = TPM_BASE + 7,
113 TPM_DISABLED_CMD = TPM_BASE + 8,
114 TPM_FAIL = TPM_BASE + 9,
115 TPM_BAD_ORDINAL = TPM_BASE + 10,
116 TPM_INSTALL_DISABLED = TPM_BASE + 11,
117 TPM_INVALID_KEYHANDLE = TPM_BASE + 12,
118 TPM_KEYNOTFOUND = TPM_BASE + 13,
119 TPM_INAPPROPRIATE_ENC = TPM_BASE + 14,
120 TPM_MIGRATE_FAIL = TPM_BASE + 15,
121 TPM_INVALID_PCR_INFO = TPM_BASE + 16,
122 TPM_NOSPACE = TPM_BASE + 17,
123 TPM_NOSRK = TPM_BASE + 18,
124 TPM_NOTSEALED_BLOB = TPM_BASE + 19,
125 TPM_OWNER_SET = TPM_BASE + 20,
126 TPM_RESOURCES = TPM_BASE + 21,
127 TPM_SHORTRANDOM = TPM_BASE + 22,
128 TPM_SIZE = TPM_BASE + 23,
129 TPM_WRONGPCRVAL = TPM_BASE + 24,
130 TPM_BAD_PARAM_SIZE = TPM_BASE + 25,
131 TPM_SHA_THREAD = TPM_BASE + 26,
132 TPM_SHA_ERROR = TPM_BASE + 27,
133 TPM_FAILEDSELFTEST = TPM_BASE + 28,
134 TPM_AUTH2FAIL = TPM_BASE + 29,
135 TPM_BADTAG = TPM_BASE + 30,
136 TPM_IOERROR = TPM_BASE + 31,
137 TPM_ENCRYPT_ERROR = TPM_BASE + 32,
138 TPM_DECRYPT_ERROR = TPM_BASE + 33,
139 TPM_INVALID_AUTHHANDLE = TPM_BASE + 34,
140 TPM_NO_ENDORSEMENT = TPM_BASE + 35,
141 TPM_INVALID_KEYUSAGE = TPM_BASE + 36,
142 TPM_WRONG_ENTITYTYPE = TPM_BASE + 37,
143 TPM_INVALID_POSTINIT = TPM_BASE + 38,
144 TPM_INAPPROPRIATE_SIG = TPM_BASE + 39,
145 TPM_BAD_KEY_PROPERTY = TPM_BASE + 40,
146 TPM_BAD_MIGRATION = TPM_BASE + 41,
147 TPM_BAD_SCHEME = TPM_BASE + 42,
148 TPM_BAD_DATASIZE = TPM_BASE + 43,
149 TPM_BAD_MODE = TPM_BASE + 44,
150 TPM_BAD_PRESENCE = TPM_BASE + 45,
151 TPM_BAD_VERSION = TPM_BASE + 46,
152 TPM_NO_WRAP_TRANSPORT = TPM_BASE + 47,
153 TPM_AUDITFAIL_UNSUCCESSFUL = TPM_BASE + 48,
154 TPM_AUDITFAIL_SUCCESSFUL = TPM_BASE + 49,
155 TPM_NOTRESETABLE = TPM_BASE + 50,
156 TPM_NOTLOCAL = TPM_BASE + 51,
157 TPM_BAD_TYPE = TPM_BASE + 52,
158 TPM_INVALID_RESOURCE = TPM_BASE + 53,
159 TPM_NOTFIPS = TPM_BASE + 54,
160 TPM_INVALID_FAMILY = TPM_BASE + 55,
161 TPM_NO_NV_PERMISSION = TPM_BASE + 56,
162 TPM_REQUIRES_SIGN = TPM_BASE + 57,
163 TPM_KEY_NOTSUPPORTED = TPM_BASE + 58,
164 TPM_AUTH_CONFLICT = TPM_BASE + 59,
165 TPM_AREA_LOCKED = TPM_BASE + 60,
166 TPM_BAD_LOCALITY = TPM_BASE + 61,
167 TPM_READ_ONLY = TPM_BASE + 62,
168 TPM_PER_NOWRITE = TPM_BASE + 63,
169 TPM_FAMILY_COUNT = TPM_BASE + 64,
170 TPM_WRITE_LOCKED = TPM_BASE + 65,
171 TPM_BAD_ATTRIBUTES = TPM_BASE + 66,
172 TPM_INVALID_STRUCTURE = TPM_BASE + 67,
173 TPM_KEY_OWNER_CONTROL = TPM_BASE + 68,
174 TPM_BAD_COUNTER = TPM_BASE + 69,
175 TPM_NOT_FULLWRITE = TPM_BASE + 70,
176 TPM_CONTEXT_GAP = TPM_BASE + 71,
177 TPM_MAXNVWRITES = TPM_BASE + 72,
178 TPM_NOOPERATOR = TPM_BASE + 73,
179 TPM_RESOURCEMISSING = TPM_BASE + 74,
180 TPM_DELEGATE_LOCK = TPM_BASE + 75,
181 TPM_DELEGATE_FAMILY = TPM_BASE + 76,
182 TPM_DELEGATE_ADMIN = TPM_BASE + 77,
183 TPM_TRANSPORT_NOTEXCLUSIVE = TPM_BASE + 78,
184 TPM_OWNER_CONTROL = TPM_BASE + 79,
185 TPM_DAA_RESOURCES = TPM_BASE + 80,
186 TPM_DAA_INPUT_DATA0 = TPM_BASE + 81,
187 TPM_DAA_INPUT_DATA1 = TPM_BASE + 82,
188 TPM_DAA_ISSUER_SETTINGS = TPM_BASE + 83,
189 TPM_DAA_TPM_SETTINGS = TPM_BASE + 84,
190 TPM_DAA_STAGE = TPM_BASE + 85,
191 TPM_DAA_ISSUER_VALIDITY = TPM_BASE + 86,
192 TPM_DAA_WRONG_W = TPM_BASE + 87,
193 TPM_BAD_HANDLE = TPM_BASE + 88,
194 TPM_BAD_DELEGATE = TPM_BASE + 89,
195 TPM_BADCONTEXT = TPM_BASE + 90,
196 TPM_TOOMANYCONTEXTS = TPM_BASE + 91,
197 TPM_MA_TICKET_SIGNATURE = TPM_BASE + 92,
198 TPM_MA_DESTINATION = TPM_BASE + 93,
199 TPM_MA_SOURCE = TPM_BASE + 94,
200 TPM_MA_AUTHORITY = TPM_BASE + 95,
201 TPM_PERMANENTEK = TPM_BASE + 97,
202 TPM_BAD_SIGNATURE = TPM_BASE + 98,
203 TPM_NOCONTEXTSPACE = TPM_BASE + 99,
204 /* TPM-defined non-fatal errors */
205 TPM_RETRY = TPM_BASE + TPM_NON_FATAL,
206 TPM_NEEDS_SELFTEST = TPM_BASE + TPM_NON_FATAL + 1,
207 TPM_DOING_SELFTEST = TPM_BASE + TPM_NON_FATAL + 2,
208 TPM_DEFEND_LOCK_RUNNING = TPM_BASE + TPM_NON_FATAL + 3,
209};
210
Simon Glass2132f972015-08-22 18:31:41 -0600211struct tpm_permanent_flags {
212 __be16 tag;
213 u8 disable;
214 u8 ownership;
215 u8 deactivated;
216 u8 read_pubek;
217 u8 disable_owner_clear;
218 u8 allow_maintenance;
219 u8 physical_presence_lifetime_lock;
220 u8 physical_presence_hw_enable;
221 u8 physical_presence_cmd_enable;
222 u8 cekp_used;
223 u8 tpm_post;
224 u8 tpm_post_lock;
225 u8 fips;
226 u8 operator;
227 u8 enable_revoke_ek;
228 u8 nv_locked;
229 u8 read_srk_pub;
230 u8 tpm_established;
231 u8 maintenance_done;
232 u8 disable_full_da_logic_info;
233} __packed;
234
Simon Glassf255d312015-08-22 18:31:31 -0600235/* Max buffer size supported by our tpm */
236#define TPM_DEV_BUFSIZE 1260
237
238/**
239 * struct tpm_chip_priv - Information about a TPM, stored by the uclass
240 *
241 * These values must be set up by the device's probe() method before
242 * communcation is attempted. If the device has an xfer() method, this is
243 * not needed. There is no need to set up @buf.
244 *
245 * @duration_ms: Length of each duration type in milliseconds
246 * @retry_time_ms: Time to wait before retrying receive
247 */
248struct tpm_chip_priv {
249 uint duration_ms[TPM_DURATION_COUNT];
250 uint retry_time_ms;
251 u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)]; /* Max buffer size + addr */
252};
253
254/**
255 * struct tpm_ops - low-level TPM operations
256 *
257 * These are designed to avoid loops and delays in the driver itself. These
258 * should be handled in the uclass.
259 *
260 * In gneral you should implement everything except xfer(). Where you need
261 * complete control of the transfer, then xfer() can be provided and will
262 * override the other methods.
263 *
264 * This interface is for low-level TPM access. It does not understand the
265 * concept of localities or the various TPM messages. That interface is
266 * defined in the functions later on in this file, but they all translate
267 * to bytes which are sent and received.
268 */
269struct tpm_ops {
270 /**
271 * open() - Request access to locality 0 for the caller
272 *
273 * After all commands have been completed the caller should call
274 * close().
275 *
276 * @dev: Device to close
277 * @return 0 ok OK, -ve on error
278 */
279 int (*open)(struct udevice *dev);
280
281 /**
282 * close() - Close the current session
283 *
284 * Releasing the locked locality. Returns 0 on success, -ve 1 on
285 * failure (in case lock removal did not succeed).
286 *
287 * @dev: Device to close
288 * @return 0 ok OK, -ve on error
289 */
290 int (*close)(struct udevice *dev);
291
292 /**
293 * get_desc() - Get a text description of the TPM
294 *
295 * @dev: Device to check
296 * @buf: Buffer to put the string
297 * @size: Maximum size of buffer
298 * @return length of string, or -ENOSPC it no space
299 */
300 int (*get_desc)(struct udevice *dev, char *buf, int size);
301
302 /**
303 * send() - send data to the TPM
304 *
305 * @dev: Device to talk to
306 * @sendbuf: Buffer of the data to send
307 * @send_size: Size of the data to send
308 *
309 * Returns 0 on success or -ve on failure.
310 */
311 int (*send)(struct udevice *dev, const uint8_t *sendbuf,
312 size_t send_size);
313
314 /**
315 * recv() - receive a response from the TPM
316 *
317 * @dev: Device to talk to
318 * @recvbuf: Buffer to save the response to
319 * @max_size: Maximum number of bytes to receive
320 *
321 * Returns number of bytes received on success, -EAGAIN if the TPM
322 * response is not ready, -EINTR if cancelled, or other -ve value on
323 * failure.
324 */
325 int (*recv)(struct udevice *dev, uint8_t *recvbuf, size_t max_size);
326
327 /**
328 * cleanup() - clean up after an operation in progress
329 *
330 * This is called if receiving times out. The TPM may need to abort
331 * the current transaction if it did not complete, and make itself
332 * ready for another.
333 *
334 * @dev: Device to talk to
335 */
336 int (*cleanup)(struct udevice *dev);
337
338 /**
339 * xfer() - send data to the TPM and get response
340 *
341 * This method is optional. If it exists it is used in preference
342 * to send(), recv() and cleanup(). It should handle all aspects of
343 * TPM communication for a single transfer.
344 *
345 * @dev: Device to talk to
346 * @sendbuf: Buffer of the data to send
347 * @send_size: Size of the data to send
348 * @recvbuf: Buffer to save the response to
349 * @recv_size: Pointer to the size of the response buffer
350 *
351 * Returns 0 on success (and places the number of response bytes at
352 * recv_size) or -ve on failure.
353 */
354 int (*xfer)(struct udevice *dev, const uint8_t *sendbuf,
355 size_t send_size, uint8_t *recvbuf, size_t *recv_size);
356};
357
358#define tpm_get_ops(dev) ((struct tpm_ops *)device_get_ops(dev))
359
360/**
361 * tpm_open() - Request access to locality 0 for the caller
362 *
363 * After all commands have been completed the caller is supposed to
364 * call tpm_close().
365 *
366 * Returns 0 on success, -ve on failure.
367 */
368int tpm_open(struct udevice *dev);
369
370/**
371 * tpm_close() - Close the current session
372 *
373 * Releasing the locked locality. Returns 0 on success, -ve 1 on
374 * failure (in case lock removal did not succeed).
375 */
376int tpm_close(struct udevice *dev);
377
378/**
379 * tpm_get_desc() - Get a text description of the TPM
380 *
381 * @dev: Device to check
382 * @buf: Buffer to put the string
383 * @size: Maximum size of buffer
384 * @return length of string, or -ENOSPC it no space
385 */
386int tpm_get_desc(struct udevice *dev, char *buf, int size);
387
388/**
389 * tpm_xfer() - send data to the TPM and get response
390 *
391 * This first uses the device's send() method to send the bytes. Then it calls
392 * recv() to get the reply. If recv() returns -EAGAIN then it will delay a
393 * short time and then call recv() again.
394 *
395 * Regardless of whether recv() completes successfully, it will then call
396 * cleanup() to finish the transaction.
397 *
398 * Note that the outgoing data is inspected to determine command type
399 * (ordinal) and a timeout is used for that command type.
400 *
401 * @sendbuf - buffer of the data to send
402 * @send_size size of the data to send
403 * @recvbuf - memory to save the response to
404 * @recv_len - pointer to the size of the response buffer
405 *
406 * Returns 0 on success (and places the number of response bytes at
407 * recv_len) or -ve on failure.
408 */
409int tpm_xfer(struct udevice *dev, const uint8_t *sendbuf, size_t send_size,
410 uint8_t *recvbuf, size_t *recv_size);
411
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200412/**
Che-liang Chiou8732b072013-02-28 09:34:57 +0000413 * Initialize TPM device. It must be called before any TPM commands.
Vadim Bendebury5e124722011-10-17 08:36:14 +0000414 *
Che-liang Chiou8732b072013-02-28 09:34:57 +0000415 * @return 0 on success, non-0 on error.
Vadim Bendebury5e124722011-10-17 08:36:14 +0000416 */
Simon Glassc8a8c512015-08-22 18:31:32 -0600417int tpm_init(void);
Vadim Bendebury5e124722011-10-17 08:36:14 +0000418
Che-liang Chiou8732b072013-02-28 09:34:57 +0000419/**
420 * Issue a TPM_Startup command.
Vadim Bendebury5e124722011-10-17 08:36:14 +0000421 *
Che-liang Chiou8732b072013-02-28 09:34:57 +0000422 * @param mode TPM startup mode
423 * @return return code of the operation
Vadim Bendebury5e124722011-10-17 08:36:14 +0000424 */
Che-liang Chiou8732b072013-02-28 09:34:57 +0000425uint32_t tpm_startup(enum tpm_startup_type mode);
Vadim Bendebury5e124722011-10-17 08:36:14 +0000426
Che-liang Chiou8732b072013-02-28 09:34:57 +0000427/**
428 * Issue a TPM_SelfTestFull command.
Vadim Bendebury5e124722011-10-17 08:36:14 +0000429 *
Che-liang Chiou8732b072013-02-28 09:34:57 +0000430 * @return return code of the operation
Vadim Bendebury5e124722011-10-17 08:36:14 +0000431 */
Che-liang Chiou8732b072013-02-28 09:34:57 +0000432uint32_t tpm_self_test_full(void);
Vadim Bendebury5e124722011-10-17 08:36:14 +0000433
Che-liang Chiou8732b072013-02-28 09:34:57 +0000434/**
435 * Issue a TPM_ContinueSelfTest command.
436 *
437 * @return return code of the operation
438 */
439uint32_t tpm_continue_self_test(void);
440
441/**
442 * Issue a TPM_NV_DefineSpace command. The implementation is limited
443 * to specify TPM_NV_ATTRIBUTES and size of the area. The area index
444 * could be one of the special value listed in enum tpm_nv_index.
445 *
446 * @param index index of the area
447 * @param perm TPM_NV_ATTRIBUTES of the area
448 * @param size size of the area
449 * @return return code of the operation
450 */
451uint32_t tpm_nv_define_space(uint32_t index, uint32_t perm, uint32_t size);
452
453/**
454 * Issue a TPM_NV_ReadValue command. This implementation is limited
455 * to read the area from offset 0. The area index could be one of
456 * the special value listed in enum tpm_nv_index.
457 *
458 * @param index index of the area
459 * @param data output buffer of the area contents
460 * @param count size of output buffer
461 * @return return code of the operation
462 */
463uint32_t tpm_nv_read_value(uint32_t index, void *data, uint32_t count);
464
465/**
466 * Issue a TPM_NV_WriteValue command. This implementation is limited
467 * to write the area from offset 0. The area index could be one of
468 * the special value listed in enum tpm_nv_index.
469 *
470 * @param index index of the area
471 * @param data input buffer to be wrote to the area
472 * @param length length of data bytes of input buffer
473 * @return return code of the operation
474 */
475uint32_t tpm_nv_write_value(uint32_t index, const void *data, uint32_t length);
476
477/**
478 * Issue a TPM_Extend command.
479 *
480 * @param index index of the PCR
481 * @param in_digest 160-bit value representing the event to be
482 * recorded
483 * @param out_digest 160-bit PCR value after execution of the
484 * command
485 * @return return code of the operation
486 */
487uint32_t tpm_extend(uint32_t index, const void *in_digest, void *out_digest);
488
489/**
490 * Issue a TPM_PCRRead command.
491 *
492 * @param index index of the PCR
493 * @param data output buffer for contents of the named PCR
494 * @param count size of output buffer
495 * @return return code of the operation
496 */
497uint32_t tpm_pcr_read(uint32_t index, void *data, size_t count);
498
499/**
500 * Issue a TSC_PhysicalPresence command. TPM physical presence flag
501 * is bit-wise OR'ed of flags listed in enum tpm_physical_presence.
502 *
503 * @param presence TPM physical presence flag
504 * @return return code of the operation
505 */
506uint32_t tpm_tsc_physical_presence(uint16_t presence);
507
508/**
509 * Issue a TPM_ReadPubek command.
510 *
511 * @param data output buffer for the public endorsement key
512 * @param count size of ouput buffer
513 * @return return code of the operation
514 */
515uint32_t tpm_read_pubek(void *data, size_t count);
516
517/**
518 * Issue a TPM_ForceClear command.
519 *
520 * @return return code of the operation
521 */
522uint32_t tpm_force_clear(void);
523
524/**
525 * Issue a TPM_PhysicalEnable command.
526 *
527 * @return return code of the operation
528 */
529uint32_t tpm_physical_enable(void);
530
531/**
532 * Issue a TPM_PhysicalDisable command.
533 *
534 * @return return code of the operation
535 */
536uint32_t tpm_physical_disable(void);
537
538/**
539 * Issue a TPM_PhysicalSetDeactivated command.
540 *
541 * @param state boolean state of the deactivated flag
542 * @return return code of the operation
543 */
544uint32_t tpm_physical_set_deactivated(uint8_t state);
545
546/**
547 * Issue a TPM_GetCapability command. This implementation is limited
548 * to query sub_cap index that is 4-byte wide.
549 *
550 * @param cap_area partition of capabilities
551 * @param sub_cap further definition of capability, which is
552 * limited to be 4-byte wide
553 * @param cap output buffer for capability information
554 * @param count size of ouput buffer
555 * @return return code of the operation
556 */
557uint32_t tpm_get_capability(uint32_t cap_area, uint32_t sub_cap,
558 void *cap, size_t count);
559
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200560/**
561 * Issue a TPM_FlushSpecific command for a AUTH ressource.
562 *
563 * @param auth_handle handle of the auth session
564 * @return return code of the operation
565 */
566uint32_t tpm_terminate_auth_session(uint32_t auth_handle);
567
568/**
569 * Issue a TPM_OIAP command to setup an object independant authorization
570 * session.
571 * Information about the session is stored internally.
572 * If there was already an OIAP session active it is terminated and a new
573 * session is set up.
574 *
575 * @param auth_handle pointer to the (new) auth handle or NULL.
576 * @return return code of the operation
577 */
578uint32_t tpm_oiap(uint32_t *auth_handle);
579
580/**
581 * Ends an active OIAP session.
582 *
583 * @return return code of the operation
584 */
585uint32_t tpm_end_oiap(void);
586
587/**
588 * Issue a TPM_LoadKey2 (Auth1) command using an OIAP session for authenticating
589 * the usage of the parent key.
590 *
591 * @param parent_handle handle of the parent key.
592 * @param key pointer to the key structure (TPM_KEY or TPM_KEY12).
593 * @param key_length size of the key structure
594 * @param parent_key_usage_auth usage auth for the parent key
595 * @param key_handle pointer to the key handle
596 * @return return code of the operation
597 */
598uint32_t tpm_load_key2_oiap(uint32_t parent_handle,
599 const void *key, size_t key_length,
600 const void *parent_key_usage_auth,
601 uint32_t *key_handle);
602
603/**
604 * Issue a TPM_GetPubKey (Auth1) command using an OIAP session for
605 * authenticating the usage of the key.
606 *
607 * @param key_handle handle of the key
608 * @param usage_auth usage auth for the key
609 * @param pubkey pointer to the pub key buffer; may be NULL if the pubkey
610 * should not be stored.
611 * @param pubkey_len pointer to the pub key buffer len. On entry: the size of
612 * the provided pubkey buffer. On successful exit: the size
613 * of the stored TPM_PUBKEY structure (iff pubkey != NULL).
614 * @return return code of the operation
615 */
616uint32_t tpm_get_pub_key_oiap(uint32_t key_handle, const void *usage_auth,
617 void *pubkey, size_t *pubkey_len);
618
Simon Glass2132f972015-08-22 18:31:41 -0600619/**
620 * Get the TPM permanent flags value
621 *
622 * @param pflags Place to put permanent flags
623 * @return return code of the operation
624 */
625uint32_t tpm_get_permanent_flags(struct tpm_permanent_flags *pflags);
626
627/**
628 * Get the TPM permissions
629 *
630 * @param perm Returns permissions value
631 * @return return code of the operation
632 */
633uint32_t tpm_get_permissions(uint32_t index, uint32_t *perm);
634
Mario Six7690be32017-01-11 16:00:50 +0100635/**
636 * Flush a resource with a given handle and type from the TPM
637 *
638 * @param key_handle handle of the resource
639 * @param resource_type type of the resource
640 * @return return code of the operation
641 */
642uint32_t tpm_flush_specific(uint32_t key_handle, uint32_t resource_type);
643
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100644#ifdef CONFIG_TPM_LOAD_KEY_BY_SHA1
645/**
646 * Search for a key by usage AuthData and the hash of the parent's pub key.
647 *
648 * @param auth Usage auth of the key to search for
649 * @param pubkey_digest SHA1 hash of the pub key structure of the key
650 * @param[out] handle The handle of the key (Non-null iff found)
651 * @return 0 if key was found in TPM; != 0 if not.
652 */
653uint32_t tpm_find_key_sha1(const uint8_t auth[20], const uint8_t
654 pubkey_digest[20], uint32_t *handle);
655#endif /* CONFIG_TPM_LOAD_KEY_BY_SHA1 */
André Draszik3c605022017-10-03 16:55:52 +0100656
657/**
658 * Read random bytes from the TPM RNG. The implementation deals with the fact
659 * that the TPM may legally return fewer bytes than requested by retrying
660 * until @p count bytes have been received.
661 *
662 * @param data output buffer for the random bytes
663 * @param count size of output buffer
664 * @return return code of the operation
665 */
666uint32_t tpm_get_random(void *data, uint32_t count);
667
Che-liang Chiou8732b072013-02-28 09:34:57 +0000668#endif /* __TPM_H */