summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1997-06-24 09:45:35 +0000
committerkato <kato@FreeBSD.org>1997-06-24 09:45:35 +0000
commit4faab418b8eb97cf7d9a4819326fe7d3c7fe3571 (patch)
tree8ae62fad1013ca239e6768e4dfd350ea00297088 /sys
parente95a95cf3a046d21c5e61d668090d0d10c7f2827 (diff)
downloadFreeBSD-src-4faab418b8eb97cf7d9a4819326fe7d3c7fe3571.zip
FreeBSD-src-4faab418b8eb97cf7d9a4819326fe7d3c7fe3571.tar.gz
Recognize AMD K5 PR166 and PR200 CPUs.
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/identcpu.c8
-rw-r--r--sys/i386/i386/identcpu.c8
2 files changed, 14 insertions, 2 deletions
diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c
index c09c857..03752c6 100644
--- a/sys/amd64/amd64/identcpu.c
+++ b/sys/amd64/amd64/identcpu.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp
- * $Id: identcpu.c,v 1.23 1997/06/02 08:19:02 dfr Exp $
+ * $Id: identcpu.c,v 1.24 1997/06/02 18:55:44 peter Exp $
*/
#include "opt_cpu.h"
@@ -184,6 +184,12 @@ printcpuinfo(void)
case 0x510:
strcat(cpu_model, "K5 model 1");
break;
+ case 0x520:
+ strcat(cpu_model, "K5 PR166");
+ break;
+ case 0x530:
+ strcat(cpu_model, "K5 PR200");
+ break;
case 0x560:
strcat(cpu_model, "K6");
break;
diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c
index c09c857..03752c6 100644
--- a/sys/i386/i386/identcpu.c
+++ b/sys/i386/i386/identcpu.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp
- * $Id: identcpu.c,v 1.23 1997/06/02 08:19:02 dfr Exp $
+ * $Id: identcpu.c,v 1.24 1997/06/02 18:55:44 peter Exp $
*/
#include "opt_cpu.h"
@@ -184,6 +184,12 @@ printcpuinfo(void)
case 0x510:
strcat(cpu_model, "K5 model 1");
break;
+ case 0x520:
+ strcat(cpu_model, "K5 PR166");
+ break;
+ case 0x530:
+ strcat(cpu_model, "K5 PR200");
+ break;
case 0x560:
strcat(cpu_model, "K6");
break;
OpenPOWER on IntegriCloud