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 Wada Keiji (PR kern/32418): Support for t...



details:   https://anonhg.NetBSD.org/src/rev/68c5d436f1a2
branches:  trunk
changeset: 586763:68c5d436f1a2
user:      xtraeme <xtraeme%NetBSD.org@localhost>
date:      Sat Dec 31 09:52:46 2005 +0000

description:
Wada Keiji (PR kern/32418): Support for the Pentium M 770.

diffstat:

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

diffs (45 lines):

diff -r edb927e7790e -r 68c5d436f1a2 sys/arch/i386/i386/est.c
--- a/sys/arch/i386/i386/est.c  Sat Dec 31 08:58:50 2005 +0000
+++ b/sys/arch/i386/i386/est.c  Sat Dec 31 09:52:46 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: est.c,v 1.12 2005/12/26 19:23:59 perry Exp $   */
+/*     $NetBSD: est.c,v 1.13 2005/12/31 09:52:46 xtraeme Exp $ */
 /*
  * Copyright (c) 2003 Michael Eriksson.
  * All rights reserved.
@@ -84,7 +84,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: est.c,v 1.12 2005/12/26 19:23:59 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: est.c,v 1.13 2005/12/31 09:52:46 xtraeme Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -307,6 +307,18 @@
        {  600,  988 }
 };
 
+/* Intel Pentium M processor 770 2.13 GHz */
+static const struct fq_info pentium_m_n770[] = {
+       { 2130, 1551 },
+       { 1800, 1429 },
+       { 1600, 1356 },
+       { 1400, 1180 },
+       { 1200, 1132 },
+       { 1000, 1084 },
+       {  800, 1036 },
+       {  600, 988 }
+};
+
 struct fqlist {
        const char *brand_tag;
        size_t tablec;
@@ -340,6 +352,7 @@
        ENTRY("1.80", pentium_m_n745),
        ENTRY("2.00", pentium_m_n755),
        ENTRY("2.10", pentium_m_n765),
+       ENTRY("2.13", pentium_m_n770),
        ENTRY("1.00", pentium_m_n723),
        ENTRY("1.10", pentium_m_n733),
        ENTRY("1.40", pentium_m_n738),



Home | Main Index | Thread Index | Old Index