]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/cpufreq/cpufreq_stats.c
Merge tag 'stable/for-linus-3.9-rc0-tag' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.git] / drivers / cpufreq / cpufreq_stats.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/cpufreq/cpufreq_stats.c
3 *
4 * Copyright (C) 2003-2004 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
0a829c5a 5 * (C) 2004 Zou Nan hai <nanhai.zou@intel.com>.
1da177e4
LT
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
1da177e4 12#include <linux/kernel.h>
5a0e3ad6 13#include <linux/slab.h>
1da177e4
LT
14#include <linux/cpu.h>
15#include <linux/sysfs.h>
16#include <linux/cpufreq.h>
5c720d37 17#include <linux/module.h>
1da177e4
LT
18#include <linux/jiffies.h>
19#include <linux/percpu.h>
20#include <linux/kobject.h>
21#include <linux/spinlock.h>
c32b6b8e 22#include <linux/notifier.h>
58f1df25 23#include <asm/cputime.h>
1da177e4
LT
24
25static spinlock_t cpufreq_stats_lock;
26
1da177e4
LT
27struct cpufreq_stats {
28 unsigned int cpu;
29 unsigned int total_trans;
58f1df25 30 unsigned long long last_time;
1da177e4
LT
31 unsigned int max_state;
32 unsigned int state_num;
33 unsigned int last_index;
1e7586a1 34 u64 *time_in_state;
1da177e4
LT
35 unsigned int *freq_table;
36#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
37 unsigned int *trans_table;
38#endif
39};
40
7a6aedfa 41static DEFINE_PER_CPU(struct cpufreq_stats *, cpufreq_stats_table);
1da177e4
LT
42
43struct cpufreq_stats_attribute {
44 struct attribute attr;
45 ssize_t(*show) (struct cpufreq_stats *, char *);
46};
47
0a829c5a 48static int cpufreq_stats_update(unsigned int cpu)
1da177e4
LT
49{
50 struct cpufreq_stats *stat;
58f1df25
VP
51 unsigned long long cur_time;
52
53 cur_time = get_jiffies_64();
1da177e4 54 spin_lock(&cpufreq_stats_lock);
7a6aedfa 55 stat = per_cpu(cpufreq_stats_table, cpu);
1da177e4 56 if (stat->time_in_state)
64861634
MS
57 stat->time_in_state[stat->last_index] +=
58 cur_time - stat->last_time;
58f1df25 59 stat->last_time = cur_time;
1da177e4
LT
60 spin_unlock(&cpufreq_stats_lock);
61 return 0;
62}
63
0a829c5a 64static ssize_t show_total_trans(struct cpufreq_policy *policy, char *buf)
1da177e4 65{
7a6aedfa 66 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, policy->cpu);
511e9ee1 67 if (!stat)
1da177e4
LT
68 return 0;
69 return sprintf(buf, "%d\n",
7a6aedfa 70 per_cpu(cpufreq_stats_table, stat->cpu)->total_trans);
1da177e4
LT
71}
72
0a829c5a 73static ssize_t show_time_in_state(struct cpufreq_policy *policy, char *buf)
1da177e4
LT
74{
75 ssize_t len = 0;
76 int i;
7a6aedfa 77 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, policy->cpu);
511e9ee1 78 if (!stat)
1da177e4
LT
79 return 0;
80 cpufreq_stats_update(stat->cpu);
81 for (i = 0; i < stat->state_num; i++) {
32ee8c3e 82 len += sprintf(buf + len, "%u %llu\n", stat->freq_table[i],
0a829c5a
DJ
83 (unsigned long long)
84 cputime64_to_clock_t(stat->time_in_state[i]));
1da177e4
LT
85 }
86 return len;
87}
88
89#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
0a829c5a 90static ssize_t show_trans_table(struct cpufreq_policy *policy, char *buf)
1da177e4
LT
91{
92 ssize_t len = 0;
93 int i, j;
94
7a6aedfa 95 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, policy->cpu);
511e9ee1 96 if (!stat)
1da177e4
LT
97 return 0;
98 cpufreq_stats_update(stat->cpu);
58f1df25
VP
99 len += snprintf(buf + len, PAGE_SIZE - len, " From : To\n");
100 len += snprintf(buf + len, PAGE_SIZE - len, " : ");
101 for (i = 0; i < stat->state_num; i++) {
102 if (len >= PAGE_SIZE)
103 break;
104 len += snprintf(buf + len, PAGE_SIZE - len, "%9u ",
105 stat->freq_table[i]);
106 }
107 if (len >= PAGE_SIZE)
25aca347 108 return PAGE_SIZE;
58f1df25
VP
109
110 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
111
1da177e4
LT
112 for (i = 0; i < stat->state_num; i++) {
113 if (len >= PAGE_SIZE)
114 break;
58f1df25
VP
115
116 len += snprintf(buf + len, PAGE_SIZE - len, "%9u: ",
1da177e4
LT
117 stat->freq_table[i]);
118
119 for (j = 0; j < stat->state_num; j++) {
120 if (len >= PAGE_SIZE)
121 break;
58f1df25 122 len += snprintf(buf + len, PAGE_SIZE - len, "%9u ",
1da177e4
LT
123 stat->trans_table[i*stat->max_state+j]);
124 }
25aca347
CEB
125 if (len >= PAGE_SIZE)
126 break;
1da177e4
LT
127 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
128 }
25aca347
CEB
129 if (len >= PAGE_SIZE)
130 return PAGE_SIZE;
1da177e4
LT
131 return len;
132}
df18e504 133cpufreq_freq_attr_ro(trans_table);
1da177e4
LT
134#endif
135
df18e504
VK
136cpufreq_freq_attr_ro(total_trans);
137cpufreq_freq_attr_ro(time_in_state);
1da177e4
LT
138
139static struct attribute *default_attrs[] = {
df18e504
VK
140 &total_trans.attr,
141 &time_in_state.attr,
1da177e4 142#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
df18e504 143 &trans_table.attr,
1da177e4
LT
144#endif
145 NULL
146};
147static struct attribute_group stats_attr_group = {
148 .attrs = default_attrs,
149 .name = "stats"
150};
151
0a829c5a 152static int freq_table_get_index(struct cpufreq_stats *stat, unsigned int freq)
1da177e4
LT
153{
154 int index;
155 for (index = 0; index < stat->max_state; index++)
156 if (stat->freq_table[index] == freq)
157 return index;
158 return -1;
159}
160
98586ed8 161/* should be called late in the CPU removal sequence so that the stats
162 * memory is still available in case someone tries to use it.
163 */
a3323473 164static void cpufreq_stats_free_table(unsigned int cpu)
1da177e4 165{
7a6aedfa 166 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, cpu);
b8eed8af 167
1da177e4 168 if (stat) {
b8eed8af 169 pr_debug("%s: Free stat table\n", __func__);
1da177e4
LT
170 kfree(stat->time_in_state);
171 kfree(stat);
b8eed8af 172 per_cpu(cpufreq_stats_table, cpu) = NULL;
1da177e4 173 }
98586ed8 174}
175
176/* must be called early in the CPU removal sequence (before
177 * cpufreq_remove_dev) so that policy is still valid.
178 */
179static void cpufreq_stats_free_sysfs(unsigned int cpu)
180{
181 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
633d47d6
DB
182
183 if (!cpufreq_frequency_get_table(cpu))
184 return;
185
2624f90c 186 if (policy && !policy_is_shared(policy)) {
b8eed8af 187 pr_debug("%s: Free sysfs stat\n", __func__);
98586ed8 188 sysfs_remove_group(&policy->kobj, &stats_attr_group);
b8eed8af 189 }
1da177e4
LT
190 if (policy)
191 cpufreq_cpu_put(policy);
192}
193
0a829c5a 194static int cpufreq_stats_create_table(struct cpufreq_policy *policy,
1da177e4
LT
195 struct cpufreq_frequency_table *table)
196{
197 unsigned int i, j, count = 0, ret = 0;
198 struct cpufreq_stats *stat;
199 struct cpufreq_policy *data;
200 unsigned int alloc_size;
201 unsigned int cpu = policy->cpu;
7a6aedfa 202 if (per_cpu(cpufreq_stats_table, cpu))
1da177e4 203 return -EBUSY;
0a829c5a
DJ
204 stat = kzalloc(sizeof(struct cpufreq_stats), GFP_KERNEL);
205 if ((stat) == NULL)
1da177e4 206 return -ENOMEM;
1da177e4
LT
207
208 data = cpufreq_cpu_get(cpu);
bc7b26fd
DJ
209 if (data == NULL) {
210 ret = -EINVAL;
211 goto error_get_fail;
212 }
213
0a829c5a
DJ
214 ret = sysfs_create_group(&data->kobj, &stats_attr_group);
215 if (ret)
1da177e4
LT
216 goto error_out;
217
218 stat->cpu = cpu;
7a6aedfa 219 per_cpu(cpufreq_stats_table, cpu) = stat;
1da177e4 220
0a829c5a 221 for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
1da177e4
LT
222 unsigned int freq = table[i].frequency;
223 if (freq == CPUFREQ_ENTRY_INVALID)
224 continue;
225 count++;
226 }
227
1e7586a1 228 alloc_size = count * sizeof(int) + count * sizeof(u64);
1da177e4
LT
229
230#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
231 alloc_size += count * count * sizeof(int);
232#endif
233 stat->max_state = count;
e98df50c 234 stat->time_in_state = kzalloc(alloc_size, GFP_KERNEL);
1da177e4
LT
235 if (!stat->time_in_state) {
236 ret = -ENOMEM;
237 goto error_out;
238 }
1da177e4
LT
239 stat->freq_table = (unsigned int *)(stat->time_in_state + count);
240
241#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
242 stat->trans_table = stat->freq_table + count;
243#endif
244 j = 0;
245 for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
246 unsigned int freq = table[i].frequency;
247 if (freq == CPUFREQ_ENTRY_INVALID)
248 continue;
249 if (freq_table_get_index(stat, freq) == -1)
250 stat->freq_table[j++] = freq;
251 }
252 stat->state_num = j;
253 spin_lock(&cpufreq_stats_lock);
58f1df25 254 stat->last_time = get_jiffies_64();
1da177e4
LT
255 stat->last_index = freq_table_get_index(stat, policy->cur);
256 spin_unlock(&cpufreq_stats_lock);
257 cpufreq_cpu_put(data);
258 return 0;
259error_out:
260 cpufreq_cpu_put(data);
b7fb358c 261error_get_fail:
1da177e4 262 kfree(stat);
7a6aedfa 263 per_cpu(cpufreq_stats_table, cpu) = NULL;
1da177e4
LT
264 return ret;
265}
266
b8eed8af
VK
267static void cpufreq_stats_update_policy_cpu(struct cpufreq_policy *policy)
268{
269 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table,
270 policy->last_cpu);
271
272 pr_debug("Updating stats_table for new_cpu %u from last_cpu %u\n",
273 policy->cpu, policy->last_cpu);
274 per_cpu(cpufreq_stats_table, policy->cpu) = per_cpu(cpufreq_stats_table,
275 policy->last_cpu);
276 per_cpu(cpufreq_stats_table, policy->last_cpu) = NULL;
277 stat->cpu = policy->cpu;
278}
279
0a829c5a
DJ
280static int cpufreq_stat_notifier_policy(struct notifier_block *nb,
281 unsigned long val, void *data)
1da177e4
LT
282{
283 int ret;
284 struct cpufreq_policy *policy = data;
285 struct cpufreq_frequency_table *table;
286 unsigned int cpu = policy->cpu;
b8eed8af
VK
287
288 if (val == CPUFREQ_UPDATE_POLICY_CPU) {
289 cpufreq_stats_update_policy_cpu(policy);
290 return 0;
291 }
292
1da177e4
LT
293 if (val != CPUFREQ_NOTIFY)
294 return 0;
295 table = cpufreq_frequency_get_table(cpu);
296 if (!table)
297 return 0;
0a829c5a
DJ
298 ret = cpufreq_stats_create_table(policy, table);
299 if (ret)
1da177e4
LT
300 return ret;
301 return 0;
302}
303
0a829c5a
DJ
304static int cpufreq_stat_notifier_trans(struct notifier_block *nb,
305 unsigned long val, void *data)
1da177e4
LT
306{
307 struct cpufreq_freqs *freq = data;
308 struct cpufreq_stats *stat;
309 int old_index, new_index;
310
311 if (val != CPUFREQ_POSTCHANGE)
312 return 0;
313
7a6aedfa 314 stat = per_cpu(cpufreq_stats_table, freq->cpu);
1da177e4
LT
315 if (!stat)
316 return 0;
8edc59d9 317
6501faf8 318 old_index = stat->last_index;
1da177e4
LT
319 new_index = freq_table_get_index(stat, freq->new);
320
46a310b8
KRW
321 /* We can't do stat->time_in_state[-1]= .. */
322 if (old_index == -1 || new_index == -1)
1da177e4
LT
323 return 0;
324
46a310b8
KRW
325 cpufreq_stats_update(freq->cpu);
326
327 if (old_index == new_index)
8edc59d9
VP
328 return 0;
329
1da177e4
LT
330 spin_lock(&cpufreq_stats_lock);
331 stat->last_index = new_index;
332#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
333 stat->trans_table[old_index * stat->max_state + new_index]++;
334#endif
335 stat->total_trans++;
336 spin_unlock(&cpufreq_stats_lock);
337 return 0;
338}
339
55395ae7
SS
340static int __cpuinit cpufreq_stat_cpu_callback(struct notifier_block *nfb,
341 unsigned long action,
342 void *hcpu)
c32b6b8e
AR
343{
344 unsigned int cpu = (unsigned long)hcpu;
345
346 switch (action) {
347 case CPU_ONLINE:
8bb78442 348 case CPU_ONLINE_FROZEN:
c32b6b8e
AR
349 cpufreq_update_policy(cpu);
350 break;
98586ed8 351 case CPU_DOWN_PREPARE:
e3773677 352 case CPU_DOWN_PREPARE_FROZEN:
98586ed8 353 cpufreq_stats_free_sysfs(cpu);
354 break;
c32b6b8e 355 case CPU_DEAD:
8bb78442 356 case CPU_DEAD_FROZEN:
c32b6b8e
AR
357 cpufreq_stats_free_table(cpu);
358 break;
359 }
360 return NOTIFY_OK;
361}
362
98586ed8 363/* priority=1 so this will get called before cpufreq_remove_dev */
469057d5 364static struct notifier_block cpufreq_stat_cpu_notifier __refdata = {
c32b6b8e 365 .notifier_call = cpufreq_stat_cpu_callback,
98586ed8 366 .priority = 1,
c32b6b8e
AR
367};
368
1da177e4
LT
369static struct notifier_block notifier_policy_block = {
370 .notifier_call = cpufreq_stat_notifier_policy
371};
372
373static struct notifier_block notifier_trans_block = {
374 .notifier_call = cpufreq_stat_notifier_trans
375};
376
0a829c5a 377static int __init cpufreq_stats_init(void)
1da177e4
LT
378{
379 int ret;
380 unsigned int cpu;
c32b6b8e 381
1da177e4 382 spin_lock_init(&cpufreq_stats_lock);
0a829c5a
DJ
383 ret = cpufreq_register_notifier(&notifier_policy_block,
384 CPUFREQ_POLICY_NOTIFIER);
385 if (ret)
1da177e4
LT
386 return ret;
387
56836fb4
KK
388 register_hotcpu_notifier(&cpufreq_stat_cpu_notifier);
389 for_each_online_cpu(cpu)
390 cpufreq_update_policy(cpu);
391
0a829c5a
DJ
392 ret = cpufreq_register_notifier(&notifier_trans_block,
393 CPUFREQ_TRANSITION_NOTIFIER);
394 if (ret) {
1da177e4
LT
395 cpufreq_unregister_notifier(&notifier_policy_block,
396 CPUFREQ_POLICY_NOTIFIER);
56836fb4
KK
397 unregister_hotcpu_notifier(&cpufreq_stat_cpu_notifier);
398 for_each_online_cpu(cpu)
399 cpufreq_stats_free_table(cpu);
1da177e4
LT
400 return ret;
401 }
402
1da177e4
LT
403 return 0;
404}
0a829c5a 405static void __exit cpufreq_stats_exit(void)
1da177e4
LT
406{
407 unsigned int cpu;
c32b6b8e 408
1da177e4
LT
409 cpufreq_unregister_notifier(&notifier_policy_block,
410 CPUFREQ_POLICY_NOTIFIER);
411 cpufreq_unregister_notifier(&notifier_trans_block,
412 CPUFREQ_TRANSITION_NOTIFIER);
65edc68c 413 unregister_hotcpu_notifier(&cpufreq_stat_cpu_notifier);
c32b6b8e 414 for_each_online_cpu(cpu) {
55395ae7 415 cpufreq_stats_free_table(cpu);
13f06753 416 cpufreq_stats_free_sysfs(cpu);
c32b6b8e 417 }
1da177e4
LT
418}
419
0a829c5a
DJ
420MODULE_AUTHOR("Zou Nan hai <nanhai.zou@intel.com>");
421MODULE_DESCRIPTION("'cpufreq_stats' - A driver to export cpufreq stats "
e08f5f5b 422 "through sysfs filesystem");
0a829c5a 423MODULE_LICENSE("GPL");
1da177e4
LT
424
425module_init(cpufreq_stats_init);
426module_exit(cpufreq_stats_exit);