1 /*
2  *  drivers/cpufreq/cpufreq_stats.c
3  *
4  *  Copyright (C) 2003-2004 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>.
5  *  (C) 2004 Zou Nan hai <nanhai.zou@intel.com>.
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 
12 #include <linux/cpu.h>
13 #include <linux/cpufreq.h>
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 
17 static DEFINE_SPINLOCK(cpufreq_stats_lock);
18 
19 struct cpufreq_stats {
20 	unsigned int total_trans;
21 	unsigned long long last_time;
22 	unsigned int max_state;
23 	unsigned int state_num;
24 	unsigned int last_index;
25 	u64 *time_in_state;
26 	unsigned int *freq_table;
27 	unsigned int *trans_table;
28 };
29 
30 static int cpufreq_stats_update(struct cpufreq_stats *stats)
31 {
32 	unsigned long long cur_time = get_jiffies_64();
33 
34 	spin_lock(&cpufreq_stats_lock);
35 	stats->time_in_state[stats->last_index] += cur_time - stats->last_time;
36 	stats->last_time = cur_time;
37 	spin_unlock(&cpufreq_stats_lock);
38 	return 0;
39 }
40 
41 static void cpufreq_stats_clear_table(struct cpufreq_stats *stats)
42 {
43 	unsigned int count = stats->max_state;
44 
45 	memset(stats->time_in_state, 0, count * sizeof(u64));
46 	memset(stats->trans_table, 0, count * count * sizeof(int));
47 	stats->last_time = get_jiffies_64();
48 	stats->total_trans = 0;
49 }
50 
51 static ssize_t show_total_trans(struct cpufreq_policy *policy, char *buf)
52 {
53 	return sprintf(buf, "%d\n", policy->stats->total_trans);
54 }
55 
56 static ssize_t show_time_in_state(struct cpufreq_policy *policy, char *buf)
57 {
58 	struct cpufreq_stats *stats = policy->stats;
59 	ssize_t len = 0;
60 	int i;
61 
62 	if (policy->fast_switch_enabled)
63 		return 0;
64 
65 	cpufreq_stats_update(stats);
66 	for (i = 0; i < stats->state_num; i++) {
67 		len += sprintf(buf + len, "%u %llu\n", stats->freq_table[i],
68 			(unsigned long long)
69 			jiffies_64_to_clock_t(stats->time_in_state[i]));
70 	}
71 	return len;
72 }
73 
74 static ssize_t store_reset(struct cpufreq_policy *policy, const char *buf,
75 			   size_t count)
76 {
77 	/* We don't care what is written to the attribute. */
78 	cpufreq_stats_clear_table(policy->stats);
79 	return count;
80 }
81 
82 static ssize_t show_trans_table(struct cpufreq_policy *policy, char *buf)
83 {
84 	struct cpufreq_stats *stats = policy->stats;
85 	ssize_t len = 0;
86 	int i, j;
87 
88 	if (policy->fast_switch_enabled)
89 		return 0;
90 
91 	len += snprintf(buf + len, PAGE_SIZE - len, "   From  :    To\n");
92 	len += snprintf(buf + len, PAGE_SIZE - len, "         : ");
93 	for (i = 0; i < stats->state_num; i++) {
94 		if (len >= PAGE_SIZE)
95 			break;
96 		len += snprintf(buf + len, PAGE_SIZE - len, "%9u ",
97 				stats->freq_table[i]);
98 	}
99 	if (len >= PAGE_SIZE)
100 		return PAGE_SIZE;
101 
102 	len += snprintf(buf + len, PAGE_SIZE - len, "\n");
103 
104 	for (i = 0; i < stats->state_num; i++) {
105 		if (len >= PAGE_SIZE)
106 			break;
107 
108 		len += snprintf(buf + len, PAGE_SIZE - len, "%9u: ",
109 				stats->freq_table[i]);
110 
111 		for (j = 0; j < stats->state_num; j++) {
112 			if (len >= PAGE_SIZE)
113 				break;
114 			len += snprintf(buf + len, PAGE_SIZE - len, "%9u ",
115 					stats->trans_table[i*stats->max_state+j]);
116 		}
117 		if (len >= PAGE_SIZE)
118 			break;
119 		len += snprintf(buf + len, PAGE_SIZE - len, "\n");
120 	}
121 	if (len >= PAGE_SIZE)
122 		return PAGE_SIZE;
123 	return len;
124 }
125 cpufreq_freq_attr_ro(trans_table);
126 
127 cpufreq_freq_attr_ro(total_trans);
128 cpufreq_freq_attr_ro(time_in_state);
129 cpufreq_freq_attr_wo(reset);
130 
131 static struct attribute *default_attrs[] = {
132 	&total_trans.attr,
133 	&time_in_state.attr,
134 	&reset.attr,
135 	&trans_table.attr,
136 	NULL
137 };
138 static const struct attribute_group stats_attr_group = {
139 	.attrs = default_attrs,
140 	.name = "stats"
141 };
142 
143 static int freq_table_get_index(struct cpufreq_stats *stats, unsigned int freq)
144 {
145 	int index;
146 	for (index = 0; index < stats->max_state; index++)
147 		if (stats->freq_table[index] == freq)
148 			return index;
149 	return -1;
150 }
151 
152 void cpufreq_stats_free_table(struct cpufreq_policy *policy)
153 {
154 	struct cpufreq_stats *stats = policy->stats;
155 
156 	/* Already freed */
157 	if (!stats)
158 		return;
159 
160 	pr_debug("%s: Free stats table\n", __func__);
161 
162 	sysfs_remove_group(&policy->kobj, &stats_attr_group);
163 	kfree(stats->time_in_state);
164 	kfree(stats);
165 	policy->stats = NULL;
166 }
167 
168 void cpufreq_stats_create_table(struct cpufreq_policy *policy)
169 {
170 	unsigned int i = 0, count = 0, ret = -ENOMEM;
171 	struct cpufreq_stats *stats;
172 	unsigned int alloc_size;
173 	struct cpufreq_frequency_table *pos;
174 
175 	count = cpufreq_table_count_valid_entries(policy);
176 	if (!count)
177 		return;
178 
179 	/* stats already initialized */
180 	if (policy->stats)
181 		return;
182 
183 	stats = kzalloc(sizeof(*stats), GFP_KERNEL);
184 	if (!stats)
185 		return;
186 
187 	alloc_size = count * sizeof(int) + count * sizeof(u64);
188 
189 	alloc_size += count * count * sizeof(int);
190 
191 	/* Allocate memory for time_in_state/freq_table/trans_table in one go */
192 	stats->time_in_state = kzalloc(alloc_size, GFP_KERNEL);
193 	if (!stats->time_in_state)
194 		goto free_stat;
195 
196 	stats->freq_table = (unsigned int *)(stats->time_in_state + count);
197 
198 	stats->trans_table = stats->freq_table + count;
199 
200 	stats->max_state = count;
201 
202 	/* Find valid-unique entries */
203 	cpufreq_for_each_valid_entry(pos, policy->freq_table)
204 		if (freq_table_get_index(stats, pos->frequency) == -1)
205 			stats->freq_table[i++] = pos->frequency;
206 
207 	stats->state_num = i;
208 	stats->last_time = get_jiffies_64();
209 	stats->last_index = freq_table_get_index(stats, policy->cur);
210 
211 	policy->stats = stats;
212 	ret = sysfs_create_group(&policy->kobj, &stats_attr_group);
213 	if (!ret)
214 		return;
215 
216 	/* We failed, release resources */
217 	policy->stats = NULL;
218 	kfree(stats->time_in_state);
219 free_stat:
220 	kfree(stats);
221 }
222 
223 void cpufreq_stats_record_transition(struct cpufreq_policy *policy,
224 				     unsigned int new_freq)
225 {
226 	struct cpufreq_stats *stats = policy->stats;
227 	int old_index, new_index;
228 
229 	if (!stats) {
230 		pr_debug("%s: No stats found\n", __func__);
231 		return;
232 	}
233 
234 	old_index = stats->last_index;
235 	new_index = freq_table_get_index(stats, new_freq);
236 
237 	/* We can't do stats->time_in_state[-1]= .. */
238 	if (old_index == -1 || new_index == -1 || old_index == new_index)
239 		return;
240 
241 	cpufreq_stats_update(stats);
242 
243 	stats->last_index = new_index;
244 	stats->trans_table[old_index * stats->max_state + new_index]++;
245 	stats->total_trans++;
246 }
247