svn commit: r215735 - stable/8/sys/dev/hwpmc

Fabien Thomas fabient at FreeBSD.org
Tue Nov 23 09:12:44 UTC 2010


Author: fabient
Date: Tue Nov 23 09:12:43 2010
New Revision: 215735
URL: http://svn.freebsd.org/changeset/base/215735

Log:
  MFC 200669:
  Recognize Intel CPUs with Family 0x6, Models 0x1E and 0x1F.

Modified:
  stable/8/sys/dev/hwpmc/hwpmc_intel.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/hwpmc/hwpmc_intel.c
==============================================================================
--- stable/8/sys/dev/hwpmc/hwpmc_intel.c	Tue Nov 23 08:15:14 2010	(r215734)
+++ stable/8/sys/dev/hwpmc/hwpmc_intel.c	Tue Nov 23 09:12:43 2010	(r215735)
@@ -131,6 +131,8 @@ pmc_intel_initialize(void)
 			nclasses = 3;
 			break;
 		case 0x1A:
+		case 0x1E:	/* Per Intel document 253669-032 9/2009, pages A-2 and A-57 */
+		case 0x1F:	/* Per Intel document 253669-032 9/2009, pages A-2 and A-57 */
 		case 0x2E:
 			cputype = PMC_CPU_INTEL_COREI7;
 			nclasses = 5;


More information about the svn-src-stable mailing list