diff options
author | Jacob Pan <jacob.jun.pan@linux.intel.com> | 2016-06-16 12:48:21 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2016-12-01 01:33:18 -0500 |
commit | 2c48c990ea330ae8079488fdf1d156620c6f9d0c (patch) | |
tree | 805a96179e038a835448fbee50bff352d6e2308f /tools | |
parent | 9148494c59f53bb6c9233df07447777dc533db33 (diff) |
tools/power/turbostat: Add Denverton support
Denverton is an Atom based micro server which shares the same
Goldmont architecture as Broxton. The available C-states on
Denverton is a subset of Broxton with only C1, C1e, and C6.
Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 3a80f949e5ba..16ccada7e439 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c | |||
@@ -2204,6 +2204,7 @@ int probe_nhm_msrs(unsigned int family, unsigned int model) | |||
2204 | pkg_cstate_limits = phi_pkg_cstate_limits; | 2204 | pkg_cstate_limits = phi_pkg_cstate_limits; |
2205 | break; | 2205 | break; |
2206 | case 0x5C: /* BXT */ | 2206 | case 0x5C: /* BXT */ |
2207 | case 0x5F: /* DNV */ | ||
2207 | pkg_cstate_limits = bxt_pkg_cstate_limits; | 2208 | pkg_cstate_limits = bxt_pkg_cstate_limits; |
2208 | break; | 2209 | break; |
2209 | default: | 2210 | default: |
@@ -3301,6 +3302,7 @@ void process_cpuid() | |||
3301 | crystal_hz = 25000000; /* 25.0 MHz */ | 3302 | crystal_hz = 25000000; /* 25.0 MHz */ |
3302 | break; | 3303 | break; |
3303 | case 0x5C: /* BXT */ | 3304 | case 0x5C: /* BXT */ |
3305 | case 0x5F: /* DNV */ | ||
3304 | crystal_hz = 19200000; /* 19.2 MHz */ | 3306 | crystal_hz = 19200000; /* 19.2 MHz */ |
3305 | break; | 3307 | break; |
3306 | default: | 3308 | default: |