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/kernel.h>
11 #include <linux/platform_device.h>
12 #include <linux/pm_runtime.h>
13 #include <linux/pm_domain.h>
14 #include <linux/pm_qos.h>
15 #include <linux/pm_clock.h>
16 #include <linux/slab.h>
17 #include <linux/err.h>
18 #include <linux/sched.h>
19 #include <linux/suspend.h>
20 #include <linux/export.h>
22 #define GENPD_DEV_CALLBACK(genpd, type, callback, dev) \
24 type (*__routine)(struct device *__d); \
25 type __ret = (type)0; \
27 __routine = genpd->dev_ops.callback; \
29 __ret = __routine(dev); \
34 #define GENPD_DEV_TIMED_CALLBACK(genpd, type, callback, dev, field, name) \
36 ktime_t __start = ktime_get(); \
37 type __retval = GENPD_DEV_CALLBACK(genpd, type, callback, dev); \
38 s64 __elapsed = ktime_to_ns(ktime_sub(ktime_get(), __start)); \
39 struct gpd_timing_data *__td = &dev_gpd_data(dev)->td; \
40 if (!__retval && __elapsed > __td->field) { \
41 __td->field = __elapsed; \
42 dev_dbg(dev, name " latency exceeded, new value %lld ns\n", \
44 genpd->max_off_time_changed = true; \
45 __td->constraint_changed = true; \
50 static LIST_HEAD(gpd_list
);
51 static DEFINE_MUTEX(gpd_list_lock
);
53 static struct generic_pm_domain
*pm_genpd_lookup_name(const char *domain_name
)
55 struct generic_pm_domain
*genpd
= NULL
, *gpd
;
57 if (IS_ERR_OR_NULL(domain_name
))
60 mutex_lock(&gpd_list_lock
);
61 list_for_each_entry(gpd
, &gpd_list
, gpd_list_node
) {
62 if (!strcmp(gpd
->name
, domain_name
)) {
67 mutex_unlock(&gpd_list_lock
);
72 * Get the generic PM domain for a particular struct device.
73 * This validates the struct device pointer, the PM domain pointer,
74 * and checks that the PM domain pointer is a real generic PM domain.
75 * Any failure results in NULL being returned.
77 struct generic_pm_domain
*pm_genpd_lookup_dev(struct device
*dev
)
79 struct generic_pm_domain
*genpd
= NULL
, *gpd
;
81 if (IS_ERR_OR_NULL(dev
) || IS_ERR_OR_NULL(dev
->pm_domain
))
84 mutex_lock(&gpd_list_lock
);
85 list_for_each_entry(gpd
, &gpd_list
, gpd_list_node
) {
86 if (&gpd
->domain
== dev
->pm_domain
) {
91 mutex_unlock(&gpd_list_lock
);
97 * This should only be used where we are certain that the pm_domain
98 * attached to the device is a genpd domain.
100 static struct generic_pm_domain
*dev_to_genpd(struct device
*dev
)
102 if (IS_ERR_OR_NULL(dev
->pm_domain
))
103 return ERR_PTR(-EINVAL
);
105 return pd_to_genpd(dev
->pm_domain
);
108 static int genpd_stop_dev(struct generic_pm_domain
*genpd
, struct device
*dev
)
110 return GENPD_DEV_TIMED_CALLBACK(genpd
, int, stop
, dev
,
111 stop_latency_ns
, "stop");
114 static int genpd_start_dev(struct generic_pm_domain
*genpd
, struct device
*dev
)
116 return GENPD_DEV_TIMED_CALLBACK(genpd
, int, start
, dev
,
117 start_latency_ns
, "start");
120 static bool genpd_sd_counter_dec(struct generic_pm_domain
*genpd
)
124 if (!WARN_ON(atomic_read(&genpd
->sd_count
) == 0))
125 ret
= !!atomic_dec_and_test(&genpd
->sd_count
);
130 static void genpd_sd_counter_inc(struct generic_pm_domain
*genpd
)
132 atomic_inc(&genpd
->sd_count
);
133 smp_mb__after_atomic();
136 static void genpd_acquire_lock(struct generic_pm_domain
*genpd
)
140 mutex_lock(&genpd
->lock
);
142 * Wait for the domain to transition into either the active,
143 * or the power off state.
146 prepare_to_wait(&genpd
->status_wait_queue
, &wait
,
147 TASK_UNINTERRUPTIBLE
);
148 if (genpd
->status
== GPD_STATE_ACTIVE
149 || genpd
->status
== GPD_STATE_POWER_OFF
)
151 mutex_unlock(&genpd
->lock
);
155 mutex_lock(&genpd
->lock
);
157 finish_wait(&genpd
->status_wait_queue
, &wait
);
160 static void genpd_release_lock(struct generic_pm_domain
*genpd
)
162 mutex_unlock(&genpd
->lock
);
165 static void genpd_set_active(struct generic_pm_domain
*genpd
)
167 if (genpd
->resume_count
== 0)
168 genpd
->status
= GPD_STATE_ACTIVE
;
171 static void genpd_recalc_cpu_exit_latency(struct generic_pm_domain
*genpd
)
175 if (!genpd
->cpuidle_data
)
178 usecs64
= genpd
->power_on_latency_ns
;
179 do_div(usecs64
, NSEC_PER_USEC
);
180 usecs64
+= genpd
->cpuidle_data
->saved_exit_latency
;
181 genpd
->cpuidle_data
->idle_state
->exit_latency
= usecs64
;
184 static int genpd_power_on(struct generic_pm_domain
*genpd
)
190 if (!genpd
->power_on
)
193 time_start
= ktime_get();
194 ret
= genpd
->power_on(genpd
);
198 elapsed_ns
= ktime_to_ns(ktime_sub(ktime_get(), time_start
));
199 if (elapsed_ns
<= genpd
->power_on_latency_ns
)
202 genpd
->power_on_latency_ns
= elapsed_ns
;
203 genpd
->max_off_time_changed
= true;
204 genpd_recalc_cpu_exit_latency(genpd
);
205 pr_debug("%s: Power-%s latency exceeded, new value %lld ns\n",
206 genpd
->name
, "on", elapsed_ns
);
211 static int genpd_power_off(struct generic_pm_domain
*genpd
)
217 if (!genpd
->power_off
)
220 time_start
= ktime_get();
221 ret
= genpd
->power_off(genpd
);
225 elapsed_ns
= ktime_to_ns(ktime_sub(ktime_get(), time_start
));
226 if (elapsed_ns
<= genpd
->power_off_latency_ns
)
229 genpd
->power_off_latency_ns
= elapsed_ns
;
230 genpd
->max_off_time_changed
= true;
231 pr_debug("%s: Power-%s latency exceeded, new value %lld ns\n",
232 genpd
->name
, "off", elapsed_ns
);
238 * __pm_genpd_poweron - Restore power to a given PM domain and its masters.
239 * @genpd: PM domain to power up.
241 * Restore power to @genpd and all of its masters so that it is possible to
242 * resume a device belonging to it.
244 static int __pm_genpd_poweron(struct generic_pm_domain
*genpd
)
245 __releases(&genpd
->lock
) __acquires(&genpd
->lock
)
247 struct gpd_link
*link
;
251 /* If the domain's master is being waited for, we have to wait too. */
253 prepare_to_wait(&genpd
->status_wait_queue
, &wait
,
254 TASK_UNINTERRUPTIBLE
);
255 if (genpd
->status
!= GPD_STATE_WAIT_MASTER
)
257 mutex_unlock(&genpd
->lock
);
261 mutex_lock(&genpd
->lock
);
263 finish_wait(&genpd
->status_wait_queue
, &wait
);
265 if (genpd
->status
== GPD_STATE_ACTIVE
266 || (genpd
->prepared_count
> 0 && genpd
->suspend_power_off
))
269 if (genpd
->status
!= GPD_STATE_POWER_OFF
) {
270 genpd_set_active(genpd
);
274 if (genpd
->cpuidle_data
) {
275 cpuidle_pause_and_lock();
276 genpd
->cpuidle_data
->idle_state
->disabled
= true;
277 cpuidle_resume_and_unlock();
282 * The list is guaranteed not to change while the loop below is being
283 * executed, unless one of the masters' .power_on() callbacks fiddles
286 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
287 genpd_sd_counter_inc(link
->master
);
288 genpd
->status
= GPD_STATE_WAIT_MASTER
;
290 mutex_unlock(&genpd
->lock
);
292 ret
= pm_genpd_poweron(link
->master
);
294 mutex_lock(&genpd
->lock
);
297 * The "wait for parent" status is guaranteed not to change
298 * while the master is powering on.
300 genpd
->status
= GPD_STATE_POWER_OFF
;
301 wake_up_all(&genpd
->status_wait_queue
);
303 genpd_sd_counter_dec(link
->master
);
308 ret
= genpd_power_on(genpd
);
313 genpd_set_active(genpd
);
318 list_for_each_entry_continue_reverse(link
, &genpd
->slave_links
, slave_node
)
319 genpd_sd_counter_dec(link
->master
);
325 * pm_genpd_poweron - Restore power to a given PM domain and its masters.
326 * @genpd: PM domain to power up.
328 int pm_genpd_poweron(struct generic_pm_domain
*genpd
)
332 mutex_lock(&genpd
->lock
);
333 ret
= __pm_genpd_poweron(genpd
);
334 mutex_unlock(&genpd
->lock
);
339 * pm_genpd_name_poweron - Restore power to a given PM domain and its masters.
340 * @domain_name: Name of the PM domain to power up.
342 int pm_genpd_name_poweron(const char *domain_name
)
344 struct generic_pm_domain
*genpd
;
346 genpd
= pm_genpd_lookup_name(domain_name
);
347 return genpd
? pm_genpd_poweron(genpd
) : -EINVAL
;
350 static int genpd_start_dev_no_timing(struct generic_pm_domain
*genpd
,
353 return GENPD_DEV_CALLBACK(genpd
, int, start
, dev
);
356 static int genpd_save_dev(struct generic_pm_domain
*genpd
, struct device
*dev
)
358 return GENPD_DEV_TIMED_CALLBACK(genpd
, int, save_state
, dev
,
359 save_state_latency_ns
, "state save");
362 static int genpd_restore_dev(struct generic_pm_domain
*genpd
, struct device
*dev
)
364 return GENPD_DEV_TIMED_CALLBACK(genpd
, int, restore_state
, dev
,
365 restore_state_latency_ns
,
369 static int genpd_dev_pm_qos_notifier(struct notifier_block
*nb
,
370 unsigned long val
, void *ptr
)
372 struct generic_pm_domain_data
*gpd_data
;
375 gpd_data
= container_of(nb
, struct generic_pm_domain_data
, nb
);
376 dev
= gpd_data
->base
.dev
;
379 struct generic_pm_domain
*genpd
;
380 struct pm_domain_data
*pdd
;
382 spin_lock_irq(&dev
->power
.lock
);
384 pdd
= dev
->power
.subsys_data
?
385 dev
->power
.subsys_data
->domain_data
: NULL
;
386 if (pdd
&& pdd
->dev
) {
387 to_gpd_data(pdd
)->td
.constraint_changed
= true;
388 genpd
= dev_to_genpd(dev
);
390 genpd
= ERR_PTR(-ENODATA
);
393 spin_unlock_irq(&dev
->power
.lock
);
395 if (!IS_ERR(genpd
)) {
396 mutex_lock(&genpd
->lock
);
397 genpd
->max_off_time_changed
= true;
398 mutex_unlock(&genpd
->lock
);
402 if (!dev
|| dev
->power
.ignore_children
)
410 * __pm_genpd_save_device - Save the pre-suspend state of a device.
411 * @pdd: Domain data of the device to save the state of.
412 * @genpd: PM domain the device belongs to.
414 static int __pm_genpd_save_device(struct pm_domain_data
*pdd
,
415 struct generic_pm_domain
*genpd
)
416 __releases(&genpd
->lock
) __acquires(&genpd
->lock
)
418 struct generic_pm_domain_data
*gpd_data
= to_gpd_data(pdd
);
419 struct device
*dev
= pdd
->dev
;
422 if (gpd_data
->need_restore
> 0)
426 * If the value of the need_restore flag is still unknown at this point,
427 * we trust that pm_genpd_poweroff() has verified that the device is
428 * already runtime PM suspended.
430 if (gpd_data
->need_restore
< 0) {
431 gpd_data
->need_restore
= 1;
435 mutex_unlock(&genpd
->lock
);
437 genpd_start_dev(genpd
, dev
);
438 ret
= genpd_save_dev(genpd
, dev
);
439 genpd_stop_dev(genpd
, dev
);
441 mutex_lock(&genpd
->lock
);
444 gpd_data
->need_restore
= 1;
450 * __pm_genpd_restore_device - Restore the pre-suspend state of a device.
451 * @pdd: Domain data of the device to restore the state of.
452 * @genpd: PM domain the device belongs to.
454 static void __pm_genpd_restore_device(struct pm_domain_data
*pdd
,
455 struct generic_pm_domain
*genpd
)
456 __releases(&genpd
->lock
) __acquires(&genpd
->lock
)
458 struct generic_pm_domain_data
*gpd_data
= to_gpd_data(pdd
);
459 struct device
*dev
= pdd
->dev
;
460 int need_restore
= gpd_data
->need_restore
;
462 gpd_data
->need_restore
= 0;
463 mutex_unlock(&genpd
->lock
);
465 genpd_start_dev(genpd
, dev
);
468 * Call genpd_restore_dev() for recently added devices too (need_restore
472 genpd_restore_dev(genpd
, dev
);
474 mutex_lock(&genpd
->lock
);
478 * genpd_abort_poweroff - Check if a PM domain power off should be aborted.
479 * @genpd: PM domain to check.
481 * Return true if a PM domain's status changed to GPD_STATE_ACTIVE during
482 * a "power off" operation, which means that a "power on" has occured in the
483 * meantime, or if its resume_count field is different from zero, which means
484 * that one of its devices has been resumed in the meantime.
486 static bool genpd_abort_poweroff(struct generic_pm_domain
*genpd
)
488 return genpd
->status
== GPD_STATE_WAIT_MASTER
489 || genpd
->status
== GPD_STATE_ACTIVE
|| genpd
->resume_count
> 0;
493 * genpd_queue_power_off_work - Queue up the execution of pm_genpd_poweroff().
494 * @genpd: PM domait to power off.
496 * Queue up the execution of pm_genpd_poweroff() unless it's already been done
499 static void genpd_queue_power_off_work(struct generic_pm_domain
*genpd
)
501 queue_work(pm_wq
, &genpd
->power_off_work
);
505 * pm_genpd_poweroff - Remove power from a given PM domain.
506 * @genpd: PM domain to power down.
508 * If all of the @genpd's devices have been suspended and all of its subdomains
509 * have been powered down, run the runtime suspend callbacks provided by all of
510 * the @genpd's devices' drivers and remove power from @genpd.
512 static int pm_genpd_poweroff(struct generic_pm_domain
*genpd
)
513 __releases(&genpd
->lock
) __acquires(&genpd
->lock
)
515 struct pm_domain_data
*pdd
;
516 struct gpd_link
*link
;
517 unsigned int not_suspended
;
522 * Do not try to power off the domain in the following situations:
523 * (1) The domain is already in the "power off" state.
524 * (2) The domain is waiting for its master to power up.
525 * (3) One of the domain's devices is being resumed right now.
526 * (4) System suspend is in progress.
528 if (genpd
->status
== GPD_STATE_POWER_OFF
529 || genpd
->status
== GPD_STATE_WAIT_MASTER
530 || genpd
->resume_count
> 0 || genpd
->prepared_count
> 0)
533 if (atomic_read(&genpd
->sd_count
) > 0)
537 list_for_each_entry(pdd
, &genpd
->dev_list
, list_node
) {
538 enum pm_qos_flags_status stat
;
540 stat
= dev_pm_qos_flags(pdd
->dev
,
541 PM_QOS_FLAG_NO_POWER_OFF
542 | PM_QOS_FLAG_REMOTE_WAKEUP
);
543 if (stat
> PM_QOS_FLAGS_NONE
)
546 if (pdd
->dev
->driver
&& (!pm_runtime_suspended(pdd
->dev
)
547 || pdd
->dev
->power
.irq_safe
))
551 if (not_suspended
> genpd
->in_progress
)
554 if (genpd
->poweroff_task
) {
556 * Another instance of pm_genpd_poweroff() is executing
557 * callbacks, so tell it to start over and return.
559 genpd
->status
= GPD_STATE_REPEAT
;
563 if (genpd
->gov
&& genpd
->gov
->power_down_ok
) {
564 if (!genpd
->gov
->power_down_ok(&genpd
->domain
))
568 genpd
->status
= GPD_STATE_BUSY
;
569 genpd
->poweroff_task
= current
;
571 list_for_each_entry_reverse(pdd
, &genpd
->dev_list
, list_node
) {
572 ret
= atomic_read(&genpd
->sd_count
) == 0 ?
573 __pm_genpd_save_device(pdd
, genpd
) : -EBUSY
;
575 if (genpd_abort_poweroff(genpd
))
579 genpd_set_active(genpd
);
583 if (genpd
->status
== GPD_STATE_REPEAT
) {
584 genpd
->poweroff_task
= NULL
;
589 if (genpd
->cpuidle_data
) {
591 * If cpuidle_data is set, cpuidle should turn the domain off
592 * when the CPU in it is idle. In that case we don't decrement
593 * the subdomain counts of the master domains, so that power is
594 * not removed from the current domain prematurely as a result
595 * of cutting off the masters' power.
597 genpd
->status
= GPD_STATE_POWER_OFF
;
598 cpuidle_pause_and_lock();
599 genpd
->cpuidle_data
->idle_state
->disabled
= false;
600 cpuidle_resume_and_unlock();
604 if (genpd
->power_off
) {
605 if (atomic_read(&genpd
->sd_count
) > 0) {
611 * If sd_count > 0 at this point, one of the subdomains hasn't
612 * managed to call pm_genpd_poweron() for the master yet after
613 * incrementing it. In that case pm_genpd_poweron() will wait
614 * for us to drop the lock, so we can call .power_off() and let
615 * the pm_genpd_poweron() restore power for us (this shouldn't
616 * happen very often).
618 ret
= genpd_power_off(genpd
);
620 genpd_set_active(genpd
);
625 genpd
->status
= GPD_STATE_POWER_OFF
;
627 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
628 genpd_sd_counter_dec(link
->master
);
629 genpd_queue_power_off_work(link
->master
);
633 genpd
->poweroff_task
= NULL
;
634 wake_up_all(&genpd
->status_wait_queue
);
639 * genpd_power_off_work_fn - Power off PM domain whose subdomain count is 0.
640 * @work: Work structure used for scheduling the execution of this function.
642 static void genpd_power_off_work_fn(struct work_struct
*work
)
644 struct generic_pm_domain
*genpd
;
646 genpd
= container_of(work
, struct generic_pm_domain
, power_off_work
);
648 genpd_acquire_lock(genpd
);
649 pm_genpd_poweroff(genpd
);
650 genpd_release_lock(genpd
);
654 * pm_genpd_runtime_suspend - Suspend a device belonging to I/O PM domain.
655 * @dev: Device to suspend.
657 * Carry out a runtime suspend of a device under the assumption that its
658 * pm_domain field points to the domain member of an object of type
659 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
661 static int pm_genpd_runtime_suspend(struct device
*dev
)
663 struct generic_pm_domain
*genpd
;
664 struct generic_pm_domain_data
*gpd_data
;
665 bool (*stop_ok
)(struct device
*__dev
);
668 dev_dbg(dev
, "%s()\n", __func__
);
670 genpd
= dev_to_genpd(dev
);
674 stop_ok
= genpd
->gov
? genpd
->gov
->stop_ok
: NULL
;
675 if (stop_ok
&& !stop_ok(dev
))
678 ret
= genpd_stop_dev(genpd
, dev
);
683 * If power.irq_safe is set, this routine will be run with interrupts
684 * off, so it can't use mutexes.
686 if (dev
->power
.irq_safe
)
689 mutex_lock(&genpd
->lock
);
692 * If we have an unknown state of the need_restore flag, it means none
693 * of the runtime PM callbacks has been invoked yet. Let's update the
694 * flag to reflect that the current state is active.
696 gpd_data
= to_gpd_data(dev
->power
.subsys_data
->domain_data
);
697 if (gpd_data
->need_restore
< 0)
698 gpd_data
->need_restore
= 0;
700 genpd
->in_progress
++;
701 pm_genpd_poweroff(genpd
);
702 genpd
->in_progress
--;
703 mutex_unlock(&genpd
->lock
);
709 * pm_genpd_runtime_resume - Resume a device belonging to I/O PM domain.
710 * @dev: Device to resume.
712 * Carry out a runtime resume of a device under the assumption that its
713 * pm_domain field points to the domain member of an object of type
714 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
716 static int pm_genpd_runtime_resume(struct device
*dev
)
718 struct generic_pm_domain
*genpd
;
722 dev_dbg(dev
, "%s()\n", __func__
);
724 genpd
= dev_to_genpd(dev
);
728 /* If power.irq_safe, the PM domain is never powered off. */
729 if (dev
->power
.irq_safe
)
730 return genpd_start_dev_no_timing(genpd
, dev
);
732 mutex_lock(&genpd
->lock
);
733 ret
= __pm_genpd_poweron(genpd
);
735 mutex_unlock(&genpd
->lock
);
738 genpd
->status
= GPD_STATE_BUSY
;
739 genpd
->resume_count
++;
741 prepare_to_wait(&genpd
->status_wait_queue
, &wait
,
742 TASK_UNINTERRUPTIBLE
);
744 * If current is the powering off task, we have been called
745 * reentrantly from one of the device callbacks, so we should
748 if (!genpd
->poweroff_task
|| genpd
->poweroff_task
== current
)
750 mutex_unlock(&genpd
->lock
);
754 mutex_lock(&genpd
->lock
);
756 finish_wait(&genpd
->status_wait_queue
, &wait
);
757 __pm_genpd_restore_device(dev
->power
.subsys_data
->domain_data
, genpd
);
758 genpd
->resume_count
--;
759 genpd_set_active(genpd
);
760 wake_up_all(&genpd
->status_wait_queue
);
761 mutex_unlock(&genpd
->lock
);
766 static bool pd_ignore_unused
;
767 static int __init
pd_ignore_unused_setup(char *__unused
)
769 pd_ignore_unused
= true;
772 __setup("pd_ignore_unused", pd_ignore_unused_setup
);
775 * pm_genpd_poweroff_unused - Power off all PM domains with no devices in use.
777 void pm_genpd_poweroff_unused(void)
779 struct generic_pm_domain
*genpd
;
781 if (pd_ignore_unused
) {
782 pr_warn("genpd: Not disabling unused power domains\n");
786 mutex_lock(&gpd_list_lock
);
788 list_for_each_entry(genpd
, &gpd_list
, gpd_list_node
)
789 genpd_queue_power_off_work(genpd
);
791 mutex_unlock(&gpd_list_lock
);
794 static int __init
genpd_poweroff_unused(void)
796 pm_genpd_poweroff_unused();
799 late_initcall(genpd_poweroff_unused
);
801 #ifdef CONFIG_PM_SLEEP
804 * pm_genpd_present - Check if the given PM domain has been initialized.
805 * @genpd: PM domain to check.
807 static bool pm_genpd_present(const struct generic_pm_domain
*genpd
)
809 const struct generic_pm_domain
*gpd
;
811 if (IS_ERR_OR_NULL(genpd
))
814 list_for_each_entry(gpd
, &gpd_list
, gpd_list_node
)
821 static bool genpd_dev_active_wakeup(struct generic_pm_domain
*genpd
,
824 return GENPD_DEV_CALLBACK(genpd
, bool, active_wakeup
, dev
);
828 * pm_genpd_sync_poweroff - Synchronously power off a PM domain and its masters.
829 * @genpd: PM domain to power off, if possible.
831 * Check if the given PM domain can be powered off (during system suspend or
832 * hibernation) and do that if so. Also, in that case propagate to its masters.
834 * This function is only called in "noirq" and "syscore" stages of system power
835 * transitions, so it need not acquire locks (all of the "noirq" callbacks are
836 * executed sequentially, so it is guaranteed that it will never run twice in
839 static void pm_genpd_sync_poweroff(struct generic_pm_domain
*genpd
)
841 struct gpd_link
*link
;
843 if (genpd
->status
== GPD_STATE_POWER_OFF
)
846 if (genpd
->suspended_count
!= genpd
->device_count
847 || atomic_read(&genpd
->sd_count
) > 0)
850 genpd_power_off(genpd
);
852 genpd
->status
= GPD_STATE_POWER_OFF
;
854 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
855 genpd_sd_counter_dec(link
->master
);
856 pm_genpd_sync_poweroff(link
->master
);
861 * pm_genpd_sync_poweron - Synchronously power on a PM domain and its masters.
862 * @genpd: PM domain to power on.
864 * This function is only called in "noirq" and "syscore" stages of system power
865 * transitions, so it need not acquire locks (all of the "noirq" callbacks are
866 * executed sequentially, so it is guaranteed that it will never run twice in
869 static void pm_genpd_sync_poweron(struct generic_pm_domain
*genpd
)
871 struct gpd_link
*link
;
873 if (genpd
->status
!= GPD_STATE_POWER_OFF
)
876 list_for_each_entry(link
, &genpd
->slave_links
, slave_node
) {
877 pm_genpd_sync_poweron(link
->master
);
878 genpd_sd_counter_inc(link
->master
);
881 genpd_power_on(genpd
);
883 genpd
->status
= GPD_STATE_ACTIVE
;
887 * resume_needed - Check whether to resume a device before system suspend.
888 * @dev: Device to check.
889 * @genpd: PM domain the device belongs to.
891 * There are two cases in which a device that can wake up the system from sleep
892 * states should be resumed by pm_genpd_prepare(): (1) if the device is enabled
893 * to wake up the system and it has to remain active for this purpose while the
894 * system is in the sleep state and (2) if the device is not enabled to wake up
895 * the system from sleep states and it generally doesn't generate wakeup signals
896 * by itself (those signals are generated on its behalf by other parts of the
897 * system). In the latter case it may be necessary to reconfigure the device's
898 * wakeup settings during system suspend, because it may have been set up to
899 * signal remote wakeup from the system's working state as needed by runtime PM.
900 * Return 'true' in either of the above cases.
902 static bool resume_needed(struct device
*dev
, struct generic_pm_domain
*genpd
)
906 if (!device_can_wakeup(dev
))
909 active_wakeup
= genpd_dev_active_wakeup(genpd
, dev
);
910 return device_may_wakeup(dev
) ? active_wakeup
: !active_wakeup
;
914 * pm_genpd_prepare - Start power transition of a device in a PM domain.
915 * @dev: Device to start the transition of.
917 * Start a power transition of a device (during a system-wide power transition)
918 * under the assumption that its pm_domain field points to the domain member of
919 * an object of type struct generic_pm_domain representing a PM domain
920 * consisting of I/O devices.
922 static int pm_genpd_prepare(struct device
*dev
)
924 struct generic_pm_domain
*genpd
;
927 dev_dbg(dev
, "%s()\n", __func__
);
929 genpd
= dev_to_genpd(dev
);
934 * If a wakeup request is pending for the device, it should be woken up
935 * at this point and a system wakeup event should be reported if it's
936 * set up to wake up the system from sleep states.
938 pm_runtime_get_noresume(dev
);
939 if (pm_runtime_barrier(dev
) && device_may_wakeup(dev
))
940 pm_wakeup_event(dev
, 0);
942 if (pm_wakeup_pending()) {
947 if (resume_needed(dev
, genpd
))
948 pm_runtime_resume(dev
);
950 genpd_acquire_lock(genpd
);
952 if (genpd
->prepared_count
++ == 0) {
953 genpd
->suspended_count
= 0;
954 genpd
->suspend_power_off
= genpd
->status
== GPD_STATE_POWER_OFF
;
957 genpd_release_lock(genpd
);
959 if (genpd
->suspend_power_off
) {
960 pm_runtime_put_noidle(dev
);
965 * The PM domain must be in the GPD_STATE_ACTIVE state at this point,
966 * so pm_genpd_poweron() will return immediately, but if the device
967 * is suspended (e.g. it's been stopped by genpd_stop_dev()), we need
968 * to make it operational.
970 pm_runtime_resume(dev
);
971 __pm_runtime_disable(dev
, false);
973 ret
= pm_generic_prepare(dev
);
975 mutex_lock(&genpd
->lock
);
977 if (--genpd
->prepared_count
== 0)
978 genpd
->suspend_power_off
= false;
980 mutex_unlock(&genpd
->lock
);
981 pm_runtime_enable(dev
);
989 * pm_genpd_suspend - Suspend a device belonging to an I/O PM domain.
990 * @dev: Device to suspend.
992 * Suspend a device under the assumption that its pm_domain field points to the
993 * domain member of an object of type struct generic_pm_domain representing
994 * a PM domain consisting of I/O devices.
996 static int pm_genpd_suspend(struct device
*dev
)
998 struct generic_pm_domain
*genpd
;
1000 dev_dbg(dev
, "%s()\n", __func__
);
1002 genpd
= dev_to_genpd(dev
);
1006 return genpd
->suspend_power_off
? 0 : pm_generic_suspend(dev
);
1010 * pm_genpd_suspend_late - Late suspend of a device from an I/O PM domain.
1011 * @dev: Device to suspend.
1013 * Carry out a late suspend of a device under the assumption that its
1014 * pm_domain field points to the domain member of an object of type
1015 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
1017 static int pm_genpd_suspend_late(struct device
*dev
)
1019 struct generic_pm_domain
*genpd
;
1021 dev_dbg(dev
, "%s()\n", __func__
);
1023 genpd
= dev_to_genpd(dev
);
1027 return genpd
->suspend_power_off
? 0 : pm_generic_suspend_late(dev
);
1031 * pm_genpd_suspend_noirq - Completion of suspend of device in an I/O PM domain.
1032 * @dev: Device to suspend.
1034 * Stop the device and remove power from the domain if all devices in it have
1037 static int pm_genpd_suspend_noirq(struct device
*dev
)
1039 struct generic_pm_domain
*genpd
;
1041 dev_dbg(dev
, "%s()\n", __func__
);
1043 genpd
= dev_to_genpd(dev
);
1047 if (genpd
->suspend_power_off
1048 || (dev
->power
.wakeup_path
&& genpd_dev_active_wakeup(genpd
, dev
)))
1051 genpd_stop_dev(genpd
, dev
);
1054 * Since all of the "noirq" callbacks are executed sequentially, it is
1055 * guaranteed that this function will never run twice in parallel for
1056 * the same PM domain, so it is not necessary to use locking here.
1058 genpd
->suspended_count
++;
1059 pm_genpd_sync_poweroff(genpd
);
1065 * pm_genpd_resume_noirq - Start of resume of device in an I/O PM domain.
1066 * @dev: Device to resume.
1068 * Restore power to the device's PM domain, if necessary, and start the device.
1070 static int pm_genpd_resume_noirq(struct device
*dev
)
1072 struct generic_pm_domain
*genpd
;
1074 dev_dbg(dev
, "%s()\n", __func__
);
1076 genpd
= dev_to_genpd(dev
);
1080 if (genpd
->suspend_power_off
1081 || (dev
->power
.wakeup_path
&& genpd_dev_active_wakeup(genpd
, dev
)))
1085 * Since all of the "noirq" callbacks are executed sequentially, it is
1086 * guaranteed that this function will never run twice in parallel for
1087 * the same PM domain, so it is not necessary to use locking here.
1089 pm_genpd_sync_poweron(genpd
);
1090 genpd
->suspended_count
--;
1092 return genpd_start_dev(genpd
, dev
);
1096 * pm_genpd_resume_early - Early resume of a device in an I/O PM domain.
1097 * @dev: Device to resume.
1099 * Carry out an early resume of a device under the assumption that its
1100 * pm_domain field points to the domain member of an object of type
1101 * struct generic_pm_domain representing a power domain consisting of I/O
1104 static int pm_genpd_resume_early(struct device
*dev
)
1106 struct generic_pm_domain
*genpd
;
1108 dev_dbg(dev
, "%s()\n", __func__
);
1110 genpd
= dev_to_genpd(dev
);
1114 return genpd
->suspend_power_off
? 0 : pm_generic_resume_early(dev
);
1118 * pm_genpd_resume - Resume of device in an I/O PM domain.
1119 * @dev: Device to resume.
1121 * Resume a device under the assumption that its pm_domain field points to the
1122 * domain member of an object of type struct generic_pm_domain representing
1123 * a power domain consisting of I/O devices.
1125 static int pm_genpd_resume(struct device
*dev
)
1127 struct generic_pm_domain
*genpd
;
1129 dev_dbg(dev
, "%s()\n", __func__
);
1131 genpd
= dev_to_genpd(dev
);
1135 return genpd
->suspend_power_off
? 0 : pm_generic_resume(dev
);
1139 * pm_genpd_freeze - Freezing a device in an I/O PM domain.
1140 * @dev: Device to freeze.
1142 * Freeze a device under the assumption that its pm_domain field points to the
1143 * domain member of an object of type struct generic_pm_domain representing
1144 * a power domain consisting of I/O devices.
1146 static int pm_genpd_freeze(struct device
*dev
)
1148 struct generic_pm_domain
*genpd
;
1150 dev_dbg(dev
, "%s()\n", __func__
);
1152 genpd
= dev_to_genpd(dev
);
1156 return genpd
->suspend_power_off
? 0 : pm_generic_freeze(dev
);
1160 * pm_genpd_freeze_late - Late freeze of a device in an I/O PM domain.
1161 * @dev: Device to freeze.
1163 * Carry out a late freeze of a device under the assumption that its
1164 * pm_domain field points to the domain member of an object of type
1165 * struct generic_pm_domain representing a power domain consisting of I/O
1168 static int pm_genpd_freeze_late(struct device
*dev
)
1170 struct generic_pm_domain
*genpd
;
1172 dev_dbg(dev
, "%s()\n", __func__
);
1174 genpd
= dev_to_genpd(dev
);
1178 return genpd
->suspend_power_off
? 0 : pm_generic_freeze_late(dev
);
1182 * pm_genpd_freeze_noirq - Completion of freezing a device in an I/O PM domain.
1183 * @dev: Device to freeze.
1185 * Carry out a late freeze of a device under the assumption that its
1186 * pm_domain field points to the domain member of an object of type
1187 * struct generic_pm_domain representing a power domain consisting of I/O
1190 static int pm_genpd_freeze_noirq(struct device
*dev
)
1192 struct generic_pm_domain
*genpd
;
1194 dev_dbg(dev
, "%s()\n", __func__
);
1196 genpd
= dev_to_genpd(dev
);
1200 return genpd
->suspend_power_off
? 0 : genpd_stop_dev(genpd
, dev
);
1204 * pm_genpd_thaw_noirq - Early thaw of device in an I/O PM domain.
1205 * @dev: Device to thaw.
1207 * Start the device, unless power has been removed from the domain already
1208 * before the system transition.
1210 static int pm_genpd_thaw_noirq(struct device
*dev
)
1212 struct generic_pm_domain
*genpd
;
1214 dev_dbg(dev
, "%s()\n", __func__
);
1216 genpd
= dev_to_genpd(dev
);
1220 return genpd
->suspend_power_off
? 0 : genpd_start_dev(genpd
, dev
);
1224 * pm_genpd_thaw_early - Early thaw of device in an I/O PM domain.
1225 * @dev: Device to thaw.
1227 * Carry out an early thaw of a device under the assumption that its
1228 * pm_domain field points to the domain member of an object of type
1229 * struct generic_pm_domain representing a power domain consisting of I/O
1232 static int pm_genpd_thaw_early(struct device
*dev
)
1234 struct generic_pm_domain
*genpd
;
1236 dev_dbg(dev
, "%s()\n", __func__
);
1238 genpd
= dev_to_genpd(dev
);
1242 return genpd
->suspend_power_off
? 0 : pm_generic_thaw_early(dev
);
1246 * pm_genpd_thaw - Thaw a device belonging to an I/O power domain.
1247 * @dev: Device to thaw.
1249 * Thaw a device under the assumption that its pm_domain field points to the
1250 * domain member of an object of type struct generic_pm_domain representing
1251 * a power domain consisting of I/O devices.
1253 static int pm_genpd_thaw(struct device
*dev
)
1255 struct generic_pm_domain
*genpd
;
1257 dev_dbg(dev
, "%s()\n", __func__
);
1259 genpd
= dev_to_genpd(dev
);
1263 return genpd
->suspend_power_off
? 0 : pm_generic_thaw(dev
);
1267 * pm_genpd_restore_noirq - Start of restore of device in an I/O PM domain.
1268 * @dev: Device to resume.
1270 * Make sure the domain will be in the same power state as before the
1271 * hibernation the system is resuming from and start the device if necessary.
1273 static int pm_genpd_restore_noirq(struct device
*dev
)
1275 struct generic_pm_domain
*genpd
;
1277 dev_dbg(dev
, "%s()\n", __func__
);
1279 genpd
= dev_to_genpd(dev
);
1284 * Since all of the "noirq" callbacks are executed sequentially, it is
1285 * guaranteed that this function will never run twice in parallel for
1286 * the same PM domain, so it is not necessary to use locking here.
1288 * At this point suspended_count == 0 means we are being run for the
1289 * first time for the given domain in the present cycle.
1291 if (genpd
->suspended_count
++ == 0) {
1293 * The boot kernel might put the domain into arbitrary state,
1294 * so make it appear as powered off to pm_genpd_sync_poweron(),
1295 * so that it tries to power it on in case it was really off.
1297 genpd
->status
= GPD_STATE_POWER_OFF
;
1298 if (genpd
->suspend_power_off
) {
1300 * If the domain was off before the hibernation, make
1301 * sure it will be off going forward.
1303 genpd_power_off(genpd
);
1309 if (genpd
->suspend_power_off
)
1312 pm_genpd_sync_poweron(genpd
);
1314 return genpd_start_dev(genpd
, dev
);
1318 * pm_genpd_complete - Complete power transition of a device in a power domain.
1319 * @dev: Device to complete the transition of.
1321 * Complete a power transition of a device (during a system-wide power
1322 * transition) under the assumption that its pm_domain field points to the
1323 * domain member of an object of type struct generic_pm_domain representing
1324 * a power domain consisting of I/O devices.
1326 static void pm_genpd_complete(struct device
*dev
)
1328 struct generic_pm_domain
*genpd
;
1331 dev_dbg(dev
, "%s()\n", __func__
);
1333 genpd
= dev_to_genpd(dev
);
1337 mutex_lock(&genpd
->lock
);
1339 run_complete
= !genpd
->suspend_power_off
;
1340 if (--genpd
->prepared_count
== 0)
1341 genpd
->suspend_power_off
= false;
1343 mutex_unlock(&genpd
->lock
);
1346 pm_generic_complete(dev
);
1347 pm_runtime_set_active(dev
);
1348 pm_runtime_enable(dev
);
1349 pm_request_idle(dev
);
1354 * genpd_syscore_switch - Switch power during system core suspend or resume.
1355 * @dev: Device that normally is marked as "always on" to switch power for.
1357 * This routine may only be called during the system core (syscore) suspend or
1358 * resume phase for devices whose "always on" flags are set.
1360 static void genpd_syscore_switch(struct device
*dev
, bool suspend
)
1362 struct generic_pm_domain
*genpd
;
1364 genpd
= dev_to_genpd(dev
);
1365 if (!pm_genpd_present(genpd
))
1369 genpd
->suspended_count
++;
1370 pm_genpd_sync_poweroff(genpd
);
1372 pm_genpd_sync_poweron(genpd
);
1373 genpd
->suspended_count
--;
1377 void pm_genpd_syscore_poweroff(struct device
*dev
)
1379 genpd_syscore_switch(dev
, true);
1381 EXPORT_SYMBOL_GPL(pm_genpd_syscore_poweroff
);
1383 void pm_genpd_syscore_poweron(struct device
*dev
)
1385 genpd_syscore_switch(dev
, false);
1387 EXPORT_SYMBOL_GPL(pm_genpd_syscore_poweron
);
1389 #else /* !CONFIG_PM_SLEEP */
1391 #define pm_genpd_prepare NULL
1392 #define pm_genpd_suspend NULL
1393 #define pm_genpd_suspend_late NULL
1394 #define pm_genpd_suspend_noirq NULL
1395 #define pm_genpd_resume_early NULL
1396 #define pm_genpd_resume_noirq NULL
1397 #define pm_genpd_resume NULL
1398 #define pm_genpd_freeze NULL
1399 #define pm_genpd_freeze_late NULL
1400 #define pm_genpd_freeze_noirq NULL
1401 #define pm_genpd_thaw_early NULL
1402 #define pm_genpd_thaw_noirq NULL
1403 #define pm_genpd_thaw NULL
1404 #define pm_genpd_restore_noirq NULL
1405 #define pm_genpd_complete NULL
1407 #endif /* CONFIG_PM_SLEEP */
1409 static struct generic_pm_domain_data
*genpd_alloc_dev_data(struct device
*dev
,
1410 struct generic_pm_domain
*genpd
,
1411 struct gpd_timing_data
*td
)
1413 struct generic_pm_domain_data
*gpd_data
;
1416 ret
= dev_pm_get_subsys_data(dev
);
1418 return ERR_PTR(ret
);
1420 gpd_data
= kzalloc(sizeof(*gpd_data
), GFP_KERNEL
);
1429 gpd_data
->base
.dev
= dev
;
1430 gpd_data
->need_restore
= -1;
1431 gpd_data
->td
.constraint_changed
= true;
1432 gpd_data
->td
.effective_constraint_ns
= -1;
1433 gpd_data
->nb
.notifier_call
= genpd_dev_pm_qos_notifier
;
1435 spin_lock_irq(&dev
->power
.lock
);
1437 if (dev
->power
.subsys_data
->domain_data
) {
1442 dev
->power
.subsys_data
->domain_data
= &gpd_data
->base
;
1443 dev
->pm_domain
= &genpd
->domain
;
1445 spin_unlock_irq(&dev
->power
.lock
);
1450 spin_unlock_irq(&dev
->power
.lock
);
1453 dev_pm_put_subsys_data(dev
);
1454 return ERR_PTR(ret
);
1457 static void genpd_free_dev_data(struct device
*dev
,
1458 struct generic_pm_domain_data
*gpd_data
)
1460 spin_lock_irq(&dev
->power
.lock
);
1462 dev
->pm_domain
= NULL
;
1463 dev
->power
.subsys_data
->domain_data
= NULL
;
1465 spin_unlock_irq(&dev
->power
.lock
);
1468 dev_pm_put_subsys_data(dev
);
1472 * __pm_genpd_add_device - Add a device to an I/O PM domain.
1473 * @genpd: PM domain to add the device to.
1474 * @dev: Device to be added.
1475 * @td: Set of PM QoS timing parameters to attach to the device.
1477 int __pm_genpd_add_device(struct generic_pm_domain
*genpd
, struct device
*dev
,
1478 struct gpd_timing_data
*td
)
1480 struct generic_pm_domain_data
*gpd_data
;
1483 dev_dbg(dev
, "%s()\n", __func__
);
1485 if (IS_ERR_OR_NULL(genpd
) || IS_ERR_OR_NULL(dev
))
1488 gpd_data
= genpd_alloc_dev_data(dev
, genpd
, td
);
1489 if (IS_ERR(gpd_data
))
1490 return PTR_ERR(gpd_data
);
1492 genpd_acquire_lock(genpd
);
1494 if (genpd
->prepared_count
> 0) {
1499 ret
= genpd
->attach_dev
? genpd
->attach_dev(genpd
, dev
) : 0;
1503 genpd
->device_count
++;
1504 genpd
->max_off_time_changed
= true;
1506 list_add_tail(&gpd_data
->base
.list_node
, &genpd
->dev_list
);
1509 genpd_release_lock(genpd
);
1512 genpd_free_dev_data(dev
, gpd_data
);
1514 dev_pm_qos_add_notifier(dev
, &gpd_data
->nb
);
1520 * __pm_genpd_name_add_device - Find I/O PM domain and add a device to it.
1521 * @domain_name: Name of the PM domain to add the device to.
1522 * @dev: Device to be added.
1523 * @td: Set of PM QoS timing parameters to attach to the device.
1525 int __pm_genpd_name_add_device(const char *domain_name
, struct device
*dev
,
1526 struct gpd_timing_data
*td
)
1528 return __pm_genpd_add_device(pm_genpd_lookup_name(domain_name
), dev
, td
);
1532 * pm_genpd_remove_device - Remove a device from an I/O PM domain.
1533 * @genpd: PM domain to remove the device from.
1534 * @dev: Device to be removed.
1536 int pm_genpd_remove_device(struct generic_pm_domain
*genpd
,
1539 struct generic_pm_domain_data
*gpd_data
;
1540 struct pm_domain_data
*pdd
;
1543 dev_dbg(dev
, "%s()\n", __func__
);
1545 if (!genpd
|| genpd
!= pm_genpd_lookup_dev(dev
))
1548 /* The above validation also means we have existing domain_data. */
1549 pdd
= dev
->power
.subsys_data
->domain_data
;
1550 gpd_data
= to_gpd_data(pdd
);
1551 dev_pm_qos_remove_notifier(dev
, &gpd_data
->nb
);
1553 genpd_acquire_lock(genpd
);
1555 if (genpd
->prepared_count
> 0) {
1560 genpd
->device_count
--;
1561 genpd
->max_off_time_changed
= true;
1563 if (genpd
->detach_dev
)
1564 genpd
->detach_dev(genpd
, dev
);
1566 list_del_init(&pdd
->list_node
);
1568 genpd_release_lock(genpd
);
1570 genpd_free_dev_data(dev
, gpd_data
);
1575 genpd_release_lock(genpd
);
1576 dev_pm_qos_add_notifier(dev
, &gpd_data
->nb
);
1582 * pm_genpd_add_subdomain - Add a subdomain to an I/O PM domain.
1583 * @genpd: Master PM domain to add the subdomain to.
1584 * @subdomain: Subdomain to be added.
1586 int pm_genpd_add_subdomain(struct generic_pm_domain
*genpd
,
1587 struct generic_pm_domain
*subdomain
)
1589 struct gpd_link
*link
;
1592 if (IS_ERR_OR_NULL(genpd
) || IS_ERR_OR_NULL(subdomain
)
1593 || genpd
== subdomain
)
1597 genpd_acquire_lock(genpd
);
1598 mutex_lock_nested(&subdomain
->lock
, SINGLE_DEPTH_NESTING
);
1600 if (subdomain
->status
!= GPD_STATE_POWER_OFF
1601 && subdomain
->status
!= GPD_STATE_ACTIVE
) {
1602 mutex_unlock(&subdomain
->lock
);
1603 genpd_release_lock(genpd
);
1607 if (genpd
->status
== GPD_STATE_POWER_OFF
1608 && subdomain
->status
!= GPD_STATE_POWER_OFF
) {
1613 list_for_each_entry(link
, &genpd
->master_links
, master_node
) {
1614 if (link
->slave
== subdomain
&& link
->master
== genpd
) {
1620 link
= kzalloc(sizeof(*link
), GFP_KERNEL
);
1625 link
->master
= genpd
;
1626 list_add_tail(&link
->master_node
, &genpd
->master_links
);
1627 link
->slave
= subdomain
;
1628 list_add_tail(&link
->slave_node
, &subdomain
->slave_links
);
1629 if (subdomain
->status
!= GPD_STATE_POWER_OFF
)
1630 genpd_sd_counter_inc(genpd
);
1633 mutex_unlock(&subdomain
->lock
);
1634 genpd_release_lock(genpd
);
1640 * pm_genpd_add_subdomain_names - Add a subdomain to an I/O PM domain.
1641 * @master_name: Name of the master PM domain to add the subdomain to.
1642 * @subdomain_name: Name of the subdomain to be added.
1644 int pm_genpd_add_subdomain_names(const char *master_name
,
1645 const char *subdomain_name
)
1647 struct generic_pm_domain
*master
= NULL
, *subdomain
= NULL
, *gpd
;
1649 if (IS_ERR_OR_NULL(master_name
) || IS_ERR_OR_NULL(subdomain_name
))
1652 mutex_lock(&gpd_list_lock
);
1653 list_for_each_entry(gpd
, &gpd_list
, gpd_list_node
) {
1654 if (!master
&& !strcmp(gpd
->name
, master_name
))
1657 if (!subdomain
&& !strcmp(gpd
->name
, subdomain_name
))
1660 if (master
&& subdomain
)
1663 mutex_unlock(&gpd_list_lock
);
1665 return pm_genpd_add_subdomain(master
, subdomain
);
1669 * pm_genpd_remove_subdomain - Remove a subdomain from an I/O PM domain.
1670 * @genpd: Master PM domain to remove the subdomain from.
1671 * @subdomain: Subdomain to be removed.
1673 int pm_genpd_remove_subdomain(struct generic_pm_domain
*genpd
,
1674 struct generic_pm_domain
*subdomain
)
1676 struct gpd_link
*link
;
1679 if (IS_ERR_OR_NULL(genpd
) || IS_ERR_OR_NULL(subdomain
))
1683 genpd_acquire_lock(genpd
);
1685 list_for_each_entry(link
, &genpd
->master_links
, master_node
) {
1686 if (link
->slave
!= subdomain
)
1689 mutex_lock_nested(&subdomain
->lock
, SINGLE_DEPTH_NESTING
);
1691 if (subdomain
->status
!= GPD_STATE_POWER_OFF
1692 && subdomain
->status
!= GPD_STATE_ACTIVE
) {
1693 mutex_unlock(&subdomain
->lock
);
1694 genpd_release_lock(genpd
);
1698 list_del(&link
->master_node
);
1699 list_del(&link
->slave_node
);
1701 if (subdomain
->status
!= GPD_STATE_POWER_OFF
)
1702 genpd_sd_counter_dec(genpd
);
1704 mutex_unlock(&subdomain
->lock
);
1710 genpd_release_lock(genpd
);
1716 * pm_genpd_attach_cpuidle - Connect the given PM domain with cpuidle.
1717 * @genpd: PM domain to be connected with cpuidle.
1718 * @state: cpuidle state this domain can disable/enable.
1720 * Make a PM domain behave as though it contained a CPU core, that is, instead
1721 * of calling its power down routine it will enable the given cpuidle state so
1722 * that the cpuidle subsystem can power it down (if possible and desirable).
1724 int pm_genpd_attach_cpuidle(struct generic_pm_domain
*genpd
, int state
)
1726 struct cpuidle_driver
*cpuidle_drv
;
1727 struct gpd_cpuidle_data
*cpuidle_data
;
1728 struct cpuidle_state
*idle_state
;
1731 if (IS_ERR_OR_NULL(genpd
) || state
< 0)
1734 genpd_acquire_lock(genpd
);
1736 if (genpd
->cpuidle_data
) {
1740 cpuidle_data
= kzalloc(sizeof(*cpuidle_data
), GFP_KERNEL
);
1741 if (!cpuidle_data
) {
1745 cpuidle_drv
= cpuidle_driver_ref();
1750 if (cpuidle_drv
->state_count
<= state
) {
1754 idle_state
= &cpuidle_drv
->states
[state
];
1755 if (!idle_state
->disabled
) {
1759 cpuidle_data
->idle_state
= idle_state
;
1760 cpuidle_data
->saved_exit_latency
= idle_state
->exit_latency
;
1761 genpd
->cpuidle_data
= cpuidle_data
;
1762 genpd_recalc_cpu_exit_latency(genpd
);
1765 genpd_release_lock(genpd
);
1769 cpuidle_driver_unref();
1772 kfree(cpuidle_data
);
1777 * pm_genpd_name_attach_cpuidle - Find PM domain and connect cpuidle to it.
1778 * @name: Name of the domain to connect to cpuidle.
1779 * @state: cpuidle state this domain can manipulate.
1781 int pm_genpd_name_attach_cpuidle(const char *name
, int state
)
1783 return pm_genpd_attach_cpuidle(pm_genpd_lookup_name(name
), state
);
1787 * pm_genpd_detach_cpuidle - Remove the cpuidle connection from a PM domain.
1788 * @genpd: PM domain to remove the cpuidle connection from.
1790 * Remove the cpuidle connection set up by pm_genpd_attach_cpuidle() from the
1793 int pm_genpd_detach_cpuidle(struct generic_pm_domain
*genpd
)
1795 struct gpd_cpuidle_data
*cpuidle_data
;
1796 struct cpuidle_state
*idle_state
;
1799 if (IS_ERR_OR_NULL(genpd
))
1802 genpd_acquire_lock(genpd
);
1804 cpuidle_data
= genpd
->cpuidle_data
;
1805 if (!cpuidle_data
) {
1809 idle_state
= cpuidle_data
->idle_state
;
1810 if (!idle_state
->disabled
) {
1814 idle_state
->exit_latency
= cpuidle_data
->saved_exit_latency
;
1815 cpuidle_driver_unref();
1816 genpd
->cpuidle_data
= NULL
;
1817 kfree(cpuidle_data
);
1820 genpd_release_lock(genpd
);
1825 * pm_genpd_name_detach_cpuidle - Find PM domain and disconnect cpuidle from it.
1826 * @name: Name of the domain to disconnect cpuidle from.
1828 int pm_genpd_name_detach_cpuidle(const char *name
)
1830 return pm_genpd_detach_cpuidle(pm_genpd_lookup_name(name
));
1833 /* Default device callbacks for generic PM domains. */
1836 * pm_genpd_default_save_state - Default "save device state" for PM domains.
1837 * @dev: Device to handle.
1839 static int pm_genpd_default_save_state(struct device
*dev
)
1841 int (*cb
)(struct device
*__dev
);
1843 if (dev
->type
&& dev
->type
->pm
)
1844 cb
= dev
->type
->pm
->runtime_suspend
;
1845 else if (dev
->class && dev
->class->pm
)
1846 cb
= dev
->class->pm
->runtime_suspend
;
1847 else if (dev
->bus
&& dev
->bus
->pm
)
1848 cb
= dev
->bus
->pm
->runtime_suspend
;
1852 if (!cb
&& dev
->driver
&& dev
->driver
->pm
)
1853 cb
= dev
->driver
->pm
->runtime_suspend
;
1855 return cb
? cb(dev
) : 0;
1859 * pm_genpd_default_restore_state - Default PM domains "restore device state".
1860 * @dev: Device to handle.
1862 static int pm_genpd_default_restore_state(struct device
*dev
)
1864 int (*cb
)(struct device
*__dev
);
1866 if (dev
->type
&& dev
->type
->pm
)
1867 cb
= dev
->type
->pm
->runtime_resume
;
1868 else if (dev
->class && dev
->class->pm
)
1869 cb
= dev
->class->pm
->runtime_resume
;
1870 else if (dev
->bus
&& dev
->bus
->pm
)
1871 cb
= dev
->bus
->pm
->runtime_resume
;
1875 if (!cb
&& dev
->driver
&& dev
->driver
->pm
)
1876 cb
= dev
->driver
->pm
->runtime_resume
;
1878 return cb
? cb(dev
) : 0;
1882 * pm_genpd_init - Initialize a generic I/O PM domain object.
1883 * @genpd: PM domain object to initialize.
1884 * @gov: PM domain governor to associate with the domain (may be NULL).
1885 * @is_off: Initial value of the domain's power_is_off field.
1887 void pm_genpd_init(struct generic_pm_domain
*genpd
,
1888 struct dev_power_governor
*gov
, bool is_off
)
1890 if (IS_ERR_OR_NULL(genpd
))
1893 INIT_LIST_HEAD(&genpd
->master_links
);
1894 INIT_LIST_HEAD(&genpd
->slave_links
);
1895 INIT_LIST_HEAD(&genpd
->dev_list
);
1896 mutex_init(&genpd
->lock
);
1898 INIT_WORK(&genpd
->power_off_work
, genpd_power_off_work_fn
);
1899 genpd
->in_progress
= 0;
1900 atomic_set(&genpd
->sd_count
, 0);
1901 genpd
->status
= is_off
? GPD_STATE_POWER_OFF
: GPD_STATE_ACTIVE
;
1902 init_waitqueue_head(&genpd
->status_wait_queue
);
1903 genpd
->poweroff_task
= NULL
;
1904 genpd
->resume_count
= 0;
1905 genpd
->device_count
= 0;
1906 genpd
->max_off_time_ns
= -1;
1907 genpd
->max_off_time_changed
= true;
1908 genpd
->domain
.ops
.runtime_suspend
= pm_genpd_runtime_suspend
;
1909 genpd
->domain
.ops
.runtime_resume
= pm_genpd_runtime_resume
;
1910 genpd
->domain
.ops
.prepare
= pm_genpd_prepare
;
1911 genpd
->domain
.ops
.suspend
= pm_genpd_suspend
;
1912 genpd
->domain
.ops
.suspend_late
= pm_genpd_suspend_late
;
1913 genpd
->domain
.ops
.suspend_noirq
= pm_genpd_suspend_noirq
;
1914 genpd
->domain
.ops
.resume_noirq
= pm_genpd_resume_noirq
;
1915 genpd
->domain
.ops
.resume_early
= pm_genpd_resume_early
;
1916 genpd
->domain
.ops
.resume
= pm_genpd_resume
;
1917 genpd
->domain
.ops
.freeze
= pm_genpd_freeze
;
1918 genpd
->domain
.ops
.freeze_late
= pm_genpd_freeze_late
;
1919 genpd
->domain
.ops
.freeze_noirq
= pm_genpd_freeze_noirq
;
1920 genpd
->domain
.ops
.thaw_noirq
= pm_genpd_thaw_noirq
;
1921 genpd
->domain
.ops
.thaw_early
= pm_genpd_thaw_early
;
1922 genpd
->domain
.ops
.thaw
= pm_genpd_thaw
;
1923 genpd
->domain
.ops
.poweroff
= pm_genpd_suspend
;
1924 genpd
->domain
.ops
.poweroff_late
= pm_genpd_suspend_late
;
1925 genpd
->domain
.ops
.poweroff_noirq
= pm_genpd_suspend_noirq
;
1926 genpd
->domain
.ops
.restore_noirq
= pm_genpd_restore_noirq
;
1927 genpd
->domain
.ops
.restore_early
= pm_genpd_resume_early
;
1928 genpd
->domain
.ops
.restore
= pm_genpd_resume
;
1929 genpd
->domain
.ops
.complete
= pm_genpd_complete
;
1930 genpd
->dev_ops
.save_state
= pm_genpd_default_save_state
;
1931 genpd
->dev_ops
.restore_state
= pm_genpd_default_restore_state
;
1933 if (genpd
->flags
& GENPD_FLAG_PM_CLK
) {
1934 genpd
->dev_ops
.stop
= pm_clk_suspend
;
1935 genpd
->dev_ops
.start
= pm_clk_resume
;
1938 mutex_lock(&gpd_list_lock
);
1939 list_add(&genpd
->gpd_list_node
, &gpd_list
);
1940 mutex_unlock(&gpd_list_lock
);
1943 #ifdef CONFIG_PM_GENERIC_DOMAINS_OF
1945 * Device Tree based PM domain providers.
1947 * The code below implements generic device tree based PM domain providers that
1948 * bind device tree nodes with generic PM domains registered in the system.
1950 * Any driver that registers generic PM domains and needs to support binding of
1951 * devices to these domains is supposed to register a PM domain provider, which
1952 * maps a PM domain specifier retrieved from the device tree to a PM domain.
1954 * Two simple mapping functions have been provided for convenience:
1955 * - __of_genpd_xlate_simple() for 1:1 device tree node to PM domain mapping.
1956 * - __of_genpd_xlate_onecell() for mapping of multiple PM domains per node by
1961 * struct of_genpd_provider - PM domain provider registration structure
1962 * @link: Entry in global list of PM domain providers
1963 * @node: Pointer to device tree node of PM domain provider
1964 * @xlate: Provider-specific xlate callback mapping a set of specifier cells
1966 * @data: context pointer to be passed into @xlate callback
1968 struct of_genpd_provider
{
1969 struct list_head link
;
1970 struct device_node
*node
;
1971 genpd_xlate_t xlate
;
1975 /* List of registered PM domain providers. */
1976 static LIST_HEAD(of_genpd_providers
);
1977 /* Mutex to protect the list above. */
1978 static DEFINE_MUTEX(of_genpd_mutex
);
1981 * __of_genpd_xlate_simple() - Xlate function for direct node-domain mapping
1982 * @genpdspec: OF phandle args to map into a PM domain
1983 * @data: xlate function private data - pointer to struct generic_pm_domain
1985 * This is a generic xlate function that can be used to model PM domains that
1986 * have their own device tree nodes. The private data of xlate function needs
1987 * to be a valid pointer to struct generic_pm_domain.
1989 struct generic_pm_domain
*__of_genpd_xlate_simple(
1990 struct of_phandle_args
*genpdspec
,
1993 if (genpdspec
->args_count
!= 0)
1994 return ERR_PTR(-EINVAL
);
1997 EXPORT_SYMBOL_GPL(__of_genpd_xlate_simple
);
2000 * __of_genpd_xlate_onecell() - Xlate function using a single index.
2001 * @genpdspec: OF phandle args to map into a PM domain
2002 * @data: xlate function private data - pointer to struct genpd_onecell_data
2004 * This is a generic xlate function that can be used to model simple PM domain
2005 * controllers that have one device tree node and provide multiple PM domains.
2006 * A single cell is used as an index into an array of PM domains specified in
2007 * the genpd_onecell_data struct when registering the provider.
2009 struct generic_pm_domain
*__of_genpd_xlate_onecell(
2010 struct of_phandle_args
*genpdspec
,
2013 struct genpd_onecell_data
*genpd_data
= data
;
2014 unsigned int idx
= genpdspec
->args
[0];
2016 if (genpdspec
->args_count
!= 1)
2017 return ERR_PTR(-EINVAL
);
2019 if (idx
>= genpd_data
->num_domains
) {
2020 pr_err("%s: invalid domain index %u\n", __func__
, idx
);
2021 return ERR_PTR(-EINVAL
);
2024 if (!genpd_data
->domains
[idx
])
2025 return ERR_PTR(-ENOENT
);
2027 return genpd_data
->domains
[idx
];
2029 EXPORT_SYMBOL_GPL(__of_genpd_xlate_onecell
);
2032 * __of_genpd_add_provider() - Register a PM domain provider for a node
2033 * @np: Device node pointer associated with the PM domain provider.
2034 * @xlate: Callback for decoding PM domain from phandle arguments.
2035 * @data: Context pointer for @xlate callback.
2037 int __of_genpd_add_provider(struct device_node
*np
, genpd_xlate_t xlate
,
2040 struct of_genpd_provider
*cp
;
2042 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
2046 cp
->node
= of_node_get(np
);
2050 mutex_lock(&of_genpd_mutex
);
2051 list_add(&cp
->link
, &of_genpd_providers
);
2052 mutex_unlock(&of_genpd_mutex
);
2053 pr_debug("Added domain provider from %s\n", np
->full_name
);
2057 EXPORT_SYMBOL_GPL(__of_genpd_add_provider
);
2060 * of_genpd_del_provider() - Remove a previously registered PM domain provider
2061 * @np: Device node pointer associated with the PM domain provider
2063 void of_genpd_del_provider(struct device_node
*np
)
2065 struct of_genpd_provider
*cp
;
2067 mutex_lock(&of_genpd_mutex
);
2068 list_for_each_entry(cp
, &of_genpd_providers
, link
) {
2069 if (cp
->node
== np
) {
2070 list_del(&cp
->link
);
2071 of_node_put(cp
->node
);
2076 mutex_unlock(&of_genpd_mutex
);
2078 EXPORT_SYMBOL_GPL(of_genpd_del_provider
);
2081 * of_genpd_get_from_provider() - Look-up PM domain
2082 * @genpdspec: OF phandle args to use for look-up
2084 * Looks for a PM domain provider under the node specified by @genpdspec and if
2085 * found, uses xlate function of the provider to map phandle args to a PM
2088 * Returns a valid pointer to struct generic_pm_domain on success or ERR_PTR()
2091 struct generic_pm_domain
*of_genpd_get_from_provider(
2092 struct of_phandle_args
*genpdspec
)
2094 struct generic_pm_domain
*genpd
= ERR_PTR(-ENOENT
);
2095 struct of_genpd_provider
*provider
;
2097 mutex_lock(&of_genpd_mutex
);
2099 /* Check if we have such a provider in our array */
2100 list_for_each_entry(provider
, &of_genpd_providers
, link
) {
2101 if (provider
->node
== genpdspec
->np
)
2102 genpd
= provider
->xlate(genpdspec
, provider
->data
);
2107 mutex_unlock(&of_genpd_mutex
);
2111 EXPORT_SYMBOL_GPL(of_genpd_get_from_provider
);
2114 * genpd_dev_pm_detach - Detach a device from its PM domain.
2115 * @dev: Device to attach.
2116 * @power_off: Currently not used
2118 * Try to locate a corresponding generic PM domain, which the device was
2119 * attached to previously. If such is found, the device is detached from it.
2121 static void genpd_dev_pm_detach(struct device
*dev
, bool power_off
)
2123 struct generic_pm_domain
*pd
;
2126 pd
= pm_genpd_lookup_dev(dev
);
2130 dev_dbg(dev
, "removing from PM domain %s\n", pd
->name
);
2133 ret
= pm_genpd_remove_device(pd
, dev
);
2140 dev_err(dev
, "failed to remove from PM domain %s: %d",
2145 /* Check if PM domain can be powered off after removing this device. */
2146 genpd_queue_power_off_work(pd
);
2149 static void genpd_dev_pm_sync(struct device
*dev
)
2151 struct generic_pm_domain
*pd
;
2153 pd
= dev_to_genpd(dev
);
2157 genpd_queue_power_off_work(pd
);
2161 * genpd_dev_pm_attach - Attach a device to its PM domain using DT.
2162 * @dev: Device to attach.
2164 * Parse device's OF node to find a PM domain specifier. If such is found,
2165 * attaches the device to retrieved pm_domain ops.
2167 * Both generic and legacy Samsung-specific DT bindings are supported to keep
2168 * backwards compatibility with existing DTBs.
2170 * Returns 0 on successfully attached PM domain or negative error code.
2172 int genpd_dev_pm_attach(struct device
*dev
)
2174 struct of_phandle_args pd_args
;
2175 struct generic_pm_domain
*pd
;
2184 ret
= of_parse_phandle_with_args(dev
->of_node
, "power-domains",
2185 "#power-domain-cells", 0, &pd_args
);
2191 * Try legacy Samsung-specific bindings
2192 * (for backwards compatibility of DT ABI)
2194 pd_args
.args_count
= 0;
2195 pd_args
.np
= of_parse_phandle(dev
->of_node
,
2196 "samsung,power-domain", 0);
2201 pd
= of_genpd_get_from_provider(&pd_args
);
2203 dev_dbg(dev
, "%s() failed to find PM domain: %ld\n",
2204 __func__
, PTR_ERR(pd
));
2205 of_node_put(dev
->of_node
);
2209 dev_dbg(dev
, "adding to PM domain %s\n", pd
->name
);
2212 ret
= pm_genpd_add_device(pd
, dev
);
2219 dev_err(dev
, "failed to add to PM domain %s: %d",
2221 of_node_put(dev
->of_node
);
2225 dev
->pm_domain
->detach
= genpd_dev_pm_detach
;
2226 dev
->pm_domain
->sync
= genpd_dev_pm_sync
;
2227 pm_genpd_poweron(pd
);
2231 EXPORT_SYMBOL_GPL(genpd_dev_pm_attach
);
2232 #endif /* CONFIG_PM_GENERIC_DOMAINS_OF */
2235 /*** debugfs support ***/
2237 #ifdef CONFIG_PM_ADVANCED_DEBUG
2238 #include <linux/pm.h>
2239 #include <linux/device.h>
2240 #include <linux/debugfs.h>
2241 #include <linux/seq_file.h>
2242 #include <linux/init.h>
2243 #include <linux/kobject.h>
2244 static struct dentry
*pm_genpd_debugfs_dir
;
2247 * TODO: This function is a slightly modified version of rtpm_status_show
2248 * from sysfs.c, so generalize it.
2250 static void rtpm_status_str(struct seq_file
*s
, struct device
*dev
)
2252 static const char * const status_lookup
[] = {
2253 [RPM_ACTIVE
] = "active",
2254 [RPM_RESUMING
] = "resuming",
2255 [RPM_SUSPENDED
] = "suspended",
2256 [RPM_SUSPENDING
] = "suspending"
2260 if (dev
->power
.runtime_error
)
2262 else if (dev
->power
.disable_depth
)
2264 else if (dev
->power
.runtime_status
< ARRAY_SIZE(status_lookup
))
2265 p
= status_lookup
[dev
->power
.runtime_status
];
2272 static int pm_genpd_summary_one(struct seq_file
*s
,
2273 struct generic_pm_domain
*genpd
)
2275 static const char * const status_lookup
[] = {
2276 [GPD_STATE_ACTIVE
] = "on",
2277 [GPD_STATE_WAIT_MASTER
] = "wait-master",
2278 [GPD_STATE_BUSY
] = "busy",
2279 [GPD_STATE_REPEAT
] = "off-in-progress",
2280 [GPD_STATE_POWER_OFF
] = "off"
2282 struct pm_domain_data
*pm_data
;
2283 const char *kobj_path
;
2284 struct gpd_link
*link
;
2287 ret
= mutex_lock_interruptible(&genpd
->lock
);
2289 return -ERESTARTSYS
;
2291 if (WARN_ON(genpd
->status
>= ARRAY_SIZE(status_lookup
)))
2293 seq_printf(s
, "%-30s %-15s ", genpd
->name
, status_lookup
[genpd
->status
]);
2296 * Modifications on the list require holding locks on both
2297 * master and slave, so we are safe.
2298 * Also genpd->name is immutable.
2300 list_for_each_entry(link
, &genpd
->master_links
, master_node
) {
2301 seq_printf(s
, "%s", link
->slave
->name
);
2302 if (!list_is_last(&link
->master_node
, &genpd
->master_links
))
2306 list_for_each_entry(pm_data
, &genpd
->dev_list
, list_node
) {
2307 kobj_path
= kobject_get_path(&pm_data
->dev
->kobj
, GFP_KERNEL
);
2308 if (kobj_path
== NULL
)
2311 seq_printf(s
, "\n %-50s ", kobj_path
);
2312 rtpm_status_str(s
, pm_data
->dev
);
2318 mutex_unlock(&genpd
->lock
);
2323 static int pm_genpd_summary_show(struct seq_file
*s
, void *data
)
2325 struct generic_pm_domain
*genpd
;
2328 seq_puts(s
, " domain status slaves\n");
2329 seq_puts(s
, " /device runtime status\n");
2330 seq_puts(s
, "----------------------------------------------------------------------\n");
2332 ret
= mutex_lock_interruptible(&gpd_list_lock
);
2334 return -ERESTARTSYS
;
2336 list_for_each_entry(genpd
, &gpd_list
, gpd_list_node
) {
2337 ret
= pm_genpd_summary_one(s
, genpd
);
2341 mutex_unlock(&gpd_list_lock
);
2346 static int pm_genpd_summary_open(struct inode
*inode
, struct file
*file
)
2348 return single_open(file
, pm_genpd_summary_show
, NULL
);
2351 static const struct file_operations pm_genpd_summary_fops
= {
2352 .open
= pm_genpd_summary_open
,
2354 .llseek
= seq_lseek
,
2355 .release
= single_release
,
2358 static int __init
pm_genpd_debug_init(void)
2362 pm_genpd_debugfs_dir
= debugfs_create_dir("pm_genpd", NULL
);
2364 if (!pm_genpd_debugfs_dir
)
2367 d
= debugfs_create_file("pm_genpd_summary", S_IRUGO
,
2368 pm_genpd_debugfs_dir
, NULL
, &pm_genpd_summary_fops
);
2374 late_initcall(pm_genpd_debug_init
);
2376 static void __exit
pm_genpd_debug_exit(void)
2378 debugfs_remove_recursive(pm_genpd_debugfs_dir
);
2380 __exitcall(pm_genpd_debug_exit
);
2381 #endif /* CONFIG_PM_ADVANCED_DEBUG */