Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/52143 )
Change subject: mb/google/guybrush: Unmask eSPI IRQs 1 and 12 ......................................................................
mb/google/guybrush: Unmask eSPI IRQs 1 and 12
PS/2 keyboard used IRQ 1, and PS/2 mouse uses IRQ 12.
BUG=none TEST=Boot guybrush and see internal keyboard working
Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: I97b7382eac28aae2cc82f430c58cf8066b9701e1 --- M src/mainboard/google/guybrush/mainboard.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/52143/1
diff --git a/src/mainboard/google/guybrush/mainboard.c b/src/mainboard/google/guybrush/mainboard.c index 57f658c..08333fb 100644 --- a/src/mainboard/google/guybrush/mainboard.c +++ b/src/mainboard/google/guybrush/mainboard.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */
+#include <amdblocks/acpimmio.h> #include <amdblocks/amd_pci_util.h> #include <baseboard/variants.h> #include <device/device.h> @@ -113,6 +114,9 @@ init_tables(); /* Initialize the PIRQ data structures for consumption */ pirq_setup(); + + /* Unmask eSPI IRQ 1 and 12 */ + pm_write32(PM_ESPI_INTR_CTRL, PM_ESPI_DEV_INTR_MASK & ~(BIT(1) | BIT(12))); }
struct chip_operations mainboard_ops = {