diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-02-17 03:51:44 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-02-17 03:51:44 +0000 |
commit | 876a4cb8e57736b22cc8e3170d593e01911a5a7a (patch) | |
tree | f090fe04977cf14e155df0ed1615b7f4b48a60fa | |
parent | fb5a3fa6a2137d17687fbb8eb8e7abe371925a4b (diff) |
print pa-risc here as well, since, finally, cpu will have to print processor type
-rw-r--r-- | sys/arch/hppa/hppa/machdep.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c index e36b5e92fde..dcab7118d73 100644 --- a/sys/arch/hppa/hppa/machdep.c +++ b/sys/arch/hppa/hppa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.3 1999/01/04 13:48:16 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.4 1999/02/17 03:51:43 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -427,9 +427,16 @@ cpu_startup() for (bip = hppa_knownboards; bip->bi_id >= 0 && bip->bi_id != i; bip++); if (bip->bi_id >= 0) { + char *p; + switch(pdc_model.arch_rev) { + case 0: p = "1.0"; break; + case 4: p = "1.1"; break; + case 8: p = "2.0"; break; + default: p = "?.?"; break; + } /* my babe said: 6010, 481, 0, 0, 77b657b1, 0, 4 */ - sprintf(cpu_model, "HP9000/%s rev %x", - bip->bi_name, pdc_model.arch_rev); + sprintf(cpu_model, "HP9000/%s PA-RISC %s", + bip->bi_name, p); } else sprintf(cpu_model, "HP9000/(UNKNOWN %x)", i); printf("%s\n", cpu_model); @@ -821,8 +828,9 @@ bus_mem_add_mapping(bpa, size, cacheable, bshp) return 0; } +#if 0 void -bus_space_barrier(tag, h, off, l, op) +flush_cache(tag, h, off, l, op) bus_space_tag_t tag; bus_space_handle_t h; bus_addr_t off; @@ -843,6 +851,7 @@ bus_space_barrier(tag, h, off, l, op) sync_caches(); } } +#endif void boot(howto) |