1# NPCX PS2 configuration options 2 3# Copyright (c) 2021 Nuvoton Technology Corporation. 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig PS2_NPCX 7 bool "Nuvoton NPCX embedded controller (EC) PS2 driver" 8 depends on SOC_FAMILY_NPCX && ESPI_PERIPHERAL_8042_KBC 9 help 10 Enable the NPCX family PS2 driver. It provides four PS/2 channels. 11 Each channel has two quasi-bidirectional signals that serve as 12 direct interfaces to an external keyboard, mouse or any other 13 PS/2-compatible pointing device.The driver also depends on the KBC 14 8042 keyboard controller. 15 16if PS2_NPCX 17 18config PS2_CHANNEL_INIT_PRIORITY 19 int "PS/2 channel driver init priority" 20 default 41 21 help 22 PS/2 channel device driver initialization priority. 23 This should be lower than the PS2_INIT_PRIORITY as 24 NPCX PS/2 controller device driver should initialize 25 prior to channel device driver. 26 27endif # PS2_NPCX 28