summaryrefslogtreecommitdiff
path: root/util/msrtool
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2015-01-27 13:30:52 +0100
committerPeter Stuge <peter@stuge.se>2015-02-11 02:51:16 +0100
commitc768f9231b4237652c7e91a524194847ae140b5a (patch)
treed1b29279e8863dd22ad063096d046123775ed4da /util/msrtool
parentba0e895659f1e387d8c526aa0a3fd7a9c4a4affb (diff)
downloadcoreboot-c768f9231b4237652c7e91a524194847ae140b5a.tar.xz
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> Reviewed-on: http://review.coreboot.org/8293 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'util/msrtool')
-rw-r--r--util/msrtool/intel_nehalem.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/util/msrtool/intel_nehalem.c b/util/msrtool/intel_nehalem.c
index 3c2cbf8476..3674615643 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 */
));
}