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