Linux Audio

Check our new training course

Loading...
v4.10.11
 
  1#ifndef _LINUX_RESET_H_
  2#define _LINUX_RESET_H_
  3
  4#include <linux/device.h>
 
 
  5
 
 
  6struct reset_control;
  7
  8#ifdef CONFIG_RESET_CONTROLLER
  9
 10int reset_control_reset(struct reset_control *rstc);
 11int reset_control_assert(struct reset_control *rstc);
 12int reset_control_deassert(struct reset_control *rstc);
 13int reset_control_status(struct reset_control *rstc);
 
 
 14
 15struct reset_control *__of_reset_control_get(struct device_node *node,
 16				     const char *id, int index, int shared);
 
 
 
 
 17void reset_control_put(struct reset_control *rstc);
 
 18struct reset_control *__devm_reset_control_get(struct device *dev,
 19				     const char *id, int index, int shared);
 
 20
 21int __must_check device_reset(struct device *dev);
 
 
 
 
 22
 23static inline int device_reset_optional(struct device *dev)
 24{
 25	return device_reset(dev);
 26}
 27
 28#else
 29
 30static inline int reset_control_reset(struct reset_control *rstc)
 31{
 32	WARN_ON(1);
 33	return 0;
 34}
 35
 36static inline int reset_control_assert(struct reset_control *rstc)
 37{
 38	WARN_ON(1);
 39	return 0;
 40}
 41
 42static inline int reset_control_deassert(struct reset_control *rstc)
 43{
 44	WARN_ON(1);
 45	return 0;
 46}
 47
 48static inline int reset_control_status(struct reset_control *rstc)
 49{
 50	WARN_ON(1);
 51	return 0;
 52}
 53
 54static inline void reset_control_put(struct reset_control *rstc)
 55{
 56	WARN_ON(1);
 57}
 58
 59static inline int __must_check device_reset(struct device *dev)
 60{
 61	WARN_ON(1);
 62	return -ENOTSUPP;
 63}
 64
 65static inline int device_reset_optional(struct device *dev)
 
 
 
 
 66{
 67	return -ENOTSUPP;
 68}
 69
 70static inline struct reset_control *__of_reset_control_get(
 71					struct device_node *node,
 72					const char *id, int index, int shared)
 
 
 
 
 
 
 
 
 
 73{
 74	return ERR_PTR(-ENOTSUPP);
 75}
 76
 77static inline struct reset_control *__devm_reset_control_get(
 78					struct device *dev,
 79					const char *id, int index, int shared)
 
 80{
 81	return ERR_PTR(-ENOTSUPP);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 82}
 83
 84#endif /* CONFIG_RESET_CONTROLLER */
 85
 
 
 
 
 
 
 
 
 
 
 86/**
 87 * reset_control_get_exclusive - Lookup and obtain an exclusive reference
 88 *                               to a reset controller.
 89 * @dev: device to be reset by the controller
 90 * @id: reset line name
 91 *
 92 * Returns a struct reset_control or IS_ERR() condition containing errno.
 93 * If this function is called more then once for the same reset_control it will
 94 * return -EBUSY.
 95 *
 96 * See reset_control_get_shared for details on shared references to
 97 * reset-controls.
 98 *
 99 * Use of id names is optional.
100 */
101static inline struct reset_control *
102__must_check reset_control_get_exclusive(struct device *dev, const char *id)
103{
104#ifndef CONFIG_RESET_CONTROLLER
105	WARN_ON(1);
106#endif
107	return __of_reset_control_get(dev ? dev->of_node : NULL, id, 0, 0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108}
109
110/**
111 * reset_control_get_shared - Lookup and obtain a shared reference to a
112 *                            reset controller.
113 * @dev: device to be reset by the controller
114 * @id: reset line name
115 *
116 * Returns a struct reset_control or IS_ERR() condition containing errno.
117 * This function is intended for use with reset-controls which are shared
118 * between hardware-blocks.
119 *
120 * When a reset-control is shared, the behavior of reset_control_assert /
121 * deassert is changed, the reset-core will keep track of a deassert_count
122 * and only (re-)assert the reset after reset_control_assert has been called
123 * as many times as reset_control_deassert was called. Also see the remark
124 * about shared reset-controls in the reset_control_assert docs.
125 *
126 * Calling reset_control_assert without first calling reset_control_deassert
127 * is not allowed on a shared reset control. Calling reset_control_reset is
128 * also not allowed on a shared reset control.
129 *
130 * Use of id names is optional.
131 */
132static inline struct reset_control *reset_control_get_shared(
133					struct device *dev, const char *id)
134{
135	return __of_reset_control_get(dev ? dev->of_node : NULL, id, 0, 1);
136}
137
138static inline struct reset_control *reset_control_get_optional_exclusive(
139					struct device *dev, const char *id)
140{
141	return __of_reset_control_get(dev ? dev->of_node : NULL, id, 0, 0);
142}
143
144static inline struct reset_control *reset_control_get_optional_shared(
145					struct device *dev, const char *id)
146{
147	return __of_reset_control_get(dev ? dev->of_node : NULL, id, 0, 1);
148}
149
150/**
151 * of_reset_control_get_exclusive - Lookup and obtain an exclusive reference
152 *                                  to a reset controller.
153 * @node: device to be reset by the controller
154 * @id: reset line name
155 *
156 * Returns a struct reset_control or IS_ERR() condition containing errno.
157 *
158 * Use of id names is optional.
159 */
160static inline struct reset_control *of_reset_control_get_exclusive(
161				struct device_node *node, const char *id)
162{
163	return __of_reset_control_get(node, id, 0, 0);
164}
165
166/**
167 * of_reset_control_get_shared - Lookup and obtain an shared reference
168 *                               to a reset controller.
169 * @node: device to be reset by the controller
170 * @id: reset line name
171 *
172 * When a reset-control is shared, the behavior of reset_control_assert /
173 * deassert is changed, the reset-core will keep track of a deassert_count
174 * and only (re-)assert the reset after reset_control_assert has been called
175 * as many times as reset_control_deassert was called. Also see the remark
176 * about shared reset-controls in the reset_control_assert docs.
177 *
178 * Calling reset_control_assert without first calling reset_control_deassert
179 * is not allowed on a shared reset control. Calling reset_control_reset is
180 * also not allowed on a shared reset control.
181 * Returns a struct reset_control or IS_ERR() condition containing errno.
182 *
183 * Use of id names is optional.
184 */
185static inline struct reset_control *of_reset_control_get_shared(
186				struct device_node *node, const char *id)
187{
188	return __of_reset_control_get(node, id, 0, 1);
189}
190
191/**
192 * of_reset_control_get_exclusive_by_index - Lookup and obtain an exclusive
193 *                                           reference to a reset controller
194 *                                           by index.
195 * @node: device to be reset by the controller
196 * @index: index of the reset controller
197 *
198 * This is to be used to perform a list of resets for a device or power domain
199 * in whatever order. Returns a struct reset_control or IS_ERR() condition
200 * containing errno.
201 */
202static inline struct reset_control *of_reset_control_get_exclusive_by_index(
203					struct device_node *node, int index)
204{
205	return __of_reset_control_get(node, NULL, index, 0);
206}
207
208/**
209 * of_reset_control_get_shared_by_index - Lookup and obtain an shared
210 *                                        reference to a reset controller
211 *                                        by index.
212 * @node: device to be reset by the controller
213 * @index: index of the reset controller
214 *
215 * When a reset-control is shared, the behavior of reset_control_assert /
216 * deassert is changed, the reset-core will keep track of a deassert_count
217 * and only (re-)assert the reset after reset_control_assert has been called
218 * as many times as reset_control_deassert was called. Also see the remark
219 * about shared reset-controls in the reset_control_assert docs.
220 *
221 * Calling reset_control_assert without first calling reset_control_deassert
222 * is not allowed on a shared reset control. Calling reset_control_reset is
223 * also not allowed on a shared reset control.
224 * Returns a struct reset_control or IS_ERR() condition containing errno.
225 *
226 * This is to be used to perform a list of resets for a device or power domain
227 * in whatever order. Returns a struct reset_control or IS_ERR() condition
228 * containing errno.
229 */
230static inline struct reset_control *of_reset_control_get_shared_by_index(
231					struct device_node *node, int index)
232{
233	return __of_reset_control_get(node, NULL, index, 1);
234}
235
236/**
237 * devm_reset_control_get_exclusive - resource managed
238 *                                    reset_control_get_exclusive()
239 * @dev: device to be reset by the controller
240 * @id: reset line name
241 *
242 * Managed reset_control_get_exclusive(). For reset controllers returned
243 * from this function, reset_control_put() is called automatically on driver
244 * detach.
245 *
246 * See reset_control_get_exclusive() for more information.
247 */
248static inline struct reset_control *
249__must_check devm_reset_control_get_exclusive(struct device *dev,
250					      const char *id)
251{
252#ifndef CONFIG_RESET_CONTROLLER
253	WARN_ON(1);
254#endif
255	return __devm_reset_control_get(dev, id, 0, 0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256}
257
258/**
259 * devm_reset_control_get_shared - resource managed reset_control_get_shared()
260 * @dev: device to be reset by the controller
261 * @id: reset line name
262 *
263 * Managed reset_control_get_shared(). For reset controllers returned from
264 * this function, reset_control_put() is called automatically on driver detach.
265 * See reset_control_get_shared() for more information.
266 */
267static inline struct reset_control *devm_reset_control_get_shared(
268					struct device *dev, const char *id)
269{
270	return __devm_reset_control_get(dev, id, 0, 1);
271}
272
273static inline struct reset_control *devm_reset_control_get_optional_exclusive(
274					struct device *dev, const char *id)
275{
276	return __devm_reset_control_get(dev, id, 0, 0);
277}
278
279static inline struct reset_control *devm_reset_control_get_optional_shared(
280					struct device *dev, const char *id)
281{
282	return __devm_reset_control_get(dev, id, 0, 1);
283}
284
285/**
286 * devm_reset_control_get_exclusive_by_index - resource managed
287 *                                             reset_control_get_exclusive()
288 * @dev: device to be reset by the controller
289 * @index: index of the reset controller
290 *
291 * Managed reset_control_get_exclusive(). For reset controllers returned from
292 * this function, reset_control_put() is called automatically on driver
293 * detach.
294 *
295 * See reset_control_get_exclusive() for more information.
296 */
297static inline struct reset_control *
298devm_reset_control_get_exclusive_by_index(struct device *dev, int index)
299{
300	return __devm_reset_control_get(dev, NULL, index, 0);
301}
302
303/**
304 * devm_reset_control_get_shared_by_index - resource managed
305 * reset_control_get_shared
306 * @dev: device to be reset by the controller
307 * @index: index of the reset controller
308 *
309 * Managed reset_control_get_shared(). For reset controllers returned from
310 * this function, reset_control_put() is called automatically on driver detach.
311 * See reset_control_get_shared() for more information.
312 */
313static inline struct reset_control *
314devm_reset_control_get_shared_by_index(struct device *dev, int index)
315{
316	return __devm_reset_control_get(dev, NULL, index, 1);
317}
318
319/*
320 * TEMPORARY calls to use during transition:
321 *
322 *   of_reset_control_get() => of_reset_control_get_exclusive()
323 *
324 * These inline function calls will be removed once all consumers
325 * have been moved over to the new explicit API.
326 */
327static inline struct reset_control *reset_control_get(
328				struct device *dev, const char *id)
329{
330	return reset_control_get_exclusive(dev, id);
331}
332
333static inline struct reset_control *reset_control_get_optional(
334					struct device *dev, const char *id)
335{
336	return reset_control_get_optional_exclusive(dev, id);
337}
338
339static inline struct reset_control *of_reset_control_get(
340				struct device_node *node, const char *id)
341{
342	return of_reset_control_get_exclusive(node, id);
343}
344
345static inline struct reset_control *of_reset_control_get_by_index(
346				struct device_node *node, int index)
347{
348	return of_reset_control_get_exclusive_by_index(node, index);
349}
350
351static inline struct reset_control *devm_reset_control_get(
352				struct device *dev, const char *id)
353{
354	return devm_reset_control_get_exclusive(dev, id);
355}
356
357static inline struct reset_control *devm_reset_control_get_optional(
358				struct device *dev, const char *id)
359{
360	return devm_reset_control_get_optional_exclusive(dev, id);
361
362}
363
364static inline struct reset_control *devm_reset_control_get_by_index(
365				struct device *dev, int index)
366{
367	return devm_reset_control_get_exclusive_by_index(dev, index);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368}
369#endif
v5.4
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef _LINUX_RESET_H_
  3#define _LINUX_RESET_H_
  4
  5#include <linux/err.h>
  6#include <linux/errno.h>
  7#include <linux/types.h>
  8
  9struct device;
 10struct device_node;
 11struct reset_control;
 12
 13#ifdef CONFIG_RESET_CONTROLLER
 14
 15int reset_control_reset(struct reset_control *rstc);
 16int reset_control_assert(struct reset_control *rstc);
 17int reset_control_deassert(struct reset_control *rstc);
 18int reset_control_status(struct reset_control *rstc);
 19int reset_control_acquire(struct reset_control *rstc);
 20void reset_control_release(struct reset_control *rstc);
 21
 22struct reset_control *__of_reset_control_get(struct device_node *node,
 23				     const char *id, int index, bool shared,
 24				     bool optional, bool acquired);
 25struct reset_control *__reset_control_get(struct device *dev, const char *id,
 26					  int index, bool shared,
 27					  bool optional, bool acquired);
 28void reset_control_put(struct reset_control *rstc);
 29int __device_reset(struct device *dev, bool optional);
 30struct reset_control *__devm_reset_control_get(struct device *dev,
 31				     const char *id, int index, bool shared,
 32				     bool optional, bool acquired);
 33
 34struct reset_control *devm_reset_control_array_get(struct device *dev,
 35						   bool shared, bool optional);
 36struct reset_control *of_reset_control_array_get(struct device_node *np,
 37						 bool shared, bool optional,
 38						 bool acquired);
 39
 40int reset_control_get_count(struct device *dev);
 
 
 
 41
 42#else
 43
 44static inline int reset_control_reset(struct reset_control *rstc)
 45{
 
 46	return 0;
 47}
 48
 49static inline int reset_control_assert(struct reset_control *rstc)
 50{
 
 51	return 0;
 52}
 53
 54static inline int reset_control_deassert(struct reset_control *rstc)
 55{
 
 56	return 0;
 57}
 58
 59static inline int reset_control_status(struct reset_control *rstc)
 60{
 
 61	return 0;
 62}
 63
 64static inline int reset_control_acquire(struct reset_control *rstc)
 65{
 66	return 0;
 67}
 68
 69static inline void reset_control_release(struct reset_control *rstc)
 70{
 
 
 71}
 72
 73static inline void reset_control_put(struct reset_control *rstc)
 74{
 75}
 76
 77static inline int __device_reset(struct device *dev, bool optional)
 78{
 79	return optional ? 0 : -ENOTSUPP;
 80}
 81
 82static inline struct reset_control *__of_reset_control_get(
 83					struct device_node *node,
 84					const char *id, int index, bool shared,
 85					bool optional, bool acquired)
 86{
 87	return optional ? NULL : ERR_PTR(-ENOTSUPP);
 88}
 89
 90static inline struct reset_control *__reset_control_get(
 91					struct device *dev, const char *id,
 92					int index, bool shared, bool optional,
 93					bool acquired)
 94{
 95	return optional ? NULL : ERR_PTR(-ENOTSUPP);
 96}
 97
 98static inline struct reset_control *__devm_reset_control_get(
 99					struct device *dev, const char *id,
100					int index, bool shared, bool optional,
101					bool acquired)
102{
103	return optional ? NULL : ERR_PTR(-ENOTSUPP);
104}
105
106static inline struct reset_control *
107devm_reset_control_array_get(struct device *dev, bool shared, bool optional)
108{
109	return optional ? NULL : ERR_PTR(-ENOTSUPP);
110}
111
112static inline struct reset_control *
113of_reset_control_array_get(struct device_node *np, bool shared, bool optional,
114			   bool acquired)
115{
116	return optional ? NULL : ERR_PTR(-ENOTSUPP);
117}
118
119static inline int reset_control_get_count(struct device *dev)
120{
121	return -ENOENT;
122}
123
124#endif /* CONFIG_RESET_CONTROLLER */
125
126static inline int __must_check device_reset(struct device *dev)
127{
128	return __device_reset(dev, false);
129}
130
131static inline int device_reset_optional(struct device *dev)
132{
133	return __device_reset(dev, true);
134}
135
136/**
137 * reset_control_get_exclusive - Lookup and obtain an exclusive reference
138 *                               to a reset controller.
139 * @dev: device to be reset by the controller
140 * @id: reset line name
141 *
142 * Returns a struct reset_control or IS_ERR() condition containing errno.
143 * If this function is called more than once for the same reset_control it will
144 * return -EBUSY.
145 *
146 * See reset_control_get_shared() for details on shared references to
147 * reset-controls.
148 *
149 * Use of id names is optional.
150 */
151static inline struct reset_control *
152__must_check reset_control_get_exclusive(struct device *dev, const char *id)
153{
154	return __reset_control_get(dev, id, 0, false, false, true);
155}
156
157/**
158 * reset_control_get_exclusive_released - Lookup and obtain a temoprarily
159 *                                        exclusive reference to a reset
160 *                                        controller.
161 * @dev: device to be reset by the controller
162 * @id: reset line name
163 *
164 * Returns a struct reset_control or IS_ERR() condition containing errno.
165 * reset-controls returned by this function must be acquired via
166 * reset_control_acquire() before they can be used and should be released
167 * via reset_control_release() afterwards.
168 *
169 * Use of id names is optional.
170 */
171static inline struct reset_control *
172__must_check reset_control_get_exclusive_released(struct device *dev,
173						  const char *id)
174{
175	return __reset_control_get(dev, id, 0, false, false, false);
176}
177
178/**
179 * reset_control_get_shared - Lookup and obtain a shared reference to a
180 *                            reset controller.
181 * @dev: device to be reset by the controller
182 * @id: reset line name
183 *
184 * Returns a struct reset_control or IS_ERR() condition containing errno.
185 * This function is intended for use with reset-controls which are shared
186 * between hardware blocks.
187 *
188 * When a reset-control is shared, the behavior of reset_control_assert /
189 * deassert is changed, the reset-core will keep track of a deassert_count
190 * and only (re-)assert the reset after reset_control_assert has been called
191 * as many times as reset_control_deassert was called. Also see the remark
192 * about shared reset-controls in the reset_control_assert docs.
193 *
194 * Calling reset_control_assert without first calling reset_control_deassert
195 * is not allowed on a shared reset control. Calling reset_control_reset is
196 * also not allowed on a shared reset control.
197 *
198 * Use of id names is optional.
199 */
200static inline struct reset_control *reset_control_get_shared(
201					struct device *dev, const char *id)
202{
203	return __reset_control_get(dev, id, 0, true, false, false);
204}
205
206static inline struct reset_control *reset_control_get_optional_exclusive(
207					struct device *dev, const char *id)
208{
209	return __reset_control_get(dev, id, 0, false, true, true);
210}
211
212static inline struct reset_control *reset_control_get_optional_shared(
213					struct device *dev, const char *id)
214{
215	return __reset_control_get(dev, id, 0, true, true, false);
216}
217
218/**
219 * of_reset_control_get_exclusive - Lookup and obtain an exclusive reference
220 *                                  to a reset controller.
221 * @node: device to be reset by the controller
222 * @id: reset line name
223 *
224 * Returns a struct reset_control or IS_ERR() condition containing errno.
225 *
226 * Use of id names is optional.
227 */
228static inline struct reset_control *of_reset_control_get_exclusive(
229				struct device_node *node, const char *id)
230{
231	return __of_reset_control_get(node, id, 0, false, false, true);
232}
233
234/**
235 * of_reset_control_get_shared - Lookup and obtain a shared reference
236 *                               to a reset controller.
237 * @node: device to be reset by the controller
238 * @id: reset line name
239 *
240 * When a reset-control is shared, the behavior of reset_control_assert /
241 * deassert is changed, the reset-core will keep track of a deassert_count
242 * and only (re-)assert the reset after reset_control_assert has been called
243 * as many times as reset_control_deassert was called. Also see the remark
244 * about shared reset-controls in the reset_control_assert docs.
245 *
246 * Calling reset_control_assert without first calling reset_control_deassert
247 * is not allowed on a shared reset control. Calling reset_control_reset is
248 * also not allowed on a shared reset control.
249 * Returns a struct reset_control or IS_ERR() condition containing errno.
250 *
251 * Use of id names is optional.
252 */
253static inline struct reset_control *of_reset_control_get_shared(
254				struct device_node *node, const char *id)
255{
256	return __of_reset_control_get(node, id, 0, true, false, false);
257}
258
259/**
260 * of_reset_control_get_exclusive_by_index - Lookup and obtain an exclusive
261 *                                           reference to a reset controller
262 *                                           by index.
263 * @node: device to be reset by the controller
264 * @index: index of the reset controller
265 *
266 * This is to be used to perform a list of resets for a device or power domain
267 * in whatever order. Returns a struct reset_control or IS_ERR() condition
268 * containing errno.
269 */
270static inline struct reset_control *of_reset_control_get_exclusive_by_index(
271					struct device_node *node, int index)
272{
273	return __of_reset_control_get(node, NULL, index, false, false, true);
274}
275
276/**
277 * of_reset_control_get_shared_by_index - Lookup and obtain a shared
278 *                                        reference to a reset controller
279 *                                        by index.
280 * @node: device to be reset by the controller
281 * @index: index of the reset controller
282 *
283 * When a reset-control is shared, the behavior of reset_control_assert /
284 * deassert is changed, the reset-core will keep track of a deassert_count
285 * and only (re-)assert the reset after reset_control_assert has been called
286 * as many times as reset_control_deassert was called. Also see the remark
287 * about shared reset-controls in the reset_control_assert docs.
288 *
289 * Calling reset_control_assert without first calling reset_control_deassert
290 * is not allowed on a shared reset control. Calling reset_control_reset is
291 * also not allowed on a shared reset control.
292 * Returns a struct reset_control or IS_ERR() condition containing errno.
293 *
294 * This is to be used to perform a list of resets for a device or power domain
295 * in whatever order. Returns a struct reset_control or IS_ERR() condition
296 * containing errno.
297 */
298static inline struct reset_control *of_reset_control_get_shared_by_index(
299					struct device_node *node, int index)
300{
301	return __of_reset_control_get(node, NULL, index, true, false, false);
302}
303
304/**
305 * devm_reset_control_get_exclusive - resource managed
306 *                                    reset_control_get_exclusive()
307 * @dev: device to be reset by the controller
308 * @id: reset line name
309 *
310 * Managed reset_control_get_exclusive(). For reset controllers returned
311 * from this function, reset_control_put() is called automatically on driver
312 * detach.
313 *
314 * See reset_control_get_exclusive() for more information.
315 */
316static inline struct reset_control *
317__must_check devm_reset_control_get_exclusive(struct device *dev,
318					      const char *id)
319{
320	return __devm_reset_control_get(dev, id, 0, false, false, true);
321}
322
323/**
324 * devm_reset_control_get_exclusive_released - resource managed
325 *                                             reset_control_get_exclusive_released()
326 * @dev: device to be reset by the controller
327 * @id: reset line name
328 *
329 * Managed reset_control_get_exclusive_released(). For reset controllers
330 * returned from this function, reset_control_put() is called automatically on
331 * driver detach.
332 *
333 * See reset_control_get_exclusive_released() for more information.
334 */
335static inline struct reset_control *
336__must_check devm_reset_control_get_exclusive_released(struct device *dev,
337						       const char *id)
338{
339	return __devm_reset_control_get(dev, id, 0, false, false, false);
340}
341
342/**
343 * devm_reset_control_get_shared - resource managed reset_control_get_shared()
344 * @dev: device to be reset by the controller
345 * @id: reset line name
346 *
347 * Managed reset_control_get_shared(). For reset controllers returned from
348 * this function, reset_control_put() is called automatically on driver detach.
349 * See reset_control_get_shared() for more information.
350 */
351static inline struct reset_control *devm_reset_control_get_shared(
352					struct device *dev, const char *id)
353{
354	return __devm_reset_control_get(dev, id, 0, true, false, false);
355}
356
357static inline struct reset_control *devm_reset_control_get_optional_exclusive(
358					struct device *dev, const char *id)
359{
360	return __devm_reset_control_get(dev, id, 0, false, true, true);
361}
362
363static inline struct reset_control *devm_reset_control_get_optional_shared(
364					struct device *dev, const char *id)
365{
366	return __devm_reset_control_get(dev, id, 0, true, true, false);
367}
368
369/**
370 * devm_reset_control_get_exclusive_by_index - resource managed
371 *                                             reset_control_get_exclusive()
372 * @dev: device to be reset by the controller
373 * @index: index of the reset controller
374 *
375 * Managed reset_control_get_exclusive(). For reset controllers returned from
376 * this function, reset_control_put() is called automatically on driver
377 * detach.
378 *
379 * See reset_control_get_exclusive() for more information.
380 */
381static inline struct reset_control *
382devm_reset_control_get_exclusive_by_index(struct device *dev, int index)
383{
384	return __devm_reset_control_get(dev, NULL, index, false, false, true);
385}
386
387/**
388 * devm_reset_control_get_shared_by_index - resource managed
389 *                                          reset_control_get_shared
390 * @dev: device to be reset by the controller
391 * @index: index of the reset controller
392 *
393 * Managed reset_control_get_shared(). For reset controllers returned from
394 * this function, reset_control_put() is called automatically on driver detach.
395 * See reset_control_get_shared() for more information.
396 */
397static inline struct reset_control *
398devm_reset_control_get_shared_by_index(struct device *dev, int index)
399{
400	return __devm_reset_control_get(dev, NULL, index, true, false, false);
401}
402
403/*
404 * TEMPORARY calls to use during transition:
405 *
406 *   of_reset_control_get() => of_reset_control_get_exclusive()
407 *
408 * These inline function calls will be removed once all consumers
409 * have been moved over to the new explicit API.
410 */
 
 
 
 
 
 
 
 
 
 
 
 
411static inline struct reset_control *of_reset_control_get(
412				struct device_node *node, const char *id)
413{
414	return of_reset_control_get_exclusive(node, id);
415}
416
417static inline struct reset_control *of_reset_control_get_by_index(
418				struct device_node *node, int index)
419{
420	return of_reset_control_get_exclusive_by_index(node, index);
421}
422
423static inline struct reset_control *devm_reset_control_get(
424				struct device *dev, const char *id)
425{
426	return devm_reset_control_get_exclusive(dev, id);
427}
428
429static inline struct reset_control *devm_reset_control_get_optional(
430				struct device *dev, const char *id)
431{
432	return devm_reset_control_get_optional_exclusive(dev, id);
433
434}
435
436static inline struct reset_control *devm_reset_control_get_by_index(
437				struct device *dev, int index)
438{
439	return devm_reset_control_get_exclusive_by_index(dev, index);
440}
441
442/*
443 * APIs to manage a list of reset controllers
444 */
445static inline struct reset_control *
446devm_reset_control_array_get_exclusive(struct device *dev)
447{
448	return devm_reset_control_array_get(dev, false, false);
449}
450
451static inline struct reset_control *
452devm_reset_control_array_get_shared(struct device *dev)
453{
454	return devm_reset_control_array_get(dev, true, false);
455}
456
457static inline struct reset_control *
458devm_reset_control_array_get_optional_exclusive(struct device *dev)
459{
460	return devm_reset_control_array_get(dev, false, true);
461}
462
463static inline struct reset_control *
464devm_reset_control_array_get_optional_shared(struct device *dev)
465{
466	return devm_reset_control_array_get(dev, true, true);
467}
468
469static inline struct reset_control *
470of_reset_control_array_get_exclusive(struct device_node *node)
471{
472	return of_reset_control_array_get(node, false, false, true);
473}
474
475static inline struct reset_control *
476of_reset_control_array_get_exclusive_released(struct device_node *node)
477{
478	return of_reset_control_array_get(node, false, false, false);
479}
480
481static inline struct reset_control *
482of_reset_control_array_get_shared(struct device_node *node)
483{
484	return of_reset_control_array_get(node, true, false, true);
485}
486
487static inline struct reset_control *
488of_reset_control_array_get_optional_exclusive(struct device_node *node)
489{
490	return of_reset_control_array_get(node, false, true, true);
491}
492
493static inline struct reset_control *
494of_reset_control_array_get_optional_shared(struct device_node *node)
495{
496	return of_reset_control_array_get(node, true, true, true);
497}
498#endif