blob: 3f818ce985c0a8742092271e48e23b857e85742b [file] [log] [blame]
Bin Gao7da7c152013-10-21 09:16:33 -07001/*
Len Brown9e0cae92016-06-17 01:22:46 -04002 * tsc_msr.c - TSC frequency enumeration via MSR
Bin Gao7da7c152013-10-21 09:16:33 -07003 *
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
10#include <linux/kernel.h>
11#include <asm/processor.h>
12#include <asm/setup.h>
13#include <asm/apic.h>
14#include <asm/param.h>
Andy Shevchenko67d0b2f2018-06-29 22:31:10 +030015#include <asm/tsc.h>
Bin Gao7da7c152013-10-21 09:16:33 -070016
Len Brown6fcb41c2016-06-17 01:22:48 -040017#define MAX_NUM_FREQS 9
Bin Gao7da7c152013-10-21 09:16:33 -070018
19/*
Len Brown9e0cae92016-06-17 01:22:46 -040020 * If MSR_PERF_STAT[31] is set, the maximum resolved bus ratio can be
Bin Gao7da7c152013-10-21 09:16:33 -070021 * read in MSR_PLATFORM_ID[12:8], otherwise in MSR_PERF_STAT[44:40].
22 * Unfortunately some Intel Atom SoCs aren't quite compliant to this,
23 * so we need manually differentiate SoC families. This is what the
24 * field msr_plat does.
25 */
26struct freq_desc {
27 u8 x86_family; /* CPU family */
28 u8 x86_model; /* model */
29 u8 msr_plat; /* 1: use MSR_PLATFORM_INFO, 0: MSR_IA32_PERF_STATUS */
30 u32 freqs[MAX_NUM_FREQS];
31};
32
33static struct freq_desc freq_desc_tables[] = {
34 /* PNW */
Len Brown9e0cae92016-06-17 01:22:46 -040035 { 6, 0x27, 0, { 0, 0, 0, 0, 0, 99840, 0, 83200 } },
Bin Gao7da7c152013-10-21 09:16:33 -070036 /* CLV+ */
Len Brown9e0cae92016-06-17 01:22:46 -040037 { 6, 0x35, 0, { 0, 133200, 0, 0, 0, 99840, 0, 83200 } },
38 /* TNG - Intel Atom processor Z3400 series */
Len Brown05680e72016-06-17 01:22:47 -040039 { 6, 0x4a, 1, { 0, 100000, 133300, 0, 0, 0, 0, 0 } },
Len Brown9e0cae92016-06-17 01:22:46 -040040 /* VLV2 - Intel Atom processor E3000, Z3600, Z3700 series */
Len Brown05680e72016-06-17 01:22:47 -040041 { 6, 0x37, 1, { 83300, 100000, 133300, 116700, 80000, 0, 0, 0 } },
Len Brown9e0cae92016-06-17 01:22:46 -040042 /* ANN - Intel Atom processor Z3500 series */
Len Brown05680e72016-06-17 01:22:47 -040043 { 6, 0x5a, 1, { 83300, 100000, 133300, 100000, 0, 0, 0, 0 } },
Len Brown6fcb41c2016-06-17 01:22:48 -040044 /* AMT - Intel Atom processor X7-Z8000 and X5-Z8000 series */
45 { 6, 0x4c, 1, { 83300, 100000, 133300, 116700,
46 80000, 93300, 90000, 88900, 87500 } },
Bin Gao7da7c152013-10-21 09:16:33 -070047};
48
49static int match_cpu(u8 family, u8 model)
50{
51 int i;
52
53 for (i = 0; i < ARRAY_SIZE(freq_desc_tables); i++) {
54 if ((family == freq_desc_tables[i].x86_family) &&
55 (model == freq_desc_tables[i].x86_model))
56 return i;
57 }
58
59 return -1;
60}
61
62/* Map CPU reference clock freq ID(0-7) to CPU reference clock freq(KHz) */
63#define id_to_freq(cpu_index, freq_id) \
64 (freq_desc_tables[cpu_index].freqs[freq_id])
65
66/*
Len Brown14bb4e32016-06-17 01:22:45 -040067 * MSR-based CPU/TSC frequency discovery for certain CPUs.
Thomas Gleixner5f0e0302014-02-19 13:52:29 +020068 *
Len Brown14bb4e32016-06-17 01:22:45 -040069 * Set global "lapic_timer_frequency" to bus_clock_cycles/jiffy
70 * Return processor base frequency in KHz, or 0 on failure.
Bin Gao7da7c152013-10-21 09:16:33 -070071 */
Len Brown02c0cd22016-06-17 01:22:50 -040072unsigned long cpu_khz_from_msr(void)
Bin Gao7da7c152013-10-21 09:16:33 -070073{
Bin Gao7da7c152013-10-21 09:16:33 -070074 u32 lo, hi, ratio, freq_id, freq;
Thomas Gleixner5f0e0302014-02-19 13:52:29 +020075 unsigned long res;
76 int cpu_index;
Bin Gao7da7c152013-10-21 09:16:33 -070077
Len Brownba826832016-06-17 01:22:44 -040078 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
79 return 0;
80
Bin Gao7da7c152013-10-21 09:16:33 -070081 cpu_index = match_cpu(boot_cpu_data.x86, boot_cpu_data.x86_model);
82 if (cpu_index < 0)
Thomas Gleixner5f0e0302014-02-19 13:52:29 +020083 return 0;
Bin Gao7da7c152013-10-21 09:16:33 -070084
85 if (freq_desc_tables[cpu_index].msr_plat) {
86 rdmsr(MSR_PLATFORM_INFO, lo, hi);
Chen Yu886123f2016-05-06 11:33:39 +080087 ratio = (lo >> 8) & 0xff;
Bin Gao7da7c152013-10-21 09:16:33 -070088 } else {
89 rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
90 ratio = (hi >> 8) & 0x1f;
91 }
Bin Gao7da7c152013-10-21 09:16:33 -070092
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);
Bin Gao7da7c152013-10-21 09:16:33 -070097
98 /* TSC frequency = maximum resolved freq * maximum resolved bus ratio */
Thomas Gleixner5f0e0302014-02-19 13:52:29 +020099 res = freq * ratio;
Bin Gao7da7c152013-10-21 09:16:33 -0700100
H. Peter Anvinca1e6312014-01-16 13:00:21 -0800101#ifdef CONFIG_X86_LOCAL_APIC
Bin Gao7da7c152013-10-21 09:16:33 -0700102 lapic_timer_frequency = (freq * 1000) / HZ;
H. Peter Anvinca1e6312014-01-16 13:00:21 -0800103#endif
Thomas Gleixner5f0e0302014-02-19 13:52:29 +0200104 return res;
Bin Gao7da7c152013-10-21 09:16:33 -0700105}