]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
tpm: tis: Double the timeout B to 4s
authorMichal Suchanek <msuchanek@suse.de>
Fri, 4 Apr 2025 08:23:14 +0000 (10:23 +0200)
committerJarkko Sakkinen <jarkko@kernel.org>
Thu, 15 May 2025 01:49:15 +0000 (04:49 +0300)
With some Infineon chips the timeouts in tpm_tis_send_data (both B and
C) can reach up to about 2250 ms.

Timeout C is retried since
commit de9e33df7762 ("tpm, tpm_tis: Workaround failed command reception on Infineon devices")

Timeout B still needs to be extended.

The problem is most commonly encountered with context related operation
such as load context/save context. These are issued directly by the
kernel, and there is no retry logic for them.

When a filesystem is set up to use the TPM for unlocking the boot fails,
and restarting the userspace service is ineffective. This is likely
because ignoring a load context/save context result puts the real TPM
state and the TPM state expected by the kernel out of sync.

Chips known to be affected:
tpm_tis IFX1522:00: 2.0 TPM (device-id 0x1D, rev-id 54)
Description: SLB9672
Firmware Revision: 15.22

tpm_tis MSFT0101:00: 2.0 TPM (device-id 0x1B, rev-id 22)
Firmware Revision: 7.83

tpm_tis MSFT0101:00: 2.0 TPM (device-id 0x1A, rev-id 16)
Firmware Revision: 5.63

Link: https://lore.kernel.org/linux-integrity/Z5pI07m0Muapyu9w@kitsune.suse.cz/
Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
drivers/char/tpm/tpm_tis_core.h
include/linux/tpm.h

index 970d02c337c7f19b48b29edf37a4419354a6c7c6..6c3aa480396b64a9bb11f221f0420aa5e0a80689 100644 (file)
@@ -54,7 +54,7 @@ enum tis_int_flags {
 enum tis_defaults {
        TIS_MEM_LEN = 0x5000,
        TIS_SHORT_TIMEOUT = 750,        /* ms */
-       TIS_LONG_TIMEOUT = 2000,        /* 2 sec */
+       TIS_LONG_TIMEOUT = 4000,        /* 4 secs */
        TIS_TIMEOUT_MIN_ATML = 14700,   /* usecs */
        TIS_TIMEOUT_MAX_ATML = 15000,   /* usecs */
 };
index 9ac9768cc8f7f9544b5b1d95e461038086977c34..a3d8305e88a51ec41c3fe1286c3b54f360d281db 100644 (file)
@@ -224,7 +224,7 @@ enum tpm2_const {
 
 enum tpm2_timeouts {
        TPM2_TIMEOUT_A          =    750,
-       TPM2_TIMEOUT_B          =   2000,
+       TPM2_TIMEOUT_B          =   4000,
        TPM2_TIMEOUT_C          =    200,
        TPM2_TIMEOUT_D          =     30,
        TPM2_DURATION_SHORT     =     20,