f0951c2
[openwrt/staging/blogic.git] /
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * TSC frequency enumeration via MSR
4 *
5 * Copyright (C) 2013, 2018 Intel Corporation
6 * Author: Bin Gao <bin.gao@intel.com>
7 */
8
9 #include <linux/kernel.h>
10
11 #include <asm/apic.h>
12 #include <asm/cpu_device_id.h>
13 #include <asm/intel-family.h>
14 #include <asm/msr.h>
15 #include <asm/param.h>
16 #include <asm/tsc.h>
17
18 #define MAX_NUM_FREQS 9
19
20 /*
21 * If MSR_PERF_STAT[31] is set, the maximum resolved bus ratio can be
22 * read in MSR_PLATFORM_ID[12:8], otherwise in MSR_PERF_STAT[44:40].
23 * Unfortunately some Intel Atom SoCs aren't quite compliant to this,
24 * so we need manually differentiate SoC families. This is what the
25 * field msr_plat does.
26 */
27 struct freq_desc {
28 u8 msr_plat; /* 1: use MSR_PLATFORM_INFO, 0: MSR_IA32_PERF_STATUS */
29 u32 freqs[MAX_NUM_FREQS];
30 };
31
32 static const struct freq_desc freq_desc_pnw = {
33 0, { 0, 0, 0, 0, 0, 99840, 0, 83200 }
34 };
35
36 static const struct freq_desc freq_desc_clv = {
37 0, { 0, 133200, 0, 0, 0, 99840, 0, 83200 }
38 };
39
40 static const struct freq_desc freq_desc_byt = {
41 1, { 83300, 100000, 133300, 116700, 80000, 0, 0, 0 }
42 };
43
44 static const struct freq_desc freq_desc_cht = {
45 1, { 83300, 100000, 133300, 116700, 80000, 93300, 90000, 88900, 87500 }
46 };
47
48 static const struct freq_desc freq_desc_tng = {
49 1, { 0, 100000, 133300, 0, 0, 0, 0, 0 }
50 };
51
52 static const struct freq_desc freq_desc_ann = {
53 1, { 83300, 100000, 133300, 100000, 0, 0, 0, 0 }
54 };
55
56 static const struct x86_cpu_id tsc_msr_cpu_ids[] = {
57 INTEL_CPU_FAM6(ATOM_PENWELL, freq_desc_pnw),
58 INTEL_CPU_FAM6(ATOM_CLOVERVIEW, freq_desc_clv),
59 INTEL_CPU_FAM6(ATOM_SILVERMONT1, freq_desc_byt),
60 INTEL_CPU_FAM6(ATOM_AIRMONT, freq_desc_cht),
61 INTEL_CPU_FAM6(ATOM_MERRIFIELD, freq_desc_tng),
62 INTEL_CPU_FAM6(ATOM_MOOREFIELD, freq_desc_ann),
63 {}
64 };
65
66 /*
67 * MSR-based CPU/TSC frequency discovery for certain CPUs.
68 *
69 * Set global "lapic_timer_frequency" to bus_clock_cycles/jiffy
70 * Return processor base frequency in KHz, or 0 on failure.
71 */
72 unsigned long cpu_khz_from_msr(void)
73 {
74 u32 lo, hi, ratio, freq;
75 const struct freq_desc *freq_desc;
76 const struct x86_cpu_id *id;
77 unsigned long res;
78
79 id = x86_match_cpu(tsc_msr_cpu_ids);
80 if (!id)
81 return 0;
82
83 freq_desc = (struct freq_desc *)id->driver_data;
84 if (freq_desc->msr_plat) {
85 rdmsr(MSR_PLATFORM_INFO, lo, hi);
86 ratio = (lo >> 8) & 0xff;
87 } else {
88 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
89 ratio = (hi >> 8) & 0x1f;
90 }
91
92 /* Get FSB FREQ ID */
93 rdmsr(MSR_FSB_FREQ, lo, hi);
94
95 /* Map CPU reference clock freq ID(0-7) to CPU reference clock freq(KHz) */
96 freq = freq_desc->freqs[lo & 0x7];
97
98 /* TSC frequency = maximum resolved freq * maximum resolved bus ratio */
99 res = freq * ratio;
100
101 #ifdef CONFIG_X86_LOCAL_APIC
102 lapic_timer_frequency = (freq * 1000) / HZ;
103 #endif
104
105 /*
106 * TSC frequency determined by MSR is always considered "known"
107 * because it is reported by HW.
108 * Another fact is that on MSR capable platforms, PIT/HPET is
109 * generally not available so calibration won't work at all.
110 */
111 setup_force_cpu_cap(X86_FEATURE_TSC_KNOWN_FREQ);
112
113 /*
114 * Unfortunately there is no way for hardware to tell whether the
115 * TSC is reliable. We were told by silicon design team that TSC
116 * on Atom SoCs are always "reliable". TSC is also the only
117 * reliable clocksource on these SoCs (HPET is either not present
118 * or not functional) so mark TSC reliable which removes the
119 * requirement for a watchdog clocksource.
120 */
121 setup_force_cpu_cap(X86_FEATURE_TSC_RELIABLE);
122
123 return res;
124 }