~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: caa9f80e3fcaabe524088a1a46b03d5c097365e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) Siemens AG, 2023
 *
 * Authors:
 *   Jan Kiszka <jan.kiszka@siemens.com>
 */

#include <env/ti/ti_armv7_common.env>

usb_pgood_delay=900

watchdog_timeout_ms=CONFIG_WATCHDOG_TIMEOUT_MSECS
start_watchdog=
	if test ${watchdog_timeout_ms} -gt 0; then
		wdt dev watchdog@40610000;
		wdt start ${watchdog_timeout_ms};
		echo Watchdog started, timeout ${watchdog_timeout_ms} ms;
	fi