mb/google/slippy/peppy: use shared touchpad interrupts

Windows (10/11) freaks out and generates an interrupt storm
if two ACPI devices are enabled and share an interrupt, even
when only one device is actually present. To mitigate this,
mark Peppy's interrupts as Shared rather than the default
of Exclusive.

Test: build/boot Windows 10 on Peppy, observe normal CPU
usage in Task Manager for System Interrupts task when
touchpad in use.

Change-Id: Ida78ddec3105cef6581cdde78da2e2c97d983a0a
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59330
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
Matt DeVillier 2021-11-13 15:26:40 -06:00 committed by Felix Held
parent 98c7d55eaa
commit a952b3f794
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ Scope (\_SB.PCI0.I2C0)
AddressingMode7Bit, // AddressingMode AddressingMode7Bit, // AddressingMode
"\\_SB.PCI0.I2C0" // ResourceSource "\\_SB.PCI0.I2C0" // ResourceSource
) )
Interrupt (ResourceConsumer, Level, ActiveLow) Interrupt (ResourceConsumer, Level, ActiveLow, Shared)
{ {
BOARD_TRACKPAD_IRQ BOARD_TRACKPAD_IRQ
} }
@ -60,7 +60,7 @@ Scope (\_SB.PCI0.I2C0)
AddressingMode7Bit, // AddressingMode AddressingMode7Bit, // AddressingMode
"\\_SB.PCI0.I2C0" // ResourceSource "\\_SB.PCI0.I2C0" // ResourceSource
) )
Interrupt (ResourceConsumer, Edge, ActiveLow) Interrupt (ResourceConsumer, Edge, ActiveLow, Shared)
{ {
BOARD_TRACKPAD_IRQ BOARD_TRACKPAD_IRQ
} }