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 DT_HAS_NUVOTON_NPCX_PS2_CHANNEL_ENABLED
9	default y
10	help
11	  Enable the NPCX family PS2 driver. It provides four PS/2 channels.
12	  Each channel has two quasi-bidirectional signals that serve as
13	  direct interfaces to an external keyboard, mouse or any other
14	  PS/2-compatible pointing device.The driver also depends on the KBC
15	  8042 keyboard controller.
16
17if PS2_NPCX
18
19config PS2_CHANNEL_INIT_PRIORITY
20	int "PS/2 channel driver init priority"
21	default 41
22	help
23	  PS/2 channel device driver initialization priority.
24	  This should be lower than the PS2_INIT_PRIORITY as
25	  NPCX PS/2 controller device driver should initialize
26	  prior to channel device driver.
27
28endif # PS2_NPCX
29