1# NPCX WDT driver configuration options
2
3# Copyright (c) 2021 Nuvoton Technology Corporation.
4# SPDX-License-Identifier: Apache-2.0
5
6config WDT_NPCX
7	bool "Nuvoton NPCX embedded controller (EC) Watchdog Timer driver"
8	default y
9	depends on DT_HAS_NUVOTON_NPCX_WATCHDOG_ENABLED
10	select HAS_WDT_DISABLE_AT_BOOT
11	help
12	  This option enables the Watchdog Timer driver for NPCX family of
13	  processors.
14	  Say y if you wish to use watchdog on NPCX MCU.
15
16config WDT_NPCX_WARNING_LEADING_TIME_MS
17	int "Milliseconds before generating watchdog event/signal"
18	depends on WDT_NPCX
19	default 500
20	help
21	  This option defines the window in which a watchdog event must be
22	  handled. After this time window, the watchdog reset triggers
23	  immediately.
24