Home | History | Annotate | Line # | Download | only in dev
nextcons.c revision 1.2.12.1
      1  1.2.12.1  deberg /*	$NetBSD: nextcons.c,v 1.2.12.1 2000/10/06 23:16:52 deberg Exp $	*/
      2       1.1     dbj 
      3       1.1     dbj /*
      4       1.1     dbj  * Copyright (c) 1999 Darrin B. Jewell
      5       1.1     dbj  * All rights reserved.
      6       1.1     dbj  *
      7       1.1     dbj  * Redistribution and use in source and binary forms, with or without
      8       1.1     dbj  * modification, are permitted provided that the following conditions
      9       1.1     dbj  * are met:
     10       1.1     dbj  * 1. Redistributions of source code must retain the above copyright
     11       1.1     dbj  *    notice, this list of conditions and the following disclaimer.
     12       1.1     dbj  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1     dbj  *    notice, this list of conditions and the following disclaimer in the
     14       1.1     dbj  *    documentation and/or other materials provided with the distribution.
     15       1.1     dbj  * 3. All advertising materials mentioning features or use of this software
     16       1.1     dbj  *    must display the following acknowledgement:
     17       1.1     dbj  *      This product includes software developed by Darrin B. Jewell
     18       1.1     dbj  * 4. The name of the author may not be used to endorse or promote products
     19       1.1     dbj  *    derived from this software without specific prior written permission
     20       1.1     dbj  *
     21       1.1     dbj  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1     dbj  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1     dbj  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1     dbj  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1     dbj  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1     dbj  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1     dbj  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1     dbj  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1     dbj  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1     dbj  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1     dbj  */
     32       1.1     dbj 
     33       1.1     dbj #include <sys/cdefs.h>
     34       1.1     dbj 
     35       1.1     dbj #include <sys/param.h>
     36       1.1     dbj #include <sys/systm.h>
     37       1.1     dbj #include <sys/kernel.h>
     38       1.1     dbj #include <sys/proc.h>
     39       1.1     dbj #include <sys/device.h>
     40       1.1     dbj #include <sys/malloc.h>
     41       1.1     dbj #include <sys/errno.h>
     42       1.1     dbj #include <sys/queue.h>
     43       1.1     dbj #include <sys/lock.h>
     44       1.1     dbj 
     45       1.1     dbj #include <machine/autoconf.h>
     46       1.1     dbj #include <machine/cpu.h>
     47       1.1     dbj #include <machine/intr.h>
     48       1.1     dbj #include <machine/bus.h>
     49       1.1     dbj 
     50       1.1     dbj #include <dev/cons.h>
     51       1.1     dbj #include <dev/wscons/wskbdvar.h>
     52       1.1     dbj #include <dev/wscons/wsdisplayvar.h>
     53       1.1     dbj #include <next68k/dev/nextdisplayvar.h>
     54       1.1     dbj #include <next68k/dev/nextkbdvar.h>
     55       1.1     dbj 
     56       1.2     bad #include <next68k/next68k/nextrom.h>
     57       1.2     bad 
     58       1.1     dbj void nextcnprobe __P((struct consdev *));
     59       1.1     dbj void nextcninit __P((struct consdev *));
     60       1.1     dbj int nextcngetc __P((dev_t));
     61       1.1     dbj void nextcnputc __P((dev_t, int));
     62       1.1     dbj void nextcnpollc __P((dev_t, int));
     63       1.1     dbj 
     64       1.1     dbj 
     65       1.1     dbj void
     66       1.1     dbj nextcnprobe(struct consdev *cp)
     67       1.1     dbj {
     68       1.2     bad 
     69       1.2     bad 	if ((rom_machine_type == NeXT_WARP9)
     70  1.2.12.1  deberg 	    || (rom_machine_type == NeXT_X15)
     71  1.2.12.1  deberg 	    || (rom_machine_type == NeXT_WARP9C)
     72  1.2.12.1  deberg 	    || (rom_machine_type == NeXT_TURBO_COLOR))
     73       1.2     bad 		cp->cn_pri = CN_INTERNAL;
     74       1.2     bad 	else
     75       1.2     bad 		cp->cn_pri = CN_DEAD;
     76       1.2     bad 
     77       1.1     dbj 	cp->cn_dev = NODEV;
     78       1.1     dbj }
     79       1.1     dbj 
     80       1.1     dbj void
     81       1.1     dbj nextcninit(struct consdev *cp)
     82       1.1     dbj {
     83       1.1     dbj 	nextkbd_cnattach(NEXT68K_INTIO_BUS_SPACE);
     84       1.1     dbj 	nextdisplay_cnattach();
     85       1.1     dbj }
     86       1.1     dbj 
     87       1.1     dbj int
     88       1.1     dbj nextcngetc (dev_t dev)
     89       1.1     dbj {
     90       1.1     dbj 	return wskbd_cngetc(dev);
     91       1.1     dbj }
     92       1.1     dbj 
     93       1.1     dbj void
     94       1.1     dbj nextcnputc(dev_t dev, int c)
     95       1.1     dbj {
     96       1.1     dbj 	wsdisplay_cnputc(dev,c);
     97       1.1     dbj }
     98       1.1     dbj 
     99       1.1     dbj void
    100       1.1     dbj nextcnpollc(dev_t dev, int on)
    101       1.1     dbj {
    102       1.1     dbj 	wskbd_cnpollc(dev,on);
    103       1.1     dbj }
    104