blob: 57bbc0b49de09f48bf2070c6ce35c9da7cc8738d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Warren89c1e2d2016-06-17 09:43:58 -06002/*
3 * Copyright (c) 2016, NVIDIA CORPORATION.
Stephen Warren89c1e2d2016-06-17 09:43:58 -06004 */
5
6#ifndef _RESET_H
7#define _RESET_H
8
Jagan Tekiea9dc352019-02-28 00:26:55 +05309#include <dm/ofnode.h>
Masahiro Yamada4815db82016-09-21 11:29:01 +090010#include <linux/errno.h>
11
Stephen Warren89c1e2d2016-06-17 09:43:58 -060012/**
13 * A reset is a hardware signal indicating that a HW module (or IP block, or
14 * sometimes an entire off-CPU chip) reset all of its internal state to some
15 * known-good initial state. Drivers will often reset HW modules when they
16 * begin execution to ensure that hardware correctly responds to all requests,
17 * or in response to some error condition. Reset signals are often controlled
18 * externally to the HW module being reset, by an entity this API calls a reset
19 * controller. This API provides a standard means for drivers to request that
20 * reset controllers set or clear reset signals.
21 *
22 * A driver that implements UCLASS_RESET is a reset controller or provider. A
23 * controller will often implement multiple separate reset signals, since the
24 * hardware it manages often has this capability. reset-uclass.h describes the
25 * interface which reset controllers must implement.
26 *
27 * Reset consumers/clients are the HW modules affected by reset signals. This
28 * header file describes the API used by drivers for those HW modules.
29 */
30
31struct udevice;
32
33/**
34 * struct reset_ctl - A handle to (allowing control of) a single reset signal.
35 *
36 * Clients provide storage for reset control handles. The content of the
37 * structure is managed solely by the reset API and reset drivers. A reset
38 * control struct is initialized by "get"ing the reset control struct. The
39 * reset control struct is passed to all other reset APIs to identify which
40 * reset signal to operate upon.
41 *
42 * @dev: The device which implements the reset signal.
43 * @id: The reset signal ID within the provider.
Andreas Dannenbergc72f9b72018-08-27 15:57:40 +053044 * @data: An optional data field for scenarios where a single integer ID is not
45 * sufficient. If used, it can be populated through an .of_xlate op and
46 * processed during the various reset ops.
Stephen Warren89c1e2d2016-06-17 09:43:58 -060047 *
Andreas Dannenbergc72f9b72018-08-27 15:57:40 +053048 * Should additional information to identify and configure any reset signal
49 * for any provider be required in the future, the struct could be expanded to
Stephen Warren89c1e2d2016-06-17 09:43:58 -060050 * either (a) add more fields to allow reset providers to store additional
51 * information, or (b) replace the id field with an opaque pointer, which the
52 * provider would dynamically allocated during its .of_xlate op, and process
53 * during is .request op. This may require the addition of an extra op to clean
54 * up the allocation.
55 */
56struct reset_ctl {
57 struct udevice *dev;
58 /*
Andreas Dannenbergc72f9b72018-08-27 15:57:40 +053059 * Written by of_xlate. In the future, we might add more fields here.
Stephen Warren89c1e2d2016-06-17 09:43:58 -060060 */
61 unsigned long id;
Andreas Dannenbergc72f9b72018-08-27 15:57:40 +053062 unsigned long data;
Stephen Warren89c1e2d2016-06-17 09:43:58 -060063};
64
Neil Armstrong0c282332018-04-03 11:40:50 +020065/**
66 * struct reset_ctl_bulk - A handle to (allowing control of) a bulk of reset
67 * signals.
68 *
69 * Clients provide storage for the reset control bulk. The content of the
70 * structure is managed solely by the reset API. A reset control bulk struct is
71 * initialized by "get"ing the reset control bulk struct.
72 * The reset control bulk struct is passed to all other bulk reset APIs to apply
73 * the API to all the reset signals in the bulk struct.
74 *
75 * @resets: An array of reset signal handles handles.
76 * @count: The number of reset signal handles in the reset array.
77 */
78struct reset_ctl_bulk {
79 struct reset_ctl *resets;
80 unsigned int count;
81};
82
Ley Foon Tand99894d2018-06-14 18:45:20 +080083#if CONFIG_IS_ENABLED(DM_RESET)
Stephen Warren89c1e2d2016-06-17 09:43:58 -060084/**
85 * reset_get_by_index - Get/request a reset signal by integer index.
86 *
87 * This looks up and requests a reset signal. The index is relative to the
88 * client device; each device is assumed to have n reset signals associated
89 * with it somehow, and this function finds and requests one of them. The
90 * mapping of client device reset signal indices to provider reset signals may
91 * be via device-tree properties, board-provided mapping tables, or some other
92 * mechanism.
93 *
94 * @dev: The client device.
95 * @index: The index of the reset signal to request, within the client's
96 * list of reset signals.
97 * @reset_ctl A pointer to a reset control struct to initialize.
98 * @return 0 if OK, or a negative error code.
99 */
100int reset_get_by_index(struct udevice *dev, int index,
101 struct reset_ctl *reset_ctl);
102
103/**
Jagan Tekiea9dc352019-02-28 00:26:55 +0530104 * reset_get_by_index_nodev - Get/request a reset signal by integer index
105 * without a device.
106 *
107 * This is a version of reset_get_by_index() that does not use a device.
108 *
109 * @node: The client ofnode.
110 * @index: The index of the reset signal to request, within the client's
111 * list of reset signals.
112 * @reset_ctl A pointer to a reset control struct to initialize.
113 * @return 0 if OK, or a negative error code.
114 */
115int reset_get_by_index_nodev(ofnode node, int index,
116 struct reset_ctl *reset_ctl);
117
118/**
Neil Armstrong0c282332018-04-03 11:40:50 +0200119 * reset_get_bulk - Get/request all reset signals of a device.
120 *
121 * This looks up and requests all reset signals of the client device; each
122 * device is assumed to have n reset signals associated with it somehow,
123 * and this function finds and requests all of them in a separate structure.
124 * The mapping of client device reset signals indices to provider reset signals
125 * may be via device-tree properties, board-provided mapping tables, or some
126 * other mechanism.
127 *
128 * @dev: The client device.
129 * @bulk A pointer to a reset control bulk struct to initialize.
130 * @return 0 if OK, or a negative error code.
131 */
132int reset_get_bulk(struct udevice *dev, struct reset_ctl_bulk *bulk);
133
134/**
Stephen Warren89c1e2d2016-06-17 09:43:58 -0600135 * reset_get_by_name - Get/request a reset signal by name.
136 *
137 * This looks up and requests a reset signal. The name is relative to the
138 * client device; each device is assumed to have n reset signals associated
139 * with it somehow, and this function finds and requests one of them. The
140 * mapping of client device reset signal names to provider reset signal may be
141 * via device-tree properties, board-provided mapping tables, or some other
142 * mechanism.
143 *
144 * @dev: The client device.
145 * @name: The name of the reset signal to request, within the client's
146 * list of reset signals.
147 * @reset_ctl: A pointer to a reset control struct to initialize.
148 * @return 0 if OK, or a negative error code.
149 */
150int reset_get_by_name(struct udevice *dev, const char *name,
151 struct reset_ctl *reset_ctl);
152
153/**
Patrice Chotard9bd5cdf2017-07-18 11:57:05 +0200154 * reset_request - Request a reset signal.
155 *
156 * @reset_ctl: A reset control struct.
157 *
158 * @return 0 if OK, or a negative error code.
159 */
160int reset_request(struct reset_ctl *reset_ctl);
161
162/**
Stephen Warren89c1e2d2016-06-17 09:43:58 -0600163 * reset_free - Free a previously requested reset signal.
164 *
165 * @reset_ctl: A reset control struct that was previously successfully
166 * requested by reset_get_by_*().
167 * @return 0 if OK, or a negative error code.
168 */
169int reset_free(struct reset_ctl *reset_ctl);
170
171/**
172 * reset_assert - Assert a reset signal.
173 *
174 * This function will assert the specified reset signal, thus resetting the
175 * affected HW module(s). Depending on the reset controller hardware, the reset
176 * signal will either stay asserted until reset_deassert() is called, or the
177 * hardware may autonomously clear the reset signal itself.
178 *
179 * @reset_ctl: A reset control struct that was previously successfully
180 * requested by reset_get_by_*().
181 * @return 0 if OK, or a negative error code.
182 */
183int reset_assert(struct reset_ctl *reset_ctl);
184
185/**
Neil Armstrong0c282332018-04-03 11:40:50 +0200186 * reset_assert_bulk - Assert all reset signals in a reset control bulk struct.
187 *
188 * This function will assert the specified reset signals in a reset control
189 * bulk struct, thus resetting the affected HW module(s). Depending on the
190 * reset controller hardware, the reset signals will either stay asserted
191 * until reset_deassert_bulk() is called, or the hardware may autonomously
192 * clear the reset signals itself.
193 *
194 * @bulk: A reset control bulk struct that was previously successfully
195 * requested by reset_get_bulk().
196 * @return 0 if OK, or a negative error code.
197 */
198int reset_assert_bulk(struct reset_ctl_bulk *bulk);
199
200/**
Stephen Warren89c1e2d2016-06-17 09:43:58 -0600201 * reset_deassert - Deassert a reset signal.
202 *
203 * This function will deassert the specified reset signal, thus releasing the
204 * affected HW modules() from reset, and allowing them to continue normal
205 * operation.
206 *
207 * @reset_ctl: A reset control struct that was previously successfully
208 * requested by reset_get_by_*().
209 * @return 0 if OK, or a negative error code.
210 */
211int reset_deassert(struct reset_ctl *reset_ctl);
212
Patrice Chotard3b9d1bd2017-07-18 11:57:06 +0200213/**
Neil Armstrong0c282332018-04-03 11:40:50 +0200214 * reset_deassert_bulk - Deassert all reset signals in a reset control bulk
215 * struct.
216 *
217 * This function will deassert the specified reset signals in a reset control
218 * bulk struct, thus releasing the affected HW modules() from reset, and
219 * allowing them to continue normal operation.
220 *
221 * @bulk: A reset control bulk struct that was previously successfully
222 * requested by reset_get_bulk().
223 * @return 0 if OK, or a negative error code.
224 */
225int reset_deassert_bulk(struct reset_ctl_bulk *bulk);
226
227/**
Andreas Dannenberge7012e62018-08-27 15:57:39 +0530228 * rst_status - Check reset signal status.
229 *
230 * @reset_ctl: The reset signal to check.
231 * @return 0 if deasserted, positive if asserted, or a negative
232 * error code.
233 */
234int reset_status(struct reset_ctl *reset_ctl);
235
236/**
Patrice Chotard3b9d1bd2017-07-18 11:57:06 +0200237 * reset_release_all - Assert/Free an array of previously requested resets.
238 *
239 * For each reset contained in the reset array, this function will check if
240 * reset has been previously requested and then will assert and free it.
241 *
242 * @reset_ctl: A reset struct array that was previously successfully
243 * requested by reset_get_by_*().
244 * @count Number of reset contained in the array
245 * @return 0 if OK, or a negative error code.
246 */
247int reset_release_all(struct reset_ctl *reset_ctl, int count);
Neil Armstrong0c282332018-04-03 11:40:50 +0200248
249/**
250 * reset_release_bulk - Assert/Free an array of previously requested reset
251 * signals in a reset control bulk struct.
252 *
253 * For each reset contained in the reset control bulk struct, this function
254 * will check if reset has been previously requested and then will assert
255 * and free it.
256 *
257 * @bulk: A reset control bulk struct that was previously successfully
258 * requested by reset_get_bulk().
259 * @return 0 if OK, or a negative error code.
260 */
261static inline int reset_release_bulk(struct reset_ctl_bulk *bulk)
262{
263 return reset_release_all(bulk->resets, bulk->count);
264}
Masahiro Yamada4815db82016-09-21 11:29:01 +0900265#else
266static inline int reset_get_by_index(struct udevice *dev, int index,
267 struct reset_ctl *reset_ctl)
268{
269 return -ENOTSUPP;
270}
271
Neil Armstrong1dd181f2018-04-12 10:03:19 +0200272static inline int reset_get_bulk(struct udevice *dev,
273 struct reset_ctl_bulk *bulk)
Neil Armstrong0c282332018-04-03 11:40:50 +0200274{
275 return -ENOTSUPP;
276}
277
Masahiro Yamada4815db82016-09-21 11:29:01 +0900278static inline int reset_get_by_name(struct udevice *dev, const char *name,
279 struct reset_ctl *reset_ctl)
280{
281 return -ENOTSUPP;
282}
283
284static inline int reset_free(struct reset_ctl *reset_ctl)
285{
286 return 0;
287}
288
289static inline int reset_assert(struct reset_ctl *reset_ctl)
290{
291 return 0;
292}
293
Neil Armstrong0c282332018-04-03 11:40:50 +0200294static inline int reset_assert_bulk(struct reset_ctl_bulk *bulk)
295{
296 return 0;
297}
298
Masahiro Yamada4815db82016-09-21 11:29:01 +0900299static inline int reset_deassert(struct reset_ctl *reset_ctl)
300{
301 return 0;
302}
Patrice Chotard3b9d1bd2017-07-18 11:57:06 +0200303
Neil Armstrong0c282332018-04-03 11:40:50 +0200304static inline int reset_deassert_bulk(struct reset_ctl_bulk *bulk)
305{
306 return 0;
307}
308
Andreas Dannenberge7012e62018-08-27 15:57:39 +0530309static inline int reset_status(struct reset_ctl *reset_ctl)
310{
311 return -ENOTSUPP;
312}
313
Patrice Chotard3b9d1bd2017-07-18 11:57:06 +0200314static inline int reset_release_all(struct reset_ctl *reset_ctl, int count)
315{
316 return 0;
317}
318
Neil Armstrong1dd181f2018-04-12 10:03:19 +0200319static inline int reset_release_bulk(struct reset_ctl_bulk *bulk)
Neil Armstrong0c282332018-04-03 11:40:50 +0200320{
321 return 0;
322}
Masahiro Yamada4815db82016-09-21 11:29:01 +0900323#endif
324
Jagan Teki652ee272018-08-06 18:55:06 +0530325/**
326 * reset_valid() - check if reset is valid
327 *
328 * @reset_ctl: the reset to check
329 * @return TRUE if valid, or FALSE
330 */
331static inline bool reset_valid(struct reset_ctl *reset_ctl)
332{
333 return !!reset_ctl->dev;
334}
335
Stephen Warren89c1e2d2016-06-17 09:43:58 -0600336#endif