2 * latency.c: Explicit system-wide latency-expectation infrastructure
4 * The purpose of this infrastructure is to allow device drivers to set
5 * latency constraint they have and to collect and summarize these
6 * expectations globally. The cummulated result can then be used by
7 * power management and similar users to make decisions that have
8 * tradoffs with a latency component.
10 * An example user of this are the x86 C-states; each higher C state saves
11 * more power, but has a higher exit latency. For the idle loop power
12 * code to make a good decision which C-state to use, information about
13 * acceptable latencies is required.
15 * An example announcer of latency is an audio driver that knowns it
16 * will get an interrupt when the hardware has 200 usec of samples
17 * left in the DMA buffer; in that case the driver can set a latency
18 * constraint of, say, 150 usec.
20 * Multiple drivers can each announce their maximum accepted latency,
21 * to keep these appart, a string based identifier is used.
24 * (C) Copyright 2006 Intel Corporation
25 * Author: Arjan van de Ven <arjan@linux.intel.com>
27 * This program is free software; you can redistribute it and/or
28 * modify it under the terms of the GNU General Public License
29 * as published by the Free Software Foundation; version 2
33 #include <linux/latency.h>
34 #include <linux/list.h>
35 #include <linux/spinlock.h>
36 #include <linux/slab.h>
37 #include <linux/module.h>
38 #include <linux/notifier.h>
39 #include <linux/jiffies.h>
40 #include <asm/atomic.h>
43 struct list_head list
;
49 * locking rule: all modifications to current_max_latency and
50 * latency_list need to be done while holding the latency_lock.
51 * latency_lock needs to be taken _irqsave.
53 static atomic_t current_max_latency
;
54 static DEFINE_SPINLOCK(latency_lock
);
56 static LIST_HEAD(latency_list
);
57 static BLOCKING_NOTIFIER_HEAD(latency_notifier
);
60 * This function returns the maximum latency allowed, which
61 * happens to be the minimum of all maximum latencies on the
64 static int __find_max_latency(void)
66 int min
= INFINITE_LATENCY
;
67 struct latency_info
*info
;
69 list_for_each_entry(info
, &latency_list
, list
) {
70 if (info
->usecs
< min
)
77 * set_acceptable_latency - sets the maximum latency acceptable
78 * @identifier: string that identifies this driver
79 * @usecs: maximum acceptable latency for this driver
81 * This function informs the kernel that this device(driver)
82 * can accept at most usecs latency. This setting is used for
83 * power management and similar tradeoffs.
85 * This function sleeps and can only be called from process
87 * Calling this function with an existing identifier is valid
88 * and will cause the existing latency setting to be changed.
90 void set_acceptable_latency(char *identifier
, int usecs
)
92 struct latency_info
*info
, *iter
;
96 info
= kzalloc(sizeof(struct latency_info
), GFP_KERNEL
);
100 info
->identifier
= kstrdup(identifier
, GFP_KERNEL
);
101 if (!info
->identifier
)
104 spin_lock_irqsave(&latency_lock
, flags
);
105 list_for_each_entry(iter
, &latency_list
, list
) {
106 if (strcmp(iter
->identifier
, identifier
)==0) {
113 list_add(&info
->list
, &latency_list
);
115 if (usecs
< atomic_read(¤t_max_latency
))
116 atomic_set(¤t_max_latency
, usecs
);
118 spin_unlock_irqrestore(&latency_lock
, flags
);
120 blocking_notifier_call_chain(&latency_notifier
,
121 atomic_read(¤t_max_latency
), NULL
);
124 * if we inserted the new one, we're done; otherwise there was
125 * an existing one so we need to free the redundant data
130 kfree(info
->identifier
);
134 EXPORT_SYMBOL_GPL(set_acceptable_latency
);
137 * modify_acceptable_latency - changes the maximum latency acceptable
138 * @identifier: string that identifies this driver
139 * @usecs: maximum acceptable latency for this driver
141 * This function informs the kernel that this device(driver)
142 * can accept at most usecs latency. This setting is used for
143 * power management and similar tradeoffs.
145 * This function does not sleep and can be called in any context.
146 * Trying to use a non-existing identifier silently gets ignored.
148 * Due to the atomic nature of this function, the modified latency
149 * value will only be used for future decisions; past decisions
150 * can still lead to longer latencies in the near future.
152 void modify_acceptable_latency(char *identifier
, int usecs
)
154 struct latency_info
*iter
;
157 spin_lock_irqsave(&latency_lock
, flags
);
158 list_for_each_entry(iter
, &latency_list
, list
) {
159 if (strcmp(iter
->identifier
, identifier
) == 0) {
164 if (usecs
< atomic_read(¤t_max_latency
))
165 atomic_set(¤t_max_latency
, usecs
);
166 spin_unlock_irqrestore(&latency_lock
, flags
);
168 EXPORT_SYMBOL_GPL(modify_acceptable_latency
);
171 * remove_acceptable_latency - removes the maximum latency acceptable
172 * @identifier: string that identifies this driver
174 * This function removes a previously set maximum latency setting
175 * for the driver and frees up any resources associated with the
176 * bookkeeping needed for this.
178 * This function does not sleep and can be called in any context.
179 * Trying to use a non-existing identifier silently gets ignored.
181 void remove_acceptable_latency(char *identifier
)
185 struct latency_info
*iter
, *temp
;
187 spin_lock_irqsave(&latency_lock
, flags
);
189 list_for_each_entry_safe(iter
, temp
, &latency_list
, list
) {
190 if (strcmp(iter
->identifier
, identifier
) == 0) {
191 list_del(&iter
->list
);
192 newmax
= iter
->usecs
;
193 kfree(iter
->identifier
);
199 /* If we just deleted the system wide value, we need to
200 * recalculate with a full search
202 if (newmax
== atomic_read(¤t_max_latency
)) {
203 newmax
= __find_max_latency();
204 atomic_set(¤t_max_latency
, newmax
);
206 spin_unlock_irqrestore(&latency_lock
, flags
);
208 EXPORT_SYMBOL_GPL(remove_acceptable_latency
);
211 * system_latency_constraint - queries the system wide latency maximum
213 * This function returns the system wide maximum latency in
216 * This function does not sleep and can be called in any context.
218 int system_latency_constraint(void)
220 return atomic_read(¤t_max_latency
);
222 EXPORT_SYMBOL_GPL(system_latency_constraint
);
225 * synchronize_acceptable_latency - recalculates all latency decisions
227 * This function will cause a callback to various kernel pieces that
228 * will make those pieces rethink their latency decisions. This implies
229 * that if there are overlong latencies in hardware state already, those
230 * latencies get taken right now. When this call completes no overlong
231 * latency decisions should be active anymore.
233 * Typical usecase of this is after a modify_acceptable_latency() call,
234 * which in itself is non-blocking and non-synchronizing.
236 * This function blocks and should not be called with locks held.
239 void synchronize_acceptable_latency(void)
241 blocking_notifier_call_chain(&latency_notifier
,
242 atomic_read(¤t_max_latency
), NULL
);
244 EXPORT_SYMBOL_GPL(synchronize_acceptable_latency
);
247 * Latency notifier: this notifier gets called when a non-atomic new
248 * latency value gets set. The expectation nof the caller of the
249 * non-atomic set is that when the call returns, future latencies
250 * are within bounds, so the functions on the notifier list are
251 * expected to take the overlong latencies immediately, inside the
252 * callback, and not make a overlong latency decision anymore.
254 * The callback gets called when the new latency value is made
255 * active so system_latency_constraint() returns the new latency.
257 int register_latency_notifier(struct notifier_block
* nb
)
259 return blocking_notifier_chain_register(&latency_notifier
, nb
);
261 EXPORT_SYMBOL_GPL(register_latency_notifier
);
263 int unregister_latency_notifier(struct notifier_block
* nb
)
265 return blocking_notifier_chain_unregister(&latency_notifier
, nb
);
267 EXPORT_SYMBOL_GPL(unregister_latency_notifier
);
269 static __init
int latency_init(void)
271 atomic_set(¤t_max_latency
, INFINITE_LATENCY
);
273 * we don't want by default to have longer latencies than 2 ticks,
274 * since that would cause lost ticks
276 set_acceptable_latency("kernel", 2*1000000/HZ
);
280 module_init(latency_init
);