Browse Source

support Xeon E7540

exfamily: 0
familiy 6
exmodel: 2
model: 14
pull/172/head
Julian Taylor 13 years ago
parent
commit
7269ff6580
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      cpuid_x86.c
  2. +1
    -1
      driver/others/dynamic.c

+ 2
- 0
cpuid_x86.c View File

@@ -1030,6 +1030,8 @@ int get_cpuname(void){
return CPUTYPE_SANDYBRIDGE;
else
return CPUTYPE_NEHALEM;
case 14:
// Xeon E7540
case 15:
//Xeon Processor E7 (Westmere-EX)
return CPUTYPE_NEHALEM;


+ 1
- 1
driver/others/dynamic.c View File

@@ -163,7 +163,7 @@ static gotoblas_t *get_coretype(void){
//Intel Xeon Processor 5600 (Westmere-EP)
//Xeon Processor E7 (Westmere-EX)
if (model == 12 || model == 15) return &gotoblas_NEHALEM;
if (model == 12 || model == 14 || model == 15) return &gotoblas_NEHALEM;

//Intel Core i5-2000 /i7-2000 (Sandy Bridge)
//Intel Core i7-3000 / Xeon E5


Loading…
Cancel
Save