cninit.c revision 1.3 1 1.3 tv /* $NetBSD: cninit.c,v 1.3 1998/06/21 22:36:46 tv Exp $ */
2 1.1 mellon
3 1.1 mellon /*
4 1.1 mellon * Copyright (c) 1988 University of Utah.
5 1.1 mellon * Copyright (c) 1990, 1993
6 1.1 mellon * The Regents of the University of California. All rights reserved.
7 1.1 mellon *
8 1.1 mellon * This code is derived from software contributed to Berkeley by
9 1.1 mellon * the Systems Programming Group of the University of Utah Computer
10 1.1 mellon * Science Department.
11 1.1 mellon *
12 1.1 mellon * Redistribution and use in source and binary forms, with or without
13 1.1 mellon * modification, are permitted provided that the following conditions
14 1.1 mellon * are met:
15 1.1 mellon * 1. Redistributions of source code must retain the above copyright
16 1.1 mellon * notice, this list of conditions and the following disclaimer.
17 1.1 mellon * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 mellon * notice, this list of conditions and the following disclaimer in the
19 1.1 mellon * documentation and/or other materials provided with the distribution.
20 1.1 mellon * 3. All advertising materials mentioning features or use of this software
21 1.1 mellon * must display the following acknowledgement:
22 1.1 mellon * This product includes software developed by the University of
23 1.1 mellon * California, Berkeley and its contributors.
24 1.1 mellon * 4. Neither the name of the University nor the names of its contributors
25 1.1 mellon * may be used to endorse or promote products derived from this software
26 1.1 mellon * without specific prior written permission.
27 1.1 mellon *
28 1.1 mellon * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 mellon * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 mellon * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 mellon * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 mellon * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 mellon * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 mellon * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 mellon * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 mellon * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 mellon * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 mellon * SUCH DAMAGE.
39 1.1 mellon *
40 1.1 mellon * from: Utah $Hdr: cons.c 1.7 92/01/21$
41 1.1 mellon *
42 1.1 mellon * @(#)cons.c 8.2 (Berkeley) 1/12/94
43 1.1 mellon */
44 1.1 mellon
45 1.1 mellon #include <sys/param.h>
46 1.1 mellon #include <sys/proc.h>
47 1.1 mellon #include <sys/user.h>
48 1.1 mellon #include <sys/systm.h>
49 1.1 mellon #include <sys/buf.h>
50 1.1 mellon #include <sys/ioctl.h>
51 1.1 mellon #include <sys/tty.h>
52 1.1 mellon #include <sys/file.h>
53 1.1 mellon #include <sys/conf.h>
54 1.1 mellon #include <sys/vnode.h>
55 1.1 mellon
56 1.1 mellon #include <dev/cons.h>
57 1.1 mellon
58 1.1 mellon extern struct consdev constab[];
59 1.1 mellon
60 1.1 mellon extern struct consdev *cn_tab; /* physical console device info */
61 1.1 mellon
62 1.1 mellon void
63 1.1 mellon cninit()
64 1.1 mellon {
65 1.3 tv struct consdev *cp;
66 1.3 tv struct consdev *bestMatch;
67 1.3 tv
68 1.3 tv bestMatch = cn_tab = NULL;
69 1.1 mellon /*
70 1.1 mellon * Collect information about all possible consoles
71 1.1 mellon * and find the one with highest priority
72 1.1 mellon */
73 1.1 mellon for (cp = constab; cp->cn_probe; cp++) {
74 1.1 mellon (*cp->cn_probe)(cp);
75 1.1 mellon if (cp->cn_pri > CN_DEAD &&
76 1.3 tv (bestMatch == NULL || cp->cn_pri > bestMatch->cn_pri)) {
77 1.3 tv bestMatch = cp;
78 1.3 tv }
79 1.1 mellon }
80 1.1 mellon /*
81 1.1 mellon * No console, we can handle it
82 1.1 mellon */
83 1.3 tv if ((cp = bestMatch) == NULL)
84 1.1 mellon return;
85 1.1 mellon /*
86 1.1 mellon * Turn on console
87 1.1 mellon */
88 1.3 tv {
89 1.3 tv struct consdev *old_cn_tab = cn_tab;
90 1.3 tv
91 1.3 tv (*cp->cn_init)(cp);
92 1.3 tv /*
93 1.3 tv * Now let everyone know we have an active console they can
94 1.3 tv * use for diagnostics. If we use cn_tab in the search loop
95 1.3 tv * then interrupts from the ethernet at boot may cause system
96 1.3 tv * hang.
97 1.3 tv */
98 1.3 tv if (cn_tab == old_cn_tab)
99 1.3 tv cn_tab = bestMatch;
100 1.3 tv }
101 1.1 mellon }
102