blob: 86286974dada5c3860ab03c97144c8d96afbfffb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* calibrate.c: default delay calibration
2 *
3 * Excised from init/main.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
Tim Schmielaucd354f12007-02-14 00:33:14 -08007#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/delay.h>
9#include <linux/init.h>
Andrew Morton941e4922008-02-06 01:36:42 -080010#include <linux/timex.h>
Alok Kataria3da757d2008-06-20 15:06:33 -070011#include <linux/smp.h>
Venkatesh Pallipadi8a9e1b02005-06-23 00:08:13 -070012
Alok Kataria3da757d2008-06-20 15:06:33 -070013unsigned long lpj_tsc;
Randy Dunlapbfe8df32007-10-16 01:23:46 -070014unsigned long preset_lpj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015static 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
Venkatesh Pallipadi8a9e1b02005-06-23 00:08:13 -070023#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
Adrian Bunk6c81c322008-02-06 01:37:51 -080033static unsigned long __cpuinit calibrate_delay_direct(void)
Venkatesh Pallipadi8a9e1b02005-06-23 00:08:13 -070034{
35 unsigned long pre_start, start, post_start;
36 unsigned long pre_end, end, post_end;
37 unsigned long start_jiffies;
38 unsigned long tsc_rate_min, tsc_rate_max;
39 unsigned long good_tsc_sum = 0;
40 unsigned long good_tsc_count = 0;
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;
69 while (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 (jiffies <=
78 (start_jiffies + 1 + DELAY_CALIBRATION_TICKS)) {
79 pre_end = end;
80 read_current_timer(&end);
81 }
82 read_current_timer(&post_end);
83
84 tsc_rate_max = (post_end - pre_start) / DELAY_CALIBRATION_TICKS;
85 tsc_rate_min = (pre_end - post_start) / DELAY_CALIBRATION_TICKS;
86
87 /*
88 * If the upper limit and lower limit of the tsc_rate is
89 * >= 12.5% apart, redo calibration.
90 */
91 if (pre_start != 0 && pre_end != 0 &&
92 (tsc_rate_max - tsc_rate_min) < (tsc_rate_max >> 3)) {
93 good_tsc_count++;
94 good_tsc_sum += tsc_rate_max;
95 }
96 }
97
98 if (good_tsc_count)
99 return (good_tsc_sum/good_tsc_count);
100
101 printk(KERN_WARNING "calibrate_delay_direct() failed to get a good "
102 "estimate for loops_per_jiffy.\nProbably due to long platform interrupts. Consider using \"lpj=\" boot option.\n");
103 return 0;
104}
105#else
Adrian Bunk6c81c322008-02-06 01:37:51 -0800106static unsigned long __cpuinit calibrate_delay_direct(void) {return 0;}
Venkatesh Pallipadi8a9e1b02005-06-23 00:08:13 -0700107#endif
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * This is the number of bits of precision for the loops_per_jiffy. Each
111 * bit takes on average 1.5/HZ seconds. This (like the original) is a little
112 * better than 1%
Alok Kataria3da757d2008-06-20 15:06:33 -0700113 * For the boot cpu we can skip the delay calibration and assign it a value
114 * calculated based on the tsc frequency.
115 * For the rest of the CPUs we cannot assume that the tsc frequency is same as
116 * the cpu frequency, hence do the calibration for those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 */
118#define LPS_PREC 8
119
Adrian Bunk6c81c322008-02-06 01:37:51 -0800120void __cpuinit calibrate_delay(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 unsigned long ticks, loopbit;
123 int lps_precision = LPS_PREC;
124
125 if (preset_lpj) {
126 loops_per_jiffy = preset_lpj;
Alok Kataria3da757d2008-06-20 15:06:33 -0700127 printk(KERN_INFO
128 "Calibrating delay loop (skipped) preset value.. ");
129 } else if ((smp_processor_id() == 0) && lpj_tsc) {
130 loops_per_jiffy = lpj_tsc;
131 printk(KERN_INFO
132 "Calibrating delay loop (skipped), "
133 "using tsc calculated value.. ");
Venkatesh Pallipadi8a9e1b02005-06-23 00:08:13 -0700134 } else if ((loops_per_jiffy = calibrate_delay_direct()) != 0) {
Alok Kataria3da757d2008-06-20 15:06:33 -0700135 printk(KERN_INFO
136 "Calibrating delay using timer specific routine.. ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 } else {
138 loops_per_jiffy = (1<<12);
139
Alok Kataria3da757d2008-06-20 15:06:33 -0700140 printk(KERN_INFO "Calibrating delay loop... ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 while ((loops_per_jiffy <<= 1) != 0) {
142 /* wait for "start of" clock tick */
143 ticks = jiffies;
144 while (ticks == jiffies)
145 /* nothing */;
146 /* Go .. */
147 ticks = jiffies;
148 __delay(loops_per_jiffy);
149 ticks = jiffies - ticks;
150 if (ticks)
151 break;
152 }
153
154 /*
155 * Do a binary approximation to get loops_per_jiffy set to
156 * equal one clock (up to lps_precision bits)
157 */
158 loops_per_jiffy >>= 1;
159 loopbit = loops_per_jiffy;
160 while (lps_precision-- && (loopbit >>= 1)) {
161 loops_per_jiffy |= loopbit;
162 ticks = jiffies;
163 while (ticks == jiffies)
164 /* nothing */;
165 ticks = jiffies;
166 __delay(loops_per_jiffy);
167 if (jiffies != ticks) /* longer than 1 tick */
168 loops_per_jiffy &= ~loopbit;
169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
Alok Kataria3da757d2008-06-20 15:06:33 -0700171 printk(KERN_INFO "%lu.%02lu BogoMIPS (lpj=%lu)\n",
172 loops_per_jiffy/(500000/HZ),
173 (loops_per_jiffy/(5000/HZ)) % 100, loops_per_jiffy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}