1 // SPDX-License-Identifier: GPL-2.0
3 * Devices PM QoS constraints management
5 * Copyright (C) 2011 Texas Instruments, Inc.
7 * This module exposes the interface to kernel space for specifying
8 * per-device PM QoS dependencies. It provides infrastructure for registration
11 * Dependents on a QoS value : register requests
12 * Watchers of QoS value : get notified when target QoS value changes
14 * This QoS design is best effort based. Dependents register their QoS needs.
15 * Watchers register to keep track of the current QoS needs of the system.
16 * Watchers can register a per-device notification callback using the
17 * dev_pm_qos_*_notifier API. The notification chain data is stored in the
18 * per-device constraint data struct.
20 * Note about the per-device constraint data struct allocation:
21 * . The per-device constraints data struct ptr is stored into the device
23 * . To minimize the data usage by the per-device constraints, the data struct
24 * is only allocated at the first call to dev_pm_qos_add_request.
25 * . The data is later free'd when the device is removed from the system.
26 * . A global mutex protects the constraints users from the data being
27 * allocated and free'd.
30 #include <linux/pm_qos.h>
31 #include <linux/spinlock.h>
32 #include <linux/slab.h>
33 #include <linux/device.h>
34 #include <linux/mutex.h>
35 #include <linux/export.h>
36 #include <linux/pm_runtime.h>
37 #include <linux/err.h>
38 #include <trace/events/power.h>
42 static DEFINE_MUTEX(dev_pm_qos_mtx
);
43 static DEFINE_MUTEX(dev_pm_qos_sysfs_mtx
);
46 * __dev_pm_qos_flags - Check PM QoS flags for a given device.
47 * @dev: Device to check the PM QoS flags for.
48 * @mask: Flags to check against.
50 * This routine must be called with dev->power.lock held.
52 enum pm_qos_flags_status
__dev_pm_qos_flags(struct device
*dev
, s32 mask
)
54 struct dev_pm_qos
*qos
= dev
->power
.qos
;
55 struct pm_qos_flags
*pqf
;
58 lockdep_assert_held(&dev
->power
.lock
);
60 if (IS_ERR_OR_NULL(qos
))
61 return PM_QOS_FLAGS_UNDEFINED
;
64 if (list_empty(&pqf
->list
))
65 return PM_QOS_FLAGS_UNDEFINED
;
67 val
= pqf
->effective_flags
& mask
;
69 return (val
== mask
) ? PM_QOS_FLAGS_ALL
: PM_QOS_FLAGS_SOME
;
71 return PM_QOS_FLAGS_NONE
;
75 * dev_pm_qos_flags - Check PM QoS flags for a given device (locked).
76 * @dev: Device to check the PM QoS flags for.
77 * @mask: Flags to check against.
79 enum pm_qos_flags_status
dev_pm_qos_flags(struct device
*dev
, s32 mask
)
81 unsigned long irqflags
;
82 enum pm_qos_flags_status ret
;
84 spin_lock_irqsave(&dev
->power
.lock
, irqflags
);
85 ret
= __dev_pm_qos_flags(dev
, mask
);
86 spin_unlock_irqrestore(&dev
->power
.lock
, irqflags
);
90 EXPORT_SYMBOL_GPL(dev_pm_qos_flags
);
93 * __dev_pm_qos_resume_latency - Get resume latency constraint for a given device.
94 * @dev: Device to get the PM QoS constraint value for.
96 * This routine must be called with dev->power.lock held.
98 s32
__dev_pm_qos_resume_latency(struct device
*dev
)
100 lockdep_assert_held(&dev
->power
.lock
);
102 return dev_pm_qos_raw_resume_latency(dev
);
106 * dev_pm_qos_read_value - Get PM QoS constraint for a given device (locked).
107 * @dev: Device to get the PM QoS constraint value for.
108 * @type: QoS request type.
110 s32
dev_pm_qos_read_value(struct device
*dev
, enum dev_pm_qos_req_type type
)
112 struct dev_pm_qos
*qos
= dev
->power
.qos
;
116 spin_lock_irqsave(&dev
->power
.lock
, flags
);
119 case DEV_PM_QOS_RESUME_LATENCY
:
120 ret
= IS_ERR_OR_NULL(qos
) ? PM_QOS_RESUME_LATENCY_NO_CONSTRAINT
121 : pm_qos_read_value(&qos
->resume_latency
);
123 case DEV_PM_QOS_MIN_FREQUENCY
:
124 ret
= IS_ERR_OR_NULL(qos
) ? PM_QOS_MIN_FREQUENCY_DEFAULT_VALUE
125 : freq_qos_read_value(&qos
->freq
, FREQ_QOS_MIN
);
127 case DEV_PM_QOS_MAX_FREQUENCY
:
128 ret
= IS_ERR_OR_NULL(qos
) ? PM_QOS_MAX_FREQUENCY_DEFAULT_VALUE
129 : freq_qos_read_value(&qos
->freq
, FREQ_QOS_MAX
);
136 spin_unlock_irqrestore(&dev
->power
.lock
, flags
);
142 * apply_constraint - Add/modify/remove device PM QoS request.
143 * @req: Constraint request to apply
144 * @action: Action to perform (add/update/remove).
145 * @value: Value to assign to the QoS request.
147 * Internal function to update the constraints list using the PM QoS core
148 * code and if needed call the per-device callbacks.
150 static int apply_constraint(struct dev_pm_qos_request
*req
,
151 enum pm_qos_req_action action
, s32 value
)
153 struct dev_pm_qos
*qos
= req
->dev
->power
.qos
;
157 case DEV_PM_QOS_RESUME_LATENCY
:
158 if (WARN_ON(action
!= PM_QOS_REMOVE_REQ
&& value
< 0))
161 ret
= pm_qos_update_target(&qos
->resume_latency
,
162 &req
->data
.pnode
, action
, value
);
164 case DEV_PM_QOS_LATENCY_TOLERANCE
:
165 ret
= pm_qos_update_target(&qos
->latency_tolerance
,
166 &req
->data
.pnode
, action
, value
);
168 value
= pm_qos_read_value(&qos
->latency_tolerance
);
169 req
->dev
->power
.set_latency_tolerance(req
->dev
, value
);
172 case DEV_PM_QOS_MIN_FREQUENCY
:
173 case DEV_PM_QOS_MAX_FREQUENCY
:
174 ret
= freq_qos_apply(&req
->data
.freq
, action
, value
);
176 case DEV_PM_QOS_FLAGS
:
177 ret
= pm_qos_update_flags(&qos
->flags
, &req
->data
.flr
,
188 * dev_pm_qos_constraints_allocate
189 * @dev: device to allocate data for
191 * Called at the first call to add_request, for constraint data allocation
192 * Must be called with the dev_pm_qos_mtx mutex held
194 static int dev_pm_qos_constraints_allocate(struct device
*dev
)
196 struct dev_pm_qos
*qos
;
197 struct pm_qos_constraints
*c
;
198 struct blocking_notifier_head
*n
;
200 qos
= kzalloc(sizeof(*qos
), GFP_KERNEL
);
204 n
= kzalloc(3 * sizeof(*n
), GFP_KERNEL
);
210 c
= &qos
->resume_latency
;
211 plist_head_init(&c
->list
);
212 c
->target_value
= PM_QOS_RESUME_LATENCY_DEFAULT_VALUE
;
213 c
->default_value
= PM_QOS_RESUME_LATENCY_DEFAULT_VALUE
;
214 c
->no_constraint_value
= PM_QOS_RESUME_LATENCY_NO_CONSTRAINT
;
215 c
->type
= PM_QOS_MIN
;
217 BLOCKING_INIT_NOTIFIER_HEAD(n
);
219 c
= &qos
->latency_tolerance
;
220 plist_head_init(&c
->list
);
221 c
->target_value
= PM_QOS_LATENCY_TOLERANCE_DEFAULT_VALUE
;
222 c
->default_value
= PM_QOS_LATENCY_TOLERANCE_DEFAULT_VALUE
;
223 c
->no_constraint_value
= PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT
;
224 c
->type
= PM_QOS_MIN
;
226 freq_constraints_init(&qos
->freq
);
228 INIT_LIST_HEAD(&qos
->flags
.list
);
230 spin_lock_irq(&dev
->power
.lock
);
231 dev
->power
.qos
= qos
;
232 spin_unlock_irq(&dev
->power
.lock
);
237 static void __dev_pm_qos_hide_latency_limit(struct device
*dev
);
238 static void __dev_pm_qos_hide_flags(struct device
*dev
);
241 * dev_pm_qos_constraints_destroy
242 * @dev: target device
244 * Called from the device PM subsystem on device removal under device_pm_lock().
246 void dev_pm_qos_constraints_destroy(struct device
*dev
)
248 struct dev_pm_qos
*qos
;
249 struct dev_pm_qos_request
*req
, *tmp
;
250 struct pm_qos_constraints
*c
;
251 struct pm_qos_flags
*f
;
253 mutex_lock(&dev_pm_qos_sysfs_mtx
);
256 * If the device's PM QoS resume latency limit or PM QoS flags have been
257 * exposed to user space, they have to be hidden at this point.
259 pm_qos_sysfs_remove_resume_latency(dev
);
260 pm_qos_sysfs_remove_flags(dev
);
262 mutex_lock(&dev_pm_qos_mtx
);
264 __dev_pm_qos_hide_latency_limit(dev
);
265 __dev_pm_qos_hide_flags(dev
);
267 qos
= dev
->power
.qos
;
271 /* Flush the constraints lists for the device. */
272 c
= &qos
->resume_latency
;
273 plist_for_each_entry_safe(req
, tmp
, &c
->list
, data
.pnode
) {
275 * Update constraints list and call the notification
276 * callbacks if needed
278 apply_constraint(req
, PM_QOS_REMOVE_REQ
, PM_QOS_DEFAULT_VALUE
);
279 memset(req
, 0, sizeof(*req
));
282 c
= &qos
->latency_tolerance
;
283 plist_for_each_entry_safe(req
, tmp
, &c
->list
, data
.pnode
) {
284 apply_constraint(req
, PM_QOS_REMOVE_REQ
, PM_QOS_DEFAULT_VALUE
);
285 memset(req
, 0, sizeof(*req
));
288 c
= &qos
->freq
.min_freq
;
289 plist_for_each_entry_safe(req
, tmp
, &c
->list
, data
.freq
.pnode
) {
290 apply_constraint(req
, PM_QOS_REMOVE_REQ
,
291 PM_QOS_MIN_FREQUENCY_DEFAULT_VALUE
);
292 memset(req
, 0, sizeof(*req
));
295 c
= &qos
->freq
.max_freq
;
296 plist_for_each_entry_safe(req
, tmp
, &c
->list
, data
.freq
.pnode
) {
297 apply_constraint(req
, PM_QOS_REMOVE_REQ
,
298 PM_QOS_MAX_FREQUENCY_DEFAULT_VALUE
);
299 memset(req
, 0, sizeof(*req
));
303 list_for_each_entry_safe(req
, tmp
, &f
->list
, data
.flr
.node
) {
304 apply_constraint(req
, PM_QOS_REMOVE_REQ
, PM_QOS_DEFAULT_VALUE
);
305 memset(req
, 0, sizeof(*req
));
308 spin_lock_irq(&dev
->power
.lock
);
309 dev
->power
.qos
= ERR_PTR(-ENODEV
);
310 spin_unlock_irq(&dev
->power
.lock
);
312 kfree(qos
->resume_latency
.notifiers
);
316 mutex_unlock(&dev_pm_qos_mtx
);
318 mutex_unlock(&dev_pm_qos_sysfs_mtx
);
321 static bool dev_pm_qos_invalid_req_type(struct device
*dev
,
322 enum dev_pm_qos_req_type type
)
324 return type
== DEV_PM_QOS_LATENCY_TOLERANCE
&&
325 !dev
->power
.set_latency_tolerance
;
328 static int __dev_pm_qos_add_request(struct device
*dev
,
329 struct dev_pm_qos_request
*req
,
330 enum dev_pm_qos_req_type type
, s32 value
)
334 if (!dev
|| !req
|| dev_pm_qos_invalid_req_type(dev
, type
))
337 if (WARN(dev_pm_qos_request_active(req
),
338 "%s() called for already added request\n", __func__
))
341 if (IS_ERR(dev
->power
.qos
))
343 else if (!dev
->power
.qos
)
344 ret
= dev_pm_qos_constraints_allocate(dev
);
346 trace_dev_pm_qos_add_request(dev_name(dev
), type
, value
);
352 if (req
->type
== DEV_PM_QOS_MIN_FREQUENCY
)
353 ret
= freq_qos_add_request(&dev
->power
.qos
->freq
,
355 FREQ_QOS_MIN
, value
);
356 else if (req
->type
== DEV_PM_QOS_MAX_FREQUENCY
)
357 ret
= freq_qos_add_request(&dev
->power
.qos
->freq
,
359 FREQ_QOS_MAX
, value
);
361 ret
= apply_constraint(req
, PM_QOS_ADD_REQ
, value
);
367 * dev_pm_qos_add_request - inserts new qos request into the list
368 * @dev: target device for the constraint
369 * @req: pointer to a preallocated handle
370 * @type: type of the request
371 * @value: defines the qos request
373 * This function inserts a new entry in the device constraints list of
374 * requested qos performance characteristics. It recomputes the aggregate
375 * QoS expectations of parameters and initializes the dev_pm_qos_request
376 * handle. Caller needs to save this handle for later use in updates and
379 * Returns 1 if the aggregated constraint value has changed,
380 * 0 if the aggregated constraint value has not changed,
381 * -EINVAL in case of wrong parameters, -ENOMEM if there's not enough memory
382 * to allocate for data structures, -ENODEV if the device has just been removed
385 * Callers should ensure that the target device is not RPM_SUSPENDED before
386 * using this function for requests of type DEV_PM_QOS_FLAGS.
388 int dev_pm_qos_add_request(struct device
*dev
, struct dev_pm_qos_request
*req
,
389 enum dev_pm_qos_req_type type
, s32 value
)
393 mutex_lock(&dev_pm_qos_mtx
);
394 ret
= __dev_pm_qos_add_request(dev
, req
, type
, value
);
395 mutex_unlock(&dev_pm_qos_mtx
);
398 EXPORT_SYMBOL_GPL(dev_pm_qos_add_request
);
401 * __dev_pm_qos_update_request - Modify an existing device PM QoS request.
402 * @req : PM QoS request to modify.
403 * @new_value: New value to request.
405 static int __dev_pm_qos_update_request(struct dev_pm_qos_request
*req
,
411 if (!req
) /*guard against callers passing in null */
414 if (WARN(!dev_pm_qos_request_active(req
),
415 "%s() called for unknown object\n", __func__
))
418 if (IS_ERR_OR_NULL(req
->dev
->power
.qos
))
422 case DEV_PM_QOS_RESUME_LATENCY
:
423 case DEV_PM_QOS_LATENCY_TOLERANCE
:
424 curr_value
= req
->data
.pnode
.prio
;
426 case DEV_PM_QOS_MIN_FREQUENCY
:
427 case DEV_PM_QOS_MAX_FREQUENCY
:
428 curr_value
= req
->data
.freq
.pnode
.prio
;
430 case DEV_PM_QOS_FLAGS
:
431 curr_value
= req
->data
.flr
.flags
;
437 trace_dev_pm_qos_update_request(dev_name(req
->dev
), req
->type
,
439 if (curr_value
!= new_value
)
440 ret
= apply_constraint(req
, PM_QOS_UPDATE_REQ
, new_value
);
446 * dev_pm_qos_update_request - modifies an existing qos request
447 * @req : handle to list element holding a dev_pm_qos request to use
448 * @new_value: defines the qos request
450 * Updates an existing dev PM qos request along with updating the
453 * Attempts are made to make this code callable on hot code paths.
455 * Returns 1 if the aggregated constraint value has changed,
456 * 0 if the aggregated constraint value has not changed,
457 * -EINVAL in case of wrong parameters, -ENODEV if the device has been
458 * removed from the system
460 * Callers should ensure that the target device is not RPM_SUSPENDED before
461 * using this function for requests of type DEV_PM_QOS_FLAGS.
463 int dev_pm_qos_update_request(struct dev_pm_qos_request
*req
, s32 new_value
)
467 mutex_lock(&dev_pm_qos_mtx
);
468 ret
= __dev_pm_qos_update_request(req
, new_value
);
469 mutex_unlock(&dev_pm_qos_mtx
);
472 EXPORT_SYMBOL_GPL(dev_pm_qos_update_request
);
474 static int __dev_pm_qos_remove_request(struct dev_pm_qos_request
*req
)
478 if (!req
) /*guard against callers passing in null */
481 if (WARN(!dev_pm_qos_request_active(req
),
482 "%s() called for unknown object\n", __func__
))
485 if (IS_ERR_OR_NULL(req
->dev
->power
.qos
))
488 trace_dev_pm_qos_remove_request(dev_name(req
->dev
), req
->type
,
489 PM_QOS_DEFAULT_VALUE
);
490 ret
= apply_constraint(req
, PM_QOS_REMOVE_REQ
, PM_QOS_DEFAULT_VALUE
);
491 memset(req
, 0, sizeof(*req
));
496 * dev_pm_qos_remove_request - modifies an existing qos request
497 * @req: handle to request list element
499 * Will remove pm qos request from the list of constraints and
500 * recompute the current target value. Call this on slow code paths.
502 * Returns 1 if the aggregated constraint value has changed,
503 * 0 if the aggregated constraint value has not changed,
504 * -EINVAL in case of wrong parameters, -ENODEV if the device has been
505 * removed from the system
507 * Callers should ensure that the target device is not RPM_SUSPENDED before
508 * using this function for requests of type DEV_PM_QOS_FLAGS.
510 int dev_pm_qos_remove_request(struct dev_pm_qos_request
*req
)
514 mutex_lock(&dev_pm_qos_mtx
);
515 ret
= __dev_pm_qos_remove_request(req
);
516 mutex_unlock(&dev_pm_qos_mtx
);
519 EXPORT_SYMBOL_GPL(dev_pm_qos_remove_request
);
522 * dev_pm_qos_add_notifier - sets notification entry for changes to target value
523 * of per-device PM QoS constraints
525 * @dev: target device for the constraint
526 * @notifier: notifier block managed by caller.
527 * @type: request type.
529 * Will register the notifier into a notification chain that gets called
530 * upon changes to the target value for the device.
532 * If the device's constraints object doesn't exist when this routine is called,
533 * it will be created (or error code will be returned if that fails).
535 int dev_pm_qos_add_notifier(struct device
*dev
, struct notifier_block
*notifier
,
536 enum dev_pm_qos_req_type type
)
540 mutex_lock(&dev_pm_qos_mtx
);
542 if (IS_ERR(dev
->power
.qos
))
544 else if (!dev
->power
.qos
)
545 ret
= dev_pm_qos_constraints_allocate(dev
);
551 case DEV_PM_QOS_RESUME_LATENCY
:
552 ret
= blocking_notifier_chain_register(dev
->power
.qos
->resume_latency
.notifiers
,
555 case DEV_PM_QOS_MIN_FREQUENCY
:
556 ret
= freq_qos_add_notifier(&dev
->power
.qos
->freq
,
557 FREQ_QOS_MIN
, notifier
);
559 case DEV_PM_QOS_MAX_FREQUENCY
:
560 ret
= freq_qos_add_notifier(&dev
->power
.qos
->freq
,
561 FREQ_QOS_MAX
, notifier
);
569 mutex_unlock(&dev_pm_qos_mtx
);
572 EXPORT_SYMBOL_GPL(dev_pm_qos_add_notifier
);
575 * dev_pm_qos_remove_notifier - deletes notification for changes to target value
576 * of per-device PM QoS constraints
578 * @dev: target device for the constraint
579 * @notifier: notifier block to be removed.
580 * @type: request type.
582 * Will remove the notifier from the notification chain that gets called
583 * upon changes to the target value.
585 int dev_pm_qos_remove_notifier(struct device
*dev
,
586 struct notifier_block
*notifier
,
587 enum dev_pm_qos_req_type type
)
591 mutex_lock(&dev_pm_qos_mtx
);
593 /* Silently return if the constraints object is not present. */
594 if (IS_ERR_OR_NULL(dev
->power
.qos
))
598 case DEV_PM_QOS_RESUME_LATENCY
:
599 ret
= blocking_notifier_chain_unregister(dev
->power
.qos
->resume_latency
.notifiers
,
602 case DEV_PM_QOS_MIN_FREQUENCY
:
603 ret
= freq_qos_remove_notifier(&dev
->power
.qos
->freq
,
604 FREQ_QOS_MIN
, notifier
);
606 case DEV_PM_QOS_MAX_FREQUENCY
:
607 ret
= freq_qos_remove_notifier(&dev
->power
.qos
->freq
,
608 FREQ_QOS_MAX
, notifier
);
616 mutex_unlock(&dev_pm_qos_mtx
);
619 EXPORT_SYMBOL_GPL(dev_pm_qos_remove_notifier
);
622 * dev_pm_qos_add_ancestor_request - Add PM QoS request for device's ancestor.
623 * @dev: Device whose ancestor to add the request for.
624 * @req: Pointer to the preallocated handle.
625 * @type: Type of the request.
626 * @value: Constraint latency value.
628 int dev_pm_qos_add_ancestor_request(struct device
*dev
,
629 struct dev_pm_qos_request
*req
,
630 enum dev_pm_qos_req_type type
, s32 value
)
632 struct device
*ancestor
= dev
->parent
;
636 case DEV_PM_QOS_RESUME_LATENCY
:
637 while (ancestor
&& !ancestor
->power
.ignore_children
)
638 ancestor
= ancestor
->parent
;
641 case DEV_PM_QOS_LATENCY_TOLERANCE
:
642 while (ancestor
&& !ancestor
->power
.set_latency_tolerance
)
643 ancestor
= ancestor
->parent
;
650 ret
= dev_pm_qos_add_request(ancestor
, req
, type
, value
);
657 EXPORT_SYMBOL_GPL(dev_pm_qos_add_ancestor_request
);
659 static void __dev_pm_qos_drop_user_request(struct device
*dev
,
660 enum dev_pm_qos_req_type type
)
662 struct dev_pm_qos_request
*req
= NULL
;
665 case DEV_PM_QOS_RESUME_LATENCY
:
666 req
= dev
->power
.qos
->resume_latency_req
;
667 dev
->power
.qos
->resume_latency_req
= NULL
;
669 case DEV_PM_QOS_LATENCY_TOLERANCE
:
670 req
= dev
->power
.qos
->latency_tolerance_req
;
671 dev
->power
.qos
->latency_tolerance_req
= NULL
;
673 case DEV_PM_QOS_FLAGS
:
674 req
= dev
->power
.qos
->flags_req
;
675 dev
->power
.qos
->flags_req
= NULL
;
681 __dev_pm_qos_remove_request(req
);
685 static void dev_pm_qos_drop_user_request(struct device
*dev
,
686 enum dev_pm_qos_req_type type
)
688 mutex_lock(&dev_pm_qos_mtx
);
689 __dev_pm_qos_drop_user_request(dev
, type
);
690 mutex_unlock(&dev_pm_qos_mtx
);
694 * dev_pm_qos_expose_latency_limit - Expose PM QoS latency limit to user space.
695 * @dev: Device whose PM QoS latency limit is to be exposed to user space.
696 * @value: Initial value of the latency limit.
698 int dev_pm_qos_expose_latency_limit(struct device
*dev
, s32 value
)
700 struct dev_pm_qos_request
*req
;
703 if (!device_is_registered(dev
) || value
< 0)
706 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
710 ret
= dev_pm_qos_add_request(dev
, req
, DEV_PM_QOS_RESUME_LATENCY
, value
);
716 mutex_lock(&dev_pm_qos_sysfs_mtx
);
718 mutex_lock(&dev_pm_qos_mtx
);
720 if (IS_ERR_OR_NULL(dev
->power
.qos
))
722 else if (dev
->power
.qos
->resume_latency_req
)
726 __dev_pm_qos_remove_request(req
);
728 mutex_unlock(&dev_pm_qos_mtx
);
731 dev
->power
.qos
->resume_latency_req
= req
;
733 mutex_unlock(&dev_pm_qos_mtx
);
735 ret
= pm_qos_sysfs_add_resume_latency(dev
);
737 dev_pm_qos_drop_user_request(dev
, DEV_PM_QOS_RESUME_LATENCY
);
740 mutex_unlock(&dev_pm_qos_sysfs_mtx
);
743 EXPORT_SYMBOL_GPL(dev_pm_qos_expose_latency_limit
);
745 static void __dev_pm_qos_hide_latency_limit(struct device
*dev
)
747 if (!IS_ERR_OR_NULL(dev
->power
.qos
) && dev
->power
.qos
->resume_latency_req
)
748 __dev_pm_qos_drop_user_request(dev
, DEV_PM_QOS_RESUME_LATENCY
);
752 * dev_pm_qos_hide_latency_limit - Hide PM QoS latency limit from user space.
753 * @dev: Device whose PM QoS latency limit is to be hidden from user space.
755 void dev_pm_qos_hide_latency_limit(struct device
*dev
)
757 mutex_lock(&dev_pm_qos_sysfs_mtx
);
759 pm_qos_sysfs_remove_resume_latency(dev
);
761 mutex_lock(&dev_pm_qos_mtx
);
762 __dev_pm_qos_hide_latency_limit(dev
);
763 mutex_unlock(&dev_pm_qos_mtx
);
765 mutex_unlock(&dev_pm_qos_sysfs_mtx
);
767 EXPORT_SYMBOL_GPL(dev_pm_qos_hide_latency_limit
);
770 * dev_pm_qos_expose_flags - Expose PM QoS flags of a device to user space.
771 * @dev: Device whose PM QoS flags are to be exposed to user space.
772 * @val: Initial values of the flags.
774 int dev_pm_qos_expose_flags(struct device
*dev
, s32 val
)
776 struct dev_pm_qos_request
*req
;
779 if (!device_is_registered(dev
))
782 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
786 ret
= dev_pm_qos_add_request(dev
, req
, DEV_PM_QOS_FLAGS
, val
);
792 pm_runtime_get_sync(dev
);
793 mutex_lock(&dev_pm_qos_sysfs_mtx
);
795 mutex_lock(&dev_pm_qos_mtx
);
797 if (IS_ERR_OR_NULL(dev
->power
.qos
))
799 else if (dev
->power
.qos
->flags_req
)
803 __dev_pm_qos_remove_request(req
);
805 mutex_unlock(&dev_pm_qos_mtx
);
808 dev
->power
.qos
->flags_req
= req
;
810 mutex_unlock(&dev_pm_qos_mtx
);
812 ret
= pm_qos_sysfs_add_flags(dev
);
814 dev_pm_qos_drop_user_request(dev
, DEV_PM_QOS_FLAGS
);
817 mutex_unlock(&dev_pm_qos_sysfs_mtx
);
821 EXPORT_SYMBOL_GPL(dev_pm_qos_expose_flags
);
823 static void __dev_pm_qos_hide_flags(struct device
*dev
)
825 if (!IS_ERR_OR_NULL(dev
->power
.qos
) && dev
->power
.qos
->flags_req
)
826 __dev_pm_qos_drop_user_request(dev
, DEV_PM_QOS_FLAGS
);
830 * dev_pm_qos_hide_flags - Hide PM QoS flags of a device from user space.
831 * @dev: Device whose PM QoS flags are to be hidden from user space.
833 void dev_pm_qos_hide_flags(struct device
*dev
)
835 pm_runtime_get_sync(dev
);
836 mutex_lock(&dev_pm_qos_sysfs_mtx
);
838 pm_qos_sysfs_remove_flags(dev
);
840 mutex_lock(&dev_pm_qos_mtx
);
841 __dev_pm_qos_hide_flags(dev
);
842 mutex_unlock(&dev_pm_qos_mtx
);
844 mutex_unlock(&dev_pm_qos_sysfs_mtx
);
847 EXPORT_SYMBOL_GPL(dev_pm_qos_hide_flags
);
850 * dev_pm_qos_update_flags - Update PM QoS flags request owned by user space.
851 * @dev: Device to update the PM QoS flags request for.
852 * @mask: Flags to set/clear.
853 * @set: Whether to set or clear the flags (true means set).
855 int dev_pm_qos_update_flags(struct device
*dev
, s32 mask
, bool set
)
860 pm_runtime_get_sync(dev
);
861 mutex_lock(&dev_pm_qos_mtx
);
863 if (IS_ERR_OR_NULL(dev
->power
.qos
) || !dev
->power
.qos
->flags_req
) {
868 value
= dev_pm_qos_requested_flags(dev
);
874 ret
= __dev_pm_qos_update_request(dev
->power
.qos
->flags_req
, value
);
877 mutex_unlock(&dev_pm_qos_mtx
);
883 * dev_pm_qos_get_user_latency_tolerance - Get user space latency tolerance.
884 * @dev: Device to obtain the user space latency tolerance for.
886 s32
dev_pm_qos_get_user_latency_tolerance(struct device
*dev
)
890 mutex_lock(&dev_pm_qos_mtx
);
891 ret
= IS_ERR_OR_NULL(dev
->power
.qos
)
892 || !dev
->power
.qos
->latency_tolerance_req
?
893 PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT
:
894 dev
->power
.qos
->latency_tolerance_req
->data
.pnode
.prio
;
895 mutex_unlock(&dev_pm_qos_mtx
);
900 * dev_pm_qos_update_user_latency_tolerance - Update user space latency tolerance.
901 * @dev: Device to update the user space latency tolerance for.
902 * @val: New user space latency tolerance for @dev (negative values disable).
904 int dev_pm_qos_update_user_latency_tolerance(struct device
*dev
, s32 val
)
908 mutex_lock(&dev_pm_qos_mtx
);
910 if (IS_ERR_OR_NULL(dev
->power
.qos
)
911 || !dev
->power
.qos
->latency_tolerance_req
) {
912 struct dev_pm_qos_request
*req
;
915 if (val
== PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT
)
921 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
926 ret
= __dev_pm_qos_add_request(dev
, req
, DEV_PM_QOS_LATENCY_TOLERANCE
, val
);
931 dev
->power
.qos
->latency_tolerance_req
= req
;
934 __dev_pm_qos_drop_user_request(dev
, DEV_PM_QOS_LATENCY_TOLERANCE
);
937 ret
= __dev_pm_qos_update_request(dev
->power
.qos
->latency_tolerance_req
, val
);
942 mutex_unlock(&dev_pm_qos_mtx
);
945 EXPORT_SYMBOL_GPL(dev_pm_qos_update_user_latency_tolerance
);
948 * dev_pm_qos_expose_latency_tolerance - Expose latency tolerance to userspace
949 * @dev: Device whose latency tolerance to expose
951 int dev_pm_qos_expose_latency_tolerance(struct device
*dev
)
955 if (!dev
->power
.set_latency_tolerance
)
958 mutex_lock(&dev_pm_qos_sysfs_mtx
);
959 ret
= pm_qos_sysfs_add_latency_tolerance(dev
);
960 mutex_unlock(&dev_pm_qos_sysfs_mtx
);
964 EXPORT_SYMBOL_GPL(dev_pm_qos_expose_latency_tolerance
);
967 * dev_pm_qos_hide_latency_tolerance - Hide latency tolerance from userspace
968 * @dev: Device whose latency tolerance to hide
970 void dev_pm_qos_hide_latency_tolerance(struct device
*dev
)
972 mutex_lock(&dev_pm_qos_sysfs_mtx
);
973 pm_qos_sysfs_remove_latency_tolerance(dev
);
974 mutex_unlock(&dev_pm_qos_sysfs_mtx
);
976 /* Remove the request from user space now */
977 pm_runtime_get_sync(dev
);
978 dev_pm_qos_update_user_latency_tolerance(dev
,
979 PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT
);
982 EXPORT_SYMBOL_GPL(dev_pm_qos_hide_latency_tolerance
);