xref: /openbmc/linux/drivers/base/power/qos.c (revision ce932d0c5589e9766e089c22c66890dfc48fbd94)
1 /*
2  * Devices PM QoS constraints management
3  *
4  * Copyright (C) 2011 Texas Instruments, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  *
11  * This module exposes the interface to kernel space for specifying
12  * per-device PM QoS dependencies. It provides infrastructure for registration
13  * of:
14  *
15  * Dependents on a QoS value : register requests
16  * Watchers of QoS value : get notified when target QoS value changes
17  *
18  * This QoS design is best effort based. Dependents register their QoS needs.
19  * Watchers register to keep track of the current QoS needs of the system.
20  * Watchers can register different types of notification callbacks:
21  *  . a per-device notification callback using the dev_pm_qos_*_notifier API.
22  *    The notification chain data is stored in the per-device constraint
23  *    data struct.
24  *  . a system-wide notification callback using the dev_pm_qos_*_global_notifier
25  *    API. The notification chain data is stored in a static variable.
26  *
27  * Note about the per-device constraint data struct allocation:
28  * . The per-device constraints data struct ptr is tored into the device
29  *    dev_pm_info.
30  * . To minimize the data usage by the per-device constraints, the data struct
31  *   is only allocated at the first call to dev_pm_qos_add_request.
32  * . The data is later free'd when the device is removed from the system.
33  *  . A global mutex protects the constraints users from the data being
34  *     allocated and free'd.
35  */
36 
37 #include <linux/pm_qos.h>
38 #include <linux/spinlock.h>
39 #include <linux/slab.h>
40 #include <linux/device.h>
41 #include <linux/mutex.h>
42 #include <linux/export.h>
43 
44 #include "power.h"
45 
46 static DEFINE_MUTEX(dev_pm_qos_mtx);
47 
48 static BLOCKING_NOTIFIER_HEAD(dev_pm_notifiers);
49 
50 /**
51  * __dev_pm_qos_read_value - Get PM QoS constraint for a given device.
52  * @dev: Device to get the PM QoS constraint value for.
53  *
54  * This routine must be called with dev->power.lock held.
55  */
56 s32 __dev_pm_qos_read_value(struct device *dev)
57 {
58 	struct pm_qos_constraints *c = dev->power.constraints;
59 
60 	return c ? pm_qos_read_value(c) : 0;
61 }
62 
63 /**
64  * dev_pm_qos_read_value - Get PM QoS constraint for a given device (locked).
65  * @dev: Device to get the PM QoS constraint value for.
66  */
67 s32 dev_pm_qos_read_value(struct device *dev)
68 {
69 	unsigned long flags;
70 	s32 ret;
71 
72 	spin_lock_irqsave(&dev->power.lock, flags);
73 	ret = __dev_pm_qos_read_value(dev);
74 	spin_unlock_irqrestore(&dev->power.lock, flags);
75 
76 	return ret;
77 }
78 
79 /*
80  * apply_constraint
81  * @req: constraint request to apply
82  * @action: action to perform add/update/remove, of type enum pm_qos_req_action
83  * @value: defines the qos request
84  *
85  * Internal function to update the constraints list using the PM QoS core
86  * code and if needed call the per-device and the global notification
87  * callbacks
88  */
89 static int apply_constraint(struct dev_pm_qos_request *req,
90 			    enum pm_qos_req_action action, int value)
91 {
92 	int ret, curr_value;
93 
94 	ret = pm_qos_update_target(req->dev->power.constraints,
95 				   &req->node, action, value);
96 
97 	if (ret) {
98 		/* Call the global callbacks if needed */
99 		curr_value = pm_qos_read_value(req->dev->power.constraints);
100 		blocking_notifier_call_chain(&dev_pm_notifiers,
101 					     (unsigned long)curr_value,
102 					     req);
103 	}
104 
105 	return ret;
106 }
107 
108 /*
109  * dev_pm_qos_constraints_allocate
110  * @dev: device to allocate data for
111  *
112  * Called at the first call to add_request, for constraint data allocation
113  * Must be called with the dev_pm_qos_mtx mutex held
114  */
115 static int dev_pm_qos_constraints_allocate(struct device *dev)
116 {
117 	struct pm_qos_constraints *c;
118 	struct blocking_notifier_head *n;
119 
120 	c = kzalloc(sizeof(*c), GFP_KERNEL);
121 	if (!c)
122 		return -ENOMEM;
123 
124 	n = kzalloc(sizeof(*n), GFP_KERNEL);
125 	if (!n) {
126 		kfree(c);
127 		return -ENOMEM;
128 	}
129 	BLOCKING_INIT_NOTIFIER_HEAD(n);
130 
131 	plist_head_init(&c->list);
132 	c->target_value = PM_QOS_DEV_LAT_DEFAULT_VALUE;
133 	c->default_value = PM_QOS_DEV_LAT_DEFAULT_VALUE;
134 	c->type = PM_QOS_MIN;
135 	c->notifiers = n;
136 
137 	spin_lock_irq(&dev->power.lock);
138 	dev->power.constraints = c;
139 	spin_unlock_irq(&dev->power.lock);
140 
141 	return 0;
142 }
143 
144 /**
145  * dev_pm_qos_constraints_init - Initalize device's PM QoS constraints pointer.
146  * @dev: target device
147  *
148  * Called from the device PM subsystem during device insertion under
149  * device_pm_lock().
150  */
151 void dev_pm_qos_constraints_init(struct device *dev)
152 {
153 	mutex_lock(&dev_pm_qos_mtx);
154 	dev->power.constraints = NULL;
155 	dev->power.power_state = PMSG_ON;
156 	mutex_unlock(&dev_pm_qos_mtx);
157 }
158 
159 /**
160  * dev_pm_qos_constraints_destroy
161  * @dev: target device
162  *
163  * Called from the device PM subsystem on device removal under device_pm_lock().
164  */
165 void dev_pm_qos_constraints_destroy(struct device *dev)
166 {
167 	struct dev_pm_qos_request *req, *tmp;
168 	struct pm_qos_constraints *c;
169 
170 	/*
171 	 * If the device's PM QoS resume latency limit has been exposed to user
172 	 * space, it has to be hidden at this point.
173 	 */
174 	dev_pm_qos_hide_latency_limit(dev);
175 
176 	mutex_lock(&dev_pm_qos_mtx);
177 
178 	dev->power.power_state = PMSG_INVALID;
179 	c = dev->power.constraints;
180 	if (!c)
181 		goto out;
182 
183 	/* Flush the constraints list for the device */
184 	plist_for_each_entry_safe(req, tmp, &c->list, node) {
185 		/*
186 		 * Update constraints list and call the notification
187 		 * callbacks if needed
188 		 */
189 		apply_constraint(req, PM_QOS_REMOVE_REQ, PM_QOS_DEFAULT_VALUE);
190 		memset(req, 0, sizeof(*req));
191 	}
192 
193 	spin_lock_irq(&dev->power.lock);
194 	dev->power.constraints = NULL;
195 	spin_unlock_irq(&dev->power.lock);
196 
197 	kfree(c->notifiers);
198 	kfree(c);
199 
200  out:
201 	mutex_unlock(&dev_pm_qos_mtx);
202 }
203 
204 /**
205  * dev_pm_qos_add_request - inserts new qos request into the list
206  * @dev: target device for the constraint
207  * @req: pointer to a preallocated handle
208  * @value: defines the qos request
209  *
210  * This function inserts a new entry in the device constraints list of
211  * requested qos performance characteristics. It recomputes the aggregate
212  * QoS expectations of parameters and initializes the dev_pm_qos_request
213  * handle.  Caller needs to save this handle for later use in updates and
214  * removal.
215  *
216  * Returns 1 if the aggregated constraint value has changed,
217  * 0 if the aggregated constraint value has not changed,
218  * -EINVAL in case of wrong parameters, -ENOMEM if there's not enough memory
219  * to allocate for data structures, -ENODEV if the device has just been removed
220  * from the system.
221  */
222 int dev_pm_qos_add_request(struct device *dev, struct dev_pm_qos_request *req,
223 			   s32 value)
224 {
225 	int ret = 0;
226 
227 	if (!dev || !req) /*guard against callers passing in null */
228 		return -EINVAL;
229 
230 	if (WARN(dev_pm_qos_request_active(req),
231 		 "%s() called for already added request\n", __func__))
232 		return -EINVAL;
233 
234 	req->dev = dev;
235 
236 	mutex_lock(&dev_pm_qos_mtx);
237 
238 	if (!dev->power.constraints) {
239 		if (dev->power.power_state.event == PM_EVENT_INVALID) {
240 			/* The device has been removed from the system. */
241 			req->dev = NULL;
242 			ret = -ENODEV;
243 			goto out;
244 		} else {
245 			/*
246 			 * Allocate the constraints data on the first call to
247 			 * add_request, i.e. only if the data is not already
248 			 * allocated and if the device has not been removed.
249 			 */
250 			ret = dev_pm_qos_constraints_allocate(dev);
251 		}
252 	}
253 
254 	if (!ret)
255 		ret = apply_constraint(req, PM_QOS_ADD_REQ, value);
256 
257  out:
258 	mutex_unlock(&dev_pm_qos_mtx);
259 
260 	return ret;
261 }
262 EXPORT_SYMBOL_GPL(dev_pm_qos_add_request);
263 
264 /**
265  * dev_pm_qos_update_request - modifies an existing qos request
266  * @req : handle to list element holding a dev_pm_qos request to use
267  * @new_value: defines the qos request
268  *
269  * Updates an existing dev PM qos request along with updating the
270  * target value.
271  *
272  * Attempts are made to make this code callable on hot code paths.
273  *
274  * Returns 1 if the aggregated constraint value has changed,
275  * 0 if the aggregated constraint value has not changed,
276  * -EINVAL in case of wrong parameters, -ENODEV if the device has been
277  * removed from the system
278  */
279 int dev_pm_qos_update_request(struct dev_pm_qos_request *req,
280 			      s32 new_value)
281 {
282 	int ret = 0;
283 
284 	if (!req) /*guard against callers passing in null */
285 		return -EINVAL;
286 
287 	if (WARN(!dev_pm_qos_request_active(req),
288 		 "%s() called for unknown object\n", __func__))
289 		return -EINVAL;
290 
291 	mutex_lock(&dev_pm_qos_mtx);
292 
293 	if (req->dev->power.constraints) {
294 		if (new_value != req->node.prio)
295 			ret = apply_constraint(req, PM_QOS_UPDATE_REQ,
296 					       new_value);
297 	} else {
298 		/* Return if the device has been removed */
299 		ret = -ENODEV;
300 	}
301 
302 	mutex_unlock(&dev_pm_qos_mtx);
303 	return ret;
304 }
305 EXPORT_SYMBOL_GPL(dev_pm_qos_update_request);
306 
307 /**
308  * dev_pm_qos_remove_request - modifies an existing qos request
309  * @req: handle to request list element
310  *
311  * Will remove pm qos request from the list of constraints and
312  * recompute the current target value. Call this on slow code paths.
313  *
314  * Returns 1 if the aggregated constraint value has changed,
315  * 0 if the aggregated constraint value has not changed,
316  * -EINVAL in case of wrong parameters, -ENODEV if the device has been
317  * removed from the system
318  */
319 int dev_pm_qos_remove_request(struct dev_pm_qos_request *req)
320 {
321 	int ret = 0;
322 
323 	if (!req) /*guard against callers passing in null */
324 		return -EINVAL;
325 
326 	if (WARN(!dev_pm_qos_request_active(req),
327 		 "%s() called for unknown object\n", __func__))
328 		return -EINVAL;
329 
330 	mutex_lock(&dev_pm_qos_mtx);
331 
332 	if (req->dev->power.constraints) {
333 		ret = apply_constraint(req, PM_QOS_REMOVE_REQ,
334 				       PM_QOS_DEFAULT_VALUE);
335 		memset(req, 0, sizeof(*req));
336 	} else {
337 		/* Return if the device has been removed */
338 		ret = -ENODEV;
339 	}
340 
341 	mutex_unlock(&dev_pm_qos_mtx);
342 	return ret;
343 }
344 EXPORT_SYMBOL_GPL(dev_pm_qos_remove_request);
345 
346 /**
347  * dev_pm_qos_add_notifier - sets notification entry for changes to target value
348  * of per-device PM QoS constraints
349  *
350  * @dev: target device for the constraint
351  * @notifier: notifier block managed by caller.
352  *
353  * Will register the notifier into a notification chain that gets called
354  * upon changes to the target value for the device.
355  */
356 int dev_pm_qos_add_notifier(struct device *dev, struct notifier_block *notifier)
357 {
358 	int retval = 0;
359 
360 	mutex_lock(&dev_pm_qos_mtx);
361 
362 	/* Silently return if the constraints object is not present. */
363 	if (dev->power.constraints)
364 		retval = blocking_notifier_chain_register(
365 				dev->power.constraints->notifiers,
366 				notifier);
367 
368 	mutex_unlock(&dev_pm_qos_mtx);
369 	return retval;
370 }
371 EXPORT_SYMBOL_GPL(dev_pm_qos_add_notifier);
372 
373 /**
374  * dev_pm_qos_remove_notifier - deletes notification for changes to target value
375  * of per-device PM QoS constraints
376  *
377  * @dev: target device for the constraint
378  * @notifier: notifier block to be removed.
379  *
380  * Will remove the notifier from the notification chain that gets called
381  * upon changes to the target value.
382  */
383 int dev_pm_qos_remove_notifier(struct device *dev,
384 			       struct notifier_block *notifier)
385 {
386 	int retval = 0;
387 
388 	mutex_lock(&dev_pm_qos_mtx);
389 
390 	/* Silently return if the constraints object is not present. */
391 	if (dev->power.constraints)
392 		retval = blocking_notifier_chain_unregister(
393 				dev->power.constraints->notifiers,
394 				notifier);
395 
396 	mutex_unlock(&dev_pm_qos_mtx);
397 	return retval;
398 }
399 EXPORT_SYMBOL_GPL(dev_pm_qos_remove_notifier);
400 
401 /**
402  * dev_pm_qos_add_global_notifier - sets notification entry for changes to
403  * target value of the PM QoS constraints for any device
404  *
405  * @notifier: notifier block managed by caller.
406  *
407  * Will register the notifier into a notification chain that gets called
408  * upon changes to the target value for any device.
409  */
410 int dev_pm_qos_add_global_notifier(struct notifier_block *notifier)
411 {
412 	return blocking_notifier_chain_register(&dev_pm_notifiers, notifier);
413 }
414 EXPORT_SYMBOL_GPL(dev_pm_qos_add_global_notifier);
415 
416 /**
417  * dev_pm_qos_remove_global_notifier - deletes notification for changes to
418  * target value of PM QoS constraints for any device
419  *
420  * @notifier: notifier block to be removed.
421  *
422  * Will remove the notifier from the notification chain that gets called
423  * upon changes to the target value for any device.
424  */
425 int dev_pm_qos_remove_global_notifier(struct notifier_block *notifier)
426 {
427 	return blocking_notifier_chain_unregister(&dev_pm_notifiers, notifier);
428 }
429 EXPORT_SYMBOL_GPL(dev_pm_qos_remove_global_notifier);
430 
431 /**
432  * dev_pm_qos_add_ancestor_request - Add PM QoS request for device's ancestor.
433  * @dev: Device whose ancestor to add the request for.
434  * @req: Pointer to the preallocated handle.
435  * @value: Constraint latency value.
436  */
437 int dev_pm_qos_add_ancestor_request(struct device *dev,
438 				    struct dev_pm_qos_request *req, s32 value)
439 {
440 	struct device *ancestor = dev->parent;
441 	int error = -ENODEV;
442 
443 	while (ancestor && !ancestor->power.ignore_children)
444 		ancestor = ancestor->parent;
445 
446 	if (ancestor)
447 		error = dev_pm_qos_add_request(ancestor, req, value);
448 
449 	if (error)
450 		req->dev = NULL;
451 
452 	return error;
453 }
454 EXPORT_SYMBOL_GPL(dev_pm_qos_add_ancestor_request);
455 
456 #ifdef CONFIG_PM_RUNTIME
457 static void __dev_pm_qos_drop_user_request(struct device *dev)
458 {
459 	dev_pm_qos_remove_request(dev->power.pq_req);
460 	dev->power.pq_req = 0;
461 }
462 
463 /**
464  * dev_pm_qos_expose_latency_limit - Expose PM QoS latency limit to user space.
465  * @dev: Device whose PM QoS latency limit is to be exposed to user space.
466  * @value: Initial value of the latency limit.
467  */
468 int dev_pm_qos_expose_latency_limit(struct device *dev, s32 value)
469 {
470 	struct dev_pm_qos_request *req;
471 	int ret;
472 
473 	if (!device_is_registered(dev) || value < 0)
474 		return -EINVAL;
475 
476 	if (dev->power.pq_req)
477 		return -EEXIST;
478 
479 	req = kzalloc(sizeof(*req), GFP_KERNEL);
480 	if (!req)
481 		return -ENOMEM;
482 
483 	ret = dev_pm_qos_add_request(dev, req, value);
484 	if (ret < 0)
485 		return ret;
486 
487 	dev->power.pq_req = req;
488 	ret = pm_qos_sysfs_add(dev);
489 	if (ret)
490 		__dev_pm_qos_drop_user_request(dev);
491 
492 	return ret;
493 }
494 EXPORT_SYMBOL_GPL(dev_pm_qos_expose_latency_limit);
495 
496 /**
497  * dev_pm_qos_hide_latency_limit - Hide PM QoS latency limit from user space.
498  * @dev: Device whose PM QoS latency limit is to be hidden from user space.
499  */
500 void dev_pm_qos_hide_latency_limit(struct device *dev)
501 {
502 	if (dev->power.pq_req) {
503 		pm_qos_sysfs_remove(dev);
504 		__dev_pm_qos_drop_user_request(dev);
505 	}
506 }
507 EXPORT_SYMBOL_GPL(dev_pm_qos_hide_latency_limit);
508 #endif /* CONFIG_PM_RUNTIME */
509