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