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