summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordim <dim@openbsd.org>2006-11-05 15:10:46 +0000
committerdim <dim@openbsd.org>2006-11-05 15:10:46 +0000
commit83d19c45a2847e82acd04d60040189866fb1a919 (patch)
treec28564efa8a763b79e3eba7641a907f1c4cabb06
parentDo not enable hardware cursor in the Brooktree DAC on the 8bpp model as well (diff)
downloadwireguard-openbsd-83d19c45a2847e82acd04d60040189866fb1a919.tar.xz
wireguard-openbsd-83d19c45a2847e82acd04d60040189866fb1a919.zip
Add deduced power state table for 1.00 GHz VIA Eden 90nm 'Esther'.
Tested & confirmed by Greg Mortensen, thevision at pobox.com
-rw-r--r--sys/arch/i386/i386/est.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/est.c b/sys/arch/i386/i386/est.c
index 2cd33a9515a..e45b758ceb6 100644
--- a/sys/arch/i386/i386/est.c
+++ b/sys/arch/i386/i386/est.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: est.c,v 1.21 2006/10/19 10:55:56 tom Exp $ */
+/* $OpenBSD: est.c,v 1.22 2006/11/05 15:10:46 dim Exp $ */
/*
* Copyright (c) 2003 Michael Eriksson.
* All rights reserved.
@@ -838,6 +838,14 @@ static const u_int16_t C7M_795[] = {
ID16( 533, 844, BUS133),
};
+/* 1.00GHz VIA Eden 90nm 'Esther' */
+static const u_int16_t eden90_1000[] = {
+ ID16(1000, 844, BUS100),
+ ID16( 800, 844, BUS100),
+ ID16( 600, 844, BUS100),
+ ID16( 400, 844, BUS100),
+};
+
struct fqlist {
int vendor : 5;
unsigned bus_clk : 1;
@@ -931,6 +939,8 @@ static const struct fqlist est_cpus[] = {
ENTRY(VIA, BUS133, C7M_785),
ENTRY(VIA, BUS100, C7M_794),
ENTRY(VIA, BUS133, C7M_795),
+
+ ENTRY(VIA, BUS100, eden90_1000),
};