pcppi.c revision 1.6 1 1.6 thorpej /* $NetBSD: pcppi.c,v 1.6 2002/01/07 21:47:12 thorpej Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1996 Carnegie-Mellon University.
5 1.1 drochner * All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Author: Chris G. Demetriou
8 1.1 drochner *
9 1.1 drochner * Permission to use, copy, modify and distribute this software and
10 1.1 drochner * its documentation is hereby granted, provided that both the copyright
11 1.1 drochner * notice and this permission notice appear in all copies of the
12 1.1 drochner * software, derivative works or modified versions, and any portions
13 1.1 drochner * thereof, and that both notices appear in supporting documentation.
14 1.1 drochner *
15 1.1 drochner * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 1.1 drochner * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17 1.1 drochner * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18 1.1 drochner *
19 1.1 drochner * Carnegie Mellon requests users of this software to return to
20 1.1 drochner *
21 1.1 drochner * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
22 1.1 drochner * School of Computer Science
23 1.1 drochner * Carnegie Mellon University
24 1.1 drochner * Pittsburgh PA 15213-3890
25 1.1 drochner *
26 1.1 drochner * any improvements or extensions that they make and grant Carnegie the
27 1.1 drochner * rights to redistribute these changes.
28 1.1 drochner */
29 1.5 lukem
30 1.5 lukem #include <sys/cdefs.h>
31 1.6 thorpej __KERNEL_RCSID(0, "$NetBSD: pcppi.c,v 1.6 2002/01/07 21:47:12 thorpej Exp $");
32 1.1 drochner
33 1.1 drochner #include <sys/param.h>
34 1.1 drochner #include <sys/systm.h>
35 1.4 thorpej #include <sys/callout.h>
36 1.1 drochner #include <sys/kernel.h>
37 1.1 drochner #include <sys/proc.h>
38 1.1 drochner #include <sys/device.h>
39 1.1 drochner #include <sys/errno.h>
40 1.1 drochner
41 1.1 drochner #include <machine/bus.h>
42 1.1 drochner
43 1.1 drochner #include <dev/isa/isareg.h>
44 1.1 drochner #include <dev/isa/isavar.h>
45 1.1 drochner #include <dev/isa/pcppireg.h>
46 1.1 drochner #include <dev/isa/pcppivar.h>
47 1.1 drochner
48 1.1 drochner #include <dev/ic/i8253reg.h>
49 1.1 drochner
50 1.2 thorpej #include "pckbd.h"
51 1.2 thorpej #if NPCKBD > 0
52 1.2 thorpej #include <dev/ic/pckbcvar.h>
53 1.2 thorpej #include <dev/pckbc/pckbdvar.h>
54 1.2 thorpej
55 1.3 thorpej void pcppi_pckbd_bell __P((void *, u_int, u_int, u_int, int));
56 1.2 thorpej #endif
57 1.2 thorpej
58 1.1 drochner struct pcppi_softc {
59 1.1 drochner struct device sc_dv;
60 1.1 drochner
61 1.1 drochner bus_space_tag_t sc_iot;
62 1.1 drochner bus_space_handle_t sc_ppi_ioh, sc_pit1_ioh;
63 1.1 drochner
64 1.4 thorpej struct callout sc_bell_ch;
65 1.4 thorpej
66 1.1 drochner int sc_bellactive, sc_bellpitch;
67 1.1 drochner int sc_slp;
68 1.2 thorpej int sc_timeout;
69 1.1 drochner };
70 1.1 drochner
71 1.1 drochner int pcppi_match __P((struct device *, struct cfdata *, void *));
72 1.1 drochner void pcppi_attach __P((struct device *, struct device *, void *));
73 1.1 drochner
74 1.1 drochner struct cfattach pcppi_ca = {
75 1.1 drochner sizeof(struct pcppi_softc), pcppi_match, pcppi_attach,
76 1.1 drochner };
77 1.1 drochner
78 1.1 drochner static void pcppi_bell_stop __P((void*));
79 1.1 drochner
80 1.1 drochner #define PCPPIPRI (PZERO - 1)
81 1.1 drochner
82 1.1 drochner int
83 1.1 drochner pcppi_match(parent, match, aux)
84 1.1 drochner struct device *parent;
85 1.1 drochner struct cfdata *match;
86 1.1 drochner void *aux;
87 1.1 drochner {
88 1.1 drochner struct isa_attach_args *ia = aux;
89 1.1 drochner bus_space_handle_t ppi_ioh, pit1_ioh;
90 1.1 drochner int have_pit1, have_ppi, rv;
91 1.1 drochner u_int8_t v, nv;
92 1.1 drochner
93 1.6 thorpej if (ISA_DIRECT_CONFIG(ia))
94 1.6 thorpej return (0);
95 1.6 thorpej
96 1.1 drochner /* If values are hardwired to something that they can't be, punt. */
97 1.6 thorpej if (ia->ia_nio < 1 ||
98 1.6 thorpej (ia->ia_io[0].ir_addr != ISACF_PORT_DEFAULT &&
99 1.6 thorpej ia->ia_io[0].ir_addr != IO_PPI))
100 1.6 thorpej return (0);
101 1.6 thorpej
102 1.6 thorpej if (ia->ia_niomem > 0 &&
103 1.6 thorpej (ia->ia_iomem[0].ir_addr != ISACF_IOMEM_DEFAULT))
104 1.6 thorpej return (0);
105 1.6 thorpej
106 1.6 thorpej if (ia->ia_nirq > 0 &&
107 1.6 thorpej (ia->ia_irq[0].ir_irq != ISACF_IRQ_DEFAULT))
108 1.6 thorpej return (0);
109 1.6 thorpej
110 1.6 thorpej if (ia->ia_ndrq > 0 &&
111 1.6 thorpej (ia->ia_drq[0].ir_drq != ISACF_DRQ_DEFAULT))
112 1.1 drochner return (0);
113 1.1 drochner
114 1.1 drochner rv = 0;
115 1.1 drochner have_pit1 = have_ppi = 0;
116 1.1 drochner
117 1.1 drochner if (bus_space_map(ia->ia_iot, IO_TIMER1, 4, 0, &pit1_ioh))
118 1.1 drochner goto lose;
119 1.1 drochner have_pit1 = 1;
120 1.1 drochner if (bus_space_map(ia->ia_iot, IO_PPI, 1, 0, &ppi_ioh))
121 1.1 drochner goto lose;
122 1.1 drochner have_ppi = 1;
123 1.1 drochner
124 1.1 drochner /*
125 1.1 drochner * Check for existence of PPI. Realistically, this is either going to
126 1.1 drochner * be here or nothing is going to be here.
127 1.1 drochner *
128 1.1 drochner * We don't want to have any chance of changing speaker output (which
129 1.1 drochner * this test might, if it crashes in the middle, or something;
130 1.1 drochner * normally it's be to quick to produce anthing audible), but
131 1.1 drochner * many "combo chip" mock-PPI's don't seem to support the top bit
132 1.1 drochner * of Port B as a settable bit. The bottom bit has to be settable,
133 1.1 drochner * since the speaker driver hardware still uses it.
134 1.1 drochner */
135 1.1 drochner v = bus_space_read_1(ia->ia_iot, ppi_ioh, 0); /* XXX */
136 1.1 drochner bus_space_write_1(ia->ia_iot, ppi_ioh, 0, v ^ 0x01); /* XXX */
137 1.1 drochner nv = bus_space_read_1(ia->ia_iot, ppi_ioh, 0); /* XXX */
138 1.1 drochner if (((nv ^ v) & 0x01) == 0x01)
139 1.1 drochner rv = 1;
140 1.1 drochner bus_space_write_1(ia->ia_iot, ppi_ioh, 0, v); /* XXX */
141 1.1 drochner nv = bus_space_read_1(ia->ia_iot, ppi_ioh, 0); /* XXX */
142 1.1 drochner if (((nv ^ v) & 0x01) != 0x00) {
143 1.1 drochner rv = 0;
144 1.1 drochner goto lose;
145 1.1 drochner }
146 1.1 drochner
147 1.1 drochner /*
148 1.1 drochner * We assume that the programmable interval timer is there.
149 1.1 drochner */
150 1.1 drochner
151 1.1 drochner lose:
152 1.1 drochner if (have_pit1)
153 1.1 drochner bus_space_unmap(ia->ia_iot, pit1_ioh, 4);
154 1.1 drochner if (have_ppi)
155 1.1 drochner bus_space_unmap(ia->ia_iot, ppi_ioh, 1);
156 1.1 drochner if (rv) {
157 1.6 thorpej ia->ia_io[0].ir_addr = IO_PPI;
158 1.6 thorpej ia->ia_io[0].ir_size = 1;
159 1.6 thorpej ia->ia_nio = 1;
160 1.6 thorpej
161 1.6 thorpej ia->ia_niomem = 0;
162 1.6 thorpej ia->ia_nirq = 0;
163 1.6 thorpej ia->ia_ndrq = 0;
164 1.1 drochner }
165 1.1 drochner return (rv);
166 1.1 drochner }
167 1.1 drochner
168 1.1 drochner void
169 1.1 drochner pcppi_attach(parent, self, aux)
170 1.1 drochner struct device *parent, *self;
171 1.1 drochner void *aux;
172 1.1 drochner {
173 1.1 drochner struct pcppi_softc *sc = (struct pcppi_softc *)self;
174 1.1 drochner struct isa_attach_args *ia = aux;
175 1.1 drochner bus_space_tag_t iot;
176 1.1 drochner struct pcppi_attach_args pa;
177 1.1 drochner
178 1.4 thorpej callout_init(&sc->sc_bell_ch);
179 1.4 thorpej
180 1.1 drochner sc->sc_iot = iot = ia->ia_iot;
181 1.1 drochner
182 1.1 drochner if (bus_space_map(iot, IO_TIMER1, 4, 0, &sc->sc_pit1_ioh) ||
183 1.1 drochner bus_space_map(iot, IO_PPI, 1, 0, &sc->sc_ppi_ioh))
184 1.1 drochner panic("pcppi_attach: couldn't map");
185 1.1 drochner
186 1.1 drochner printf("\n");
187 1.1 drochner
188 1.1 drochner sc->sc_bellactive = sc->sc_bellpitch = sc->sc_slp = 0;
189 1.1 drochner
190 1.2 thorpej #if NPCKBD > 0
191 1.2 thorpej /* Provide a beeper for the PC Keyboard, if there isn't one already. */
192 1.2 thorpej pckbd_hookup_bell(pcppi_pckbd_bell, sc);
193 1.2 thorpej #endif
194 1.2 thorpej
195 1.1 drochner pa.pa_cookie = sc;
196 1.1 drochner while (config_found(self, &pa, 0));
197 1.1 drochner }
198 1.1 drochner
199 1.1 drochner void
200 1.1 drochner pcppi_bell(self, pitch, period, slp)
201 1.1 drochner pcppi_tag_t self;
202 1.1 drochner int pitch, period;
203 1.1 drochner int slp;
204 1.1 drochner {
205 1.1 drochner struct pcppi_softc *sc = self;
206 1.1 drochner int s1, s2;
207 1.1 drochner
208 1.1 drochner s1 = spltty(); /* ??? */
209 1.1 drochner if (sc->sc_bellactive) {
210 1.2 thorpej if (sc->sc_timeout) {
211 1.2 thorpej sc->sc_timeout = 0;
212 1.4 thorpej callout_stop(&sc->sc_bell_ch);
213 1.2 thorpej }
214 1.1 drochner if (sc->sc_slp)
215 1.1 drochner wakeup(pcppi_bell_stop);
216 1.1 drochner }
217 1.1 drochner if (pitch == 0 || period == 0) {
218 1.1 drochner pcppi_bell_stop(sc);
219 1.1 drochner sc->sc_bellpitch = 0;
220 1.1 drochner splx(s1);
221 1.1 drochner return;
222 1.1 drochner }
223 1.1 drochner if (!sc->sc_bellactive || sc->sc_bellpitch != pitch) {
224 1.1 drochner s2 = splhigh();
225 1.1 drochner bus_space_write_1(sc->sc_iot, sc->sc_pit1_ioh, TIMER_MODE,
226 1.1 drochner TIMER_SEL2 | TIMER_16BIT | TIMER_SQWAVE);
227 1.1 drochner bus_space_write_1(sc->sc_iot, sc->sc_pit1_ioh, TIMER_CNTR2,
228 1.1 drochner TIMER_DIV(pitch) % 256);
229 1.1 drochner bus_space_write_1(sc->sc_iot, sc->sc_pit1_ioh, TIMER_CNTR2,
230 1.1 drochner TIMER_DIV(pitch) / 256);
231 1.1 drochner splx(s2);
232 1.1 drochner /* enable speaker */
233 1.1 drochner bus_space_write_1(sc->sc_iot, sc->sc_ppi_ioh, 0,
234 1.1 drochner bus_space_read_1(sc->sc_iot, sc->sc_ppi_ioh, 0)
235 1.1 drochner | PIT_SPKR);
236 1.1 drochner }
237 1.1 drochner sc->sc_bellpitch = pitch;
238 1.1 drochner
239 1.1 drochner sc->sc_bellactive = 1;
240 1.2 thorpej if (slp & PCPPI_BELL_POLL) {
241 1.2 thorpej delay((period * 1000000) / hz);
242 1.2 thorpej pcppi_bell_stop(sc);
243 1.2 thorpej } else {
244 1.2 thorpej sc->sc_timeout = 1;
245 1.4 thorpej callout_reset(&sc->sc_bell_ch, period, pcppi_bell_stop, sc);
246 1.2 thorpej if (slp & PCPPI_BELL_SLEEP) {
247 1.2 thorpej sc->sc_slp = 1;
248 1.2 thorpej tsleep(pcppi_bell_stop, PCPPIPRI | PCATCH, "bell", 0);
249 1.2 thorpej sc->sc_slp = 0;
250 1.2 thorpej }
251 1.1 drochner }
252 1.1 drochner splx(s1);
253 1.1 drochner }
254 1.1 drochner
255 1.1 drochner static void
256 1.1 drochner pcppi_bell_stop(arg)
257 1.1 drochner void *arg;
258 1.1 drochner {
259 1.1 drochner struct pcppi_softc *sc = arg;
260 1.1 drochner int s;
261 1.1 drochner
262 1.1 drochner s = spltty(); /* ??? */
263 1.2 thorpej sc->sc_timeout = 0;
264 1.2 thorpej
265 1.1 drochner /* disable bell */
266 1.1 drochner bus_space_write_1(sc->sc_iot, sc->sc_ppi_ioh, 0,
267 1.1 drochner bus_space_read_1(sc->sc_iot, sc->sc_ppi_ioh, 0)
268 1.1 drochner & ~PIT_SPKR);
269 1.1 drochner sc->sc_bellactive = 0;
270 1.1 drochner if (sc->sc_slp)
271 1.1 drochner wakeup(pcppi_bell_stop);
272 1.1 drochner splx(s);
273 1.1 drochner }
274 1.2 thorpej
275 1.2 thorpej #if NPCKBD > 0
276 1.2 thorpej void
277 1.3 thorpej pcppi_pckbd_bell(arg, pitch, period, volume, poll)
278 1.2 thorpej void *arg;
279 1.2 thorpej u_int pitch, period, volume;
280 1.3 thorpej int poll;
281 1.2 thorpej {
282 1.2 thorpej
283 1.2 thorpej /*
284 1.2 thorpej * Comes in as ms, goes out at ticks; volume ignored.
285 1.2 thorpej */
286 1.3 thorpej pcppi_bell(arg, pitch, (period * hz) / 1000,
287 1.3 thorpej poll ? PCPPI_BELL_POLL : 0);
288 1.2 thorpej }
289 1.2 thorpej #endif /* NPCKBD > 0 */
290