blob: e05d82789f6563b61743bea5959ebb9e0c51b786 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
maxims@google.com0753bc22017-04-17 12:00:21 -07002/*
3 * Copyright 2017 Google, Inc
maxims@google.com0753bc22017-04-17 12:00:21 -07004 */
5
6#include <common.h>
7#include <dm.h>
maxims@google.com0753bc22017-04-17 12:00:21 -07008#include <wdt.h>
Maxim Sloyko78df5e12017-05-09 09:08:07 -04009#include <asm/state.h>
maxims@google.com0753bc22017-04-17 12:00:21 -070010
maxims@google.com0753bc22017-04-17 12:00:21 -070011static int sandbox_wdt_start(struct udevice *dev, u64 timeout, ulong flags)
12{
13 struct sandbox_state *state = state_get_current();
14
15 state->wdt.counter = timeout;
16 state->wdt.running = true;
17
18 return 0;
19}
20
21static int sandbox_wdt_stop(struct udevice *dev)
22{
23 struct sandbox_state *state = state_get_current();
24
25 state->wdt.running = false;
26
27 return 0;
28}
29
30static int sandbox_wdt_reset(struct udevice *dev)
31{
32 struct sandbox_state *state = state_get_current();
33
34 state->wdt.reset_count++;
35
36 return 0;
37}
38
39static int sandbox_wdt_expire_now(struct udevice *dev, ulong flags)
40{
41 sandbox_wdt_start(dev, 1, flags);
42
43 return 0;
44}
45
maxims@google.com0753bc22017-04-17 12:00:21 -070046static const struct wdt_ops sandbox_wdt_ops = {
47 .start = sandbox_wdt_start,
48 .reset = sandbox_wdt_reset,
49 .stop = sandbox_wdt_stop,
50 .expire_now = sandbox_wdt_expire_now,
51};
52
53static const struct udevice_id sandbox_wdt_ids[] = {
54 { .compatible = "sandbox,wdt" },
55 {}
56};
57
58U_BOOT_DRIVER(wdt_sandbox) = {
59 .name = "wdt_sandbox",
60 .id = UCLASS_WDT,
61 .of_match = sandbox_wdt_ids,
62 .ops = &sandbox_wdt_ops,
maxims@google.com0753bc22017-04-17 12:00:21 -070063};