2018-06-29 19:31:11 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-10-21 16:16:33 +00:00
|
|
|
/*
|
2018-06-29 19:31:11 +00:00
|
|
|
* TSC frequency enumeration via MSR
|
2013-10-21 16:16:33 +00:00
|
|
|
*
|
2018-06-29 19:31:11 +00:00
|
|
|
* Copyright (C) 2013, 2018 Intel Corporation
|
2013-10-21 16:16:33 +00:00
|
|
|
* Author: Bin Gao <bin.gao@intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
2018-06-29 19:31:09 +00:00
|
|
|
|
2013-10-21 16:16:33 +00:00
|
|
|
#include <asm/apic.h>
|
2018-06-29 19:31:09 +00:00
|
|
|
#include <asm/cpu_device_id.h>
|
|
|
|
#include <asm/intel-family.h>
|
|
|
|
#include <asm/msr.h>
|
2013-10-21 16:16:33 +00:00
|
|
|
#include <asm/param.h>
|
2018-06-29 19:31:10 +00:00
|
|
|
#include <asm/tsc.h>
|
2013-10-21 16:16:33 +00:00
|
|
|
|
2016-06-17 05:22:48 +00:00
|
|
|
#define MAX_NUM_FREQS 9
|
2013-10-21 16:16:33 +00:00
|
|
|
|
|
|
|
/*
|
2016-06-17 05:22:46 +00:00
|
|
|
* If MSR_PERF_STAT[31] is set, the maximum resolved bus ratio can be
|
2013-10-21 16:16:33 +00:00
|
|
|
* read in MSR_PLATFORM_ID[12:8], otherwise in MSR_PERF_STAT[44:40].
|
|
|
|
* Unfortunately some Intel Atom SoCs aren't quite compliant to this,
|
|
|
|
* so we need manually differentiate SoC families. This is what the
|
|
|
|
* field msr_plat does.
|
|
|
|
*/
|
|
|
|
struct freq_desc {
|
|
|
|
u8 msr_plat; /* 1: use MSR_PLATFORM_INFO, 0: MSR_IA32_PERF_STATUS */
|
|
|
|
u32 freqs[MAX_NUM_FREQS];
|
|
|
|
};
|
|
|
|
|
2018-06-29 19:31:12 +00:00
|
|
|
/*
|
|
|
|
* Penwell and Clovertrail use spread spectrum clock,
|
|
|
|
* so the freq number is not exactly the same as reported
|
|
|
|
* by MSR based on SDM.
|
|
|
|
*/
|
2018-06-29 19:31:09 +00:00
|
|
|
static const struct freq_desc freq_desc_pnw = {
|
|
|
|
0, { 0, 0, 0, 0, 0, 99840, 0, 83200 }
|
2013-10-21 16:16:33 +00:00
|
|
|
};
|
|
|
|
|
2018-06-29 19:31:09 +00:00
|
|
|
static const struct freq_desc freq_desc_clv = {
|
|
|
|
0, { 0, 133200, 0, 0, 0, 99840, 0, 83200 }
|
|
|
|
};
|
2013-10-21 16:16:33 +00:00
|
|
|
|
2018-06-29 19:31:09 +00:00
|
|
|
static const struct freq_desc freq_desc_byt = {
|
|
|
|
1, { 83300, 100000, 133300, 116700, 80000, 0, 0, 0 }
|
|
|
|
};
|
2013-10-21 16:16:33 +00:00
|
|
|
|
2018-06-29 19:31:09 +00:00
|
|
|
static const struct freq_desc freq_desc_cht = {
|
|
|
|
1, { 83300, 100000, 133300, 116700, 80000, 93300, 90000, 88900, 87500 }
|
|
|
|
};
|
2013-10-21 16:16:33 +00:00
|
|
|
|
2018-06-29 19:31:09 +00:00
|
|
|
static const struct freq_desc freq_desc_tng = {
|
|
|
|
1, { 0, 100000, 133300, 0, 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct freq_desc freq_desc_ann = {
|
|
|
|
1, { 83300, 100000, 133300, 100000, 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct x86_cpu_id tsc_msr_cpu_ids[] = {
|
|
|
|
INTEL_CPU_FAM6(ATOM_PENWELL, freq_desc_pnw),
|
|
|
|
INTEL_CPU_FAM6(ATOM_CLOVERVIEW, freq_desc_clv),
|
|
|
|
INTEL_CPU_FAM6(ATOM_SILVERMONT1, freq_desc_byt),
|
|
|
|
INTEL_CPU_FAM6(ATOM_AIRMONT, freq_desc_cht),
|
|
|
|
INTEL_CPU_FAM6(ATOM_MERRIFIELD, freq_desc_tng),
|
|
|
|
INTEL_CPU_FAM6(ATOM_MOOREFIELD, freq_desc_ann),
|
|
|
|
{}
|
|
|
|
};
|
2013-10-21 16:16:33 +00:00
|
|
|
|
|
|
|
/*
|
2016-06-17 05:22:45 +00:00
|
|
|
* MSR-based CPU/TSC frequency discovery for certain CPUs.
|
2014-02-19 11:52:29 +00:00
|
|
|
*
|
2016-06-17 05:22:45 +00:00
|
|
|
* Set global "lapic_timer_frequency" to bus_clock_cycles/jiffy
|
|
|
|
* Return processor base frequency in KHz, or 0 on failure.
|
2013-10-21 16:16:33 +00:00
|
|
|
*/
|
2016-06-17 05:22:50 +00:00
|
|
|
unsigned long cpu_khz_from_msr(void)
|
2013-10-21 16:16:33 +00:00
|
|
|
{
|
2018-06-29 19:31:09 +00:00
|
|
|
u32 lo, hi, ratio, freq;
|
|
|
|
const struct freq_desc *freq_desc;
|
|
|
|
const struct x86_cpu_id *id;
|
2014-02-19 11:52:29 +00:00
|
|
|
unsigned long res;
|
2013-10-21 16:16:33 +00:00
|
|
|
|
2018-06-29 19:31:09 +00:00
|
|
|
id = x86_match_cpu(tsc_msr_cpu_ids);
|
|
|
|
if (!id)
|
2016-06-17 05:22:44 +00:00
|
|
|
return 0;
|
|
|
|
|
2018-06-29 19:31:09 +00:00
|
|
|
freq_desc = (struct freq_desc *)id->driver_data;
|
|
|
|
if (freq_desc->msr_plat) {
|
2013-10-21 16:16:33 +00:00
|
|
|
rdmsr(MSR_PLATFORM_INFO, lo, hi);
|
2016-05-06 03:33:39 +00:00
|
|
|
ratio = (lo >> 8) & 0xff;
|
2013-10-21 16:16:33 +00:00
|
|
|
} else {
|
|
|
|
rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
|
|
|
|
ratio = (hi >> 8) & 0x1f;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get FSB FREQ ID */
|
|
|
|
rdmsr(MSR_FSB_FREQ, lo, hi);
|
2018-06-29 19:31:09 +00:00
|
|
|
|
|
|
|
/* Map CPU reference clock freq ID(0-7) to CPU reference clock freq(KHz) */
|
|
|
|
freq = freq_desc->freqs[lo & 0x7];
|
2013-10-21 16:16:33 +00:00
|
|
|
|
|
|
|
/* TSC frequency = maximum resolved freq * maximum resolved bus ratio */
|
2014-02-19 11:52:29 +00:00
|
|
|
res = freq * ratio;
|
2013-10-21 16:16:33 +00:00
|
|
|
|
2014-01-16 21:00:21 +00:00
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
2013-10-21 16:16:33 +00:00
|
|
|
lapic_timer_frequency = (freq * 1000) / HZ;
|
2014-01-16 21:00:21 +00:00
|
|
|
#endif
|
2016-11-15 20:27:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TSC frequency determined by MSR is always considered "known"
|
|
|
|
* because it is reported by HW.
|
|
|
|
* Another fact is that on MSR capable platforms, PIT/HPET is
|
|
|
|
* generally not available so calibration won't work at all.
|
|
|
|
*/
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_TSC_KNOWN_FREQ);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unfortunately there is no way for hardware to tell whether the
|
|
|
|
* TSC is reliable. We were told by silicon design team that TSC
|
|
|
|
* on Atom SoCs are always "reliable". TSC is also the only
|
|
|
|
* reliable clocksource on these SoCs (HPET is either not present
|
|
|
|
* or not functional) so mark TSC reliable which removes the
|
|
|
|
* requirement for a watchdog clocksource.
|
|
|
|
*/
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_TSC_RELIABLE);
|
|
|
|
|
2014-02-19 11:52:29 +00:00
|
|
|
return res;
|
2013-10-21 16:16:33 +00:00
|
|
|
}
|