1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2015 Infineon Technologies AG
4 * Copyright (C) 2016 STMicroelectronics SAS
12 * Device driver for TCG/TCPA TPM (trusted platform module).
13 * Specifications at www.trustedcomputinggroup.org
15 * This device driver implements the TPM interface as defined in
16 * the TCG TPM Interface Spec version 1.3, revision 27 via _raw/native
19 * It is based on the original tpm_tis device driver from Leendert van
20 * Dorn and Kyleen Hall and Jarko Sakkinnen.
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/slab.h>
27 #include <linux/interrupt.h>
28 #include <linux/wait.h>
29 #include <linux/acpi.h>
30 #include <linux/freezer.h>
32 #include <linux/spi/spi.h>
33 #include <linux/gpio.h>
34 #include <linux/of_irq.h>
35 #include <linux/of_gpio.h>
36 #include <linux/tpm.h>
38 #include "tpm_tis_core.h"
40 #define MAX_SPI_FRAMESIZE 64
42 struct tpm_tis_spi_phy {
43 struct tpm_tis_data priv;
44 struct spi_device *spi_device;
48 static inline struct tpm_tis_spi_phy *to_tpm_tis_spi_phy(struct tpm_tis_data *data)
50 return container_of(data, struct tpm_tis_spi_phy, priv);
53 static int tpm_tis_spi_transfer(struct tpm_tis_data *data, u32 addr, u16 len,
54 u8 *in, const u8 *out)
56 struct tpm_tis_spi_phy *phy = to_tpm_tis_spi_phy(data);
60 struct spi_transfer spi_xfer;
63 spi_bus_lock(phy->spi_device->master);
66 transfer_len = min_t(u16, len, MAX_SPI_FRAMESIZE);
68 phy->iobuf[0] = (in ? 0x80 : 0) | (transfer_len - 1);
70 phy->iobuf[2] = addr >> 8;
73 memset(&spi_xfer, 0, sizeof(spi_xfer));
74 spi_xfer.tx_buf = phy->iobuf;
75 spi_xfer.rx_buf = phy->iobuf;
77 spi_xfer.cs_change = 1;
80 spi_message_add_tail(&spi_xfer, &m);
81 ret = spi_sync_locked(phy->spi_device, &m);
85 if ((phy->iobuf[3] & 0x01) == 0) {
86 // handle SPI wait states
89 for (i = 0; i < TPM_RETRY; i++) {
92 spi_message_add_tail(&spi_xfer, &m);
93 ret = spi_sync_locked(phy->spi_device, &m);
96 if (phy->iobuf[0] & 0x01)
100 if (i == TPM_RETRY) {
106 spi_xfer.cs_change = 0;
107 spi_xfer.len = transfer_len;
108 spi_xfer.delay_usecs = 5;
111 spi_xfer.tx_buf = NULL;
113 spi_xfer.rx_buf = NULL;
114 memcpy(phy->iobuf, out, transfer_len);
118 spi_message_init(&m);
119 spi_message_add_tail(&spi_xfer, &m);
120 ret = spi_sync_locked(phy->spi_device, &m);
125 memcpy(in, phy->iobuf, transfer_len);
133 spi_bus_unlock(phy->spi_device->master);
137 static int tpm_tis_spi_read_bytes(struct tpm_tis_data *data, u32 addr,
140 return tpm_tis_spi_transfer(data, addr, len, result, NULL);
143 static int tpm_tis_spi_write_bytes(struct tpm_tis_data *data, u32 addr,
144 u16 len, const u8 *value)
146 return tpm_tis_spi_transfer(data, addr, len, NULL, value);
149 static int tpm_tis_spi_read16(struct tpm_tis_data *data, u32 addr, u16 *result)
154 rc = data->phy_ops->read_bytes(data, addr, sizeof(u16),
157 *result = le16_to_cpu(result_le);
162 static int tpm_tis_spi_read32(struct tpm_tis_data *data, u32 addr, u32 *result)
167 rc = data->phy_ops->read_bytes(data, addr, sizeof(u32),
170 *result = le32_to_cpu(result_le);
175 static int tpm_tis_spi_write32(struct tpm_tis_data *data, u32 addr, u32 value)
180 value_le = cpu_to_le32(value);
181 rc = data->phy_ops->write_bytes(data, addr, sizeof(u32),
187 static const struct tpm_tis_phy_ops tpm_spi_phy_ops = {
188 .read_bytes = tpm_tis_spi_read_bytes,
189 .write_bytes = tpm_tis_spi_write_bytes,
190 .read16 = tpm_tis_spi_read16,
191 .read32 = tpm_tis_spi_read32,
192 .write32 = tpm_tis_spi_write32,
195 static int tpm_tis_spi_probe(struct spi_device *dev)
197 struct tpm_tis_spi_phy *phy;
200 phy = devm_kzalloc(&dev->dev, sizeof(struct tpm_tis_spi_phy),
205 phy->spi_device = dev;
207 phy->iobuf = devm_kmalloc(&dev->dev, MAX_SPI_FRAMESIZE, GFP_KERNEL);
211 /* If the SPI device has an IRQ then use that */
217 return tpm_tis_core_init(&dev->dev, &phy->priv, irq, &tpm_spi_phy_ops,
221 static SIMPLE_DEV_PM_OPS(tpm_tis_pm, tpm_pm_suspend, tpm_tis_resume);
223 static int tpm_tis_spi_remove(struct spi_device *dev)
225 struct tpm_chip *chip = spi_get_drvdata(dev);
227 tpm_chip_unregister(chip);
228 tpm_tis_remove(chip);
232 static const struct spi_device_id tpm_tis_spi_id[] = {
236 MODULE_DEVICE_TABLE(spi, tpm_tis_spi_id);
238 static const struct of_device_id of_tis_spi_match[] = {
239 { .compatible = "st,st33htpm-spi", },
240 { .compatible = "infineon,slb9670", },
241 { .compatible = "tcg,tpm_tis-spi", },
244 MODULE_DEVICE_TABLE(of, of_tis_spi_match);
246 static const struct acpi_device_id acpi_tis_spi_match[] = {
250 MODULE_DEVICE_TABLE(acpi, acpi_tis_spi_match);
252 static struct spi_driver tpm_tis_spi_driver = {
254 .owner = THIS_MODULE,
255 .name = "tpm_tis_spi",
257 .of_match_table = of_match_ptr(of_tis_spi_match),
258 .acpi_match_table = ACPI_PTR(acpi_tis_spi_match),
260 .probe = tpm_tis_spi_probe,
261 .remove = tpm_tis_spi_remove,
262 .id_table = tpm_tis_spi_id,
264 module_spi_driver(tpm_tis_spi_driver);
266 MODULE_DESCRIPTION("TPM Driver for native SPI access");
267 MODULE_LICENSE("GPL");