cninit.c revision 1.3.26.1 1 1.3.26.1 nathanw /* $NetBSD: cninit.c,v 1.3.26.1 2001/11/14 19:13:41 nathanw 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.3.26.1 nathanw
45 1.3.26.1 nathanw #include <sys/cdefs.h>
46 1.3.26.1 nathanw __KERNEL_RCSID(0, "$NetBSD: cninit.c,v 1.3.26.1 2001/11/14 19:13:41 nathanw Exp $");
47 1.1 mellon
48 1.1 mellon #include <sys/param.h>
49 1.1 mellon #include <sys/proc.h>
50 1.1 mellon #include <sys/user.h>
51 1.1 mellon #include <sys/systm.h>
52 1.1 mellon #include <sys/buf.h>
53 1.1 mellon #include <sys/ioctl.h>
54 1.1 mellon #include <sys/tty.h>
55 1.1 mellon #include <sys/file.h>
56 1.1 mellon #include <sys/conf.h>
57 1.1 mellon #include <sys/vnode.h>
58 1.1 mellon
59 1.1 mellon #include <dev/cons.h>
60 1.1 mellon
61 1.1 mellon extern struct consdev constab[];
62 1.1 mellon
63 1.1 mellon extern struct consdev *cn_tab; /* physical console device info */
64 1.1 mellon
65 1.1 mellon void
66 1.1 mellon cninit()
67 1.1 mellon {
68 1.3 tv struct consdev *cp;
69 1.3 tv struct consdev *bestMatch;
70 1.3 tv
71 1.3 tv bestMatch = cn_tab = NULL;
72 1.1 mellon /*
73 1.1 mellon * Collect information about all possible consoles
74 1.1 mellon * and find the one with highest priority
75 1.1 mellon */
76 1.1 mellon for (cp = constab; cp->cn_probe; cp++) {
77 1.1 mellon (*cp->cn_probe)(cp);
78 1.1 mellon if (cp->cn_pri > CN_DEAD &&
79 1.3 tv (bestMatch == NULL || cp->cn_pri > bestMatch->cn_pri)) {
80 1.3 tv bestMatch = cp;
81 1.3 tv }
82 1.1 mellon }
83 1.1 mellon /*
84 1.1 mellon * No console, we can handle it
85 1.1 mellon */
86 1.3 tv if ((cp = bestMatch) == NULL)
87 1.1 mellon return;
88 1.1 mellon /*
89 1.1 mellon * Turn on console
90 1.1 mellon */
91 1.3 tv {
92 1.3 tv struct consdev *old_cn_tab = cn_tab;
93 1.3 tv
94 1.3 tv (*cp->cn_init)(cp);
95 1.3 tv /*
96 1.3 tv * Now let everyone know we have an active console they can
97 1.3 tv * use for diagnostics. If we use cn_tab in the search loop
98 1.3 tv * then interrupts from the ethernet at boot may cause system
99 1.3 tv * hang.
100 1.3 tv */
101 1.3 tv if (cn_tab == old_cn_tab)
102 1.3 tv cn_tab = bestMatch;
103 1.3 tv }
104 1.1 mellon }
105