1 // SPDX-License-Identifier: GPL-2.0
7 * SPI-level driver for TCG/TIS TPM (trusted platform module).
8 * Specifications at www.trustedcomputinggroup.org
10 * This device driver implements the TPM interface as defined in
11 * the TCG SPI protocol stack version 2.0.
13 * It is based on the U-Boot driver tpm_tis_infineon_i2c.c.
22 #include <linux/bitops.h>
23 #include <linux/delay.h>
24 #include <linux/errno.h>
25 #include <linux/compiler.h>
26 #include <linux/types.h>
27 #include <linux/unaligned/be_byteshift.h>
28 #include <asm-generic/gpio.h>
31 #include "tpm_internal.h"
33 #define MAX_SPI_FRAMESIZE 64
35 /* Number of wait states to wait for */
36 #define TPM_WAIT_STATES 100
39 * struct tpm_tis_chip_data - Non-discoverable TPM information
41 * @pcr_count: Number of PCR per bank
42 * @pcr_select_min: Size in octets of the pcrSelect array
44 struct tpm_tis_chip_data {
45 unsigned int pcr_count;
46 unsigned int pcr_select_min;
47 unsigned int time_before_first_cmd_ms;
51 * tpm_tis_spi_read() - Read from TPM register
53 * @addr: register address to read from
54 * @buffer: provided by caller
55 * @len: number of bytes to read
57 * Read len bytes from TPM register and put them into
58 * buffer (little-endian format, i.e. first byte is put into buffer[0]).
60 * NOTE: TPM is big-endian for multi-byte values. Multi-byte
61 * values have to be swapped.
63 * Return: -EIO on error, 0 on success.
65 static int tpm_tis_spi_xfer(struct udevice *dev, u32 addr, const u8 *out,
68 struct spi_slave *slave = dev_get_parent_priv(dev);
69 int transfer_len, ret;
70 u8 tx_buf[MAX_SPI_FRAMESIZE];
71 u8 rx_buf[MAX_SPI_FRAMESIZE];
74 log(LOGC_NONE, LOGL_ERR, "%s: can't do full duplex\n",
79 ret = spi_claim_bus(slave);
81 log(LOGC_NONE, LOGL_ERR, "%s: could not claim bus\n", __func__);
87 transfer_len = min_t(u16, len, MAX_SPI_FRAMESIZE);
88 tx_buf[0] = (in ? BIT(7) : 0) | (transfer_len - 1);
90 tx_buf[2] = addr >> 8;
93 ret = spi_xfer(slave, 4 * 8, tx_buf, rx_buf, SPI_XFER_BEGIN);
95 log(LOGC_NONE, LOGL_ERR,
96 "%s: spi request transfer failed (err: %d)\n",
102 if (!(rx_buf[3] & 0x1)) {
105 for (i = 0; i < TPM_WAIT_STATES; i++) {
106 ret = spi_xfer(slave, 1 * 8, NULL, rx_buf, 0);
108 log(LOGC_NONE, LOGL_ERR,
109 "%s: wait state failed: %d\n",
118 if (i == TPM_WAIT_STATES) {
119 log(LOGC_NONE, LOGL_ERR,
120 "%s: timeout on wait state\n", __func__);
128 memcpy(tx_buf, out, transfer_len);
132 ret = spi_xfer(slave, transfer_len * 8,
137 log(LOGC_NONE, LOGL_ERR,
138 "%s: spi read transfer failed (err: %d)\n",
144 memcpy(in, rx_buf, transfer_len);
152 /* If an error occurred, release the chip by deasserting the CS */
154 spi_xfer(slave, 0, NULL, NULL, SPI_XFER_END);
156 spi_release_bus(slave);
161 static int tpm_tis_spi_read(struct udevice *dev, u32 addr, u16 len, u8 *in)
163 return tpm_tis_spi_xfer(dev, addr, NULL, in, len);
166 static int tpm_tis_spi_read32(struct udevice *dev, u32 addr, u32 *result)
171 ret = tpm_tis_spi_read(dev, addr, sizeof(u32), (u8 *)&result_le);
173 *result = le32_to_cpu(result_le);
178 static int tpm_tis_spi_write(struct udevice *dev, u32 addr, u16 len, const u8 *out)
180 return tpm_tis_spi_xfer(dev, addr, out, NULL, len);
183 static int tpm_tis_spi_write32(struct udevice *dev, u32 addr, u32 value)
185 __le32 value_le = cpu_to_le32(value);
187 return tpm_tis_spi_write(dev, addr, sizeof(value), (u8 *)&value_le);
190 static struct tpm_tis_phy_ops phy_ops = {
191 .read_bytes = tpm_tis_spi_read,
192 .write_bytes = tpm_tis_spi_write,
193 .read32 = tpm_tis_spi_read32,
194 .write32 = tpm_tis_spi_write32,
197 static int tpm_tis_spi_probe(struct udevice *dev)
199 struct tpm_tis_chip_data *drv_data = (void *)dev_get_driver_data(dev);
200 struct tpm_chip_priv *priv = dev_get_uclass_priv(dev);
203 /* Use the TPM v2 stack */
204 priv->version = TPM_V2;
206 if (CONFIG_IS_ENABLED(DM_GPIO)) {
207 struct gpio_desc reset_gpio;
209 ret = gpio_request_by_name(dev, "reset-gpios", 0,
210 &reset_gpio, GPIOD_IS_OUT);
213 ret = gpio_request_by_name(dev, "gpio-reset", 0,
214 &reset_gpio, GPIOD_IS_OUT);
216 log(LOGC_NONE, LOGL_NOTICE,
217 "%s: gpio-reset is deprecated\n", __func__);
222 log(LOGC_NONE, LOGL_WARNING,
223 "%s: TPM gpio reset should not be used on secure production devices\n",
225 dm_gpio_set_value(&reset_gpio, 1);
227 dm_gpio_set_value(&reset_gpio, 0);
231 /* Ensure a minimum amount of time elapsed since reset of the TPM */
232 mdelay(drv_data->time_before_first_cmd_ms);
234 tpm_tis_ops_register(dev, &phy_ops);
235 ret = tpm_tis_init(dev);
239 priv->pcr_count = drv_data->pcr_count;
240 priv->pcr_select_min = drv_data->pcr_select_min;
241 priv->version = TPM_V2;
248 static int tpm_tis_spi_remove(struct udevice *udev)
250 return tpm_tis_cleanup(udev);
253 static const struct tpm_ops tpm_tis_spi_ops = {
254 .open = tpm_tis_open,
255 .close = tpm_tis_close,
256 .get_desc = tpm_tis_get_desc,
257 .send = tpm_tis_send,
258 .recv = tpm_tis_recv,
259 .cleanup = tpm_tis_cleanup,
262 static const struct tpm_tis_chip_data tpm_tis_std_chip_data = {
265 .time_before_first_cmd_ms = 30,
268 static const struct udevice_id tpm_tis_spi_ids[] = {
270 .compatible = "tcg,tpm_tis-spi",
271 .data = (ulong)&tpm_tis_std_chip_data,
276 U_BOOT_DRIVER(tpm_tis_spi) = {
277 .name = "tpm_tis_spi",
279 .of_match = tpm_tis_spi_ids,
280 .ops = &tpm_tis_spi_ops,
281 .probe = tpm_tis_spi_probe,
282 .remove = tpm_tis_spi_remove,
283 .priv_auto = sizeof(struct tpm_chip),