]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/base/power/domain.c
Linux 4.2-rc1
[mirror_ubuntu-jammy-kernel.git] / drivers / base / power / domain.c
CommitLineData
f721889f
RW
1/*
2 * drivers/base/power/domain.c - Common code related to device power domains.
3 *
4 * Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
5 *
6 * This file is released under the GPLv2.
7 */
8
f721889f
RW
9#include <linux/kernel.h>
10#include <linux/io.h>
aa42240a 11#include <linux/platform_device.h>
f721889f
RW
12#include <linux/pm_runtime.h>
13#include <linux/pm_domain.h>
6ff7bb0d 14#include <linux/pm_qos.h>
c11f6f5b 15#include <linux/pm_clock.h>
f721889f
RW
16#include <linux/slab.h>
17#include <linux/err.h>
17b75eca
RW
18#include <linux/sched.h>
19#include <linux/suspend.h>
d5e4cbfe
RW
20#include <linux/export.h>
21
22#define GENPD_DEV_CALLBACK(genpd, type, callback, dev) \
23({ \
24 type (*__routine)(struct device *__d); \
25 type __ret = (type)0; \
26 \
27 __routine = genpd->dev_ops.callback; \
28 if (__routine) { \
29 __ret = __routine(dev); \
d5e4cbfe
RW
30 } \
31 __ret; \
32})
f721889f 33
0140d8bd
RW
34#define GENPD_DEV_TIMED_CALLBACK(genpd, type, callback, dev, field, name) \
35({ \
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)); \
6ff7bb0d
RW
39 struct gpd_timing_data *__td = &dev_gpd_data(dev)->td; \
40 if (!__retval && __elapsed > __td->field) { \
41 __td->field = __elapsed; \
7d1af287 42 dev_dbg(dev, name " latency exceeded, new value %lld ns\n", \
0140d8bd 43 __elapsed); \
6ff7bb0d
RW
44 genpd->max_off_time_changed = true; \
45 __td->constraint_changed = true; \
0140d8bd
RW
46 } \
47 __retval; \
48})
49
5125bbf3
RW
50static LIST_HEAD(gpd_list);
51static DEFINE_MUTEX(gpd_list_lock);
52
8bc0251d
RW
53static struct generic_pm_domain *pm_genpd_lookup_name(const char *domain_name)
54{
55 struct generic_pm_domain *genpd = NULL, *gpd;
56
57 if (IS_ERR_OR_NULL(domain_name))
58 return NULL;
59
60 mutex_lock(&gpd_list_lock);
61 list_for_each_entry(gpd, &gpd_list, gpd_list_node) {
62 if (!strcmp(gpd->name, domain_name)) {
63 genpd = gpd;
64 break;
65 }
66 }
67 mutex_unlock(&gpd_list_lock);
68 return genpd;
69}
70
446d999c
RK
71/*
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.
76 */
77struct generic_pm_domain *pm_genpd_lookup_dev(struct device *dev)
78{
79 struct generic_pm_domain *genpd = NULL, *gpd;
80
81 if (IS_ERR_OR_NULL(dev) || IS_ERR_OR_NULL(dev->pm_domain))
82 return NULL;
83
84 mutex_lock(&gpd_list_lock);
85 list_for_each_entry(gpd, &gpd_list, gpd_list_node) {
86 if (&gpd->domain == dev->pm_domain) {
87 genpd = gpd;
88 break;
89 }
90 }
91 mutex_unlock(&gpd_list_lock);
92
93 return genpd;
94}
95
96/*
97 * This should only be used where we are certain that the pm_domain
98 * attached to the device is a genpd domain.
99 */
100static struct generic_pm_domain *dev_to_genpd(struct device *dev)
5248051b
RW
101{
102 if (IS_ERR_OR_NULL(dev->pm_domain))
103 return ERR_PTR(-EINVAL);
104
596ba34b 105 return pd_to_genpd(dev->pm_domain);
5248051b 106}
f721889f 107
d5e4cbfe
RW
108static int genpd_stop_dev(struct generic_pm_domain *genpd, struct device *dev)
109{
0140d8bd
RW
110 return GENPD_DEV_TIMED_CALLBACK(genpd, int, stop, dev,
111 stop_latency_ns, "stop");
d5e4cbfe
RW
112}
113
114static int genpd_start_dev(struct generic_pm_domain *genpd, struct device *dev)
115{
0140d8bd
RW
116 return GENPD_DEV_TIMED_CALLBACK(genpd, int, start, dev,
117 start_latency_ns, "start");
d5e4cbfe
RW
118}
119
c4bb3160 120static bool genpd_sd_counter_dec(struct generic_pm_domain *genpd)
f721889f 121{
c4bb3160
RW
122 bool ret = false;
123
124 if (!WARN_ON(atomic_read(&genpd->sd_count) == 0))
125 ret = !!atomic_dec_and_test(&genpd->sd_count);
126
127 return ret;
128}
129
130static void genpd_sd_counter_inc(struct generic_pm_domain *genpd)
131{
132 atomic_inc(&genpd->sd_count);
4e857c58 133 smp_mb__after_atomic();
f721889f
RW
134}
135
17b75eca
RW
136static void genpd_acquire_lock(struct generic_pm_domain *genpd)
137{
138 DEFINE_WAIT(wait);
139
140 mutex_lock(&genpd->lock);
141 /*
142 * Wait for the domain to transition into either the active,
143 * or the power off state.
144 */
145 for (;;) {
146 prepare_to_wait(&genpd->status_wait_queue, &wait,
147 TASK_UNINTERRUPTIBLE);
c6d22b37
RW
148 if (genpd->status == GPD_STATE_ACTIVE
149 || genpd->status == GPD_STATE_POWER_OFF)
17b75eca
RW
150 break;
151 mutex_unlock(&genpd->lock);
152
153 schedule();
154
155 mutex_lock(&genpd->lock);
156 }
157 finish_wait(&genpd->status_wait_queue, &wait);
158}
159
160static void genpd_release_lock(struct generic_pm_domain *genpd)
161{
162 mutex_unlock(&genpd->lock);
163}
164
c6d22b37
RW
165static void genpd_set_active(struct generic_pm_domain *genpd)
166{
167 if (genpd->resume_count == 0)
168 genpd->status = GPD_STATE_ACTIVE;
169}
170
cbc9ef02
RW
171static void genpd_recalc_cpu_exit_latency(struct generic_pm_domain *genpd)
172{
173 s64 usecs64;
174
f39cb179 175 if (!genpd->cpuidle_data)
cbc9ef02
RW
176 return;
177
178 usecs64 = genpd->power_on_latency_ns;
179 do_div(usecs64, NSEC_PER_USEC);
f39cb179
UH
180 usecs64 += genpd->cpuidle_data->saved_exit_latency;
181 genpd->cpuidle_data->idle_state->exit_latency = usecs64;
cbc9ef02
RW
182}
183
a4630c61 184static int genpd_power_on(struct generic_pm_domain *genpd, bool timed)
c8f0ea45
GU
185{
186 ktime_t time_start;
187 s64 elapsed_ns;
188 int ret;
189
190 if (!genpd->power_on)
191 return 0;
192
a4630c61
GU
193 if (!timed)
194 return genpd->power_on(genpd);
195
c8f0ea45
GU
196 time_start = ktime_get();
197 ret = genpd->power_on(genpd);
198 if (ret)
199 return ret;
200
201 elapsed_ns = ktime_to_ns(ktime_sub(ktime_get(), time_start));
202 if (elapsed_ns <= genpd->power_on_latency_ns)
203 return ret;
204
205 genpd->power_on_latency_ns = elapsed_ns;
206 genpd->max_off_time_changed = true;
207 genpd_recalc_cpu_exit_latency(genpd);
6d7d5c32
RK
208 pr_debug("%s: Power-%s latency exceeded, new value %lld ns\n",
209 genpd->name, "on", elapsed_ns);
c8f0ea45
GU
210
211 return ret;
212}
213
a4630c61 214static int genpd_power_off(struct generic_pm_domain *genpd, bool timed)
c8f0ea45
GU
215{
216 ktime_t time_start;
217 s64 elapsed_ns;
218 int ret;
219
220 if (!genpd->power_off)
221 return 0;
222
a4630c61
GU
223 if (!timed)
224 return genpd->power_off(genpd);
225
c8f0ea45
GU
226 time_start = ktime_get();
227 ret = genpd->power_off(genpd);
228 if (ret == -EBUSY)
229 return ret;
230
231 elapsed_ns = ktime_to_ns(ktime_sub(ktime_get(), time_start));
232 if (elapsed_ns <= genpd->power_off_latency_ns)
233 return ret;
234
235 genpd->power_off_latency_ns = elapsed_ns;
236 genpd->max_off_time_changed = true;
6d7d5c32
RK
237 pr_debug("%s: Power-%s latency exceeded, new value %lld ns\n",
238 genpd->name, "off", elapsed_ns);
c8f0ea45
GU
239
240 return ret;
241}
242
5248051b 243/**
5063ce15 244 * __pm_genpd_poweron - Restore power to a given PM domain and its masters.
5248051b
RW
245 * @genpd: PM domain to power up.
246 *
5063ce15 247 * Restore power to @genpd and all of its masters so that it is possible to
5248051b
RW
248 * resume a device belonging to it.
249 */
8951ef02 250static int __pm_genpd_poweron(struct generic_pm_domain *genpd)
3f241775 251 __releases(&genpd->lock) __acquires(&genpd->lock)
5248051b 252{
5063ce15 253 struct gpd_link *link;
3f241775 254 DEFINE_WAIT(wait);
5248051b
RW
255 int ret = 0;
256
5063ce15 257 /* If the domain's master is being waited for, we have to wait too. */
3f241775
RW
258 for (;;) {
259 prepare_to_wait(&genpd->status_wait_queue, &wait,
260 TASK_UNINTERRUPTIBLE);
17877eb5 261 if (genpd->status != GPD_STATE_WAIT_MASTER)
3f241775
RW
262 break;
263 mutex_unlock(&genpd->lock);
17b75eca 264
3f241775
RW
265 schedule();
266
267 mutex_lock(&genpd->lock);
268 }
269 finish_wait(&genpd->status_wait_queue, &wait);
9e08cf42 270
17b75eca 271 if (genpd->status == GPD_STATE_ACTIVE
596ba34b 272 || (genpd->prepared_count > 0 && genpd->suspend_power_off))
3f241775 273 return 0;
5248051b 274
c6d22b37
RW
275 if (genpd->status != GPD_STATE_POWER_OFF) {
276 genpd_set_active(genpd);
3f241775 277 return 0;
c6d22b37
RW
278 }
279
f39cb179 280 if (genpd->cpuidle_data) {
cbc9ef02 281 cpuidle_pause_and_lock();
f39cb179 282 genpd->cpuidle_data->idle_state->disabled = true;
cbc9ef02
RW
283 cpuidle_resume_and_unlock();
284 goto out;
285 }
286
5063ce15
RW
287 /*
288 * The list is guaranteed not to change while the loop below is being
289 * executed, unless one of the masters' .power_on() callbacks fiddles
290 * with it.
291 */
292 list_for_each_entry(link, &genpd->slave_links, slave_node) {
293 genpd_sd_counter_inc(link->master);
17877eb5 294 genpd->status = GPD_STATE_WAIT_MASTER;
3c07cbc4 295
5248051b 296 mutex_unlock(&genpd->lock);
5248051b 297
5063ce15 298 ret = pm_genpd_poweron(link->master);
9e08cf42
RW
299
300 mutex_lock(&genpd->lock);
301
3f241775
RW
302 /*
303 * The "wait for parent" status is guaranteed not to change
5063ce15 304 * while the master is powering on.
3f241775
RW
305 */
306 genpd->status = GPD_STATE_POWER_OFF;
307 wake_up_all(&genpd->status_wait_queue);
5063ce15
RW
308 if (ret) {
309 genpd_sd_counter_dec(link->master);
9e08cf42 310 goto err;
5063ce15 311 }
5248051b
RW
312 }
313
a4630c61 314 ret = genpd_power_on(genpd, true);
c8f0ea45
GU
315 if (ret)
316 goto err;
5248051b 317
cbc9ef02 318 out:
9e08cf42
RW
319 genpd_set_active(genpd);
320
3f241775 321 return 0;
9e08cf42
RW
322
323 err:
5063ce15
RW
324 list_for_each_entry_continue_reverse(link, &genpd->slave_links, slave_node)
325 genpd_sd_counter_dec(link->master);
9e08cf42 326
3f241775
RW
327 return ret;
328}
329
330/**
5063ce15 331 * pm_genpd_poweron - Restore power to a given PM domain and its masters.
3f241775
RW
332 * @genpd: PM domain to power up.
333 */
334int pm_genpd_poweron(struct generic_pm_domain *genpd)
335{
336 int ret;
337
338 mutex_lock(&genpd->lock);
339 ret = __pm_genpd_poweron(genpd);
340 mutex_unlock(&genpd->lock);
341 return ret;
5248051b
RW
342}
343
8bc0251d
RW
344/**
345 * pm_genpd_name_poweron - Restore power to a given PM domain and its masters.
346 * @domain_name: Name of the PM domain to power up.
347 */
348int pm_genpd_name_poweron(const char *domain_name)
349{
350 struct generic_pm_domain *genpd;
351
352 genpd = pm_genpd_lookup_name(domain_name);
353 return genpd ? pm_genpd_poweron(genpd) : -EINVAL;
354}
355
b3d3b9fb
SK
356static int genpd_start_dev_no_timing(struct generic_pm_domain *genpd,
357 struct device *dev)
358{
359 return GENPD_DEV_CALLBACK(genpd, int, start, dev);
360}
361
8e9afafd
RW
362static int genpd_save_dev(struct generic_pm_domain *genpd, struct device *dev)
363{
364 return GENPD_DEV_TIMED_CALLBACK(genpd, int, save_state, dev,
365 save_state_latency_ns, "state save");
366}
367
368static int genpd_restore_dev(struct generic_pm_domain *genpd, struct device *dev)
369{
370 return GENPD_DEV_TIMED_CALLBACK(genpd, int, restore_state, dev,
371 restore_state_latency_ns,
372 "state restore");
373}
374
6ff7bb0d
RW
375static int genpd_dev_pm_qos_notifier(struct notifier_block *nb,
376 unsigned long val, void *ptr)
377{
378 struct generic_pm_domain_data *gpd_data;
379 struct device *dev;
380
381 gpd_data = container_of(nb, struct generic_pm_domain_data, nb);
6ff7bb0d 382 dev = gpd_data->base.dev;
6ff7bb0d
RW
383
384 for (;;) {
385 struct generic_pm_domain *genpd;
386 struct pm_domain_data *pdd;
387
388 spin_lock_irq(&dev->power.lock);
389
390 pdd = dev->power.subsys_data ?
391 dev->power.subsys_data->domain_data : NULL;
1d5fcfec 392 if (pdd && pdd->dev) {
6ff7bb0d
RW
393 to_gpd_data(pdd)->td.constraint_changed = true;
394 genpd = dev_to_genpd(dev);
395 } else {
396 genpd = ERR_PTR(-ENODATA);
397 }
398
399 spin_unlock_irq(&dev->power.lock);
400
401 if (!IS_ERR(genpd)) {
402 mutex_lock(&genpd->lock);
403 genpd->max_off_time_changed = true;
404 mutex_unlock(&genpd->lock);
405 }
406
407 dev = dev->parent;
408 if (!dev || dev->power.ignore_children)
409 break;
410 }
411
412 return NOTIFY_DONE;
413}
414
f721889f
RW
415/**
416 * __pm_genpd_save_device - Save the pre-suspend state of a device.
4605ab65 417 * @pdd: Domain data of the device to save the state of.
f721889f
RW
418 * @genpd: PM domain the device belongs to.
419 */
4605ab65 420static int __pm_genpd_save_device(struct pm_domain_data *pdd,
f721889f 421 struct generic_pm_domain *genpd)
17b75eca 422 __releases(&genpd->lock) __acquires(&genpd->lock)
f721889f 423{
cd0ea672 424 struct generic_pm_domain_data *gpd_data = to_gpd_data(pdd);
4605ab65 425 struct device *dev = pdd->dev;
f721889f
RW
426 int ret = 0;
427
67732cd3 428 if (gpd_data->need_restore > 0)
f721889f
RW
429 return 0;
430
67732cd3
UH
431 /*
432 * If the value of the need_restore flag is still unknown at this point,
433 * we trust that pm_genpd_poweroff() has verified that the device is
434 * already runtime PM suspended.
435 */
436 if (gpd_data->need_restore < 0) {
437 gpd_data->need_restore = 1;
438 return 0;
439 }
440
17b75eca
RW
441 mutex_unlock(&genpd->lock);
442
ecf00475
RW
443 genpd_start_dev(genpd, dev);
444 ret = genpd_save_dev(genpd, dev);
445 genpd_stop_dev(genpd, dev);
f721889f 446
17b75eca
RW
447 mutex_lock(&genpd->lock);
448
f721889f 449 if (!ret)
67732cd3 450 gpd_data->need_restore = 1;
f721889f
RW
451
452 return ret;
453}
454
455/**
456 * __pm_genpd_restore_device - Restore the pre-suspend state of a device.
4605ab65 457 * @pdd: Domain data of the device to restore the state of.
f721889f
RW
458 * @genpd: PM domain the device belongs to.
459 */
4605ab65 460static void __pm_genpd_restore_device(struct pm_domain_data *pdd,
f721889f 461 struct generic_pm_domain *genpd)
17b75eca 462 __releases(&genpd->lock) __acquires(&genpd->lock)
f721889f 463{
cd0ea672 464 struct generic_pm_domain_data *gpd_data = to_gpd_data(pdd);
4605ab65 465 struct device *dev = pdd->dev;
67732cd3 466 int need_restore = gpd_data->need_restore;
f721889f 467
67732cd3 468 gpd_data->need_restore = 0;
17b75eca
RW
469 mutex_unlock(&genpd->lock);
470
ecf00475 471 genpd_start_dev(genpd, dev);
67732cd3
UH
472
473 /*
474 * Call genpd_restore_dev() for recently added devices too (need_restore
475 * is negative then).
476 */
80de3d7f
RW
477 if (need_restore)
478 genpd_restore_dev(genpd, dev);
f721889f 479
17b75eca 480 mutex_lock(&genpd->lock);
f721889f
RW
481}
482
c6d22b37
RW
483/**
484 * genpd_abort_poweroff - Check if a PM domain power off should be aborted.
485 * @genpd: PM domain to check.
486 *
487 * Return true if a PM domain's status changed to GPD_STATE_ACTIVE during
488 * a "power off" operation, which means that a "power on" has occured in the
489 * meantime, or if its resume_count field is different from zero, which means
490 * that one of its devices has been resumed in the meantime.
491 */
492static bool genpd_abort_poweroff(struct generic_pm_domain *genpd)
493{
17877eb5 494 return genpd->status == GPD_STATE_WAIT_MASTER
3f241775 495 || genpd->status == GPD_STATE_ACTIVE || genpd->resume_count > 0;
c6d22b37
RW
496}
497
56375fd4
RW
498/**
499 * genpd_queue_power_off_work - Queue up the execution of pm_genpd_poweroff().
500 * @genpd: PM domait to power off.
501 *
502 * Queue up the execution of pm_genpd_poweroff() unless it's already been done
503 * before.
504 */
d971f0b0 505static void genpd_queue_power_off_work(struct generic_pm_domain *genpd)
56375fd4 506{
a4ca26a4 507 queue_work(pm_wq, &genpd->power_off_work);
56375fd4
RW
508}
509
f721889f
RW
510/**
511 * pm_genpd_poweroff - Remove power from a given PM domain.
512 * @genpd: PM domain to power down.
513 *
514 * If all of the @genpd's devices have been suspended and all of its subdomains
515 * have been powered down, run the runtime suspend callbacks provided by all of
516 * the @genpd's devices' drivers and remove power from @genpd.
517 */
518static int pm_genpd_poweroff(struct generic_pm_domain *genpd)
17b75eca 519 __releases(&genpd->lock) __acquires(&genpd->lock)
f721889f 520{
4605ab65 521 struct pm_domain_data *pdd;
5063ce15 522 struct gpd_link *link;
f721889f 523 unsigned int not_suspended;
c6d22b37 524 int ret = 0;
f721889f 525
c6d22b37
RW
526 start:
527 /*
528 * Do not try to power off the domain in the following situations:
529 * (1) The domain is already in the "power off" state.
5063ce15 530 * (2) The domain is waiting for its master to power up.
c6d22b37 531 * (3) One of the domain's devices is being resumed right now.
3f241775 532 * (4) System suspend is in progress.
c6d22b37 533 */
3f241775 534 if (genpd->status == GPD_STATE_POWER_OFF
17877eb5 535 || genpd->status == GPD_STATE_WAIT_MASTER
3f241775 536 || genpd->resume_count > 0 || genpd->prepared_count > 0)
f721889f
RW
537 return 0;
538
c4bb3160 539 if (atomic_read(&genpd->sd_count) > 0)
f721889f
RW
540 return -EBUSY;
541
542 not_suspended = 0;
34b1f762
RW
543 list_for_each_entry(pdd, &genpd->dev_list, list_node) {
544 enum pm_qos_flags_status stat;
545
546 stat = dev_pm_qos_flags(pdd->dev,
547 PM_QOS_FLAG_NO_POWER_OFF
548 | PM_QOS_FLAG_REMOTE_WAKEUP);
549 if (stat > PM_QOS_FLAGS_NONE)
550 return -EBUSY;
551
0aa2a221 552 if (pdd->dev->driver && (!pm_runtime_suspended(pdd->dev)
feb70af0 553 || pdd->dev->power.irq_safe))
f721889f 554 not_suspended++;
34b1f762 555 }
f721889f
RW
556
557 if (not_suspended > genpd->in_progress)
558 return -EBUSY;
559
c6d22b37
RW
560 if (genpd->poweroff_task) {
561 /*
562 * Another instance of pm_genpd_poweroff() is executing
563 * callbacks, so tell it to start over and return.
564 */
565 genpd->status = GPD_STATE_REPEAT;
566 return 0;
567 }
568
f721889f
RW
569 if (genpd->gov && genpd->gov->power_down_ok) {
570 if (!genpd->gov->power_down_ok(&genpd->domain))
571 return -EAGAIN;
572 }
573
17b75eca 574 genpd->status = GPD_STATE_BUSY;
c6d22b37 575 genpd->poweroff_task = current;
17b75eca 576
4605ab65 577 list_for_each_entry_reverse(pdd, &genpd->dev_list, list_node) {
3c07cbc4 578 ret = atomic_read(&genpd->sd_count) == 0 ?
4605ab65 579 __pm_genpd_save_device(pdd, genpd) : -EBUSY;
3f241775
RW
580
581 if (genpd_abort_poweroff(genpd))
582 goto out;
583
697a7f37
RW
584 if (ret) {
585 genpd_set_active(genpd);
586 goto out;
587 }
f721889f 588
c6d22b37
RW
589 if (genpd->status == GPD_STATE_REPEAT) {
590 genpd->poweroff_task = NULL;
591 goto start;
592 }
593 }
17b75eca 594
f39cb179 595 if (genpd->cpuidle_data) {
cbc9ef02 596 /*
f39cb179
UH
597 * If cpuidle_data is set, cpuidle should turn the domain off
598 * when the CPU in it is idle. In that case we don't decrement
599 * the subdomain counts of the master domains, so that power is
600 * not removed from the current domain prematurely as a result
601 * of cutting off the masters' power.
cbc9ef02
RW
602 */
603 genpd->status = GPD_STATE_POWER_OFF;
604 cpuidle_pause_and_lock();
f39cb179 605 genpd->cpuidle_data->idle_state->disabled = false;
cbc9ef02
RW
606 cpuidle_resume_and_unlock();
607 goto out;
608 }
609
3c07cbc4
RW
610 if (genpd->power_off) {
611 if (atomic_read(&genpd->sd_count) > 0) {
612 ret = -EBUSY;
c6d22b37
RW
613 goto out;
614 }
17b75eca 615
3c07cbc4 616 /*
5063ce15
RW
617 * If sd_count > 0 at this point, one of the subdomains hasn't
618 * managed to call pm_genpd_poweron() for the master yet after
3c07cbc4
RW
619 * incrementing it. In that case pm_genpd_poweron() will wait
620 * for us to drop the lock, so we can call .power_off() and let
621 * the pm_genpd_poweron() restore power for us (this shouldn't
622 * happen very often).
623 */
a4630c61 624 ret = genpd_power_off(genpd, true);
d2805402
RW
625 if (ret == -EBUSY) {
626 genpd_set_active(genpd);
d2805402
RW
627 goto out;
628 }
629 }
f721889f 630
17b75eca 631 genpd->status = GPD_STATE_POWER_OFF;
221e9b58 632
5063ce15
RW
633 list_for_each_entry(link, &genpd->slave_links, slave_node) {
634 genpd_sd_counter_dec(link->master);
635 genpd_queue_power_off_work(link->master);
636 }
f721889f 637
c6d22b37
RW
638 out:
639 genpd->poweroff_task = NULL;
640 wake_up_all(&genpd->status_wait_queue);
641 return ret;
f721889f
RW
642}
643
644/**
645 * genpd_power_off_work_fn - Power off PM domain whose subdomain count is 0.
646 * @work: Work structure used for scheduling the execution of this function.
647 */
648static void genpd_power_off_work_fn(struct work_struct *work)
649{
650 struct generic_pm_domain *genpd;
651
652 genpd = container_of(work, struct generic_pm_domain, power_off_work);
653
17b75eca 654 genpd_acquire_lock(genpd);
f721889f 655 pm_genpd_poweroff(genpd);
17b75eca 656 genpd_release_lock(genpd);
f721889f
RW
657}
658
659/**
660 * pm_genpd_runtime_suspend - Suspend a device belonging to I/O PM domain.
661 * @dev: Device to suspend.
662 *
663 * Carry out a runtime suspend of a device under the assumption that its
664 * pm_domain field points to the domain member of an object of type
665 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
666 */
667static int pm_genpd_runtime_suspend(struct device *dev)
668{
669 struct generic_pm_domain *genpd;
67732cd3 670 struct generic_pm_domain_data *gpd_data;
b02c999a 671 bool (*stop_ok)(struct device *__dev);
d5e4cbfe 672 int ret;
f721889f
RW
673
674 dev_dbg(dev, "%s()\n", __func__);
675
5248051b
RW
676 genpd = dev_to_genpd(dev);
677 if (IS_ERR(genpd))
f721889f
RW
678 return -EINVAL;
679
b02c999a
RW
680 stop_ok = genpd->gov ? genpd->gov->stop_ok : NULL;
681 if (stop_ok && !stop_ok(dev))
682 return -EBUSY;
683
d5e4cbfe
RW
684 ret = genpd_stop_dev(genpd, dev);
685 if (ret)
686 return ret;
17b75eca 687
0aa2a221
RW
688 /*
689 * If power.irq_safe is set, this routine will be run with interrupts
690 * off, so it can't use mutexes.
691 */
692 if (dev->power.irq_safe)
693 return 0;
694
c6d22b37 695 mutex_lock(&genpd->lock);
67732cd3
UH
696
697 /*
698 * If we have an unknown state of the need_restore flag, it means none
699 * of the runtime PM callbacks has been invoked yet. Let's update the
700 * flag to reflect that the current state is active.
701 */
702 gpd_data = to_gpd_data(dev->power.subsys_data->domain_data);
703 if (gpd_data->need_restore < 0)
704 gpd_data->need_restore = 0;
705
f721889f
RW
706 genpd->in_progress++;
707 pm_genpd_poweroff(genpd);
708 genpd->in_progress--;
c6d22b37 709 mutex_unlock(&genpd->lock);
f721889f
RW
710
711 return 0;
712}
713
f721889f
RW
714/**
715 * pm_genpd_runtime_resume - Resume a device belonging to I/O PM domain.
716 * @dev: Device to resume.
717 *
718 * Carry out a runtime resume of a device under the assumption that its
719 * pm_domain field points to the domain member of an object of type
720 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
721 */
722static int pm_genpd_runtime_resume(struct device *dev)
723{
724 struct generic_pm_domain *genpd;
c6d22b37 725 DEFINE_WAIT(wait);
f721889f
RW
726 int ret;
727
728 dev_dbg(dev, "%s()\n", __func__);
729
5248051b
RW
730 genpd = dev_to_genpd(dev);
731 if (IS_ERR(genpd))
f721889f
RW
732 return -EINVAL;
733
0aa2a221
RW
734 /* If power.irq_safe, the PM domain is never powered off. */
735 if (dev->power.irq_safe)
e2e3e4e5 736 return genpd_start_dev_no_timing(genpd, dev);
0aa2a221 737
c6d22b37 738 mutex_lock(&genpd->lock);
3f241775
RW
739 ret = __pm_genpd_poweron(genpd);
740 if (ret) {
741 mutex_unlock(&genpd->lock);
742 return ret;
743 }
17b75eca 744 genpd->status = GPD_STATE_BUSY;
c6d22b37
RW
745 genpd->resume_count++;
746 for (;;) {
747 prepare_to_wait(&genpd->status_wait_queue, &wait,
748 TASK_UNINTERRUPTIBLE);
749 /*
750 * If current is the powering off task, we have been called
751 * reentrantly from one of the device callbacks, so we should
752 * not wait.
753 */
754 if (!genpd->poweroff_task || genpd->poweroff_task == current)
755 break;
756 mutex_unlock(&genpd->lock);
757
758 schedule();
759
760 mutex_lock(&genpd->lock);
761 }
762 finish_wait(&genpd->status_wait_queue, &wait);
cd0ea672 763 __pm_genpd_restore_device(dev->power.subsys_data->domain_data, genpd);
c6d22b37
RW
764 genpd->resume_count--;
765 genpd_set_active(genpd);
17b75eca 766 wake_up_all(&genpd->status_wait_queue);
c6d22b37 767 mutex_unlock(&genpd->lock);
17b75eca 768
f721889f
RW
769 return 0;
770}
771
39ac5ba5
TB
772static bool pd_ignore_unused;
773static int __init pd_ignore_unused_setup(char *__unused)
774{
775 pd_ignore_unused = true;
776 return 1;
777}
778__setup("pd_ignore_unused", pd_ignore_unused_setup);
779
17f2ae7f
RW
780/**
781 * pm_genpd_poweroff_unused - Power off all PM domains with no devices in use.
782 */
783void pm_genpd_poweroff_unused(void)
784{
785 struct generic_pm_domain *genpd;
786
39ac5ba5
TB
787 if (pd_ignore_unused) {
788 pr_warn("genpd: Not disabling unused power domains\n");
789 return;
790 }
791
17f2ae7f
RW
792 mutex_lock(&gpd_list_lock);
793
794 list_for_each_entry(genpd, &gpd_list, gpd_list_node)
795 genpd_queue_power_off_work(genpd);
796
797 mutex_unlock(&gpd_list_lock);
798}
799
2fe71dcd
UH
800static int __init genpd_poweroff_unused(void)
801{
802 pm_genpd_poweroff_unused();
803 return 0;
804}
805late_initcall(genpd_poweroff_unused);
806
596ba34b
RW
807#ifdef CONFIG_PM_SLEEP
808
77f827de
RW
809/**
810 * pm_genpd_present - Check if the given PM domain has been initialized.
811 * @genpd: PM domain to check.
812 */
895b31f3 813static bool pm_genpd_present(const struct generic_pm_domain *genpd)
77f827de 814{
895b31f3 815 const struct generic_pm_domain *gpd;
77f827de
RW
816
817 if (IS_ERR_OR_NULL(genpd))
818 return false;
819
820 list_for_each_entry(gpd, &gpd_list, gpd_list_node)
821 if (gpd == genpd)
822 return true;
823
824 return false;
825}
826
d5e4cbfe
RW
827static bool genpd_dev_active_wakeup(struct generic_pm_domain *genpd,
828 struct device *dev)
829{
830 return GENPD_DEV_CALLBACK(genpd, bool, active_wakeup, dev);
831}
832
596ba34b 833/**
5063ce15 834 * pm_genpd_sync_poweroff - Synchronously power off a PM domain and its masters.
596ba34b 835 * @genpd: PM domain to power off, if possible.
a4630c61 836 * @timed: True if latency measurements are allowed.
596ba34b
RW
837 *
838 * Check if the given PM domain can be powered off (during system suspend or
5063ce15 839 * hibernation) and do that if so. Also, in that case propagate to its masters.
596ba34b 840 *
77f827de
RW
841 * This function is only called in "noirq" and "syscore" stages of system power
842 * transitions, so it need not acquire locks (all of the "noirq" callbacks are
843 * executed sequentially, so it is guaranteed that it will never run twice in
844 * parallel).
596ba34b 845 */
a4630c61
GU
846static void pm_genpd_sync_poweroff(struct generic_pm_domain *genpd,
847 bool timed)
596ba34b 848{
5063ce15 849 struct gpd_link *link;
596ba34b 850
17b75eca 851 if (genpd->status == GPD_STATE_POWER_OFF)
596ba34b
RW
852 return;
853
c4bb3160
RW
854 if (genpd->suspended_count != genpd->device_count
855 || atomic_read(&genpd->sd_count) > 0)
596ba34b
RW
856 return;
857
a4630c61 858 genpd_power_off(genpd, timed);
596ba34b 859
17b75eca 860 genpd->status = GPD_STATE_POWER_OFF;
5063ce15
RW
861
862 list_for_each_entry(link, &genpd->slave_links, slave_node) {
863 genpd_sd_counter_dec(link->master);
a4630c61 864 pm_genpd_sync_poweroff(link->master, timed);
596ba34b
RW
865 }
866}
867
802d8b49
RW
868/**
869 * pm_genpd_sync_poweron - Synchronously power on a PM domain and its masters.
870 * @genpd: PM domain to power on.
a4630c61 871 * @timed: True if latency measurements are allowed.
802d8b49 872 *
77f827de
RW
873 * This function is only called in "noirq" and "syscore" stages of system power
874 * transitions, so it need not acquire locks (all of the "noirq" callbacks are
875 * executed sequentially, so it is guaranteed that it will never run twice in
876 * parallel).
802d8b49 877 */
a4630c61
GU
878static void pm_genpd_sync_poweron(struct generic_pm_domain *genpd,
879 bool timed)
802d8b49
RW
880{
881 struct gpd_link *link;
882
883 if (genpd->status != GPD_STATE_POWER_OFF)
884 return;
885
886 list_for_each_entry(link, &genpd->slave_links, slave_node) {
a4630c61 887 pm_genpd_sync_poweron(link->master, timed);
802d8b49
RW
888 genpd_sd_counter_inc(link->master);
889 }
890
a4630c61 891 genpd_power_on(genpd, timed);
802d8b49
RW
892
893 genpd->status = GPD_STATE_ACTIVE;
894}
895
4ecd6e65
RW
896/**
897 * resume_needed - Check whether to resume a device before system suspend.
898 * @dev: Device to check.
899 * @genpd: PM domain the device belongs to.
900 *
901 * There are two cases in which a device that can wake up the system from sleep
902 * states should be resumed by pm_genpd_prepare(): (1) if the device is enabled
903 * to wake up the system and it has to remain active for this purpose while the
904 * system is in the sleep state and (2) if the device is not enabled to wake up
905 * the system from sleep states and it generally doesn't generate wakeup signals
906 * by itself (those signals are generated on its behalf by other parts of the
907 * system). In the latter case it may be necessary to reconfigure the device's
908 * wakeup settings during system suspend, because it may have been set up to
909 * signal remote wakeup from the system's working state as needed by runtime PM.
910 * Return 'true' in either of the above cases.
911 */
912static bool resume_needed(struct device *dev, struct generic_pm_domain *genpd)
913{
914 bool active_wakeup;
915
916 if (!device_can_wakeup(dev))
917 return false;
918
d5e4cbfe 919 active_wakeup = genpd_dev_active_wakeup(genpd, dev);
4ecd6e65
RW
920 return device_may_wakeup(dev) ? active_wakeup : !active_wakeup;
921}
922
596ba34b
RW
923/**
924 * pm_genpd_prepare - Start power transition of a device in a PM domain.
925 * @dev: Device to start the transition of.
926 *
927 * Start a power transition of a device (during a system-wide power transition)
928 * under the assumption that its pm_domain field points to the domain member of
929 * an object of type struct generic_pm_domain representing a PM domain
930 * consisting of I/O devices.
931 */
932static int pm_genpd_prepare(struct device *dev)
933{
934 struct generic_pm_domain *genpd;
b6c10c84 935 int ret;
596ba34b
RW
936
937 dev_dbg(dev, "%s()\n", __func__);
938
939 genpd = dev_to_genpd(dev);
940 if (IS_ERR(genpd))
941 return -EINVAL;
942
17b75eca
RW
943 /*
944 * If a wakeup request is pending for the device, it should be woken up
945 * at this point and a system wakeup event should be reported if it's
946 * set up to wake up the system from sleep states.
947 */
948 pm_runtime_get_noresume(dev);
949 if (pm_runtime_barrier(dev) && device_may_wakeup(dev))
950 pm_wakeup_event(dev, 0);
951
952 if (pm_wakeup_pending()) {
84167035 953 pm_runtime_put(dev);
17b75eca
RW
954 return -EBUSY;
955 }
956
4ecd6e65
RW
957 if (resume_needed(dev, genpd))
958 pm_runtime_resume(dev);
959
17b75eca 960 genpd_acquire_lock(genpd);
596ba34b 961
65533bbf
RW
962 if (genpd->prepared_count++ == 0) {
963 genpd->suspended_count = 0;
17b75eca 964 genpd->suspend_power_off = genpd->status == GPD_STATE_POWER_OFF;
65533bbf 965 }
17b75eca
RW
966
967 genpd_release_lock(genpd);
596ba34b
RW
968
969 if (genpd->suspend_power_off) {
17b75eca 970 pm_runtime_put_noidle(dev);
596ba34b
RW
971 return 0;
972 }
973
974 /*
17b75eca
RW
975 * The PM domain must be in the GPD_STATE_ACTIVE state at this point,
976 * so pm_genpd_poweron() will return immediately, but if the device
d5e4cbfe 977 * is suspended (e.g. it's been stopped by genpd_stop_dev()), we need
17b75eca 978 * to make it operational.
596ba34b 979 */
17b75eca 980 pm_runtime_resume(dev);
596ba34b
RW
981 __pm_runtime_disable(dev, false);
982
b6c10c84
RW
983 ret = pm_generic_prepare(dev);
984 if (ret) {
985 mutex_lock(&genpd->lock);
986
987 if (--genpd->prepared_count == 0)
988 genpd->suspend_power_off = false;
989
990 mutex_unlock(&genpd->lock);
17b75eca 991 pm_runtime_enable(dev);
b6c10c84 992 }
17b75eca 993
84167035 994 pm_runtime_put(dev);
b6c10c84 995 return ret;
596ba34b
RW
996}
997
998/**
999 * pm_genpd_suspend - Suspend a device belonging to an I/O PM domain.
1000 * @dev: Device to suspend.
1001 *
1002 * Suspend a device under the assumption that its pm_domain field points to the
1003 * domain member of an object of type struct generic_pm_domain representing
1004 * a PM domain consisting of I/O devices.
1005 */
1006static int pm_genpd_suspend(struct device *dev)
1007{
1008 struct generic_pm_domain *genpd;
1009
1010 dev_dbg(dev, "%s()\n", __func__);
1011
1012 genpd = dev_to_genpd(dev);
1013 if (IS_ERR(genpd))
1014 return -EINVAL;
1015
1e0407ca 1016 return genpd->suspend_power_off ? 0 : pm_generic_suspend(dev);
596ba34b
RW
1017}
1018
1019/**
0496c8ae 1020 * pm_genpd_suspend_late - Late suspend of a device from an I/O PM domain.
596ba34b
RW
1021 * @dev: Device to suspend.
1022 *
1023 * Carry out a late suspend of a device under the assumption that its
1024 * pm_domain field points to the domain member of an object of type
1025 * struct generic_pm_domain representing a PM domain consisting of I/O devices.
1026 */
0496c8ae 1027static int pm_genpd_suspend_late(struct device *dev)
596ba34b
RW
1028{
1029 struct generic_pm_domain *genpd;
596ba34b
RW
1030
1031 dev_dbg(dev, "%s()\n", __func__);
1032
1033 genpd = dev_to_genpd(dev);
1034 if (IS_ERR(genpd))
1035 return -EINVAL;
1036
1e0407ca 1037 return genpd->suspend_power_off ? 0 : pm_generic_suspend_late(dev);
0496c8ae 1038}
596ba34b 1039
0496c8ae
RW
1040/**
1041 * pm_genpd_suspend_noirq - Completion of suspend of device in an I/O PM domain.
1042 * @dev: Device to suspend.
1043 *
1044 * Stop the device and remove power from the domain if all devices in it have
1045 * been stopped.
1046 */
1047static int pm_genpd_suspend_noirq(struct device *dev)
1048{
1049 struct generic_pm_domain *genpd;
1050
1051 dev_dbg(dev, "%s()\n", __func__);
1052
1053 genpd = dev_to_genpd(dev);
1054 if (IS_ERR(genpd))
1055 return -EINVAL;
596ba34b 1056
dbf37414 1057 if (genpd->suspend_power_off
0496c8ae 1058 || (dev->power.wakeup_path && genpd_dev_active_wakeup(genpd, dev)))
d4f2d87a
RW
1059 return 0;
1060
d5e4cbfe 1061 genpd_stop_dev(genpd, dev);
596ba34b
RW
1062
1063 /*
1064 * Since all of the "noirq" callbacks are executed sequentially, it is
1065 * guaranteed that this function will never run twice in parallel for
1066 * the same PM domain, so it is not necessary to use locking here.
1067 */
1068 genpd->suspended_count++;
a4630c61 1069 pm_genpd_sync_poweroff(genpd, true);
596ba34b
RW
1070
1071 return 0;
1072}
1073
1074/**
0496c8ae 1075 * pm_genpd_resume_noirq - Start of resume of device in an I/O PM domain.
596ba34b
RW
1076 * @dev: Device to resume.
1077 *
0496c8ae 1078 * Restore power to the device's PM domain, if necessary, and start the device.
596ba34b
RW
1079 */
1080static int pm_genpd_resume_noirq(struct device *dev)
1081{
1082 struct generic_pm_domain *genpd;
1083
1084 dev_dbg(dev, "%s()\n", __func__);
1085
1086 genpd = dev_to_genpd(dev);
1087 if (IS_ERR(genpd))
1088 return -EINVAL;
1089
dbf37414 1090 if (genpd->suspend_power_off
cc85b207 1091 || (dev->power.wakeup_path && genpd_dev_active_wakeup(genpd, dev)))
596ba34b
RW
1092 return 0;
1093
1094 /*
1095 * Since all of the "noirq" callbacks are executed sequentially, it is
1096 * guaranteed that this function will never run twice in parallel for
1097 * the same PM domain, so it is not necessary to use locking here.
1098 */
a4630c61 1099 pm_genpd_sync_poweron(genpd, true);
596ba34b 1100 genpd->suspended_count--;
596ba34b 1101
0496c8ae 1102 return genpd_start_dev(genpd, dev);
596ba34b
RW
1103}
1104
1105/**
0496c8ae
RW
1106 * pm_genpd_resume_early - Early resume of a device in an I/O PM domain.
1107 * @dev: Device to resume.
1108 *
1109 * Carry out an early resume of a device under the assumption that its
1110 * pm_domain field points to the domain member of an object of type
1111 * struct generic_pm_domain representing a power domain consisting of I/O
1112 * devices.
1113 */
1114static int pm_genpd_resume_early(struct device *dev)
1115{
1116 struct generic_pm_domain *genpd;
1117
1118 dev_dbg(dev, "%s()\n", __func__);
1119
1120 genpd = dev_to_genpd(dev);
1121 if (IS_ERR(genpd))
1122 return -EINVAL;
1123
1e0407ca 1124 return genpd->suspend_power_off ? 0 : pm_generic_resume_early(dev);
0496c8ae
RW
1125}
1126
1127/**
1128 * pm_genpd_resume - Resume of device in an I/O PM domain.
596ba34b
RW
1129 * @dev: Device to resume.
1130 *
1131 * Resume a device under the assumption that its pm_domain field points to the
1132 * domain member of an object of type struct generic_pm_domain representing
1133 * a power domain consisting of I/O devices.
1134 */
1135static int pm_genpd_resume(struct device *dev)
1136{
1137 struct generic_pm_domain *genpd;
1138
1139 dev_dbg(dev, "%s()\n", __func__);
1140
1141 genpd = dev_to_genpd(dev);
1142 if (IS_ERR(genpd))
1143 return -EINVAL;
1144
1e0407ca 1145 return genpd->suspend_power_off ? 0 : pm_generic_resume(dev);
596ba34b
RW
1146}
1147
1148/**
0496c8ae 1149 * pm_genpd_freeze - Freezing a device in an I/O PM domain.
596ba34b
RW
1150 * @dev: Device to freeze.
1151 *
1152 * Freeze a device under the assumption that its pm_domain field points to the
1153 * domain member of an object of type struct generic_pm_domain representing
1154 * a power domain consisting of I/O devices.
1155 */
1156static int pm_genpd_freeze(struct device *dev)
1157{
1158 struct generic_pm_domain *genpd;
1159
1160 dev_dbg(dev, "%s()\n", __func__);
1161
1162 genpd = dev_to_genpd(dev);
1163 if (IS_ERR(genpd))
1164 return -EINVAL;
1165
1e0407ca 1166 return genpd->suspend_power_off ? 0 : pm_generic_freeze(dev);
596ba34b
RW
1167}
1168
1169/**
0496c8ae
RW
1170 * pm_genpd_freeze_late - Late freeze of a device in an I/O PM domain.
1171 * @dev: Device to freeze.
1172 *
1173 * Carry out a late freeze of a device under the assumption that its
1174 * pm_domain field points to the domain member of an object of type
1175 * struct generic_pm_domain representing a power domain consisting of I/O
1176 * devices.
1177 */
1178static int pm_genpd_freeze_late(struct device *dev)
1179{
1180 struct generic_pm_domain *genpd;
1181
1182 dev_dbg(dev, "%s()\n", __func__);
1183
1184 genpd = dev_to_genpd(dev);
1185 if (IS_ERR(genpd))
1186 return -EINVAL;
1187
1e0407ca 1188 return genpd->suspend_power_off ? 0 : pm_generic_freeze_late(dev);
0496c8ae
RW
1189}
1190
1191/**
1192 * pm_genpd_freeze_noirq - Completion of freezing a device in an I/O PM domain.
596ba34b
RW
1193 * @dev: Device to freeze.
1194 *
1195 * Carry out a late freeze of a device under the assumption that its
1196 * pm_domain field points to the domain member of an object of type
1197 * struct generic_pm_domain representing a power domain consisting of I/O
1198 * devices.
1199 */
1200static int pm_genpd_freeze_noirq(struct device *dev)
1201{
1202 struct generic_pm_domain *genpd;
596ba34b
RW
1203
1204 dev_dbg(dev, "%s()\n", __func__);
1205
1206 genpd = dev_to_genpd(dev);
1207 if (IS_ERR(genpd))
1208 return -EINVAL;
1209
dbf37414 1210 return genpd->suspend_power_off ? 0 : genpd_stop_dev(genpd, dev);
0496c8ae 1211}
596ba34b 1212
0496c8ae
RW
1213/**
1214 * pm_genpd_thaw_noirq - Early thaw of device in an I/O PM domain.
1215 * @dev: Device to thaw.
1216 *
1217 * Start the device, unless power has been removed from the domain already
1218 * before the system transition.
1219 */
1220static int pm_genpd_thaw_noirq(struct device *dev)
1221{
1222 struct generic_pm_domain *genpd;
596ba34b 1223
0496c8ae 1224 dev_dbg(dev, "%s()\n", __func__);
596ba34b 1225
0496c8ae
RW
1226 genpd = dev_to_genpd(dev);
1227 if (IS_ERR(genpd))
1228 return -EINVAL;
1229
dbf37414 1230 return genpd->suspend_power_off ? 0 : genpd_start_dev(genpd, dev);
596ba34b
RW
1231}
1232
1233/**
0496c8ae 1234 * pm_genpd_thaw_early - Early thaw of device in an I/O PM domain.
596ba34b
RW
1235 * @dev: Device to thaw.
1236 *
1237 * Carry out an early thaw of a device under the assumption that its
1238 * pm_domain field points to the domain member of an object of type
1239 * struct generic_pm_domain representing a power domain consisting of I/O
1240 * devices.
1241 */
0496c8ae 1242static int pm_genpd_thaw_early(struct device *dev)
596ba34b
RW
1243{
1244 struct generic_pm_domain *genpd;
1245
1246 dev_dbg(dev, "%s()\n", __func__);
1247
1248 genpd = dev_to_genpd(dev);
1249 if (IS_ERR(genpd))
1250 return -EINVAL;
1251
1e0407ca 1252 return genpd->suspend_power_off ? 0 : pm_generic_thaw_early(dev);
596ba34b
RW
1253}
1254
1255/**
1256 * pm_genpd_thaw - Thaw a device belonging to an I/O power domain.
1257 * @dev: Device to thaw.
1258 *
1259 * Thaw a device under the assumption that its pm_domain field points to the
1260 * domain member of an object of type struct generic_pm_domain representing
1261 * a power domain consisting of I/O devices.
1262 */
1263static int pm_genpd_thaw(struct device *dev)
1264{
1265 struct generic_pm_domain *genpd;
1266
1267 dev_dbg(dev, "%s()\n", __func__);
1268
1269 genpd = dev_to_genpd(dev);
1270 if (IS_ERR(genpd))
1271 return -EINVAL;
1272
1e0407ca 1273 return genpd->suspend_power_off ? 0 : pm_generic_thaw(dev);
596ba34b
RW
1274}
1275
1276/**
0496c8ae 1277 * pm_genpd_restore_noirq - Start of restore of device in an I/O PM domain.
596ba34b
RW
1278 * @dev: Device to resume.
1279 *
0496c8ae
RW
1280 * Make sure the domain will be in the same power state as before the
1281 * hibernation the system is resuming from and start the device if necessary.
596ba34b
RW
1282 */
1283static int pm_genpd_restore_noirq(struct device *dev)
1284{
1285 struct generic_pm_domain *genpd;
1286
1287 dev_dbg(dev, "%s()\n", __func__);
1288
1289 genpd = dev_to_genpd(dev);
1290 if (IS_ERR(genpd))
1291 return -EINVAL;
1292
1293 /*
1294 * Since all of the "noirq" callbacks are executed sequentially, it is
1295 * guaranteed that this function will never run twice in parallel for
1296 * the same PM domain, so it is not necessary to use locking here.
65533bbf
RW
1297 *
1298 * At this point suspended_count == 0 means we are being run for the
1299 * first time for the given domain in the present cycle.
596ba34b 1300 */
65533bbf 1301 if (genpd->suspended_count++ == 0) {
596ba34b 1302 /*
65533bbf 1303 * The boot kernel might put the domain into arbitrary state,
802d8b49
RW
1304 * so make it appear as powered off to pm_genpd_sync_poweron(),
1305 * so that it tries to power it on in case it was really off.
596ba34b 1306 */
65533bbf
RW
1307 genpd->status = GPD_STATE_POWER_OFF;
1308 if (genpd->suspend_power_off) {
1309 /*
1310 * If the domain was off before the hibernation, make
1311 * sure it will be off going forward.
1312 */
a4630c61 1313 genpd_power_off(genpd, true);
65533bbf
RW
1314
1315 return 0;
1316 }
596ba34b
RW
1317 }
1318
18dd2ece
RW
1319 if (genpd->suspend_power_off)
1320 return 0;
1321
a4630c61 1322 pm_genpd_sync_poweron(genpd, true);
596ba34b 1323
dbf37414 1324 return genpd_start_dev(genpd, dev);
596ba34b
RW
1325}
1326
1327/**
1328 * pm_genpd_complete - Complete power transition of a device in a power domain.
1329 * @dev: Device to complete the transition of.
1330 *
1331 * Complete a power transition of a device (during a system-wide power
1332 * transition) under the assumption that its pm_domain field points to the
1333 * domain member of an object of type struct generic_pm_domain representing
1334 * a power domain consisting of I/O devices.
1335 */
1336static void pm_genpd_complete(struct device *dev)
1337{
1338 struct generic_pm_domain *genpd;
1339 bool run_complete;
1340
1341 dev_dbg(dev, "%s()\n", __func__);
1342
1343 genpd = dev_to_genpd(dev);
1344 if (IS_ERR(genpd))
1345 return;
1346
1347 mutex_lock(&genpd->lock);
1348
1349 run_complete = !genpd->suspend_power_off;
1350 if (--genpd->prepared_count == 0)
1351 genpd->suspend_power_off = false;
1352
1353 mutex_unlock(&genpd->lock);
1354
1355 if (run_complete) {
1356 pm_generic_complete(dev);
6f00ff78 1357 pm_runtime_set_active(dev);
596ba34b 1358 pm_runtime_enable(dev);
af939339 1359 pm_request_idle(dev);
596ba34b
RW
1360 }
1361}
1362
77f827de 1363/**
d47e6464 1364 * genpd_syscore_switch - Switch power during system core suspend or resume.
77f827de
RW
1365 * @dev: Device that normally is marked as "always on" to switch power for.
1366 *
1367 * This routine may only be called during the system core (syscore) suspend or
1368 * resume phase for devices whose "always on" flags are set.
1369 */
d47e6464 1370static void genpd_syscore_switch(struct device *dev, bool suspend)
77f827de
RW
1371{
1372 struct generic_pm_domain *genpd;
1373
1374 genpd = dev_to_genpd(dev);
1375 if (!pm_genpd_present(genpd))
1376 return;
1377
1378 if (suspend) {
1379 genpd->suspended_count++;
a4630c61 1380 pm_genpd_sync_poweroff(genpd, false);
77f827de 1381 } else {
a4630c61 1382 pm_genpd_sync_poweron(genpd, false);
77f827de
RW
1383 genpd->suspended_count--;
1384 }
1385}
d47e6464
UH
1386
1387void pm_genpd_syscore_poweroff(struct device *dev)
1388{
1389 genpd_syscore_switch(dev, true);
1390}
1391EXPORT_SYMBOL_GPL(pm_genpd_syscore_poweroff);
1392
1393void pm_genpd_syscore_poweron(struct device *dev)
1394{
1395 genpd_syscore_switch(dev, false);
1396}
1397EXPORT_SYMBOL_GPL(pm_genpd_syscore_poweron);
77f827de 1398
d30d819d 1399#else /* !CONFIG_PM_SLEEP */
596ba34b
RW
1400
1401#define pm_genpd_prepare NULL
1402#define pm_genpd_suspend NULL
0496c8ae 1403#define pm_genpd_suspend_late NULL
596ba34b 1404#define pm_genpd_suspend_noirq NULL
0496c8ae 1405#define pm_genpd_resume_early NULL
596ba34b
RW
1406#define pm_genpd_resume_noirq NULL
1407#define pm_genpd_resume NULL
1408#define pm_genpd_freeze NULL
0496c8ae 1409#define pm_genpd_freeze_late NULL
596ba34b 1410#define pm_genpd_freeze_noirq NULL
0496c8ae 1411#define pm_genpd_thaw_early NULL
596ba34b
RW
1412#define pm_genpd_thaw_noirq NULL
1413#define pm_genpd_thaw NULL
596ba34b 1414#define pm_genpd_restore_noirq NULL
596ba34b
RW
1415#define pm_genpd_complete NULL
1416
1417#endif /* CONFIG_PM_SLEEP */
1418
f104e1e5
UH
1419static struct generic_pm_domain_data *genpd_alloc_dev_data(struct device *dev,
1420 struct generic_pm_domain *genpd,
1421 struct gpd_timing_data *td)
1d5fcfec
RW
1422{
1423 struct generic_pm_domain_data *gpd_data;
3e235685
UH
1424 int ret;
1425
1426 ret = dev_pm_get_subsys_data(dev);
1427 if (ret)
1428 return ERR_PTR(ret);
1d5fcfec
RW
1429
1430 gpd_data = kzalloc(sizeof(*gpd_data), GFP_KERNEL);
3e235685
UH
1431 if (!gpd_data) {
1432 ret = -ENOMEM;
1433 goto err_put;
1434 }
1d5fcfec 1435
f104e1e5
UH
1436 if (td)
1437 gpd_data->td = *td;
1438
1439 gpd_data->base.dev = dev;
1440 gpd_data->need_restore = -1;
1441 gpd_data->td.constraint_changed = true;
1442 gpd_data->td.effective_constraint_ns = -1;
1443 gpd_data->nb.notifier_call = genpd_dev_pm_qos_notifier;
1444
1445 spin_lock_irq(&dev->power.lock);
1446
1447 if (dev->power.subsys_data->domain_data) {
1448 ret = -EINVAL;
1449 goto err_free;
1450 }
1451
1452 dev->power.subsys_data->domain_data = &gpd_data->base;
1453 dev->pm_domain = &genpd->domain;
1454
1455 spin_unlock_irq(&dev->power.lock);
1456
1d5fcfec 1457 return gpd_data;
3e235685 1458
f104e1e5
UH
1459 err_free:
1460 spin_unlock_irq(&dev->power.lock);
1461 kfree(gpd_data);
3e235685
UH
1462 err_put:
1463 dev_pm_put_subsys_data(dev);
1464 return ERR_PTR(ret);
1d5fcfec
RW
1465}
1466
49d400c7
UH
1467static void genpd_free_dev_data(struct device *dev,
1468 struct generic_pm_domain_data *gpd_data)
1d5fcfec 1469{
f104e1e5
UH
1470 spin_lock_irq(&dev->power.lock);
1471
1472 dev->pm_domain = NULL;
1473 dev->power.subsys_data->domain_data = NULL;
1474
1475 spin_unlock_irq(&dev->power.lock);
1476
1d5fcfec 1477 kfree(gpd_data);
3e235685 1478 dev_pm_put_subsys_data(dev);
1d5fcfec
RW
1479}
1480
f721889f 1481/**
b02c999a 1482 * __pm_genpd_add_device - Add a device to an I/O PM domain.
f721889f
RW
1483 * @genpd: PM domain to add the device to.
1484 * @dev: Device to be added.
b02c999a 1485 * @td: Set of PM QoS timing parameters to attach to the device.
f721889f 1486 */
b02c999a
RW
1487int __pm_genpd_add_device(struct generic_pm_domain *genpd, struct device *dev,
1488 struct gpd_timing_data *td)
f721889f 1489{
c0356db7 1490 struct generic_pm_domain_data *gpd_data;
f721889f
RW
1491 int ret = 0;
1492
1493 dev_dbg(dev, "%s()\n", __func__);
1494
1495 if (IS_ERR_OR_NULL(genpd) || IS_ERR_OR_NULL(dev))
1496 return -EINVAL;
1497
f104e1e5 1498 gpd_data = genpd_alloc_dev_data(dev, genpd, td);
3e235685
UH
1499 if (IS_ERR(gpd_data))
1500 return PTR_ERR(gpd_data);
6ff7bb0d 1501
17b75eca 1502 genpd_acquire_lock(genpd);
f721889f 1503
596ba34b
RW
1504 if (genpd->prepared_count > 0) {
1505 ret = -EAGAIN;
1506 goto out;
1507 }
1508
b472c2fa
UH
1509 ret = genpd->attach_dev ? genpd->attach_dev(genpd, dev) : 0;
1510 if (ret)
1511 goto out;
d79b6fe1 1512
14b53064
UH
1513 genpd->device_count++;
1514 genpd->max_off_time_changed = true;
1515
1d5fcfec 1516 list_add_tail(&gpd_data->base.list_node, &genpd->dev_list);
6ff7bb0d 1517
f721889f 1518 out:
17b75eca 1519 genpd_release_lock(genpd);
f721889f 1520
c0356db7
UH
1521 if (ret)
1522 genpd_free_dev_data(dev, gpd_data);
1523 else
1524 dev_pm_qos_add_notifier(dev, &gpd_data->nb);
1d5fcfec 1525
f721889f
RW
1526 return ret;
1527}
1528
b5abb085
RW
1529/**
1530 * __pm_genpd_name_add_device - Find I/O PM domain and add a device to it.
1531 * @domain_name: Name of the PM domain to add the device to.
1532 * @dev: Device to be added.
1533 * @td: Set of PM QoS timing parameters to attach to the device.
1534 */
1535int __pm_genpd_name_add_device(const char *domain_name, struct device *dev,
1536 struct gpd_timing_data *td)
1537{
8bc0251d 1538 return __pm_genpd_add_device(pm_genpd_lookup_name(domain_name), dev, td);
b5abb085
RW
1539}
1540
f721889f
RW
1541/**
1542 * pm_genpd_remove_device - Remove a device from an I/O PM domain.
1543 * @genpd: PM domain to remove the device from.
1544 * @dev: Device to be removed.
1545 */
1546int pm_genpd_remove_device(struct generic_pm_domain *genpd,
1547 struct device *dev)
1548{
6ff7bb0d 1549 struct generic_pm_domain_data *gpd_data;
4605ab65 1550 struct pm_domain_data *pdd;
efa69025 1551 int ret = 0;
f721889f
RW
1552
1553 dev_dbg(dev, "%s()\n", __func__);
1554
df6a0d6f 1555 if (!genpd || genpd != pm_genpd_lookup_dev(dev))
f721889f
RW
1556 return -EINVAL;
1557
c0356db7
UH
1558 /* The above validation also means we have existing domain_data. */
1559 pdd = dev->power.subsys_data->domain_data;
1560 gpd_data = to_gpd_data(pdd);
1561 dev_pm_qos_remove_notifier(dev, &gpd_data->nb);
1562
17b75eca 1563 genpd_acquire_lock(genpd);
f721889f 1564
596ba34b
RW
1565 if (genpd->prepared_count > 0) {
1566 ret = -EAGAIN;
1567 goto out;
1568 }
1569
6ff7bb0d
RW
1570 genpd->device_count--;
1571 genpd->max_off_time_changed = true;
1572
d79b6fe1 1573 if (genpd->detach_dev)
c16561e8 1574 genpd->detach_dev(genpd, dev);
d79b6fe1 1575
efa69025 1576 list_del_init(&pdd->list_node);
6ff7bb0d
RW
1577
1578 genpd_release_lock(genpd);
1579
c1dbe2fb 1580 genpd_free_dev_data(dev, gpd_data);
1d5fcfec 1581
6ff7bb0d 1582 return 0;
f721889f 1583
596ba34b 1584 out:
17b75eca 1585 genpd_release_lock(genpd);
c0356db7 1586 dev_pm_qos_add_notifier(dev, &gpd_data->nb);
f721889f
RW
1587
1588 return ret;
1589}
1590
1591/**
1592 * pm_genpd_add_subdomain - Add a subdomain to an I/O PM domain.
1593 * @genpd: Master PM domain to add the subdomain to.
bc0403ff 1594 * @subdomain: Subdomain to be added.
f721889f
RW
1595 */
1596int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
bc0403ff 1597 struct generic_pm_domain *subdomain)
f721889f 1598{
5063ce15 1599 struct gpd_link *link;
f721889f
RW
1600 int ret = 0;
1601
fb7268be
RW
1602 if (IS_ERR_OR_NULL(genpd) || IS_ERR_OR_NULL(subdomain)
1603 || genpd == subdomain)
f721889f
RW
1604 return -EINVAL;
1605
17b75eca
RW
1606 start:
1607 genpd_acquire_lock(genpd);
bc0403ff 1608 mutex_lock_nested(&subdomain->lock, SINGLE_DEPTH_NESTING);
f721889f 1609
bc0403ff
RW
1610 if (subdomain->status != GPD_STATE_POWER_OFF
1611 && subdomain->status != GPD_STATE_ACTIVE) {
1612 mutex_unlock(&subdomain->lock);
17b75eca
RW
1613 genpd_release_lock(genpd);
1614 goto start;
1615 }
1616
1617 if (genpd->status == GPD_STATE_POWER_OFF
bc0403ff 1618 && subdomain->status != GPD_STATE_POWER_OFF) {
f721889f
RW
1619 ret = -EINVAL;
1620 goto out;
1621 }
1622
4fcac10d 1623 list_for_each_entry(link, &genpd->master_links, master_node) {
bc0403ff 1624 if (link->slave == subdomain && link->master == genpd) {
f721889f
RW
1625 ret = -EINVAL;
1626 goto out;
1627 }
1628 }
1629
5063ce15
RW
1630 link = kzalloc(sizeof(*link), GFP_KERNEL);
1631 if (!link) {
1632 ret = -ENOMEM;
1633 goto out;
1634 }
1635 link->master = genpd;
1636 list_add_tail(&link->master_node, &genpd->master_links);
bc0403ff
RW
1637 link->slave = subdomain;
1638 list_add_tail(&link->slave_node, &subdomain->slave_links);
1639 if (subdomain->status != GPD_STATE_POWER_OFF)
c4bb3160 1640 genpd_sd_counter_inc(genpd);
f721889f 1641
f721889f 1642 out:
bc0403ff 1643 mutex_unlock(&subdomain->lock);
17b75eca 1644 genpd_release_lock(genpd);
f721889f
RW
1645
1646 return ret;
1647}
1648
fb7268be
RW
1649/**
1650 * pm_genpd_add_subdomain_names - Add a subdomain to an I/O PM domain.
1651 * @master_name: Name of the master PM domain to add the subdomain to.
1652 * @subdomain_name: Name of the subdomain to be added.
1653 */
1654int pm_genpd_add_subdomain_names(const char *master_name,
1655 const char *subdomain_name)
1656{
1657 struct generic_pm_domain *master = NULL, *subdomain = NULL, *gpd;
1658
1659 if (IS_ERR_OR_NULL(master_name) || IS_ERR_OR_NULL(subdomain_name))
1660 return -EINVAL;
1661
1662 mutex_lock(&gpd_list_lock);
1663 list_for_each_entry(gpd, &gpd_list, gpd_list_node) {
1664 if (!master && !strcmp(gpd->name, master_name))
1665 master = gpd;
1666
1667 if (!subdomain && !strcmp(gpd->name, subdomain_name))
1668 subdomain = gpd;
1669
1670 if (master && subdomain)
1671 break;
1672 }
1673 mutex_unlock(&gpd_list_lock);
1674
1675 return pm_genpd_add_subdomain(master, subdomain);
1676}
1677
f721889f
RW
1678/**
1679 * pm_genpd_remove_subdomain - Remove a subdomain from an I/O PM domain.
1680 * @genpd: Master PM domain to remove the subdomain from.
5063ce15 1681 * @subdomain: Subdomain to be removed.
f721889f
RW
1682 */
1683int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
5063ce15 1684 struct generic_pm_domain *subdomain)
f721889f 1685{
5063ce15 1686 struct gpd_link *link;
f721889f
RW
1687 int ret = -EINVAL;
1688
5063ce15 1689 if (IS_ERR_OR_NULL(genpd) || IS_ERR_OR_NULL(subdomain))
f721889f
RW
1690 return -EINVAL;
1691
17b75eca
RW
1692 start:
1693 genpd_acquire_lock(genpd);
f721889f 1694
5063ce15
RW
1695 list_for_each_entry(link, &genpd->master_links, master_node) {
1696 if (link->slave != subdomain)
f721889f
RW
1697 continue;
1698
1699 mutex_lock_nested(&subdomain->lock, SINGLE_DEPTH_NESTING);
1700
17b75eca
RW
1701 if (subdomain->status != GPD_STATE_POWER_OFF
1702 && subdomain->status != GPD_STATE_ACTIVE) {
1703 mutex_unlock(&subdomain->lock);
1704 genpd_release_lock(genpd);
1705 goto start;
1706 }
1707
5063ce15
RW
1708 list_del(&link->master_node);
1709 list_del(&link->slave_node);
1710 kfree(link);
17b75eca 1711 if (subdomain->status != GPD_STATE_POWER_OFF)
f721889f
RW
1712 genpd_sd_counter_dec(genpd);
1713
1714 mutex_unlock(&subdomain->lock);
1715
1716 ret = 0;
1717 break;
1718 }
1719
17b75eca 1720 genpd_release_lock(genpd);
f721889f
RW
1721
1722 return ret;
1723}
1724
40114447
RW
1725/**
1726 * pm_genpd_attach_cpuidle - Connect the given PM domain with cpuidle.
1727 * @genpd: PM domain to be connected with cpuidle.
1728 * @state: cpuidle state this domain can disable/enable.
1729 *
1730 * Make a PM domain behave as though it contained a CPU core, that is, instead
1731 * of calling its power down routine it will enable the given cpuidle state so
1732 * that the cpuidle subsystem can power it down (if possible and desirable).
1733 */
1734int pm_genpd_attach_cpuidle(struct generic_pm_domain *genpd, int state)
cbc9ef02
RW
1735{
1736 struct cpuidle_driver *cpuidle_drv;
f39cb179 1737 struct gpd_cpuidle_data *cpuidle_data;
cbc9ef02
RW
1738 struct cpuidle_state *idle_state;
1739 int ret = 0;
1740
1741 if (IS_ERR_OR_NULL(genpd) || state < 0)
1742 return -EINVAL;
1743
1744 genpd_acquire_lock(genpd);
1745
f39cb179 1746 if (genpd->cpuidle_data) {
cbc9ef02
RW
1747 ret = -EEXIST;
1748 goto out;
1749 }
f39cb179
UH
1750 cpuidle_data = kzalloc(sizeof(*cpuidle_data), GFP_KERNEL);
1751 if (!cpuidle_data) {
cbc9ef02
RW
1752 ret = -ENOMEM;
1753 goto out;
1754 }
1755 cpuidle_drv = cpuidle_driver_ref();
1756 if (!cpuidle_drv) {
1757 ret = -ENODEV;
debe081a 1758 goto err_drv;
cbc9ef02
RW
1759 }
1760 if (cpuidle_drv->state_count <= state) {
1761 ret = -EINVAL;
1762 goto err;
1763 }
1764 idle_state = &cpuidle_drv->states[state];
1765 if (!idle_state->disabled) {
1766 ret = -EAGAIN;
1767 goto err;
1768 }
f39cb179
UH
1769 cpuidle_data->idle_state = idle_state;
1770 cpuidle_data->saved_exit_latency = idle_state->exit_latency;
1771 genpd->cpuidle_data = cpuidle_data;
cbc9ef02
RW
1772 genpd_recalc_cpu_exit_latency(genpd);
1773
1774 out:
1775 genpd_release_lock(genpd);
1776 return ret;
1777
1778 err:
1779 cpuidle_driver_unref();
debe081a 1780
1781 err_drv:
f39cb179 1782 kfree(cpuidle_data);
cbc9ef02
RW
1783 goto out;
1784}
1785
74a2799a
RW
1786/**
1787 * pm_genpd_name_attach_cpuidle - Find PM domain and connect cpuidle to it.
1788 * @name: Name of the domain to connect to cpuidle.
1789 * @state: cpuidle state this domain can manipulate.
1790 */
1791int pm_genpd_name_attach_cpuidle(const char *name, int state)
1792{
1793 return pm_genpd_attach_cpuidle(pm_genpd_lookup_name(name), state);
1794}
1795
40114447
RW
1796/**
1797 * pm_genpd_detach_cpuidle - Remove the cpuidle connection from a PM domain.
1798 * @genpd: PM domain to remove the cpuidle connection from.
1799 *
1800 * Remove the cpuidle connection set up by pm_genpd_attach_cpuidle() from the
1801 * given PM domain.
1802 */
1803int pm_genpd_detach_cpuidle(struct generic_pm_domain *genpd)
cbc9ef02 1804{
f39cb179 1805 struct gpd_cpuidle_data *cpuidle_data;
cbc9ef02
RW
1806 struct cpuidle_state *idle_state;
1807 int ret = 0;
1808
1809 if (IS_ERR_OR_NULL(genpd))
1810 return -EINVAL;
1811
1812 genpd_acquire_lock(genpd);
1813
f39cb179
UH
1814 cpuidle_data = genpd->cpuidle_data;
1815 if (!cpuidle_data) {
cbc9ef02
RW
1816 ret = -ENODEV;
1817 goto out;
1818 }
f39cb179 1819 idle_state = cpuidle_data->idle_state;
cbc9ef02
RW
1820 if (!idle_state->disabled) {
1821 ret = -EAGAIN;
1822 goto out;
1823 }
f39cb179 1824 idle_state->exit_latency = cpuidle_data->saved_exit_latency;
cbc9ef02 1825 cpuidle_driver_unref();
f39cb179
UH
1826 genpd->cpuidle_data = NULL;
1827 kfree(cpuidle_data);
cbc9ef02
RW
1828
1829 out:
1830 genpd_release_lock(genpd);
1831 return ret;
1832}
1833
74a2799a
RW
1834/**
1835 * pm_genpd_name_detach_cpuidle - Find PM domain and disconnect cpuidle from it.
1836 * @name: Name of the domain to disconnect cpuidle from.
1837 */
1838int pm_genpd_name_detach_cpuidle(const char *name)
1839{
1840 return pm_genpd_detach_cpuidle(pm_genpd_lookup_name(name));
1841}
1842
d23b9b00
RW
1843/* Default device callbacks for generic PM domains. */
1844
ecf00475 1845/**
12e10bb6 1846 * pm_genpd_default_save_state - Default "save device state" for PM domains.
ecf00475
RW
1847 * @dev: Device to handle.
1848 */
1849static int pm_genpd_default_save_state(struct device *dev)
1850{
1851 int (*cb)(struct device *__dev);
ecf00475 1852
0b589741
RW
1853 if (dev->type && dev->type->pm)
1854 cb = dev->type->pm->runtime_suspend;
1855 else if (dev->class && dev->class->pm)
1856 cb = dev->class->pm->runtime_suspend;
1857 else if (dev->bus && dev->bus->pm)
1858 cb = dev->bus->pm->runtime_suspend;
1859 else
1860 cb = NULL;
ecf00475 1861
0b589741
RW
1862 if (!cb && dev->driver && dev->driver->pm)
1863 cb = dev->driver->pm->runtime_suspend;
1864
1865 return cb ? cb(dev) : 0;
ecf00475
RW
1866}
1867
1868/**
12e10bb6 1869 * pm_genpd_default_restore_state - Default PM domains "restore device state".
ecf00475
RW
1870 * @dev: Device to handle.
1871 */
1872static int pm_genpd_default_restore_state(struct device *dev)
1873{
1874 int (*cb)(struct device *__dev);
ecf00475 1875
0b589741
RW
1876 if (dev->type && dev->type->pm)
1877 cb = dev->type->pm->runtime_resume;
1878 else if (dev->class && dev->class->pm)
1879 cb = dev->class->pm->runtime_resume;
1880 else if (dev->bus && dev->bus->pm)
1881 cb = dev->bus->pm->runtime_resume;
1882 else
1883 cb = NULL;
ecf00475 1884
0b589741
RW
1885 if (!cb && dev->driver && dev->driver->pm)
1886 cb = dev->driver->pm->runtime_resume;
1887
1888 return cb ? cb(dev) : 0;
ecf00475
RW
1889}
1890
f721889f
RW
1891/**
1892 * pm_genpd_init - Initialize a generic I/O PM domain object.
1893 * @genpd: PM domain object to initialize.
1894 * @gov: PM domain governor to associate with the domain (may be NULL).
1895 * @is_off: Initial value of the domain's power_is_off field.
1896 */
1897void pm_genpd_init(struct generic_pm_domain *genpd,
1898 struct dev_power_governor *gov, bool is_off)
1899{
1900 if (IS_ERR_OR_NULL(genpd))
1901 return;
1902
5063ce15
RW
1903 INIT_LIST_HEAD(&genpd->master_links);
1904 INIT_LIST_HEAD(&genpd->slave_links);
f721889f 1905 INIT_LIST_HEAD(&genpd->dev_list);
f721889f
RW
1906 mutex_init(&genpd->lock);
1907 genpd->gov = gov;
1908 INIT_WORK(&genpd->power_off_work, genpd_power_off_work_fn);
1909 genpd->in_progress = 0;
c4bb3160 1910 atomic_set(&genpd->sd_count, 0);
17b75eca
RW
1911 genpd->status = is_off ? GPD_STATE_POWER_OFF : GPD_STATE_ACTIVE;
1912 init_waitqueue_head(&genpd->status_wait_queue);
c6d22b37
RW
1913 genpd->poweroff_task = NULL;
1914 genpd->resume_count = 0;
596ba34b 1915 genpd->device_count = 0;
221e9b58 1916 genpd->max_off_time_ns = -1;
6ff7bb0d 1917 genpd->max_off_time_changed = true;
f721889f
RW
1918 genpd->domain.ops.runtime_suspend = pm_genpd_runtime_suspend;
1919 genpd->domain.ops.runtime_resume = pm_genpd_runtime_resume;
596ba34b
RW
1920 genpd->domain.ops.prepare = pm_genpd_prepare;
1921 genpd->domain.ops.suspend = pm_genpd_suspend;
0496c8ae 1922 genpd->domain.ops.suspend_late = pm_genpd_suspend_late;
596ba34b
RW
1923 genpd->domain.ops.suspend_noirq = pm_genpd_suspend_noirq;
1924 genpd->domain.ops.resume_noirq = pm_genpd_resume_noirq;
0496c8ae 1925 genpd->domain.ops.resume_early = pm_genpd_resume_early;
596ba34b
RW
1926 genpd->domain.ops.resume = pm_genpd_resume;
1927 genpd->domain.ops.freeze = pm_genpd_freeze;
0496c8ae 1928 genpd->domain.ops.freeze_late = pm_genpd_freeze_late;
596ba34b
RW
1929 genpd->domain.ops.freeze_noirq = pm_genpd_freeze_noirq;
1930 genpd->domain.ops.thaw_noirq = pm_genpd_thaw_noirq;
0496c8ae 1931 genpd->domain.ops.thaw_early = pm_genpd_thaw_early;
596ba34b 1932 genpd->domain.ops.thaw = pm_genpd_thaw;
d23b9b00 1933 genpd->domain.ops.poweroff = pm_genpd_suspend;
0496c8ae 1934 genpd->domain.ops.poweroff_late = pm_genpd_suspend_late;
d23b9b00 1935 genpd->domain.ops.poweroff_noirq = pm_genpd_suspend_noirq;
596ba34b 1936 genpd->domain.ops.restore_noirq = pm_genpd_restore_noirq;
0496c8ae 1937 genpd->domain.ops.restore_early = pm_genpd_resume_early;
d23b9b00 1938 genpd->domain.ops.restore = pm_genpd_resume;
596ba34b 1939 genpd->domain.ops.complete = pm_genpd_complete;
ecf00475
RW
1940 genpd->dev_ops.save_state = pm_genpd_default_save_state;
1941 genpd->dev_ops.restore_state = pm_genpd_default_restore_state;
c11f6f5b
UH
1942
1943 if (genpd->flags & GENPD_FLAG_PM_CLK) {
1944 genpd->dev_ops.stop = pm_clk_suspend;
1945 genpd->dev_ops.start = pm_clk_resume;
1946 }
1947
5125bbf3
RW
1948 mutex_lock(&gpd_list_lock);
1949 list_add(&genpd->gpd_list_node, &gpd_list);
1950 mutex_unlock(&gpd_list_lock);
1951}
aa42240a
TF
1952
1953#ifdef CONFIG_PM_GENERIC_DOMAINS_OF
1954/*
1955 * Device Tree based PM domain providers.
1956 *
1957 * The code below implements generic device tree based PM domain providers that
1958 * bind device tree nodes with generic PM domains registered in the system.
1959 *
1960 * Any driver that registers generic PM domains and needs to support binding of
1961 * devices to these domains is supposed to register a PM domain provider, which
1962 * maps a PM domain specifier retrieved from the device tree to a PM domain.
1963 *
1964 * Two simple mapping functions have been provided for convenience:
1965 * - __of_genpd_xlate_simple() for 1:1 device tree node to PM domain mapping.
1966 * - __of_genpd_xlate_onecell() for mapping of multiple PM domains per node by
1967 * index.
1968 */
1969
1970/**
1971 * struct of_genpd_provider - PM domain provider registration structure
1972 * @link: Entry in global list of PM domain providers
1973 * @node: Pointer to device tree node of PM domain provider
1974 * @xlate: Provider-specific xlate callback mapping a set of specifier cells
1975 * into a PM domain.
1976 * @data: context pointer to be passed into @xlate callback
1977 */
1978struct of_genpd_provider {
1979 struct list_head link;
1980 struct device_node *node;
1981 genpd_xlate_t xlate;
1982 void *data;
1983};
1984
1985/* List of registered PM domain providers. */
1986static LIST_HEAD(of_genpd_providers);
1987/* Mutex to protect the list above. */
1988static DEFINE_MUTEX(of_genpd_mutex);
1989
1990/**
1991 * __of_genpd_xlate_simple() - Xlate function for direct node-domain mapping
1992 * @genpdspec: OF phandle args to map into a PM domain
1993 * @data: xlate function private data - pointer to struct generic_pm_domain
1994 *
1995 * This is a generic xlate function that can be used to model PM domains that
1996 * have their own device tree nodes. The private data of xlate function needs
1997 * to be a valid pointer to struct generic_pm_domain.
1998 */
1999struct generic_pm_domain *__of_genpd_xlate_simple(
2000 struct of_phandle_args *genpdspec,
2001 void *data)
2002{
2003 if (genpdspec->args_count != 0)
2004 return ERR_PTR(-EINVAL);
2005 return data;
2006}
2007EXPORT_SYMBOL_GPL(__of_genpd_xlate_simple);
2008
2009/**
2010 * __of_genpd_xlate_onecell() - Xlate function using a single index.
2011 * @genpdspec: OF phandle args to map into a PM domain
2012 * @data: xlate function private data - pointer to struct genpd_onecell_data
2013 *
2014 * This is a generic xlate function that can be used to model simple PM domain
2015 * controllers that have one device tree node and provide multiple PM domains.
2016 * A single cell is used as an index into an array of PM domains specified in
2017 * the genpd_onecell_data struct when registering the provider.
2018 */
2019struct generic_pm_domain *__of_genpd_xlate_onecell(
2020 struct of_phandle_args *genpdspec,
2021 void *data)
2022{
2023 struct genpd_onecell_data *genpd_data = data;
2024 unsigned int idx = genpdspec->args[0];
2025
2026 if (genpdspec->args_count != 1)
2027 return ERR_PTR(-EINVAL);
2028
2029 if (idx >= genpd_data->num_domains) {
2030 pr_err("%s: invalid domain index %u\n", __func__, idx);
2031 return ERR_PTR(-EINVAL);
2032 }
2033
2034 if (!genpd_data->domains[idx])
2035 return ERR_PTR(-ENOENT);
2036
2037 return genpd_data->domains[idx];
2038}
2039EXPORT_SYMBOL_GPL(__of_genpd_xlate_onecell);
2040
2041/**
2042 * __of_genpd_add_provider() - Register a PM domain provider for a node
2043 * @np: Device node pointer associated with the PM domain provider.
2044 * @xlate: Callback for decoding PM domain from phandle arguments.
2045 * @data: Context pointer for @xlate callback.
2046 */
2047int __of_genpd_add_provider(struct device_node *np, genpd_xlate_t xlate,
2048 void *data)
2049{
2050 struct of_genpd_provider *cp;
2051
2052 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
2053 if (!cp)
2054 return -ENOMEM;
2055
2056 cp->node = of_node_get(np);
2057 cp->data = data;
2058 cp->xlate = xlate;
2059
2060 mutex_lock(&of_genpd_mutex);
2061 list_add(&cp->link, &of_genpd_providers);
2062 mutex_unlock(&of_genpd_mutex);
2063 pr_debug("Added domain provider from %s\n", np->full_name);
2064
2065 return 0;
2066}
2067EXPORT_SYMBOL_GPL(__of_genpd_add_provider);
2068
2069/**
2070 * of_genpd_del_provider() - Remove a previously registered PM domain provider
2071 * @np: Device node pointer associated with the PM domain provider
2072 */
2073void of_genpd_del_provider(struct device_node *np)
2074{
2075 struct of_genpd_provider *cp;
2076
2077 mutex_lock(&of_genpd_mutex);
2078 list_for_each_entry(cp, &of_genpd_providers, link) {
2079 if (cp->node == np) {
2080 list_del(&cp->link);
2081 of_node_put(cp->node);
2082 kfree(cp);
2083 break;
2084 }
2085 }
2086 mutex_unlock(&of_genpd_mutex);
2087}
2088EXPORT_SYMBOL_GPL(of_genpd_del_provider);
2089
2090/**
2091 * of_genpd_get_from_provider() - Look-up PM domain
2092 * @genpdspec: OF phandle args to use for look-up
2093 *
2094 * Looks for a PM domain provider under the node specified by @genpdspec and if
2095 * found, uses xlate function of the provider to map phandle args to a PM
2096 * domain.
2097 *
2098 * Returns a valid pointer to struct generic_pm_domain on success or ERR_PTR()
2099 * on failure.
2100 */
7496fcbe 2101struct generic_pm_domain *of_genpd_get_from_provider(
aa42240a
TF
2102 struct of_phandle_args *genpdspec)
2103{
2104 struct generic_pm_domain *genpd = ERR_PTR(-ENOENT);
2105 struct of_genpd_provider *provider;
2106
2107 mutex_lock(&of_genpd_mutex);
2108
2109 /* Check if we have such a provider in our array */
2110 list_for_each_entry(provider, &of_genpd_providers, link) {
2111 if (provider->node == genpdspec->np)
2112 genpd = provider->xlate(genpdspec, provider->data);
2113 if (!IS_ERR(genpd))
2114 break;
2115 }
2116
2117 mutex_unlock(&of_genpd_mutex);
2118
2119 return genpd;
2120}
7496fcbe 2121EXPORT_SYMBOL_GPL(of_genpd_get_from_provider);
aa42240a
TF
2122
2123/**
2124 * genpd_dev_pm_detach - Detach a device from its PM domain.
2125 * @dev: Device to attach.
2126 * @power_off: Currently not used
2127 *
2128 * Try to locate a corresponding generic PM domain, which the device was
2129 * attached to previously. If such is found, the device is detached from it.
2130 */
2131static void genpd_dev_pm_detach(struct device *dev, bool power_off)
2132{
446d999c 2133 struct generic_pm_domain *pd;
aa42240a
TF
2134 int ret = 0;
2135
446d999c 2136 pd = pm_genpd_lookup_dev(dev);
aa42240a
TF
2137 if (!pd)
2138 return;
2139
2140 dev_dbg(dev, "removing from PM domain %s\n", pd->name);
2141
2142 while (1) {
2143 ret = pm_genpd_remove_device(pd, dev);
2144 if (ret != -EAGAIN)
2145 break;
2146 cond_resched();
2147 }
2148
2149 if (ret < 0) {
2150 dev_err(dev, "failed to remove from PM domain %s: %d",
2151 pd->name, ret);
2152 return;
2153 }
2154
2155 /* Check if PM domain can be powered off after removing this device. */
2156 genpd_queue_power_off_work(pd);
2157}
2158
632f7ce3
RK
2159static void genpd_dev_pm_sync(struct device *dev)
2160{
2161 struct generic_pm_domain *pd;
2162
2163 pd = dev_to_genpd(dev);
2164 if (IS_ERR(pd))
2165 return;
2166
2167 genpd_queue_power_off_work(pd);
2168}
2169
aa42240a
TF
2170/**
2171 * genpd_dev_pm_attach - Attach a device to its PM domain using DT.
2172 * @dev: Device to attach.
2173 *
2174 * Parse device's OF node to find a PM domain specifier. If such is found,
2175 * attaches the device to retrieved pm_domain ops.
2176 *
2177 * Both generic and legacy Samsung-specific DT bindings are supported to keep
2178 * backwards compatibility with existing DTBs.
2179 *
2180 * Returns 0 on successfully attached PM domain or negative error code.
2181 */
2182int genpd_dev_pm_attach(struct device *dev)
2183{
2184 struct of_phandle_args pd_args;
2185 struct generic_pm_domain *pd;
2186 int ret;
2187
2188 if (!dev->of_node)
2189 return -ENODEV;
2190
2191 if (dev->pm_domain)
2192 return -EEXIST;
2193
2194 ret = of_parse_phandle_with_args(dev->of_node, "power-domains",
2195 "#power-domain-cells", 0, &pd_args);
2196 if (ret < 0) {
2197 if (ret != -ENOENT)
2198 return ret;
2199
2200 /*
2201 * Try legacy Samsung-specific bindings
2202 * (for backwards compatibility of DT ABI)
2203 */
2204 pd_args.args_count = 0;
2205 pd_args.np = of_parse_phandle(dev->of_node,
2206 "samsung,power-domain", 0);
2207 if (!pd_args.np)
2208 return -ENOENT;
2209 }
2210
2211 pd = of_genpd_get_from_provider(&pd_args);
2212 if (IS_ERR(pd)) {
2213 dev_dbg(dev, "%s() failed to find PM domain: %ld\n",
2214 __func__, PTR_ERR(pd));
2215 of_node_put(dev->of_node);
2216 return PTR_ERR(pd);
2217 }
2218
2219 dev_dbg(dev, "adding to PM domain %s\n", pd->name);
2220
2221 while (1) {
2222 ret = pm_genpd_add_device(pd, dev);
2223 if (ret != -EAGAIN)
2224 break;
2225 cond_resched();
2226 }
2227
2228 if (ret < 0) {
2229 dev_err(dev, "failed to add to PM domain %s: %d",
2230 pd->name, ret);
2231 of_node_put(dev->of_node);
2232 return ret;
2233 }
2234
2235 dev->pm_domain->detach = genpd_dev_pm_detach;
632f7ce3 2236 dev->pm_domain->sync = genpd_dev_pm_sync;
2ed12769 2237 pm_genpd_poweron(pd);
aa42240a
TF
2238
2239 return 0;
2240}
2241EXPORT_SYMBOL_GPL(genpd_dev_pm_attach);
d30d819d 2242#endif /* CONFIG_PM_GENERIC_DOMAINS_OF */
2bd5306a
MM
2243
2244
2245/*** debugfs support ***/
2246
2247#ifdef CONFIG_PM_ADVANCED_DEBUG
2248#include <linux/pm.h>
2249#include <linux/device.h>
2250#include <linux/debugfs.h>
2251#include <linux/seq_file.h>
2252#include <linux/init.h>
2253#include <linux/kobject.h>
2254static struct dentry *pm_genpd_debugfs_dir;
2255
2256/*
2257 * TODO: This function is a slightly modified version of rtpm_status_show
d30d819d 2258 * from sysfs.c, so generalize it.
2bd5306a 2259 */
2bd5306a
MM
2260static void rtpm_status_str(struct seq_file *s, struct device *dev)
2261{
2262 static const char * const status_lookup[] = {
2263 [RPM_ACTIVE] = "active",
2264 [RPM_RESUMING] = "resuming",
2265 [RPM_SUSPENDED] = "suspended",
2266 [RPM_SUSPENDING] = "suspending"
2267 };
2268 const char *p = "";
2269
2270 if (dev->power.runtime_error)
2271 p = "error";
2272 else if (dev->power.disable_depth)
2273 p = "unsupported";
2274 else if (dev->power.runtime_status < ARRAY_SIZE(status_lookup))
2275 p = status_lookup[dev->power.runtime_status];
2276 else
2277 WARN_ON(1);
2278
2279 seq_puts(s, p);
2280}
2bd5306a
MM
2281
2282static int pm_genpd_summary_one(struct seq_file *s,
66a5ca4b 2283 struct generic_pm_domain *genpd)
2bd5306a
MM
2284{
2285 static const char * const status_lookup[] = {
2286 [GPD_STATE_ACTIVE] = "on",
2287 [GPD_STATE_WAIT_MASTER] = "wait-master",
2288 [GPD_STATE_BUSY] = "busy",
2289 [GPD_STATE_REPEAT] = "off-in-progress",
2290 [GPD_STATE_POWER_OFF] = "off"
2291 };
2292 struct pm_domain_data *pm_data;
2293 const char *kobj_path;
2294 struct gpd_link *link;
2295 int ret;
2296
66a5ca4b 2297 ret = mutex_lock_interruptible(&genpd->lock);
2bd5306a
MM
2298 if (ret)
2299 return -ERESTARTSYS;
2300
66a5ca4b 2301 if (WARN_ON(genpd->status >= ARRAY_SIZE(status_lookup)))
2bd5306a 2302 goto exit;
66a5ca4b 2303 seq_printf(s, "%-30s %-15s ", genpd->name, status_lookup[genpd->status]);
2bd5306a
MM
2304
2305 /*
2306 * Modifications on the list require holding locks on both
2307 * master and slave, so we are safe.
66a5ca4b 2308 * Also genpd->name is immutable.
2bd5306a 2309 */
66a5ca4b 2310 list_for_each_entry(link, &genpd->master_links, master_node) {
2bd5306a 2311 seq_printf(s, "%s", link->slave->name);
66a5ca4b 2312 if (!list_is_last(&link->master_node, &genpd->master_links))
2bd5306a
MM
2313 seq_puts(s, ", ");
2314 }
2315
66a5ca4b 2316 list_for_each_entry(pm_data, &genpd->dev_list, list_node) {
2bd5306a
MM
2317 kobj_path = kobject_get_path(&pm_data->dev->kobj, GFP_KERNEL);
2318 if (kobj_path == NULL)
2319 continue;
2320
2321 seq_printf(s, "\n %-50s ", kobj_path);
2322 rtpm_status_str(s, pm_data->dev);
2323 kfree(kobj_path);
2324 }
2325
2326 seq_puts(s, "\n");
2327exit:
66a5ca4b 2328 mutex_unlock(&genpd->lock);
2bd5306a
MM
2329
2330 return 0;
2331}
2332
2333static int pm_genpd_summary_show(struct seq_file *s, void *data)
2334{
66a5ca4b 2335 struct generic_pm_domain *genpd;
2bd5306a
MM
2336 int ret = 0;
2337
2338 seq_puts(s, " domain status slaves\n");
2339 seq_puts(s, " /device runtime status\n");
2340 seq_puts(s, "----------------------------------------------------------------------\n");
2341
2342 ret = mutex_lock_interruptible(&gpd_list_lock);
2343 if (ret)
2344 return -ERESTARTSYS;
2345
66a5ca4b
KH
2346 list_for_each_entry(genpd, &gpd_list, gpd_list_node) {
2347 ret = pm_genpd_summary_one(s, genpd);
2bd5306a
MM
2348 if (ret)
2349 break;
2350 }
2351 mutex_unlock(&gpd_list_lock);
2352
2353 return ret;
2354}
2355
2356static int pm_genpd_summary_open(struct inode *inode, struct file *file)
2357{
2358 return single_open(file, pm_genpd_summary_show, NULL);
2359}
2360
2361static const struct file_operations pm_genpd_summary_fops = {
2362 .open = pm_genpd_summary_open,
2363 .read = seq_read,
2364 .llseek = seq_lseek,
2365 .release = single_release,
2366};
2367
2368static int __init pm_genpd_debug_init(void)
2369{
2370 struct dentry *d;
2371
2372 pm_genpd_debugfs_dir = debugfs_create_dir("pm_genpd", NULL);
2373
2374 if (!pm_genpd_debugfs_dir)
2375 return -ENOMEM;
2376
2377 d = debugfs_create_file("pm_genpd_summary", S_IRUGO,
2378 pm_genpd_debugfs_dir, NULL, &pm_genpd_summary_fops);
2379 if (!d)
2380 return -ENOMEM;
2381
2382 return 0;
2383}
2384late_initcall(pm_genpd_debug_init);
2385
2386static void __exit pm_genpd_debug_exit(void)
2387{
2388 debugfs_remove_recursive(pm_genpd_debugfs_dir);
2389}
2390__exitcall(pm_genpd_debug_exit);
2391#endif /* CONFIG_PM_ADVANCED_DEBUG */