xref: /freebsd/sys/isa/syscons_isa.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*-
2  * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer as
10  *    the first lines of this file unmodified.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #include "opt_syscons.h"
30 
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/module.h>
35 #include <sys/bus.h>
36 #include <sys/cons.h>
37 #include <sys/kbio.h>
38 #include <sys/consio.h>
39 
40 
41 #ifdef __i386__
42 
43 #include <machine/clock.h>
44 #include <machine/md_var.h>
45 #include <machine/pc/bios.h>
46 
47 #include <vm/vm.h>
48 #include <vm/pmap.h>
49 
50 #include <i386/isa/timerreg.h>
51 
52 #define BIOS_CLKED	(1 << 6)
53 #define BIOS_NLKED	(1 << 5)
54 #define BIOS_SLKED	(1 << 4)
55 #define BIOS_ALKED	0
56 
57 #endif /* __i386__ */
58 
59 #include <dev/syscons/syscons.h>
60 
61 #include <isa/isareg.h>
62 #include <isa/isavar.h>
63 
64 static devclass_t	sc_devclass;
65 
66 static sc_softc_t main_softc;
67 
68 static void
69 scidentify (driver_t *driver, device_t parent)
70 {
71 	BUS_ADD_CHILD(parent, ISA_ORDER_SPECULATIVE, "sc", 0);
72 }
73 
74 static int
75 scprobe(device_t dev)
76 {
77 	/* No pnp support */
78 	if (isa_get_vendorid(dev))
79 		return (ENXIO);
80 
81 	device_set_desc(dev, "System console");
82 	return sc_probe_unit(device_get_unit(dev), device_get_flags(dev));
83 }
84 
85 static int
86 scattach(device_t dev)
87 {
88 	return sc_attach_unit(device_get_unit(dev), device_get_flags(dev));
89 }
90 
91 int
92 sc_max_unit(void)
93 {
94 	return devclass_get_maxunit(sc_devclass);
95 }
96 
97 sc_softc_t
98 *sc_get_softc(int unit, int flags)
99 {
100 	sc_softc_t *sc;
101 
102 	if (unit < 0)
103 		return NULL;
104 	if (flags & SC_KERNEL_CONSOLE) {
105 		/* FIXME: clear if it is wired to another unit! */
106 		sc = &main_softc;
107 	} else {
108 	        sc = (sc_softc_t *)device_get_softc(devclass_get_device(sc_devclass, unit));
109 		if (sc == NULL)
110 			return NULL;
111 	}
112 	sc->unit = unit;
113 	if (!(sc->flags & SC_INIT_DONE)) {
114 		sc->keyboard = -1;
115 		sc->adapter = -1;
116 		sc->cursor_char = SC_CURSOR_CHAR;
117 		sc->mouse_char = SC_MOUSE_CHAR;
118 	}
119 	return sc;
120 }
121 
122 sc_softc_t
123 *sc_find_softc(struct video_adapter *adp, struct keyboard *kbd)
124 {
125 	sc_softc_t *sc;
126 	int units;
127 	int i;
128 
129 	sc = &main_softc;
130 	if (((adp == NULL) || (adp == sc->adp))
131 	    && ((kbd == NULL) || (kbd == sc->kbd)))
132 		return sc;
133 	units = devclass_get_maxunit(sc_devclass);
134 	for (i = 0; i < units; ++i) {
135 	        sc = (sc_softc_t *)device_get_softc(devclass_get_device(sc_devclass, i));
136 		if (sc == NULL)
137 			continue;
138 		if (((adp == NULL) || (adp == sc->adp))
139 		    && ((kbd == NULL) || (kbd == sc->kbd)))
140 			return sc;
141 	}
142 	return NULL;
143 }
144 
145 int
146 sc_get_cons_priority(int *unit, int *flags)
147 {
148 	int disabled;
149 	const char *at;
150 	int u, f;
151 
152 	*unit = -1;
153 	for (u = 0; u < 16; u++) {
154 		if ((resource_int_value(SC_DRIVER_NAME, u, "disabled",
155 					&disabled) == 0) && disabled)
156 			continue;
157 		if (resource_string_value(SC_DRIVER_NAME, u, "at", &at) != 0)
158 			continue;
159 		if (resource_int_value(SC_DRIVER_NAME, u, "flags", &f) != 0)
160 			f = 0;
161 		if (f & SC_KERNEL_CONSOLE) {
162 			/* the user designates this unit to be the console */
163 			*unit = u;
164 			*flags = f;
165 			break;
166 		}
167 		if (*unit < 0) {
168 			/* ...otherwise remember the first found unit */
169 			*unit = u;
170 			*flags = f;
171 		}
172 	}
173 	if (*unit < 0)
174 		return CN_DEAD;
175 #if 0
176 	return ((*flags & SC_KERNEL_CONSOLE) ? CN_INTERNAL : CN_NORMAL);
177 #endif
178 	return CN_INTERNAL;
179 }
180 
181 void
182 sc_get_bios_values(bios_values_t *values)
183 {
184 #ifdef __i386__
185 	u_int8_t shift;
186 
187 	values->cursor_start = *(u_int8_t *)BIOS_PADDRTOVADDR(0x461);
188 	values->cursor_end = *(u_int8_t *)BIOS_PADDRTOVADDR(0x460);
189 	shift = *(u_int8_t *)BIOS_PADDRTOVADDR(0x417);
190 	values->shift_state = ((shift & BIOS_CLKED) ? CLKED : 0)
191 			       | ((shift & BIOS_NLKED) ? NLKED : 0)
192 			       | ((shift & BIOS_SLKED) ? SLKED : 0)
193 			       | ((shift & BIOS_ALKED) ? ALKED : 0);
194 	values->bell_pitch = BELL_PITCH;
195 #else /* !__i386__ */
196 	values->cursor_start = 0;
197 	values->cursor_end = 32;
198 	values->shift_state = 0;
199 	values->bell_pitch = BELL_PITCH;
200 #endif /* __i386__ */
201 }
202 
203 int
204 sc_tone(int herz)
205 {
206 #ifdef __i386__
207 	int pitch;
208 
209 	if (herz) {
210 		/* set command for counter 2, 2 byte write */
211 		if (acquire_timer2(TIMER_16BIT | TIMER_SQWAVE))
212 			return EBUSY;
213 		/* set pitch */
214 		pitch = timer_freq/herz;
215 		outb(TIMER_CNTR2, pitch);
216 		outb(TIMER_CNTR2, pitch >> 8);
217 		/* enable counter 2 output to speaker */
218 		outb(IO_PPI, inb(IO_PPI) | 3);
219 	} else {
220 		/* disable counter 2 output to speaker */
221 		outb(IO_PPI, inb(IO_PPI) & 0xFC);
222 		release_timer2();
223 	}
224 #endif /* __i386__ */
225 
226 	return 0;
227 }
228 
229 static device_method_t sc_methods[] = {
230 	DEVMETHOD(device_identify,	scidentify),
231 	DEVMETHOD(device_probe,         scprobe),
232 	DEVMETHOD(device_attach,        scattach),
233 	{ 0, 0 }
234 };
235 
236 static driver_t sc_driver = {
237 	SC_DRIVER_NAME,
238 	sc_methods,
239 	sizeof(sc_softc_t),
240 };
241 
242 DRIVER_MODULE(sc, isa, sc_driver, sc_devclass, 0, 0);
243