auich.c revision 1.3.4.3 1 /* $NetBSD: auich.c,v 1.3.4.3 2002/03/16 16:01:12 jdolecek Exp $ */
2
3 /*-
4 * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 /*
40 * Copyright (c) 2000 Michael Shalayeff
41 * All rights reserved.
42 *
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
45 * are met:
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. The name of the author may not be used to endorse or promote products
52 * derived from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
55 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
56 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
57 * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
58 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
59 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
60 * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
62 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
63 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
64 * THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 * from OpenBSD: ich.c,v 1.3 2000/08/11 06:17:18 mickey Exp
67 */
68
69 /* #define ICH_DEBUG */
70 /*
71 * AC'97 audio found on Intel 810/820/440MX chipsets.
72 * http://developer.intel.com/design/chipsets/datashts/290655.htm
73 * http://developer.intel.com/design/chipsets/manuals/298028.htm
74 *
75 * TODO:
76 *
77 * - Probe codecs for supported sample rates.
78 *
79 * - Add support for the microphone input.
80 */
81
82 #include <sys/cdefs.h>
83 __KERNEL_RCSID(0, "$NetBSD: auich.c,v 1.3.4.3 2002/03/16 16:01:12 jdolecek Exp $");
84
85 #include <sys/param.h>
86 #include <sys/systm.h>
87 #include <sys/kernel.h>
88 #include <sys/malloc.h>
89 #include <sys/device.h>
90 #include <sys/fcntl.h>
91 #include <sys/proc.h>
92
93 #include <uvm/uvm_extern.h> /* for PAGE_SIZE */
94
95 #include <dev/pci/pcidevs.h>
96 #include <dev/pci/pcivar.h>
97 #include <dev/pci/auichreg.h>
98
99 #include <sys/audioio.h>
100 #include <dev/audio_if.h>
101 #include <dev/mulaw.h>
102 #include <dev/auconv.h>
103
104 #include <machine/bus.h>
105
106 #include <dev/ic/ac97reg.h>
107 #include <dev/ic/ac97var.h>
108
109 struct auich_dma {
110 bus_dmamap_t map;
111 caddr_t addr;
112 bus_dma_segment_t segs[1];
113 int nsegs;
114 size_t size;
115 struct auich_dma *next;
116 };
117
118 #define DMAADDR(p) ((p)->map->dm_segs[0].ds_addr)
119 #define KERNADDR(p) ((void *)((p)->addr))
120
121 struct auich_cdata {
122 struct auich_dmalist ic_dmalist_pcmo[ICH_DMALIST_MAX];
123 struct auich_dmalist ic_dmalist_pcmi[ICH_DMALIST_MAX];
124 struct auich_dmalist ic_dmalist_mici[ICH_DMALIST_MAX];
125 };
126
127 #define ICH_CDOFF(x) offsetof(struct auich_cdata, x)
128 #define ICH_PCMO_OFF(x) ICH_CDOFF(ic_dmalist_pcmo[(x)])
129 #define ICH_PCMI_OFF(x) ICH_CDOFF(ic_dmalist_pcmi[(x)])
130 #define ICH_MICI_OFF(x) ICH_CDOFF(ic_dmalist_mici[(x)])
131
132 struct auich_softc {
133 struct device sc_dev;
134 void *sc_ih;
135
136 audio_device_t sc_audev;
137
138 bus_space_tag_t iot;
139 bus_space_handle_t mix_ioh;
140 bus_space_handle_t aud_ioh;
141 bus_dma_tag_t dmat;
142
143 struct ac97_codec_if *codec_if;
144 struct ac97_host_if host_if;
145
146 /* DMA scatter-gather lists. */
147 bus_dmamap_t sc_cddmamap;
148 #define sc_cddma sc_cddmamap->dm_segs[0].ds_addr
149
150 struct auich_cdata *sc_cdata;
151 #define dmalist_pcmo sc_cdata->ic_dmalist_pcmo
152 #define dmalist_pcmi sc_cdata->ic_dmalist_pcmi
153 #define dmalist_mici sc_cdata->ic_dmalist_mici
154
155 int ptr_pcmo,
156 ptr_pcmi,
157 ptr_mici;
158
159 /* i/o buffer pointers */
160 u_int32_t pcmo_start, pcmo_p, pcmo_end;
161 int pcmo_blksize, pcmo_fifoe;
162
163 u_int32_t pcmi_start, pcmi_p, pcmi_end;
164 int pcmi_blksize, pcmi_fifoe;
165
166 u_int32_t mici_start, mici_p, mici_end;
167 int mici_blksize, mici_fifoe;
168
169 struct auich_dma *sc_dmas;
170
171 int sc_fixed_rate;
172
173 void (*sc_pintr)(void *);
174 void *sc_parg;
175
176 void (*sc_rintr)(void *);
177 void *sc_rarg;
178
179 /* Power Management */
180 void *sc_powerhook;
181 int sc_suspend;
182 u_int16_t ext_status;
183 };
184
185 /* Debug */
186 #ifdef AUDIO_DEBUG
187 #define DPRINTF(l,x) do { if (auich_debug & (l)) printf x; } while(0)
188 int auich_debug = 0xfffe;
189 #define ICH_DEBUG_CODECIO 0x0001
190 #define ICH_DEBUG_DMA 0x0002
191 #define ICH_DEBUG_PARAM 0x0004
192 #else
193 #define DPRINTF(x,y) /* nothing */
194 #endif
195
196 int auich_match(struct device *, struct cfdata *, void *);
197 void auich_attach(struct device *, struct device *, void *);
198 int auich_intr(void *);
199
200 struct cfattach auich_ca = {
201 sizeof(struct auich_softc), auich_match, auich_attach
202 };
203
204 int auich_open(void *, int);
205 void auich_close(void *);
206 int auich_query_encoding(void *, struct audio_encoding *);
207 int auich_set_params(void *, int, int, struct audio_params *,
208 struct audio_params *);
209 int auich_round_blocksize(void *, int);
210 int auich_halt_output(void *);
211 int auich_halt_input(void *);
212 int auich_getdev(void *, struct audio_device *);
213 int auich_set_port(void *, mixer_ctrl_t *);
214 int auich_get_port(void *, mixer_ctrl_t *);
215 int auich_query_devinfo(void *, mixer_devinfo_t *);
216 void *auich_allocm(void *, int, size_t, int, int);
217 void auich_freem(void *, void *, int);
218 size_t auich_round_buffersize(void *, int, size_t);
219 paddr_t auich_mappage(void *, void *, off_t, int);
220 int auich_get_props(void *);
221 int auich_trigger_output(void *, void *, void *, int, void (*)(void *),
222 void *, struct audio_params *);
223 int auich_trigger_input(void *, void *, void *, int, void (*)(void *),
224 void *, struct audio_params *);
225
226 int auich_alloc_cdata(struct auich_softc *);
227
228 int auich_allocmem(struct auich_softc *, size_t, size_t,
229 struct auich_dma *);
230 int auich_freemem(struct auich_softc *, struct auich_dma *);
231
232 void auich_powerhook(int, void *);
233
234 struct audio_hw_if auich_hw_if = {
235 auich_open,
236 auich_close,
237 NULL, /* drain */
238 auich_query_encoding,
239 auich_set_params,
240 auich_round_blocksize,
241 NULL, /* commit_setting */
242 NULL, /* init_output */
243 NULL, /* init_input */
244 NULL, /* start_output */
245 NULL, /* start_input */
246 auich_halt_output,
247 auich_halt_input,
248 NULL, /* speaker_ctl */
249 auich_getdev,
250 NULL, /* getfd */
251 auich_set_port,
252 auich_get_port,
253 auich_query_devinfo,
254 auich_allocm,
255 auich_freem,
256 auich_round_buffersize,
257 auich_mappage,
258 auich_get_props,
259 auich_trigger_output,
260 auich_trigger_input,
261 NULL, /* dev_ioctl */
262 };
263
264 int auich_attach_codec(void *, struct ac97_codec_if *);
265 int auich_read_codec(void *, u_int8_t, u_int16_t *);
266 int auich_write_codec(void *, u_int8_t, u_int16_t);
267 void auich_reset_codec(void *);
268
269 static const struct auich_devtype {
270 int product;
271 const char *name;
272 const char *shortname;
273 } auich_devices[] = {
274 { PCI_PRODUCT_INTEL_82801AA_ACA,
275 "i82801AA (ICH) AC-97 Audio", "ICH" },
276 { PCI_PRODUCT_INTEL_82801AB_ACA,
277 "i82801AB (ICH0) AC-97 Audio", "ICH0" },
278 { PCI_PRODUCT_INTEL_82801BA_ACA,
279 "i82801BA (ICH2) AC-97 Audio", "ICH2" },
280 { PCI_PRODUCT_INTEL_82440MX_ACA,
281 "i82440MX AC-97 Audio", "440MX" },
282 { PCI_PRODUCT_INTEL_82801CA_AC,
283 "i82801CA AC-97 Audio", "i830M" },
284
285 { 0,
286 NULL, NULL },
287 };
288
289 static const struct auich_devtype *
290 auich_lookup(struct pci_attach_args *pa)
291 {
292 const struct auich_devtype *d;
293
294 if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_INTEL)
295 return (NULL);
296
297 for (d = auich_devices; d->name != NULL; d++) {
298 if (PCI_PRODUCT(pa->pa_id) == d->product)
299 return (d);
300 }
301
302 return (NULL);
303 }
304
305 int
306 auich_match(struct device *parent, struct cfdata *match, void *aux)
307 {
308 struct pci_attach_args *pa = aux;
309
310 if (auich_lookup(pa) != NULL)
311 return (1);
312
313 return (0);
314 }
315
316 void
317 auich_attach(struct device *parent, struct device *self, void *aux)
318 {
319 struct auich_softc *sc = (struct auich_softc *)self;
320 struct pci_attach_args *pa = aux;
321 pci_intr_handle_t ih;
322 bus_size_t mix_size, aud_size;
323 pcireg_t csr;
324 const char *intrstr;
325 const struct auich_devtype *d;
326 u_int16_t ext_id, ext_status;
327
328 d = auich_lookup(pa);
329 if (d == NULL)
330 panic("auich_attach: impossible");
331
332 printf(": %s\n", d->name);
333
334 if (pci_mapreg_map(pa, ICH_NAMBAR, PCI_MAPREG_TYPE_IO, 0,
335 &sc->iot, &sc->mix_ioh, NULL, &mix_size)) {
336 printf("%s: can't map codec i/o space\n",
337 sc->sc_dev.dv_xname);
338 return;
339 }
340 if (pci_mapreg_map(pa, ICH_NABMBAR, PCI_MAPREG_TYPE_IO, 0,
341 &sc->iot, &sc->aud_ioh, NULL, &aud_size)) {
342 printf("%s: can't map device i/o space\n",
343 sc->sc_dev.dv_xname);
344 return;
345 }
346 sc->dmat = pa->pa_dmat;
347
348 /* enable bus mastering */
349 csr = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
350 pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
351 csr | PCI_COMMAND_MASTER_ENABLE);
352
353 /* Map and establish the interrupt. */
354 if (pci_intr_map(pa, &ih)) {
355 printf("%s: can't map interrupt\n", sc->sc_dev.dv_xname);
356 return;
357 }
358 intrstr = pci_intr_string(pa->pa_pc, ih);
359 sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_AUDIO,
360 auich_intr, sc);
361 if (sc->sc_ih == NULL) {
362 printf("%s: can't establish interrupt", sc->sc_dev.dv_xname);
363 if (intrstr != NULL)
364 printf(" at %s", intrstr);
365 printf("\n");
366 return;
367 }
368 printf("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
369
370 sprintf(sc->sc_audev.name, "%s AC97", d->shortname);
371 sprintf(sc->sc_audev.version, "0x%02x", PCI_REVISION(pa->pa_class));
372 strcpy(sc->sc_audev.config, sc->sc_dev.dv_xname);
373
374 /* Set up DMA lists. */
375 sc->ptr_pcmo = sc->ptr_pcmi = sc->ptr_mici = 0;
376 auich_alloc_cdata(sc);
377
378 DPRINTF(ICH_DEBUG_DMA, ("auich_attach: lists %p %p %p\n",
379 sc->dmalist_pcmo, sc->dmalist_pcmi, sc->dmalist_mici));
380
381 /* Reset codec and AC'97 */
382 auich_reset_codec(sc);
383
384 sc->host_if.arg = sc;
385 sc->host_if.attach = auich_attach_codec;
386 sc->host_if.read = auich_read_codec;
387 sc->host_if.write = auich_write_codec;
388 sc->host_if.reset = auich_reset_codec;
389
390 if (ac97_attach(&sc->host_if) != 0)
391 return;
392
393 auich_read_codec(sc, AC97_REG_EXTENDED_ID, &ext_id);
394 if ((ext_id & (AC97_CODEC_DOES_VRA | AC97_CODEC_DOES_MICVRA)) != 0) {
395 auich_read_codec(sc, AC97_REG_EXTENDED_STATUS, &ext_status);
396 if ((ext_id & AC97_CODEC_DOES_VRA) !=0)
397 ext_status |= AC97_ENAB_VRA;
398 if ((ext_id & AC97_CODEC_DOES_MICVRA) !=0)
399 ext_status |= AC97_ENAB_MICVRA;
400 auich_write_codec(sc, AC97_REG_EXTENDED_STATUS, ext_status);
401 sc->sc_fixed_rate = 0;
402 } else {
403 sc->sc_fixed_rate = 48000;
404 printf("%s: warning, fixed rate codec\n", sc->sc_dev.dv_xname);
405 }
406
407 audio_attach_mi(&auich_hw_if, sc, &sc->sc_dev);
408
409 /* Watch for power change */
410 sc->sc_suspend = PWR_RESUME;
411 sc->sc_powerhook = powerhook_establish(auich_powerhook, sc);
412 }
413
414 int
415 auich_read_codec(void *v, u_int8_t reg, u_int16_t *val)
416 {
417 struct auich_softc *sc = v;
418 int i;
419
420 /* wait for an access semaphore */
421 for (i = ICH_SEMATIMO; i-- &&
422 bus_space_read_1(sc->iot, sc->aud_ioh, ICH_CAS) & 1; DELAY(1));
423
424 if (i > 0) {
425 *val = bus_space_read_2(sc->iot, sc->mix_ioh, reg);
426 DPRINTF(ICH_DEBUG_CODECIO,
427 ("auich_read_codec(%x, %x)\n", reg, *val));
428
429 return 0;
430 } else {
431 DPRINTF(ICH_DEBUG_CODECIO,
432 ("%s: read_codec timeout\n", sc->sc_dev.dv_xname));
433 return -1;
434 }
435 }
436
437 int
438 auich_write_codec(void *v, u_int8_t reg, u_int16_t val)
439 {
440 struct auich_softc *sc = v;
441 int i;
442
443 DPRINTF(ICH_DEBUG_CODECIO, ("auich_write_codec(%x, %x)\n", reg, val));
444
445 /* wait for an access semaphore */
446 for (i = ICH_SEMATIMO; i-- &&
447 bus_space_read_1(sc->iot, sc->aud_ioh, ICH_CAS) & 1; DELAY(1));
448
449 if (i > 0) {
450 bus_space_write_2(sc->iot, sc->mix_ioh, reg, val);
451 return 0;
452 } else {
453 DPRINTF(ICH_DEBUG_CODECIO,
454 ("%s: write_codec timeout\n", sc->sc_dev.dv_xname));
455 return -1;
456 }
457 }
458
459 int
460 auich_attach_codec(void *v, struct ac97_codec_if *cif)
461 {
462 struct auich_softc *sc = v;
463
464 sc->codec_if = cif;
465 return 0;
466 }
467
468 void
469 auich_reset_codec(void *v)
470 {
471 struct auich_softc *sc = v;
472
473 bus_space_write_4(sc->iot, sc->aud_ioh, ICH_GCTRL, 0);
474 DELAY(10);
475 bus_space_write_4(sc->iot, sc->aud_ioh, ICH_GCTRL, ICH_CRESET);
476 }
477
478 int
479 auich_open(void *v, int flags)
480 {
481
482 return 0;
483 }
484
485 void
486 auich_close(void *v)
487 {
488 struct auich_softc *sc = v;
489
490 auich_halt_output(sc);
491 auich_halt_input(sc);
492
493 sc->sc_pintr = NULL;
494 sc->sc_rintr = NULL;
495 }
496
497 int
498 auich_query_encoding(void *v, struct audio_encoding *aep)
499 {
500
501 #if 0 /* XXX Not until we emulate it. */
502 switch (aep->index) {
503 case 0:
504 strcpy(aep->name, AudioEulinear);
505 aep->encoding = AUDIO_ENCODING_ULINEAR;
506 aep->precision = 8;
507 aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
508 return (0);
509 #else
510 switch (aep->index + 1) {
511 #endif
512 case 1:
513 strcpy(aep->name, AudioEmulaw);
514 aep->encoding = AUDIO_ENCODING_ULAW;
515 aep->precision = 8;
516 aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
517 return (0);
518 case 2:
519 strcpy(aep->name, AudioEalaw);
520 aep->encoding = AUDIO_ENCODING_ALAW;
521 aep->precision = 8;
522 aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
523 return (0);
524 case 3:
525 strcpy(aep->name, AudioEslinear);
526 aep->encoding = AUDIO_ENCODING_SLINEAR;
527 aep->precision = 8;
528 aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
529 return (0);
530 case 4:
531 strcpy(aep->name, AudioEslinear_le);
532 aep->encoding = AUDIO_ENCODING_SLINEAR_LE;
533 aep->precision = 16;
534 aep->flags = 0;
535 return (0);
536 case 5:
537 strcpy(aep->name, AudioEulinear_le);
538 aep->encoding = AUDIO_ENCODING_ULINEAR_LE;
539 aep->precision = 16;
540 aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
541 return (0);
542 case 6:
543 strcpy(aep->name, AudioEslinear_be);
544 aep->encoding = AUDIO_ENCODING_SLINEAR_BE;
545 aep->precision = 16;
546 aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
547 return (0);
548 case 7:
549 strcpy(aep->name, AudioEulinear_be);
550 aep->encoding = AUDIO_ENCODING_ULINEAR_BE;
551 aep->precision = 16;
552 aep->flags = AUDIO_ENCODINGFLAG_EMULATED;
553 return (0);
554 default:
555 return (EINVAL);
556 }
557 }
558
559 int
560 auich_set_params(void *v, int setmode, int usemode, struct audio_params *play,
561 struct audio_params *rec)
562 {
563 struct auich_softc *sc = v;
564 struct audio_params *p;
565 int mode;
566 u_int16_t val, rate, inout;
567
568 for (mode = AUMODE_RECORD; mode != -1;
569 mode = mode == AUMODE_RECORD ? AUMODE_PLAY : -1) {
570 if ((setmode & mode) == 0)
571 continue;
572
573 p = mode == AUMODE_PLAY ? play : rec;
574 if (p == NULL)
575 continue;
576
577 inout = mode == AUMODE_PLAY ? ICH_PM_PCMO : ICH_PM_PCMI;
578
579 if ((p->sample_rate != 8000) &&
580 (p->sample_rate != 11025) &&
581 (p->sample_rate != 16000) &&
582 (p->sample_rate != 22050) &&
583 (p->sample_rate != 32000) &&
584 (p->sample_rate != 44100) &&
585 (p->sample_rate != 48000))
586 return (EINVAL);
587
588 p->factor = 1;
589 p->sw_code = NULL;
590 if (p->channels < 2)
591 p->hw_channels = 2;
592 switch (p->encoding) {
593 case AUDIO_ENCODING_SLINEAR_BE:
594 if (p->precision == 16) {
595 p->sw_code = swap_bytes;
596 p->hw_encoding = AUDIO_ENCODING_SLINEAR_LE;
597 } else {
598 if (mode == AUMODE_PLAY)
599 p->sw_code = linear8_to_linear16_le;
600 else
601 p->sw_code = linear16_to_linear8_le;
602 p->hw_encoding = AUDIO_ENCODING_SLINEAR_LE;
603 p->hw_precision = 16;
604 }
605 break;
606
607 case AUDIO_ENCODING_SLINEAR_LE:
608 if (p->precision != 16) {
609 if (mode == AUMODE_PLAY)
610 p->sw_code = linear8_to_linear16_le;
611 else
612 p->sw_code = linear16_to_linear8_le;
613 p->hw_precision = 16;
614 }
615 break;
616
617 case AUDIO_ENCODING_ULINEAR_BE:
618 if (p->precision == 16) {
619 if (mode == AUMODE_PLAY)
620 p->sw_code =
621 swap_bytes_change_sign16_le;
622 else
623 p->sw_code =
624 change_sign16_swap_bytes_le;
625 p->hw_encoding = AUDIO_ENCODING_SLINEAR_LE;
626 } else {
627 /*
628 * XXX ulinear8_to_slinear16_le
629 */
630 return (EINVAL);
631 }
632 break;
633
634 case AUDIO_ENCODING_ULINEAR_LE:
635 if (p->precision == 16) {
636 p->sw_code = change_sign16_le;
637 p->hw_encoding = AUDIO_ENCODING_SLINEAR_LE;
638 } else {
639 /*
640 * XXX ulinear8_to_slinear16_le
641 */
642 return (EINVAL);
643 }
644 break;
645
646 case AUDIO_ENCODING_ULAW:
647 if (mode == AUMODE_PLAY) {
648 p->sw_code = mulaw_to_slinear16_le;
649 } else {
650 p->sw_code = slinear16_to_mulaw_le;
651 }
652 p->factor = 2;
653 p->hw_precision = 16;
654 p->hw_encoding = AUDIO_ENCODING_SLINEAR_LE;
655 break;
656
657 case AUDIO_ENCODING_ALAW:
658 if (mode == AUMODE_PLAY) {
659 p->factor = 2;
660 p->sw_code = alaw_to_slinear16_le;
661 p->hw_precision = 16;
662 p->hw_encoding = AUDIO_ENCODING_SLINEAR_LE;
663 } else {
664 /*
665 * XXX slinear16_le_to_alaw
666 */
667 return (EINVAL);
668 }
669 break;
670
671 default:
672 return (EINVAL);
673 }
674
675 auich_read_codec(sc, AC97_REG_POWER, &val);
676 auich_write_codec(sc, AC97_REG_POWER, val | inout);
677
678 if (sc->sc_fixed_rate) {
679 p->hw_sample_rate = sc->sc_fixed_rate;
680 } else {
681 auich_write_codec(sc, AC97_REG_PCM_FRONT_DAC_RATE,
682 p->sample_rate);
683 auich_read_codec(sc, AC97_REG_PCM_FRONT_DAC_RATE,
684 &rate);
685 p->hw_sample_rate = rate;
686 }
687
688 auich_write_codec(sc, AC97_REG_POWER, val);
689 }
690
691 return (0);
692 }
693
694 int
695 auich_round_blocksize(void *v, int blk)
696 {
697
698 return (blk & ~0x3f); /* keep good alignment */
699 }
700
701 int
702 auich_halt_output(void *v)
703 {
704 struct auich_softc *sc = v;
705
706 DPRINTF(ICH_DEBUG_DMA, ("%s: halt_output\n", sc->sc_dev.dv_xname));
707
708 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMO + ICH_CTRL, ICH_RR);
709
710 return (0);
711 }
712
713 int
714 auich_halt_input(void *v)
715 {
716 struct auich_softc *sc = v;
717
718 DPRINTF(ICH_DEBUG_DMA,
719 ("%s: halt_input\n", sc->sc_dev.dv_xname));
720
721 /* XXX halt both unless known otherwise */
722
723 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CTRL, ICH_RR);
724 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_MICI + ICH_CTRL, ICH_RR);
725
726 return (0);
727 }
728
729 int
730 auich_getdev(void *v, struct audio_device *adp)
731 {
732 struct auich_softc *sc = v;
733
734 *adp = sc->sc_audev;
735 return (0);
736 }
737
738 int
739 auich_set_port(void *v, mixer_ctrl_t *cp)
740 {
741 struct auich_softc *sc = v;
742
743 return (sc->codec_if->vtbl->mixer_set_port(sc->codec_if, cp));
744 }
745
746 int
747 auich_get_port(void *v, mixer_ctrl_t *cp)
748 {
749 struct auich_softc *sc = v;
750
751 return (sc->codec_if->vtbl->mixer_get_port(sc->codec_if, cp));
752 }
753
754 int
755 auich_query_devinfo(void *v, mixer_devinfo_t *dp)
756 {
757 struct auich_softc *sc = v;
758
759 return (sc->codec_if->vtbl->query_devinfo(sc->codec_if, dp));
760 }
761
762 void *
763 auich_allocm(void *v, int direction, size_t size, int pool, int flags)
764 {
765 struct auich_softc *sc = v;
766 struct auich_dma *p;
767 int error;
768
769 if (size > (ICH_DMALIST_MAX * ICH_DMASEG_MAX))
770 return (NULL);
771
772 p = malloc(sizeof(*p), pool, flags|M_ZERO);
773 if (p == NULL)
774 return (NULL);
775
776 error = auich_allocmem(sc, size, 0, p);
777 if (error) {
778 free(p, pool);
779 return (NULL);
780 }
781
782 p->next = sc->sc_dmas;
783 sc->sc_dmas = p;
784
785 return (KERNADDR(p));
786 }
787
788 void
789 auich_freem(void *v, void *ptr, int pool)
790 {
791 struct auich_softc *sc = v;
792 struct auich_dma *p, **pp;
793
794 for (pp = &sc->sc_dmas; (p = *pp) != NULL; pp = &p->next) {
795 if (KERNADDR(p) == ptr) {
796 auich_freemem(sc, p);
797 *pp = p->next;
798 free(p, pool);
799 return;
800 }
801 }
802 }
803
804 size_t
805 auich_round_buffersize(void *v, int direction, size_t size)
806 {
807
808 if (size > (ICH_DMALIST_MAX * ICH_DMASEG_MAX))
809 size = ICH_DMALIST_MAX * ICH_DMASEG_MAX;
810
811 return size;
812 }
813
814 paddr_t
815 auich_mappage(void *v, void *mem, off_t off, int prot)
816 {
817 struct auich_softc *sc = v;
818 struct auich_dma *p;
819
820 if (off < 0)
821 return (-1);
822
823 for (p = sc->sc_dmas; p && KERNADDR(p) != mem; p = p->next)
824 ;
825 if (!p)
826 return (-1);
827 return (bus_dmamem_mmap(sc->dmat, p->segs, p->nsegs,
828 off, prot, BUS_DMA_WAITOK));
829 }
830
831 int
832 auich_get_props(void *v)
833 {
834
835 return (AUDIO_PROP_MMAP | AUDIO_PROP_INDEPENDENT |
836 AUDIO_PROP_FULLDUPLEX);
837 }
838
839 int
840 auich_intr(void *v)
841 {
842 struct auich_softc *sc = v;
843 int ret = 0, sts, gsts, i, qptr;
844
845 gsts = bus_space_read_2(sc->iot, sc->aud_ioh, ICH_GSTS);
846 DPRINTF(ICH_DEBUG_DMA, ("auich_intr: gsts=0x%x\n", gsts));
847
848 if (gsts & ICH_POINT) {
849 sts = bus_space_read_2(sc->iot, sc->aud_ioh, ICH_PCMO+ICH_STS);
850 DPRINTF(ICH_DEBUG_DMA,
851 ("auich_intr: osts=0x%x\n", sts));
852
853 if (sts & ICH_FIFOE) {
854 printf("%s: fifo underrun # %u\n",
855 sc->sc_dev.dv_xname, ++sc->pcmo_fifoe);
856 }
857
858 i = bus_space_read_1(sc->iot, sc->aud_ioh, ICH_PCMO + ICH_CIV);
859 if (sts & (ICH_LVBCI | ICH_CELV)) {
860 struct auich_dmalist *q;
861
862 qptr = sc->ptr_pcmo;
863
864 while (qptr != i) {
865 q = &sc->dmalist_pcmo[qptr];
866
867 q->base = sc->pcmo_p;
868 q->len = (sc->pcmo_blksize / 2) | ICH_DMAF_IOC;
869 DPRINTF(ICH_DEBUG_DMA,
870 ("auich_intr: %p, %p = %x @ 0x%x\n",
871 &sc->dmalist_pcmo[i], q,
872 sc->pcmo_blksize / 2, sc->pcmo_p));
873
874 sc->pcmo_p += sc->pcmo_blksize;
875 if (sc->pcmo_p >= sc->pcmo_end)
876 sc->pcmo_p = sc->pcmo_start;
877
878 if (++qptr == ICH_DMALIST_MAX)
879 qptr = 0;
880 }
881
882 sc->ptr_pcmo = qptr;
883 bus_space_write_1(sc->iot, sc->aud_ioh,
884 ICH_PCMO + ICH_LVI,
885 (sc->ptr_pcmo - 1) & ICH_LVI_MASK);
886 }
887
888 if (sts & ICH_BCIS && sc->sc_pintr)
889 sc->sc_pintr(sc->sc_parg);
890
891 /* int ack */
892 bus_space_write_2(sc->iot, sc->aud_ioh, ICH_PCMO + ICH_STS,
893 sts & (ICH_LVBCI | ICH_CELV | ICH_BCIS | ICH_FIFOE));
894 bus_space_write_2(sc->iot, sc->aud_ioh, ICH_GSTS, ICH_POINT);
895 ret++;
896 }
897
898 if (gsts & ICH_PIINT) {
899 sts = bus_space_read_2(sc->iot, sc->aud_ioh, ICH_PCMI+ICH_STS);
900 DPRINTF(ICH_DEBUG_DMA,
901 ("auich_intr: ists=0x%x\n", sts));
902
903 if (sts & ICH_FIFOE) {
904 printf("%s: fifo overrun # %u\n",
905 sc->sc_dev.dv_xname, ++sc->pcmi_fifoe);
906 }
907
908 i = bus_space_read_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CIV);
909 if (sts & (ICH_LVBCI | ICH_CELV)) {
910 struct auich_dmalist *q;
911
912 qptr = sc->ptr_pcmi;
913
914 while (qptr != i) {
915 q = &sc->dmalist_pcmi[qptr];
916
917 q->base = sc->pcmi_p;
918 q->len = (sc->pcmi_blksize / 2) | ICH_DMAF_IOC;
919 DPRINTF(ICH_DEBUG_DMA,
920 ("auich_intr: %p, %p = %x @ 0x%x\n",
921 &sc->dmalist_pcmi[i], q,
922 sc->pcmi_blksize / 2, sc->pcmi_p));
923
924 sc->pcmi_p += sc->pcmi_blksize;
925 if (sc->pcmi_p >= sc->pcmi_end)
926 sc->pcmi_p = sc->pcmi_start;
927
928 if (++qptr == ICH_DMALIST_MAX)
929 qptr = 0;
930 }
931
932 sc->ptr_pcmi = qptr;
933 bus_space_write_1(sc->iot, sc->aud_ioh,
934 ICH_PCMI + ICH_LVI,
935 (sc->ptr_pcmi - 1) & ICH_LVI_MASK);
936 }
937
938 if (sts & ICH_BCIS && sc->sc_rintr)
939 sc->sc_rintr(sc->sc_rarg);
940
941 /* int ack */
942 bus_space_write_2(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_STS,
943 sts & (ICH_LVBCI | ICH_CELV | ICH_BCIS | ICH_FIFOE));
944 bus_space_write_2(sc->iot, sc->aud_ioh, ICH_GSTS, ICH_POINT);
945 ret++;
946 }
947
948 if (gsts & ICH_MIINT) {
949 sts = bus_space_read_2(sc->iot, sc->aud_ioh, ICH_MICI+ICH_STS);
950 DPRINTF(ICH_DEBUG_DMA,
951 ("auich_intr: ists=0x%x\n", sts));
952 if (sts & ICH_FIFOE)
953 printf("%s: fifo overrun\n", sc->sc_dev.dv_xname);
954
955 /* TODO mic input dma */
956
957 bus_space_write_2(sc->iot, sc->aud_ioh, ICH_GSTS, ICH_MIINT);
958 }
959
960 return ret;
961 }
962
963 int
964 auich_trigger_output(void *v, void *start, void *end, int blksize,
965 void (*intr)(void *), void *arg, struct audio_params *param)
966 {
967 struct auich_softc *sc = v;
968 struct auich_dmalist *q;
969 struct auich_dma *p;
970 size_t size;
971
972 DPRINTF(ICH_DEBUG_DMA,
973 ("auich_trigger_output(%p, %p, %d, %p, %p, %p)\n",
974 start, end, blksize, intr, arg, param));
975
976 sc->sc_pintr = intr;
977 sc->sc_parg = arg;
978
979 for (p = sc->sc_dmas; p && KERNADDR(p) != start; p = p->next)
980 ;
981 if (!p) {
982 printf("auich_trigger_output: bad addr %p\n", start);
983 return (EINVAL);
984 }
985
986 size = (size_t)((caddr_t)end - (caddr_t)start);
987
988 /*
989 * The logic behind this is:
990 * setup one buffer to play, then LVI dump out the rest
991 * to the scatter-gather chain.
992 */
993 sc->pcmo_start = DMAADDR(p);
994 sc->pcmo_p = sc->pcmo_start + blksize;
995 sc->pcmo_end = sc->pcmo_start + size;
996 sc->pcmo_blksize = blksize;
997
998 sc->ptr_pcmo = 0;
999 q = &sc->dmalist_pcmo[sc->ptr_pcmo];
1000 q->base = sc->pcmo_start;
1001 q->len = (blksize / 2) | ICH_DMAF_IOC;
1002 if (++sc->ptr_pcmo == ICH_DMALIST_MAX)
1003 sc->ptr_pcmo = 0;
1004
1005 bus_space_write_4(sc->iot, sc->aud_ioh, ICH_PCMO + ICH_BDBAR,
1006 sc->sc_cddma + ICH_PCMO_OFF(0));
1007 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMO + ICH_CTRL,
1008 ICH_IOCE | ICH_FEIE | ICH_LVBIE | ICH_RPBM);
1009 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMO + ICH_LVI,
1010 (sc->ptr_pcmo - 1) & ICH_LVI_MASK);
1011
1012 return (0);
1013 }
1014
1015 int
1016 auich_trigger_input(v, start, end, blksize, intr, arg, param)
1017 void *v;
1018 void *start, *end;
1019 int blksize;
1020 void (*intr)(void *);
1021 void *arg;
1022 struct audio_params *param;
1023 {
1024 struct auich_softc *sc = v;
1025 struct auich_dmalist *q;
1026 struct auich_dma *p;
1027 size_t size;
1028
1029 DPRINTF(ICH_DEBUG_DMA,
1030 ("auich_trigger_input(%p, %p, %d, %p, %p, %p)\n",
1031 start, end, blksize, intr, arg, param));
1032
1033 sc->sc_rintr = intr;
1034 sc->sc_rarg = arg;
1035
1036 for (p = sc->sc_dmas; p && KERNADDR(p) != start; p = p->next)
1037 ;
1038 if (!p) {
1039 printf("auich_trigger_input: bad addr %p\n", start);
1040 return (EINVAL);
1041 }
1042
1043 size = (size_t)((caddr_t)end - (caddr_t)start);
1044
1045 /*
1046 * The logic behind this is:
1047 * setup one buffer to play, then LVI dump out the rest
1048 * to the scatter-gather chain.
1049 */
1050 sc->pcmi_start = DMAADDR(p);
1051 sc->pcmi_p = sc->pcmi_start + blksize;
1052 sc->pcmi_end = sc->pcmi_start + size;
1053 sc->pcmi_blksize = blksize;
1054
1055 sc->ptr_pcmi = 0;
1056 q = &sc->dmalist_pcmi[sc->ptr_pcmi];
1057 q->base = sc->pcmi_start;
1058 q->len = (blksize / 2) | ICH_DMAF_IOC;
1059 if (++sc->ptr_pcmi == ICH_DMALIST_MAX)
1060 sc->ptr_pcmi = 0;
1061
1062 bus_space_write_4(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_BDBAR,
1063 sc->sc_cddma + ICH_PCMI_OFF(0));
1064 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CTRL,
1065 ICH_IOCE | ICH_FEIE | ICH_LVBIE | ICH_RPBM);
1066 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_LVI,
1067 (sc->ptr_pcmi - 1) & ICH_LVI_MASK);
1068
1069 return (0);
1070 }
1071
1072 int
1073 auich_allocmem(struct auich_softc *sc, size_t size, size_t align,
1074 struct auich_dma *p)
1075 {
1076 int error;
1077
1078 p->size = size;
1079 error = bus_dmamem_alloc(sc->dmat, p->size, align, 0,
1080 p->segs, sizeof(p->segs)/sizeof(p->segs[0]),
1081 &p->nsegs, BUS_DMA_NOWAIT);
1082 if (error)
1083 return (error);
1084
1085 error = bus_dmamem_map(sc->dmat, p->segs, p->nsegs, p->size,
1086 &p->addr, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
1087 if (error)
1088 goto free;
1089
1090 error = bus_dmamap_create(sc->dmat, p->size, 1, p->size,
1091 0, BUS_DMA_NOWAIT, &p->map);
1092 if (error)
1093 goto unmap;
1094
1095 error = bus_dmamap_load(sc->dmat, p->map, p->addr, p->size, NULL,
1096 BUS_DMA_NOWAIT);
1097 if (error)
1098 goto destroy;
1099 return (0);
1100
1101 destroy:
1102 bus_dmamap_destroy(sc->dmat, p->map);
1103 unmap:
1104 bus_dmamem_unmap(sc->dmat, p->addr, p->size);
1105 free:
1106 bus_dmamem_free(sc->dmat, p->segs, p->nsegs);
1107 return (error);
1108 }
1109
1110 int
1111 auich_freemem(struct auich_softc *sc, struct auich_dma *p)
1112 {
1113
1114 bus_dmamap_unload(sc->dmat, p->map);
1115 bus_dmamap_destroy(sc->dmat, p->map);
1116 bus_dmamem_unmap(sc->dmat, p->addr, p->size);
1117 bus_dmamem_free(sc->dmat, p->segs, p->nsegs);
1118 return (0);
1119 }
1120
1121 int
1122 auich_alloc_cdata(struct auich_softc *sc)
1123 {
1124 bus_dma_segment_t seg;
1125 int error, rseg;
1126
1127 /*
1128 * Allocate the control data structure, and create and load the
1129 * DMA map for it.
1130 */
1131 if ((error = bus_dmamem_alloc(sc->dmat,
1132 sizeof(struct auich_cdata),
1133 PAGE_SIZE, 0, &seg, 1, &rseg, 0)) != 0) {
1134 printf("%s: unable to allocate control data, error = %d\n",
1135 sc->sc_dev.dv_xname, error);
1136 goto fail_0;
1137 }
1138
1139 if ((error = bus_dmamem_map(sc->dmat, &seg, rseg,
1140 sizeof(struct auich_cdata),
1141 (caddr_t *) &sc->sc_cdata,
1142 BUS_DMA_COHERENT)) != 0) {
1143 printf("%s: unable to map control data, error = %d\n",
1144 sc->sc_dev.dv_xname, error);
1145 goto fail_1;
1146 }
1147
1148 if ((error = bus_dmamap_create(sc->dmat, sizeof(struct auich_cdata), 1,
1149 sizeof(struct auich_cdata), 0, 0,
1150 &sc->sc_cddmamap)) != 0) {
1151 printf("%s: unable to create control data DMA map, "
1152 "error = %d\n", sc->sc_dev.dv_xname, error);
1153 goto fail_2;
1154 }
1155
1156 if ((error = bus_dmamap_load(sc->dmat, sc->sc_cddmamap,
1157 sc->sc_cdata, sizeof(struct auich_cdata),
1158 NULL, 0)) != 0) {
1159 printf("%s: unable tp load control data DMA map, "
1160 "error = %d\n", sc->sc_dev.dv_xname, error);
1161 goto fail_3;
1162 }
1163
1164 return (0);
1165
1166 fail_3:
1167 bus_dmamap_destroy(sc->dmat, sc->sc_cddmamap);
1168 fail_2:
1169 bus_dmamem_unmap(sc->dmat, (caddr_t) sc->sc_cdata,
1170 sizeof(struct auich_cdata));
1171 fail_1:
1172 bus_dmamem_free(sc->dmat, &seg, rseg);
1173 fail_0:
1174 return (error);
1175 }
1176
1177 void
1178 auich_powerhook(int why, void *addr)
1179 {
1180 struct auich_softc *sc = (struct auich_softc *)addr;
1181
1182 switch (why) {
1183 case PWR_SUSPEND:
1184 case PWR_STANDBY:
1185 /* Power down */
1186 DPRINTF(1, ("%s: power down\n", sc->sc_dev.dv_xname));
1187 sc->sc_suspend = why;
1188 auich_read_codec(sc, AC97_REG_EXTENDED_STATUS, &sc->ext_status);
1189 break;
1190
1191 case PWR_RESUME:
1192 /* Wake up */
1193 DPRINTF(1, ("%s: power resume\n", sc->sc_dev.dv_xname));
1194 if (sc->sc_suspend == PWR_RESUME) {
1195 printf("%s: resume without suspend.\n",
1196 sc->sc_dev.dv_xname);
1197 sc->sc_suspend = why;
1198 return;
1199 }
1200 sc->sc_suspend = why;
1201 auich_reset_codec(sc);
1202 DELAY(1000);
1203 (sc->codec_if->vtbl->restore_ports)(sc->codec_if);
1204 auich_write_codec(sc, AC97_REG_EXTENDED_STATUS, sc->ext_status);
1205 break;
1206
1207 case PWR_SOFTSUSPEND:
1208 case PWR_SOFTSTANDBY:
1209 case PWR_SOFTRESUME:
1210 break;
1211 }
1212 }
1213