u-boot/drivers/watchdog/sandbox_alarm-wdt.c
Rasmus Villemoes 10107efedd sandbox: add SIGALRM-based watchdog device
In order to test that U-Boot actually maintains the watchdog device(s)
during long-running busy-loops, such as those where we wait for the
user to stop autoboot, we need a watchdog device that actually does
something during those loops; we cannot test that behaviour via the DM
test framework.

So introduce a relatively simple watchdog device which is simply based
on calling the host OS' alarm() function; that has the nice property
that a new call to alarm() simply sets a new deadline, and alarm(0)
cancels any existing alarm. These properties are precisely what we
need to implement start/reset/stop. We install our own handler so that
we get a known message printed if and when the watchdog fires, and by
just invoking that handler directly, we get expire_now for free.

The actual calls to the various OS functions (alarm, signal, raise)
need to be done in os.c, and since the driver code cannot get access
to the values of SIGALRM or SIG_DFL (that would require including a
host header, and that's only os.c which can do that), we cannot simply
do trivial wrappers for signal() and raise(), but instead create
specialized functions just for use by this driver.

Apart from enabling this driver for sandbox{,64}_defconfig, also
enable the wdt command which was useful for hand-testing this new
driver (especially with running u-boot under strace).

Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
2022-10-24 11:10:21 +02:00

80 lines
1.4 KiB
C

#include <common.h>
#include <dm.h>
#include <os.h>
#include <wdt.h>
struct alarm_wdt_priv {
unsigned int timeout_sec;
};
static void alarm_handler(int sig)
{
const char *msg = "!!! ALARM !!!\n";
os_write(2, msg, strlen(msg));
os_fd_restore();
os_set_alarm_handler(NULL);
os_raise_sigalrm();
}
static int alarm_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
{
struct alarm_wdt_priv *priv = dev_get_priv(dev);
unsigned int sec;
timeout = DIV_ROUND_UP(timeout, 1000);
sec = min_t(u64, UINT_MAX, timeout);
priv->timeout_sec = sec;
os_alarm(0);
os_set_alarm_handler(alarm_handler);
os_alarm(sec);
return 0;
}
static int alarm_wdt_stop(struct udevice *dev)
{
os_alarm(0);
os_set_alarm_handler(NULL);
return 0;
}
static int alarm_wdt_reset(struct udevice *dev)
{
struct alarm_wdt_priv *priv = dev_get_priv(dev);
os_alarm(priv->timeout_sec);
return 0;
}
static int alarm_wdt_expire_now(struct udevice *dev, ulong flags)
{
alarm_handler(0);
return 0;
}
static const struct wdt_ops alarm_wdt_ops = {
.start = alarm_wdt_start,
.reset = alarm_wdt_reset,
.stop = alarm_wdt_stop,
.expire_now = alarm_wdt_expire_now,
};
static const struct udevice_id alarm_wdt_ids[] = {
{ .compatible = "sandbox,alarm-wdt" },
{}
};
U_BOOT_DRIVER(alarm_wdt_sandbox) = {
.name = "alarm_wdt_sandbox",
.id = UCLASS_WDT,
.of_match = alarm_wdt_ids,
.ops = &alarm_wdt_ops,
.priv_auto = sizeof(struct alarm_wdt_priv),
};