2 * drivers/base/power/domain.c - Common code related to device power domains.
4 * Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
6 * This file is released under the GPLv2.
9 #include <linux/delay.h>
10 #include <linux/kernel.h>
12 #include <linux/platform_device.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/pm_domain.h>
15 #include <linux/pm_qos.h>
16 #include <linux/pm_clock.h>
17 #include <linux/slab.h>
18 #include <linux/err.h>
19 #include <linux/sched.h>
20 #include <linux/suspend.h>
21 #include <linux/export.h>
25 #define GENPD_RETRY_MAX_MS 250 /* Approximate */
27 #define GENPD_DEV_CALLBACK(genpd, type, callback, dev) \
29 type (*__routine)(struct device *__d); \
30 type __ret = (type)0; \
32 __routine = genpd->dev_ops.callback; \
34 __ret = __routine(dev); \
39 static LIST_HEAD(gpd_list
);
40 static DEFINE_MUTEX(gpd_list_lock
);
42 struct genpd_lock_ops
{
43 void (*lock
)(struct generic_pm_domain
*genpd
);
44 void (*lock_nested
)(struct generic_pm_domain
*genpd
, int depth
);
45 int (*lock_interruptible
)(struct generic_pm_domain
*genpd
);
46 void (*unlock
)(struct generic_pm_domain
*genpd
);
49 static void genpd_lock_mtx(struct generic_pm_domain
*genpd
)
51 mutex_lock(&genpd
->mlock
);
54 static void genpd_lock_nested_mtx(struct generic_pm_domain
*genpd
,
57 mutex_lock_nested(&genpd
->mlock
, depth
);
60 static int genpd_lock_interruptible_mtx(struct generic_pm_domain
*genpd
)
62 return mutex_lock_interruptible(&genpd
->mlock
);
65 static void genpd_unlock_mtx(struct generic_pm_domain
*genpd
)
67 return mutex_unlock(&genpd
->mlock
);
70 static const struct genpd_lock_ops genpd_mtx_ops
= {
71 .lock
= genpd_lock_mtx
,
72 .lock_nested
= genpd_lock_nested_mtx
,
73 .lock_interruptible
= genpd_lock_interruptible_mtx
,
74 .unlock
= genpd_unlock_mtx
,
77 static void genpd_lock_spin(struct generic_pm_domain
*genpd
)
78 __acquires(&genpd
->slock
)
82 spin_lock_irqsave(&genpd
->slock
, flags
);
83 genpd
->lock_flags
= flags
;
86 static void genpd_lock_nested_spin(struct generic_pm_domain
*genpd
,
88 __acquires(&genpd
->slock
)
92 spin_lock_irqsave_nested(&genpd
->slock
, flags
, depth
);
93 genpd
->lock_flags
= flags
;
96 static int genpd_lock_interruptible_spin(struct generic_pm_domain
*genpd
)
97 __acquires(&genpd
->slock
)
101 spin_lock_irqsave(&genpd
->slock
, flags
);
102 genpd
->lock_flags
= flags
;
106 static void genpd_unlock_spin(struct generic_pm_domain
*genpd
)
107 __releases(&genpd
->slock
)
109 spin_unlock_irqrestore(&genpd
->slock
, genpd
->lock_flags
);
112 static const struct genpd_lock_ops genpd_spin_ops
= {
113 .lock
= genpd_lock_spin
,
114 .lock_nested
= genpd_lock_nested_spin
,
115 .lock_interruptible
= genpd_lock_interruptible_spin
,
116 .unlock
= genpd_unlock_spin
,
119 #define genpd_lock(p) p->lock_ops->lock(p)
120 #define genpd_lock_nested(p, d) p->lock_ops->lock_nested(p, d)
121 #define genpd_lock_interruptible(p) p->lock_ops->lock_interruptible(p)
122 #define genpd_unlock(p) p->lock_ops->unlock(p)
124 #define genpd_status_on(genpd) (genpd->status == GPD_STATE_ACTIVE)
125 #define genpd_is_irq_safe(genpd) (genpd->flags & GENPD_FLAG_IRQ_SAFE)
126 #define genpd_is_always_on(genpd) (genpd->flags & GENPD_FLAG_ALWAYS_ON)
127 #define genpd_is_active_wakeup(genpd) (genpd->flags & GENPD_FLAG_ACTIVE_WAKEUP)
129 static inline bool irq_safe_dev_in_no_sleep_domain(struct device
*dev
,
130 const struct generic_pm_domain
*genpd
)
134 ret
= pm_runtime_is_irq_safe(dev
) && !genpd_is_irq_safe(genpd
);
137 * Warn once if an IRQ safe device is attached to a no sleep domain, as
138 * to indicate a suboptimal configuration for PM. For an always on
139 * domain this isn't case, thus don't warn.
141 if (ret
&& !genpd_is_always_on(genpd
))
142 dev_warn_once(dev
, "PM domain %s will not be powered off\n",
149 * Get the generic PM domain for a particular struct device.
150 * This validates the struct device pointer, the PM domain pointer,
151 * and checks that the PM domain pointer is a real generic PM domain.
152 * Any failure results in NULL being returned.
154 static struct generic_pm_domain
*genpd_lookup_dev(struct device
*dev
)
156 struct generic_pm_domain
*genpd
= NULL
, *gpd
;
158 if (IS_ERR_OR_NULL(dev
) || IS_ERR_OR_NULL(dev
->pm_domain
))
161 mutex_lock(&gpd_list_lock
);
162 list_for_each_entry(gpd
, &gpd_list
, gpd_list_node
) {
163 if (&gpd
->domain
== dev
->pm_domain
) {
168 mutex_unlock(&gpd_list_lock
);
174 * This should only be used where we are certain that the pm_domain
175 * attached to the device is a genpd domain.
177 static struct generic_pm_domain
*dev_to_genpd(struct device
*dev
)
179 if (IS_ERR_OR_NULL(dev
->pm_domain
))
180 return ERR_PTR(-EINVAL
);
182 return pd_to_genpd(dev
->pm_domain
);
185 static int genpd_stop_dev(const struct generic_pm_domain
*genpd
,
188 return GENPD_DEV_CALLBACK(genpd
, int, stop
, dev
);
191 static int genpd_start_dev(const struct generic_pm_domain
*genpd
,
194 return GENPD_DEV_CALLBACK(genpd
, int, start
, dev
);
197 static bool genpd_sd_counter_dec(struct generic_pm_domain
*genpd
)
201 if (!WARN_ON(atomic_read(&genpd
->sd_count
) == 0))
202 ret
= !!atomic_dec_and_test(&genpd
->sd_count
);
207 static void genpd_sd_counter_inc(struct generic_pm_domain
*genpd
)
209 atomic_inc(&genpd
->sd_count
);
210 smp_mb__after_atomic();
213 #ifdef CONFIG_DEBUG_FS
214 static void genpd_update_accounting(struct generic_pm_domain
*genpd
)
219 delta
= ktime_sub(now
, genpd
->accounting_time
);
222 * If genpd->status is active, it means we are just
223 * out of off and so update the idle time and vice
226 if (genpd
->status
== GPD_STATE_ACTIVE
) {
227 int state_idx
= genpd
->state_idx
;
229 genpd
->states
[state_idx
].idle_time
=
230 ktime_add(genpd
->states
[state_idx
].idle_time
, delta
);
232 genpd
->on_time
= ktime_add(genpd
->on_time
, delta
);
235 genpd
->accounting_time
= now
;
238 static inline void genpd_update_accounting(struct generic_pm_domain
*genpd
) {}
242 * dev_pm_genpd_set_performance_state- Set performance state of device's power
245 * @dev: Device for which the performance-state needs to be set.
246 * @state: Target performance state of the device. This can be set as 0 when the
247 * device doesn't have any performance state constraints left (And so
248 * the device wouldn't participate anymore to find the target
249 * performance state of the genpd).
251 * It is assumed that the users guarantee that the genpd wouldn't be detached
252 * while this routine is getting called.
254 * Returns 0 on success and negative error values on failures.
256 int dev_pm_genpd_set_performance_state(struct device
*dev
, unsigned int state
)
258 struct generic_pm_domain
*genpd
;
259 struct generic_pm_domain_data
*gpd_data
, *pd_data
;
260 struct pm_domain_data
*pdd
;
264 genpd
= dev_to_genpd(dev
);
268 if (unlikely(!genpd
->set_performance_state
))
271 if (unlikely(!dev
->power
.subsys_data
||
272 !dev
->power
.subsys_data
->domain_data
)) {
279 gpd_data
= to_gpd_data(dev
->power
.subsys_data
->domain_data
);
280 prev
= gpd_data
->performance_state
;
281 gpd_data
->performance_state
= state
;
283 /* New requested state is same as Max requested state */
284 if (state
== genpd
->performance_state
)
287 /* New requested state is higher than Max requested state */
288 if (state
> genpd
->performance_state
)
291 /* Traverse all devices within the domain */
292 list_for_each_entry(pdd
, &genpd
->dev_list
, list_node
) {
293 pd_data
= to_gpd_data(pdd
);
295 if (pd_data
->performance_state
> state
)
296 state
= pd_data
->performance_state
;
299 if (state
== genpd
->performance_state
)
303 * We aren't propagating performance state changes of a subdomain to its
304 * masters as we don't have hardware that needs it. Over that, the
305 * performance states of subdomain and its masters may not have
306 * one-to-one mapping and would require additional information. We can
307 * get back to this once we have hardware that needs it. For that
308 * reason, we don't have to consider performance state of the subdomains
313 if (genpd_status_on(genpd
)) {
314 ret
= genpd
->set_performance_state(genpd
, state
);
316 gpd_data
->performance_state
= prev
;
321 genpd
->performance_state
= state
;
328 EXPORT_SYMBOL_GPL(dev_pm_genpd_set_performance_state
);
330 static int _genpd_power_on(struct generic_pm_domain
*genpd
, bool timed
)
332 unsigned int state_idx
= genpd
->state_idx
;
337 if (!genpd
->power_on
)
341 return genpd
->power_on(genpd
);
343 time_start
= ktime_get();
344 ret
= genpd
->power_on(genpd
);
348 elapsed_ns
= ktime_to_ns(ktime_sub(ktime_get(), time_start
));
350 if (unlikely(genpd
->set_performance_state
)) {
351 ret
= genpd
->set_performance_state(genpd
, genpd
->performance_state
);
353 pr_warn("%s: Failed to set performance state %d (%d)\n",
354 genpd
->name
, genpd
->performance_state
, ret
);
358 if (elapsed_ns
<= genpd
->states
[state_idx
].power_on_latency_ns
)
361 genpd
->states
[state_idx
].power_on_latency_ns
= elapsed_ns
;
362 genpd
->max_off_time_changed
= true;
363 pr_debug("%s: Power-%s latency exceeded, new value %lld ns\n",
364 genpd
->name
, "on", elapsed_ns
);
369 static int _genpd_power_off(struct generic_pm_domain
*genpd
, bool timed
)
371 unsigned int state_idx
= genpd
->state_idx
;
376 if (!genpd
->power_off
)
380 return genpd
->power_off(genpd
);
382 time_start
= ktime_get();
383 ret
= genpd
->power_off(genpd
);
387 elapsed_ns
= ktime_to_ns(ktime_sub(ktime_get(), time_start
));
388 if (elapsed_ns
<= genpd
->states
[state_idx
].power_off_latency_ns
)
391 genpd
->states
[state_idx
].power_off_latency_ns
= elapsed_ns
;
392 genpd
->max_off_time_changed
= true;
393 pr_debug("%s: Power-%s latency exceeded, new value %lld ns\n",
394 genpd
->name
, "off", elapsed_ns
);
400 * genpd_queue_power_off_work - Queue up the execution of genpd_power_off().
401 * @genpd: PM domain to power off.
403 * Queue up the execution of genpd_power_off() unless it's already been done
406 static void genpd_queue_power_off_work(struct generic_pm_domain
*genpd
)
408 queue_work(pm_wq
, &genpd
->power_off_work
);
412 * genpd_power_off - Remove power from a given PM domain.
413 * @genpd: PM domain to power down.
414 * @one_dev_on: If invoked from genpd's ->runtime_suspend|resume() callback, the
415 * RPM status of the releated device is in an intermediate state, not yet turned
416 * into RPM_SUSPENDED. This means genpd_power_off() must allow one device to not
417 * be RPM_SUSPENDED, while it tries to power off the PM domain.
419 * If all of the @genpd's devices have been suspended and all of its subdomains
420 * have been powered down, remove power from @genpd.
422 static int genpd_power_off(struct generic_pm_domain
*genpd
, bool one_dev_on
,
425 struct pm_domain_data
*pdd
;
426 struct gpd_link
*link
;
427 unsigned int not_suspended
= 0;
430 * Do not try to power off the domain in the following situations:
431 * (1) The domain is already in the "power off" state.
432 * (2) System suspend is in progress.
434 if (!genpd_status_on(genpd
) || genpd
->prepared_count
> 0)
438 * Abort power off for the PM domain in the following situations:
439 * (1) The domain is configured as always on.
440 * (2) When the domain has a subdomain being powered on.
442 if (genpd_is_always_on(genpd
) || atomic_read(&genpd
->sd_count
) > 0)
445 list_for_each_entry(pdd
, &genpd
->dev_list
, list_node
) {
446 enum pm_qos_flags_status stat
;
448 stat
= dev_pm_qos_flags(pdd
->dev
, PM_QOS_FLAG_NO_POWER_OFF
);
449 if (stat
> PM_QOS_FLAGS_NONE
)
453 * Do not allow PM domain to be powered off, when an IRQ safe
454 * device is part of a non-IRQ safe domain.
456 if (!pm_runtime_suspended(pdd
->dev
) ||
457 irq_safe_dev_in_no_sleep_domain(pdd
->dev
, genpd
))
461 if (not_suspended
> 1 || (not_suspended
== 1 && !one_dev_on
))
464 if (genpd
->gov
&& genpd
->gov
->power_down_ok
) {
465 if (!genpd
->gov
->power_down_ok(&genpd
->domain
))
469 if (genpd
->power_off
) {
472 if (atomic_read(&genpd
->sd_count
) > 0)
476 * If sd_count > 0 at this point, one of the subdomains hasn't
477 * managed to call genpd_power_on() for the master yet after
478 * incrementing it. In that case genpd_power_on() will wait
479 * for us to drop the lock, so we can call .power_off() and let
480 * the genpd_power_on() restore power for us (this shouldn't
481 * happen very often).
483 ret
= _genpd_power_off(genpd
, true);
488 genpd
->status
= GPD_STATE_POWER_OFF
;
489 genpd_update_accounting(genpd
);
491 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
492 genpd_sd_counter_dec(link
->master
);
493 genpd_lock_nested(link
->master
, depth
+ 1);
494 genpd_power_off(link
->master
, false, depth
+ 1);
495 genpd_unlock(link
->master
);
502 * genpd_power_on - Restore power to a given PM domain and its masters.
503 * @genpd: PM domain to power up.
504 * @depth: nesting count for lockdep.
506 * Restore power to @genpd and all of its masters so that it is possible to
507 * resume a device belonging to it.
509 static int genpd_power_on(struct generic_pm_domain
*genpd
, unsigned int depth
)
511 struct gpd_link
*link
;
514 if (genpd_status_on(genpd
))
518 * The list is guaranteed not to change while the loop below is being
519 * executed, unless one of the masters' .power_on() callbacks fiddles
522 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
523 struct generic_pm_domain
*master
= link
->master
;
525 genpd_sd_counter_inc(master
);
527 genpd_lock_nested(master
, depth
+ 1);
528 ret
= genpd_power_on(master
, depth
+ 1);
529 genpd_unlock(master
);
532 genpd_sd_counter_dec(master
);
537 ret
= _genpd_power_on(genpd
, true);
541 genpd
->status
= GPD_STATE_ACTIVE
;
542 genpd_update_accounting(genpd
);
547 list_for_each_entry_continue_reverse(link
,
550 genpd_sd_counter_dec(link
->master
);
551 genpd_lock_nested(link
->master
, depth
+ 1);
552 genpd_power_off(link
->master
, false, depth
+ 1);
553 genpd_unlock(link
->master
);
559 static int genpd_dev_pm_qos_notifier(struct notifier_block
*nb
,
560 unsigned long val
, void *ptr
)
562 struct generic_pm_domain_data
*gpd_data
;
565 gpd_data
= container_of(nb
, struct generic_pm_domain_data
, nb
);
566 dev
= gpd_data
->base
.dev
;
569 struct generic_pm_domain
*genpd
;
570 struct pm_domain_data
*pdd
;
572 spin_lock_irq(&dev
->power
.lock
);
574 pdd
= dev
->power
.subsys_data
?
575 dev
->power
.subsys_data
->domain_data
: NULL
;
577 to_gpd_data(pdd
)->td
.constraint_changed
= true;
578 genpd
= dev_to_genpd(dev
);
580 genpd
= ERR_PTR(-ENODATA
);
583 spin_unlock_irq(&dev
->power
.lock
);
585 if (!IS_ERR(genpd
)) {
587 genpd
->max_off_time_changed
= true;
592 if (!dev
|| dev
->power
.ignore_children
)
600 * genpd_power_off_work_fn - Power off PM domain whose subdomain count is 0.
601 * @work: Work structure used for scheduling the execution of this function.
603 static void genpd_power_off_work_fn(struct work_struct
*work
)
605 struct generic_pm_domain
*genpd
;
607 genpd
= container_of(work
, struct generic_pm_domain
, power_off_work
);
610 genpd_power_off(genpd
, false, 0);
615 * __genpd_runtime_suspend - walk the hierarchy of ->runtime_suspend() callbacks
616 * @dev: Device to handle.
618 static int __genpd_runtime_suspend(struct device
*dev
)
620 int (*cb
)(struct device
*__dev
);
622 if (dev
->type
&& dev
->type
->pm
)
623 cb
= dev
->type
->pm
->runtime_suspend
;
624 else if (dev
->class && dev
->class->pm
)
625 cb
= dev
->class->pm
->runtime_suspend
;
626 else if (dev
->bus
&& dev
->bus
->pm
)
627 cb
= dev
->bus
->pm
->runtime_suspend
;
631 if (!cb
&& dev
->driver
&& dev
->driver
->pm
)
632 cb
= dev
->driver
->pm
->runtime_suspend
;
634 return cb
? cb(dev
) : 0;
638 * __genpd_runtime_resume - walk the hierarchy of ->runtime_resume() callbacks
639 * @dev: Device to handle.
641 static int __genpd_runtime_resume(struct device
*dev
)
643 int (*cb
)(struct device
*__dev
);
645 if (dev
->type
&& dev
->type
->pm
)
646 cb
= dev
->type
->pm
->runtime_resume
;
647 else if (dev
->class && dev
->class->pm
)
648 cb
= dev
->class->pm
->runtime_resume
;
649 else if (dev
->bus
&& dev
->bus
->pm
)
650 cb
= dev
->bus
->pm
->runtime_resume
;
654 if (!cb
&& dev
->driver
&& dev
->driver
->pm
)
655 cb
= dev
->driver
->pm
->runtime_resume
;
657 return cb
? cb(dev
) : 0;
661 * genpd_runtime_suspend - Suspend a device belonging to I/O PM domain.
662 * @dev: Device to suspend.
664 * Carry out a runtime suspend of a device under the assumption that its
665 * pm_domain field points to the domain member of an object of type
666 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
668 static int genpd_runtime_suspend(struct device
*dev
)
670 struct generic_pm_domain
*genpd
;
671 bool (*suspend_ok
)(struct device
*__dev
);
672 struct gpd_timing_data
*td
= &dev_gpd_data(dev
)->td
;
673 bool runtime_pm
= pm_runtime_enabled(dev
);
678 dev_dbg(dev
, "%s()\n", __func__
);
680 genpd
= dev_to_genpd(dev
);
685 * A runtime PM centric subsystem/driver may re-use the runtime PM
686 * callbacks for other purposes than runtime PM. In those scenarios
687 * runtime PM is disabled. Under these circumstances, we shall skip
688 * validating/measuring the PM QoS latency.
690 suspend_ok
= genpd
->gov
? genpd
->gov
->suspend_ok
: NULL
;
691 if (runtime_pm
&& suspend_ok
&& !suspend_ok(dev
))
694 /* Measure suspend latency. */
697 time_start
= ktime_get();
699 ret
= __genpd_runtime_suspend(dev
);
703 ret
= genpd_stop_dev(genpd
, dev
);
705 __genpd_runtime_resume(dev
);
709 /* Update suspend latency value if the measured time exceeds it. */
711 elapsed_ns
= ktime_to_ns(ktime_sub(ktime_get(), time_start
));
712 if (elapsed_ns
> td
->suspend_latency_ns
) {
713 td
->suspend_latency_ns
= elapsed_ns
;
714 dev_dbg(dev
, "suspend latency exceeded, %lld ns\n",
716 genpd
->max_off_time_changed
= true;
717 td
->constraint_changed
= true;
722 * If power.irq_safe is set, this routine may be run with
723 * IRQs disabled, so suspend only if the PM domain also is irq_safe.
725 if (irq_safe_dev_in_no_sleep_domain(dev
, genpd
))
729 genpd_power_off(genpd
, true, 0);
736 * genpd_runtime_resume - Resume a device belonging to I/O PM domain.
737 * @dev: Device to resume.
739 * Carry out a runtime resume of a device under the assumption that its
740 * pm_domain field points to the domain member of an object of type
741 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
743 static int genpd_runtime_resume(struct device
*dev
)
745 struct generic_pm_domain
*genpd
;
746 struct gpd_timing_data
*td
= &dev_gpd_data(dev
)->td
;
747 bool runtime_pm
= pm_runtime_enabled(dev
);
753 dev_dbg(dev
, "%s()\n", __func__
);
755 genpd
= dev_to_genpd(dev
);
760 * As we don't power off a non IRQ safe domain, which holds
761 * an IRQ safe device, we don't need to restore power to it.
763 if (irq_safe_dev_in_no_sleep_domain(dev
, genpd
)) {
769 ret
= genpd_power_on(genpd
, 0);
776 /* Measure resume latency. */
778 if (timed
&& runtime_pm
)
779 time_start
= ktime_get();
781 ret
= genpd_start_dev(genpd
, dev
);
785 ret
= __genpd_runtime_resume(dev
);
789 /* Update resume latency value if the measured time exceeds it. */
790 if (timed
&& runtime_pm
) {
791 elapsed_ns
= ktime_to_ns(ktime_sub(ktime_get(), time_start
));
792 if (elapsed_ns
> td
->resume_latency_ns
) {
793 td
->resume_latency_ns
= elapsed_ns
;
794 dev_dbg(dev
, "resume latency exceeded, %lld ns\n",
796 genpd
->max_off_time_changed
= true;
797 td
->constraint_changed
= true;
804 genpd_stop_dev(genpd
, dev
);
806 if (!pm_runtime_is_irq_safe(dev
) ||
807 (pm_runtime_is_irq_safe(dev
) && genpd_is_irq_safe(genpd
))) {
809 genpd_power_off(genpd
, true, 0);
816 static bool pd_ignore_unused
;
817 static int __init
pd_ignore_unused_setup(char *__unused
)
819 pd_ignore_unused
= true;
822 __setup("pd_ignore_unused", pd_ignore_unused_setup
);
825 * genpd_power_off_unused - Power off all PM domains with no devices in use.
827 static int __init
genpd_power_off_unused(void)
829 struct generic_pm_domain
*genpd
;
831 if (pd_ignore_unused
) {
832 pr_warn("genpd: Not disabling unused power domains\n");
836 mutex_lock(&gpd_list_lock
);
838 list_for_each_entry(genpd
, &gpd_list
, gpd_list_node
)
839 genpd_queue_power_off_work(genpd
);
841 mutex_unlock(&gpd_list_lock
);
845 late_initcall(genpd_power_off_unused
);
847 #if defined(CONFIG_PM_SLEEP) || defined(CONFIG_PM_GENERIC_DOMAINS_OF)
849 static bool genpd_present(const struct generic_pm_domain
*genpd
)
851 const struct generic_pm_domain
*gpd
;
853 if (IS_ERR_OR_NULL(genpd
))
856 list_for_each_entry(gpd
, &gpd_list
, gpd_list_node
)
865 #ifdef CONFIG_PM_SLEEP
868 * genpd_sync_power_off - Synchronously power off a PM domain and its masters.
869 * @genpd: PM domain to power off, if possible.
870 * @use_lock: use the lock.
871 * @depth: nesting count for lockdep.
873 * Check if the given PM domain can be powered off (during system suspend or
874 * hibernation) and do that if so. Also, in that case propagate to its masters.
876 * This function is only called in "noirq" and "syscore" stages of system power
877 * transitions. The "noirq" callbacks may be executed asynchronously, thus in
878 * these cases the lock must be held.
880 static void genpd_sync_power_off(struct generic_pm_domain
*genpd
, bool use_lock
,
883 struct gpd_link
*link
;
885 if (!genpd_status_on(genpd
) || genpd_is_always_on(genpd
))
888 if (genpd
->suspended_count
!= genpd
->device_count
889 || atomic_read(&genpd
->sd_count
) > 0)
892 /* Choose the deepest state when suspending */
893 genpd
->state_idx
= genpd
->state_count
- 1;
894 if (_genpd_power_off(genpd
, false))
897 genpd
->status
= GPD_STATE_POWER_OFF
;
899 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
900 genpd_sd_counter_dec(link
->master
);
903 genpd_lock_nested(link
->master
, depth
+ 1);
905 genpd_sync_power_off(link
->master
, use_lock
, depth
+ 1);
908 genpd_unlock(link
->master
);
913 * genpd_sync_power_on - Synchronously power on a PM domain and its masters.
914 * @genpd: PM domain to power on.
915 * @use_lock: use the lock.
916 * @depth: nesting count for lockdep.
918 * This function is only called in "noirq" and "syscore" stages of system power
919 * transitions. The "noirq" callbacks may be executed asynchronously, thus in
920 * these cases the lock must be held.
922 static void genpd_sync_power_on(struct generic_pm_domain
*genpd
, bool use_lock
,
925 struct gpd_link
*link
;
927 if (genpd_status_on(genpd
))
930 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
931 genpd_sd_counter_inc(link
->master
);
934 genpd_lock_nested(link
->master
, depth
+ 1);
936 genpd_sync_power_on(link
->master
, use_lock
, depth
+ 1);
939 genpd_unlock(link
->master
);
942 _genpd_power_on(genpd
, false);
944 genpd
->status
= GPD_STATE_ACTIVE
;
948 * resume_needed - Check whether to resume a device before system suspend.
949 * @dev: Device to check.
950 * @genpd: PM domain the device belongs to.
952 * There are two cases in which a device that can wake up the system from sleep
953 * states should be resumed by genpd_prepare(): (1) if the device is enabled
954 * to wake up the system and it has to remain active for this purpose while the
955 * system is in the sleep state and (2) if the device is not enabled to wake up
956 * the system from sleep states and it generally doesn't generate wakeup signals
957 * by itself (those signals are generated on its behalf by other parts of the
958 * system). In the latter case it may be necessary to reconfigure the device's
959 * wakeup settings during system suspend, because it may have been set up to
960 * signal remote wakeup from the system's working state as needed by runtime PM.
961 * Return 'true' in either of the above cases.
963 static bool resume_needed(struct device
*dev
,
964 const struct generic_pm_domain
*genpd
)
968 if (!device_can_wakeup(dev
))
971 active_wakeup
= genpd_is_active_wakeup(genpd
);
972 return device_may_wakeup(dev
) ? active_wakeup
: !active_wakeup
;
976 * genpd_prepare - Start power transition of a device in a PM domain.
977 * @dev: Device to start the transition of.
979 * Start a power transition of a device (during a system-wide power transition)
980 * under the assumption that its pm_domain field points to the domain member of
981 * an object of type struct generic_pm_domain representing a PM domain
982 * consisting of I/O devices.
984 static int genpd_prepare(struct device
*dev
)
986 struct generic_pm_domain
*genpd
;
989 dev_dbg(dev
, "%s()\n", __func__
);
991 genpd
= dev_to_genpd(dev
);
996 * If a wakeup request is pending for the device, it should be woken up
997 * at this point and a system wakeup event should be reported if it's
998 * set up to wake up the system from sleep states.
1000 if (resume_needed(dev
, genpd
))
1001 pm_runtime_resume(dev
);
1005 if (genpd
->prepared_count
++ == 0)
1006 genpd
->suspended_count
= 0;
1008 genpd_unlock(genpd
);
1010 ret
= pm_generic_prepare(dev
);
1014 genpd
->prepared_count
--;
1016 genpd_unlock(genpd
);
1019 /* Never return 1, as genpd don't cope with the direct_complete path. */
1020 return ret
>= 0 ? 0 : ret
;
1024 * genpd_finish_suspend - Completion of suspend or hibernation of device in an
1026 * @dev: Device to suspend.
1027 * @poweroff: Specifies if this is a poweroff_noirq or suspend_noirq callback.
1029 * Stop the device and remove power from the domain if all devices in it have
1032 static int genpd_finish_suspend(struct device
*dev
, bool poweroff
)
1034 struct generic_pm_domain
*genpd
;
1037 genpd
= dev_to_genpd(dev
);
1042 ret
= pm_generic_poweroff_noirq(dev
);
1044 ret
= pm_generic_suspend_noirq(dev
);
1048 if (dev
->power
.wakeup_path
&& genpd_is_active_wakeup(genpd
))
1051 if (genpd
->dev_ops
.stop
&& genpd
->dev_ops
.start
&&
1052 !pm_runtime_status_suspended(dev
)) {
1053 ret
= genpd_stop_dev(genpd
, dev
);
1056 pm_generic_restore_noirq(dev
);
1058 pm_generic_resume_noirq(dev
);
1064 genpd
->suspended_count
++;
1065 genpd_sync_power_off(genpd
, true, 0);
1066 genpd_unlock(genpd
);
1072 * genpd_suspend_noirq - Completion of suspend of device in an I/O PM domain.
1073 * @dev: Device to suspend.
1075 * Stop the device and remove power from the domain if all devices in it have
1078 static int genpd_suspend_noirq(struct device
*dev
)
1080 dev_dbg(dev
, "%s()\n", __func__
);
1082 return genpd_finish_suspend(dev
, false);
1086 * genpd_resume_noirq - Start of resume of device in an I/O PM domain.
1087 * @dev: Device to resume.
1089 * Restore power to the device's PM domain, if necessary, and start the device.
1091 static int genpd_resume_noirq(struct device
*dev
)
1093 struct generic_pm_domain
*genpd
;
1096 dev_dbg(dev
, "%s()\n", __func__
);
1098 genpd
= dev_to_genpd(dev
);
1102 if (dev
->power
.wakeup_path
&& genpd_is_active_wakeup(genpd
))
1103 return pm_generic_resume_noirq(dev
);
1106 genpd_sync_power_on(genpd
, true, 0);
1107 genpd
->suspended_count
--;
1108 genpd_unlock(genpd
);
1110 if (genpd
->dev_ops
.stop
&& genpd
->dev_ops
.start
&&
1111 !pm_runtime_status_suspended(dev
)) {
1112 ret
= genpd_start_dev(genpd
, dev
);
1117 return pm_generic_resume_noirq(dev
);
1121 * genpd_freeze_noirq - Completion of freezing a device in an I/O PM domain.
1122 * @dev: Device to freeze.
1124 * Carry out a late freeze of a device under the assumption that its
1125 * pm_domain field points to the domain member of an object of type
1126 * struct generic_pm_domain representing a power domain consisting of I/O
1129 static int genpd_freeze_noirq(struct device
*dev
)
1131 const struct generic_pm_domain
*genpd
;
1134 dev_dbg(dev
, "%s()\n", __func__
);
1136 genpd
= dev_to_genpd(dev
);
1140 ret
= pm_generic_freeze_noirq(dev
);
1144 if (genpd
->dev_ops
.stop
&& genpd
->dev_ops
.start
&&
1145 !pm_runtime_status_suspended(dev
))
1146 ret
= genpd_stop_dev(genpd
, dev
);
1152 * genpd_thaw_noirq - Early thaw of device in an I/O PM domain.
1153 * @dev: Device to thaw.
1155 * Start the device, unless power has been removed from the domain already
1156 * before the system transition.
1158 static int genpd_thaw_noirq(struct device
*dev
)
1160 const struct generic_pm_domain
*genpd
;
1163 dev_dbg(dev
, "%s()\n", __func__
);
1165 genpd
= dev_to_genpd(dev
);
1169 if (genpd
->dev_ops
.stop
&& genpd
->dev_ops
.start
&&
1170 !pm_runtime_status_suspended(dev
)) {
1171 ret
= genpd_start_dev(genpd
, dev
);
1176 return pm_generic_thaw_noirq(dev
);
1180 * genpd_poweroff_noirq - Completion of hibernation of device in an
1182 * @dev: Device to poweroff.
1184 * Stop the device and remove power from the domain if all devices in it have
1187 static int genpd_poweroff_noirq(struct device
*dev
)
1189 dev_dbg(dev
, "%s()\n", __func__
);
1191 return genpd_finish_suspend(dev
, true);
1195 * genpd_restore_noirq - Start of restore of device in an I/O PM domain.
1196 * @dev: Device to resume.
1198 * Make sure the domain will be in the same power state as before the
1199 * hibernation the system is resuming from and start the device if necessary.
1201 static int genpd_restore_noirq(struct device
*dev
)
1203 struct generic_pm_domain
*genpd
;
1206 dev_dbg(dev
, "%s()\n", __func__
);
1208 genpd
= dev_to_genpd(dev
);
1213 * At this point suspended_count == 0 means we are being run for the
1214 * first time for the given domain in the present cycle.
1217 if (genpd
->suspended_count
++ == 0)
1219 * The boot kernel might put the domain into arbitrary state,
1220 * so make it appear as powered off to genpd_sync_power_on(),
1221 * so that it tries to power it on in case it was really off.
1223 genpd
->status
= GPD_STATE_POWER_OFF
;
1225 genpd_sync_power_on(genpd
, true, 0);
1226 genpd_unlock(genpd
);
1228 if (genpd
->dev_ops
.stop
&& genpd
->dev_ops
.start
&&
1229 !pm_runtime_status_suspended(dev
)) {
1230 ret
= genpd_start_dev(genpd
, dev
);
1235 return pm_generic_restore_noirq(dev
);
1239 * genpd_complete - Complete power transition of a device in a power domain.
1240 * @dev: Device to complete the transition of.
1242 * Complete a power transition of a device (during a system-wide power
1243 * transition) under the assumption that its pm_domain field points to the
1244 * domain member of an object of type struct generic_pm_domain representing
1245 * a power domain consisting of I/O devices.
1247 static void genpd_complete(struct device
*dev
)
1249 struct generic_pm_domain
*genpd
;
1251 dev_dbg(dev
, "%s()\n", __func__
);
1253 genpd
= dev_to_genpd(dev
);
1257 pm_generic_complete(dev
);
1261 genpd
->prepared_count
--;
1262 if (!genpd
->prepared_count
)
1263 genpd_queue_power_off_work(genpd
);
1265 genpd_unlock(genpd
);
1269 * genpd_syscore_switch - Switch power during system core suspend or resume.
1270 * @dev: Device that normally is marked as "always on" to switch power for.
1272 * This routine may only be called during the system core (syscore) suspend or
1273 * resume phase for devices whose "always on" flags are set.
1275 static void genpd_syscore_switch(struct device
*dev
, bool suspend
)
1277 struct generic_pm_domain
*genpd
;
1279 genpd
= dev_to_genpd(dev
);
1280 if (!genpd_present(genpd
))
1284 genpd
->suspended_count
++;
1285 genpd_sync_power_off(genpd
, false, 0);
1287 genpd_sync_power_on(genpd
, false, 0);
1288 genpd
->suspended_count
--;
1292 void pm_genpd_syscore_poweroff(struct device
*dev
)
1294 genpd_syscore_switch(dev
, true);
1296 EXPORT_SYMBOL_GPL(pm_genpd_syscore_poweroff
);
1298 void pm_genpd_syscore_poweron(struct device
*dev
)
1300 genpd_syscore_switch(dev
, false);
1302 EXPORT_SYMBOL_GPL(pm_genpd_syscore_poweron
);
1304 #else /* !CONFIG_PM_SLEEP */
1306 #define genpd_prepare NULL
1307 #define genpd_suspend_noirq NULL
1308 #define genpd_resume_noirq NULL
1309 #define genpd_freeze_noirq NULL
1310 #define genpd_thaw_noirq NULL
1311 #define genpd_poweroff_noirq NULL
1312 #define genpd_restore_noirq NULL
1313 #define genpd_complete NULL
1315 #endif /* CONFIG_PM_SLEEP */
1317 static struct generic_pm_domain_data
*genpd_alloc_dev_data(struct device
*dev
,
1318 struct generic_pm_domain
*genpd
,
1319 struct gpd_timing_data
*td
)
1321 struct generic_pm_domain_data
*gpd_data
;
1324 ret
= dev_pm_get_subsys_data(dev
);
1326 return ERR_PTR(ret
);
1328 gpd_data
= kzalloc(sizeof(*gpd_data
), GFP_KERNEL
);
1337 gpd_data
->base
.dev
= dev
;
1338 gpd_data
->td
.constraint_changed
= true;
1339 gpd_data
->td
.effective_constraint_ns
= PM_QOS_RESUME_LATENCY_NO_CONSTRAINT_NS
;
1340 gpd_data
->nb
.notifier_call
= genpd_dev_pm_qos_notifier
;
1342 spin_lock_irq(&dev
->power
.lock
);
1344 if (dev
->power
.subsys_data
->domain_data
) {
1349 dev
->power
.subsys_data
->domain_data
= &gpd_data
->base
;
1351 spin_unlock_irq(&dev
->power
.lock
);
1356 spin_unlock_irq(&dev
->power
.lock
);
1359 dev_pm_put_subsys_data(dev
);
1360 return ERR_PTR(ret
);
1363 static void genpd_free_dev_data(struct device
*dev
,
1364 struct generic_pm_domain_data
*gpd_data
)
1366 spin_lock_irq(&dev
->power
.lock
);
1368 dev
->power
.subsys_data
->domain_data
= NULL
;
1370 spin_unlock_irq(&dev
->power
.lock
);
1373 dev_pm_put_subsys_data(dev
);
1376 static int genpd_add_device(struct generic_pm_domain
*genpd
, struct device
*dev
,
1377 struct gpd_timing_data
*td
)
1379 struct generic_pm_domain_data
*gpd_data
;
1382 dev_dbg(dev
, "%s()\n", __func__
);
1384 if (IS_ERR_OR_NULL(genpd
) || IS_ERR_OR_NULL(dev
))
1387 gpd_data
= genpd_alloc_dev_data(dev
, genpd
, td
);
1388 if (IS_ERR(gpd_data
))
1389 return PTR_ERR(gpd_data
);
1393 if (genpd
->prepared_count
> 0) {
1398 ret
= genpd
->attach_dev
? genpd
->attach_dev(genpd
, dev
) : 0;
1402 dev_pm_domain_set(dev
, &genpd
->domain
);
1404 genpd
->device_count
++;
1405 genpd
->max_off_time_changed
= true;
1407 list_add_tail(&gpd_data
->base
.list_node
, &genpd
->dev_list
);
1410 genpd_unlock(genpd
);
1413 genpd_free_dev_data(dev
, gpd_data
);
1415 dev_pm_qos_add_notifier(dev
, &gpd_data
->nb
);
1421 * __pm_genpd_add_device - Add a device to an I/O PM domain.
1422 * @genpd: PM domain to add the device to.
1423 * @dev: Device to be added.
1424 * @td: Set of PM QoS timing parameters to attach to the device.
1426 int __pm_genpd_add_device(struct generic_pm_domain
*genpd
, struct device
*dev
,
1427 struct gpd_timing_data
*td
)
1431 mutex_lock(&gpd_list_lock
);
1432 ret
= genpd_add_device(genpd
, dev
, td
);
1433 mutex_unlock(&gpd_list_lock
);
1437 EXPORT_SYMBOL_GPL(__pm_genpd_add_device
);
1439 static int genpd_remove_device(struct generic_pm_domain
*genpd
,
1442 struct generic_pm_domain_data
*gpd_data
;
1443 struct pm_domain_data
*pdd
;
1446 dev_dbg(dev
, "%s()\n", __func__
);
1448 pdd
= dev
->power
.subsys_data
->domain_data
;
1449 gpd_data
= to_gpd_data(pdd
);
1450 dev_pm_qos_remove_notifier(dev
, &gpd_data
->nb
);
1454 if (genpd
->prepared_count
> 0) {
1459 genpd
->device_count
--;
1460 genpd
->max_off_time_changed
= true;
1462 if (genpd
->detach_dev
)
1463 genpd
->detach_dev(genpd
, dev
);
1465 dev_pm_domain_set(dev
, NULL
);
1467 list_del_init(&pdd
->list_node
);
1469 genpd_unlock(genpd
);
1471 genpd_free_dev_data(dev
, gpd_data
);
1476 genpd_unlock(genpd
);
1477 dev_pm_qos_add_notifier(dev
, &gpd_data
->nb
);
1483 * pm_genpd_remove_device - Remove a device from an I/O PM domain.
1484 * @genpd: PM domain to remove the device from.
1485 * @dev: Device to be removed.
1487 int pm_genpd_remove_device(struct generic_pm_domain
*genpd
,
1490 if (!genpd
|| genpd
!= genpd_lookup_dev(dev
))
1493 return genpd_remove_device(genpd
, dev
);
1495 EXPORT_SYMBOL_GPL(pm_genpd_remove_device
);
1497 static int genpd_add_subdomain(struct generic_pm_domain
*genpd
,
1498 struct generic_pm_domain
*subdomain
)
1500 struct gpd_link
*link
, *itr
;
1503 if (IS_ERR_OR_NULL(genpd
) || IS_ERR_OR_NULL(subdomain
)
1504 || genpd
== subdomain
)
1508 * If the domain can be powered on/off in an IRQ safe
1509 * context, ensure that the subdomain can also be
1510 * powered on/off in that context.
1512 if (!genpd_is_irq_safe(genpd
) && genpd_is_irq_safe(subdomain
)) {
1513 WARN(1, "Parent %s of subdomain %s must be IRQ safe\n",
1514 genpd
->name
, subdomain
->name
);
1518 link
= kzalloc(sizeof(*link
), GFP_KERNEL
);
1522 genpd_lock(subdomain
);
1523 genpd_lock_nested(genpd
, SINGLE_DEPTH_NESTING
);
1525 if (!genpd_status_on(genpd
) && genpd_status_on(subdomain
)) {
1530 list_for_each_entry(itr
, &genpd
->master_links
, master_node
) {
1531 if (itr
->slave
== subdomain
&& itr
->master
== genpd
) {
1537 link
->master
= genpd
;
1538 list_add_tail(&link
->master_node
, &genpd
->master_links
);
1539 link
->slave
= subdomain
;
1540 list_add_tail(&link
->slave_node
, &subdomain
->slave_links
);
1541 if (genpd_status_on(subdomain
))
1542 genpd_sd_counter_inc(genpd
);
1545 genpd_unlock(genpd
);
1546 genpd_unlock(subdomain
);
1553 * pm_genpd_add_subdomain - Add a subdomain to an I/O PM domain.
1554 * @genpd: Master PM domain to add the subdomain to.
1555 * @subdomain: Subdomain to be added.
1557 int pm_genpd_add_subdomain(struct generic_pm_domain
*genpd
,
1558 struct generic_pm_domain
*subdomain
)
1562 mutex_lock(&gpd_list_lock
);
1563 ret
= genpd_add_subdomain(genpd
, subdomain
);
1564 mutex_unlock(&gpd_list_lock
);
1568 EXPORT_SYMBOL_GPL(pm_genpd_add_subdomain
);
1571 * pm_genpd_remove_subdomain - Remove a subdomain from an I/O PM domain.
1572 * @genpd: Master PM domain to remove the subdomain from.
1573 * @subdomain: Subdomain to be removed.
1575 int pm_genpd_remove_subdomain(struct generic_pm_domain
*genpd
,
1576 struct generic_pm_domain
*subdomain
)
1578 struct gpd_link
*l
, *link
;
1581 if (IS_ERR_OR_NULL(genpd
) || IS_ERR_OR_NULL(subdomain
))
1584 genpd_lock(subdomain
);
1585 genpd_lock_nested(genpd
, SINGLE_DEPTH_NESTING
);
1587 if (!list_empty(&subdomain
->master_links
) || subdomain
->device_count
) {
1588 pr_warn("%s: unable to remove subdomain %s\n", genpd
->name
,
1594 list_for_each_entry_safe(link
, l
, &genpd
->master_links
, master_node
) {
1595 if (link
->slave
!= subdomain
)
1598 list_del(&link
->master_node
);
1599 list_del(&link
->slave_node
);
1601 if (genpd_status_on(subdomain
))
1602 genpd_sd_counter_dec(genpd
);
1609 genpd_unlock(genpd
);
1610 genpd_unlock(subdomain
);
1614 EXPORT_SYMBOL_GPL(pm_genpd_remove_subdomain
);
1616 static int genpd_set_default_power_state(struct generic_pm_domain
*genpd
)
1618 struct genpd_power_state
*state
;
1620 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
1624 genpd
->states
= state
;
1625 genpd
->state_count
= 1;
1626 genpd
->free
= state
;
1631 static void genpd_lock_init(struct generic_pm_domain
*genpd
)
1633 if (genpd
->flags
& GENPD_FLAG_IRQ_SAFE
) {
1634 spin_lock_init(&genpd
->slock
);
1635 genpd
->lock_ops
= &genpd_spin_ops
;
1637 mutex_init(&genpd
->mlock
);
1638 genpd
->lock_ops
= &genpd_mtx_ops
;
1643 * pm_genpd_init - Initialize a generic I/O PM domain object.
1644 * @genpd: PM domain object to initialize.
1645 * @gov: PM domain governor to associate with the domain (may be NULL).
1646 * @is_off: Initial value of the domain's power_is_off field.
1648 * Returns 0 on successful initialization, else a negative error code.
1650 int pm_genpd_init(struct generic_pm_domain
*genpd
,
1651 struct dev_power_governor
*gov
, bool is_off
)
1655 if (IS_ERR_OR_NULL(genpd
))
1658 INIT_LIST_HEAD(&genpd
->master_links
);
1659 INIT_LIST_HEAD(&genpd
->slave_links
);
1660 INIT_LIST_HEAD(&genpd
->dev_list
);
1661 genpd_lock_init(genpd
);
1663 INIT_WORK(&genpd
->power_off_work
, genpd_power_off_work_fn
);
1664 atomic_set(&genpd
->sd_count
, 0);
1665 genpd
->status
= is_off
? GPD_STATE_POWER_OFF
: GPD_STATE_ACTIVE
;
1666 genpd
->device_count
= 0;
1667 genpd
->max_off_time_ns
= -1;
1668 genpd
->max_off_time_changed
= true;
1669 genpd
->provider
= NULL
;
1670 genpd
->has_provider
= false;
1671 genpd
->accounting_time
= ktime_get();
1672 genpd
->domain
.ops
.runtime_suspend
= genpd_runtime_suspend
;
1673 genpd
->domain
.ops
.runtime_resume
= genpd_runtime_resume
;
1674 genpd
->domain
.ops
.prepare
= genpd_prepare
;
1675 genpd
->domain
.ops
.suspend_noirq
= genpd_suspend_noirq
;
1676 genpd
->domain
.ops
.resume_noirq
= genpd_resume_noirq
;
1677 genpd
->domain
.ops
.freeze_noirq
= genpd_freeze_noirq
;
1678 genpd
->domain
.ops
.thaw_noirq
= genpd_thaw_noirq
;
1679 genpd
->domain
.ops
.poweroff_noirq
= genpd_poweroff_noirq
;
1680 genpd
->domain
.ops
.restore_noirq
= genpd_restore_noirq
;
1681 genpd
->domain
.ops
.complete
= genpd_complete
;
1683 if (genpd
->flags
& GENPD_FLAG_PM_CLK
) {
1684 genpd
->dev_ops
.stop
= pm_clk_suspend
;
1685 genpd
->dev_ops
.start
= pm_clk_resume
;
1688 /* Always-on domains must be powered on at initialization. */
1689 if (genpd_is_always_on(genpd
) && !genpd_status_on(genpd
))
1692 /* Use only one "off" state if there were no states declared */
1693 if (genpd
->state_count
== 0) {
1694 ret
= genpd_set_default_power_state(genpd
);
1699 mutex_lock(&gpd_list_lock
);
1700 list_add(&genpd
->gpd_list_node
, &gpd_list
);
1701 mutex_unlock(&gpd_list_lock
);
1705 EXPORT_SYMBOL_GPL(pm_genpd_init
);
1707 static int genpd_remove(struct generic_pm_domain
*genpd
)
1709 struct gpd_link
*l
, *link
;
1711 if (IS_ERR_OR_NULL(genpd
))
1716 if (genpd
->has_provider
) {
1717 genpd_unlock(genpd
);
1718 pr_err("Provider present, unable to remove %s\n", genpd
->name
);
1722 if (!list_empty(&genpd
->master_links
) || genpd
->device_count
) {
1723 genpd_unlock(genpd
);
1724 pr_err("%s: unable to remove %s\n", __func__
, genpd
->name
);
1728 list_for_each_entry_safe(link
, l
, &genpd
->slave_links
, slave_node
) {
1729 list_del(&link
->master_node
);
1730 list_del(&link
->slave_node
);
1734 list_del(&genpd
->gpd_list_node
);
1735 genpd_unlock(genpd
);
1736 cancel_work_sync(&genpd
->power_off_work
);
1738 pr_debug("%s: removed %s\n", __func__
, genpd
->name
);
1744 * pm_genpd_remove - Remove a generic I/O PM domain
1745 * @genpd: Pointer to PM domain that is to be removed.
1747 * To remove the PM domain, this function:
1748 * - Removes the PM domain as a subdomain to any parent domains,
1750 * - Removes the PM domain from the list of registered PM domains.
1752 * The PM domain will only be removed, if the associated provider has
1753 * been removed, it is not a parent to any other PM domain and has no
1754 * devices associated with it.
1756 int pm_genpd_remove(struct generic_pm_domain
*genpd
)
1760 mutex_lock(&gpd_list_lock
);
1761 ret
= genpd_remove(genpd
);
1762 mutex_unlock(&gpd_list_lock
);
1766 EXPORT_SYMBOL_GPL(pm_genpd_remove
);
1768 #ifdef CONFIG_PM_GENERIC_DOMAINS_OF
1771 * Device Tree based PM domain providers.
1773 * The code below implements generic device tree based PM domain providers that
1774 * bind device tree nodes with generic PM domains registered in the system.
1776 * Any driver that registers generic PM domains and needs to support binding of
1777 * devices to these domains is supposed to register a PM domain provider, which
1778 * maps a PM domain specifier retrieved from the device tree to a PM domain.
1780 * Two simple mapping functions have been provided for convenience:
1781 * - genpd_xlate_simple() for 1:1 device tree node to PM domain mapping.
1782 * - genpd_xlate_onecell() for mapping of multiple PM domains per node by
1787 * struct of_genpd_provider - PM domain provider registration structure
1788 * @link: Entry in global list of PM domain providers
1789 * @node: Pointer to device tree node of PM domain provider
1790 * @xlate: Provider-specific xlate callback mapping a set of specifier cells
1792 * @data: context pointer to be passed into @xlate callback
1794 struct of_genpd_provider
{
1795 struct list_head link
;
1796 struct device_node
*node
;
1797 genpd_xlate_t xlate
;
1801 /* List of registered PM domain providers. */
1802 static LIST_HEAD(of_genpd_providers
);
1803 /* Mutex to protect the list above. */
1804 static DEFINE_MUTEX(of_genpd_mutex
);
1807 * genpd_xlate_simple() - Xlate function for direct node-domain mapping
1808 * @genpdspec: OF phandle args to map into a PM domain
1809 * @data: xlate function private data - pointer to struct generic_pm_domain
1811 * This is a generic xlate function that can be used to model PM domains that
1812 * have their own device tree nodes. The private data of xlate function needs
1813 * to be a valid pointer to struct generic_pm_domain.
1815 static struct generic_pm_domain
*genpd_xlate_simple(
1816 struct of_phandle_args
*genpdspec
,
1823 * genpd_xlate_onecell() - Xlate function using a single index.
1824 * @genpdspec: OF phandle args to map into a PM domain
1825 * @data: xlate function private data - pointer to struct genpd_onecell_data
1827 * This is a generic xlate function that can be used to model simple PM domain
1828 * controllers that have one device tree node and provide multiple PM domains.
1829 * A single cell is used as an index into an array of PM domains specified in
1830 * the genpd_onecell_data struct when registering the provider.
1832 static struct generic_pm_domain
*genpd_xlate_onecell(
1833 struct of_phandle_args
*genpdspec
,
1836 struct genpd_onecell_data
*genpd_data
= data
;
1837 unsigned int idx
= genpdspec
->args
[0];
1839 if (genpdspec
->args_count
!= 1)
1840 return ERR_PTR(-EINVAL
);
1842 if (idx
>= genpd_data
->num_domains
) {
1843 pr_err("%s: invalid domain index %u\n", __func__
, idx
);
1844 return ERR_PTR(-EINVAL
);
1847 if (!genpd_data
->domains
[idx
])
1848 return ERR_PTR(-ENOENT
);
1850 return genpd_data
->domains
[idx
];
1854 * genpd_add_provider() - Register a PM domain provider for a node
1855 * @np: Device node pointer associated with the PM domain provider.
1856 * @xlate: Callback for decoding PM domain from phandle arguments.
1857 * @data: Context pointer for @xlate callback.
1859 static int genpd_add_provider(struct device_node
*np
, genpd_xlate_t xlate
,
1862 struct of_genpd_provider
*cp
;
1864 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
1868 cp
->node
= of_node_get(np
);
1872 mutex_lock(&of_genpd_mutex
);
1873 list_add(&cp
->link
, &of_genpd_providers
);
1874 mutex_unlock(&of_genpd_mutex
);
1875 pr_debug("Added domain provider from %pOF\n", np
);
1881 * of_genpd_add_provider_simple() - Register a simple PM domain provider
1882 * @np: Device node pointer associated with the PM domain provider.
1883 * @genpd: Pointer to PM domain associated with the PM domain provider.
1885 int of_genpd_add_provider_simple(struct device_node
*np
,
1886 struct generic_pm_domain
*genpd
)
1893 mutex_lock(&gpd_list_lock
);
1895 if (genpd_present(genpd
)) {
1896 ret
= genpd_add_provider(np
, genpd_xlate_simple
, genpd
);
1898 genpd
->provider
= &np
->fwnode
;
1899 genpd
->has_provider
= true;
1903 mutex_unlock(&gpd_list_lock
);
1907 EXPORT_SYMBOL_GPL(of_genpd_add_provider_simple
);
1910 * of_genpd_add_provider_onecell() - Register a onecell PM domain provider
1911 * @np: Device node pointer associated with the PM domain provider.
1912 * @data: Pointer to the data associated with the PM domain provider.
1914 int of_genpd_add_provider_onecell(struct device_node
*np
,
1915 struct genpd_onecell_data
*data
)
1923 mutex_lock(&gpd_list_lock
);
1926 data
->xlate
= genpd_xlate_onecell
;
1928 for (i
= 0; i
< data
->num_domains
; i
++) {
1929 if (!data
->domains
[i
])
1931 if (!genpd_present(data
->domains
[i
]))
1934 data
->domains
[i
]->provider
= &np
->fwnode
;
1935 data
->domains
[i
]->has_provider
= true;
1938 ret
= genpd_add_provider(np
, data
->xlate
, data
);
1942 mutex_unlock(&gpd_list_lock
);
1948 if (!data
->domains
[i
])
1950 data
->domains
[i
]->provider
= NULL
;
1951 data
->domains
[i
]->has_provider
= false;
1954 mutex_unlock(&gpd_list_lock
);
1958 EXPORT_SYMBOL_GPL(of_genpd_add_provider_onecell
);
1961 * of_genpd_del_provider() - Remove a previously registered PM domain provider
1962 * @np: Device node pointer associated with the PM domain provider
1964 void of_genpd_del_provider(struct device_node
*np
)
1966 struct of_genpd_provider
*cp
, *tmp
;
1967 struct generic_pm_domain
*gpd
;
1969 mutex_lock(&gpd_list_lock
);
1970 mutex_lock(&of_genpd_mutex
);
1971 list_for_each_entry_safe(cp
, tmp
, &of_genpd_providers
, link
) {
1972 if (cp
->node
== np
) {
1974 * For each PM domain associated with the
1975 * provider, set the 'has_provider' to false
1976 * so that the PM domain can be safely removed.
1978 list_for_each_entry(gpd
, &gpd_list
, gpd_list_node
)
1979 if (gpd
->provider
== &np
->fwnode
)
1980 gpd
->has_provider
= false;
1982 list_del(&cp
->link
);
1983 of_node_put(cp
->node
);
1988 mutex_unlock(&of_genpd_mutex
);
1989 mutex_unlock(&gpd_list_lock
);
1991 EXPORT_SYMBOL_GPL(of_genpd_del_provider
);
1994 * genpd_get_from_provider() - Look-up PM domain
1995 * @genpdspec: OF phandle args to use for look-up
1997 * Looks for a PM domain provider under the node specified by @genpdspec and if
1998 * found, uses xlate function of the provider to map phandle args to a PM
2001 * Returns a valid pointer to struct generic_pm_domain on success or ERR_PTR()
2004 static struct generic_pm_domain
*genpd_get_from_provider(
2005 struct of_phandle_args
*genpdspec
)
2007 struct generic_pm_domain
*genpd
= ERR_PTR(-ENOENT
);
2008 struct of_genpd_provider
*provider
;
2011 return ERR_PTR(-EINVAL
);
2013 mutex_lock(&of_genpd_mutex
);
2015 /* Check if we have such a provider in our array */
2016 list_for_each_entry(provider
, &of_genpd_providers
, link
) {
2017 if (provider
->node
== genpdspec
->np
)
2018 genpd
= provider
->xlate(genpdspec
, provider
->data
);
2023 mutex_unlock(&of_genpd_mutex
);
2029 * of_genpd_add_device() - Add a device to an I/O PM domain
2030 * @genpdspec: OF phandle args to use for look-up PM domain
2031 * @dev: Device to be added.
2033 * Looks-up an I/O PM domain based upon phandle args provided and adds
2034 * the device to the PM domain. Returns a negative error code on failure.
2036 int of_genpd_add_device(struct of_phandle_args
*genpdspec
, struct device
*dev
)
2038 struct generic_pm_domain
*genpd
;
2041 mutex_lock(&gpd_list_lock
);
2043 genpd
= genpd_get_from_provider(genpdspec
);
2044 if (IS_ERR(genpd
)) {
2045 ret
= PTR_ERR(genpd
);
2049 ret
= genpd_add_device(genpd
, dev
, NULL
);
2052 mutex_unlock(&gpd_list_lock
);
2056 EXPORT_SYMBOL_GPL(of_genpd_add_device
);
2059 * of_genpd_add_subdomain - Add a subdomain to an I/O PM domain.
2060 * @parent_spec: OF phandle args to use for parent PM domain look-up
2061 * @subdomain_spec: OF phandle args to use for subdomain look-up
2063 * Looks-up a parent PM domain and subdomain based upon phandle args
2064 * provided and adds the subdomain to the parent PM domain. Returns a
2065 * negative error code on failure.
2067 int of_genpd_add_subdomain(struct of_phandle_args
*parent_spec
,
2068 struct of_phandle_args
*subdomain_spec
)
2070 struct generic_pm_domain
*parent
, *subdomain
;
2073 mutex_lock(&gpd_list_lock
);
2075 parent
= genpd_get_from_provider(parent_spec
);
2076 if (IS_ERR(parent
)) {
2077 ret
= PTR_ERR(parent
);
2081 subdomain
= genpd_get_from_provider(subdomain_spec
);
2082 if (IS_ERR(subdomain
)) {
2083 ret
= PTR_ERR(subdomain
);
2087 ret
= genpd_add_subdomain(parent
, subdomain
);
2090 mutex_unlock(&gpd_list_lock
);
2094 EXPORT_SYMBOL_GPL(of_genpd_add_subdomain
);
2097 * of_genpd_remove_last - Remove the last PM domain registered for a provider
2098 * @provider: Pointer to device structure associated with provider
2100 * Find the last PM domain that was added by a particular provider and
2101 * remove this PM domain from the list of PM domains. The provider is
2102 * identified by the 'provider' device structure that is passed. The PM
2103 * domain will only be removed, if the provider associated with domain
2106 * Returns a valid pointer to struct generic_pm_domain on success or
2107 * ERR_PTR() on failure.
2109 struct generic_pm_domain
*of_genpd_remove_last(struct device_node
*np
)
2111 struct generic_pm_domain
*gpd
, *tmp
, *genpd
= ERR_PTR(-ENOENT
);
2114 if (IS_ERR_OR_NULL(np
))
2115 return ERR_PTR(-EINVAL
);
2117 mutex_lock(&gpd_list_lock
);
2118 list_for_each_entry_safe(gpd
, tmp
, &gpd_list
, gpd_list_node
) {
2119 if (gpd
->provider
== &np
->fwnode
) {
2120 ret
= genpd_remove(gpd
);
2121 genpd
= ret
? ERR_PTR(ret
) : gpd
;
2125 mutex_unlock(&gpd_list_lock
);
2129 EXPORT_SYMBOL_GPL(of_genpd_remove_last
);
2132 * genpd_dev_pm_detach - Detach a device from its PM domain.
2133 * @dev: Device to detach.
2134 * @power_off: Currently not used
2136 * Try to locate a corresponding generic PM domain, which the device was
2137 * attached to previously. If such is found, the device is detached from it.
2139 static void genpd_dev_pm_detach(struct device
*dev
, bool power_off
)
2141 struct generic_pm_domain
*pd
;
2145 pd
= dev_to_genpd(dev
);
2149 dev_dbg(dev
, "removing from PM domain %s\n", pd
->name
);
2151 for (i
= 1; i
< GENPD_RETRY_MAX_MS
; i
<<= 1) {
2152 ret
= genpd_remove_device(pd
, dev
);
2161 dev_err(dev
, "failed to remove from PM domain %s: %d",
2166 /* Check if PM domain can be powered off after removing this device. */
2167 genpd_queue_power_off_work(pd
);
2170 static void genpd_dev_pm_sync(struct device
*dev
)
2172 struct generic_pm_domain
*pd
;
2174 pd
= dev_to_genpd(dev
);
2178 genpd_queue_power_off_work(pd
);
2182 * genpd_dev_pm_attach - Attach a device to its PM domain using DT.
2183 * @dev: Device to attach.
2185 * Parse device's OF node to find a PM domain specifier. If such is found,
2186 * attaches the device to retrieved pm_domain ops.
2188 * Both generic and legacy Samsung-specific DT bindings are supported to keep
2189 * backwards compatibility with existing DTBs.
2191 * Returns 0 on successfully attached PM domain or negative error code. Note
2192 * that if a power-domain exists for the device, but it cannot be found or
2193 * turned on, then return -EPROBE_DEFER to ensure that the device is not
2194 * probed and to re-try again later.
2196 int genpd_dev_pm_attach(struct device
*dev
)
2198 struct of_phandle_args pd_args
;
2199 struct generic_pm_domain
*pd
;
2209 ret
= of_parse_phandle_with_args(dev
->of_node
, "power-domains",
2210 "#power-domain-cells", 0, &pd_args
);
2214 mutex_lock(&gpd_list_lock
);
2215 pd
= genpd_get_from_provider(&pd_args
);
2216 of_node_put(pd_args
.np
);
2218 mutex_unlock(&gpd_list_lock
);
2219 dev_dbg(dev
, "%s() failed to find PM domain: %ld\n",
2220 __func__
, PTR_ERR(pd
));
2221 return -EPROBE_DEFER
;
2224 dev_dbg(dev
, "adding to PM domain %s\n", pd
->name
);
2226 for (i
= 1; i
< GENPD_RETRY_MAX_MS
; i
<<= 1) {
2227 ret
= genpd_add_device(pd
, dev
, NULL
);
2234 mutex_unlock(&gpd_list_lock
);
2237 if (ret
!= -EPROBE_DEFER
)
2238 dev_err(dev
, "failed to add to PM domain %s: %d",
2243 dev
->pm_domain
->detach
= genpd_dev_pm_detach
;
2244 dev
->pm_domain
->sync
= genpd_dev_pm_sync
;
2247 ret
= genpd_power_on(pd
, 0);
2250 return ret
? -EPROBE_DEFER
: 0;
2252 EXPORT_SYMBOL_GPL(genpd_dev_pm_attach
);
2254 static const struct of_device_id idle_state_match
[] = {
2255 { .compatible
= "domain-idle-state", },
2259 static int genpd_parse_state(struct genpd_power_state
*genpd_state
,
2260 struct device_node
*state_node
)
2264 u32 entry_latency
, exit_latency
;
2266 err
= of_property_read_u32(state_node
, "entry-latency-us",
2269 pr_debug(" * %pOF missing entry-latency-us property\n",
2274 err
= of_property_read_u32(state_node
, "exit-latency-us",
2277 pr_debug(" * %pOF missing exit-latency-us property\n",
2282 err
= of_property_read_u32(state_node
, "min-residency-us", &residency
);
2284 genpd_state
->residency_ns
= 1000 * residency
;
2286 genpd_state
->power_on_latency_ns
= 1000 * exit_latency
;
2287 genpd_state
->power_off_latency_ns
= 1000 * entry_latency
;
2288 genpd_state
->fwnode
= &state_node
->fwnode
;
2293 static int genpd_iterate_idle_states(struct device_node
*dn
,
2294 struct genpd_power_state
*states
)
2297 struct of_phandle_iterator it
;
2298 struct device_node
*np
;
2301 ret
= of_count_phandle_with_args(dn
, "domain-idle-states", NULL
);
2305 /* Loop over the phandles until all the requested entry is found */
2306 of_for_each_phandle(&it
, ret
, dn
, "domain-idle-states", NULL
, 0) {
2308 if (!of_match_node(idle_state_match
, np
))
2311 ret
= genpd_parse_state(&states
[i
], np
);
2313 pr_err("Parsing idle state node %pOF failed with err %d\n",
2326 * of_genpd_parse_idle_states: Return array of idle states for the genpd.
2328 * @dn: The genpd device node
2329 * @states: The pointer to which the state array will be saved.
2330 * @n: The count of elements in the array returned from this function.
2332 * Returns the device states parsed from the OF node. The memory for the states
2333 * is allocated by this function and is the responsibility of the caller to
2334 * free the memory after use. If no domain idle states is found it returns
2335 * -EINVAL and in case of errors, a negative error code.
2337 int of_genpd_parse_idle_states(struct device_node
*dn
,
2338 struct genpd_power_state
**states
, int *n
)
2340 struct genpd_power_state
*st
;
2343 ret
= genpd_iterate_idle_states(dn
, NULL
);
2345 return ret
< 0 ? ret
: -EINVAL
;
2347 st
= kcalloc(ret
, sizeof(*st
), GFP_KERNEL
);
2351 ret
= genpd_iterate_idle_states(dn
, st
);
2354 return ret
< 0 ? ret
: -EINVAL
;
2362 EXPORT_SYMBOL_GPL(of_genpd_parse_idle_states
);
2364 #endif /* CONFIG_PM_GENERIC_DOMAINS_OF */
2367 /*** debugfs support ***/
2369 #ifdef CONFIG_DEBUG_FS
2370 #include <linux/pm.h>
2371 #include <linux/device.h>
2372 #include <linux/debugfs.h>
2373 #include <linux/seq_file.h>
2374 #include <linux/init.h>
2375 #include <linux/kobject.h>
2376 static struct dentry
*genpd_debugfs_dir
;
2379 * TODO: This function is a slightly modified version of rtpm_status_show
2380 * from sysfs.c, so generalize it.
2382 static void rtpm_status_str(struct seq_file
*s
, struct device
*dev
)
2384 static const char * const status_lookup
[] = {
2385 [RPM_ACTIVE
] = "active",
2386 [RPM_RESUMING
] = "resuming",
2387 [RPM_SUSPENDED
] = "suspended",
2388 [RPM_SUSPENDING
] = "suspending"
2392 if (dev
->power
.runtime_error
)
2394 else if (dev
->power
.disable_depth
)
2396 else if (dev
->power
.runtime_status
< ARRAY_SIZE(status_lookup
))
2397 p
= status_lookup
[dev
->power
.runtime_status
];
2404 static int genpd_summary_one(struct seq_file
*s
,
2405 struct generic_pm_domain
*genpd
)
2407 static const char * const status_lookup
[] = {
2408 [GPD_STATE_ACTIVE
] = "on",
2409 [GPD_STATE_POWER_OFF
] = "off"
2411 struct pm_domain_data
*pm_data
;
2412 const char *kobj_path
;
2413 struct gpd_link
*link
;
2417 ret
= genpd_lock_interruptible(genpd
);
2419 return -ERESTARTSYS
;
2421 if (WARN_ON(genpd
->status
>= ARRAY_SIZE(status_lookup
)))
2423 if (!genpd_status_on(genpd
))
2424 snprintf(state
, sizeof(state
), "%s-%u",
2425 status_lookup
[genpd
->status
], genpd
->state_idx
);
2427 snprintf(state
, sizeof(state
), "%s",
2428 status_lookup
[genpd
->status
]);
2429 seq_printf(s
, "%-30s %-15s ", genpd
->name
, state
);
2432 * Modifications on the list require holding locks on both
2433 * master and slave, so we are safe.
2434 * Also genpd->name is immutable.
2436 list_for_each_entry(link
, &genpd
->master_links
, master_node
) {
2437 seq_printf(s
, "%s", link
->slave
->name
);
2438 if (!list_is_last(&link
->master_node
, &genpd
->master_links
))
2442 list_for_each_entry(pm_data
, &genpd
->dev_list
, list_node
) {
2443 kobj_path
= kobject_get_path(&pm_data
->dev
->kobj
,
2444 genpd_is_irq_safe(genpd
) ?
2445 GFP_ATOMIC
: GFP_KERNEL
);
2446 if (kobj_path
== NULL
)
2449 seq_printf(s
, "\n %-50s ", kobj_path
);
2450 rtpm_status_str(s
, pm_data
->dev
);
2456 genpd_unlock(genpd
);
2461 static int genpd_summary_show(struct seq_file
*s
, void *data
)
2463 struct generic_pm_domain
*genpd
;
2466 seq_puts(s
, "domain status slaves\n");
2467 seq_puts(s
, " /device runtime status\n");
2468 seq_puts(s
, "----------------------------------------------------------------------\n");
2470 ret
= mutex_lock_interruptible(&gpd_list_lock
);
2472 return -ERESTARTSYS
;
2474 list_for_each_entry(genpd
, &gpd_list
, gpd_list_node
) {
2475 ret
= genpd_summary_one(s
, genpd
);
2479 mutex_unlock(&gpd_list_lock
);
2484 static int genpd_status_show(struct seq_file
*s
, void *data
)
2486 static const char * const status_lookup
[] = {
2487 [GPD_STATE_ACTIVE
] = "on",
2488 [GPD_STATE_POWER_OFF
] = "off"
2491 struct generic_pm_domain
*genpd
= s
->private;
2494 ret
= genpd_lock_interruptible(genpd
);
2496 return -ERESTARTSYS
;
2498 if (WARN_ON_ONCE(genpd
->status
>= ARRAY_SIZE(status_lookup
)))
2501 if (genpd
->status
== GPD_STATE_POWER_OFF
)
2502 seq_printf(s
, "%s-%u\n", status_lookup
[genpd
->status
],
2505 seq_printf(s
, "%s\n", status_lookup
[genpd
->status
]);
2507 genpd_unlock(genpd
);
2511 static int genpd_sub_domains_show(struct seq_file
*s
, void *data
)
2513 struct generic_pm_domain
*genpd
= s
->private;
2514 struct gpd_link
*link
;
2517 ret
= genpd_lock_interruptible(genpd
);
2519 return -ERESTARTSYS
;
2521 list_for_each_entry(link
, &genpd
->master_links
, master_node
)
2522 seq_printf(s
, "%s\n", link
->slave
->name
);
2524 genpd_unlock(genpd
);
2528 static int genpd_idle_states_show(struct seq_file
*s
, void *data
)
2530 struct generic_pm_domain
*genpd
= s
->private;
2534 ret
= genpd_lock_interruptible(genpd
);
2536 return -ERESTARTSYS
;
2538 seq_puts(s
, "State Time Spent(ms)\n");
2540 for (i
= 0; i
< genpd
->state_count
; i
++) {
2544 if ((genpd
->status
== GPD_STATE_POWER_OFF
) &&
2545 (genpd
->state_idx
== i
))
2546 delta
= ktime_sub(ktime_get(), genpd
->accounting_time
);
2548 msecs
= ktime_to_ms(
2549 ktime_add(genpd
->states
[i
].idle_time
, delta
));
2550 seq_printf(s
, "S%-13i %lld\n", i
, msecs
);
2553 genpd_unlock(genpd
);
2557 static int genpd_active_time_show(struct seq_file
*s
, void *data
)
2559 struct generic_pm_domain
*genpd
= s
->private;
2563 ret
= genpd_lock_interruptible(genpd
);
2565 return -ERESTARTSYS
;
2567 if (genpd
->status
== GPD_STATE_ACTIVE
)
2568 delta
= ktime_sub(ktime_get(), genpd
->accounting_time
);
2570 seq_printf(s
, "%lld ms\n", ktime_to_ms(
2571 ktime_add(genpd
->on_time
, delta
)));
2573 genpd_unlock(genpd
);
2577 static int genpd_total_idle_time_show(struct seq_file
*s
, void *data
)
2579 struct generic_pm_domain
*genpd
= s
->private;
2580 ktime_t delta
= 0, total
= 0;
2584 ret
= genpd_lock_interruptible(genpd
);
2586 return -ERESTARTSYS
;
2588 for (i
= 0; i
< genpd
->state_count
; i
++) {
2590 if ((genpd
->status
== GPD_STATE_POWER_OFF
) &&
2591 (genpd
->state_idx
== i
))
2592 delta
= ktime_sub(ktime_get(), genpd
->accounting_time
);
2594 total
= ktime_add(total
, genpd
->states
[i
].idle_time
);
2596 total
= ktime_add(total
, delta
);
2598 seq_printf(s
, "%lld ms\n", ktime_to_ms(total
));
2600 genpd_unlock(genpd
);
2605 static int genpd_devices_show(struct seq_file
*s
, void *data
)
2607 struct generic_pm_domain
*genpd
= s
->private;
2608 struct pm_domain_data
*pm_data
;
2609 const char *kobj_path
;
2612 ret
= genpd_lock_interruptible(genpd
);
2614 return -ERESTARTSYS
;
2616 list_for_each_entry(pm_data
, &genpd
->dev_list
, list_node
) {
2617 kobj_path
= kobject_get_path(&pm_data
->dev
->kobj
,
2618 genpd_is_irq_safe(genpd
) ?
2619 GFP_ATOMIC
: GFP_KERNEL
);
2620 if (kobj_path
== NULL
)
2623 seq_printf(s
, "%s\n", kobj_path
);
2627 genpd_unlock(genpd
);
2631 #define define_genpd_open_function(name) \
2632 static int genpd_##name##_open(struct inode *inode, struct file *file) \
2634 return single_open(file, genpd_##name##_show, inode->i_private); \
2637 define_genpd_open_function(summary
);
2638 define_genpd_open_function(status
);
2639 define_genpd_open_function(sub_domains
);
2640 define_genpd_open_function(idle_states
);
2641 define_genpd_open_function(active_time
);
2642 define_genpd_open_function(total_idle_time
);
2643 define_genpd_open_function(devices
);
2645 #define define_genpd_debugfs_fops(name) \
2646 static const struct file_operations genpd_##name##_fops = { \
2647 .open = genpd_##name##_open, \
2649 .llseek = seq_lseek, \
2650 .release = single_release, \
2653 define_genpd_debugfs_fops(summary
);
2654 define_genpd_debugfs_fops(status
);
2655 define_genpd_debugfs_fops(sub_domains
);
2656 define_genpd_debugfs_fops(idle_states
);
2657 define_genpd_debugfs_fops(active_time
);
2658 define_genpd_debugfs_fops(total_idle_time
);
2659 define_genpd_debugfs_fops(devices
);
2661 static int __init
genpd_debug_init(void)
2664 struct generic_pm_domain
*genpd
;
2666 genpd_debugfs_dir
= debugfs_create_dir("pm_genpd", NULL
);
2668 if (!genpd_debugfs_dir
)
2671 d
= debugfs_create_file("pm_genpd_summary", S_IRUGO
,
2672 genpd_debugfs_dir
, NULL
, &genpd_summary_fops
);
2676 list_for_each_entry(genpd
, &gpd_list
, gpd_list_node
) {
2677 d
= debugfs_create_dir(genpd
->name
, genpd_debugfs_dir
);
2681 debugfs_create_file("current_state", 0444,
2682 d
, genpd
, &genpd_status_fops
);
2683 debugfs_create_file("sub_domains", 0444,
2684 d
, genpd
, &genpd_sub_domains_fops
);
2685 debugfs_create_file("idle_states", 0444,
2686 d
, genpd
, &genpd_idle_states_fops
);
2687 debugfs_create_file("active_time", 0444,
2688 d
, genpd
, &genpd_active_time_fops
);
2689 debugfs_create_file("total_idle_time", 0444,
2690 d
, genpd
, &genpd_total_idle_time_fops
);
2691 debugfs_create_file("devices", 0444,
2692 d
, genpd
, &genpd_devices_fops
);
2697 late_initcall(genpd_debug_init
);
2699 static void __exit
genpd_debug_exit(void)
2701 debugfs_remove_recursive(genpd_debugfs_dir
);
2703 __exitcall(genpd_debug_exit
);
2704 #endif /* CONFIG_DEBUG_FS */