2019-06-01 08:08:55 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2016-05-18 22:35:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Infineon Technologies AG
|
|
|
|
* Copyright (C) 2016 STMicroelectronics SAS
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Peter Huewe <peter.huewe@infineon.com>
|
|
|
|
* Christophe Ricard <christophe-h.ricard@st.com>
|
|
|
|
*
|
|
|
|
* Maintained by: <tpmdd-devel@lists.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Device driver for TCG/TCPA TPM (trusted platform module).
|
|
|
|
* Specifications at www.trustedcomputinggroup.org
|
|
|
|
*
|
|
|
|
* This device driver implements the TPM interface as defined in
|
|
|
|
* the TCG TPM Interface Spec version 1.3, revision 27 via _raw/native
|
|
|
|
* SPI access_.
|
|
|
|
*
|
|
|
|
* It is based on the original tpm_tis device driver from Leendert van
|
|
|
|
* Dorn and Kyleen Hall and Jarko Sakkinnen.
|
|
|
|
*/
|
|
|
|
|
2019-09-20 18:32:39 +00:00
|
|
|
#include <linux/acpi.h>
|
2019-09-20 18:32:38 +00:00
|
|
|
#include <linux/completion.h>
|
2016-05-18 22:35:53 +00:00
|
|
|
#include <linux/init.h>
|
2019-09-20 18:32:39 +00:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/kernel.h>
|
2016-05-18 22:35:53 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
#include <linux/of_device.h>
|
2019-09-20 18:32:39 +00:00
|
|
|
#include <linux/spi/spi.h>
|
2016-05-18 22:35:53 +00:00
|
|
|
#include <linux/tpm.h>
|
2019-09-20 18:32:39 +00:00
|
|
|
|
2016-05-18 22:35:53 +00:00
|
|
|
#include "tpm.h"
|
|
|
|
#include "tpm_tis_core.h"
|
2019-09-20 18:32:38 +00:00
|
|
|
#include "tpm_tis_spi.h"
|
2016-05-18 22:35:53 +00:00
|
|
|
|
|
|
|
#define MAX_SPI_FRAMESIZE 64
|
|
|
|
|
2019-09-20 18:32:37 +00:00
|
|
|
/*
|
|
|
|
* TCG SPI flow control is documented in section 6.4 of the spec[1]. In short,
|
|
|
|
* keep trying to read from the device until MISO goes high indicating the
|
|
|
|
* wait state has ended.
|
|
|
|
*
|
|
|
|
* [1] https://trustedcomputinggroup.org/resource/pc-client-platform-tpm-profile-ptp-specification/
|
|
|
|
*/
|
|
|
|
static int tpm_tis_spi_flow_control(struct tpm_tis_spi_phy *phy,
|
|
|
|
struct spi_transfer *spi_xfer)
|
|
|
|
{
|
|
|
|
struct spi_message m;
|
|
|
|
int ret, i;
|
|
|
|
|
|
|
|
if ((phy->iobuf[3] & 0x01) == 0) {
|
|
|
|
// handle SPI wait states
|
|
|
|
for (i = 0; i < TPM_RETRY; i++) {
|
|
|
|
spi_xfer->len = 1;
|
|
|
|
spi_message_init(&m);
|
|
|
|
spi_message_add_tail(spi_xfer, &m);
|
|
|
|
ret = spi_sync_locked(phy->spi_device, &m);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (phy->iobuf[0] & 0x01)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == TPM_RETRY)
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
int tpm_tis_spi_transfer(struct tpm_tis_data *data, u32 addr, u16 len,
|
|
|
|
u8 *in, const u8 *out)
|
2016-05-18 22:35:53 +00:00
|
|
|
{
|
|
|
|
struct tpm_tis_spi_phy *phy = to_tpm_tis_spi_phy(data);
|
2017-03-02 13:03:14 +00:00
|
|
|
int ret = 0;
|
2016-05-18 22:35:53 +00:00
|
|
|
struct spi_message m;
|
2017-03-02 13:03:14 +00:00
|
|
|
struct spi_transfer spi_xfer;
|
|
|
|
u8 transfer_len;
|
2016-05-18 22:35:53 +00:00
|
|
|
|
2017-03-02 13:03:14 +00:00
|
|
|
spi_bus_lock(phy->spi_device->master);
|
2016-05-18 22:35:53 +00:00
|
|
|
|
2017-03-02 13:03:14 +00:00
|
|
|
while (len) {
|
|
|
|
transfer_len = min_t(u16, len, MAX_SPI_FRAMESIZE);
|
2016-05-18 22:35:53 +00:00
|
|
|
|
2017-09-11 10:26:52 +00:00
|
|
|
phy->iobuf[0] = (in ? 0x80 : 0) | (transfer_len - 1);
|
|
|
|
phy->iobuf[1] = 0xd4;
|
|
|
|
phy->iobuf[2] = addr >> 8;
|
|
|
|
phy->iobuf[3] = addr;
|
2016-05-18 22:35:53 +00:00
|
|
|
|
2017-03-02 13:03:14 +00:00
|
|
|
memset(&spi_xfer, 0, sizeof(spi_xfer));
|
2017-09-11 10:26:52 +00:00
|
|
|
spi_xfer.tx_buf = phy->iobuf;
|
|
|
|
spi_xfer.rx_buf = phy->iobuf;
|
2017-03-02 13:03:14 +00:00
|
|
|
spi_xfer.len = 4;
|
|
|
|
spi_xfer.cs_change = 1;
|
|
|
|
|
|
|
|
spi_message_init(&m);
|
|
|
|
spi_message_add_tail(&spi_xfer, &m);
|
|
|
|
ret = spi_sync_locked(phy->spi_device, &m);
|
|
|
|
if (ret < 0)
|
|
|
|
goto exit;
|
|
|
|
|
2020-05-28 22:19:30 +00:00
|
|
|
/* Flow control transfers are receive only */
|
|
|
|
spi_xfer.tx_buf = NULL;
|
2019-09-20 18:32:37 +00:00
|
|
|
ret = phy->flow_control(phy, &spi_xfer);
|
|
|
|
if (ret < 0)
|
|
|
|
goto exit;
|
2017-03-02 13:03:13 +00:00
|
|
|
|
2017-03-02 13:03:14 +00:00
|
|
|
spi_xfer.cs_change = 0;
|
|
|
|
spi_xfer.len = transfer_len;
|
2019-12-17 09:16:15 +00:00
|
|
|
spi_xfer.delay.value = 5;
|
|
|
|
spi_xfer.delay.unit = SPI_DELAY_UNIT_USECS;
|
2017-09-11 10:26:52 +00:00
|
|
|
|
2020-05-28 22:19:30 +00:00
|
|
|
if (out) {
|
|
|
|
spi_xfer.tx_buf = phy->iobuf;
|
2017-09-11 10:26:52 +00:00
|
|
|
spi_xfer.rx_buf = NULL;
|
|
|
|
memcpy(phy->iobuf, out, transfer_len);
|
|
|
|
out += transfer_len;
|
|
|
|
}
|
2017-03-02 13:03:12 +00:00
|
|
|
|
2017-03-02 13:03:14 +00:00
|
|
|
spi_message_init(&m);
|
|
|
|
spi_message_add_tail(&spi_xfer, &m);
|
2019-09-20 18:32:38 +00:00
|
|
|
reinit_completion(&phy->ready);
|
2017-03-02 13:03:14 +00:00
|
|
|
ret = spi_sync_locked(phy->spi_device, &m);
|
|
|
|
if (ret < 0)
|
|
|
|
goto exit;
|
2017-03-02 13:03:11 +00:00
|
|
|
|
2017-09-11 10:26:52 +00:00
|
|
|
if (in) {
|
|
|
|
memcpy(in, phy->iobuf, transfer_len);
|
2017-09-07 13:30:45 +00:00
|
|
|
in += transfer_len;
|
2017-09-11 10:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
len -= transfer_len;
|
2017-03-02 13:03:11 +00:00
|
|
|
}
|
2016-05-18 22:35:53 +00:00
|
|
|
|
|
|
|
exit:
|
|
|
|
spi_bus_unlock(phy->spi_device->master);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-02 13:03:11 +00:00
|
|
|
static int tpm_tis_spi_read_bytes(struct tpm_tis_data *data, u32 addr,
|
|
|
|
u16 len, u8 *result)
|
|
|
|
{
|
2017-09-07 13:30:45 +00:00
|
|
|
return tpm_tis_spi_transfer(data, addr, len, result, NULL);
|
2017-03-02 13:03:11 +00:00
|
|
|
}
|
|
|
|
|
2016-05-18 22:35:53 +00:00
|
|
|
static int tpm_tis_spi_write_bytes(struct tpm_tis_data *data, u32 addr,
|
2017-09-07 13:30:45 +00:00
|
|
|
u16 len, const u8 *value)
|
2016-05-18 22:35:53 +00:00
|
|
|
{
|
2017-09-07 13:30:45 +00:00
|
|
|
return tpm_tis_spi_transfer(data, addr, len, NULL, value);
|
2016-05-18 22:35:53 +00:00
|
|
|
}
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
int tpm_tis_spi_read16(struct tpm_tis_data *data, u32 addr, u16 *result)
|
2016-05-18 22:35:53 +00:00
|
|
|
{
|
2017-09-13 17:17:25 +00:00
|
|
|
__le16 result_le;
|
2016-05-18 22:35:53 +00:00
|
|
|
int rc;
|
|
|
|
|
2017-09-13 17:17:25 +00:00
|
|
|
rc = data->phy_ops->read_bytes(data, addr, sizeof(u16),
|
|
|
|
(u8 *)&result_le);
|
2016-05-18 22:35:53 +00:00
|
|
|
if (!rc)
|
2017-09-13 17:17:25 +00:00
|
|
|
*result = le16_to_cpu(result_le);
|
|
|
|
|
2016-05-18 22:35:53 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
int tpm_tis_spi_read32(struct tpm_tis_data *data, u32 addr, u32 *result)
|
2016-05-18 22:35:53 +00:00
|
|
|
{
|
2017-09-13 17:17:25 +00:00
|
|
|
__le32 result_le;
|
2016-05-18 22:35:53 +00:00
|
|
|
int rc;
|
|
|
|
|
2017-09-13 17:17:25 +00:00
|
|
|
rc = data->phy_ops->read_bytes(data, addr, sizeof(u32),
|
|
|
|
(u8 *)&result_le);
|
2016-05-18 22:35:53 +00:00
|
|
|
if (!rc)
|
2017-09-13 17:17:25 +00:00
|
|
|
*result = le32_to_cpu(result_le);
|
|
|
|
|
2016-05-18 22:35:53 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
int tpm_tis_spi_write32(struct tpm_tis_data *data, u32 addr, u32 value)
|
2016-05-18 22:35:53 +00:00
|
|
|
{
|
2017-09-13 17:17:25 +00:00
|
|
|
__le32 value_le;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
value_le = cpu_to_le32(value);
|
|
|
|
rc = data->phy_ops->write_bytes(data, addr, sizeof(u32),
|
|
|
|
(u8 *)&value_le);
|
|
|
|
|
|
|
|
return rc;
|
2016-05-18 22:35:53 +00:00
|
|
|
}
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
int tpm_tis_spi_init(struct spi_device *spi, struct tpm_tis_spi_phy *phy,
|
|
|
|
int irq, const struct tpm_tis_phy_ops *phy_ops)
|
|
|
|
{
|
|
|
|
phy->iobuf = devm_kmalloc(&spi->dev, MAX_SPI_FRAMESIZE, GFP_KERNEL);
|
|
|
|
if (!phy->iobuf)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
phy->spi_device = spi;
|
|
|
|
|
|
|
|
return tpm_tis_core_init(&spi->dev, &phy->priv, irq, phy_ops, NULL);
|
|
|
|
}
|
|
|
|
|
2016-05-18 22:35:53 +00:00
|
|
|
static const struct tpm_tis_phy_ops tpm_spi_phy_ops = {
|
|
|
|
.read_bytes = tpm_tis_spi_read_bytes,
|
|
|
|
.write_bytes = tpm_tis_spi_write_bytes,
|
|
|
|
.read16 = tpm_tis_spi_read16,
|
|
|
|
.read32 = tpm_tis_spi_read32,
|
|
|
|
.write32 = tpm_tis_spi_write32,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int tpm_tis_spi_probe(struct spi_device *dev)
|
|
|
|
{
|
|
|
|
struct tpm_tis_spi_phy *phy;
|
2018-06-08 07:09:07 +00:00
|
|
|
int irq;
|
2016-05-18 22:35:53 +00:00
|
|
|
|
|
|
|
phy = devm_kzalloc(&dev->dev, sizeof(struct tpm_tis_spi_phy),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!phy)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2019-09-20 18:32:37 +00:00
|
|
|
phy->flow_control = tpm_tis_spi_flow_control;
|
2017-09-11 10:26:52 +00:00
|
|
|
|
2018-06-08 07:09:07 +00:00
|
|
|
/* If the SPI device has an IRQ then use that */
|
|
|
|
if (dev->irq > 0)
|
|
|
|
irq = dev->irq;
|
|
|
|
else
|
|
|
|
irq = -1;
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
init_completion(&phy->ready);
|
|
|
|
return tpm_tis_spi_init(dev, phy, irq, &tpm_spi_phy_ops);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef int (*tpm_tis_spi_probe_func)(struct spi_device *);
|
|
|
|
|
|
|
|
static int tpm_tis_spi_driver_probe(struct spi_device *spi)
|
|
|
|
{
|
|
|
|
const struct spi_device_id *spi_dev_id = spi_get_device_id(spi);
|
|
|
|
tpm_tis_spi_probe_func probe_func;
|
|
|
|
|
|
|
|
probe_func = of_device_get_match_data(&spi->dev);
|
2021-05-07 14:52:55 +00:00
|
|
|
if (!probe_func) {
|
|
|
|
if (spi_dev_id) {
|
|
|
|
probe_func = (tpm_tis_spi_probe_func)spi_dev_id->driver_data;
|
|
|
|
if (!probe_func)
|
|
|
|
return -ENODEV;
|
|
|
|
} else
|
|
|
|
probe_func = tpm_tis_spi_probe;
|
|
|
|
}
|
2019-09-20 18:32:38 +00:00
|
|
|
|
|
|
|
return probe_func(spi);
|
2016-05-18 22:35:53 +00:00
|
|
|
}
|
|
|
|
|
2019-09-20 18:32:38 +00:00
|
|
|
static SIMPLE_DEV_PM_OPS(tpm_tis_pm, tpm_pm_suspend, tpm_tis_spi_resume);
|
2016-05-18 22:35:53 +00:00
|
|
|
|
|
|
|
static int tpm_tis_spi_remove(struct spi_device *dev)
|
|
|
|
{
|
|
|
|
struct tpm_chip *chip = spi_get_drvdata(dev);
|
|
|
|
|
|
|
|
tpm_chip_unregister(chip);
|
|
|
|
tpm_tis_remove(chip);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct spi_device_id tpm_tis_spi_id[] = {
|
tpm_tis_spi: add missing SPI device ID entries
The SPI core always reports a "MODALIAS=spi:<foo>", even if the device was
registered via OF. This means that this module won't auto-load if a DT has
for example has a node with a compatible "infineon,slb9670" string.
In that case kmod will expect a "MODALIAS=of:N*T*Cinfineon,slb9670" uevent
but instead will get a "MODALIAS=spi:slb9670", which is not present in the
kernel module aliases:
$ modinfo drivers/char/tpm/tpm_tis_spi.ko | grep alias
alias: of:N*T*Cgoogle,cr50C*
alias: of:N*T*Cgoogle,cr50
alias: of:N*T*Ctcg,tpm_tis-spiC*
alias: of:N*T*Ctcg,tpm_tis-spi
alias: of:N*T*Cinfineon,slb9670C*
alias: of:N*T*Cinfineon,slb9670
alias: of:N*T*Cst,st33htpm-spiC*
alias: of:N*T*Cst,st33htpm-spi
alias: spi:cr50
alias: spi:tpm_tis_spi
alias: acpi*:SMO0768:*
To workaround this issue, add in the SPI device ID table all the entries
that are present in the OF device ID table.
Reported-by: Alexander Wellbrock <a.wellbrock@mailbox.org>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
2021-05-27 15:23:52 +00:00
|
|
|
{ "st33htpm-spi", (unsigned long)tpm_tis_spi_probe },
|
|
|
|
{ "slb9670", (unsigned long)tpm_tis_spi_probe },
|
2019-09-20 18:32:38 +00:00
|
|
|
{ "tpm_tis_spi", (unsigned long)tpm_tis_spi_probe },
|
2021-09-24 14:41:11 +00:00
|
|
|
{ "tpm_tis-spi", (unsigned long)tpm_tis_spi_probe },
|
2019-09-20 18:32:38 +00:00
|
|
|
{ "cr50", (unsigned long)cr50_spi_probe },
|
2016-05-18 22:35:53 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(spi, tpm_tis_spi_id);
|
|
|
|
|
|
|
|
static const struct of_device_id of_tis_spi_match[] = {
|
2019-09-20 18:32:38 +00:00
|
|
|
{ .compatible = "st,st33htpm-spi", .data = tpm_tis_spi_probe },
|
|
|
|
{ .compatible = "infineon,slb9670", .data = tpm_tis_spi_probe },
|
|
|
|
{ .compatible = "tcg,tpm_tis-spi", .data = tpm_tis_spi_probe },
|
|
|
|
{ .compatible = "google,cr50", .data = cr50_spi_probe },
|
2016-05-18 22:35:53 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, of_tis_spi_match);
|
|
|
|
|
|
|
|
static const struct acpi_device_id acpi_tis_spi_match[] = {
|
|
|
|
{"SMO0768", 0},
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, acpi_tis_spi_match);
|
|
|
|
|
|
|
|
static struct spi_driver tpm_tis_spi_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "tpm_tis_spi",
|
|
|
|
.pm = &tpm_tis_pm,
|
|
|
|
.of_match_table = of_match_ptr(of_tis_spi_match),
|
|
|
|
.acpi_match_table = ACPI_PTR(acpi_tis_spi_match),
|
2020-06-19 21:20:01 +00:00
|
|
|
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
2016-05-18 22:35:53 +00:00
|
|
|
},
|
2019-09-20 18:32:38 +00:00
|
|
|
.probe = tpm_tis_spi_driver_probe,
|
2016-05-18 22:35:53 +00:00
|
|
|
.remove = tpm_tis_spi_remove,
|
|
|
|
.id_table = tpm_tis_spi_id,
|
|
|
|
};
|
|
|
|
module_spi_driver(tpm_tis_spi_driver);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("TPM Driver for native SPI access");
|
|
|
|
MODULE_LICENSE("GPL");
|