diff options
author | Dimitry Andric <dim@cvs.openbsd.org> | 2006-11-05 15:10:47 +0000 |
---|---|---|
committer | Dimitry Andric <dim@cvs.openbsd.org> | 2006-11-05 15:10:47 +0000 |
commit | 729c7bbd32e333347f858c9992ea85ef64089484 (patch) | |
tree | b79dcd6f7db40bb18cbc44b6ca658f517c0ff50f | |
parent | 837f81014a44cb5f0dbe39147d6e38d2dd75fcda (diff) |
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.c | 12 |
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), }; |