summaryrefslogtreecommitdiffstats
path: root/sys/alpha
diff options
context:
space:
mode:
authorgallatin <gallatin@FreeBSD.org>2001-10-20 01:27:23 +0000
committergallatin <gallatin@FreeBSD.org>2001-10-20 01:27:23 +0000
commit60a8e7b108b9c306d1e884e73d6836c508fabd79 (patch)
treea830c54f919ce62312eaa08c76bc424ccbb578d2 /sys/alpha
parent5eebcc2012bc54d4b3406751b23d1a6129d07123 (diff)
downloadFreeBSD-src-60a8e7b108b9c306d1e884e73d6836c508fabd79.zip
FreeBSD-src-60a8e7b108b9c306d1e884e73d6836c508fabd79.tar.gz
apparently EV5 2x00s have their t2 CSRs where I'd expect to find
them on a 2100A Thanks to Tyler Willingham <ze_willow@yahoo.com> for letting me test this on his AS2000
Diffstat (limited to 'sys/alpha')
-rw-r--r--sys/alpha/alpha/dec_2100_a500.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/alpha/alpha/dec_2100_a500.c b/sys/alpha/alpha/dec_2100_a500.c
index d14af4e..1cc80e9 100644
--- a/sys/alpha/alpha/dec_2100_a500.c
+++ b/sys/alpha/alpha/dec_2100_a500.c
@@ -64,7 +64,10 @@ dec_2100_a500_init(cputype)
* See if we're a `Sable' or a `Lynx'.
*/
if (cputype == ST_DEC_2100_A500) {
- sable_lynx_base = SABLE_BASE;
+ if (alpha_implver() == ALPHA_IMPLVER_EV5)
+ sable_lynx_base = LYNX_BASE;
+ else
+ sable_lynx_base = SABLE_BASE;
platform.family = "DEC AlphaServer 2100";
} else if (cputype == ST_DEC_2100A_A500) {
sable_lynx_base = LYNX_BASE;
OpenPOWER on IntegriCloud