4d57f64193
Add support for the TI TPS382x series. The IC has an input pin which should be toggled by the processor and a output pin which should be connected to the RESET input of the processor. The timeout is not configurable. This device can be used by devices which does not have any internal hardware watchdog device. Signed-off-by: Jeppe Odgaard <jeppe.odgaard@prevas.dk>
13 lines
331 B
Plaintext
13 lines
331 B
Plaintext
# Copyright (c) 2023 Prevas A/S
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config WDT_TI_TPS382X
|
|
bool "External TI TPS382x Watchdog (WDT) Driver"
|
|
default y
|
|
depends on DT_HAS_TI_TPS382X_ENABLED
|
|
depends on GPIO
|
|
help
|
|
Enable WDT driver for TI TPS382x. This is an external IC and requires
|
|
a GPIO connection from the processor.
|