xref: /openbmc/u-boot/include/sysreset.h (revision 0f347a00)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2015 Google, Inc
4  * Written by Simon Glass <sjg@chromium.org>
5  */
6 
7 #ifndef __SYSRESET_H
8 #define __SYSRESET_H
9 
10 enum sysreset_t {
11 	SYSRESET_WARM,	/* Reset CPU, keep GPIOs active */
12 	SYSRESET_COLD,	/* Reset CPU and GPIOs */
13 	SYSRESET_POWER,	/* Reset PMIC (remove and restore power) */
14 
15 	SYSRESET_COUNT,
16 };
17 
18 struct sysreset_ops {
19 	/**
20 	 * request() - request a sysreset of the given type
21 	 *
22 	 * Note that this function may return before the reset takes effect.
23 	 *
24 	 * @type:	Reset type to request
25 	 * @return -EINPROGRESS if the reset has been started and
26 	 *		will complete soon, -EPROTONOSUPPORT if not supported
27 	 *		by this device, 0 if the reset has already happened
28 	 *		(in which case this method will not actually return)
29 	 */
30 	int (*request)(struct udevice *dev, enum sysreset_t type);
31 	/**
32 	 * get_status() - get printable reset status information
33 	 *
34 	 * @buf:	Buffer to receive the textual reset information
35 	 * @size:	Size of the passed buffer
36 	 * @return 0 if OK, -ve on error
37 	 */
38 	int (*get_status)(struct udevice *dev, char *buf, int size);
39 };
40 
41 #define sysreset_get_ops(dev)        ((struct sysreset_ops *)(dev)->driver->ops)
42 
43 /**
44  * sysreset_request() - request a sysreset
45  *
46  * @type:	Reset type to request
47  * @return 0 if OK, -EPROTONOSUPPORT if not supported by this device
48  */
49 int sysreset_request(struct udevice *dev, enum sysreset_t type);
50 
51 /**
52  * get_status() - get printable reset status information
53  *
54  * @buf:	Buffer to receive the textual reset information
55  * @size:	Size of the passed buffer
56  * @return 0 if OK, -ve on error
57  */
58 int sysreset_get_status(struct udevice *dev, char *buf, int size);
59 
60 /**
61  * sysreset_walk() - cause a system reset
62  *
63  * This works through the available sysreset devices until it finds one that can
64  * perform a reset. If the provided sysreset type is not available, the next one
65  * will be tried.
66  *
67  * If this function fails to reset, it will display a message and halt
68  *
69  * @type:	Reset type to request
70  * @return -EINPROGRESS if a reset is in progress, -ENOSYS if not available
71  */
72 int sysreset_walk(enum sysreset_t type);
73 
74 /**
75  * sysreset_walk_halt() - try to reset, otherwise halt
76  *
77  * This calls sysreset_walk(). If it returns, indicating that reset is not
78  * supported, it prints a message and halts.
79  */
80 void sysreset_walk_halt(enum sysreset_t type);
81 
82 /**
83  * reset_cpu() - calls sysreset_walk(SYSRESET_WARM)
84  */
85 void reset_cpu(ulong addr);
86 
87 #endif
88