From ac4030b7e1d0acd7628d8f3b6b0f72de89dad67c Mon Sep 17 00:00:00 2001 From: "George V. Neville-Neil" Date: Fri, 20 Dec 2013 20:22:10 +0000 Subject: [PATCH] Add another Haswell model (0x45) to the set of supported chips. Model 0x45 appears, for example, in late 2013 Mac Book Pro models and is properly emulated by VMware. --- sys/dev/hwpmc/hwpmc_intel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/hwpmc/hwpmc_intel.c b/sys/dev/hwpmc/hwpmc_intel.c index 95b607accc9d..45eb5eb694dc 100644 --- a/sys/dev/hwpmc/hwpmc_intel.c +++ b/sys/dev/hwpmc/hwpmc_intel.c @@ -173,6 +173,7 @@ pmc_intel_initialize(void) nclasses = 3; break; case 0x3C: /* Per Intel document 325462-045US 01/2013. */ + case 0x45: cputype = PMC_CPU_INTEL_HASWELL; nclasses = 5; break;