1
2
3
4
5
6
7#include <linux/jiffies.h>
8#include <linux/delay.h>
9#include <linux/init.h>
10#include <linux/timex.h>
11#include <linux/smp.h>
12#include <linux/percpu.h>
13
14unsigned long lpj_fine;
15unsigned long preset_lpj;
16static int __init lpj_setup(char *str)
17{
18 preset_lpj = simple_strtoul(str,NULL,0);
19 return 1;
20}
21
22__setup("lpj=", lpj_setup);
23
24#ifdef ARCH_HAS_READ_CURRENT_TIMER
25
26
27
28
29
30
31#define DELAY_CALIBRATION_TICKS ((HZ < 100) ? 1 : (HZ/100))
32#define MAX_DIRECT_CALIBRATION_RETRIES 5
33
34static unsigned long __cpuinit calibrate_delay_direct(void)
35{
36 unsigned long pre_start, start, post_start;
37 unsigned long pre_end, end, post_end;
38 unsigned long start_jiffies;
39 unsigned long timer_rate_min, timer_rate_max;
40 unsigned long good_timer_sum = 0;
41 unsigned long good_timer_count = 0;
42 unsigned long measured_times[MAX_DIRECT_CALIBRATION_RETRIES];
43 int max = -1;
44 int min = -1;
45 int i;
46
47 if (read_current_timer(&pre_start) < 0 )
48 return 0;
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69 for (i = 0; i < MAX_DIRECT_CALIBRATION_RETRIES; i++) {
70 pre_start = 0;
71 read_current_timer(&start);
72 start_jiffies = jiffies;
73 while (time_before_eq(jiffies, start_jiffies + 1)) {
74 pre_start = start;
75 read_current_timer(&start);
76 }
77 read_current_timer(&post_start);
78
79 pre_end = 0;
80 end = post_start;
81 while (time_before_eq(jiffies, start_jiffies + 1 +
82 DELAY_CALIBRATION_TICKS)) {
83 pre_end = end;
84 read_current_timer(&end);
85 }
86 read_current_timer(&post_end);
87
88 timer_rate_max = (post_end - pre_start) /
89 DELAY_CALIBRATION_TICKS;
90 timer_rate_min = (pre_end - post_start) /
91 DELAY_CALIBRATION_TICKS;
92
93
94
95
96
97 if (start >= post_end)
98 printk(KERN_NOTICE "calibrate_delay_direct() ignoring "
99 "timer_rate as we had a TSC wrap around"
100 " start=%lu >=post_end=%lu\n",
101 start, post_end);
102 if (start < post_end && pre_start != 0 && pre_end != 0 &&
103 (timer_rate_max - timer_rate_min) < (timer_rate_max >> 3)) {
104 good_timer_count++;
105 good_timer_sum += timer_rate_max;
106 measured_times[i] = timer_rate_max;
107 if (max < 0 || timer_rate_max > measured_times[max])
108 max = i;
109 if (min < 0 || timer_rate_max < measured_times[min])
110 min = i;
111 } else
112 measured_times[i] = 0;
113
114 }
115
116
117
118
119
120 while (good_timer_count > 1) {
121 unsigned long estimate;
122 unsigned long maxdiff;
123
124
125 estimate = (good_timer_sum/good_timer_count);
126 maxdiff = estimate >> 3;
127
128
129 if ((measured_times[max] - measured_times[min]) < maxdiff)
130 return estimate;
131
132
133 good_timer_sum = 0;
134 good_timer_count = 0;
135 if ((measured_times[max] - estimate) <
136 (estimate - measured_times[min])) {
137 printk(KERN_NOTICE "calibrate_delay_direct() dropping "
138 "min bogoMips estimate %d = %lu\n",
139 min, measured_times[min]);
140 measured_times[min] = 0;
141 min = max;
142 } else {
143 printk(KERN_NOTICE "calibrate_delay_direct() dropping "
144 "max bogoMips estimate %d = %lu\n",
145 max, measured_times[max]);
146 measured_times[max] = 0;
147 max = min;
148 }
149
150 for (i = 0; i < MAX_DIRECT_CALIBRATION_RETRIES; i++) {
151 if (measured_times[i] == 0)
152 continue;
153 good_timer_count++;
154 good_timer_sum += measured_times[i];
155 if (measured_times[i] < measured_times[min])
156 min = i;
157 if (measured_times[i] > measured_times[max])
158 max = i;
159 }
160
161 }
162
163 printk(KERN_NOTICE "calibrate_delay_direct() failed to get a good "
164 "estimate for loops_per_jiffy.\nProbably due to long platform "
165 "interrupts. Consider using \"lpj=\" boot option.\n");
166 return 0;
167}
168#else
169static unsigned long __cpuinit calibrate_delay_direct(void) {return 0;}
170#endif
171
172
173
174
175
176
177
178
179
180
181#define LPS_PREC 8
182
183static unsigned long __cpuinit calibrate_delay_converge(void)
184{
185
186 unsigned long lpj, lpj_base, ticks, loopadd, loopadd_base, chop_limit;
187 int trials = 0, band = 0, trial_in_band = 0;
188
189 lpj = (1<<12);
190
191
192 ticks = jiffies;
193 while (ticks == jiffies)
194 ;
195
196 ticks = jiffies;
197 do {
198 if (++trial_in_band == (1<<band)) {
199 ++band;
200 trial_in_band = 0;
201 }
202 __delay(lpj * band);
203 trials += band;
204 } while (ticks == jiffies);
205
206
207
208
209 trials -= band;
210 loopadd_base = lpj * band;
211 lpj_base = lpj * trials;
212
213recalibrate:
214 lpj = lpj_base;
215 loopadd = loopadd_base;
216
217
218
219
220
221 chop_limit = lpj >> LPS_PREC;
222 while (loopadd > chop_limit) {
223 lpj += loopadd;
224 ticks = jiffies;
225 while (ticks == jiffies)
226 ;
227 ticks = jiffies;
228 __delay(lpj);
229 if (jiffies != ticks)
230 lpj -= loopadd;
231 loopadd >>= 1;
232 }
233
234
235
236
237
238 if (lpj + loopadd * 2 == lpj_base + loopadd_base * 2) {
239 lpj_base = lpj;
240 loopadd_base <<= 2;
241 goto recalibrate;
242 }
243
244 return lpj;
245}
246
247static DEFINE_PER_CPU(unsigned long, cpu_loops_per_jiffy) = { 0 };
248
249
250
251
252
253
254
255
256
257unsigned long __attribute__((weak)) __cpuinit calibrate_delay_is_known(void)
258{
259 return 0;
260}
261
262void __cpuinit calibrate_delay(void)
263{
264 unsigned long lpj;
265 static bool printed;
266 int this_cpu = smp_processor_id();
267
268 if (per_cpu(cpu_loops_per_jiffy, this_cpu)) {
269 lpj = per_cpu(cpu_loops_per_jiffy, this_cpu);
270 pr_info("Calibrating delay loop (skipped) "
271 "already calibrated this CPU");
272 } else if (preset_lpj) {
273 lpj = preset_lpj;
274 if (!printed)
275 pr_info("Calibrating delay loop (skipped) "
276 "preset value.. ");
277 } else if ((!printed) && lpj_fine) {
278 lpj = lpj_fine;
279 pr_info("Calibrating delay loop (skipped), "
280 "value calculated using timer frequency.. ");
281 } else if ((lpj = calibrate_delay_is_known())) {
282 ;
283 } else if ((lpj = calibrate_delay_direct()) != 0) {
284 if (!printed)
285 pr_info("Calibrating delay using timer "
286 "specific routine.. ");
287 } else {
288 if (!printed)
289 pr_info("Calibrating delay loop... ");
290 lpj = calibrate_delay_converge();
291 }
292 per_cpu(cpu_loops_per_jiffy, this_cpu) = lpj;
293 if (!printed)
294 pr_cont("%lu.%02lu BogoMIPS (lpj=%lu)\n",
295 lpj/(500000/HZ),
296 (lpj/(5000/HZ)) % 100, lpj);
297
298 loops_per_jiffy = lpj;
299 printed = true;
300}
301