diff options
author | Len Brown <len.brown@intel.com> | 2018-01-02 16:17:23 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2018-06-01 17:15:08 -0400 |
commit | 733ef0f8e76e323b5eae36691896fd48ab026056 (patch) | |
tree | d134c1a233f6bb1d4b35ad4fc1216e78cb344b2d /tools/power/x86 | |
parent | 46c2797826cc6d1ae36fcbd966e76f9fa1907eef (diff) | |
download | blackbird-op-linux-733ef0f8e76e323b5eae36691896fd48ab026056.tar.gz blackbird-op-linux-733ef0f8e76e323b5eae36691896fd48ab026056.zip |
tools/power turbostat: do not hard-code 25MHz crystal on SKX
Some SKX use a 24 MHz crystal, so do not hard code 25 MHz.
Also, SKX crystal is not exact, because SKX uses an EMI reduction
circuit that costs a fraction of a percent.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools/power/x86')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 59742600b7eb..af1f81053be9 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -4261,7 +4261,6 @@ void process_cpuid() case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */ crystal_hz = 24000000; /* 24.0 MHz */ break; - case INTEL_FAM6_SKYLAKE_X: /* SKX */ case INTEL_FAM6_ATOM_DENVERTON: /* DNV */ crystal_hz = 25000000; /* 25.0 MHz */ break; |