Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/vax/vax VAX 4000/200 support. From Michael Kukat.



details:   https://anonhg.NetBSD.org/src/rev/39c7fb861d45
branches:  trunk
changeset: 485899:39c7fb861d45
user:      ragge <ragge%NetBSD.org@localhost>
date:      Mon May 08 17:53:24 2000 +0000

description:
VAX 4000/200 support. From Michael Kukat.

diffstat:

 sys/arch/vax/vax/conf.c    |  7 ++++---
 sys/arch/vax/vax/findcpu.c |  5 +++--
 sys/arch/vax/vax/gencons.c |  3 ++-
 3 files changed, 9 insertions(+), 6 deletions(-)

diffs (64 lines):

diff -r 4368ca47d72b -r 39c7fb861d45 sys/arch/vax/vax/conf.c
--- a/sys/arch/vax/vax/conf.c   Mon May 08 17:49:07 2000 +0000
+++ b/sys/arch/vax/vax/conf.c   Mon May 08 17:53:24 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.45 2000/01/17 04:55:25 matt Exp $   */
+/*     $NetBSD: conf.c,v 1.46 2000/05/08 17:53:24 ragge Exp $  */
 
 /*-
  * Copyright (c) 1982, 1986 The Regents of the University of California.
@@ -185,13 +185,14 @@
 #include "smg.h"
 
 struct consdev constab[]={
-#if VAX8600 || VAX8200 || VAX780 || VAX750 || VAX650 || VAX630 || VAX670
+#if VAX8600 || VAX8200 || VAX780 || VAX750 || VAX650 || VAX630 || VAX660 || \
+       VAX670 || VAX680
 #define NGEN   1
        cons_init(gen), /* Generic console type; mtpr/mfpr */
 #else
 #define NGEN   0
 #endif
-#if VAX410 || VAX43 || VAX46 || VAX48 || VAX49
+#if VAX410 || VAX43 || VAX46 || VAX48 || VAX49 || VAX53
        cons_init(dz),  /* DZ11-like serial console on VAXstations */
 #endif
 #if VAX650 || VAX630
diff -r 4368ca47d72b -r 39c7fb861d45 sys/arch/vax/vax/findcpu.c
--- a/sys/arch/vax/vax/findcpu.c        Mon May 08 17:49:07 2000 +0000
+++ b/sys/arch/vax/vax/findcpu.c        Mon May 08 17:53:24 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: findcpu.c,v 1.6 1999/12/11 17:55:13 ragge Exp $        */
+/*     $NetBSD: findcpu.c,v 1.7 2000/05/08 17:53:24 ragge Exp $        */
 /*
  * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -104,9 +104,10 @@
                case VAX_BTYP_670:
                case VAX_BTYP_660:
                case VAX_BTYP_60:
-               case VAX_BTYP_69D:
+               case VAX_BTYP_680:
                case VAX_BTYP_630:
                case VAX_BTYP_650:
+               case VAX_BTYP_53:
                        vax_bustype = VAX_IBUS;
                        break;
 
diff -r 4368ca47d72b -r 39c7fb861d45 sys/arch/vax/vax/gencons.c
--- a/sys/arch/vax/vax/gencons.c        Mon May 08 17:49:07 2000 +0000
+++ b/sys/arch/vax/vax/gencons.c        Mon May 08 17:53:24 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: gencons.c,v 1.22 2000/01/24 02:40:33 matt Exp $        */
+/*     $NetBSD: gencons.c,v 1.23 2000/05/08 17:53:24 ragge Exp $       */
 
 /*
  * Copyright (c) 1994 Gordon W. Ross
@@ -272,6 +272,7 @@
 {
        if ((vax_cputype < VAX_TYP_UV1) || /* All older has MTPR console */
            (vax_boardtype == VAX_BTYP_630) ||
+           (vax_boardtype == VAX_BTYP_660) ||
            (vax_boardtype == VAX_BTYP_670) ||
            (vax_boardtype == VAX_BTYP_650)) {
                cndev->cn_dev = makedev(25, 0);



Home | Main Index | Thread Index | Old Index