diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-04-19 22:14:55 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-04-19 22:14:55 +0000 |
commit | e0532ee1f5ab43361ecc07f76d27f2e5db115d67 (patch) | |
tree | 4a3a44e0716a602cfcec418db334a4ab2b0b797a /sys/arch/i386 | |
parent | 6b79b3ddc76a29d52687eb03c3788e4894d8175f (diff) |
add some more intel cpuid models
ok kettenis@
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 86706325691..f542ed57bae 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.492 2011/04/18 21:44:55 guenther Exp $ */ +/* $OpenBSD: machdep.c,v 1.493 2011/04/19 22:14:54 jsg Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -2106,8 +2106,16 @@ p3_get_bus_clock(struct cpu_info *ci) break; case 0x1a: /* Core i7, Xeon 3500/5500 */ case 0x1e: /* Core i5/i7, Xeon 3400 */ + case 0x1f: /* Core i5/i7 */ case 0x25: /* Core i3/i5, Xeon 3400 */ case 0x2c: /* Core i7, Xeon 3600/5600 */ + /* BUS133 */ + break; + case 0x2a: /* Core i5/i7 2nd Generation */ + case 0x2d: /* Xeon E5 */ + /* BUS100 */ + break; + case 0x1d: /* Xeon MP 7400 */ case 0x2e: /* Xeon 6500/7500 */ break; default: |