Skip to content

Commit bc825e8

Browse files
eworm-dejarkkojs
authored andcommitted
tpm/tpm_tis: Disable interrupts for Framework Laptop Intel 13th gen
This device suffer an irq storm, so add it in tpm_tis_dmi_table to force polling. Cc: stable@vger.kernel.org # v6.4+ Link: https://community.frame.work/t/boot-and-shutdown-hangs-with-arch-linux-kernel-6-4-1-mainline-and-arch/33118 Fixes: e644b2f ("tpm, tpm_tis: Enable interrupt test") Reported-by: <roubro1991@gmail.com> Closes: https://bugzilla.kernel.org/show_bug.cgi?id=217631 Signed-off-by: Christian Hesse <mail@eworm.de> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
1 parent 08b0af4 commit bc825e8

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
@@ -122,6 +122,14 @@ static const struct dmi_system_id tpm_tis_dmi_table[] = {
122122
DMI_MATCH(DMI_PRODUCT_NAME, "Laptop (12th Gen Intel Core)"),
123123
},
124124
},
125+
{
126+
.callback = tpm_tis_disable_irq,
127+
.ident = "Framework Laptop (13th Gen Intel Core)",
128+
.matches = {
129+
DMI_MATCH(DMI_SYS_VENDOR, "Framework"),
130+
DMI_MATCH(DMI_PRODUCT_NAME, "Laptop (13th Gen Intel Core)"),
131+
},
132+
},
125133
{
126134
.callback = tpm_tis_disable_irq,
127135
.ident = "ThinkPad T490s",

0 commit comments

Comments
 (0)