mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
41575d8e4c
This construct is quite long-winded. In earlier days it made some sense since auto-allocation was a strange concept. But with driver model now used pretty universally, we can shorten this to 'auto'. This reduces verbosity and makes it easier to read. Coincidentally it also ensures that every declaration is on one line, thus making dtoc's job easier. Signed-off-by: Simon Glass <sjg@chromium.org>
59 lines
1.1 KiB
C
59 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <errno.h>
|
|
#include <sysreset.h>
|
|
#include <wdt.h>
|
|
|
|
struct wdt_reboot_priv {
|
|
struct udevice *wdt;
|
|
};
|
|
|
|
static int wdt_reboot_request(struct udevice *dev, enum sysreset_t type)
|
|
{
|
|
struct wdt_reboot_priv *priv = dev_get_priv(dev);
|
|
int ret;
|
|
|
|
ret = wdt_expire_now(priv->wdt, 0);
|
|
if (ret)
|
|
return ret;
|
|
|
|
return -EINPROGRESS;
|
|
}
|
|
|
|
static struct sysreset_ops wdt_reboot_ops = {
|
|
.request = wdt_reboot_request,
|
|
};
|
|
|
|
int wdt_reboot_probe(struct udevice *dev)
|
|
{
|
|
struct wdt_reboot_priv *priv = dev_get_priv(dev);
|
|
int err;
|
|
|
|
err = uclass_get_device_by_phandle(UCLASS_WDT, dev,
|
|
"wdt", &priv->wdt);
|
|
if (err) {
|
|
pr_err("unable to find wdt device\n");
|
|
return err;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct udevice_id wdt_reboot_ids[] = {
|
|
{ .compatible = "wdt-reboot" },
|
|
{ /* sentinel */ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(wdt_reboot) = {
|
|
.name = "wdt_reboot",
|
|
.id = UCLASS_SYSRESET,
|
|
.of_match = wdt_reboot_ids,
|
|
.ops = &wdt_reboot_ops,
|
|
.priv_auto = sizeof(struct wdt_reboot_priv),
|
|
.probe = wdt_reboot_probe,
|
|
};
|