aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandra Yates <alexandra.yates@linux.intel.com>2015-04-16 14:36:29 -0700
committerAlexandra Yates <alexandra.yates@linux.intel.com>2015-04-16 14:36:29 -0700
commita7ddbd00f84253da38acc393e38f1c4db4263864 (patch)
treeb39e7809a7db4b8c1cb7b247dbd92a6ffc58c450
parent2dbf1e2bdf70e5576f11157b4fbb5e403d513c96 (diff)
downloadpowertop-2.0-a7ddbd00f84253da38acc393e38f1c4db4263864.tar.gz
Add C7- C10 support for Intel SKY
Add C7 to C10 support for Intel SKY for CPU idle. Signed-off-by: Alexandra Yates <alexandra.yates@linux.intel.com>
-rw-r--r--src/cpu/intel_cpus.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/intel_cpus.cpp b/src/cpu/intel_cpus.cpp
index 72ecd50..d96cb49 100644
--- a/src/cpu/intel_cpus.cpp
+++ b/src/cpu/intel_cpus.cpp
@@ -63,7 +63,7 @@ static int intel_cpu_models[] = {
0x4C, /* BSW */
0x4D, /* AVN */
0x4F, /* BDX */
- 0x4E, /* Intel Next Generation */
+ 0x4E, /* SKY */
0x56, /* BDX-DE */
0 /* last entry must be zero */
};
@@ -318,7 +318,7 @@ nhm_package::nhm_package(int model)
has_c3_res = 1;
/* Haswell-ULT has C8/9/10*/
- if (model == 0x45 || model ==0x3D)
+ if (model == 0x45 || model == 0x3D || model == 0x4E)
has_c8c9c10_res = 1;
}