aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris E Ferron <chris.e.ferron@linux.intel.com>2012-09-12 09:00:15 -0700
committerChris E Ferron <chris.e.ferron@linux.intel.com>2012-09-12 09:00:15 -0700
commit095afc06ee821f2523031a0ffeacdfb34ffe2eb7 (patch)
tree43a3f8057ffb57b28faddb31f7ffebf24215b690
parent7ad2a82c9ab5da72f97e3abc088216dfdf0b2879 (diff)
Adding CPU id's
-rw-r--r--src/cpu/cpu.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/cpu.cpp b/src/cpu/cpu.cpp
index 368d3dd..cc37748 100644
--- a/src/cpu/cpu.cpp
+++ b/src/cpu/cpu.cpp
@@ -74,6 +74,7 @@ static class abstract_cpu * new_package(int package, int cpu, char * vendor, int
case 0x2A: /* SNB */
case 0x2D: /* SNB Xeon */
case 0x3A: /* IVB */
+ case 0x3C:
case 0x3D: /* IVB Xeon */
has_c2c7_res = 1;
ret = new class nhm_package;
@@ -110,6 +111,7 @@ static class abstract_cpu * new_core(int core, int cpu, char * vendor, int famil
case 0x2A: /* SNB */
case 0x2D: /* SNB Xeon */
case 0x3A: /* IVB */
+ case 0x3C:
case 0x3D: /* IVB Xeon */
ret = new class nhm_core;
}
@@ -150,6 +152,7 @@ static class abstract_cpu * new_cpu(int number, char * vendor, int family, int m
case 0x2A: /* SNB */
case 0x2D: /* SNB Xeon */
case 0x3A: /* IVB */
+ case 0x3C:
case 0x3D: /* IVB Xeon */
ret = new class nhm_cpu;
}