nextcons.c revision 1.7 1 1.6 lukem /* $NetBSD: nextcons.c,v 1.7 2005/01/19 01:58:21 chs 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.6 lukem
33 1.6 lukem #include <sys/cdefs.h>
34 1.6 lukem __KERNEL_RCSID(0, "$NetBSD: nextcons.c,v 1.7 2005/01/19 01:58:21 chs Exp $");
35 1.1 dbj
36 1.1 dbj #include <sys/cdefs.h>
37 1.1 dbj
38 1.1 dbj #include <sys/param.h>
39 1.1 dbj #include <sys/systm.h>
40 1.1 dbj #include <sys/kernel.h>
41 1.1 dbj #include <sys/proc.h>
42 1.1 dbj #include <sys/device.h>
43 1.1 dbj #include <sys/malloc.h>
44 1.1 dbj #include <sys/errno.h>
45 1.1 dbj #include <sys/queue.h>
46 1.1 dbj #include <sys/lock.h>
47 1.1 dbj
48 1.1 dbj #include <machine/autoconf.h>
49 1.4 mycroft #include <machine/bus.h>
50 1.1 dbj #include <machine/cpu.h>
51 1.1 dbj #include <machine/intr.h>
52 1.1 dbj
53 1.1 dbj #include <dev/cons.h>
54 1.1 dbj #include <dev/wscons/wskbdvar.h>
55 1.1 dbj #include <dev/wscons/wsdisplayvar.h>
56 1.4 mycroft
57 1.4 mycroft #include <next68k/dev/intiovar.h>
58 1.1 dbj #include <next68k/dev/nextdisplayvar.h>
59 1.1 dbj #include <next68k/dev/nextkbdvar.h>
60 1.1 dbj
61 1.2 bad #include <next68k/next68k/nextrom.h>
62 1.2 bad
63 1.7 chs void nextcnprobe(struct consdev *);
64 1.7 chs void nextcninit(struct consdev *);
65 1.7 chs int nextcngetc(dev_t);
66 1.7 chs void nextcnputc(dev_t, int);
67 1.7 chs void nextcnpollc(dev_t, int);
68 1.1 dbj
69 1.1 dbj
70 1.1 dbj void
71 1.1 dbj nextcnprobe(struct consdev *cp)
72 1.1 dbj {
73 1.2 bad
74 1.2 bad if ((rom_machine_type == NeXT_WARP9)
75 1.3 deberg || (rom_machine_type == NeXT_X15)
76 1.3 deberg || (rom_machine_type == NeXT_WARP9C)
77 1.5 mycroft || (rom_machine_type == NeXT_TURBO_MONO)
78 1.3 deberg || (rom_machine_type == NeXT_TURBO_COLOR))
79 1.2 bad cp->cn_pri = CN_INTERNAL;
80 1.2 bad else
81 1.2 bad cp->cn_pri = CN_DEAD;
82 1.2 bad
83 1.1 dbj cp->cn_dev = NODEV;
84 1.1 dbj }
85 1.1 dbj
86 1.1 dbj void
87 1.1 dbj nextcninit(struct consdev *cp)
88 1.1 dbj {
89 1.1 dbj nextkbd_cnattach(NEXT68K_INTIO_BUS_SPACE);
90 1.1 dbj nextdisplay_cnattach();
91 1.1 dbj }
92 1.1 dbj
93 1.1 dbj int
94 1.1 dbj nextcngetc (dev_t dev)
95 1.1 dbj {
96 1.1 dbj return wskbd_cngetc(dev);
97 1.1 dbj }
98 1.1 dbj
99 1.1 dbj void
100 1.1 dbj nextcnputc(dev_t dev, int c)
101 1.1 dbj {
102 1.1 dbj wsdisplay_cnputc(dev,c);
103 1.1 dbj }
104 1.1 dbj
105 1.1 dbj void
106 1.1 dbj nextcnpollc(dev_t dev, int on)
107 1.1 dbj {
108 1.1 dbj wskbd_cnpollc(dev,on);
109 1.1 dbj }
110