dt-bindings: reset: convert Hisilicon reset controller bindings to json-schema
[linux-2.6-block.git] / drivers / reset / core.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
61fc4131
PZ
2/*
3 * Reset Controller framework
4 *
5 * Copyright 2013 Philipp Zabel, Pengutronix
61fc4131 6 */
0b52297f 7#include <linux/atomic.h>
61fc4131
PZ
8#include <linux/device.h>
9#include <linux/err.h>
10#include <linux/export.h>
11#include <linux/kernel.h>
d25e4334 12#include <linux/kref.h>
61fc4131
PZ
13#include <linux/module.h>
14#include <linux/of.h>
15#include <linux/reset.h>
16#include <linux/reset-controller.h>
17#include <linux/slab.h>
18
c15ddec2 19static DEFINE_MUTEX(reset_list_mutex);
61fc4131
PZ
20static LIST_HEAD(reset_controller_list);
21
6691dffa
BG
22static DEFINE_MUTEX(reset_lookup_mutex);
23static LIST_HEAD(reset_lookup_list);
24
61fc4131
PZ
25/**
26 * struct reset_control - a reset control
27 * @rcdev: a pointer to the reset controller device
28 * this reset control belongs to
c15ddec2 29 * @list: list entry for the rcdev's reset controller list
61fc4131
PZ
30 * @id: ID of the reset controller in the reset
31 * controller device
c15ddec2 32 * @refcnt: Number of gets of this reset_control
c84b0326 33 * @acquired: Only one reset_control may be acquired for a given rcdev and id.
0b52297f 34 * @shared: Is this a shared (1), or an exclusive (0) reset_control?
3315be57
KK
35 * @array: Is this an array of reset controls (1)?
36 * @deassert_count: Number of times this reset line has been deasserted
7da33a37
MB
37 * @triggered_count: Number of times this reset line has been reset. Currently
38 * only used for shared resets, which means that the value
39 * will be either 0 or 1.
61fc4131
PZ
40 */
41struct reset_control {
42 struct reset_controller_dev *rcdev;
c15ddec2 43 struct list_head list;
61fc4131 44 unsigned int id;
d25e4334 45 struct kref refcnt;
c84b0326 46 bool acquired;
ee48c726 47 bool shared;
17c82e20 48 bool array;
0b52297f 49 atomic_t deassert_count;
7da33a37 50 atomic_t triggered_count;
61fc4131
PZ
51};
52
17c82e20
VG
53/**
54 * struct reset_control_array - an array of reset controls
55 * @base: reset control for compatibility with reset control API functions
56 * @num_rstcs: number of reset controls
57 * @rstc: array of reset controls
58 */
59struct reset_control_array {
60 struct reset_control base;
61 unsigned int num_rstcs;
62 struct reset_control *rstc[];
63};
64
c84b0326
PZ
65static const char *rcdev_name(struct reset_controller_dev *rcdev)
66{
67 if (rcdev->dev)
68 return dev_name(rcdev->dev);
69
70 if (rcdev->of_node)
71 return rcdev->of_node->full_name;
72
73 return NULL;
74}
75
61fc4131
PZ
76/**
77 * of_reset_simple_xlate - translate reset_spec to the reset line number
78 * @rcdev: a pointer to the reset controller device
79 * @reset_spec: reset line specifier as found in the device tree
61fc4131 80 *
a48108c0
PZ
81 * This static translation function is used by default if of_xlate in
82 * :c:type:`reset_controller_dev` is not set. It is useful for all reset
83 * controllers with 1:1 mapping, where reset lines can be indexed by number
84 * without gaps.
61fc4131 85 */
0c5b2b91 86static int of_reset_simple_xlate(struct reset_controller_dev *rcdev,
61fc4131
PZ
87 const struct of_phandle_args *reset_spec)
88{
61fc4131
PZ
89 if (reset_spec->args[0] >= rcdev->nr_resets)
90 return -EINVAL;
91
92 return reset_spec->args[0];
93}
61fc4131
PZ
94
95/**
96 * reset_controller_register - register a reset controller device
97 * @rcdev: a pointer to the initialized reset controller device
98 */
99int reset_controller_register(struct reset_controller_dev *rcdev)
100{
101 if (!rcdev->of_xlate) {
102 rcdev->of_reset_n_cells = 1;
103 rcdev->of_xlate = of_reset_simple_xlate;
104 }
105
c15ddec2
HG
106 INIT_LIST_HEAD(&rcdev->reset_control_head);
107
108 mutex_lock(&reset_list_mutex);
61fc4131 109 list_add(&rcdev->list, &reset_controller_list);
c15ddec2 110 mutex_unlock(&reset_list_mutex);
61fc4131
PZ
111
112 return 0;
113}
114EXPORT_SYMBOL_GPL(reset_controller_register);
115
116/**
117 * reset_controller_unregister - unregister a reset controller device
118 * @rcdev: a pointer to the reset controller device
119 */
120void reset_controller_unregister(struct reset_controller_dev *rcdev)
121{
c15ddec2 122 mutex_lock(&reset_list_mutex);
61fc4131 123 list_del(&rcdev->list);
c15ddec2 124 mutex_unlock(&reset_list_mutex);
61fc4131
PZ
125}
126EXPORT_SYMBOL_GPL(reset_controller_unregister);
127
8d5b5d5c
MY
128static void devm_reset_controller_release(struct device *dev, void *res)
129{
130 reset_controller_unregister(*(struct reset_controller_dev **)res);
131}
132
133/**
134 * devm_reset_controller_register - resource managed reset_controller_register()
135 * @dev: device that is registering this reset controller
136 * @rcdev: a pointer to the initialized reset controller device
137 *
138 * Managed reset_controller_register(). For reset controllers registered by
139 * this function, reset_controller_unregister() is automatically called on
140 * driver detach. See reset_controller_register() for more information.
141 */
142int devm_reset_controller_register(struct device *dev,
143 struct reset_controller_dev *rcdev)
144{
145 struct reset_controller_dev **rcdevp;
146 int ret;
147
148 rcdevp = devres_alloc(devm_reset_controller_release, sizeof(*rcdevp),
149 GFP_KERNEL);
150 if (!rcdevp)
151 return -ENOMEM;
152
153 ret = reset_controller_register(rcdev);
a9457ed2 154 if (ret) {
8d5b5d5c 155 devres_free(rcdevp);
a9457ed2 156 return ret;
8d5b5d5c
MY
157 }
158
a9457ed2
GU
159 *rcdevp = rcdev;
160 devres_add(dev, rcdevp);
161
8d5b5d5c
MY
162 return ret;
163}
164EXPORT_SYMBOL_GPL(devm_reset_controller_register);
165
6691dffa
BG
166/**
167 * reset_controller_add_lookup - register a set of lookup entries
6691dffa
BG
168 * @lookup: array of reset lookup entries
169 * @num_entries: number of entries in the lookup array
170 */
e2749bb9 171void reset_controller_add_lookup(struct reset_control_lookup *lookup,
6691dffa
BG
172 unsigned int num_entries)
173{
174 struct reset_control_lookup *entry;
175 unsigned int i;
176
177 mutex_lock(&reset_lookup_mutex);
178 for (i = 0; i < num_entries; i++) {
179 entry = &lookup[i];
180
e2749bb9
BG
181 if (!entry->dev_id || !entry->provider) {
182 pr_warn("%s(): reset lookup entry badly specified, skipping\n",
6691dffa
BG
183 __func__);
184 continue;
185 }
186
6691dffa
BG
187 list_add_tail(&entry->list, &reset_lookup_list);
188 }
189 mutex_unlock(&reset_lookup_mutex);
190}
191EXPORT_SYMBOL_GPL(reset_controller_add_lookup);
192
17c82e20
VG
193static inline struct reset_control_array *
194rstc_to_array(struct reset_control *rstc) {
195 return container_of(rstc, struct reset_control_array, base);
196}
197
198static int reset_control_array_reset(struct reset_control_array *resets)
199{
200 int ret, i;
201
202 for (i = 0; i < resets->num_rstcs; i++) {
203 ret = reset_control_reset(resets->rstc[i]);
204 if (ret)
205 return ret;
206 }
207
208 return 0;
209}
210
557acb3d
AOA
211static int reset_control_array_rearm(struct reset_control_array *resets)
212{
213 struct reset_control *rstc;
214 int i;
215
216 for (i = 0; i < resets->num_rstcs; i++) {
217 rstc = resets->rstc[i];
218
219 if (!rstc)
220 continue;
221
222 if (WARN_ON(IS_ERR(rstc)))
223 return -EINVAL;
224
225 if (rstc->shared) {
226 if (WARN_ON(atomic_read(&rstc->deassert_count) != 0))
227 return -EINVAL;
228 } else {
229 if (!rstc->acquired)
230 return -EPERM;
231 }
232 }
233
234 for (i = 0; i < resets->num_rstcs; i++) {
235 rstc = resets->rstc[i];
236
237 if (rstc && rstc->shared)
238 WARN_ON(atomic_dec_return(&rstc->triggered_count) < 0);
239 }
240
241 return 0;
242}
243
17c82e20
VG
244static int reset_control_array_assert(struct reset_control_array *resets)
245{
246 int ret, i;
247
248 for (i = 0; i < resets->num_rstcs; i++) {
249 ret = reset_control_assert(resets->rstc[i]);
250 if (ret)
251 goto err;
252 }
253
254 return 0;
255
256err:
257 while (i--)
258 reset_control_deassert(resets->rstc[i]);
259 return ret;
260}
261
262static int reset_control_array_deassert(struct reset_control_array *resets)
263{
264 int ret, i;
265
266 for (i = 0; i < resets->num_rstcs; i++) {
267 ret = reset_control_deassert(resets->rstc[i]);
268 if (ret)
269 goto err;
270 }
271
272 return 0;
273
274err:
275 while (i--)
276 reset_control_assert(resets->rstc[i]);
277 return ret;
278}
279
22815f18
TR
280static int reset_control_array_acquire(struct reset_control_array *resets)
281{
282 unsigned int i;
283 int err;
284
285 for (i = 0; i < resets->num_rstcs; i++) {
286 err = reset_control_acquire(resets->rstc[i]);
287 if (err < 0)
288 goto release;
289 }
290
291 return 0;
292
293release:
294 while (i--)
295 reset_control_release(resets->rstc[i]);
296
297 return err;
298}
299
300static void reset_control_array_release(struct reset_control_array *resets)
301{
302 unsigned int i;
303
304 for (i = 0; i < resets->num_rstcs; i++)
305 reset_control_release(resets->rstc[i]);
306}
307
17c82e20
VG
308static inline bool reset_control_is_array(struct reset_control *rstc)
309{
310 return rstc->array;
311}
312
61fc4131
PZ
313/**
314 * reset_control_reset - reset the controlled device
315 * @rstc: reset controller
0b52297f 316 *
7da33a37
MB
317 * On a shared reset line the actual reset pulse is only triggered once for the
318 * lifetime of the reset_control instance: for all but the first caller this is
319 * a no-op.
320 * Consumers must not use reset_control_(de)assert on shared reset lines when
321 * reset_control_reset has been used.
bb475230
RO
322 *
323 * If rstc is NULL it is an optional reset and the function will just
324 * return 0.
61fc4131
PZ
325 */
326int reset_control_reset(struct reset_control *rstc)
327{
7da33a37
MB
328 int ret;
329
bb475230
RO
330 if (!rstc)
331 return 0;
332
333 if (WARN_ON(IS_ERR(rstc)))
0b52297f
HG
334 return -EINVAL;
335
17c82e20
VG
336 if (reset_control_is_array(rstc))
337 return reset_control_array_reset(rstc_to_array(rstc));
338
7da33a37
MB
339 if (!rstc->rcdev->ops->reset)
340 return -ENOTSUPP;
341
342 if (rstc->shared) {
343 if (WARN_ON(atomic_read(&rstc->deassert_count) != 0))
344 return -EINVAL;
345
346 if (atomic_inc_return(&rstc->triggered_count) != 1)
347 return 0;
c84b0326
PZ
348 } else {
349 if (!rstc->acquired)
350 return -EPERM;
7da33a37 351 }
61fc4131 352
7da33a37 353 ret = rstc->rcdev->ops->reset(rstc->rcdev, rstc->id);
e5a1dade 354 if (rstc->shared && ret)
7da33a37
MB
355 atomic_dec(&rstc->triggered_count);
356
357 return ret;
61fc4131
PZ
358}
359EXPORT_SYMBOL_GPL(reset_control_reset);
360
557acb3d
AOA
361/**
362 * reset_control_rearm - allow shared reset line to be re-triggered"
363 * @rstc: reset controller
364 *
365 * On a shared reset line the actual reset pulse is only triggered once for the
366 * lifetime of the reset_control instance, except if this call is used.
367 *
368 * Calls to this function must be balanced with calls to reset_control_reset,
369 * a warning is thrown in case triggered_count ever dips below 0.
370 *
371 * Consumers must not use reset_control_(de)assert on shared reset lines when
372 * reset_control_reset or reset_control_rearm have been used.
373 *
374 * If rstc is NULL the function will just return 0.
375 */
376int reset_control_rearm(struct reset_control *rstc)
377{
378 if (!rstc)
379 return 0;
380
381 if (WARN_ON(IS_ERR(rstc)))
382 return -EINVAL;
383
384 if (reset_control_is_array(rstc))
385 return reset_control_array_rearm(rstc_to_array(rstc));
386
387 if (rstc->shared) {
388 if (WARN_ON(atomic_read(&rstc->deassert_count) != 0))
389 return -EINVAL;
390
391 WARN_ON(atomic_dec_return(&rstc->triggered_count) < 0);
392 } else {
393 if (!rstc->acquired)
394 return -EPERM;
395 }
396
397 return 0;
398}
399EXPORT_SYMBOL_GPL(reset_control_rearm);
400
61fc4131
PZ
401/**
402 * reset_control_assert - asserts the reset line
403 * @rstc: reset controller
0b52297f
HG
404 *
405 * Calling this on an exclusive reset controller guarantees that the reset
406 * will be asserted. When called on a shared reset controller the line may
407 * still be deasserted, as long as other users keep it so.
408 *
409 * For shared reset controls a driver cannot expect the hw's registers and
410 * internal state to be reset, but must be prepared for this to happen.
7da33a37
MB
411 * Consumers must not use reset_control_reset on shared reset lines when
412 * reset_control_(de)assert has been used.
bb475230
RO
413 *
414 * If rstc is NULL it is an optional reset and the function will just
415 * return 0.
61fc4131
PZ
416 */
417int reset_control_assert(struct reset_control *rstc)
418{
bb475230
RO
419 if (!rstc)
420 return 0;
421
422 if (WARN_ON(IS_ERR(rstc)))
a3774e14
PZ
423 return -EINVAL;
424
17c82e20
VG
425 if (reset_control_is_array(rstc))
426 return reset_control_array_assert(rstc_to_array(rstc));
427
0b52297f 428 if (rstc->shared) {
7da33a37
MB
429 if (WARN_ON(atomic_read(&rstc->triggered_count) != 0))
430 return -EINVAL;
431
0b52297f
HG
432 if (WARN_ON(atomic_read(&rstc->deassert_count) == 0))
433 return -EINVAL;
434
435 if (atomic_dec_return(&rstc->deassert_count) != 0)
436 return 0;
21240eb9
PZ
437
438 /*
439 * Shared reset controls allow the reset line to be in any state
440 * after this call, so doing nothing is a valid option.
441 */
442 if (!rstc->rcdev->ops->assert)
443 return 0;
444 } else {
445 /*
446 * If the reset controller does not implement .assert(), there
447 * is no way to guarantee that the reset line is asserted after
448 * this call.
449 */
450 if (!rstc->rcdev->ops->assert)
451 return -ENOTSUPP;
c84b0326
PZ
452
453 if (!rstc->acquired) {
454 WARN(1, "reset %s (ID: %u) is not acquired\n",
455 rcdev_name(rstc->rcdev), rstc->id);
456 return -EPERM;
457 }
0b52297f
HG
458 }
459
460 return rstc->rcdev->ops->assert(rstc->rcdev, rstc->id);
61fc4131
PZ
461}
462EXPORT_SYMBOL_GPL(reset_control_assert);
463
464/**
465 * reset_control_deassert - deasserts the reset line
466 * @rstc: reset controller
0b52297f
HG
467 *
468 * After calling this function, the reset is guaranteed to be deasserted.
7da33a37
MB
469 * Consumers must not use reset_control_reset on shared reset lines when
470 * reset_control_(de)assert has been used.
bb475230
RO
471 *
472 * If rstc is NULL it is an optional reset and the function will just
473 * return 0.
61fc4131
PZ
474 */
475int reset_control_deassert(struct reset_control *rstc)
476{
bb475230
RO
477 if (!rstc)
478 return 0;
479
480 if (WARN_ON(IS_ERR(rstc)))
a3774e14
PZ
481 return -EINVAL;
482
17c82e20
VG
483 if (reset_control_is_array(rstc))
484 return reset_control_array_deassert(rstc_to_array(rstc));
485
0b52297f 486 if (rstc->shared) {
7da33a37
MB
487 if (WARN_ON(atomic_read(&rstc->triggered_count) != 0))
488 return -EINVAL;
489
0b52297f
HG
490 if (atomic_inc_return(&rstc->deassert_count) != 1)
491 return 0;
c84b0326
PZ
492 } else {
493 if (!rstc->acquired) {
494 WARN(1, "reset %s (ID: %u) is not acquired\n",
495 rcdev_name(rstc->rcdev), rstc->id);
496 return -EPERM;
497 }
0b52297f
HG
498 }
499
21240eb9
PZ
500 /*
501 * If the reset controller does not implement .deassert(), we assume
502 * that it handles self-deasserting reset lines via .reset(). In that
503 * case, the reset lines are deasserted by default. If that is not the
504 * case, the reset controller driver should implement .deassert() and
505 * return -ENOTSUPP.
506 */
507 if (!rstc->rcdev->ops->deassert)
508 return 0;
509
0b52297f 510 return rstc->rcdev->ops->deassert(rstc->rcdev, rstc->id);
61fc4131
PZ
511}
512EXPORT_SYMBOL_GPL(reset_control_deassert);
513
729de41b
DN
514/**
515 * reset_control_status - returns a negative errno if not supported, a
516 * positive value if the reset line is asserted, or zero if the reset
bb475230 517 * line is not asserted or if the desc is NULL (optional reset).
729de41b
DN
518 * @rstc: reset controller
519 */
520int reset_control_status(struct reset_control *rstc)
521{
bb475230
RO
522 if (!rstc)
523 return 0;
524
17c82e20 525 if (WARN_ON(IS_ERR(rstc)) || reset_control_is_array(rstc))
a3774e14
PZ
526 return -EINVAL;
527
729de41b
DN
528 if (rstc->rcdev->ops->status)
529 return rstc->rcdev->ops->status(rstc->rcdev, rstc->id);
530
39b4da71 531 return -ENOTSUPP;
729de41b
DN
532}
533EXPORT_SYMBOL_GPL(reset_control_status);
534
c84b0326
PZ
535/**
536 * reset_control_acquire() - acquires a reset control for exclusive use
537 * @rstc: reset control
538 *
539 * This is used to explicitly acquire a reset control for exclusive use. Note
540 * that exclusive resets are requested as acquired by default. In order for a
541 * second consumer to be able to control the reset, the first consumer has to
542 * release it first. Typically the easiest way to achieve this is to call the
543 * reset_control_get_exclusive_released() to obtain an instance of the reset
544 * control. Such reset controls are not acquired by default.
545 *
546 * Consumers implementing shared access to an exclusive reset need to follow
547 * a specific protocol in order to work together. Before consumers can change
548 * a reset they must acquire exclusive access using reset_control_acquire().
549 * After they are done operating the reset, they must release exclusive access
550 * with a call to reset_control_release(). Consumers are not granted exclusive
551 * access to the reset as long as another consumer hasn't released a reset.
552 *
553 * See also: reset_control_release()
554 */
555int reset_control_acquire(struct reset_control *rstc)
556{
557 struct reset_control *rc;
558
559 if (!rstc)
560 return 0;
561
562 if (WARN_ON(IS_ERR(rstc)))
563 return -EINVAL;
564
22815f18
TR
565 if (reset_control_is_array(rstc))
566 return reset_control_array_acquire(rstc_to_array(rstc));
567
c84b0326
PZ
568 mutex_lock(&reset_list_mutex);
569
570 if (rstc->acquired) {
571 mutex_unlock(&reset_list_mutex);
572 return 0;
573 }
574
575 list_for_each_entry(rc, &rstc->rcdev->reset_control_head, list) {
576 if (rstc != rc && rstc->id == rc->id) {
577 if (rc->acquired) {
578 mutex_unlock(&reset_list_mutex);
579 return -EBUSY;
580 }
581 }
582 }
583
584 rstc->acquired = true;
585
586 mutex_unlock(&reset_list_mutex);
587 return 0;
588}
589EXPORT_SYMBOL_GPL(reset_control_acquire);
590
591/**
592 * reset_control_release() - releases exclusive access to a reset control
593 * @rstc: reset control
594 *
595 * Releases exclusive access right to a reset control previously obtained by a
596 * call to reset_control_acquire(). Until a consumer calls this function, no
597 * other consumers will be granted exclusive access.
598 *
599 * See also: reset_control_acquire()
600 */
601void reset_control_release(struct reset_control *rstc)
602{
603 if (!rstc || WARN_ON(IS_ERR(rstc)))
604 return;
605
22815f18
TR
606 if (reset_control_is_array(rstc))
607 reset_control_array_release(rstc_to_array(rstc));
608 else
609 rstc->acquired = false;
c84b0326
PZ
610}
611EXPORT_SYMBOL_GPL(reset_control_release);
612
62e24c57 613static struct reset_control *__reset_control_get_internal(
c15ddec2 614 struct reset_controller_dev *rcdev,
c84b0326 615 unsigned int index, bool shared, bool acquired)
c15ddec2
HG
616{
617 struct reset_control *rstc;
618
619 lockdep_assert_held(&reset_list_mutex);
620
621 list_for_each_entry(rstc, &rcdev->reset_control_head, list) {
622 if (rstc->id == index) {
c84b0326
PZ
623 /*
624 * Allow creating a secondary exclusive reset_control
625 * that is initially not acquired for an already
626 * controlled reset line.
627 */
628 if (!rstc->shared && !shared && !acquired)
629 break;
630
0b52297f
HG
631 if (WARN_ON(!rstc->shared || !shared))
632 return ERR_PTR(-EBUSY);
633
d25e4334 634 kref_get(&rstc->refcnt);
c15ddec2
HG
635 return rstc;
636 }
637 }
638
639 rstc = kzalloc(sizeof(*rstc), GFP_KERNEL);
640 if (!rstc)
641 return ERR_PTR(-ENOMEM);
642
643 try_module_get(rcdev->owner);
644
645 rstc->rcdev = rcdev;
646 list_add(&rstc->list, &rcdev->reset_control_head);
647 rstc->id = index;
d25e4334 648 kref_init(&rstc->refcnt);
c84b0326 649 rstc->acquired = acquired;
0b52297f 650 rstc->shared = shared;
c15ddec2
HG
651
652 return rstc;
653}
654
d25e4334 655static void __reset_control_release(struct kref *kref)
c15ddec2 656{
d25e4334
PZ
657 struct reset_control *rstc = container_of(kref, struct reset_control,
658 refcnt);
c15ddec2 659
d25e4334 660 lockdep_assert_held(&reset_list_mutex);
c15ddec2
HG
661
662 module_put(rstc->rcdev->owner);
663
664 list_del(&rstc->list);
665 kfree(rstc);
666}
667
d25e4334
PZ
668static void __reset_control_put_internal(struct reset_control *rstc)
669{
670 lockdep_assert_held(&reset_list_mutex);
671
672 kref_put(&rstc->refcnt, __reset_control_release);
673}
674
6c96f05c 675struct reset_control *__of_reset_control_get(struct device_node *node,
bb475230 676 const char *id, int index, bool shared,
c84b0326 677 bool optional, bool acquired)
61fc4131 678{
d056c9b8 679 struct reset_control *rstc;
61fc4131
PZ
680 struct reset_controller_dev *r, *rcdev;
681 struct of_phandle_args args;
61fc4131
PZ
682 int rstc_id;
683 int ret;
684
6c96f05c
HG
685 if (!node)
686 return ERR_PTR(-EINVAL);
687
688 if (id) {
689 index = of_property_match_string(node,
690 "reset-names", id);
bb475230
RO
691 if (index == -EILSEQ)
692 return ERR_PTR(index);
6c96f05c 693 if (index < 0)
bb475230 694 return optional ? NULL : ERR_PTR(-ENOENT);
6c96f05c
HG
695 }
696
fc0a5921 697 ret = of_parse_phandle_with_args(node, "resets", "#reset-cells",
61fc4131 698 index, &args);
bb475230 699 if (ret == -EINVAL)
61fc4131 700 return ERR_PTR(ret);
bb475230
RO
701 if (ret)
702 return optional ? NULL : ERR_PTR(ret);
61fc4131 703
c15ddec2 704 mutex_lock(&reset_list_mutex);
61fc4131
PZ
705 rcdev = NULL;
706 list_for_each_entry(r, &reset_controller_list, list) {
707 if (args.np == r->of_node) {
708 rcdev = r;
709 break;
710 }
711 }
61fc4131
PZ
712
713 if (!rcdev) {
b790c8ea
GU
714 rstc = ERR_PTR(-EPROBE_DEFER);
715 goto out;
61fc4131
PZ
716 }
717
e677774f 718 if (WARN_ON(args.args_count != rcdev->of_reset_n_cells)) {
b790c8ea
GU
719 rstc = ERR_PTR(-EINVAL);
720 goto out;
e677774f
MR
721 }
722
61fc4131
PZ
723 rstc_id = rcdev->of_xlate(rcdev, &args);
724 if (rstc_id < 0) {
b790c8ea
GU
725 rstc = ERR_PTR(rstc_id);
726 goto out;
61fc4131
PZ
727 }
728
c15ddec2 729 /* reset_list_mutex also protects the rcdev's reset_control list */
c84b0326 730 rstc = __reset_control_get_internal(rcdev, rstc_id, shared, acquired);
61fc4131 731
b790c8ea 732out:
c15ddec2 733 mutex_unlock(&reset_list_mutex);
b790c8ea 734 of_node_put(args.np);
61fc4131
PZ
735
736 return rstc;
737}
6c96f05c 738EXPORT_SYMBOL_GPL(__of_reset_control_get);
61fc4131 739
e2749bb9
BG
740static struct reset_controller_dev *
741__reset_controller_by_name(const char *name)
742{
743 struct reset_controller_dev *rcdev;
744
745 lockdep_assert_held(&reset_list_mutex);
746
747 list_for_each_entry(rcdev, &reset_controller_list, list) {
748 if (!rcdev->dev)
749 continue;
750
751 if (!strcmp(name, dev_name(rcdev->dev)))
752 return rcdev;
753 }
754
755 return NULL;
756}
757
6691dffa
BG
758static struct reset_control *
759__reset_control_get_from_lookup(struct device *dev, const char *con_id,
c84b0326 760 bool shared, bool optional, bool acquired)
6691dffa
BG
761{
762 const struct reset_control_lookup *lookup;
e2749bb9 763 struct reset_controller_dev *rcdev;
6691dffa
BG
764 const char *dev_id = dev_name(dev);
765 struct reset_control *rstc = NULL;
766
6691dffa
BG
767 mutex_lock(&reset_lookup_mutex);
768
769 list_for_each_entry(lookup, &reset_lookup_list, list) {
770 if (strcmp(lookup->dev_id, dev_id))
771 continue;
772
773 if ((!con_id && !lookup->con_id) ||
774 ((con_id && lookup->con_id) &&
775 !strcmp(con_id, lookup->con_id))) {
776 mutex_lock(&reset_list_mutex);
e2749bb9
BG
777 rcdev = __reset_controller_by_name(lookup->provider);
778 if (!rcdev) {
779 mutex_unlock(&reset_list_mutex);
780 mutex_unlock(&reset_lookup_mutex);
781 /* Reset provider may not be ready yet. */
782 return ERR_PTR(-EPROBE_DEFER);
783 }
784
785 rstc = __reset_control_get_internal(rcdev,
6691dffa 786 lookup->index,
c84b0326 787 shared, acquired);
6691dffa
BG
788 mutex_unlock(&reset_list_mutex);
789 break;
790 }
791 }
792
793 mutex_unlock(&reset_lookup_mutex);
794
795 if (!rstc)
796 return optional ? NULL : ERR_PTR(-ENOENT);
797
798 return rstc;
799}
800
62e24c57 801struct reset_control *__reset_control_get(struct device *dev, const char *id,
c84b0326
PZ
802 int index, bool shared, bool optional,
803 bool acquired)
62e24c57 804{
c84b0326
PZ
805 if (WARN_ON(shared && acquired))
806 return ERR_PTR(-EINVAL);
807
62e24c57
PZ
808 if (dev->of_node)
809 return __of_reset_control_get(dev->of_node, id, index, shared,
c84b0326 810 optional, acquired);
62e24c57 811
c84b0326
PZ
812 return __reset_control_get_from_lookup(dev, id, shared, optional,
813 acquired);
62e24c57
PZ
814}
815EXPORT_SYMBOL_GPL(__reset_control_get);
816
17c82e20
VG
817static void reset_control_array_put(struct reset_control_array *resets)
818{
819 int i;
820
821 mutex_lock(&reset_list_mutex);
822 for (i = 0; i < resets->num_rstcs; i++)
823 __reset_control_put_internal(resets->rstc[i]);
824 mutex_unlock(&reset_list_mutex);
532f9cd6 825 kfree(resets);
17c82e20
VG
826}
827
61fc4131
PZ
828/**
829 * reset_control_put - free the reset controller
830 * @rstc: reset controller
831 */
61fc4131
PZ
832void reset_control_put(struct reset_control *rstc)
833{
4891486f 834 if (IS_ERR_OR_NULL(rstc))
61fc4131
PZ
835 return;
836
17c82e20
VG
837 if (reset_control_is_array(rstc)) {
838 reset_control_array_put(rstc_to_array(rstc));
839 return;
840 }
841
c15ddec2 842 mutex_lock(&reset_list_mutex);
62e24c57 843 __reset_control_put_internal(rstc);
c15ddec2 844 mutex_unlock(&reset_list_mutex);
61fc4131
PZ
845}
846EXPORT_SYMBOL_GPL(reset_control_put);
847
848static void devm_reset_control_release(struct device *dev, void *res)
849{
850 reset_control_put(*(struct reset_control **)res);
851}
852
6c96f05c 853struct reset_control *__devm_reset_control_get(struct device *dev,
bb475230 854 const char *id, int index, bool shared,
c84b0326 855 bool optional, bool acquired)
61fc4131
PZ
856{
857 struct reset_control **ptr, *rstc;
858
859 ptr = devres_alloc(devm_reset_control_release, sizeof(*ptr),
860 GFP_KERNEL);
861 if (!ptr)
862 return ERR_PTR(-ENOMEM);
863
c84b0326 864 rstc = __reset_control_get(dev, id, index, shared, optional, acquired);
a9457ed2 865 if (IS_ERR_OR_NULL(rstc)) {
61fc4131 866 devres_free(ptr);
a9457ed2 867 return rstc;
61fc4131
PZ
868 }
869
a9457ed2
GU
870 *ptr = rstc;
871 devres_add(dev, ptr);
872
61fc4131
PZ
873 return rstc;
874}
6c96f05c 875EXPORT_SYMBOL_GPL(__devm_reset_control_get);
61fc4131 876
61fc4131
PZ
877/**
878 * device_reset - find reset controller associated with the device
879 * and perform reset
880 * @dev: device to be reset by the controller
1554bbd4 881 * @optional: whether it is optional to reset the device
61fc4131 882 *
1554bbd4 883 * Convenience wrapper for __reset_control_get() and reset_control_reset().
61fc4131
PZ
884 * This is useful for the common case of devices with single, dedicated reset
885 * lines.
886 */
1554bbd4 887int __device_reset(struct device *dev, bool optional)
61fc4131
PZ
888{
889 struct reset_control *rstc;
890 int ret;
891
c84b0326 892 rstc = __reset_control_get(dev, NULL, 0, 0, optional, true);
61fc4131
PZ
893 if (IS_ERR(rstc))
894 return PTR_ERR(rstc);
895
896 ret = reset_control_reset(rstc);
897
898 reset_control_put(rstc);
899
900 return ret;
901}
1554bbd4 902EXPORT_SYMBOL_GPL(__device_reset);
17c82e20 903
77d551b9 904/*
17c82e20
VG
905 * APIs to manage an array of reset controls.
906 */
77d551b9 907
17c82e20
VG
908/**
909 * of_reset_control_get_count - Count number of resets available with a device
910 *
911 * @node: device node that contains 'resets'.
912 *
913 * Returns positive reset count on success, or error number on failure and
914 * on count being zero.
915 */
916static int of_reset_control_get_count(struct device_node *node)
917{
918 int count;
919
920 if (!node)
921 return -EINVAL;
922
923 count = of_count_phandle_with_args(node, "resets", "#reset-cells");
924 if (count == 0)
925 count = -ENOENT;
926
927 return count;
928}
929
930/**
931 * of_reset_control_array_get - Get a list of reset controls using
932 * device node.
933 *
934 * @np: device node for the device that requests the reset controls array
935 * @shared: whether reset controls are shared or not
936 * @optional: whether it is optional to get the reset controls
f31d5c24
TR
937 * @acquired: only one reset control may be acquired for a given controller
938 * and ID
17c82e20 939 *
723c0011 940 * Returns pointer to allocated reset_control on success or error on failure
17c82e20
VG
941 */
942struct reset_control *
f31d5c24
TR
943of_reset_control_array_get(struct device_node *np, bool shared, bool optional,
944 bool acquired)
17c82e20
VG
945{
946 struct reset_control_array *resets;
947 struct reset_control *rstc;
948 int num, i;
949
950 num = of_reset_control_get_count(np);
951 if (num < 0)
952 return optional ? NULL : ERR_PTR(num);
953
acafe7e3 954 resets = kzalloc(struct_size(resets, rstc, num), GFP_KERNEL);
17c82e20
VG
955 if (!resets)
956 return ERR_PTR(-ENOMEM);
957
958 for (i = 0; i < num; i++) {
c84b0326 959 rstc = __of_reset_control_get(np, NULL, i, shared, optional,
f31d5c24 960 acquired);
17c82e20
VG
961 if (IS_ERR(rstc))
962 goto err_rst;
963 resets->rstc[i] = rstc;
964 }
965 resets->num_rstcs = num;
966 resets->base.array = true;
967
968 return &resets->base;
969
970err_rst:
971 mutex_lock(&reset_list_mutex);
972 while (--i >= 0)
973 __reset_control_put_internal(resets->rstc[i]);
974 mutex_unlock(&reset_list_mutex);
975
976 kfree(resets);
977
978 return rstc;
979}
980EXPORT_SYMBOL_GPL(of_reset_control_array_get);
981
982/**
983 * devm_reset_control_array_get - Resource managed reset control array get
984 *
985 * @dev: device that requests the list of reset controls
986 * @shared: whether reset controls are shared or not
987 * @optional: whether it is optional to get the reset controls
988 *
989 * The reset control array APIs are intended for a list of resets
990 * that just have to be asserted or deasserted, without any
991 * requirements on the order.
992 *
723c0011 993 * Returns pointer to allocated reset_control on success or error on failure
17c82e20
VG
994 */
995struct reset_control *
996devm_reset_control_array_get(struct device *dev, bool shared, bool optional)
997{
a9457ed2 998 struct reset_control **ptr, *rstc;
17c82e20 999
a9457ed2
GU
1000 ptr = devres_alloc(devm_reset_control_release, sizeof(*ptr),
1001 GFP_KERNEL);
1002 if (!ptr)
17c82e20
VG
1003 return ERR_PTR(-ENOMEM);
1004
f31d5c24 1005 rstc = of_reset_control_array_get(dev->of_node, shared, optional, true);
db238086 1006 if (IS_ERR_OR_NULL(rstc)) {
a9457ed2 1007 devres_free(ptr);
17c82e20
VG
1008 return rstc;
1009 }
1010
a9457ed2
GU
1011 *ptr = rstc;
1012 devres_add(dev, ptr);
17c82e20
VG
1013
1014 return rstc;
1015}
1016EXPORT_SYMBOL_GPL(devm_reset_control_array_get);
eaf91db0
GU
1017
1018static int reset_control_get_count_from_lookup(struct device *dev)
1019{
1020 const struct reset_control_lookup *lookup;
151f72f4 1021 const char *dev_id;
eaf91db0
GU
1022 int count = 0;
1023
1024 if (!dev)
1025 return -EINVAL;
1026
151f72f4 1027 dev_id = dev_name(dev);
eaf91db0
GU
1028 mutex_lock(&reset_lookup_mutex);
1029
1030 list_for_each_entry(lookup, &reset_lookup_list, list) {
1031 if (!strcmp(lookup->dev_id, dev_id))
1032 count++;
1033 }
1034
1035 mutex_unlock(&reset_lookup_mutex);
1036
1037 if (count == 0)
1038 count = -ENOENT;
1039
1040 return count;
1041}
1042
1043/**
1044 * reset_control_get_count - Count number of resets available with a device
1045 *
1046 * @dev: device for which to return the number of resets
1047 *
1048 * Returns positive reset count on success, or error number on failure and
1049 * on count being zero.
1050 */
1051int reset_control_get_count(struct device *dev)
1052{
1053 if (dev->of_node)
1054 return of_reset_control_get_count(dev->of_node);
1055
1056 return reset_control_get_count_from_lookup(dev);
1057}
1058EXPORT_SYMBOL_GPL(reset_control_get_count);