tsc.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997
  1. #include <linux/kernel.h>
  2. #include <linux/sched.h>
  3. #include <linux/init.h>
  4. #include <linux/module.h>
  5. #include <linux/timer.h>
  6. #include <linux/acpi_pmtmr.h>
  7. #include <linux/cpufreq.h>
  8. #include <linux/delay.h>
  9. #include <linux/clocksource.h>
  10. #include <linux/percpu.h>
  11. #include <linux/timex.h>
  12. #include <asm/hpet.h>
  13. #include <asm/timer.h>
  14. #include <asm/vgtod.h>
  15. #include <asm/time.h>
  16. #include <asm/delay.h>
  17. #include <asm/hypervisor.h>
  18. #include <asm/nmi.h>
  19. #include <asm/x86_init.h>
  20. unsigned int __read_mostly cpu_khz; /* TSC clocks / usec, not used here */
  21. EXPORT_SYMBOL(cpu_khz);
  22. unsigned int __read_mostly tsc_khz;
  23. EXPORT_SYMBOL(tsc_khz);
  24. /*
  25. * TSC can be unstable due to cpufreq or due to unsynced TSCs
  26. */
  27. static int __read_mostly tsc_unstable;
  28. /* native_sched_clock() is called before tsc_init(), so
  29. we must start with the TSC soft disabled to prevent
  30. erroneous rdtsc usage on !cpu_has_tsc processors */
  31. static int __read_mostly tsc_disabled = -1;
  32. static int tsc_clocksource_reliable;
  33. /*
  34. * Scheduler clock - returns current time in nanosec units.
  35. */
  36. u64 native_sched_clock(void)
  37. {
  38. u64 this_offset;
  39. /*
  40. * Fall back to jiffies if there's no TSC available:
  41. * ( But note that we still use it if the TSC is marked
  42. * unstable. We do this because unlike Time Of Day,
  43. * the scheduler clock tolerates small errors and it's
  44. * very important for it to be as fast as the platform
  45. * can achieve it. )
  46. */
  47. if (unlikely(tsc_disabled)) {
  48. /* No locking but a rare wrong value is not a big deal: */
  49. return (jiffies_64 - INITIAL_JIFFIES) * (1000000000 / HZ);
  50. }
  51. /* read the Time Stamp Counter: */
  52. rdtscll(this_offset);
  53. /* return the value in ns */
  54. return __cycles_2_ns(this_offset);
  55. }
  56. /* We need to define a real function for sched_clock, to override the
  57. weak default version */
  58. #ifdef CONFIG_PARAVIRT
  59. unsigned long long sched_clock(void)
  60. {
  61. return paravirt_sched_clock();
  62. }
  63. #else
  64. unsigned long long
  65. sched_clock(void) __attribute__((alias("native_sched_clock")));
  66. #endif
  67. int check_tsc_unstable(void)
  68. {
  69. return tsc_unstable;
  70. }
  71. EXPORT_SYMBOL_GPL(check_tsc_unstable);
  72. #ifdef CONFIG_X86_TSC
  73. int __init notsc_setup(char *str)
  74. {
  75. printk(KERN_WARNING "notsc: Kernel compiled with CONFIG_X86_TSC, "
  76. "cannot disable TSC completely.\n");
  77. tsc_disabled = 1;
  78. return 1;
  79. }
  80. #else
  81. /*
  82. * disable flag for tsc. Takes effect by clearing the TSC cpu flag
  83. * in cpu/common.c
  84. */
  85. int __init notsc_setup(char *str)
  86. {
  87. setup_clear_cpu_cap(X86_FEATURE_TSC);
  88. return 1;
  89. }
  90. #endif
  91. __setup("notsc", notsc_setup);
  92. static int no_sched_irq_time;
  93. static int __init tsc_setup(char *str)
  94. {
  95. if (!strcmp(str, "reliable"))
  96. tsc_clocksource_reliable = 1;
  97. if (!strncmp(str, "noirqtime", 9))
  98. no_sched_irq_time = 1;
  99. return 1;
  100. }
  101. __setup("tsc=", tsc_setup);
  102. #define MAX_RETRIES 5
  103. #define SMI_TRESHOLD 50000
  104. /*
  105. * Read TSC and the reference counters. Take care of SMI disturbance
  106. */
  107. static u64 tsc_read_refs(u64 *p, int hpet)
  108. {
  109. u64 t1, t2;
  110. int i;
  111. for (i = 0; i < MAX_RETRIES; i++) {
  112. t1 = get_cycles();
  113. if (hpet)
  114. *p = hpet_readl(HPET_COUNTER) & 0xFFFFFFFF;
  115. else
  116. *p = acpi_pm_read_early();
  117. t2 = get_cycles();
  118. if ((t2 - t1) < SMI_TRESHOLD)
  119. return t2;
  120. }
  121. return ULLONG_MAX;
  122. }
  123. /*
  124. * Calculate the TSC frequency from HPET reference
  125. */
  126. static unsigned long calc_hpet_ref(u64 deltatsc, u64 hpet1, u64 hpet2)
  127. {
  128. u64 tmp;
  129. if (hpet2 < hpet1)
  130. hpet2 += 0x100000000ULL;
  131. hpet2 -= hpet1;
  132. tmp = ((u64)hpet2 * hpet_readl(HPET_PERIOD));
  133. do_div(tmp, 1000000);
  134. do_div(deltatsc, tmp);
  135. return (unsigned long) deltatsc;
  136. }
  137. /*
  138. * Calculate the TSC frequency from PMTimer reference
  139. */
  140. static unsigned long calc_pmtimer_ref(u64 deltatsc, u64 pm1, u64 pm2)
  141. {
  142. u64 tmp;
  143. if (!pm1 && !pm2)
  144. return ULONG_MAX;
  145. if (pm2 < pm1)
  146. pm2 += (u64)ACPI_PM_OVRRUN;
  147. pm2 -= pm1;
  148. tmp = pm2 * 1000000000LL;
  149. do_div(tmp, PMTMR_TICKS_PER_SEC);
  150. do_div(deltatsc, tmp);
  151. return (unsigned long) deltatsc;
  152. }
  153. #define CAL_MS 10
  154. #define CAL_LATCH (CLOCK_TICK_RATE / (1000 / CAL_MS))
  155. #define CAL_PIT_LOOPS 1000
  156. #define CAL2_MS 50
  157. #define CAL2_LATCH (CLOCK_TICK_RATE / (1000 / CAL2_MS))
  158. #define CAL2_PIT_LOOPS 5000
  159. /*
  160. * Try to calibrate the TSC against the Programmable
  161. * Interrupt Timer and return the frequency of the TSC
  162. * in kHz.
  163. *
  164. * Return ULONG_MAX on failure to calibrate.
  165. */
  166. static unsigned long pit_calibrate_tsc(u32 latch, unsigned long ms, int loopmin)
  167. {
  168. u64 tsc, t1, t2, delta;
  169. unsigned long tscmin, tscmax;
  170. int pitcnt;
  171. /* Set the Gate high, disable speaker */
  172. outb((inb(0x61) & ~0x02) | 0x01, 0x61);
  173. /*
  174. * Setup CTC channel 2* for mode 0, (interrupt on terminal
  175. * count mode), binary count. Set the latch register to 50ms
  176. * (LSB then MSB) to begin countdown.
  177. */
  178. outb(0xb0, 0x43);
  179. outb(latch & 0xff, 0x42);
  180. outb(latch >> 8, 0x42);
  181. tsc = t1 = t2 = get_cycles();
  182. pitcnt = 0;
  183. tscmax = 0;
  184. tscmin = ULONG_MAX;
  185. while ((inb(0x61) & 0x20) == 0) {
  186. t2 = get_cycles();
  187. delta = t2 - tsc;
  188. tsc = t2;
  189. if ((unsigned long) delta < tscmin)
  190. tscmin = (unsigned int) delta;
  191. if ((unsigned long) delta > tscmax)
  192. tscmax = (unsigned int) delta;
  193. pitcnt++;
  194. }
  195. /*
  196. * Sanity checks:
  197. *
  198. * If we were not able to read the PIT more than loopmin
  199. * times, then we have been hit by a massive SMI
  200. *
  201. * If the maximum is 10 times larger than the minimum,
  202. * then we got hit by an SMI as well.
  203. */
  204. if (pitcnt < loopmin || tscmax > 10 * tscmin)
  205. return ULONG_MAX;
  206. /* Calculate the PIT value */
  207. delta = t2 - t1;
  208. do_div(delta, ms);
  209. return delta;
  210. }
  211. /*
  212. * This reads the current MSB of the PIT counter, and
  213. * checks if we are running on sufficiently fast and
  214. * non-virtualized hardware.
  215. *
  216. * Our expectations are:
  217. *
  218. * - the PIT is running at roughly 1.19MHz
  219. *
  220. * - each IO is going to take about 1us on real hardware,
  221. * but we allow it to be much faster (by a factor of 10) or
  222. * _slightly_ slower (ie we allow up to a 2us read+counter
  223. * update - anything else implies a unacceptably slow CPU
  224. * or PIT for the fast calibration to work.
  225. *
  226. * - with 256 PIT ticks to read the value, we have 214us to
  227. * see the same MSB (and overhead like doing a single TSC
  228. * read per MSB value etc).
  229. *
  230. * - We're doing 2 reads per loop (LSB, MSB), and we expect
  231. * them each to take about a microsecond on real hardware.
  232. * So we expect a count value of around 100. But we'll be
  233. * generous, and accept anything over 50.
  234. *
  235. * - if the PIT is stuck, and we see *many* more reads, we
  236. * return early (and the next caller of pit_expect_msb()
  237. * then consider it a failure when they don't see the
  238. * next expected value).
  239. *
  240. * These expectations mean that we know that we have seen the
  241. * transition from one expected value to another with a fairly
  242. * high accuracy, and we didn't miss any events. We can thus
  243. * use the TSC value at the transitions to calculate a pretty
  244. * good value for the TSC frequencty.
  245. */
  246. static inline int pit_verify_msb(unsigned char val)
  247. {
  248. /* Ignore LSB */
  249. inb(0x42);
  250. return inb(0x42) == val;
  251. }
  252. static inline int pit_expect_msb(unsigned char val, u64 *tscp, unsigned long *deltap)
  253. {
  254. int count;
  255. u64 tsc = 0;
  256. for (count = 0; count < 50000; count++) {
  257. if (!pit_verify_msb(val))
  258. break;
  259. tsc = get_cycles();
  260. }
  261. *deltap = get_cycles() - tsc;
  262. *tscp = tsc;
  263. /*
  264. * We require _some_ success, but the quality control
  265. * will be based on the error terms on the TSC values.
  266. */
  267. return count > 5;
  268. }
  269. /*
  270. * How many MSB values do we want to see? We aim for
  271. * a maximum error rate of 500ppm (in practice the
  272. * real error is much smaller), but refuse to spend
  273. * more than 25ms on it.
  274. */
  275. #define MAX_QUICK_PIT_MS 25
  276. #define MAX_QUICK_PIT_ITERATIONS (MAX_QUICK_PIT_MS * PIT_TICK_RATE / 1000 / 256)
  277. static unsigned long quick_pit_calibrate(void)
  278. {
  279. int i;
  280. u64 tsc, delta;
  281. unsigned long d1, d2;
  282. /* Set the Gate high, disable speaker */
  283. outb((inb(0x61) & ~0x02) | 0x01, 0x61);
  284. /*
  285. * Counter 2, mode 0 (one-shot), binary count
  286. *
  287. * NOTE! Mode 2 decrements by two (and then the
  288. * output is flipped each time, giving the same
  289. * final output frequency as a decrement-by-one),
  290. * so mode 0 is much better when looking at the
  291. * individual counts.
  292. */
  293. outb(0xb0, 0x43);
  294. /* Start at 0xffff */
  295. outb(0xff, 0x42);
  296. outb(0xff, 0x42);
  297. /*
  298. * The PIT starts counting at the next edge, so we
  299. * need to delay for a microsecond. The easiest way
  300. * to do that is to just read back the 16-bit counter
  301. * once from the PIT.
  302. */
  303. pit_verify_msb(0);
  304. if (pit_expect_msb(0xff, &tsc, &d1)) {
  305. for (i = 1; i <= MAX_QUICK_PIT_ITERATIONS; i++) {
  306. if (!pit_expect_msb(0xff-i, &delta, &d2))
  307. break;
  308. /*
  309. * Iterate until the error is less than 500 ppm
  310. */
  311. delta -= tsc;
  312. if (d1+d2 >= delta >> 11)
  313. continue;
  314. /*
  315. * Check the PIT one more time to verify that
  316. * all TSC reads were stable wrt the PIT.
  317. *
  318. * This also guarantees serialization of the
  319. * last cycle read ('d2') in pit_expect_msb.
  320. */
  321. if (!pit_verify_msb(0xfe - i))
  322. break;
  323. goto success;
  324. }
  325. }
  326. printk("Fast TSC calibration failed\n");
  327. return 0;
  328. success:
  329. /*
  330. * Ok, if we get here, then we've seen the
  331. * MSB of the PIT decrement 'i' times, and the
  332. * error has shrunk to less than 500 ppm.
  333. *
  334. * As a result, we can depend on there not being
  335. * any odd delays anywhere, and the TSC reads are
  336. * reliable (within the error). We also adjust the
  337. * delta to the middle of the error bars, just
  338. * because it looks nicer.
  339. *
  340. * kHz = ticks / time-in-seconds / 1000;
  341. * kHz = (t2 - t1) / (I * 256 / PIT_TICK_RATE) / 1000
  342. * kHz = ((t2 - t1) * PIT_TICK_RATE) / (I * 256 * 1000)
  343. */
  344. delta += (long)(d2 - d1)/2;
  345. delta *= PIT_TICK_RATE;
  346. do_div(delta, i*256*1000);
  347. printk("Fast TSC calibration using PIT\n");
  348. return delta;
  349. }
  350. /**
  351. * native_calibrate_tsc - calibrate the tsc on boot
  352. */
  353. unsigned long native_calibrate_tsc(void)
  354. {
  355. u64 tsc1, tsc2, delta, ref1, ref2;
  356. unsigned long tsc_pit_min = ULONG_MAX, tsc_ref_min = ULONG_MAX;
  357. unsigned long flags, latch, ms, fast_calibrate;
  358. int hpet = is_hpet_enabled(), i, loopmin;
  359. local_irq_save(flags);
  360. fast_calibrate = quick_pit_calibrate();
  361. local_irq_restore(flags);
  362. if (fast_calibrate)
  363. return fast_calibrate;
  364. /*
  365. * Run 5 calibration loops to get the lowest frequency value
  366. * (the best estimate). We use two different calibration modes
  367. * here:
  368. *
  369. * 1) PIT loop. We set the PIT Channel 2 to oneshot mode and
  370. * load a timeout of 50ms. We read the time right after we
  371. * started the timer and wait until the PIT count down reaches
  372. * zero. In each wait loop iteration we read the TSC and check
  373. * the delta to the previous read. We keep track of the min
  374. * and max values of that delta. The delta is mostly defined
  375. * by the IO time of the PIT access, so we can detect when a
  376. * SMI/SMM disturbance happened between the two reads. If the
  377. * maximum time is significantly larger than the minimum time,
  378. * then we discard the result and have another try.
  379. *
  380. * 2) Reference counter. If available we use the HPET or the
  381. * PMTIMER as a reference to check the sanity of that value.
  382. * We use separate TSC readouts and check inside of the
  383. * reference read for a SMI/SMM disturbance. We dicard
  384. * disturbed values here as well. We do that around the PIT
  385. * calibration delay loop as we have to wait for a certain
  386. * amount of time anyway.
  387. */
  388. /* Preset PIT loop values */
  389. latch = CAL_LATCH;
  390. ms = CAL_MS;
  391. loopmin = CAL_PIT_LOOPS;
  392. for (i = 0; i < 3; i++) {
  393. unsigned long tsc_pit_khz;
  394. /*
  395. * Read the start value and the reference count of
  396. * hpet/pmtimer when available. Then do the PIT
  397. * calibration, which will take at least 50ms, and
  398. * read the end value.
  399. */
  400. local_irq_save(flags);
  401. tsc1 = tsc_read_refs(&ref1, hpet);
  402. tsc_pit_khz = pit_calibrate_tsc(latch, ms, loopmin);
  403. tsc2 = tsc_read_refs(&ref2, hpet);
  404. local_irq_restore(flags);
  405. /* Pick the lowest PIT TSC calibration so far */
  406. tsc_pit_min = min(tsc_pit_min, tsc_pit_khz);
  407. /* hpet or pmtimer available ? */
  408. if (ref1 == ref2)
  409. continue;
  410. /* Check, whether the sampling was disturbed by an SMI */
  411. if (tsc1 == ULLONG_MAX || tsc2 == ULLONG_MAX)
  412. continue;
  413. tsc2 = (tsc2 - tsc1) * 1000000LL;
  414. if (hpet)
  415. tsc2 = calc_hpet_ref(tsc2, ref1, ref2);
  416. else
  417. tsc2 = calc_pmtimer_ref(tsc2, ref1, ref2);
  418. tsc_ref_min = min(tsc_ref_min, (unsigned long) tsc2);
  419. /* Check the reference deviation */
  420. delta = ((u64) tsc_pit_min) * 100;
  421. do_div(delta, tsc_ref_min);
  422. /*
  423. * If both calibration results are inside a 10% window
  424. * then we can be sure, that the calibration
  425. * succeeded. We break out of the loop right away. We
  426. * use the reference value, as it is more precise.
  427. */
  428. if (delta >= 90 && delta <= 110) {
  429. printk(KERN_INFO
  430. "TSC: PIT calibration matches %s. %d loops\n",
  431. hpet ? "HPET" : "PMTIMER", i + 1);
  432. return tsc_ref_min;
  433. }
  434. /*
  435. * Check whether PIT failed more than once. This
  436. * happens in virtualized environments. We need to
  437. * give the virtual PC a slightly longer timeframe for
  438. * the HPET/PMTIMER to make the result precise.
  439. */
  440. if (i == 1 && tsc_pit_min == ULONG_MAX) {
  441. latch = CAL2_LATCH;
  442. ms = CAL2_MS;
  443. loopmin = CAL2_PIT_LOOPS;
  444. }
  445. }
  446. /*
  447. * Now check the results.
  448. */
  449. if (tsc_pit_min == ULONG_MAX) {
  450. /* PIT gave no useful value */
  451. printk(KERN_WARNING "TSC: Unable to calibrate against PIT\n");
  452. /* We don't have an alternative source, disable TSC */
  453. if (!hpet && !ref1 && !ref2) {
  454. printk("TSC: No reference (HPET/PMTIMER) available\n");
  455. return 0;
  456. }
  457. /* The alternative source failed as well, disable TSC */
  458. if (tsc_ref_min == ULONG_MAX) {
  459. printk(KERN_WARNING "TSC: HPET/PMTIMER calibration "
  460. "failed.\n");
  461. return 0;
  462. }
  463. /* Use the alternative source */
  464. printk(KERN_INFO "TSC: using %s reference calibration\n",
  465. hpet ? "HPET" : "PMTIMER");
  466. return tsc_ref_min;
  467. }
  468. /* We don't have an alternative source, use the PIT calibration value */
  469. if (!hpet && !ref1 && !ref2) {
  470. printk(KERN_INFO "TSC: Using PIT calibration value\n");
  471. return tsc_pit_min;
  472. }
  473. /* The alternative source failed, use the PIT calibration value */
  474. if (tsc_ref_min == ULONG_MAX) {
  475. printk(KERN_WARNING "TSC: HPET/PMTIMER calibration failed. "
  476. "Using PIT calibration\n");
  477. return tsc_pit_min;
  478. }
  479. /*
  480. * The calibration values differ too much. In doubt, we use
  481. * the PIT value as we know that there are PMTIMERs around
  482. * running at double speed. At least we let the user know:
  483. */
  484. printk(KERN_WARNING "TSC: PIT calibration deviates from %s: %lu %lu.\n",
  485. hpet ? "HPET" : "PMTIMER", tsc_pit_min, tsc_ref_min);
  486. printk(KERN_INFO "TSC: Using PIT calibration value\n");
  487. return tsc_pit_min;
  488. }
  489. int recalibrate_cpu_khz(void)
  490. {
  491. #ifndef CONFIG_SMP
  492. unsigned long cpu_khz_old = cpu_khz;
  493. if (cpu_has_tsc) {
  494. tsc_khz = x86_platform.calibrate_tsc();
  495. cpu_khz = tsc_khz;
  496. cpu_data(0).loops_per_jiffy =
  497. cpufreq_scale(cpu_data(0).loops_per_jiffy,
  498. cpu_khz_old, cpu_khz);
  499. return 0;
  500. } else
  501. return -ENODEV;
  502. #else
  503. return -ENODEV;
  504. #endif
  505. }
  506. EXPORT_SYMBOL(recalibrate_cpu_khz);
  507. /* Accelerators for sched_clock()
  508. * convert from cycles(64bits) => nanoseconds (64bits)
  509. * basic equation:
  510. * ns = cycles / (freq / ns_per_sec)
  511. * ns = cycles * (ns_per_sec / freq)
  512. * ns = cycles * (10^9 / (cpu_khz * 10^3))
  513. * ns = cycles * (10^6 / cpu_khz)
  514. *
  515. * Then we use scaling math (suggested by george@mvista.com) to get:
  516. * ns = cycles * (10^6 * SC / cpu_khz) / SC
  517. * ns = cycles * cyc2ns_scale / SC
  518. *
  519. * And since SC is a constant power of two, we can convert the div
  520. * into a shift.
  521. *
  522. * We can use khz divisor instead of mhz to keep a better precision, since
  523. * cyc2ns_scale is limited to 10^6 * 2^10, which fits in 32 bits.
  524. * (mathieu.desnoyers@polymtl.ca)
  525. *
  526. * -johnstul@us.ibm.com "math is hard, lets go shopping!"
  527. */
  528. DEFINE_PER_CPU(unsigned long, cyc2ns);
  529. DEFINE_PER_CPU(unsigned long long, cyc2ns_offset);
  530. static void set_cyc2ns_scale(unsigned long cpu_khz, int cpu)
  531. {
  532. unsigned long long tsc_now, ns_now, *offset;
  533. unsigned long flags, *scale;
  534. local_irq_save(flags);
  535. sched_clock_idle_sleep_event();
  536. scale = &per_cpu(cyc2ns, cpu);
  537. offset = &per_cpu(cyc2ns_offset, cpu);
  538. rdtscll(tsc_now);
  539. ns_now = __cycles_2_ns(tsc_now);
  540. if (cpu_khz) {
  541. *scale = (NSEC_PER_MSEC << CYC2NS_SCALE_FACTOR)/cpu_khz;
  542. *offset = ns_now - (tsc_now * *scale >> CYC2NS_SCALE_FACTOR);
  543. }
  544. sched_clock_idle_wakeup_event(0);
  545. local_irq_restore(flags);
  546. }
  547. static unsigned long long cyc2ns_suspend;
  548. void save_sched_clock_state(void)
  549. {
  550. if (!sched_clock_stable)
  551. return;
  552. cyc2ns_suspend = sched_clock();
  553. }
  554. /*
  555. * Even on processors with invariant TSC, TSC gets reset in some the
  556. * ACPI system sleep states. And in some systems BIOS seem to reinit TSC to
  557. * arbitrary value (still sync'd across cpu's) during resume from such sleep
  558. * states. To cope up with this, recompute the cyc2ns_offset for each cpu so
  559. * that sched_clock() continues from the point where it was left off during
  560. * suspend.
  561. */
  562. void restore_sched_clock_state(void)
  563. {
  564. unsigned long long offset;
  565. unsigned long flags;
  566. int cpu;
  567. if (!sched_clock_stable)
  568. return;
  569. local_irq_save(flags);
  570. __this_cpu_write(cyc2ns_offset, 0);
  571. offset = cyc2ns_suspend - sched_clock();
  572. for_each_possible_cpu(cpu)
  573. per_cpu(cyc2ns_offset, cpu) = offset;
  574. local_irq_restore(flags);
  575. }
  576. #ifdef CONFIG_CPU_FREQ
  577. /* Frequency scaling support. Adjust the TSC based timer when the cpu frequency
  578. * changes.
  579. *
  580. * RED-PEN: On SMP we assume all CPUs run with the same frequency. It's
  581. * not that important because current Opteron setups do not support
  582. * scaling on SMP anyroads.
  583. *
  584. * Should fix up last_tsc too. Currently gettimeofday in the
  585. * first tick after the change will be slightly wrong.
  586. */
  587. static unsigned int ref_freq;
  588. static unsigned long loops_per_jiffy_ref;
  589. static unsigned long tsc_khz_ref;
  590. static int time_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
  591. void *data)
  592. {
  593. struct cpufreq_freqs *freq = data;
  594. unsigned long *lpj;
  595. if (cpu_has(&cpu_data(freq->cpu), X86_FEATURE_CONSTANT_TSC))
  596. return 0;
  597. lpj = &boot_cpu_data.loops_per_jiffy;
  598. #ifdef CONFIG_SMP
  599. if (!(freq->flags & CPUFREQ_CONST_LOOPS))
  600. lpj = &cpu_data(freq->cpu).loops_per_jiffy;
  601. #endif
  602. if (!ref_freq) {
  603. ref_freq = freq->old;
  604. loops_per_jiffy_ref = *lpj;
  605. tsc_khz_ref = tsc_khz;
  606. }
  607. if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
  608. (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) ||
  609. (val == CPUFREQ_RESUMECHANGE)) {
  610. *lpj = cpufreq_scale(loops_per_jiffy_ref, ref_freq, freq->new);
  611. tsc_khz = cpufreq_scale(tsc_khz_ref, ref_freq, freq->new);
  612. if (!(freq->flags & CPUFREQ_CONST_LOOPS))
  613. mark_tsc_unstable("cpufreq changes");
  614. }
  615. set_cyc2ns_scale(tsc_khz, freq->cpu);
  616. return 0;
  617. }
  618. static struct notifier_block time_cpufreq_notifier_block = {
  619. .notifier_call = time_cpufreq_notifier
  620. };
  621. static int __init cpufreq_tsc(void)
  622. {
  623. if (!cpu_has_tsc)
  624. return 0;
  625. if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
  626. return 0;
  627. cpufreq_register_notifier(&time_cpufreq_notifier_block,
  628. CPUFREQ_TRANSITION_NOTIFIER);
  629. return 0;
  630. }
  631. core_initcall(cpufreq_tsc);
  632. #endif /* CONFIG_CPU_FREQ */
  633. /* clocksource code */
  634. static struct clocksource clocksource_tsc;
  635. /*
  636. * We compare the TSC to the cycle_last value in the clocksource
  637. * structure to avoid a nasty time-warp. This can be observed in a
  638. * very small window right after one CPU updated cycle_last under
  639. * xtime/vsyscall_gtod lock and the other CPU reads a TSC value which
  640. * is smaller than the cycle_last reference value due to a TSC which
  641. * is slighty behind. This delta is nowhere else observable, but in
  642. * that case it results in a forward time jump in the range of hours
  643. * due to the unsigned delta calculation of the time keeping core
  644. * code, which is necessary to support wrapping clocksources like pm
  645. * timer.
  646. */
  647. static cycle_t read_tsc(struct clocksource *cs)
  648. {
  649. cycle_t ret = (cycle_t)get_cycles();
  650. return ret >= clocksource_tsc.cycle_last ?
  651. ret : clocksource_tsc.cycle_last;
  652. }
  653. static void resume_tsc(struct clocksource *cs)
  654. {
  655. clocksource_tsc.cycle_last = 0;
  656. }
  657. static struct clocksource clocksource_tsc = {
  658. .name = "tsc",
  659. .rating = 300,
  660. .read = read_tsc,
  661. .resume = resume_tsc,
  662. .mask = CLOCKSOURCE_MASK(64),
  663. .flags = CLOCK_SOURCE_IS_CONTINUOUS |
  664. CLOCK_SOURCE_MUST_VERIFY,
  665. #ifdef CONFIG_X86_64
  666. .archdata = { .vclock_mode = VCLOCK_TSC },
  667. #endif
  668. };
  669. void mark_tsc_unstable(char *reason)
  670. {
  671. if (!tsc_unstable) {
  672. tsc_unstable = 1;
  673. sched_clock_stable = 0;
  674. disable_sched_clock_irqtime();
  675. printk(KERN_INFO "Marking TSC unstable due to %s\n", reason);
  676. /* Change only the rating, when not registered */
  677. if (clocksource_tsc.mult)
  678. clocksource_mark_unstable(&clocksource_tsc);
  679. else {
  680. clocksource_tsc.flags |= CLOCK_SOURCE_UNSTABLE;
  681. clocksource_tsc.rating = 0;
  682. }
  683. }
  684. }
  685. EXPORT_SYMBOL_GPL(mark_tsc_unstable);
  686. static void __init check_system_tsc_reliable(void)
  687. {
  688. #ifdef CONFIG_MGEODE_LX
  689. /* RTSC counts during suspend */
  690. #define RTSC_SUSP 0x100
  691. unsigned long res_low, res_high;
  692. rdmsr_safe(MSR_GEODE_BUSCONT_CONF0, &res_low, &res_high);
  693. /* Geode_LX - the OLPC CPU has a very reliable TSC */
  694. if (res_low & RTSC_SUSP)
  695. tsc_clocksource_reliable = 1;
  696. #endif
  697. if (boot_cpu_has(X86_FEATURE_TSC_RELIABLE))
  698. tsc_clocksource_reliable = 1;
  699. }
  700. /*
  701. * Make an educated guess if the TSC is trustworthy and synchronized
  702. * over all CPUs.
  703. */
  704. __cpuinit int unsynchronized_tsc(void)
  705. {
  706. if (!cpu_has_tsc || tsc_unstable)
  707. return 1;
  708. #ifdef CONFIG_SMP
  709. if (apic_is_clustered_box())
  710. return 1;
  711. #endif
  712. if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
  713. return 0;
  714. if (tsc_clocksource_reliable)
  715. return 0;
  716. /*
  717. * Intel systems are normally all synchronized.
  718. * Exceptions must mark TSC as unstable:
  719. */
  720. if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) {
  721. /* assume multi socket systems are not synchronized: */
  722. if (num_possible_cpus() > 1)
  723. return 1;
  724. }
  725. return 0;
  726. }
  727. static void tsc_refine_calibration_work(struct work_struct *work);
  728. static DECLARE_DELAYED_WORK(tsc_irqwork, tsc_refine_calibration_work);
  729. /**
  730. * tsc_refine_calibration_work - Further refine tsc freq calibration
  731. * @work - ignored.
  732. *
  733. * This functions uses delayed work over a period of a
  734. * second to further refine the TSC freq value. Since this is
  735. * timer based, instead of loop based, we don't block the boot
  736. * process while this longer calibration is done.
  737. *
  738. * If there are any calibration anomalies (too many SMIs, etc),
  739. * or the refined calibration is off by 1% of the fast early
  740. * calibration, we throw out the new calibration and use the
  741. * early calibration.
  742. */
  743. static void tsc_refine_calibration_work(struct work_struct *work)
  744. {
  745. static u64 tsc_start = -1, ref_start;
  746. static int hpet;
  747. u64 tsc_stop, ref_stop, delta;
  748. unsigned long freq;
  749. /* Don't bother refining TSC on unstable systems */
  750. if (check_tsc_unstable())
  751. goto out;
  752. /*
  753. * Since the work is started early in boot, we may be
  754. * delayed the first time we expire. So set the workqueue
  755. * again once we know timers are working.
  756. */
  757. if (tsc_start == -1) {
  758. /*
  759. * Only set hpet once, to avoid mixing hardware
  760. * if the hpet becomes enabled later.
  761. */
  762. hpet = is_hpet_enabled();
  763. schedule_delayed_work(&tsc_irqwork, HZ);
  764. tsc_start = tsc_read_refs(&ref_start, hpet);
  765. return;
  766. }
  767. tsc_stop = tsc_read_refs(&ref_stop, hpet);
  768. /* hpet or pmtimer available ? */
  769. if (ref_start == ref_stop)
  770. goto out;
  771. /* Check, whether the sampling was disturbed by an SMI */
  772. if (tsc_start == ULLONG_MAX || tsc_stop == ULLONG_MAX)
  773. goto out;
  774. delta = tsc_stop - tsc_start;
  775. delta *= 1000000LL;
  776. if (hpet)
  777. freq = calc_hpet_ref(delta, ref_start, ref_stop);
  778. else
  779. freq = calc_pmtimer_ref(delta, ref_start, ref_stop);
  780. /* Make sure we're within 1% */
  781. if (abs(tsc_khz - freq) > tsc_khz/100)
  782. goto out;
  783. tsc_khz = freq;
  784. printk(KERN_INFO "Refined TSC clocksource calibration: "
  785. "%lu.%03lu MHz.\n", (unsigned long)tsc_khz / 1000,
  786. (unsigned long)tsc_khz % 1000);
  787. out:
  788. clocksource_register_khz(&clocksource_tsc, tsc_khz);
  789. }
  790. static int __init init_tsc_clocksource(void)
  791. {
  792. if (!cpu_has_tsc || tsc_disabled > 0 || !tsc_khz)
  793. return 0;
  794. if (tsc_clocksource_reliable)
  795. clocksource_tsc.flags &= ~CLOCK_SOURCE_MUST_VERIFY;
  796. /* lower the rating if we already know its unstable: */
  797. if (check_tsc_unstable()) {
  798. clocksource_tsc.rating = 0;
  799. clocksource_tsc.flags &= ~CLOCK_SOURCE_IS_CONTINUOUS;
  800. }
  801. schedule_delayed_work(&tsc_irqwork, 0);
  802. return 0;
  803. }
  804. /*
  805. * We use device_initcall here, to ensure we run after the hpet
  806. * is fully initialized, which may occur at fs_initcall time.
  807. */
  808. device_initcall(init_tsc_clocksource);
  809. void __init tsc_init(void)
  810. {
  811. u64 lpj;
  812. int cpu;
  813. x86_init.timers.tsc_pre_init();
  814. if (!cpu_has_tsc)
  815. return;
  816. tsc_khz = x86_platform.calibrate_tsc();
  817. cpu_khz = tsc_khz;
  818. if (!tsc_khz) {
  819. mark_tsc_unstable("could not calculate TSC khz");
  820. return;
  821. }
  822. printk("Detected %lu.%03lu MHz processor.\n",
  823. (unsigned long)cpu_khz / 1000,
  824. (unsigned long)cpu_khz % 1000);
  825. /*
  826. * Secondary CPUs do not run through tsc_init(), so set up
  827. * all the scale factors for all CPUs, assuming the same
  828. * speed as the bootup CPU. (cpufreq notifiers will fix this
  829. * up if their speed diverges)
  830. */
  831. for_each_possible_cpu(cpu)
  832. set_cyc2ns_scale(cpu_khz, cpu);
  833. if (tsc_disabled > 0)
  834. return;
  835. /* now allow native_sched_clock() to use rdtsc */
  836. tsc_disabled = 0;
  837. if (!no_sched_irq_time)
  838. enable_sched_clock_irqtime();
  839. lpj = ((u64)tsc_khz * 1000);
  840. do_div(lpj, HZ);
  841. lpj_fine = lpj;
  842. use_tsc_delay();
  843. if (unsynchronized_tsc())
  844. mark_tsc_unstable("TSCs unsynchronized");
  845. check_system_tsc_reliable();
  846. }