calibrate: extract fall-back calculation into own helper
[linux-2.6-block.git] / init / calibrate.c
CommitLineData
1da177e4
LT
1/* calibrate.c: default delay calibration
2 *
3 * Excised from init/main.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
cd354f1a 7#include <linux/jiffies.h>
1da177e4
LT
8#include <linux/delay.h>
9#include <linux/init.h>
941e492b 10#include <linux/timex.h>
3da757da 11#include <linux/smp.h>
8a9e1b0f 12
f3f3149f 13unsigned long lpj_fine;
bfe8df3d 14unsigned long preset_lpj;
1da177e4
LT
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
8a9e1b0f
VP
23#ifdef ARCH_HAS_READ_CURRENT_TIMER
24
25/* This routine uses the read_current_timer() routine and gets the
26 * loops per jiffy directly, instead of guessing it using delay().
27 * Also, this code tries to handle non-maskable asynchronous events
28 * (like SMIs)
29 */
30#define DELAY_CALIBRATION_TICKS ((HZ < 100) ? 1 : (HZ/100))
31#define MAX_DIRECT_CALIBRATION_RETRIES 5
32
6c81c32f 33static unsigned long __cpuinit calibrate_delay_direct(void)
8a9e1b0f
VP
34{
35 unsigned long pre_start, start, post_start;
36 unsigned long pre_end, end, post_end;
37 unsigned long start_jiffies;
f3f3149f
AK
38 unsigned long timer_rate_min, timer_rate_max;
39 unsigned long good_timer_sum = 0;
40 unsigned long good_timer_count = 0;
8a9e1b0f
VP
41 int i;
42
43 if (read_current_timer(&pre_start) < 0 )
44 return 0;
45
46 /*
47 * A simple loop like
48 * while ( jiffies < start_jiffies+1)
49 * start = read_current_timer();
50 * will not do. As we don't really know whether jiffy switch
51 * happened first or timer_value was read first. And some asynchronous
52 * event can happen between these two events introducing errors in lpj.
53 *
54 * So, we do
55 * 1. pre_start <- When we are sure that jiffy switch hasn't happened
56 * 2. check jiffy switch
57 * 3. start <- timer value before or after jiffy switch
58 * 4. post_start <- When we are sure that jiffy switch has happened
59 *
60 * Note, we don't know anything about order of 2 and 3.
61 * Now, by looking at post_start and pre_start difference, we can
62 * check whether any asynchronous event happened or not
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;
70a06228 69 while (time_before_eq(jiffies, start_jiffies + 1)) {
8a9e1b0f
VP
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;
70a06228
TD
77 while (time_before_eq(jiffies, start_jiffies + 1 +
78 DELAY_CALIBRATION_TICKS)) {
8a9e1b0f
VP
79 pre_end = end;
80 read_current_timer(&end);
81 }
82 read_current_timer(&post_end);
83
f3f3149f
AK
84 timer_rate_max = (post_end - pre_start) /
85 DELAY_CALIBRATION_TICKS;
86 timer_rate_min = (pre_end - post_start) /
87 DELAY_CALIBRATION_TICKS;
8a9e1b0f
VP
88
89 /*
f3f3149f 90 * If the upper limit and lower limit of the timer_rate is
8a9e1b0f
VP
91 * >= 12.5% apart, redo calibration.
92 */
93 if (pre_start != 0 && pre_end != 0 &&
f3f3149f
AK
94 (timer_rate_max - timer_rate_min) < (timer_rate_max >> 3)) {
95 good_timer_count++;
96 good_timer_sum += timer_rate_max;
8a9e1b0f
VP
97 }
98 }
99
f3f3149f
AK
100 if (good_timer_count)
101 return (good_timer_sum/good_timer_count);
8a9e1b0f
VP
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
6c81c32f 108static unsigned long __cpuinit calibrate_delay_direct(void) {return 0;}
8a9e1b0f
VP
109#endif
110
1da177e4
LT
111/*
112 * This is the number of bits of precision for the loops_per_jiffy. Each
113 * bit takes on average 1.5/HZ seconds. This (like the original) is a little
114 * better than 1%
3da757da 115 * For the boot cpu we can skip the delay calibration and assign it a value
f3f3149f
AK
116 * calculated based on the timer frequency.
117 * For the rest of the CPUs we cannot assume that the timer frequency is same as
3da757da 118 * the cpu frequency, hence do the calibration for those.
1da177e4
LT
119 */
120#define LPS_PREC 8
121
71c696b1 122static unsigned long __cpuinit calibrate_delay_converge(void)
1da177e4 123{
71c696b1 124 unsigned long lpj, ticks, loopbit;
1da177e4 125 int lps_precision = LPS_PREC;
71c696b1
PC
126
127 lpj = (1<<12);
128 while ((lpj <<= 1) != 0) {
129 /* wait for "start of" clock tick */
130 ticks = jiffies;
131 while (ticks == jiffies)
132 /* nothing */;
133 /* Go .. */
134 ticks = jiffies;
135 __delay(lpj);
136 ticks = jiffies - ticks;
137 if (ticks)
138 break;
139 }
140
141 /*
142 * Do a binary approximation to get lpj set to
143 * equal one clock (up to lps_precision bits)
144 */
145 lpj >>= 1;
146 loopbit = lpj;
147 while (lps_precision-- && (loopbit >>= 1)) {
148 lpj |= loopbit;
149 ticks = jiffies;
150 while (ticks == jiffies)
151 /* nothing */;
152 ticks = jiffies;
153 __delay(lpj);
154 if (jiffies != ticks) /* longer than 1 tick */
155 lpj &= ~loopbit;
156 }
157
158 return lpj;
159}
160
161void __cpuinit calibrate_delay(void)
162{
feae3203 163 static bool printed;
1da177e4
LT
164
165 if (preset_lpj) {
166 loops_per_jiffy = preset_lpj;
feae3203
MT
167 if (!printed)
168 pr_info("Calibrating delay loop (skipped) "
169 "preset value.. ");
170 } else if ((!printed) && lpj_fine) {
f3f3149f 171 loops_per_jiffy = lpj_fine;
feae3203 172 pr_info("Calibrating delay loop (skipped), "
f3f3149f 173 "value calculated using timer frequency.. ");
8a9e1b0f 174 } else if ((loops_per_jiffy = calibrate_delay_direct()) != 0) {
feae3203
MT
175 if (!printed)
176 pr_info("Calibrating delay using timer "
177 "specific routine.. ");
1da177e4 178 } else {
feae3203
MT
179 if (!printed)
180 pr_info("Calibrating delay loop... ");
71c696b1 181 loops_per_jiffy = calibrate_delay_converge();
1da177e4 182 }
feae3203
MT
183 if (!printed)
184 pr_cont("%lu.%02lu BogoMIPS (lpj=%lu)\n",
3da757da
AK
185 loops_per_jiffy/(500000/HZ),
186 (loops_per_jiffy/(5000/HZ)) % 100, loops_per_jiffy);
feae3203
MT
187
188 printed = true;
1da177e4 189}