blob: 5793e1447fb177f476f5f38ee117857444ba98c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/cpufreq/cpufreq_stats.c
3 *
4 * Copyright (C) 2003-2004 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
Dave Jones0a829c52009-01-18 01:49:04 -05005 * (C) 2004 Zou Nan hai <nanhai.zou@intel.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/cpufreq.h>
Paul Gortmaker5c720d372011-05-27 13:23:32 -040014#include <linux/module.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053015#include <linux/slab.h>
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -070016#include <asm/cputime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18static spinlock_t cpufreq_stats_lock;
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020struct cpufreq_stats {
21 unsigned int cpu;
22 unsigned int total_trans;
Viresh Kumarbb176f72013-06-19 14:19:33 +053023 unsigned long long last_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 unsigned int max_state;
25 unsigned int state_num;
26 unsigned int last_index;
Viresh Kumar1e7586a2012-10-26 00:51:21 +020027 u64 *time_in_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 unsigned int *freq_table;
29#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
30 unsigned int *trans_table;
31#endif
32};
33
Mike Travis7a6aedf2008-03-25 15:06:53 -070034static DEFINE_PER_CPU(struct cpufreq_stats *, cpufreq_stats_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36struct cpufreq_stats_attribute {
37 struct attribute attr;
38 ssize_t(*show) (struct cpufreq_stats *, char *);
39};
40
Dave Jones0a829c52009-01-18 01:49:04 -050041static int cpufreq_stats_update(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 struct cpufreq_stats *stat;
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -070044 unsigned long long cur_time;
45
46 cur_time = get_jiffies_64();
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 spin_lock(&cpufreq_stats_lock);
Mike Travis7a6aedf2008-03-25 15:06:53 -070048 stat = per_cpu(cpufreq_stats_table, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 if (stat->time_in_state)
Martin Schwidefsky64861632011-12-15 14:56:09 +010050 stat->time_in_state[stat->last_index] +=
51 cur_time - stat->last_time;
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -070052 stat->last_time = cur_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 spin_unlock(&cpufreq_stats_lock);
54 return 0;
55}
56
Dave Jones0a829c52009-01-18 01:49:04 -050057static ssize_t show_total_trans(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Mike Travis7a6aedf2008-03-25 15:06:53 -070059 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, policy->cpu);
Dave Jones511e9ee2006-05-30 17:57:14 -040060 if (!stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return 0;
62 return sprintf(buf, "%d\n",
Mike Travis7a6aedf2008-03-25 15:06:53 -070063 per_cpu(cpufreq_stats_table, stat->cpu)->total_trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
Dave Jones0a829c52009-01-18 01:49:04 -050066static ssize_t show_time_in_state(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 ssize_t len = 0;
69 int i;
Mike Travis7a6aedf2008-03-25 15:06:53 -070070 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, policy->cpu);
Dave Jones511e9ee2006-05-30 17:57:14 -040071 if (!stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 0;
73 cpufreq_stats_update(stat->cpu);
74 for (i = 0; i < stat->state_num; i++) {
Dave Jones32ee8c32006-02-28 00:43:23 -050075 len += sprintf(buf + len, "%u %llu\n", stat->freq_table[i],
Dave Jones0a829c52009-01-18 01:49:04 -050076 (unsigned long long)
Andreas Schwaba857c0b2013-09-07 18:35:08 +020077 jiffies_64_to_clock_t(stat->time_in_state[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79 return len;
80}
81
82#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
Dave Jones0a829c52009-01-18 01:49:04 -050083static ssize_t show_trans_table(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 ssize_t len = 0;
86 int i, j;
87
Mike Travis7a6aedf2008-03-25 15:06:53 -070088 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, policy->cpu);
Dave Jones511e9ee2006-05-30 17:57:14 -040089 if (!stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return 0;
91 cpufreq_stats_update(stat->cpu);
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -070092 len += snprintf(buf + len, PAGE_SIZE - len, " From : To\n");
93 len += snprintf(buf + len, PAGE_SIZE - len, " : ");
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 for (i = 0; i < stat->state_num; i++) {
95 if (len >= PAGE_SIZE)
96 break;
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -070097 len += snprintf(buf + len, PAGE_SIZE - len, "%9u ",
98 stat->freq_table[i]);
99 }
100 if (len >= PAGE_SIZE)
Cesar Eduardo Barros25aca342008-02-16 08:41:25 -0200101 return PAGE_SIZE;
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -0700102
103 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
104
105 for (i = 0; i < stat->state_num; i++) {
106 if (len >= PAGE_SIZE)
107 break;
108
109 len += snprintf(buf + len, PAGE_SIZE - len, "%9u: ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 stat->freq_table[i]);
111
Viresh Kumarbb176f72013-06-19 14:19:33 +0530112 for (j = 0; j < stat->state_num; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (len >= PAGE_SIZE)
114 break;
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -0700115 len += snprintf(buf + len, PAGE_SIZE - len, "%9u ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 stat->trans_table[i*stat->max_state+j]);
117 }
Cesar Eduardo Barros25aca342008-02-16 08:41:25 -0200118 if (len >= PAGE_SIZE)
119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
121 }
Cesar Eduardo Barros25aca342008-02-16 08:41:25 -0200122 if (len >= PAGE_SIZE)
123 return PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return len;
125}
Viresh Kumardf18e502013-02-04 11:38:52 +0000126cpufreq_freq_attr_ro(trans_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#endif
128
Viresh Kumardf18e502013-02-04 11:38:52 +0000129cpufreq_freq_attr_ro(total_trans);
130cpufreq_freq_attr_ro(time_in_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132static struct attribute *default_attrs[] = {
Viresh Kumardf18e502013-02-04 11:38:52 +0000133 &total_trans.attr,
134 &time_in_state.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
Viresh Kumardf18e502013-02-04 11:38:52 +0000136 &trans_table.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#endif
138 NULL
139};
140static struct attribute_group stats_attr_group = {
141 .attrs = default_attrs,
142 .name = "stats"
143};
144
Dave Jones0a829c52009-01-18 01:49:04 -0500145static int freq_table_get_index(struct cpufreq_stats *stat, unsigned int freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 int index;
148 for (index = 0; index < stat->max_state; index++)
149 if (stat->freq_table[index] == freq)
150 return index;
151 return -1;
152}
153
Viresh Kumar2d135942014-01-07 07:10:12 +0530154static void __cpufreq_stats_free_table(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Viresh Kumar2d135942014-01-07 07:10:12 +0530156 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table, policy->cpu);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +0000157
Viresh Kumar2d135942014-01-07 07:10:12 +0530158 if (!stat)
159 return;
160
161 pr_debug("%s: Free stat table\n", __func__);
162
163 sysfs_remove_group(&policy->kobj, &stats_attr_group);
164 kfree(stat->time_in_state);
165 kfree(stat);
166 per_cpu(cpufreq_stats_table, policy->cpu) = NULL;
steven finney98586ed2011-05-02 11:29:17 -0700167}
168
Viresh Kumar2d135942014-01-07 07:10:12 +0530169static void cpufreq_stats_free_table(unsigned int cpu)
steven finney98586ed2011-05-02 11:29:17 -0700170{
Viresh Kumar2d135942014-01-07 07:10:12 +0530171 struct cpufreq_policy *policy;
Dirk Brandewie633d47d2013-02-06 09:02:12 -0800172
Viresh Kumar2d135942014-01-07 07:10:12 +0530173 policy = cpufreq_cpu_get(cpu);
viresh kumar187da1d2013-03-22 10:13:52 +0000174 if (!policy)
Dirk Brandewie633d47d2013-02-06 09:02:12 -0800175 return;
176
Viresh Kumar2d135942014-01-07 07:10:12 +0530177 if (cpufreq_frequency_get_table(policy->cpu))
178 __cpufreq_stats_free_table(policy);
viresh kumar187da1d2013-03-22 10:13:52 +0000179
viresh kumar187da1d2013-03-22 10:13:52 +0000180 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Viresh Kumarb3f9ff82014-01-07 07:10:13 +0530183static int __cpufreq_stats_create_table(struct cpufreq_policy *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct cpufreq_frequency_table *table)
185{
186 unsigned int i, j, count = 0, ret = 0;
187 struct cpufreq_stats *stat;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530188 struct cpufreq_policy *current_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 unsigned int alloc_size;
190 unsigned int cpu = policy->cpu;
Mike Travis7a6aedf2008-03-25 15:06:53 -0700191 if (per_cpu(cpufreq_stats_table, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EBUSY;
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530193 stat = kzalloc(sizeof(*stat), GFP_KERNEL);
Dave Jones0a829c52009-01-18 01:49:04 -0500194 if ((stat) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530197 current_policy = cpufreq_cpu_get(cpu);
198 if (current_policy == NULL) {
Dave Jonesbc7b26f2005-10-27 16:02:06 -0700199 ret = -EINVAL;
200 goto error_get_fail;
201 }
202
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530203 ret = sysfs_create_group(&current_policy->kobj, &stats_attr_group);
Dave Jones0a829c52009-01-18 01:49:04 -0500204 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 goto error_out;
206
207 stat->cpu = cpu;
Mike Travis7a6aedf2008-03-25 15:06:53 -0700208 per_cpu(cpufreq_stats_table, cpu) = stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Dave Jones0a829c52009-01-18 01:49:04 -0500210 for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 unsigned int freq = table[i].frequency;
212 if (freq == CPUFREQ_ENTRY_INVALID)
213 continue;
214 count++;
215 }
216
Viresh Kumar1e7586a2012-10-26 00:51:21 +0200217 alloc_size = count * sizeof(int) + count * sizeof(u64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
220 alloc_size += count * count * sizeof(int);
221#endif
222 stat->max_state = count;
Dave Jonese98df502005-10-20 15:17:43 -0700223 stat->time_in_state = kzalloc(alloc_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (!stat->time_in_state) {
225 ret = -ENOMEM;
226 goto error_out;
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 stat->freq_table = (unsigned int *)(stat->time_in_state + count);
229
230#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
231 stat->trans_table = stat->freq_table + count;
232#endif
233 j = 0;
234 for (i = 0; table[i].frequency != CPUFREQ_TABLE_END; i++) {
235 unsigned int freq = table[i].frequency;
236 if (freq == CPUFREQ_ENTRY_INVALID)
237 continue;
238 if (freq_table_get_index(stat, freq) == -1)
239 stat->freq_table[j++] = freq;
240 }
241 stat->state_num = j;
242 spin_lock(&cpufreq_stats_lock);
Venkatesh Pallipadi58f1df22005-05-25 14:46:50 -0700243 stat->last_time = get_jiffies_64();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 stat->last_index = freq_table_get_index(stat, policy->cur);
245 spin_unlock(&cpufreq_stats_lock);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530246 cpufreq_cpu_put(current_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return 0;
248error_out:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530249 cpufreq_cpu_put(current_policy);
Dave Jonesb7fb3582005-11-01 23:13:45 -0800250error_get_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 kfree(stat);
Mike Travis7a6aedf2008-03-25 15:06:53 -0700252 per_cpu(cpufreq_stats_table, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return ret;
254}
255
Viresh Kumarb3f9ff82014-01-07 07:10:13 +0530256static void cpufreq_stats_create_table(unsigned int cpu)
257{
258 struct cpufreq_policy *policy;
259 struct cpufreq_frequency_table *table;
260
261 /*
262 * "likely(!policy)" because normally cpufreq_stats will be registered
263 * before cpufreq driver
264 */
265 policy = cpufreq_cpu_get(cpu);
266 if (likely(!policy))
267 return;
268
269 table = cpufreq_frequency_get_table(policy->cpu);
270 if (likely(table))
271 __cpufreq_stats_create_table(policy, table);
272
273 cpufreq_cpu_put(policy);
274}
275
Viresh Kumarb8eed8a2013-01-14 13:23:03 +0000276static void cpufreq_stats_update_policy_cpu(struct cpufreq_policy *policy)
277{
278 struct cpufreq_stats *stat = per_cpu(cpufreq_stats_table,
279 policy->last_cpu);
280
281 pr_debug("Updating stats_table for new_cpu %u from last_cpu %u\n",
282 policy->cpu, policy->last_cpu);
283 per_cpu(cpufreq_stats_table, policy->cpu) = per_cpu(cpufreq_stats_table,
284 policy->last_cpu);
285 per_cpu(cpufreq_stats_table, policy->last_cpu) = NULL;
286 stat->cpu = policy->cpu;
287}
288
Dave Jones0a829c52009-01-18 01:49:04 -0500289static int cpufreq_stat_notifier_policy(struct notifier_block *nb,
290 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Viresh Kumarfcd7af92014-01-07 07:10:10 +0530292 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 struct cpufreq_policy *policy = data;
294 struct cpufreq_frequency_table *table;
295 unsigned int cpu = policy->cpu;
Viresh Kumarb8eed8a2013-01-14 13:23:03 +0000296
297 if (val == CPUFREQ_UPDATE_POLICY_CPU) {
298 cpufreq_stats_update_policy_cpu(policy);
299 return 0;
300 }
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 table = cpufreq_frequency_get_table(cpu);
303 if (!table)
304 return 0;
Viresh Kumarfcd7af92014-01-07 07:10:10 +0530305
306 if (val == CPUFREQ_CREATE_POLICY)
Viresh Kumarb3f9ff82014-01-07 07:10:13 +0530307 ret = __cpufreq_stats_create_table(policy, table);
Viresh Kumar2d135942014-01-07 07:10:12 +0530308 else if (val == CPUFREQ_REMOVE_POLICY)
309 __cpufreq_stats_free_table(policy);
Viresh Kumarfcd7af92014-01-07 07:10:10 +0530310
311 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Dave Jones0a829c52009-01-18 01:49:04 -0500314static int cpufreq_stat_notifier_trans(struct notifier_block *nb,
315 unsigned long val, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct cpufreq_freqs *freq = data;
318 struct cpufreq_stats *stat;
319 int old_index, new_index;
320
321 if (val != CPUFREQ_POSTCHANGE)
322 return 0;
323
Mike Travis7a6aedf2008-03-25 15:06:53 -0700324 stat = per_cpu(cpufreq_stats_table, freq->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (!stat)
326 return 0;
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800327
Shaohua Li6501faf2008-04-27 13:46:56 -0700328 old_index = stat->last_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 new_index = freq_table_get_index(stat, freq->new);
330
Konrad Rzeszutek Wilk46a310b2011-06-16 15:36:38 -0400331 /* We can't do stat->time_in_state[-1]= .. */
332 if (old_index == -1 || new_index == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return 0;
334
Konrad Rzeszutek Wilk46a310b2011-06-16 15:36:38 -0400335 cpufreq_stats_update(freq->cpu);
336
337 if (old_index == new_index)
Venkatesh Pallipadi8edc59d92006-12-19 12:58:55 -0800338 return 0;
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 spin_lock(&cpufreq_stats_lock);
341 stat->last_index = new_index;
342#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
343 stat->trans_table[old_index * stat->max_state + new_index]++;
344#endif
345 stat->total_trans++;
346 spin_unlock(&cpufreq_stats_lock);
347 return 0;
348}
349
350static struct notifier_block notifier_policy_block = {
351 .notifier_call = cpufreq_stat_notifier_policy
352};
353
354static struct notifier_block notifier_trans_block = {
355 .notifier_call = cpufreq_stat_notifier_trans
356};
357
Dave Jones0a829c52009-01-18 01:49:04 -0500358static int __init cpufreq_stats_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 int ret;
361 unsigned int cpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -0800362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 spin_lock_init(&cpufreq_stats_lock);
Dave Jones0a829c52009-01-18 01:49:04 -0500364 ret = cpufreq_register_notifier(&notifier_policy_block,
365 CPUFREQ_POLICY_NOTIFIER);
366 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return ret;
368
Viresh Kumarb3f9ff82014-01-07 07:10:13 +0530369 for_each_online_cpu(cpu)
370 cpufreq_stats_create_table(cpu);
371
Dave Jones0a829c52009-01-18 01:49:04 -0500372 ret = cpufreq_register_notifier(&notifier_trans_block,
373 CPUFREQ_TRANSITION_NOTIFIER);
374 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 cpufreq_unregister_notifier(&notifier_policy_block,
376 CPUFREQ_POLICY_NOTIFIER);
Konstantin Khlebnikov56836fb2012-12-15 00:22:02 +0100377 for_each_online_cpu(cpu)
378 cpufreq_stats_free_table(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return ret;
380 }
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
383}
Dave Jones0a829c52009-01-18 01:49:04 -0500384static void __exit cpufreq_stats_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 unsigned int cpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -0800387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 cpufreq_unregister_notifier(&notifier_policy_block,
389 CPUFREQ_POLICY_NOTIFIER);
390 cpufreq_unregister_notifier(&notifier_trans_block,
391 CPUFREQ_TRANSITION_NOTIFIER);
Viresh Kumar2d135942014-01-07 07:10:12 +0530392 for_each_online_cpu(cpu)
Satyam Sharma55395ae2007-10-02 13:28:15 -0700393 cpufreq_stats_free_table(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Dave Jones0a829c52009-01-18 01:49:04 -0500396MODULE_AUTHOR("Zou Nan hai <nanhai.zou@intel.com>");
397MODULE_DESCRIPTION("'cpufreq_stats' - A driver to export cpufreq stats "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530398 "through sysfs filesystem");
Dave Jones0a829c52009-01-18 01:49:04 -0500399MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401module_init(cpufreq_stats_init);
402module_exit(cpufreq_stats_exit);