Home | History | Annotate | Line # | Download | only in dev
cninit.c revision 1.10.8.1
      1  1.10.8.1  bouyer /*	$NetBSD: cninit.c,v 1.10.8.1 2011/02/17 12:00:09 bouyer Exp $	*/
      2       1.1  mellon 
      3       1.1  mellon /*
      4  1.10.8.1  bouyer  * 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.5     agc  * 3. Neither the name of the University nor the names of its contributors
     21       1.5     agc  *    may be used to endorse or promote products derived from this software
     22       1.5     agc  *    without specific prior written permission.
     23       1.5     agc  *
     24       1.5     agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.5     agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.5     agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.5     agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.5     agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.5     agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.5     agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.5     agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.5     agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.5     agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.5     agc  * SUCH DAMAGE.
     35       1.5     agc  *
     36       1.5     agc  * from: Utah $Hdr: cons.c 1.7 92/01/21$
     37       1.5     agc  *
     38       1.5     agc  *	@(#)cons.c	8.2 (Berkeley) 1/12/94
     39       1.5     agc  */
     40       1.5     agc 
     41       1.4   lukem #include <sys/cdefs.h>
     42  1.10.8.1  bouyer __KERNEL_RCSID(0, "$NetBSD: cninit.c,v 1.10.8.1 2011/02/17 12:00:09 bouyer Exp $");
     43       1.1  mellon 
     44       1.1  mellon #include <sys/param.h>
     45       1.1  mellon #include <sys/proc.h>
     46       1.1  mellon #include <sys/systm.h>
     47       1.1  mellon #include <sys/buf.h>
     48       1.1  mellon #include <sys/ioctl.h>
     49       1.1  mellon #include <sys/tty.h>
     50       1.1  mellon #include <sys/file.h>
     51       1.1  mellon #include <sys/conf.h>
     52       1.1  mellon #include <sys/vnode.h>
     53       1.1  mellon 
     54       1.1  mellon #include <dev/cons.h>
     55       1.1  mellon 
     56       1.1  mellon void
     57       1.9    matt cninit(void)
     58       1.1  mellon {
     59       1.3      tv 	struct consdev *cp;
     60       1.3      tv 	struct consdev *bestMatch;
     61       1.7   perry 
     62       1.3      tv 	bestMatch = cn_tab = NULL;
     63       1.1  mellon 	/*
     64       1.1  mellon 	 * Collect information about all possible consoles
     65       1.1  mellon 	 * and find the one with highest priority
     66       1.1  mellon 	 */
     67       1.1  mellon 	for (cp = constab; cp->cn_probe; cp++) {
     68       1.1  mellon 		(*cp->cn_probe)(cp);
     69       1.1  mellon 		if (cp->cn_pri > CN_DEAD &&
     70       1.3      tv 		    (bestMatch == NULL || cp->cn_pri > bestMatch->cn_pri)) {
     71       1.3      tv 			bestMatch = cp;
     72       1.3      tv 		}
     73       1.1  mellon 	}
     74       1.1  mellon 	/*
     75       1.1  mellon 	 * No console, we can handle it
     76       1.1  mellon 	 */
     77       1.3      tv 	if ((cp = bestMatch) == NULL)
     78       1.1  mellon 		return;
     79       1.1  mellon 	/*
     80       1.1  mellon 	 * Turn on console
     81       1.1  mellon 	 */
     82       1.3      tv 	{
     83       1.3      tv 		struct consdev *old_cn_tab = cn_tab;
     84       1.3      tv 
     85       1.3      tv  		(*cp->cn_init)(cp);
     86       1.3      tv 		/*
     87       1.3      tv 		 * Now let everyone know we have an active console they can
     88       1.3      tv 		 * use for diagnostics. If we use cn_tab in the search loop
     89       1.3      tv 		 * then interrupts from the ethernet at boot may cause system
     90       1.3      tv 		 * hang.
     91       1.3      tv 		 */
     92       1.3      tv 		if (cn_tab == old_cn_tab)
     93       1.3      tv 			cn_tab = bestMatch;
     94       1.3      tv 	}
     95       1.1  mellon }
     96