summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2005-10-21 19:34:35 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2005-10-21 19:34:35 +0000
commitbb82df5fbd8018a6d0c3fc7ca256d7d4f9d912b0 (patch)
tree92ada0743d1951885be7ae72eb45a64ed20cbe8f /sys/arch
parentf03881052695cd865e0fa7559dce85d675435856 (diff)
amd elan is not a pentium, it's i486, so don't touch pentium_mhz
varibale, it's used by microtime to check if we're running on a pentium cpu (which has rdtsc instruction). fixes pr 4568. tested by oc@symacx.com. ok tedu@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/pci/elan520.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/elan520.c b/sys/arch/i386/pci/elan520.c
index db57f43f30d..c13a8d8a7a9 100644
--- a/sys/arch/i386/pci/elan520.c
+++ b/sys/arch/i386/pci/elan520.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: elan520.c,v 1.10 2004/06/09 11:17:59 djm Exp $ */
+/* $OpenBSD: elan520.c,v 1.11 2005/10/21 19:34:34 grange Exp $ */
/* $NetBSD: elan520.c,v 1.4 2002/10/02 05:47:15 thorpej Exp $ */
/*-
@@ -72,6 +72,7 @@ int elansc_match(struct device *, void *, void *);
void elansc_attach(struct device *, struct device *, void *);
void elansc_update_cpuspeed(void);
int elansc_setperf(int);
+int elansc_cpuspeed(int *);
void elansc_wdogctl(struct elansc_softc *, int, uint16_t);
#define elansc_wdogctl_reset(sc) elansc_wdogctl(sc, 1, 0)
@@ -90,6 +91,8 @@ struct cfdriver elansc_cd = {
NULL, "elansc", DV_DULL
};
+static int cpuspeed;
+
int
elansc_match(struct device *parent, void *match, void *aux)
{
@@ -159,6 +162,8 @@ elansc_attach(struct device *parent, struct device *self, void *aux)
wdog_register(sc, elansc_wdogctl_cb);
elansc = sc;
cpu_setperf = elansc_setperf;
+ cpu_cpuspeed = elansc_cpuspeed;
+ elansc_update_cpuspeed();
/* Initialize GPIO pins array */
for (pin = 0; pin < ELANSC_PIO_NPINS; pin++) {
@@ -277,7 +282,7 @@ elansc_update_cpuspeed(void)
cpuctl = bus_space_read_1(elansc->sc_memt, elansc->sc_memh,
MMCR_CPUCTL);
#ifdef I586_CPU
- pentium_mhz = elansc_mhz[cpuctl & CPUCTL_CPU_CLK_SPD_MASK];
+ cpuspeed = elansc_mhz[cpuctl & CPUCTL_CPU_CLK_SPD_MASK];
#endif
}
@@ -308,6 +313,13 @@ elansc_setperf(int level)
}
int
+elansc_cpuspeed(int *freq)
+{
+ *freq = cpuspeed;
+ return (0);
+}
+
+int
elansc_gpio_pin_read(void *arg, int pin)
{
struct elansc_softc *sc = arg;