summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2007-06-03 04:30:32 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2007-06-03 04:30:32 +0000
commit8b8cbd8976e5364656a6d2b6ae64b98da6d6d93e (patch)
tree346e29733798a30d652211422ab5396a44d0607f /sys/arch/amd64
parent13a4055e8b5b18901b66d07b639b0e08636d6f1c (diff)
Add a check for Intel Core processors with Scalable Bus Speed of 200 MHz.
From NetBSD and verified in Intel doc #253669 ok tedu@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/est.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/est.c b/sys/arch/amd64/amd64/est.c
index 14ad1eb1ad4..4ed0ffaf1fc 100644
--- a/sys/arch/amd64/amd64/est.c
+++ b/sys/arch/amd64/amd64/est.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: est.c,v 1.2 2007/06/01 22:28:21 tedu Exp $ */
+/* $OpenBSD: est.c,v 1.3 2007/06/03 04:30:31 jsg Exp $ */
/*
* Copyright (c) 2003 Michael Eriksson.
* All rights reserved.
@@ -169,6 +169,9 @@ p3_get_bus_clock(struct cpu_info *ci)
case 3:
bus_clock = 16666;
break;
+ case 2:
+ bus_clock = 20000;
+ break;
case 0:
bus_clock = 26666;
break;