blob: 38e2a7e241ddd6679cb54fabfd850fa4a9149d36 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stephen Warren11636252016-05-12 12:03:35 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Stephen Warren11636252016-05-12 12:03:35 -06005 */
6
7#include <common.h>
8#include <dm.h>
9#include <errno.h>
10#include <sysreset.h>
11#include <asm/state.h>
12#include <asm/test.h>
13
Stephen Warren11636252016-05-12 12:03:35 -060014static int sandbox_warm_sysreset_request(struct udevice *dev,
15 enum sysreset_t type)
16{
17 struct sandbox_state *state = state_get_current();
18
19 switch (type) {
20 case SYSRESET_WARM:
21 state->last_sysreset = type;
22 break;
23 default:
24 return -ENOSYS;
25 }
26 if (!state->sysreset_allowed[type])
27 return -EACCES;
28
29 return -EINPROGRESS;
30}
31
Mario Sixcda46882018-08-06 10:23:33 +020032int sandbox_warm_sysreset_get_status(struct udevice *dev, char *buf, int size)
33{
34 strlcpy(buf, "Reset Status: WARM", size);
35
36 return 0;
37}
38
Simon Glass751fed42018-10-01 12:22:46 -060039int sandbox_warm_sysreset_get_last(struct udevice *dev)
40{
41 return SYSRESET_WARM;
42}
43
Stephen Warren11636252016-05-12 12:03:35 -060044static int sandbox_sysreset_request(struct udevice *dev, enum sysreset_t type)
45{
46 struct sandbox_state *state = state_get_current();
47
48 /*
49 * If we have a device tree, the device we created from platform data
50 * (see the U_BOOT_DEVICE() declaration below) should not do anything.
51 * If we are that device, return an error.
52 */
Simon Glass03753c92017-05-18 20:09:59 -060053 if (state->fdt_fname && !dev_of_valid(dev))
Stephen Warren11636252016-05-12 12:03:35 -060054 return -ENODEV;
55
56 switch (type) {
57 case SYSRESET_COLD:
58 state->last_sysreset = type;
59 break;
60 case SYSRESET_POWER:
61 state->last_sysreset = type;
62 if (!state->sysreset_allowed[type])
63 return -EACCES;
64 sandbox_exit();
65 break;
Simon Glass751fed42018-10-01 12:22:46 -060066 case SYSRESET_POWER_OFF:
67 if (!state->sysreset_allowed[type])
68 return -EACCES;
Stephen Warren11636252016-05-12 12:03:35 -060069 default:
70 return -ENOSYS;
71 }
72 if (!state->sysreset_allowed[type])
73 return -EACCES;
74
75 return -EINPROGRESS;
76}
77
Mario Sixcda46882018-08-06 10:23:33 +020078int sandbox_sysreset_get_status(struct udevice *dev, char *buf, int size)
79{
80 strlcpy(buf, "Reset Status: COLD", size);
81
82 return 0;
83}
84
Simon Glass751fed42018-10-01 12:22:46 -060085int sandbox_sysreset_get_last(struct udevice *dev)
86{
Simon Glass2a072692018-11-23 21:29:28 -070087 struct sandbox_state *state = state_get_current();
88
89 /*
90 * The first phase is a power reset, after that we assume we don't
91 * know.
92 */
93 return state->jumped_fname ? SYSRESET_WARM : SYSRESET_POWER;
Simon Glass751fed42018-10-01 12:22:46 -060094}
95
Stephen Warren11636252016-05-12 12:03:35 -060096static struct sysreset_ops sandbox_sysreset_ops = {
97 .request = sandbox_sysreset_request,
Mario Sixcda46882018-08-06 10:23:33 +020098 .get_status = sandbox_sysreset_get_status,
Simon Glass751fed42018-10-01 12:22:46 -060099 .get_last = sandbox_sysreset_get_last,
Stephen Warren11636252016-05-12 12:03:35 -0600100};
101
102static const struct udevice_id sandbox_sysreset_ids[] = {
103 { .compatible = "sandbox,reset" },
104 { }
105};
106
107U_BOOT_DRIVER(sysreset_sandbox) = {
108 .name = "sysreset_sandbox",
109 .id = UCLASS_SYSRESET,
110 .of_match = sandbox_sysreset_ids,
111 .ops = &sandbox_sysreset_ops,
112};
113
114static struct sysreset_ops sandbox_warm_sysreset_ops = {
115 .request = sandbox_warm_sysreset_request,
Mario Sixcda46882018-08-06 10:23:33 +0200116 .get_status = sandbox_warm_sysreset_get_status,
Simon Glass751fed42018-10-01 12:22:46 -0600117 .get_last = sandbox_warm_sysreset_get_last,
Stephen Warren11636252016-05-12 12:03:35 -0600118};
119
120static const struct udevice_id sandbox_warm_sysreset_ids[] = {
121 { .compatible = "sandbox,warm-reset" },
122 { }
123};
124
125U_BOOT_DRIVER(warm_sysreset_sandbox) = {
126 .name = "warm_sysreset_sandbox",
127 .id = UCLASS_SYSRESET,
128 .of_match = sandbox_warm_sysreset_ids,
129 .ops = &sandbox_warm_sysreset_ops,
130};
131
132/* This is here in case we don't have a device tree */
133U_BOOT_DEVICE(sysreset_sandbox_non_fdt) = {
134 .name = "sysreset_sandbox",
135};