asc.c revision 1.38 1 1.38 scottr /* $NetBSD: asc.c,v 1.38 2000/07/02 21:10:14 scottr Exp $ */
2 1.6 cgd
3 1.17 scottr /*
4 1.17 scottr * Copyright (C) 1997 Scott Reynolds
5 1.17 scottr * All rights reserved.
6 1.17 scottr *
7 1.17 scottr * Redistribution and use in source and binary forms, with or without
8 1.17 scottr * modification, are permitted provided that the following conditions
9 1.17 scottr * are met:
10 1.17 scottr * 1. Redistributions of source code must retain the above copyright
11 1.17 scottr * notice, this list of conditions and the following disclaimer.
12 1.17 scottr * 2. Redistributions in binary form must reproduce the above copyright
13 1.17 scottr * notice, this list of conditions and the following disclaimer in the
14 1.17 scottr * documentation and/or other materials provided with the distribution.
15 1.24 scottr * 3. The name of the author may not be used to endorse or promote products
16 1.17 scottr * derived from this software without specific prior written permission.
17 1.17 scottr *
18 1.20 scottr * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.20 scottr * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.20 scottr * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.20 scottr * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.20 scottr * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 1.20 scottr * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 1.20 scottr * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 1.20 scottr * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 1.20 scottr * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 1.20 scottr * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 1.17 scottr */
29 1.1 briggs /*-
30 1.1 briggs * Copyright (C) 1993 Allen K. Briggs, Chris P. Caputo,
31 1.1 briggs * Michael L. Finch, Bradley A. Grantham, and
32 1.1 briggs * Lawrence A. Kesteloot
33 1.1 briggs * All rights reserved.
34 1.1 briggs *
35 1.1 briggs * Redistribution and use in source and binary forms, with or without
36 1.1 briggs * modification, are permitted provided that the following conditions
37 1.1 briggs * are met:
38 1.1 briggs * 1. Redistributions of source code must retain the above copyright
39 1.1 briggs * notice, this list of conditions and the following disclaimer.
40 1.1 briggs * 2. Redistributions in binary form must reproduce the above copyright
41 1.1 briggs * notice, this list of conditions and the following disclaimer in the
42 1.1 briggs * documentation and/or other materials provided with the distribution.
43 1.1 briggs * 3. All advertising materials mentioning features or use of this software
44 1.1 briggs * must display the following acknowledgement:
45 1.1 briggs * This product includes software developed by the Alice Group.
46 1.1 briggs * 4. The names of the Alice Group or any of its members may not be used
47 1.1 briggs * to endorse or promote products derived from this software without
48 1.1 briggs * specific prior written permission.
49 1.1 briggs *
50 1.1 briggs * THIS SOFTWARE IS PROVIDED BY THE ALICE GROUP ``AS IS'' AND ANY EXPRESS OR
51 1.1 briggs * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52 1.1 briggs * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53 1.1 briggs * IN NO EVENT SHALL THE ALICE GROUP BE LIABLE FOR ANY DIRECT, INDIRECT,
54 1.1 briggs * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55 1.1 briggs * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 1.1 briggs * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 1.1 briggs * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 1.1 briggs * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59 1.1 briggs * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60 1.1 briggs */
61 1.1 briggs
62 1.1 briggs /*
63 1.17 scottr * ASC driver code and console bell support
64 1.1 briggs */
65 1.1 briggs
66 1.1 briggs #include <sys/types.h>
67 1.8 briggs #include <sys/cdefs.h>
68 1.1 briggs #include <sys/errno.h>
69 1.3 briggs #include <sys/time.h>
70 1.1 briggs #include <sys/systm.h>
71 1.1 briggs #include <sys/param.h>
72 1.5 briggs #include <sys/device.h>
73 1.17 scottr #include <sys/poll.h>
74 1.17 scottr
75 1.37 mrg #include <uvm/uvm_extern.h>
76 1.14 briggs
77 1.14 briggs #include <machine/autoconf.h>
78 1.5 briggs #include <machine/cpu.h>
79 1.16 scottr #include <machine/bus.h>
80 1.28 scottr #include <machine/viareg.h>
81 1.1 briggs
82 1.27 scottr #include <mac68k/obio/ascvar.h>
83 1.27 scottr #include <mac68k/obio/obiovar.h>
84 1.1 briggs
85 1.23 scottr #define MAC68K_ASC_BASE 0x50f14000
86 1.23 scottr #define MAC68K_IIFX_ASC_BASE 0x50f10000
87 1.23 scottr #define MAC68K_ASC_LEN 0x01000
88 1.1 briggs
89 1.28 scottr #ifdef DEBUG
90 1.28 scottr #define ASC_DEBUG
91 1.28 scottr #endif
92 1.28 scottr
93 1.28 scottr #ifdef ASC_DEBUG
94 1.28 scottr int asc_debug = 0; /* non-zero enables debugging output */
95 1.28 scottr #endif
96 1.28 scottr
97 1.17 scottr static u_int8_t asc_wave_tab[0x800];
98 1.17 scottr
99 1.17 scottr static int asc_ring_bell __P((void *, int, int, int));
100 1.17 scottr static void asc_stop_bell __P((void *));
101 1.31 ender #if __notyet__
102 1.28 scottr static void asc_intr_enable __P((void));
103 1.28 scottr static void asc_intr __P((void *));
104 1.31 ender #endif
105 1.1 briggs
106 1.17 scottr static int ascmatch __P((struct device *, struct cfdata *, void *));
107 1.17 scottr static void ascattach __P((struct device *, struct device *, void *));
108 1.5 briggs
109 1.10 thorpej struct cfattach asc_ca = {
110 1.17 scottr sizeof(struct asc_softc), ascmatch, ascattach
111 1.10 thorpej };
112 1.10 thorpej
113 1.25 thorpej extern struct cfdriver asc_cd;
114 1.5 briggs
115 1.5 briggs static int
116 1.15 scottr ascmatch(parent, cf, aux)
117 1.15 scottr struct device *parent;
118 1.15 scottr struct cfdata *cf;
119 1.15 scottr void *aux;
120 1.5 briggs {
121 1.18 scottr struct obio_attach_args *oa = (struct obio_attach_args *)aux;
122 1.18 scottr bus_addr_t addr;
123 1.16 scottr bus_space_handle_t bsh;
124 1.16 scottr int rval = 0;
125 1.16 scottr
126 1.23 scottr if (oa->oa_addr != (-1))
127 1.23 scottr addr = (bus_addr_t)oa->oa_addr;
128 1.38 scottr else if (current_mac_model->machineid == MACH_MACTV)
129 1.38 scottr return 0;
130 1.23 scottr else if (current_mac_model->machineid == MACH_MACIIFX)
131 1.23 scottr addr = (bus_addr_t)MAC68K_IIFX_ASC_BASE;
132 1.23 scottr else
133 1.23 scottr addr = (bus_addr_t)MAC68K_ASC_BASE;
134 1.16 scottr
135 1.18 scottr if (bus_space_map(oa->oa_tag, addr, MAC68K_ASC_LEN, 0, &bsh))
136 1.16 scottr return (0);
137 1.16 scottr
138 1.26 scottr if (mac68k_bus_space_probe(oa->oa_tag, bsh, 0, 1))
139 1.16 scottr rval = 1;
140 1.16 scottr else
141 1.16 scottr rval = 0;
142 1.16 scottr
143 1.18 scottr bus_space_unmap(oa->oa_tag, bsh, MAC68K_ASC_LEN);
144 1.16 scottr
145 1.16 scottr return rval;
146 1.5 briggs }
147 1.1 briggs
148 1.5 briggs static void
149 1.16 scottr ascattach(parent, self, aux)
150 1.16 scottr struct device *parent, *self;
151 1.16 scottr void *aux;
152 1.1 briggs {
153 1.18 scottr struct asc_softc *sc = (struct asc_softc *)self;
154 1.18 scottr struct obio_attach_args *oa = (struct obio_attach_args *)aux;
155 1.16 scottr bus_addr_t addr;
156 1.17 scottr int i;
157 1.16 scottr
158 1.18 scottr sc->sc_tag = oa->oa_tag;
159 1.23 scottr if (oa->oa_addr != (-1))
160 1.23 scottr addr = (bus_addr_t)oa->oa_addr;
161 1.23 scottr else if (current_mac_model->machineid == MACH_MACIIFX)
162 1.23 scottr addr = (bus_addr_t)MAC68K_IIFX_ASC_BASE;
163 1.23 scottr else
164 1.23 scottr addr = (bus_addr_t)MAC68K_ASC_BASE;
165 1.17 scottr if (bus_space_map(sc->sc_tag, addr, MAC68K_ASC_LEN, 0,
166 1.17 scottr &sc->sc_handle)) {
167 1.19 scottr printf(": can't map memory space\n");
168 1.16 scottr return;
169 1.16 scottr }
170 1.17 scottr sc->sc_open = 0;
171 1.17 scottr sc->sc_ringing = 0;
172 1.34 thorpej callout_init(&sc->sc_bell_ch);
173 1.17 scottr
174 1.17 scottr for (i = 0; i < 256; i++) { /* up part of wave, four voices? */
175 1.17 scottr asc_wave_tab[i] = i / 4;
176 1.17 scottr asc_wave_tab[i + 512] = i / 4;
177 1.17 scottr asc_wave_tab[i + 1024] = i / 4;
178 1.17 scottr asc_wave_tab[i + 1536] = i / 4;
179 1.17 scottr }
180 1.17 scottr for (i = 0; i < 256; i++) { /* down part of wave, four voices? */
181 1.17 scottr asc_wave_tab[i + 256] = 0x3f - (i / 4);
182 1.17 scottr asc_wave_tab[i + 768] = 0x3f - (i / 4);
183 1.17 scottr asc_wave_tab[i + 1280] = 0x3f - (i / 4);
184 1.17 scottr asc_wave_tab[i + 1792] = 0x3f - (i / 4);
185 1.17 scottr }
186 1.17 scottr
187 1.17 scottr printf(": Apple Sound Chip");
188 1.18 scottr if (oa->oa_addr != (-1))
189 1.18 scottr printf(" at %x", oa->oa_addr);
190 1.17 scottr printf("\n");
191 1.16 scottr
192 1.17 scottr mac68k_set_bell_callback(asc_ring_bell, sc);
193 1.31 ender #if __notyet__
194 1.32 briggs if (mac68k_machine.aux_interrupts) {
195 1.32 briggs intr_establish((int (*)(void *))asc_intr, sc, 5);
196 1.32 briggs } else {
197 1.32 briggs via2_register_irq(VIA2_ASC, asc_intr, sc);
198 1.32 briggs }
199 1.28 scottr asc_intr_enable();
200 1.31 ender #endif
201 1.1 briggs }
202 1.1 briggs
203 1.17 scottr int
204 1.17 scottr ascopen(dev, flag, mode, p)
205 1.17 scottr dev_t dev;
206 1.17 scottr int flag;
207 1.17 scottr int mode;
208 1.17 scottr struct proc *p;
209 1.16 scottr {
210 1.17 scottr struct asc_softc *sc;
211 1.17 scottr int unit;
212 1.16 scottr
213 1.17 scottr unit = ASCUNIT(dev);
214 1.17 scottr sc = asc_cd.cd_devs[unit];
215 1.17 scottr if (unit >= asc_cd.cd_ndevs)
216 1.17 scottr return (ENXIO);
217 1.17 scottr if (sc->sc_open)
218 1.17 scottr return (EBUSY);
219 1.17 scottr sc->sc_open = 1;
220 1.1 briggs
221 1.7 briggs return (0);
222 1.1 briggs }
223 1.1 briggs
224 1.17 scottr int
225 1.17 scottr ascclose(dev, flag, mode, p)
226 1.17 scottr dev_t dev;
227 1.17 scottr int flag;
228 1.17 scottr int mode;
229 1.17 scottr struct proc *p;
230 1.1 briggs {
231 1.17 scottr struct asc_softc *sc;
232 1.14 briggs
233 1.17 scottr sc = asc_cd.cd_devs[ASCUNIT(dev)];
234 1.17 scottr sc->sc_open = 0;
235 1.1 briggs
236 1.7 briggs return (0);
237 1.1 briggs }
238 1.1 briggs
239 1.17 scottr int
240 1.17 scottr ascread(dev, uio, ioflag)
241 1.17 scottr dev_t dev;
242 1.17 scottr struct uio *uio;
243 1.17 scottr int ioflag;
244 1.17 scottr {
245 1.17 scottr return (ENXIO);
246 1.17 scottr }
247 1.1 briggs
248 1.17 scottr int
249 1.17 scottr ascwrite(dev, uio, ioflag)
250 1.17 scottr dev_t dev;
251 1.17 scottr struct uio *uio;
252 1.17 scottr int ioflag;
253 1.1 briggs {
254 1.17 scottr return (ENXIO);
255 1.17 scottr }
256 1.14 briggs
257 1.17 scottr int
258 1.17 scottr ascioctl(dev, cmd, data, flag, p)
259 1.17 scottr dev_t dev;
260 1.17 scottr int cmd;
261 1.17 scottr caddr_t data;
262 1.17 scottr int flag;
263 1.17 scottr struct proc *p;
264 1.17 scottr {
265 1.17 scottr struct asc_softc *sc;
266 1.17 scottr int error;
267 1.17 scottr int unit = ASCUNIT(dev);
268 1.17 scottr
269 1.17 scottr sc = asc_cd.cd_devs[unit];
270 1.17 scottr error = 0;
271 1.17 scottr
272 1.17 scottr switch (cmd) {
273 1.17 scottr default:
274 1.17 scottr error = EINVAL;
275 1.17 scottr break;
276 1.17 scottr }
277 1.17 scottr return (error);
278 1.17 scottr }
279 1.16 scottr
280 1.17 scottr int
281 1.17 scottr ascpoll(dev, events, p)
282 1.17 scottr dev_t dev;
283 1.17 scottr int events;
284 1.17 scottr struct proc *p;
285 1.17 scottr {
286 1.17 scottr return (events & (POLLOUT | POLLWRNORM));
287 1.1 briggs }
288 1.1 briggs
289 1.35 simonb paddr_t
290 1.17 scottr ascmmap(dev, off, prot)
291 1.17 scottr dev_t dev;
292 1.35 simonb off_t off;
293 1.17 scottr int prot;
294 1.17 scottr {
295 1.17 scottr int unit = ASCUNIT(dev);
296 1.17 scottr struct asc_softc *sc;
297 1.30 scottr paddr_t pa;
298 1.17 scottr
299 1.17 scottr sc = asc_cd.cd_devs[unit];
300 1.29 mrg if ((u_int)off < MAC68K_ASC_LEN) {
301 1.33 thorpej (void) pmap_extract(pmap_kernel(), (vaddr_t)sc->sc_handle, &pa);
302 1.21 veego return m68k_btop(pa + off);
303 1.17 scottr }
304 1.17 scottr
305 1.17 scottr return (-1);
306 1.17 scottr }
307 1.1 briggs
308 1.17 scottr static int
309 1.17 scottr asc_ring_bell(arg, freq, length, volume)
310 1.17 scottr void *arg;
311 1.17 scottr int freq, length, volume;
312 1.1 briggs {
313 1.18 scottr struct asc_softc *sc = (struct asc_softc *)arg;
314 1.17 scottr unsigned long cfreq;
315 1.17 scottr int i;
316 1.14 briggs
317 1.17 scottr if (!sc)
318 1.16 scottr return (ENODEV);
319 1.1 briggs
320 1.17 scottr if (sc->sc_ringing == 0) {
321 1.16 scottr
322 1.17 scottr bus_space_write_multi_1(sc->sc_tag, sc->sc_handle,
323 1.17 scottr 0, 0, 0x800);
324 1.17 scottr bus_space_write_region_1(sc->sc_tag, sc->sc_handle,
325 1.17 scottr 0, asc_wave_tab, 0x800);
326 1.1 briggs
327 1.7 briggs /* Fix this. Need to find exact ASC sampling freq */
328 1.17 scottr cfreq = 65536 * freq / 466;
329 1.1 briggs
330 1.13 christos /* printf("beep: from %d, %02x %02x %02x %02x\n",
331 1.17 scottr * cur_beep.freq, (cfreq >> 24) & 0xff, (cfreq >> 16) & 0xff,
332 1.17 scottr * (cfreq >> 8) & 0xff, (cfreq) & 0xff); */
333 1.7 briggs for (i = 0; i < 8; i++) {
334 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle,
335 1.17 scottr 0x814 + 8 * i, (cfreq >> 24) & 0xff);
336 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle,
337 1.17 scottr 0x815 + 8 * i, (cfreq >> 16) & 0xff);
338 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle,
339 1.17 scottr 0x816 + 8 * i, (cfreq >> 8) & 0xff);
340 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle,
341 1.17 scottr 0x817 + 8 * i, (cfreq) & 0xff);
342 1.7 briggs } /* frequency; should put cur_beep.freq in here
343 1.7 briggs * somewhere. */
344 1.7 briggs
345 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x807, 3); /* 44 ? */
346 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x806,
347 1.17 scottr 255 * volume / 100);
348 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x805, 0);
349 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x80f, 0);
350 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x802, 2); /* sampled */
351 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x801, 2); /* enable sampled */
352 1.34 thorpej sc->sc_ringing = 1;
353 1.34 thorpej callout_reset(&sc->sc_bell_ch, length, asc_stop_bell, sc);
354 1.1 briggs }
355 1.11 briggs
356 1.16 scottr return (0);
357 1.17 scottr }
358 1.17 scottr
359 1.17 scottr static void
360 1.17 scottr asc_stop_bell(arg)
361 1.17 scottr void *arg;
362 1.17 scottr {
363 1.18 scottr struct asc_softc *sc = (struct asc_softc *)arg;
364 1.17 scottr
365 1.17 scottr if (!sc)
366 1.17 scottr return;
367 1.17 scottr
368 1.17 scottr if (sc->sc_ringing > 1000 || sc->sc_ringing < 0)
369 1.17 scottr panic("bell got out of sync?");
370 1.17 scottr
371 1.17 scottr if (--sc->sc_ringing == 0) /* disable ASC */
372 1.17 scottr bus_space_write_1(sc->sc_tag, sc->sc_handle, 0x801, 0);
373 1.28 scottr }
374 1.28 scottr
375 1.31 ender #if __notyet__
376 1.28 scottr static void
377 1.28 scottr asc_intr_enable()
378 1.28 scottr {
379 1.28 scottr int s;
380 1.28 scottr
381 1.28 scottr s = splhigh();
382 1.28 scottr if (VIA2 == VIA2OFF)
383 1.28 scottr via2_reg(vIER) = 0x80 | V2IF_ASC;
384 1.28 scottr else
385 1.28 scottr via2_reg(rIER) = 0x80 | V2IF_ASC;
386 1.28 scottr splx(s);
387 1.28 scottr }
388 1.28 scottr
389 1.28 scottr
390 1.28 scottr /*ARGSUSED*/
391 1.28 scottr static void
392 1.28 scottr asc_intr(arg)
393 1.28 scottr void *arg;
394 1.28 scottr {
395 1.28 scottr #ifdef ASC_DEBUG
396 1.28 scottr struct asc_softc *sc = (struct asc_softc *)arg;
397 1.28 scottr
398 1.28 scottr if (asc_debug)
399 1.28 scottr printf("asc_intr(%p)\n", sc);
400 1.28 scottr #endif
401 1.1 briggs }
402 1.31 ender #endif
403