tsc_msr.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * tsc_msr.c - TSC frequency enumeration via MSR
  3. *
  4. * Copyright (C) 2013 Intel Corporation
  5. * Author: Bin Gao <bin.gao@intel.com>
  6. *
  7. * This file is released under the GPLv2.
  8. */
  9. #include <linux/kernel.h>
  10. #include <asm/processor.h>
  11. #include <asm/setup.h>
  12. #include <asm/apic.h>
  13. #include <asm/param.h>
  14. #define MAX_NUM_FREQS 9
  15. /*
  16. * If MSR_PERF_STAT[31] is set, the maximum resolved bus ratio can be
  17. * read in MSR_PLATFORM_ID[12:8], otherwise in MSR_PERF_STAT[44:40].
  18. * Unfortunately some Intel Atom SoCs aren't quite compliant to this,
  19. * so we need manually differentiate SoC families. This is what the
  20. * field msr_plat does.
  21. */
  22. struct freq_desc {
  23. u8 x86_family; /* CPU family */
  24. u8 x86_model; /* model */
  25. u8 msr_plat; /* 1: use MSR_PLATFORM_INFO, 0: MSR_IA32_PERF_STATUS */
  26. u32 freqs[MAX_NUM_FREQS];
  27. };
  28. static struct freq_desc freq_desc_tables[] = {
  29. /* PNW */
  30. { 6, 0x27, 0, { 0, 0, 0, 0, 0, 99840, 0, 83200 } },
  31. /* CLV+ */
  32. { 6, 0x35, 0, { 0, 133200, 0, 0, 0, 99840, 0, 83200 } },
  33. /* TNG - Intel Atom processor Z3400 series */
  34. { 6, 0x4a, 1, { 0, 100000, 133300, 0, 0, 0, 0, 0 } },
  35. /* VLV2 - Intel Atom processor E3000, Z3600, Z3700 series */
  36. { 6, 0x37, 1, { 83300, 100000, 133300, 116700, 80000, 0, 0, 0 } },
  37. /* ANN - Intel Atom processor Z3500 series */
  38. { 6, 0x5a, 1, { 83300, 100000, 133300, 100000, 0, 0, 0, 0 } },
  39. /* AMT - Intel Atom processor X7-Z8000 and X5-Z8000 series */
  40. { 6, 0x4c, 1, { 83300, 100000, 133300, 116700,
  41. 80000, 93300, 90000, 88900, 87500 } },
  42. };
  43. static int match_cpu(u8 family, u8 model)
  44. {
  45. int i;
  46. for (i = 0; i < ARRAY_SIZE(freq_desc_tables); i++) {
  47. if ((family == freq_desc_tables[i].x86_family) &&
  48. (model == freq_desc_tables[i].x86_model))
  49. return i;
  50. }
  51. return -1;
  52. }
  53. /* Map CPU reference clock freq ID(0-7) to CPU reference clock freq(KHz) */
  54. #define id_to_freq(cpu_index, freq_id) \
  55. (freq_desc_tables[cpu_index].freqs[freq_id])
  56. /*
  57. * MSR-based CPU/TSC frequency discovery for certain CPUs.
  58. *
  59. * Set global "lapic_timer_frequency" to bus_clock_cycles/jiffy
  60. * Return processor base frequency in KHz, or 0 on failure.
  61. */
  62. unsigned long cpu_khz_from_msr(void)
  63. {
  64. u32 lo, hi, ratio, freq_id, freq;
  65. unsigned long res;
  66. int cpu_index;
  67. if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
  68. return 0;
  69. cpu_index = match_cpu(boot_cpu_data.x86, boot_cpu_data.x86_model);
  70. if (cpu_index < 0)
  71. return 0;
  72. if (freq_desc_tables[cpu_index].msr_plat) {
  73. rdmsr(MSR_PLATFORM_INFO, lo, hi);
  74. ratio = (lo >> 8) & 0xff;
  75. } else {
  76. rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
  77. ratio = (hi >> 8) & 0x1f;
  78. }
  79. /* Get FSB FREQ ID */
  80. rdmsr(MSR_FSB_FREQ, lo, hi);
  81. freq_id = lo & 0x7;
  82. freq = id_to_freq(cpu_index, freq_id);
  83. /* TSC frequency = maximum resolved freq * maximum resolved bus ratio */
  84. res = freq * ratio;
  85. #ifdef CONFIG_X86_LOCAL_APIC
  86. lapic_timer_frequency = (freq * 1000) / HZ;
  87. #endif
  88. return res;
  89. }