// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2016 Google, Inc * * This device driver implements a TCG PTP FIFO interface over SPI for chips * with Cr50 firmware. * It is based on tpm_tis_spi driver by Peter Huewe and Christophe Ricard.
*/
/* * Cr50 timing constants: * - can go to sleep not earlier than after CR50_SLEEP_DELAY_MSEC. * - needs up to CR50_WAKE_START_DELAY_USEC to wake after sleep. * - requires waiting for "ready" IRQ, if supported; or waiting for at least * CR50_NOIRQ_ACCESS_DELAY_MSEC between transactions, if IRQ is not supported. * - waits for up to CR50_FLOW_CONTROL for flow control 'ready' indication.
*/ #define CR50_SLEEP_DELAY_MSEC 1000 #define CR50_WAKE_START_DELAY_USEC 1000 #define CR50_NOIRQ_ACCESS_DELAY msecs_to_jiffies(2) #define CR50_READY_IRQ_TIMEOUT msecs_to_jiffies(TPM2_TIMEOUT_A) #define CR50_FLOW_CONTROL msecs_to_jiffies(TPM2_TIMEOUT_A) #define MAX_IRQ_CONFIRMATION_ATTEMPTS 3
/* * The cr50 interrupt handler just signals waiting threads that the * interrupt was asserted. It does not do any processing triggered * by interrupts but is instead used to avoid fixed delays.
*/ static irqreturn_t cr50_spi_irq_handler(int dummy, void *dev_id)
{ struct cr50_spi_phy *cr50_phy = dev_id;
/* * Cr50 needs to have at least some delay between consecutive * transactions. Make sure we wait.
*/ staticvoid cr50_ensure_access_delay(struct cr50_spi_phy *phy)
{ unsignedlong allowed_access = phy->last_access + phy->access_delay; unsignedlong time_now = jiffies; struct device *dev = &phy->spi_phy.spi_device->dev;
/* * Note: There is a small chance, if Cr50 is not accessed in a few days, * that time_in_range will not provide the correct result after the wrap * around for jiffies. In this case, we'll have an unneeded short delay, * which is fine.
*/ if (time_in_range_open(time_now, phy->last_access, allowed_access)) { unsignedlong remaining, timeout = allowed_access - time_now;
remaining = wait_for_completion_timeout(&phy->spi_phy.ready,
timeout); if (!remaining && phy->irq_confirmed)
dev_warn(dev, "Timeout waiting for TPM ready IRQ\n");
}
if (phy->irq_needs_confirmation) { unsignedint attempt = ++phy->irq_confirmation_attempt;
if (phy->irq_confirmed) {
phy->irq_needs_confirmation = false;
phy->access_delay = CR50_READY_IRQ_TIMEOUT;
dev_info(dev, "TPM ready IRQ confirmed on attempt %u\n",
attempt);
} elseif (attempt > MAX_IRQ_CONFIRMATION_ATTEMPTS) {
phy->irq_needs_confirmation = false;
dev_warn(dev, "IRQ not confirmed - will use delays\n");
}
}
}
/* * Cr50 might go to sleep if there is no SPI activity for some time and * miss the first few bits/bytes on the bus. In such case, wake it up * by asserting CS and give it time to start up.
*/ staticbool cr50_needs_waking(struct cr50_spi_phy *phy)
{ /* * Note: There is a small chance, if Cr50 is not accessed in a few days, * that time_in_range will not provide the correct result after the wrap * around for jiffies. In this case, we'll probably timeout or read * incorrect value from TPM_STS and just retry the operation.
*/ return !time_in_range_open(jiffies, phy->last_access,
phy->spi_phy.wake_after);
}
spi_sync_transfer(phy->spi_device, &spi_cs_wake, 1); /* Wait for it to fully wake */
usleep_range(CR50_WAKE_START_DELAY_USEC,
CR50_WAKE_START_DELAY_USEC * 2);
}
/* Reset the time when we need to wake Cr50 again */
phy->wake_after = jiffies + msecs_to_jiffies(CR50_SLEEP_DELAY_MSEC);
}
/* * Flow control: clock the bus and wait for cr50 to set LSB before * sending/receiving data. TCG PTP spec allows it to happen during * the last byte of header, but cr50 never does that in practice, * and earlier versions had a bug when it was set too early, so don't * check for it during header transfer.
*/ staticint cr50_spi_flow_control(struct tpm_tis_spi_phy *phy, struct spi_transfer *spi_xfer)
{ struct device *dev = &phy->spi_device->dev; unsignedlong timeout = jiffies + CR50_FLOW_CONTROL; struct spi_message m; int ret;
spi_xfer->len = 1;
do {
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 (time_after(jiffies, timeout)) {
dev_warn(dev, "Timeout during flow control\n"); return -EBUSY;
}
} while (!(phy->iobuf[0] & 0x01));
return 0;
}
staticbool tpm_cr50_spi_is_firmware_power_managed(struct device *dev)
{
u8 val; int ret;
/* This flag should default true when the device property is not present */
ret = device_property_read_u8(dev, "firmware-power-managed", &val); if (ret) returntrue;
mutex_lock(&cr50_phy->time_track_mutex); /* * Do this outside of spi_bus_lock in case cr50 is not the * only device on that spi bus.
*/
cr50_ensure_access_delay(cr50_phy);
cr50_wake_if_needed(cr50_phy);
ret = tpm_tis_spi_transfer(data, addr, len, in, out);
staticvoid cr50_print_fw_version(struct tpm_tis_data *data)
{ struct tpm_tis_spi_phy *phy = to_tpm_tis_spi_phy(data); int i, len = 0; char fw_ver[TPM_CR50_MAX_FW_VER_LEN + 1]; char fw_ver_block[4];
/* * Write anything to TPM_CR50_FW_VER to start from the beginning * of the version string
*/
tpm_tis_write8(data, TPM_CR50_FW_VER(data->locality), 0);
/* Read the string, 4 bytes at a time, until we get '\0' */ do {
tpm_tis_read_bytes(data, TPM_CR50_FW_VER(data->locality), 4,
fw_ver_block); for (i = 0; i < 4 && fw_ver_block[i]; ++len, ++i)
fw_ver[len] = fw_ver_block[i];
} while (i == 4 && len < TPM_CR50_MAX_FW_VER_LEN);
fw_ver[len] = '\0';
if (spi->irq > 0) {
ret = devm_request_irq(&spi->dev, spi->irq,
cr50_spi_irq_handler,
IRQF_TRIGGER_RISING | IRQF_ONESHOT, "cr50_spi", cr50_phy); if (ret < 0) { if (ret == -EPROBE_DEFER) return ret;
dev_warn(&spi->dev, "Requesting IRQ %d failed: %d\n",
spi->irq, ret); /* * This is not fatal, the driver will fall back to * delays automatically, since ready will never * be completed without a registered irq handler. * So, just fall through.
*/
} else { /* * IRQ requested, let's verify that it is actually * triggered, before relying on it.
*/
cr50_phy->irq_needs_confirmation = true;
}
} else {
dev_warn(&spi->dev, "No IRQ - will use delays between transactions.\n");
}
ret = tpm_tis_spi_init(spi, phy, -1, &tpm_spi_cr50_phy_ops); if (ret) return ret;
cr50_print_fw_version(&phy->priv);
chip = dev_get_drvdata(&spi->dev); if (tpm_cr50_spi_is_firmware_power_managed(&spi->dev))
chip->flags |= TPM_CHIP_FLAG_FIRMWARE_POWER_MANAGED;
return 0;
}
#ifdef CONFIG_PM_SLEEP int tpm_tis_spi_resume(struct device *dev)
{ struct tpm_chip *chip = dev_get_drvdata(dev); struct tpm_tis_data *data = dev_get_drvdata(&chip->dev); struct tpm_tis_spi_phy *phy = to_tpm_tis_spi_phy(data); /* * Jiffies not increased during suspend, so we need to reset * the time to wake Cr50 after resume.
*/
phy->wake_after = jiffies;
return tpm_tis_resume(dev);
} #endif
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.