1
2
3
4
5
6
7
8#ifndef _LINUX_PM_RUNTIME_H
9#define _LINUX_PM_RUNTIME_H
10
11#include <linux/device.h>
12#include <linux/notifier.h>
13#include <linux/pm.h>
14
15#include <linux/jiffies.h>
16
17
18#define RPM_ASYNC 0x01
19#define RPM_NOWAIT 0x02
20
21#define RPM_GET_PUT 0x04
22
23#define RPM_AUTO 0x08
24
25
26
27
28
29
30
31
32
33
34
35
36
37#define DEFINE_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
38 _DEFINE_DEV_PM_OPS(name, pm_runtime_force_suspend, \
39 pm_runtime_force_resume, suspend_fn, \
40 resume_fn, idle_fn)
41
42#define EXPORT_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
43 _EXPORT_DEV_PM_OPS(name, pm_runtime_force_suspend, pm_runtime_force_resume, \
44 suspend_fn, resume_fn, idle_fn, "")
45#define EXPORT_GPL_RUNTIME_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
46 _EXPORT_DEV_PM_OPS(name, pm_runtime_force_suspend, pm_runtime_force_resume, \
47 suspend_fn, resume_fn, idle_fn, "_gpl")
48
49#ifdef CONFIG_PM
50extern struct workqueue_struct *pm_wq;
51
52static inline bool queue_pm_work(struct work_struct *work)
53{
54 return queue_work(pm_wq, work);
55}
56
57extern int pm_generic_runtime_suspend(struct device *dev);
58extern int pm_generic_runtime_resume(struct device *dev);
59extern int pm_runtime_force_suspend(struct device *dev);
60extern int pm_runtime_force_resume(struct device *dev);
61
62extern int __pm_runtime_idle(struct device *dev, int rpmflags);
63extern int __pm_runtime_suspend(struct device *dev, int rpmflags);
64extern int __pm_runtime_resume(struct device *dev, int rpmflags);
65extern int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count);
66extern int pm_schedule_suspend(struct device *dev, unsigned int delay);
67extern int __pm_runtime_set_status(struct device *dev, unsigned int status);
68extern int pm_runtime_barrier(struct device *dev);
69extern void pm_runtime_enable(struct device *dev);
70extern void __pm_runtime_disable(struct device *dev, bool check_resume);
71extern void pm_runtime_allow(struct device *dev);
72extern void pm_runtime_forbid(struct device *dev);
73extern void pm_runtime_no_callbacks(struct device *dev);
74extern void pm_runtime_irq_safe(struct device *dev);
75extern void __pm_runtime_use_autosuspend(struct device *dev, bool use);
76extern void pm_runtime_set_autosuspend_delay(struct device *dev, int delay);
77extern u64 pm_runtime_autosuspend_expiration(struct device *dev);
78extern void pm_runtime_update_max_time_suspended(struct device *dev,
79 s64 delta_ns);
80extern void pm_runtime_set_memalloc_noio(struct device *dev, bool enable);
81extern void pm_runtime_get_suppliers(struct device *dev);
82extern void pm_runtime_put_suppliers(struct device *dev);
83extern void pm_runtime_new_link(struct device *dev);
84extern void pm_runtime_drop_link(struct device_link *link);
85extern void pm_runtime_release_supplier(struct device_link *link, bool check_idle);
86
87extern int devm_pm_runtime_enable(struct device *dev);
88
89
90
91
92
93
94
95
96static inline int pm_runtime_get_if_in_use(struct device *dev)
97{
98 return pm_runtime_get_if_active(dev, false);
99}
100
101
102
103
104
105
106
107
108
109
110static inline void pm_suspend_ignore_children(struct device *dev, bool enable)
111{
112 dev->power.ignore_children = enable;
113}
114
115
116
117
118
119static inline void pm_runtime_get_noresume(struct device *dev)
120{
121 atomic_inc(&dev->power.usage_count);
122}
123
124
125
126
127
128
129
130static inline void pm_runtime_put_noidle(struct device *dev)
131{
132 atomic_add_unless(&dev->power.usage_count, -1, 0);
133}
134
135
136
137
138
139
140
141
142
143
144
145
146
147static inline bool pm_runtime_suspended(struct device *dev)
148{
149 return dev->power.runtime_status == RPM_SUSPENDED
150 && !dev->power.disable_depth;
151}
152
153
154
155
156
157
158
159
160
161
162
163
164
165static inline bool pm_runtime_active(struct device *dev)
166{
167 return dev->power.runtime_status == RPM_ACTIVE
168 || dev->power.disable_depth;
169}
170
171
172
173
174
175
176
177
178
179
180
181
182static inline bool pm_runtime_status_suspended(struct device *dev)
183{
184 return dev->power.runtime_status == RPM_SUSPENDED;
185}
186
187
188
189
190
191
192
193
194
195
196
197static inline bool pm_runtime_enabled(struct device *dev)
198{
199 return !dev->power.disable_depth;
200}
201
202
203
204
205
206
207
208
209static inline bool pm_runtime_has_no_callbacks(struct device *dev)
210{
211 return dev->power.no_callbacks;
212}
213
214
215
216
217
218
219
220
221static inline void pm_runtime_mark_last_busy(struct device *dev)
222{
223 WRITE_ONCE(dev->power.last_busy, ktime_get_mono_fast_ns());
224}
225
226
227
228
229
230
231
232
233
234static inline bool pm_runtime_is_irq_safe(struct device *dev)
235{
236 return dev->power.irq_safe;
237}
238
239extern u64 pm_runtime_suspended_time(struct device *dev);
240
241#else
242
243static inline bool queue_pm_work(struct work_struct *work) { return false; }
244
245static inline int pm_generic_runtime_suspend(struct device *dev) { return 0; }
246static inline int pm_generic_runtime_resume(struct device *dev) { return 0; }
247static inline int pm_runtime_force_suspend(struct device *dev) { return 0; }
248static inline int pm_runtime_force_resume(struct device *dev) { return 0; }
249
250static inline int __pm_runtime_idle(struct device *dev, int rpmflags)
251{
252 return -ENOSYS;
253}
254static inline int __pm_runtime_suspend(struct device *dev, int rpmflags)
255{
256 return -ENOSYS;
257}
258static inline int __pm_runtime_resume(struct device *dev, int rpmflags)
259{
260 return 1;
261}
262static inline int pm_schedule_suspend(struct device *dev, unsigned int delay)
263{
264 return -ENOSYS;
265}
266static inline int pm_runtime_get_if_in_use(struct device *dev)
267{
268 return -EINVAL;
269}
270static inline int pm_runtime_get_if_active(struct device *dev,
271 bool ign_usage_count)
272{
273 return -EINVAL;
274}
275static inline int __pm_runtime_set_status(struct device *dev,
276 unsigned int status) { return 0; }
277static inline int pm_runtime_barrier(struct device *dev) { return 0; }
278static inline void pm_runtime_enable(struct device *dev) {}
279static inline void __pm_runtime_disable(struct device *dev, bool c) {}
280static inline void pm_runtime_allow(struct device *dev) {}
281static inline void pm_runtime_forbid(struct device *dev) {}
282
283static inline int devm_pm_runtime_enable(struct device *dev) { return 0; }
284
285static inline void pm_suspend_ignore_children(struct device *dev, bool enable) {}
286static inline void pm_runtime_get_noresume(struct device *dev) {}
287static inline void pm_runtime_put_noidle(struct device *dev) {}
288static inline bool pm_runtime_suspended(struct device *dev) { return false; }
289static inline bool pm_runtime_active(struct device *dev) { return true; }
290static inline bool pm_runtime_status_suspended(struct device *dev) { return false; }
291static inline bool pm_runtime_enabled(struct device *dev) { return false; }
292
293static inline void pm_runtime_no_callbacks(struct device *dev) {}
294static inline void pm_runtime_irq_safe(struct device *dev) {}
295static inline bool pm_runtime_is_irq_safe(struct device *dev) { return false; }
296
297static inline bool pm_runtime_has_no_callbacks(struct device *dev) { return false; }
298static inline void pm_runtime_mark_last_busy(struct device *dev) {}
299static inline void __pm_runtime_use_autosuspend(struct device *dev,
300 bool use) {}
301static inline void pm_runtime_set_autosuspend_delay(struct device *dev,
302 int delay) {}
303static inline u64 pm_runtime_autosuspend_expiration(
304 struct device *dev) { return 0; }
305static inline void pm_runtime_set_memalloc_noio(struct device *dev,
306 bool enable){}
307static inline void pm_runtime_get_suppliers(struct device *dev) {}
308static inline void pm_runtime_put_suppliers(struct device *dev) {}
309static inline void pm_runtime_new_link(struct device *dev) {}
310static inline void pm_runtime_drop_link(struct device_link *link) {}
311static inline void pm_runtime_release_supplier(struct device_link *link,
312 bool check_idle) {}
313
314#endif
315
316
317
318
319
320
321
322
323
324static inline int pm_runtime_idle(struct device *dev)
325{
326 return __pm_runtime_idle(dev, 0);
327}
328
329
330
331
332
333static inline int pm_runtime_suspend(struct device *dev)
334{
335 return __pm_runtime_suspend(dev, 0);
336}
337
338
339
340
341
342
343
344
345static inline int pm_runtime_autosuspend(struct device *dev)
346{
347 return __pm_runtime_suspend(dev, RPM_AUTO);
348}
349
350
351
352
353
354static inline int pm_runtime_resume(struct device *dev)
355{
356 return __pm_runtime_resume(dev, 0);
357}
358
359
360
361
362
363
364
365
366static inline int pm_request_idle(struct device *dev)
367{
368 return __pm_runtime_idle(dev, RPM_ASYNC);
369}
370
371
372
373
374
375static inline int pm_request_resume(struct device *dev)
376{
377 return __pm_runtime_resume(dev, RPM_ASYNC);
378}
379
380
381
382
383
384
385
386
387static inline int pm_request_autosuspend(struct device *dev)
388{
389 return __pm_runtime_suspend(dev, RPM_ASYNC | RPM_AUTO);
390}
391
392
393
394
395
396
397
398
399static inline int pm_runtime_get(struct device *dev)
400{
401 return __pm_runtime_resume(dev, RPM_GET_PUT | RPM_ASYNC);
402}
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418static inline int pm_runtime_get_sync(struct device *dev)
419{
420 return __pm_runtime_resume(dev, RPM_GET_PUT);
421}
422
423
424
425
426
427
428
429
430
431static inline int pm_runtime_resume_and_get(struct device *dev)
432{
433 int ret;
434
435 ret = __pm_runtime_resume(dev, RPM_GET_PUT);
436 if (ret < 0) {
437 pm_runtime_put_noidle(dev);
438 return ret;
439 }
440
441 return 0;
442}
443
444
445
446
447
448
449
450
451static inline int pm_runtime_put(struct device *dev)
452{
453 return __pm_runtime_idle(dev, RPM_GET_PUT | RPM_ASYNC);
454}
455
456
457
458
459
460
461
462
463static inline int pm_runtime_put_autosuspend(struct device *dev)
464{
465 return __pm_runtime_suspend(dev,
466 RPM_GET_PUT | RPM_ASYNC | RPM_AUTO);
467}
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482static inline int pm_runtime_put_sync(struct device *dev)
483{
484 return __pm_runtime_idle(dev, RPM_GET_PUT);
485}
486
487
488
489
490
491
492
493
494
495
496
497
498static inline int pm_runtime_put_sync_suspend(struct device *dev)
499{
500 return __pm_runtime_suspend(dev, RPM_GET_PUT);
501}
502
503
504
505
506
507
508
509
510
511
512
513
514
515static inline int pm_runtime_put_sync_autosuspend(struct device *dev)
516{
517 return __pm_runtime_suspend(dev, RPM_GET_PUT | RPM_AUTO);
518}
519
520
521
522
523
524
525
526
527
528
529static inline int pm_runtime_set_active(struct device *dev)
530{
531 return __pm_runtime_set_status(dev, RPM_ACTIVE);
532}
533
534
535
536
537
538
539
540
541
542
543static inline int pm_runtime_set_suspended(struct device *dev)
544{
545 return __pm_runtime_set_status(dev, RPM_SUSPENDED);
546}
547
548
549
550
551
552
553
554
555
556
557
558static inline void pm_runtime_disable(struct device *dev)
559{
560 __pm_runtime_disable(dev, true);
561}
562
563
564
565
566
567
568
569
570
571
572
573
574
575static inline void pm_runtime_use_autosuspend(struct device *dev)
576{
577 __pm_runtime_use_autosuspend(dev, true);
578}
579
580
581
582
583
584
585
586
587
588static inline void pm_runtime_dont_use_autosuspend(struct device *dev)
589{
590 __pm_runtime_use_autosuspend(dev, false);
591}
592
593#endif
594