From 69bb0f15996ff36161ef9db400286997189f04ab Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 15 Oct 2025 20:19:16 -0400 Subject: kern/amd64: i8042: Add option to poll keyboard Some hardware may not work too well with the i8042 and interrupts, as a mitigation, we've added an option to poll instead of using interrupts Signed-off-by: Ian Moffett --- src/sys/arch/amd64/conf/GENERIC | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/sys/arch/amd64/conf') diff --git a/src/sys/arch/amd64/conf/GENERIC b/src/sys/arch/amd64/conf/GENERIC index 93919d8..f402941 100644 --- a/src/sys/arch/amd64/conf/GENERIC +++ b/src/sys/arch/amd64/conf/GENERIC @@ -2,3 +2,7 @@ // as a method. Some firmware (e.g., on some laptops) // may not handle these well and hang. option I8042_REBOOT yes + +// Controls if the i8042 should be polled +// rather than dependent on interrupts +option I8042_POLL no -- cgit v1.2.3