nextcons.c revision 1.5 1 1.5 mycroft /* $NetBSD: nextcons.c,v 1.5 2002/09/11 07:06:16 mycroft 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.4 mycroft #include <machine/bus.h>
47 1.1 dbj #include <machine/cpu.h>
48 1.1 dbj #include <machine/intr.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.4 mycroft
54 1.4 mycroft #include <next68k/dev/intiovar.h>
55 1.1 dbj #include <next68k/dev/nextdisplayvar.h>
56 1.1 dbj #include <next68k/dev/nextkbdvar.h>
57 1.1 dbj
58 1.2 bad #include <next68k/next68k/nextrom.h>
59 1.2 bad
60 1.1 dbj void nextcnprobe __P((struct consdev *));
61 1.1 dbj void nextcninit __P((struct consdev *));
62 1.1 dbj int nextcngetc __P((dev_t));
63 1.1 dbj void nextcnputc __P((dev_t, int));
64 1.1 dbj void nextcnpollc __P((dev_t, int));
65 1.1 dbj
66 1.1 dbj
67 1.1 dbj void
68 1.1 dbj nextcnprobe(struct consdev *cp)
69 1.1 dbj {
70 1.2 bad
71 1.2 bad if ((rom_machine_type == NeXT_WARP9)
72 1.3 deberg || (rom_machine_type == NeXT_X15)
73 1.3 deberg || (rom_machine_type == NeXT_WARP9C)
74 1.5 mycroft || (rom_machine_type == NeXT_TURBO_MONO)
75 1.3 deberg || (rom_machine_type == NeXT_TURBO_COLOR))
76 1.2 bad cp->cn_pri = CN_INTERNAL;
77 1.2 bad else
78 1.2 bad cp->cn_pri = CN_DEAD;
79 1.2 bad
80 1.1 dbj cp->cn_dev = NODEV;
81 1.1 dbj }
82 1.1 dbj
83 1.1 dbj void
84 1.1 dbj nextcninit(struct consdev *cp)
85 1.1 dbj {
86 1.1 dbj nextkbd_cnattach(NEXT68K_INTIO_BUS_SPACE);
87 1.1 dbj nextdisplay_cnattach();
88 1.1 dbj }
89 1.1 dbj
90 1.1 dbj int
91 1.1 dbj nextcngetc (dev_t dev)
92 1.1 dbj {
93 1.1 dbj return wskbd_cngetc(dev);
94 1.1 dbj }
95 1.1 dbj
96 1.1 dbj void
97 1.1 dbj nextcnputc(dev_t dev, int c)
98 1.1 dbj {
99 1.1 dbj wsdisplay_cnputc(dev,c);
100 1.1 dbj }
101 1.1 dbj
102 1.1 dbj void
103 1.1 dbj nextcnpollc(dev_t dev, int on)
104 1.1 dbj {
105 1.1 dbj wskbd_cnpollc(dev,on);
106 1.1 dbj }
107