On Wed, 10 Apr 2024, Mario Limonciello wrote: > BIOS 03.05 still hasn't fixed the spurious IRQ1 issue. As it's still > being worked on there is still a possiblitiy that it won't need to > apply to future BIOS releases. Hi Mario, Could you explain/confirm what the second sentence is supposed to mean? Mainly I mean "it won't need to apply to future", did you perhaps mean it might need to be applied still to some future versions too besides this one because the fix is still being worked on, or what? There's also "possiblitiy" typo, in case you end up rewriting the message and send v2. -- i. > Add a quirk for BIOS 03.05 as well. > > Signed-off-by: Mario Limonciello <mario.limonciello@xxxxxxx> > --- > drivers/platform/x86/amd/pmc/pmc-quirks.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/drivers/platform/x86/amd/pmc/pmc-quirks.c b/drivers/platform/x86/amd/pmc/pmc-quirks.c > index b456370166b6..b4f49720c87f 100644 > --- a/drivers/platform/x86/amd/pmc/pmc-quirks.c > +++ b/drivers/platform/x86/amd/pmc/pmc-quirks.c > @@ -208,6 +208,15 @@ static const struct dmi_system_id fwbug_list[] = { > DMI_MATCH(DMI_BIOS_VERSION, "03.03"), > } > }, > + { > + .ident = "Framework Laptop 13 (Phoenix)", > + .driver_data = &quirk_spurious_8042, > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "Framework"), > + DMI_MATCH(DMI_PRODUCT_NAME, "Laptop 13 (AMD Ryzen 7040Series)"), > + DMI_MATCH(DMI_BIOS_VERSION, "03.05"), > + } > + }, > {} > }; > >