tsc_msr.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. * tsc_msr.c - MSR based TSC calibration on Intel Atom SoC platforms.
  3. *
  4. * TSC in Intel Atom SoC runs at a constant rate which can be figured
  5. * by this formula:
  6. * <maximum core-clock to bus-clock ratio> * <maximum resolved frequency>
  7. * See Intel 64 and IA-32 System Programming Guid section 16.12 and 30.11.5
  8. * for details.
  9. * Especially some Intel Atom SoCs don't have PIT(i8254) or HPET, so MSR
  10. * based calibration is the only option.
  11. *
  12. *
  13. * Copyright (C) 2013 Intel Corporation
  14. * Author: Bin Gao <bin.gao@intel.com>
  15. *
  16. * This file is released under the GPLv2.
  17. */
  18. #include <linux/kernel.h>
  19. #include <asm/processor.h>
  20. #include <asm/setup.h>
  21. #include <asm/apic.h>
  22. #include <asm/param.h>
  23. /* CPU reference clock frequency: in KHz */
  24. #define FREQ_83 83200
  25. #define FREQ_100 99840
  26. #define FREQ_133 133200
  27. #define FREQ_166 166400
  28. #define MAX_NUM_FREQS 8
  29. /*
  30. * According to Intel 64 and IA-32 System Programming Guide,
  31. * if MSR_PERF_STAT[31] is set, the maximum resolved bus ratio can be
  32. * read in MSR_PLATFORM_ID[12:8], otherwise in MSR_PERF_STAT[44:40].
  33. * Unfortunately some Intel Atom SoCs aren't quite compliant to this,
  34. * so we need manually differentiate SoC families. This is what the
  35. * field msr_plat does.
  36. */
  37. struct freq_desc {
  38. u8 x86_family; /* CPU family */
  39. u8 x86_model; /* model */
  40. u8 msr_plat; /* 1: use MSR_PLATFORM_INFO, 0: MSR_IA32_PERF_STATUS */
  41. u32 freqs[MAX_NUM_FREQS];
  42. };
  43. static struct freq_desc freq_desc_tables[] = {
  44. /* PNW */
  45. { 6, 0x27, 0, { 0, 0, 0, 0, 0, FREQ_100, 0, FREQ_83 } },
  46. /* CLV+ */
  47. { 6, 0x35, 0, { 0, FREQ_133, 0, 0, 0, FREQ_100, 0, FREQ_83 } },
  48. /* TNG */
  49. { 6, 0x4a, 1, { 0, FREQ_100, FREQ_133, 0, 0, 0, 0, 0 } },
  50. /* VLV2 */
  51. { 6, 0x37, 1, { 0, FREQ_100, FREQ_133, FREQ_166, 0, 0, 0, 0 } },
  52. /* ANN */
  53. { 6, 0x5a, 1, { FREQ_83, FREQ_100, FREQ_133, FREQ_100, 0, 0, 0, 0 } },
  54. };
  55. static int match_cpu(u8 family, u8 model)
  56. {
  57. int i;
  58. for (i = 0; i < ARRAY_SIZE(freq_desc_tables); i++) {
  59. if ((family == freq_desc_tables[i].x86_family) &&
  60. (model == freq_desc_tables[i].x86_model))
  61. return i;
  62. }
  63. return -1;
  64. }
  65. /* Map CPU reference clock freq ID(0-7) to CPU reference clock freq(KHz) */
  66. #define id_to_freq(cpu_index, freq_id) \
  67. (freq_desc_tables[cpu_index].freqs[freq_id])
  68. /*
  69. * Do MSR calibration only for known/supported CPUs.
  70. * Return values:
  71. * -1: CPU is unknown/unsupported for MSR based calibration
  72. * 0: CPU is known/supported, but calibration failed
  73. * 1: CPU is known/supported, and calibration succeeded
  74. */
  75. int try_msr_calibrate_tsc(unsigned long *fast_calibrate)
  76. {
  77. int cpu_index;
  78. u32 lo, hi, ratio, freq_id, freq;
  79. cpu_index = match_cpu(boot_cpu_data.x86, boot_cpu_data.x86_model);
  80. if (cpu_index < 0)
  81. return -1;
  82. *fast_calibrate = 0;
  83. if (freq_desc_tables[cpu_index].msr_plat) {
  84. rdmsr(MSR_PLATFORM_INFO, lo, hi);
  85. ratio = (lo >> 8) & 0x1f;
  86. } else {
  87. rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
  88. ratio = (hi >> 8) & 0x1f;
  89. }
  90. pr_info("Maximum core-clock to bus-clock ratio: 0x%x\n", ratio);
  91. if (!ratio)
  92. return 0;
  93. /* Get FSB FREQ ID */
  94. rdmsr(MSR_FSB_FREQ, lo, hi);
  95. freq_id = lo & 0x7;
  96. freq = id_to_freq(cpu_index, freq_id);
  97. pr_info("Resolved frequency ID: %u, frequency: %u KHz\n",
  98. freq_id, freq);
  99. if (!freq)
  100. return 0;
  101. /* TSC frequency = maximum resolved freq * maximum resolved bus ratio */
  102. *fast_calibrate = freq * ratio;
  103. pr_info("TSC runs at %lu KHz\n", *fast_calibrate);
  104. #ifdef CONFIG_X86_LOCAL_APIC
  105. lapic_timer_frequency = (freq * 1000) / HZ;
  106. pr_info("lapic_timer_frequency = %d\n", lapic_timer_frequency);
  107. #endif
  108. return 1;
  109. }