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
13unsigned long lpj_fine;
14unsigned long preset_lpj;
15static int __init lpj_setup(char *str)
16{
17 preset_lpj = simple_strtoul(str,NULL,0);
18 return 1;
19}
20
21__setup("lpj=", lpj_setup);
22
23#ifdef ARCH_HAS_READ_CURRENT_TIMER
24
25
26
27
28
29
30#define DELAY_CALIBRATION_TICKS ((HZ < 100) ? 1 : (HZ/100))
31#define MAX_DIRECT_CALIBRATION_RETRIES 5
32
33static unsigned long __cpuinit calibrate_delay_direct(void)
34{
35 unsigned long pre_start, start, post_start;
36 unsigned long pre_end, end, post_end;
37 unsigned long start_jiffies;
38 unsigned long timer_rate_min, timer_rate_max;
39 unsigned long good_timer_sum = 0;
40 unsigned long good_timer_count = 0;
41 int i;
42
43 if (read_current_timer(&pre_start) < 0 )
44 return 0;
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65 for (i = 0; i < MAX_DIRECT_CALIBRATION_RETRIES; i++) {
66 pre_start = 0;
67 read_current_timer(&start);
68 start_jiffies = jiffies;
69 while (time_before_eq(jiffies, start_jiffies + 1)) {
70 pre_start = start;
71 read_current_timer(&start);
72 }
73 read_current_timer(&post_start);
74
75 pre_end = 0;
76 end = post_start;
77 while (time_before_eq(jiffies, start_jiffies + 1 +
78 DELAY_CALIBRATION_TICKS)) {
79 pre_end = end;
80 read_current_timer(&end);
81 }
82 read_current_timer(&post_end);
83
84 timer_rate_max = (post_end - pre_start) /
85 DELAY_CALIBRATION_TICKS;
86 timer_rate_min = (pre_end - post_start) /
87 DELAY_CALIBRATION_TICKS;
88
89
90
91
92
93 if (pre_start != 0 && pre_end != 0 &&
94 (timer_rate_max - timer_rate_min) < (timer_rate_max >> 3)) {
95 good_timer_count++;
96 good_timer_sum += timer_rate_max;
97 }
98 }
99
100 if (good_timer_count)
101 return (good_timer_sum/good_timer_count);
102
103 printk(KERN_WARNING "calibrate_delay_direct() failed to get a good "
104 "estimate for loops_per_jiffy.\nProbably due to long platform interrupts. Consider using \"lpj=\" boot option.\n");
105 return 0;
106}
107#else
108static unsigned long __cpuinit calibrate_delay_direct(void) {return 0;}
109#endif
110
111
112
113
114
115
116
117
118
119
120#define LPS_PREC 8
121
122void __cpuinit calibrate_delay(void)
123{
124 unsigned long ticks, loopbit;
125 int lps_precision = LPS_PREC;
126 static bool printed;
127
128 if (preset_lpj) {
129 loops_per_jiffy = preset_lpj;
130 if (!printed)
131 pr_info("Calibrating delay loop (skipped) "
132 "preset value.. ");
133 } else if ((!printed) && lpj_fine) {
134 loops_per_jiffy = lpj_fine;
135 pr_info("Calibrating delay loop (skipped), "
136 "value calculated using timer frequency.. ");
137 } else if ((loops_per_jiffy = calibrate_delay_direct()) != 0) {
138 if (!printed)
139 pr_info("Calibrating delay using timer "
140 "specific routine.. ");
141 } else {
142 loops_per_jiffy = (1<<12);
143
144 if (!printed)
145 pr_info("Calibrating delay loop... ");
146 while ((loops_per_jiffy <<= 1) != 0) {
147
148 ticks = jiffies;
149 while (ticks == jiffies)
150 ;
151
152 ticks = jiffies;
153 __delay(loops_per_jiffy);
154 ticks = jiffies - ticks;
155 if (ticks)
156 break;
157 }
158
159
160
161
162
163 loops_per_jiffy >>= 1;
164 loopbit = loops_per_jiffy;
165 while (lps_precision-- && (loopbit >>= 1)) {
166 loops_per_jiffy |= loopbit;
167 ticks = jiffies;
168 while (ticks == jiffies)
169 ;
170 ticks = jiffies;
171 __delay(loops_per_jiffy);
172 if (jiffies != ticks)
173 loops_per_jiffy &= ~loopbit;
174 }
175 }
176 if (!printed)
177 pr_cont("%lu.%02lu BogoMIPS (lpj=%lu)\n",
178 loops_per_jiffy/(500000/HZ),
179 (loops_per_jiffy/(5000/HZ)) % 100, loops_per_jiffy);
180
181 printed = true;
182}
183