Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/i386 PR/28773: Takahiro Kambe: Support for new...



details:   https://anonhg.NetBSD.org/src/rev/98a93c8f1eb5
branches:  trunk
changeset: 572210:98a93c8f1eb5
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Dec 24 17:37:43 2004 +0000

description:
PR/28773: Takahiro Kambe: Support for newer cpu's in enhanced speedstep

diffstat:

 sys/arch/i386/i386/est.c |  36 ++++++++++++++++++++++++++++++++++--
 1 files changed, 34 insertions(+), 2 deletions(-)

diffs (64 lines):

diff -r fc1e8d35b619 -r 98a93c8f1eb5 sys/arch/i386/i386/est.c
--- a/sys/arch/i386/i386/est.c  Fri Dec 24 16:17:27 2004 +0000
+++ b/sys/arch/i386/i386/est.c  Fri Dec 24 17:37:43 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: est.c,v 1.5 2004/10/25 15:42:24 hannken Exp $  */
+/*     $NetBSD: est.c,v 1.6 2004/12/24 17:37:43 christos Exp $ */
 /*
  * Copyright (c) 2003 Michael Eriksson.
  * All rights reserved.
@@ -81,7 +81,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: est.c,v 1.5 2004/10/25 15:42:24 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: est.c,v 1.6 2004/12/24 17:37:43 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -249,6 +249,35 @@
        {  600,  988 }
 };
 
+/* Intel Pentium M processor 723 1.0 GHz */
+static const struct fq_info pentium_m_n723[] = {
+       { 1000, 940 },
+       {  900, 908 },
+       {  800, 876 },
+       {  600, 812 }
+};
+
+/* Intel Pentium M processor 733 1.1 GHz */
+static const struct fq_info pentium_m_n733[] = {
+       { 1100, 940 },
+       { 1000, 920 },
+       {  900, 892 },
+       {  800, 876 },
+       {  600, 812 }
+};
+
+/* Intel Pentium M processor 738 1.4 GHz */
+static const struct fq_info pentium_m_n738[] = {
+       { 1400, 1116 },
+       { 1300, 1116 },
+       { 1200, 1100 },
+       { 1100, 1068 },
+       { 1000, 1052 },
+       {  900, 1036 },
+       {  800, 1020 },
+       {  600,  988 }
+};
+
 struct fqlist {
        const char *brand_tag;
        size_t tablec;
@@ -275,6 +304,9 @@
        ENTRY("1.80", pentium_m_n745),
        ENTRY("2.00", pentium_m_n755),
        ENTRY("2.10", pentium_m_n765),
+       ENTRY("1.00", pentium_m_n723),
+       ENTRY("1.10", pentium_m_n733),
+       ENTRY("1.40", pentium_m_n738),
 };
 #undef ENTRY
 



Home | Main Index | Thread Index | Old Index