Alexander Couzens (lynxis@fe80.eu) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8293
-gerrit
commit 4927574c9a7ca8c4b24447474d5632269dad868b Author: Alexander Couzens lynxis@fe80.eu Date: Tue Jan 27 13:30:52 2015 +0100
utils/msrtool: add westmere cpuids to nehalem
Westmere's are nehalem's in 32nm
Change-Id: I529194d50dbe3f585faee14961542433ea96ab75 Signed-off-by: Alexander Couzens lynxis@fe80.eu --- util/msrtool/intel_nehalem.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/util/msrtool/intel_nehalem.c b/util/msrtool/intel_nehalem.c index 3c2cbf8..3674615 100644 --- a/util/msrtool/intel_nehalem.c +++ b/util/msrtool/intel_nehalem.c @@ -24,7 +24,10 @@ int intel_nehalem_probe(const struct targetdef *target, const struct cpuid_t *id (0x1a == id->model) || (0x1e == id->model) || (0x1f == id->model) || - (0x2e == id->model) + (0x2e == id->model) || + (0x25 == id->model) || /* westmere */ + (0x2c == id->model) || /* westmere */ + (0x2f == id->model) /* westmere */ )); }