tpm: Export the open/close functions
[oweals/u-boot.git] / include / tpm-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2013 The Chromium OS Authors.
4  * Coypright (c) 2013 Guntermann & Drunck GmbH
5  */
6
7 #ifndef __TPM_COMMON_H
8 #define __TPM_COMMON_H
9
10 enum tpm_duration {
11         TPM_SHORT = 0,
12         TPM_MEDIUM = 1,
13         TPM_LONG = 2,
14         TPM_UNDEFINED,
15
16         TPM_DURATION_COUNT,
17 };
18
19 /*
20  * Here is a partial implementation of TPM commands.  Please consult TCG Main
21  * Specification for definitions of TPM commands.
22  */
23
24 #define TPM_HEADER_SIZE         10
25
26 /* Max buffer size supported by our tpm */
27 #define TPM_DEV_BUFSIZE         1260
28
29 #define TPM_PCR_MINIMUM_DIGEST_SIZE 20
30
31 /**
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
35  */
36 enum tpm_version {
37         TPM_V1 = 0,
38         TPM_V2,
39 };
40
41 /**
42  * struct tpm_chip_priv - Information about a TPM, stored by the uclass
43  *
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.
47  *
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
54  */
55 struct tpm_chip_priv {
56         enum tpm_version version;
57
58         uint duration_ms[TPM_DURATION_COUNT];
59         uint retry_time_ms;
60         u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)];  /* Max buffer size + addr */
61
62         /* TPM v2 specific data */
63         uint pcr_count;
64         uint pcr_select_min;
65 };
66
67 /**
68  * struct tpm_ops - low-level TPM operations
69  *
70  * These are designed to avoid loops and delays in the driver itself. These
71  * should be handled in the uclass.
72  *
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.
76  *
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.
81  */
82 struct tpm_ops {
83         /**
84          * open() - Request access to locality 0 for the caller
85          *
86          * After all commands have been completed the caller should call
87          * close().
88          *
89          * @dev:        Device to open
90          * @return 0 ok OK, -ve on error
91          */
92         int (*open)(struct udevice *dev);
93
94         /**
95          * close() - Close the current session
96          *
97          * Releasing the locked locality. Returns 0 on success, -ve 1 on
98          * failure (in case lock removal did not succeed).
99          *
100          * @dev:        Device to close
101          * @return 0 ok OK, -ve on error
102          */
103         int (*close)(struct udevice *dev);
104
105         /**
106          * get_desc() - Get a text description of the TPM
107          *
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
112          */
113         int (*get_desc)(struct udevice *dev, char *buf, int size);
114
115         /**
116          * send() - send data to the TPM
117          *
118          * @dev:        Device to talk to
119          * @sendbuf:    Buffer of the data to send
120          * @send_size:  Size of the data to send
121          *
122          * Returns 0 on success or -ve on failure.
123          */
124         int (*send)(struct udevice *dev, const u8 *sendbuf, size_t send_size);
125
126         /**
127          * recv() - receive a response from the TPM
128          *
129          * @dev:        Device to talk to
130          * @recvbuf:    Buffer to save the response to
131          * @max_size:   Maximum number of bytes to receive
132          *
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
135          * failure.
136          */
137         int (*recv)(struct udevice *dev, u8 *recvbuf, size_t max_size);
138
139         /**
140          * cleanup() - clean up after an operation in progress
141          *
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
144          * ready for another.
145          *
146          * @dev:        Device to talk to
147          */
148         int (*cleanup)(struct udevice *dev);
149
150         /**
151          * xfer() - send data to the TPM and get response
152          *
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.
156          *
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
162          *
163          * Returns 0 on success (and places the number of response bytes at
164          * recv_size) or -ve on failure.
165          */
166         int (*xfer)(struct udevice *dev, const u8 *sendbuf, size_t send_size,
167                     u8 *recvbuf, size_t *recv_size);
168 };
169
170 #define tpm_get_ops(dev)        ((struct tpm_ops *)device_get_ops(dev))
171
172 #define MAKE_TPM_CMD_ENTRY(cmd) \
173         U_BOOT_CMD_MKENT(cmd, 0, 1, do_tpm_ ## cmd, "", "")
174
175 #define TPM_COMMAND_NO_ARG(cmd)                         \
176 int do_##cmd(cmd_tbl_t *cmdtp, int flag,                \
177              int argc, char * const argv[])             \
178 {                                                       \
179         if (argc != 1)                                  \
180                 return CMD_RET_USAGE;                   \
181         return report_return_code(cmd());               \
182 }
183
184 /**
185  * tpm_open() - Request access to locality 0 for the caller
186  *
187  * After all commands have been completed the caller is supposed to
188  * call tpm_close().
189  *
190  * Returns 0 on success, -ve on failure.
191  */
192 int tpm_open(struct udevice *dev);
193
194 /**
195  * tpm_close() - Close the current session
196  *
197  * Releasing the locked locality. Returns 0 on success, -ve 1 on
198  * failure (in case lock removal did not succeed).
199  */
200 int tpm_close(struct udevice *dev);
201
202 /**
203  * tpm_get_desc() - Get a text description of the TPM
204  *
205  * @dev:        Device to check
206  * @buf:        Buffer to put the string
207  * @size:       Maximum size of buffer
208  * @return length of string, or -ENOSPC it no space
209  */
210 int tpm_get_desc(struct udevice *dev, char *buf, int size);
211
212 /**
213  * tpm_xfer() - send data to the TPM and get response
214  *
215  * This first uses the device's send() method to send the bytes. Then it calls
216  * recv() to get the reply. If recv() returns -EAGAIN then it will delay a
217  * short time and then call recv() again.
218  *
219  * Regardless of whether recv() completes successfully, it will then call
220  * cleanup() to finish the transaction.
221  *
222  * Note that the outgoing data is inspected to determine command type
223  * (ordinal) and a timeout is used for that command type.
224  *
225  * @sendbuf - buffer of the data to send
226  * @send_size size of the data to send
227  * @recvbuf - memory to save the response to
228  * @recv_len - pointer to the size of the response buffer
229  *
230  * Returns 0 on success (and places the number of response bytes at
231  * recv_len) or -ve on failure.
232  */
233 int tpm_xfer(struct udevice *dev, const u8 *sendbuf, size_t send_size,
234              u8 *recvbuf, size_t *recv_size);
235
236 /**
237  * Initialize TPM device.  It must be called before any TPM commands.
238  *
239  * @return 0 on success, non-0 on error.
240  */
241 int tpm_init(void);
242
243 /**
244  * Retrieve the array containing all the v1 (resp. v2) commands.
245  *
246  * @return a cmd_tbl_t array.
247  */
248 #if defined(CONFIG_TPM_V1)
249 cmd_tbl_t *get_tpm1_commands(unsigned int *size);
250 #else
251 static inline cmd_tbl_t *get_tpm1_commands(unsigned int *size)
252 {
253         return NULL;
254 }
255 #endif
256 #if defined(CONFIG_TPM_V2)
257 cmd_tbl_t *get_tpm2_commands(unsigned int *size);
258 #else
259 static inline cmd_tbl_t *get_tpm2_commands(unsigned int *size)
260 {
261         return NULL;
262 }
263 #endif
264
265 #endif /* __TPM_COMMON_H */