summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/i386/machdep.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index 2969cc3413c..ea65c0cd522 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.453 2009/06/15 17:01:26 beck Exp $ */
+/* $OpenBSD: machdep.c,v 1.454 2009/07/27 11:28:55 dms Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -2021,6 +2021,9 @@ p3_get_bus_clock(struct cpu_info *ci)
goto print_msr;
}
break;
+ case 0x1a: /* Nehalem based Core i7 and Xeon */
+ bus_clock = BUS133;
+ break;
case 0x1c: /* Atom */
msr = rdmsr(MSR_FSB_FREQ);
bus = (msr >> 0) & 0x7;