nextcons.c revision 1.14 1 1.14 tsutsui /* $NetBSD: nextcons.c,v 1.14 2023/02/11 02:33:27 tsutsui 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 *
16 1.1 dbj * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 dbj * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 dbj * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 dbj * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 dbj * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 1.1 dbj * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 1.1 dbj * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 1.1 dbj * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 1.1 dbj * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 1.1 dbj * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 1.1 dbj */
27 1.6 lukem
28 1.6 lukem #include <sys/cdefs.h>
29 1.14 tsutsui __KERNEL_RCSID(0, "$NetBSD: nextcons.c,v 1.14 2023/02/11 02:33:27 tsutsui Exp $");
30 1.1 dbj
31 1.1 dbj #include <sys/param.h>
32 1.1 dbj #include <sys/systm.h>
33 1.1 dbj #include <sys/kernel.h>
34 1.1 dbj #include <sys/proc.h>
35 1.1 dbj #include <sys/device.h>
36 1.1 dbj #include <sys/malloc.h>
37 1.1 dbj #include <sys/errno.h>
38 1.1 dbj #include <sys/queue.h>
39 1.10 ad #include <sys/bus.h>
40 1.10 ad #include <sys/cpu.h>
41 1.10 ad #include <sys/intr.h>
42 1.1 dbj
43 1.1 dbj #include <machine/autoconf.h>
44 1.1 dbj
45 1.1 dbj #include <dev/cons.h>
46 1.1 dbj #include <dev/wscons/wskbdvar.h>
47 1.1 dbj #include <dev/wscons/wsdisplayvar.h>
48 1.4 mycroft
49 1.4 mycroft #include <next68k/dev/intiovar.h>
50 1.1 dbj #include <next68k/dev/nextdisplayvar.h>
51 1.1 dbj #include <next68k/dev/nextkbdvar.h>
52 1.1 dbj
53 1.2 bad #include <next68k/next68k/nextrom.h>
54 1.2 bad
55 1.7 chs void nextcnprobe(struct consdev *);
56 1.7 chs void nextcninit(struct consdev *);
57 1.7 chs int nextcngetc(dev_t);
58 1.7 chs void nextcnputc(dev_t, int);
59 1.7 chs void nextcnpollc(dev_t, int);
60 1.1 dbj
61 1.1 dbj
62 1.1 dbj void
63 1.1 dbj nextcnprobe(struct consdev *cp)
64 1.1 dbj {
65 1.2 bad
66 1.12 tsutsui if (rom_machine_type == NeXT_WARP9 ||
67 1.12 tsutsui rom_machine_type == NeXT_X15 ||
68 1.12 tsutsui rom_machine_type == NeXT_WARP9C ||
69 1.12 tsutsui rom_machine_type == NeXT_TURBO_MONO ||
70 1.14 tsutsui rom_machine_type == NeXT_TURBO_COLOR ||
71 1.14 tsutsui rom_machine_type == NeXT_CUBE_TURBO)
72 1.2 bad cp->cn_pri = CN_INTERNAL;
73 1.13 tsutsui else
74 1.2 bad cp->cn_pri = CN_DEAD;
75 1.2 bad
76 1.1 dbj cp->cn_dev = NODEV;
77 1.1 dbj }
78 1.1 dbj
79 1.1 dbj void
80 1.1 dbj nextcninit(struct consdev *cp)
81 1.1 dbj {
82 1.12 tsutsui
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.12 tsutsui
91 1.1 dbj return wskbd_cngetc(dev);
92 1.1 dbj }
93 1.1 dbj
94 1.1 dbj void
95 1.1 dbj nextcnputc(dev_t dev, int c)
96 1.1 dbj {
97 1.12 tsutsui
98 1.12 tsutsui wsdisplay_cnputc(dev,c);
99 1.1 dbj }
100 1.1 dbj
101 1.1 dbj void
102 1.1 dbj nextcnpollc(dev_t dev, int on)
103 1.1 dbj {
104 1.12 tsutsui
105 1.1 dbj wskbd_cnpollc(dev,on);
106 1.1 dbj }
107