Skip to content

Commit 393f362

Browse files
fbezdekajarkkojs
authored andcommitted
tpm/tpm_tis: Disable interrupts for Lenovo L590 devices
The Lenovo L590 suffers from an irq storm issue like the T490, T490s and P360 Tiny, so add an entry for it to tpm_tis_dmi_table and force polling. Cc: stable@vger.kernel.org # v6.4+ Link: https://bugzilla.redhat.com/show_bug.cgi?id=2214069#c0 Fixes: e644b2f ("tpm, tpm_tis: Enable interrupt test") Signed-off-by: Florian Bezdeka <florian@bezdeka.de> Reviewed-by: Jerry Snitselaar <jsnitsel@redhat.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
1 parent b1c1b98 commit 393f362

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

drivers/char/tpm/tpm_tis.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,14 @@ static const struct dmi_system_id tpm_tis_dmi_table[] = {
154154
DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad L490"),
155155
},
156156
},
157+
{
158+
.callback = tpm_tis_disable_irq,
159+
.ident = "ThinkPad L590",
160+
.matches = {
161+
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
162+
DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad L590"),
163+
},
164+
},
157165
{
158166
.callback = tpm_tis_disable_irq,
159167
.ident = "UPX-TGL",

0 commit comments

Comments
 (0)