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
30 * struct tpm_chip_priv - Information about a TPM, stored by the uclass
32 * These values must be set up by the device's probe() method before
33 * communcation is attempted. If the device has an xfer() method, this is
34 * not needed. There is no need to set up @buf.
36 * @duration_ms: Length of each duration type in milliseconds
37 * @retry_time_ms: Time to wait before retrying receive
39 struct tpm_chip_priv {
40 uint duration_ms[TPM_DURATION_COUNT];
42 u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)]; /* Max buffer size + addr */
46 * struct tpm_ops - low-level TPM operations
48 * These are designed to avoid loops and delays in the driver itself. These
49 * should be handled in the uclass.
51 * In gneral you should implement everything except xfer(). Where you need
52 * complete control of the transfer, then xfer() can be provided and will
53 * override the other methods.
55 * This interface is for low-level TPM access. It does not understand the
56 * concept of localities or the various TPM messages. That interface is
57 * defined in the functions later on in this file, but they all translate
58 * to bytes which are sent and received.
62 * open() - Request access to locality 0 for the caller
64 * After all commands have been completed the caller should call
67 * @dev: Device to close
68 * @return 0 ok OK, -ve on error
70 int (*open)(struct udevice *dev);
73 * close() - Close the current session
75 * Releasing the locked locality. Returns 0 on success, -ve 1 on
76 * failure (in case lock removal did not succeed).
78 * @dev: Device to close
79 * @return 0 ok OK, -ve on error
81 int (*close)(struct udevice *dev);
84 * get_desc() - Get a text description of the TPM
86 * @dev: Device to check
87 * @buf: Buffer to put the string
88 * @size: Maximum size of buffer
89 * @return length of string, or -ENOSPC it no space
91 int (*get_desc)(struct udevice *dev, char *buf, int size);
94 * send() - send data to the TPM
96 * @dev: Device to talk to
97 * @sendbuf: Buffer of the data to send
98 * @send_size: Size of the data to send
100 * Returns 0 on success or -ve on failure.
102 int (*send)(struct udevice *dev, const u8 *sendbuf, size_t send_size);
105 * recv() - receive a response from the TPM
107 * @dev: Device to talk to
108 * @recvbuf: Buffer to save the response to
109 * @max_size: Maximum number of bytes to receive
111 * Returns number of bytes received on success, -EAGAIN if the TPM
112 * response is not ready, -EINTR if cancelled, or other -ve value on
115 int (*recv)(struct udevice *dev, u8 *recvbuf, size_t max_size);
118 * cleanup() - clean up after an operation in progress
120 * This is called if receiving times out. The TPM may need to abort
121 * the current transaction if it did not complete, and make itself
124 * @dev: Device to talk to
126 int (*cleanup)(struct udevice *dev);
129 * xfer() - send data to the TPM and get response
131 * This method is optional. If it exists it is used in preference
132 * to send(), recv() and cleanup(). It should handle all aspects of
133 * TPM communication for a single transfer.
135 * @dev: Device to talk to
136 * @sendbuf: Buffer of the data to send
137 * @send_size: Size of the data to send
138 * @recvbuf: Buffer to save the response to
139 * @recv_size: Pointer to the size of the response buffer
141 * Returns 0 on success (and places the number of response bytes at
142 * recv_size) or -ve on failure.
144 int (*xfer)(struct udevice *dev, const u8 *sendbuf, size_t send_size,
145 u8 *recvbuf, size_t *recv_size);
148 #define tpm_get_ops(dev) ((struct tpm_ops *)device_get_ops(dev))
150 #define MAKE_TPM_CMD_ENTRY(cmd) \
151 U_BOOT_CMD_MKENT(cmd, 0, 1, do_tpm_ ## cmd, "", "")
153 #define TPM_COMMAND_NO_ARG(cmd) \
154 int do_##cmd(cmd_tbl_t *cmdtp, int flag, \
155 int argc, char * const argv[]) \
158 return CMD_RET_USAGE; \
159 return report_return_code(cmd()); \
163 * tpm_get_desc() - Get a text description of the TPM
165 * @dev: Device to check
166 * @buf: Buffer to put the string
167 * @size: Maximum size of buffer
168 * @return length of string, or -ENOSPC it no space
170 int tpm_get_desc(struct udevice *dev, char *buf, int size);
173 * tpm_xfer() - send data to the TPM and get response
175 * This first uses the device's send() method to send the bytes. Then it calls
176 * recv() to get the reply. If recv() returns -EAGAIN then it will delay a
177 * short time and then call recv() again.
179 * Regardless of whether recv() completes successfully, it will then call
180 * cleanup() to finish the transaction.
182 * Note that the outgoing data is inspected to determine command type
183 * (ordinal) and a timeout is used for that command type.
185 * @sendbuf - buffer of the data to send
186 * @send_size size of the data to send
187 * @recvbuf - memory to save the response to
188 * @recv_len - pointer to the size of the response buffer
190 * Returns 0 on success (and places the number of response bytes at
191 * recv_len) or -ve on failure.
193 int tpm_xfer(struct udevice *dev, const u8 *sendbuf, size_t send_size,
194 u8 *recvbuf, size_t *recv_size);
197 * Initialize TPM device. It must be called before any TPM commands.
199 * @return 0 on success, non-0 on error.
204 * Retrieve the array containing all the commands.
206 * @return a cmd_tbl_t array.
208 cmd_tbl_t *get_tpm_commands(unsigned int *size);
210 #endif /* __TPM_COMMON_H */