1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2013 The Chromium OS Authors.
4 * Coypright (c) 2013 Guntermann & Drunck GmbH
20 * Here is a partial implementation of TPM commands. Please consult TCG Main
21 * Specification for definitions of TPM commands.
24 #define TPM_HEADER_SIZE 10
26 /* Max buffer size supported by our tpm */
27 #define TPM_DEV_BUFSIZE 1260
29 #define TPM_PCR_MINIMUM_DIGEST_SIZE 20
32 * enum tpm_version - The version of the TPM stack to be used
33 * @TPM_V1: Use TPM v1.x stack
34 * @TPM_V2: Use TPM v2.x stack
42 * struct tpm_chip_priv - Information about a TPM, stored by the uclass
44 * These values must be set up by the device's probe() method before
45 * communcation is attempted. If the device has an xfer() method, this is
46 * not needed. There is no need to set up @buf.
48 * @version: TPM stack to be used
49 * @duration_ms: Length of each duration type in milliseconds
50 * @retry_time_ms: Time to wait before retrying receive
51 * @buf: Buffer used during the exchanges with the chip
52 * @pcr_count: Number of PCR per bank
53 * @pcr_select_min: Minimum size in bytes of the pcrSelect array
55 struct tpm_chip_priv {
56 enum tpm_version version;
58 uint duration_ms[TPM_DURATION_COUNT];
60 u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)]; /* Max buffer size + addr */
62 /* TPM v2 specific data */
68 * struct tpm_ops - low-level TPM operations
70 * These are designed to avoid loops and delays in the driver itself. These
71 * should be handled in the uclass.
73 * In gneral you should implement everything except xfer(). Where you need
74 * complete control of the transfer, then xfer() can be provided and will
75 * override the other methods.
77 * This interface is for low-level TPM access. It does not understand the
78 * concept of localities or the various TPM messages. That interface is
79 * defined in the functions later on in this file, but they all translate
80 * to bytes which are sent and received.
84 * open() - Request access to locality 0 for the caller
86 * After all commands have been completed the caller should call
89 * @dev: Device to open
90 * @return 0 ok OK, -ve on error
92 int (*open)(struct udevice *dev);
95 * close() - Close the current session
97 * Releasing the locked locality. Returns 0 on success, -ve 1 on
98 * failure (in case lock removal did not succeed).
100 * @dev: Device to close
101 * @return 0 ok OK, -ve on error
103 int (*close)(struct udevice *dev);
106 * get_desc() - Get a text description of the TPM
108 * @dev: Device to check
109 * @buf: Buffer to put the string
110 * @size: Maximum size of buffer
111 * @return length of string, or -ENOSPC it no space
113 int (*get_desc)(struct udevice *dev, char *buf, int size);
116 * send() - send data to the TPM
118 * @dev: Device to talk to
119 * @sendbuf: Buffer of the data to send
120 * @send_size: Size of the data to send
122 * Returns 0 on success or -ve on failure.
124 int (*send)(struct udevice *dev, const u8 *sendbuf, size_t send_size);
127 * recv() - receive a response from the TPM
129 * @dev: Device to talk to
130 * @recvbuf: Buffer to save the response to
131 * @max_size: Maximum number of bytes to receive
133 * Returns number of bytes received on success, -EAGAIN if the TPM
134 * response is not ready, -EINTR if cancelled, or other -ve value on
137 int (*recv)(struct udevice *dev, u8 *recvbuf, size_t max_size);
140 * cleanup() - clean up after an operation in progress
142 * This is called if receiving times out. The TPM may need to abort
143 * the current transaction if it did not complete, and make itself
146 * @dev: Device to talk to
148 int (*cleanup)(struct udevice *dev);
151 * xfer() - send data to the TPM and get response
153 * This method is optional. If it exists it is used in preference
154 * to send(), recv() and cleanup(). It should handle all aspects of
155 * TPM communication for a single transfer.
157 * @dev: Device to talk to
158 * @sendbuf: Buffer of the data to send
159 * @send_size: Size of the data to send
160 * @recvbuf: Buffer to save the response to
161 * @recv_size: Pointer to the size of the response buffer
163 * Returns 0 on success (and places the number of response bytes at
164 * recv_size) or -ve on failure.
166 int (*xfer)(struct udevice *dev, const u8 *sendbuf, size_t send_size,
167 u8 *recvbuf, size_t *recv_size);
170 #define tpm_get_ops(dev) ((struct tpm_ops *)device_get_ops(dev))
172 #define MAKE_TPM_CMD_ENTRY(cmd) \
173 U_BOOT_CMD_MKENT(cmd, 0, 1, do_tpm_ ## cmd, "", "")
175 #define TPM_COMMAND_NO_ARG(cmd) \
176 int do_##cmd(cmd_tbl_t *cmdtp, int flag, \
177 int argc, char * const argv[]) \
179 struct udevice *dev; \
182 rc = get_tpm(&dev); \
186 return CMD_RET_USAGE; \
187 return report_return_code(cmd(dev)); \
191 * tpm_open() - Request access to locality 0 for the caller
193 * After all commands have been completed the caller is supposed to
197 * Returns 0 on success, -ve on failure.
199 int tpm_open(struct udevice *dev);
202 * tpm_close() - Close the current session
204 * Releasing the locked locality. Returns 0 on success, -ve 1 on
205 * failure (in case lock removal did not succeed).
208 * Returns 0 on success, -ve on failure.
210 int tpm_close(struct udevice *dev);
213 * tpm_clear_and_reenable() - Force clear the TPM and reenable it
216 * @return 0 on success, -ve on failure
218 u32 tpm_clear_and_reenable(struct udevice *dev);
221 * tpm_get_desc() - Get a text description of the TPM
223 * @dev: Device to check
224 * @buf: Buffer to put the string
225 * @size: Maximum size of buffer
226 * @return length of string, or -ENOSPC it no space
228 int tpm_get_desc(struct udevice *dev, char *buf, int size);
231 * tpm_xfer() - send data to the TPM and get response
233 * This first uses the device's send() method to send the bytes. Then it calls
234 * recv() to get the reply. If recv() returns -EAGAIN then it will delay a
235 * short time and then call recv() again.
237 * Regardless of whether recv() completes successfully, it will then call
238 * cleanup() to finish the transaction.
240 * Note that the outgoing data is inspected to determine command type
241 * (ordinal) and a timeout is used for that command type.
244 * @sendbuf - buffer of the data to send
245 * @send_size size of the data to send
246 * @recvbuf - memory to save the response to
247 * @recv_len - pointer to the size of the response buffer
249 * Returns 0 on success (and places the number of response bytes at
250 * recv_len) or -ve on failure.
252 int tpm_xfer(struct udevice *dev, const u8 *sendbuf, size_t send_size,
253 u8 *recvbuf, size_t *recv_size);
256 * Initialize TPM device. It must be called before any TPM commands.
259 * @return 0 on success, non-0 on error.
261 int tpm_init(struct udevice *dev);
264 * Retrieve the array containing all the v1 (resp. v2) commands.
266 * @return a cmd_tbl_t array.
268 #if defined(CONFIG_TPM_V1)
269 cmd_tbl_t *get_tpm1_commands(unsigned int *size);
271 static inline cmd_tbl_t *get_tpm1_commands(unsigned int *size)
276 #if defined(CONFIG_TPM_V2)
277 cmd_tbl_t *get_tpm2_commands(unsigned int *size);
279 static inline cmd_tbl_t *get_tpm2_commands(unsigned int *size)
286 * tpm_get_version() - Find the version of a TPM
288 * This checks the uclass data for a TPM device and returns the version number
292 * @return version number (TPM_V1 or TPMV2)
294 enum tpm_version tpm_get_version(struct udevice *dev);
296 #endif /* __TPM_COMMON_H */