1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (c) 2016, NVIDIA CORPORATION.
10 #include <linux/errno.h>
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.
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.
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.
34 * struct reset_ctl - A handle to (allowing control of) a single reset signal.
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.
42 * @dev: The device which implements the reset signal.
43 * @id: The reset signal ID within the provider.
44 * @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.
47 * @polarity: An optional polarity field for drivers that support
48 * different reset polarities.
50 * Should additional information to identify and configure any reset signal
51 * for any provider be required in the future, the struct could be expanded to
52 * either (a) add more fields to allow reset providers to store additional
53 * information, or (b) replace the id field with an opaque pointer, which the
54 * provider would dynamically allocated during its .of_xlate op, and process
55 * during is .request op. This may require the addition of an extra op to clean
61 * Written by of_xlate. In the future, we might add more fields here.
65 unsigned long polarity;
69 * struct reset_ctl_bulk - A handle to (allowing control of) a bulk of reset
72 * Clients provide storage for the reset control bulk. The content of the
73 * structure is managed solely by the reset API. A reset control bulk struct is
74 * initialized by "get"ing the reset control bulk struct.
75 * The reset control bulk struct is passed to all other bulk reset APIs to apply
76 * the API to all the reset signals in the bulk struct.
78 * @resets: An array of reset signal handles handles.
79 * @count: The number of reset signal handles in the reset array.
81 struct reset_ctl_bulk {
82 struct reset_ctl *resets;
86 #if CONFIG_IS_ENABLED(DM_RESET)
88 * reset_get_by_index - Get/request a reset signal by integer index.
90 * This looks up and requests a reset signal. The index is relative to the
91 * client device; each device is assumed to have n reset signals associated
92 * with it somehow, and this function finds and requests one of them. The
93 * mapping of client device reset signal indices to provider reset signals may
94 * be via device-tree properties, board-provided mapping tables, or some other
97 * @dev: The client device.
98 * @index: The index of the reset signal to request, within the client's
99 * list of reset signals.
100 * @reset_ctl A pointer to a reset control struct to initialize.
101 * @return 0 if OK, or a negative error code.
103 int reset_get_by_index(struct udevice *dev, int index,
104 struct reset_ctl *reset_ctl);
107 * reset_get_by_index_nodev - Get/request a reset signal by integer index
110 * This is a version of reset_get_by_index() that does not use a device.
112 * @node: The client ofnode.
113 * @index: The index of the reset signal to request, within the client's
114 * list of reset signals.
115 * @reset_ctl A pointer to a reset control struct to initialize.
116 * @return 0 if OK, or a negative error code.
118 int reset_get_by_index_nodev(ofnode node, int index,
119 struct reset_ctl *reset_ctl);
122 * reset_get_bulk - Get/request all reset signals of a device.
124 * This looks up and requests all reset signals of the client device; each
125 * device is assumed to have n reset signals associated with it somehow,
126 * and this function finds and requests all of them in a separate structure.
127 * The mapping of client device reset signals indices to provider reset signals
128 * may be via device-tree properties, board-provided mapping tables, or some
131 * @dev: The client device.
132 * @bulk A pointer to a reset control bulk struct to initialize.
133 * @return 0 if OK, or a negative error code.
135 int reset_get_bulk(struct udevice *dev, struct reset_ctl_bulk *bulk);
138 * reset_get_by_name - Get/request a reset signal by name.
140 * This looks up and requests a reset signal. The name is relative to the
141 * client device; each device is assumed to have n reset signals associated
142 * with it somehow, and this function finds and requests one of them. The
143 * mapping of client device reset signal names to provider reset signal may be
144 * via device-tree properties, board-provided mapping tables, or some other
147 * @dev: The client device.
148 * @name: The name of the reset signal to request, within the client's
149 * list of reset signals.
150 * @reset_ctl: A pointer to a reset control struct to initialize.
151 * @return 0 if OK, or a negative error code.
153 int reset_get_by_name(struct udevice *dev, const char *name,
154 struct reset_ctl *reset_ctl);
157 * reset_request - Request a reset signal.
159 * @reset_ctl: A reset control struct.
161 * @return 0 if OK, or a negative error code.
163 int reset_request(struct reset_ctl *reset_ctl);
166 * reset_free - Free a previously requested reset signal.
168 * @reset_ctl: A reset control struct that was previously successfully
169 * requested by reset_get_by_*().
170 * @return 0 if OK, or a negative error code.
172 int reset_free(struct reset_ctl *reset_ctl);
175 * reset_assert - Assert a reset signal.
177 * This function will assert the specified reset signal, thus resetting the
178 * affected HW module(s). Depending on the reset controller hardware, the reset
179 * signal will either stay asserted until reset_deassert() is called, or the
180 * hardware may autonomously clear the reset signal itself.
182 * @reset_ctl: A reset control struct that was previously successfully
183 * requested by reset_get_by_*().
184 * @return 0 if OK, or a negative error code.
186 int reset_assert(struct reset_ctl *reset_ctl);
189 * reset_assert_bulk - Assert all reset signals in a reset control bulk struct.
191 * This function will assert the specified reset signals in a reset control
192 * bulk struct, thus resetting the affected HW module(s). Depending on the
193 * reset controller hardware, the reset signals will either stay asserted
194 * until reset_deassert_bulk() is called, or the hardware may autonomously
195 * clear the reset signals itself.
197 * @bulk: A reset control bulk struct that was previously successfully
198 * requested by reset_get_bulk().
199 * @return 0 if OK, or a negative error code.
201 int reset_assert_bulk(struct reset_ctl_bulk *bulk);
204 * reset_deassert - Deassert a reset signal.
206 * This function will deassert the specified reset signal, thus releasing the
207 * affected HW modules() from reset, and allowing them to continue normal
210 * @reset_ctl: A reset control struct that was previously successfully
211 * requested by reset_get_by_*().
212 * @return 0 if OK, or a negative error code.
214 int reset_deassert(struct reset_ctl *reset_ctl);
217 * reset_deassert_bulk - Deassert all reset signals in a reset control bulk
220 * This function will deassert the specified reset signals in a reset control
221 * bulk struct, thus releasing the affected HW modules() from reset, and
222 * allowing them to continue normal operation.
224 * @bulk: A reset control bulk struct that was previously successfully
225 * requested by reset_get_bulk().
226 * @return 0 if OK, or a negative error code.
228 int reset_deassert_bulk(struct reset_ctl_bulk *bulk);
231 * rst_status - Check reset signal status.
233 * @reset_ctl: The reset signal to check.
234 * @return 0 if deasserted, positive if asserted, or a negative
237 int reset_status(struct reset_ctl *reset_ctl);
240 * reset_release_all - Assert/Free an array of previously requested resets.
242 * For each reset contained in the reset array, this function will check if
243 * reset has been previously requested and then will assert and free it.
245 * @reset_ctl: A reset struct array that was previously successfully
246 * requested by reset_get_by_*().
247 * @count Number of reset contained in the array
248 * @return 0 if OK, or a negative error code.
250 int reset_release_all(struct reset_ctl *reset_ctl, int count);
253 * reset_release_bulk - Assert/Free an array of previously requested reset
254 * signals in a reset control bulk struct.
256 * For each reset contained in the reset control bulk struct, this function
257 * will check if reset has been previously requested and then will assert
260 * @bulk: A reset control bulk struct that was previously successfully
261 * requested by reset_get_bulk().
262 * @return 0 if OK, or a negative error code.
264 static inline int reset_release_bulk(struct reset_ctl_bulk *bulk)
266 return reset_release_all(bulk->resets, bulk->count);
269 static inline int reset_get_by_index(struct udevice *dev, int index,
270 struct reset_ctl *reset_ctl)
275 static inline int reset_get_bulk(struct udevice *dev,
276 struct reset_ctl_bulk *bulk)
281 static inline int reset_get_by_name(struct udevice *dev, const char *name,
282 struct reset_ctl *reset_ctl)
287 static inline int reset_free(struct reset_ctl *reset_ctl)
292 static inline int reset_assert(struct reset_ctl *reset_ctl)
297 static inline int reset_assert_bulk(struct reset_ctl_bulk *bulk)
302 static inline int reset_deassert(struct reset_ctl *reset_ctl)
307 static inline int reset_deassert_bulk(struct reset_ctl_bulk *bulk)
312 static inline int reset_status(struct reset_ctl *reset_ctl)
317 static inline int reset_release_all(struct reset_ctl *reset_ctl, int count)
322 static inline int reset_release_bulk(struct reset_ctl_bulk *bulk)
329 * reset_valid() - check if reset is valid
331 * @reset_ctl: the reset to check
332 * @return TRUE if valid, or FALSE
334 static inline bool reset_valid(struct reset_ctl *reset_ctl)
336 return !!reset_ctl->dev;