util/docker/doc.coreboot.org: Allow git to work in envs owned by root
[coreboot2.git] / src / security / tpm / tis.h
blob67ba911e03f44cbc1780085f7a42aa1ccac675d0
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef TIS_H_
4 #define TIS_H_
6 #include <security/tpm/tss_errors.h>
7 #include <types.h>
9 enum tis_access {
10 TPM_ACCESS_VALID = (1 << 7),
11 TPM_ACCESS_ACTIVE_LOCALITY = (1 << 5),
12 TPM_ACCESS_REQUEST_PENDING = (1 << 2),
13 TPM_ACCESS_REQUEST_USE = (1 << 1),
14 TPM_ACCESS_ESTABLISHMENT = (1 << 0),
17 enum tis_status {
18 TPM_STS_FAMILY_SHIFT = 26,
19 TPM_STS_FAMILY_MASK = (0x3 << TPM_STS_FAMILY_SHIFT),
20 TPM_STS_FAMILY_TPM_2_0 = (1 << TPM_STS_FAMILY_SHIFT),
21 TPM_STS_FAMILY_TPM_1_2 = (0 << TPM_STS_FAMILY_SHIFT),
22 TPM_STS_RESET_ESTABLISHMENT = (1 << 25),
23 TPM_STS_COMMAND_CANCEL = (1 << 24),
24 TPM_STS_BURST_COUNT_SHIFT = 8,
25 TPM_STS_BURST_COUNT_MASK = (0xFFFF << TPM_STS_BURST_COUNT_SHIFT),
26 TPM_STS_VALID = (1 << 7),
27 TPM_STS_COMMAND_READY = (1 << 6),
28 TPM_STS_GO = (1 << 5),
29 TPM_STS_DATA_AVAIL = (1 << 4),
30 TPM_STS_DATA_EXPECT = (1 << 3),
31 TPM_STS_SELF_TEST_DONE = (1 << 2),
32 TPM_STS_RESPONSE_RETRY = (1 << 1),
35 enum tpm_family {
36 TPM_UNKNOWN = 0,
37 TPM_1 = 1,
38 TPM_2 = 2,
42 * tis_sendrecv()
44 * Send the requested data to the TPM and then try to get its response
46 * @sendbuf - buffer of the data to send
47 * @send_size size of the data to send
48 * @recvbuf - memory to save the response to
49 * @recv_len - pointer to the size of the response buffer
51 * Returns TSS Return Code from TCG TPM Structures. See tss_errors.h
53 typedef tpm_result_t (*tis_sendrecv_fn)(const u8 *sendbuf, size_t send_size, u8 *recvbuf,
54 size_t *recv_len);
57 * Probe for the TPM device and set it up for use within locality 0.
59 * @family - pointer which is set to TPM family of the device
61 * Returns pointer to send-receive function on success or NULL on failure.
63 * Do not call this explicitly, it's meant to be used exclusively by TSS
64 * implementation (tlcl_lib_init() function to be specific).
66 typedef tis_sendrecv_fn (*tis_probe_fn)(enum tpm_family *family);
69 * tis_vendor_write()
71 * Vendor-specific function to send the requested data to the TPM.
73 * @addr - address of the register to write to
74 * @sendbuf - buffer of the data to send
75 * @send_size - size of the data to send
77 * Returns CB_SUCCESS 0 on success, CB_ERR on failure.
79 enum cb_err tis_vendor_write(unsigned int addr, const void *sendbuf, size_t send_size);
82 * tis_vendor_read()
84 * Vendor-specific function to read the requested data from the TPM.
86 * @addr - address of the register to read from
87 * @recvbuf - buffer of the data to read
88 * @recv_size - size of the output buffer
90 * Returns CB_SUCCESS on success or -1 on failure.
92 enum cb_err tis_vendor_read(unsigned int addr, void *recvbuf, size_t recv_size);
94 static inline bool tpm_first_access_this_boot(void)
96 return ENV_SEPARATE_VERSTAGE || ENV_BOOTBLOCK || !CONFIG(VBOOT);
99 #endif /* TIS_H_ */