1/*
2 * Copyright (c) 2023 Prevas A/S
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	aliases {
9		watchdog0 = &wd_external;
10	};
11
12	wd_external: wd_external {
13		compatible = "ti,tps382x";
14		status = "okay";
15		wdi-gpios = <&gpio1 21 GPIO_ACTIVE_LOW>;
16	};
17};
18
19&wdog0 {
20	status = "disabled";
21};
22