diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-02 14:38:43 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-02 14:38:43 +0000 |
commit | f20e35aa3539cce62847eeb93380ffd8bbe1a0d1 (patch) | |
tree | 14729511976e467486e5dbe1c865fd4b2ed8d0a7 /sys | |
parent | 8dc0e770f13b570c542155aad03edc992c9e8fd7 (diff) |
Fun with the BUG:
- add the board's suffix to the machine description if there is one;
- recognize BUG version < 5 on MVME188, which don't provide a CNFG block.
in this case we'll assume 20MHz for now, until we can parse the ENV data block
correctly...
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mvme88k/include/prom.h | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/mvme88k/machdep.c | 51 |
2 files changed, 40 insertions, 15 deletions
diff --git a/sys/arch/mvme88k/include/prom.h b/sys/arch/mvme88k/include/prom.h index 8f8f7b3ab2f..62b97c577b2 100644 --- a/sys/arch/mvme88k/include/prom.h +++ b/sys/arch/mvme88k/include/prom.h @@ -1,4 +1,4 @@ -/* $OpenBSD: prom.h,v 1.13 2004/01/26 19:24:03 miod Exp $ */ +/* $OpenBSD: prom.h,v 1.14 2004/08/02 14:38:40 miod Exp $ */ /* * Copyright (c) 1998 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -112,7 +112,7 @@ struct mvmeprom_brdid { u_short size; u_short rsv1; u_short model; - u_short suffix; + u_char suffix[2]; u_short options; u_char family; u_char cpu; diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c index 6190886ce02..4f92e02a7f7 100644 --- a/sys/arch/mvme88k/mvme88k/machdep.c +++ b/sys/arch/mvme88k/mvme88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.153 2004/08/02 08:35:00 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.154 2004/08/02 14:38:42 miod Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -126,7 +126,7 @@ void consinit(void); vaddr_t size_memory(void); vaddr_t memsize187(void); vaddr_t memsize188(void); -int getcpuspeed(void); +int getcpuspeed(struct mvmeprom_brdid *); void identifycpu(void); void save_u_area(struct proc *, vaddr_t); void load_u_area(struct proc *); @@ -392,16 +392,13 @@ size_memory() #endif int -getcpuspeed() +getcpuspeed(struct mvmeprom_brdid *brdid) { - struct mvmeprom_brdid brdid; int speed = 0; - int i, c; - - bugbrdid(&brdid); + u_int i, c; for (i = 0; i < 4; i++) { - c = (unsigned char)brdid.speed[i]; + c = (u_int)brdid->speed[i]; if (c == ' ') c = '0'; else if (c > '9' || c < '0') { @@ -423,9 +420,19 @@ getcpuspeed() #endif #ifdef MVME188 case BRD_188: - if (speed == 20 || speed == 25) - return speed; - speed = 25; + /* + * If BUG version prior to 5.x, there is no CNFG block and + * speed can be found in the environment. + * XXX We don't process ENV data yet - assume 20MHz in this + * case. + */ + if ((u_int)brdid->rev < 0x50) { + speed = 20; + } else { + if (speed == 20 || speed == 25) + return speed; + speed = 25; + } break; #endif #ifdef MVME197 @@ -451,9 +458,27 @@ getcpuspeed() void identifycpu() { - cpuspeed = getcpuspeed(); + struct mvmeprom_brdid brdid; + char suffix[4]; + u_int i; + + bzero(&brdid, sizeof(brdid)); + bugbrdid(&brdid); + + cpuspeed = getcpuspeed(&brdid); + + i = 0; + if (brdid.suffix[0] >= ' ' && brdid.suffix[0] < 0x7f) { + if (brdid.suffix[0] != '-') + suffix[i++] = '-'; + suffix[i++] = brdid.suffix[0]; + } + if (brdid.suffix[1] >= ' ' && brdid.suffix[1] < 0x7f) + suffix[i++] = brdid.suffix[1]; + suffix[i++] = '\0'; + snprintf(cpu_model, sizeof cpu_model, - "Motorola MVME%x, %dMHz", brdtyp, cpuspeed); + "Motorola MVME%x%s, %dMHz", brdtyp, suffix, cpuspeed); } /* |