hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#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_alloc_size = sizeof(struct wdt_reboot_priv),
   .probe = wdt_reboot_probe,
};