Home | History | Annotate | Line # | Download | only in pci
eap.c revision 1.102.28.1
      1  1.102.28.1    martin /*	$NetBSD: eap.c,v 1.102.28.1 2024/06/17 17:57:35 martin Exp $	*/
      2        1.28  augustss /*      $OpenBSD: eap.c,v 1.6 1999/10/05 19:24:42 csapuntz Exp $ */
      3         1.1  augustss 
      4         1.1  augustss /*
      5        1.93  jmcneill  * Copyright (c) 1998, 1999, 2002, 2008 The NetBSD Foundation, Inc.
      6         1.1  augustss  * All rights reserved.
      7         1.1  augustss  *
      8        1.19  augustss  * This code is derived from software contributed to The NetBSD Foundation
      9        1.93  jmcneill  * by Lennart Augustsson <augustss (at) NetBSD.org>, Charles M. Hannum,
     10        1.93  jmcneill  * Antti Kantee <pooka (at) NetBSD.org>, and Andrew Doran.
     11         1.1  augustss  *
     12         1.1  augustss  * Redistribution and use in source and binary forms, with or without
     13         1.1  augustss  * modification, are permitted provided that the following conditions
     14         1.1  augustss  * are met:
     15         1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     16         1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     17         1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     18         1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     19         1.1  augustss  *    documentation and/or other materials provided with the distribution.
     20         1.1  augustss  *
     21         1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     22         1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23         1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24         1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     25         1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26         1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27         1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28         1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29         1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30         1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31         1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     32        1.19  augustss  */
     33        1.22   mycroft 
     34        1.19  augustss /*
     35        1.19  augustss  * Debugging:   Andreas Gustafsson <gson (at) araneus.fi>
     36        1.19  augustss  * Testing:     Chuck Cranor       <chuck (at) maria.wustl.edu>
     37        1.19  augustss  *              Phil Nelson        <phil (at) cs.wwu.edu>
     38        1.31     soren  *
     39        1.31     soren  * ES1371/AC97:	Ezra Story         <ezy (at) panix.com>
     40         1.1  augustss  */
     41         1.1  augustss 
     42        1.76      kent /*
     43        1.31     soren  * Ensoniq ES1370 + AK4531 and ES1371/ES1373 + AC97
     44        1.31     soren  *
     45        1.31     soren  * Documentation links:
     46        1.76      kent  *
     47        1.84      chap  * ftp://ftp.alsa-project.org/pub/manuals/ensoniq/ (ES1370 and 1371 datasheets)
     48        1.84      chap  * http://web.archive.org/web/20040622012936/http://www.corbac.com/Data/Misc/es1373.ps.gz
     49        1.31     soren  * ftp://ftp.alsa-project.org/pub/manuals/asahi_kasei/4531.pdf
     50        1.35     soren  * ftp://download.intel.com/ial/scalableplatforms/audio/ac97r21.pdf
     51         1.1  augustss  */
     52        1.48     lukem 
     53       1.100     isaki /*
     54       1.100     isaki  * TODO:
     55       1.100     isaki  * - Remove DAC1 and secondary audio device support.
     56       1.100     isaki  */
     57       1.100     isaki 
     58        1.48     lukem #include <sys/cdefs.h>
     59  1.102.28.1    martin __KERNEL_RCSID(0, "$NetBSD: eap.c,v 1.102.28.1 2024/06/17 17:57:35 martin Exp $");
     60         1.1  augustss 
     61        1.29  augustss #include "midi.h"
     62        1.69  drochner #include "joy_eap.h"
     63        1.29  augustss 
     64         1.1  augustss #include <sys/param.h>
     65         1.1  augustss #include <sys/systm.h>
     66         1.1  augustss #include <sys/kernel.h>
     67        1.29  augustss #include <sys/fcntl.h>
     68        1.93  jmcneill #include <sys/kmem.h>
     69         1.1  augustss #include <sys/device.h>
     70        1.37  augustss #include <sys/proc.h>
     71        1.54     pooka #include <sys/select.h>
     72        1.93  jmcneill #include <sys/mutex.h>
     73        1.93  jmcneill #include <sys/bus.h>
     74        1.93  jmcneill #include <sys/audioio.h>
     75         1.1  augustss 
     76       1.100     isaki #include <dev/audio/audio_if.h>
     77        1.29  augustss #include <dev/midi_if.h>
     78         1.1  augustss 
     79        1.93  jmcneill #include <dev/pci/pcidevs.h>
     80        1.35     soren #include <dev/pci/eapreg.h>
     81        1.69  drochner #include <dev/pci/eapvar.h>
     82        1.35     soren 
     83         1.1  augustss #define	PCI_CBIO		0x10
     84         1.1  augustss 
     85        1.28  augustss /* Debug */
     86         1.1  augustss #ifdef AUDIO_DEBUG
     87         1.1  augustss #define DPRINTF(x)	if (eapdebug) printf x
     88         1.1  augustss #define DPRINTFN(n,x)	if (eapdebug>(n)) printf x
     89         1.1  augustss int	eapdebug = 0;
     90         1.1  augustss #else
     91         1.1  augustss #define DPRINTF(x)
     92         1.1  augustss #define DPRINTFN(n,x)
     93         1.1  augustss #endif
     94         1.1  augustss 
     95        1.91      cube static int	eap_match(device_t, cfdata_t, void *);
     96        1.91      cube static void	eap_attach(device_t, device_t, void *);
     97        1.91      cube static int	eap_detach(device_t, int);
     98        1.79   thorpej static int	eap_intr(void *);
     99         1.1  augustss 
    100        1.79   thorpej static int	eap_allocmem(struct eap_softc *, size_t, size_t,
    101        1.79   thorpej 			     struct eap_dma *);
    102        1.79   thorpej static int	eap_freemem(struct eap_softc *, struct eap_dma *);
    103         1.1  augustss 
    104        1.29  augustss #define EWRITE1(sc, r, x) bus_space_write_1((sc)->iot, (sc)->ioh, (r), (x))
    105         1.1  augustss #define EWRITE2(sc, r, x) bus_space_write_2((sc)->iot, (sc)->ioh, (r), (x))
    106         1.1  augustss #define EWRITE4(sc, r, x) bus_space_write_4((sc)->iot, (sc)->ioh, (r), (x))
    107        1.29  augustss #define EREAD1(sc, r) bus_space_read_1((sc)->iot, (sc)->ioh, (r))
    108         1.1  augustss #define EREAD2(sc, r) bus_space_read_2((sc)->iot, (sc)->ioh, (r))
    109         1.1  augustss #define EREAD4(sc, r) bus_space_read_4((sc)->iot, (sc)->ioh, (r))
    110         1.1  augustss 
    111        1.91      cube CFATTACH_DECL_NEW(eap, sizeof(struct eap_softc),
    112        1.63       mrg     eap_match, eap_attach, eap_detach, NULL);
    113         1.1  augustss 
    114        1.79   thorpej static int	eap_open(void *, int);
    115       1.100     isaki static int	eap_query_format(void *, struct audio_format_query *);
    116       1.100     isaki static int	eap_set_format(void *, int,
    117       1.100     isaki 			       const audio_params_t *, const audio_params_t *,
    118       1.100     isaki 			       audio_filter_reg_t *, audio_filter_reg_t *);
    119        1.79   thorpej static int	eap_trigger_output(void *, void *, void *, int,
    120        1.79   thorpej 				   void (*)(void *), void *,
    121        1.79   thorpej 				   const audio_params_t *);
    122        1.79   thorpej static int	eap_trigger_input(void *, void *, void *, int,
    123        1.79   thorpej 				  void (*)(void *), void *,
    124        1.79   thorpej 				  const audio_params_t *);
    125        1.79   thorpej static int	eap_halt_output(void *);
    126        1.79   thorpej static int	eap_halt_input(void *);
    127        1.79   thorpej static void	eap1370_write_codec(struct eap_softc *, int, int);
    128        1.79   thorpej static int	eap_getdev(void *, struct audio_device *);
    129        1.79   thorpej static int	eap1370_mixer_set_port(void *, mixer_ctrl_t *);
    130        1.79   thorpej static int	eap1370_mixer_get_port(void *, mixer_ctrl_t *);
    131        1.79   thorpej static int	eap1371_mixer_set_port(void *, mixer_ctrl_t *);
    132        1.79   thorpej static int	eap1371_mixer_get_port(void *, mixer_ctrl_t *);
    133        1.79   thorpej static int	eap1370_query_devinfo(void *, mixer_devinfo_t *);
    134        1.93  jmcneill static void	*eap_malloc(void *, int, size_t);
    135        1.93  jmcneill static void	eap_free(void *, void *, size_t);
    136        1.79   thorpej static int	eap_get_props(void *);
    137        1.79   thorpej static void	eap1370_set_mixer(struct eap_softc *, int, int);
    138        1.79   thorpej static uint32_t eap1371_src_wait(struct eap_softc *);
    139        1.79   thorpej static void	eap1371_set_adc_rate(struct eap_softc *, int);
    140        1.79   thorpej static void	eap1371_set_dac_rate(struct eap_instance *, int);
    141       1.102   msaitoh static int	eap1371_src_read(struct eap_softc *, u_int);
    142       1.102   msaitoh static void	eap1371_src_write(struct eap_softc *, u_int, int);
    143        1.79   thorpej static int	eap1371_query_devinfo(void *, mixer_devinfo_t *);
    144        1.79   thorpej 
    145        1.79   thorpej static int	eap1371_attach_codec(void *, struct ac97_codec_if *);
    146        1.79   thorpej static int	eap1371_read_codec(void *, uint8_t, uint16_t *);
    147        1.79   thorpej static int	eap1371_write_codec(void *, uint8_t, uint16_t );
    148        1.79   thorpej static int	eap1371_reset_codec(void *);
    149        1.93  jmcneill static void	eap_get_locks(void *, kmutex_t **, kmutex_t **);
    150        1.93  jmcneill 
    151        1.29  augustss #if NMIDI > 0
    152        1.79   thorpej static void	eap_midi_close(void *);
    153        1.79   thorpej static void	eap_midi_getinfo(void *, struct midi_info *);
    154        1.79   thorpej static int	eap_midi_open(void *, int, void (*)(void *, int),
    155        1.79   thorpej 			      void (*)(void *), void *);
    156        1.79   thorpej static int	eap_midi_output(void *, int);
    157        1.85      chap static void	eap_uart_txrdy(struct eap_softc *);
    158        1.29  augustss #endif
    159         1.1  augustss 
    160        1.79   thorpej static const struct audio_hw_if eap1370_hw_if = {
    161        1.99     isaki 	.open			= eap_open,
    162       1.100     isaki 	.query_format		= eap_query_format,
    163       1.100     isaki 	.set_format		= eap_set_format,
    164        1.99     isaki 	.halt_output		= eap_halt_output,
    165        1.99     isaki 	.halt_input		= eap_halt_input,
    166        1.99     isaki 	.getdev			= eap_getdev,
    167        1.99     isaki 	.set_port		= eap1370_mixer_set_port,
    168        1.99     isaki 	.get_port		= eap1370_mixer_get_port,
    169        1.99     isaki 	.query_devinfo		= eap1370_query_devinfo,
    170        1.99     isaki 	.allocm			= eap_malloc,
    171        1.99     isaki 	.freem			= eap_free,
    172        1.99     isaki 	.get_props		= eap_get_props,
    173        1.99     isaki 	.trigger_output		= eap_trigger_output,
    174        1.99     isaki 	.trigger_input		= eap_trigger_input,
    175        1.99     isaki 	.get_locks		= eap_get_locks,
    176         1.1  augustss };
    177         1.1  augustss 
    178        1.79   thorpej static const struct audio_hw_if eap1371_hw_if = {
    179        1.99     isaki 	.open			= eap_open,
    180       1.100     isaki 	.query_format		= eap_query_format,
    181       1.100     isaki 	.set_format		= eap_set_format,
    182        1.99     isaki 	.halt_output		= eap_halt_output,
    183        1.99     isaki 	.halt_input		= eap_halt_input,
    184        1.99     isaki 	.getdev			= eap_getdev,
    185        1.99     isaki 	.set_port		= eap1371_mixer_set_port,
    186        1.99     isaki 	.get_port		= eap1371_mixer_get_port,
    187        1.99     isaki 	.query_devinfo		= eap1371_query_devinfo,
    188        1.99     isaki 	.allocm			= eap_malloc,
    189        1.99     isaki 	.freem			= eap_free,
    190        1.99     isaki 	.get_props		= eap_get_props,
    191        1.99     isaki 	.trigger_output		= eap_trigger_output,
    192        1.99     isaki 	.trigger_input		= eap_trigger_input,
    193        1.99     isaki 	.get_locks		= eap_get_locks,
    194        1.31     soren };
    195        1.31     soren 
    196        1.29  augustss #if NMIDI > 0
    197        1.79   thorpej static const struct midi_hw_if eap_midi_hw_if = {
    198        1.29  augustss 	eap_midi_open,
    199        1.29  augustss 	eap_midi_close,
    200        1.29  augustss 	eap_midi_output,
    201        1.29  augustss 	eap_midi_getinfo,
    202        1.29  augustss 	0,				/* ioctl */
    203        1.93  jmcneill 	eap_get_locks,
    204        1.29  augustss };
    205        1.29  augustss #endif
    206        1.29  augustss 
    207        1.79   thorpej static struct audio_device eap_device = {
    208         1.1  augustss 	"Ensoniq AudioPCI",
    209         1.1  augustss 	"",
    210         1.1  augustss 	"eap"
    211         1.1  augustss };
    212         1.1  augustss 
    213       1.100     isaki static const struct audio_format eap_formats[] = {
    214       1.100     isaki 	{
    215       1.100     isaki 		.mode		= AUMODE_PLAY | AUMODE_RECORD,
    216       1.100     isaki 		.encoding	= AUDIO_ENCODING_SLINEAR_LE,
    217       1.100     isaki 		.validbits	= 16,
    218       1.100     isaki 		.precision	= 16,
    219       1.100     isaki 		.channels	= 2,
    220       1.100     isaki 		.channel_mask	= AUFMT_STEREO,
    221  1.102.28.1    martin 		.frequency_type	= 0,
    222       1.100     isaki 		.frequency	= { 4000, 48000 },
    223       1.100     isaki 	},
    224  1.102.28.1    martin 	{
    225  1.102.28.1    martin 		.mode		= AUMODE_PLAY | AUMODE_RECORD,
    226  1.102.28.1    martin 		.encoding	= AUDIO_ENCODING_SLINEAR_LE,
    227  1.102.28.1    martin 		.validbits	= 16,
    228  1.102.28.1    martin 		.precision	= 16,
    229  1.102.28.1    martin 		.channels	= 1,
    230  1.102.28.1    martin 		.channel_mask	= AUFMT_MONAURAL,
    231  1.102.28.1    martin 		.frequency_type	= 0,
    232  1.102.28.1    martin 		.frequency	= { 4000, 48000 },
    233  1.102.28.1    martin 	},
    234  1.102.28.1    martin 	{
    235  1.102.28.1    martin 		.mode		= AUMODE_PLAY | AUMODE_RECORD,
    236  1.102.28.1    martin 		.encoding	= AUDIO_ENCODING_ULINEAR_LE,
    237  1.102.28.1    martin 		.validbits	= 8,
    238  1.102.28.1    martin 		.precision	= 8,
    239  1.102.28.1    martin 		.channels	= 2,
    240  1.102.28.1    martin 		.channel_mask	= AUFMT_STEREO,
    241  1.102.28.1    martin 		.frequency_type	= 0,
    242  1.102.28.1    martin 		.frequency	= { 4000, 48000 },
    243  1.102.28.1    martin 	},
    244  1.102.28.1    martin 	{
    245  1.102.28.1    martin 		.mode		= AUMODE_PLAY | AUMODE_RECORD,
    246  1.102.28.1    martin 		.encoding	= AUDIO_ENCODING_ULINEAR_LE,
    247  1.102.28.1    martin 		.validbits	= 8,
    248  1.102.28.1    martin 		.precision	= 8,
    249  1.102.28.1    martin 		.channels	= 1,
    250  1.102.28.1    martin 		.channel_mask	= AUFMT_MONAURAL,
    251  1.102.28.1    martin 		.frequency_type	= 0,
    252  1.102.28.1    martin 		.frequency	= { 4000, 48000 },
    253  1.102.28.1    martin 	}
    254        1.75      kent };
    255       1.100     isaki #define EAP_NFORMATS	__arraycount(eap_formats)
    256        1.75      kent 
    257        1.79   thorpej static int
    258        1.91      cube eap_match(device_t parent, cfdata_t match, void *aux)
    259         1.1  augustss {
    260        1.76      kent 	struct pci_attach_args *pa;
    261         1.1  augustss 
    262        1.76      kent 	pa = (struct pci_attach_args *)aux;
    263        1.37  augustss 	switch (PCI_VENDOR(pa->pa_id)) {
    264        1.37  augustss 	case PCI_VENDOR_CREATIVELABS:
    265        1.37  augustss 		switch (PCI_PRODUCT(pa->pa_id)) {
    266        1.37  augustss 		case PCI_PRODUCT_CREATIVELABS_EV1938:
    267        1.76      kent 			return 1;
    268        1.37  augustss 		}
    269        1.37  augustss 		break;
    270        1.37  augustss 	case PCI_VENDOR_ENSONIQ:
    271        1.37  augustss 		switch (PCI_PRODUCT(pa->pa_id)) {
    272        1.37  augustss 		case PCI_PRODUCT_ENSONIQ_AUDIOPCI:
    273        1.37  augustss 		case PCI_PRODUCT_ENSONIQ_AUDIOPCI97:
    274        1.37  augustss 		case PCI_PRODUCT_ENSONIQ_CT5880:
    275        1.76      kent 			return 1;
    276        1.37  augustss 		}
    277        1.37  augustss 		break;
    278        1.37  augustss 	}
    279         1.1  augustss 
    280        1.76      kent 	return 0;
    281         1.1  augustss }
    282         1.1  augustss 
    283        1.79   thorpej static void
    284        1.44  augustss eap1370_write_codec(struct eap_softc *sc, int a, int d)
    285         1.1  augustss {
    286        1.30  augustss 	int icss, to;
    287        1.28  augustss 
    288        1.30  augustss 	to = EAP_WRITE_TIMEOUT;
    289         1.1  augustss 	do {
    290         1.9   mycroft 		icss = EREAD4(sc, EAP_ICSS);
    291         1.1  augustss 		DPRINTFN(5,("eap: codec %d prog: icss=0x%08x\n", a, icss));
    292        1.37  augustss 		if (!to--) {
    293        1.37  augustss 			printf("eap: timeout writing to codec\n");
    294        1.37  augustss 			return;
    295        1.37  augustss 		}
    296        1.30  augustss 	} while(icss & EAP_CWRIP);  /* XXX could use CSTAT here */
    297        1.37  augustss 	EWRITE4(sc, EAP_CODEC, EAP_SET_CODEC(a, d));
    298        1.28  augustss }
    299        1.28  augustss 
    300        1.37  augustss /*
    301        1.37  augustss  * Reading and writing the CODEC is very convoluted.  This mimics the
    302        1.38  augustss  * FreeBSD and Linux drivers.
    303        1.37  augustss  */
    304        1.37  augustss 
    305        1.81     perry static inline void
    306        1.88  christos eap1371_ready_codec(struct eap_softc *sc, uint8_t a, uint32_t wd)
    307        1.28  augustss {
    308        1.93  jmcneill 	int to;
    309        1.76      kent 	uint32_t src, t;
    310        1.37  augustss 
    311        1.37  augustss 	for (to = 0; to < EAP_WRITE_TIMEOUT; to++) {
    312        1.37  augustss 		if (!(EREAD4(sc, E1371_CODEC) & E1371_CODEC_WIP))
    313        1.37  augustss 			break;
    314        1.38  augustss 		delay(1);
    315        1.37  augustss 	}
    316        1.45   mycroft 	if (to >= EAP_WRITE_TIMEOUT)
    317        1.91      cube 		aprint_error_dev(sc->sc_dev,
    318        1.91      cube 		    "eap1371_ready_codec timeout 1\n");
    319        1.37  augustss 
    320        1.93  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    321        1.37  augustss 	src = eap1371_src_wait(sc) & E1371_SRC_CTLMASK;
    322        1.37  augustss 	EWRITE4(sc, E1371_SRC, src | E1371_SRC_STATE_OK);
    323        1.37  augustss 
    324        1.37  augustss 	for (to = 0; to < EAP_READ_TIMEOUT; to++) {
    325        1.37  augustss 		t = EREAD4(sc, E1371_SRC);
    326        1.37  augustss 		if ((t & E1371_SRC_STATE_MASK) == 0)
    327        1.37  augustss 			break;
    328        1.37  augustss 		delay(1);
    329        1.37  augustss 	}
    330        1.45   mycroft 	if (to >= EAP_READ_TIMEOUT)
    331        1.91      cube 		aprint_error_dev(sc->sc_dev,
    332        1.91      cube 		    "eap1371_ready_codec timeout 2\n");
    333        1.38  augustss 
    334        1.37  augustss 	for (to = 0; to < EAP_READ_TIMEOUT; to++) {
    335        1.37  augustss 		t = EREAD4(sc, E1371_SRC);
    336        1.37  augustss 		if ((t & E1371_SRC_STATE_MASK) == E1371_SRC_STATE_OK)
    337        1.37  augustss 			break;
    338        1.37  augustss 		delay(1);
    339        1.37  augustss 	}
    340        1.45   mycroft 	if (to >= EAP_READ_TIMEOUT)
    341        1.91      cube 		aprint_error_dev(sc->sc_dev,
    342        1.91      cube 		    "eap1371_ready_codec timeout 3\n");
    343        1.37  augustss 
    344        1.38  augustss 	EWRITE4(sc, E1371_CODEC, wd);
    345        1.28  augustss 
    346        1.28  augustss 	eap1371_src_wait(sc);
    347        1.37  augustss 	EWRITE4(sc, E1371_SRC, src);
    348        1.37  augustss 
    349        1.93  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    350        1.38  augustss }
    351        1.38  augustss 
    352        1.79   thorpej static int
    353        1.76      kent eap1371_read_codec(void *sc_, uint8_t a, uint16_t *d)
    354        1.38  augustss {
    355        1.76      kent 	struct eap_softc *sc;
    356        1.38  augustss 	int to;
    357        1.76      kent 	uint32_t t;
    358        1.38  augustss 
    359        1.76      kent 	sc = sc_;
    360        1.38  augustss 	eap1371_ready_codec(sc, a, E1371_SET_CODEC(a, 0) | E1371_CODEC_READ);
    361        1.28  augustss 
    362        1.28  augustss 	for (to = 0; to < EAP_WRITE_TIMEOUT; to++) {
    363        1.37  augustss 		if (!(EREAD4(sc, E1371_CODEC) & E1371_CODEC_WIP))
    364        1.28  augustss 			break;
    365        1.28  augustss 	}
    366        1.38  augustss 	if (to > EAP_WRITE_TIMEOUT)
    367        1.91      cube 		aprint_error_dev(sc->sc_dev,
    368        1.91      cube 		    "eap1371_read_codec timeout 1\n");
    369        1.28  augustss 
    370        1.37  augustss 	for (to = 0; to < EAP_WRITE_TIMEOUT; to++) {
    371        1.37  augustss 		t = EREAD4(sc, E1371_CODEC);
    372        1.37  augustss 		if (t & E1371_CODEC_VALID)
    373        1.37  augustss 			break;
    374        1.28  augustss 	}
    375        1.38  augustss 	if (to > EAP_WRITE_TIMEOUT)
    376        1.91      cube 		aprint_error_dev(sc->sc_dev, "eap1371_read_codec timeout 2\n");
    377        1.28  augustss 
    378        1.76      kent 	*d = (uint16_t)t;
    379        1.28  augustss 
    380        1.37  augustss 	DPRINTFN(10, ("eap1371: reading codec (%x) = %x\n", a, *d));
    381        1.28  augustss 
    382        1.76      kent 	return 0;
    383        1.28  augustss }
    384        1.28  augustss 
    385        1.79   thorpej static int
    386        1.76      kent eap1371_write_codec(void *sc_, uint8_t a, uint16_t d)
    387        1.28  augustss {
    388        1.76      kent 	struct eap_softc *sc;
    389        1.37  augustss 
    390        1.76      kent 	sc = sc_;
    391        1.38  augustss 	eap1371_ready_codec(sc, a, E1371_SET_CODEC(a, d));
    392        1.37  augustss 
    393        1.76      kent 	DPRINTFN(10, ("eap1371: writing codec %x --> %x\n", d, a));
    394        1.28  augustss 
    395        1.76      kent 	return 0;
    396        1.28  augustss }
    397        1.28  augustss 
    398        1.79   thorpej static uint32_t
    399        1.44  augustss eap1371_src_wait(struct eap_softc *sc)
    400        1.28  augustss {
    401        1.37  augustss 	int to;
    402        1.37  augustss 	u_int32_t src;
    403        1.76      kent 
    404        1.37  augustss 	for (to = 0; to < EAP_READ_TIMEOUT; to++) {
    405        1.37  augustss 		src = EREAD4(sc, E1371_SRC);
    406        1.37  augustss 		if (!(src & E1371_SRC_RBUSY))
    407        1.76      kent 			return src;
    408        1.37  augustss 		delay(1);
    409        1.37  augustss 	}
    410        1.91      cube 	aprint_error_dev(sc->sc_dev, "eap1371_src_wait timeout\n");
    411        1.76      kent 	return src;
    412        1.28  augustss }
    413        1.28  augustss 
    414        1.79   thorpej static int
    415       1.102   msaitoh eap1371_src_read(struct eap_softc *sc, u_int a)
    416        1.28  augustss {
    417        1.37  augustss 	int to;
    418        1.76      kent 	uint32_t src, t;
    419        1.28  augustss 
    420        1.37  augustss 	src = eap1371_src_wait(sc) & E1371_SRC_CTLMASK;
    421        1.37  augustss 	src |= E1371_SRC_ADDR(a);
    422        1.37  augustss 	EWRITE4(sc, E1371_SRC, src | E1371_SRC_STATE_OK);
    423        1.37  augustss 
    424        1.58       scw 	t = eap1371_src_wait(sc);
    425        1.58       scw 	if ((t & E1371_SRC_STATE_MASK) != E1371_SRC_STATE_OK) {
    426        1.45   mycroft 		for (to = 0; to < EAP_READ_TIMEOUT; to++) {
    427        1.45   mycroft 			t = EREAD4(sc, E1371_SRC);
    428        1.45   mycroft 			if ((t & E1371_SRC_STATE_MASK) == E1371_SRC_STATE_OK)
    429        1.45   mycroft 				break;
    430        1.45   mycroft 			delay(1);
    431        1.45   mycroft 		}
    432        1.37  augustss 	}
    433        1.45   mycroft 
    434        1.37  augustss 	EWRITE4(sc, E1371_SRC, src);
    435        1.37  augustss 
    436        1.37  augustss 	return t & E1371_SRC_DATAMASK;
    437        1.28  augustss }
    438        1.28  augustss 
    439        1.79   thorpej static void
    440       1.102   msaitoh eap1371_src_write(struct eap_softc *sc, u_int a, int d)
    441        1.28  augustss {
    442        1.76      kent 	uint32_t r;
    443        1.28  augustss 
    444        1.37  augustss 	r = eap1371_src_wait(sc) & E1371_SRC_CTLMASK;
    445        1.28  augustss 	r |= E1371_SRC_RAMWE | E1371_SRC_ADDR(a) | E1371_SRC_DATA(d);
    446        1.28  augustss 	EWRITE4(sc, E1371_SRC, r);
    447        1.28  augustss }
    448        1.76      kent 
    449        1.79   thorpej static void
    450        1.44  augustss eap1371_set_adc_rate(struct eap_softc *sc, int rate)
    451        1.28  augustss {
    452        1.28  augustss 	int freq, n, truncm;
    453        1.28  augustss 	int out;
    454        1.28  augustss 
    455        1.37  augustss 	/* Whatever, it works, so I'll leave it :) */
    456        1.28  augustss 
    457        1.37  augustss 	if (rate > 48000)
    458        1.37  augustss 		rate = 48000;
    459        1.37  augustss 	if (rate < 4000)
    460        1.37  augustss 		rate = 4000;
    461        1.37  augustss 	n = rate / 3000;
    462        1.37  augustss 	if ((1 << n) & SRC_MAGIC)
    463        1.37  augustss 		n--;
    464        1.37  augustss 	truncm = ((21 * n) - 1) | 1;
    465        1.37  augustss 	freq = ((48000 << 15) / rate) * n;
    466        1.37  augustss 	if (rate >= 24000) {
    467        1.37  augustss 		if (truncm > 239)
    468        1.37  augustss 			truncm = 239;
    469        1.28  augustss 		out = ESRC_SET_TRUNC((239 - truncm) / 2);
    470        1.37  augustss 	} else {
    471        1.37  augustss 		if (truncm > 119)
    472        1.37  augustss 			truncm = 119;
    473        1.28  augustss 		out = ESRC_SMF | ESRC_SET_TRUNC((119 - truncm) / 2);
    474        1.37  augustss 	}
    475        1.76      kent 	out |= ESRC_SET_N(n);
    476        1.93  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    477        1.37  augustss 	eap1371_src_write(sc, ESRC_ADC+ESRC_TRUNC_N, out);
    478        1.28  augustss 
    479        1.37  augustss 	out = eap1371_src_read(sc, ESRC_ADC+ESRC_IREGS) & 0xff;
    480        1.76      kent 	eap1371_src_write(sc, ESRC_ADC+ESRC_IREGS, out |
    481        1.28  augustss 			  ESRC_SET_VFI(freq >> 15));
    482        1.37  augustss 	eap1371_src_write(sc, ESRC_ADC+ESRC_VFF, freq & 0x7fff);
    483        1.37  augustss 	eap1371_src_write(sc, ESRC_ADC_VOLL, ESRC_SET_ADC_VOL(n));
    484        1.37  augustss 	eap1371_src_write(sc, ESRC_ADC_VOLR, ESRC_SET_ADC_VOL(n));
    485        1.93  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    486        1.28  augustss }
    487        1.28  augustss 
    488        1.79   thorpej static void
    489        1.54     pooka eap1371_set_dac_rate(struct eap_instance *ei, int rate)
    490        1.28  augustss {
    491        1.76      kent 	struct eap_softc *sc;
    492        1.76      kent 	int dac;
    493        1.28  augustss 	int freq, r;
    494        1.76      kent 
    495        1.54     pooka 	DPRINTFN(2, ("eap1371_set_dac_date: set rate for %d\n", ei->index));
    496        1.91      cube 	sc = device_private(ei->parent);
    497        1.76      kent 	dac = ei->index == EAP_DAC1 ? ESRC_DAC1 : ESRC_DAC2;
    498        1.54     pooka 
    499        1.37  augustss 	/* Whatever, it works, so I'll leave it :) */
    500        1.28  augustss 
    501        1.37  augustss 	if (rate > 48000)
    502        1.37  augustss 	    rate = 48000;
    503        1.37  augustss 	if (rate < 4000)
    504        1.37  augustss 	    rate = 4000;
    505        1.45   mycroft 	freq = ((rate << 15) + 1500) / 3000;
    506        1.76      kent 
    507        1.93  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    508        1.37  augustss 	eap1371_src_wait(sc);
    509        1.76      kent 	r = EREAD4(sc, E1371_SRC) & (E1371_SRC_DISABLE |
    510        1.37  augustss 	    E1371_SRC_DISP2 | E1371_SRC_DISP1 | E1371_SRC_DISREC);
    511        1.54     pooka 	r |= ei->index == EAP_DAC1 ? E1371_SRC_DISP1 : E1371_SRC_DISP2;
    512        1.37  augustss 	EWRITE4(sc, E1371_SRC, r);
    513        1.37  augustss 	r = eap1371_src_read(sc, dac + ESRC_IREGS) & 0x00ff;
    514        1.37  augustss 	eap1371_src_write(sc, dac + ESRC_IREGS, r | ((freq >> 5) & 0xfc00));
    515        1.37  augustss 	eap1371_src_write(sc, dac + ESRC_VFF, freq & 0x7fff);
    516        1.76      kent 	r = EREAD4(sc, E1371_SRC) & (E1371_SRC_DISABLE |
    517        1.37  augustss 	    E1371_SRC_DISP2 | E1371_SRC_DISP1 | E1371_SRC_DISREC);
    518        1.54     pooka 	r &= ~(ei->index == EAP_DAC1 ? E1371_SRC_DISP1 : E1371_SRC_DISP2);
    519        1.37  augustss 	EWRITE4(sc, E1371_SRC, r);
    520        1.93  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    521         1.1  augustss }
    522         1.1  augustss 
    523        1.79   thorpej static void
    524        1.91      cube eap_attach(device_t parent, device_t self, void *aux)
    525         1.1  augustss {
    526        1.76      kent 	struct eap_softc *sc;
    527        1.76      kent 	struct pci_attach_args *pa;
    528        1.76      kent 	pci_chipset_tag_t pc;
    529        1.73      yamt 	const struct audio_hw_if *eap_hw_if;
    530         1.1  augustss 	char const *intrstr;
    531         1.1  augustss 	pci_intr_handle_t ih;
    532         1.1  augustss 	pcireg_t csr;
    533        1.30  augustss 	char devinfo[256];
    534         1.1  augustss 	mixer_ctrl_t ctl;
    535        1.28  augustss 	int i;
    536        1.37  augustss 	int revision, ct5880;
    537        1.76      kent 	const char *revstr;
    538        1.69  drochner #if NJOY_EAP > 0
    539        1.69  drochner 	struct eap_gameport_args gpargs;
    540        1.69  drochner #endif
    541        1.95  christos 	char intrbuf[PCI_INTRSTR_LEN];
    542        1.37  augustss 
    543        1.91      cube 	sc = device_private(self);
    544        1.91      cube 	sc->sc_dev = self;
    545        1.76      kent 	pa = (struct pci_attach_args *)aux;
    546        1.76      kent 	pc = pa->pa_pc;
    547        1.76      kent 	revstr = "";
    548        1.64   thorpej 	aprint_naive(": Audio controller\n");
    549        1.64   thorpej 
    550        1.93  jmcneill 	mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NONE);
    551        1.94       mrg 	mutex_init(&sc->sc_intr_lock, MUTEX_DEFAULT, IPL_AUDIO);
    552        1.93  jmcneill 
    553        1.63       mrg 	/* Stash this away for detach */
    554        1.63       mrg 	sc->sc_pc = pc;
    555        1.63       mrg 
    556        1.37  augustss 	/* Flag if we're "creative" */
    557        1.37  augustss 	sc->sc_1371 = !(PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ENSONIQ &&
    558        1.37  augustss 			PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ENSONIQ_AUDIOPCI);
    559        1.28  augustss 
    560        1.61     pooka 	/*
    561        1.61     pooka 	 * The vendor and product ID's are quite "interesting". Just
    562        1.61     pooka 	 * trust the following and be happy.
    563        1.61     pooka 	 */
    564        1.68    itojun 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    565        1.36  augustss 	revision = PCI_REVISION(pa->pa_class);
    566        1.58       scw 	ct5880 = 0;
    567        1.37  augustss 	if (sc->sc_1371) {
    568        1.37  augustss 		if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ENSONIQ &&
    569        1.60     pooka 		    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ENSONIQ_CT5880) {
    570        1.37  augustss 			ct5880 = 1;
    571        1.60     pooka 			switch (revision) {
    572        1.61     pooka 			case EAP_CT5880_C: revstr = "CT5880-C "; break;
    573        1.61     pooka 			case EAP_CT5880_D: revstr = "CT5880-D "; break;
    574        1.61     pooka 			case EAP_CT5880_E: revstr = "CT5880-E "; break;
    575        1.60     pooka 			}
    576        1.60     pooka 		} else {
    577        1.60     pooka 			switch (revision) {
    578        1.61     pooka 			case EAP_EV1938_A: revstr = "EV1938-A "; break;
    579        1.61     pooka 			case EAP_ES1373_A: revstr = "ES1373-A "; break;
    580        1.61     pooka 			case EAP_ES1373_B: revstr = "ES1373-B "; break;
    581        1.61     pooka 			case EAP_CT5880_A: revstr = "CT5880-A "; ct5880=1;break;
    582        1.61     pooka 			case EAP_ES1373_8: revstr = "ES1373-8" ; ct5880=1;break;
    583        1.61     pooka 			case EAP_ES1371_B: revstr = "ES1371-B "; break;
    584        1.60     pooka 			}
    585        1.37  augustss 		}
    586        1.37  augustss 	}
    587        1.64   thorpej 	aprint_normal(": %s %s(rev. 0x%02x)\n", devinfo, revstr, revision);
    588         1.1  augustss 
    589         1.1  augustss 	/* Map I/O register */
    590         1.1  augustss 	if (pci_mapreg_map(pa, PCI_CBIO, PCI_MAPREG_TYPE_IO, 0,
    591        1.63       mrg 	      &sc->iot, &sc->ioh, NULL, &sc->iosz)) {
    592        1.91      cube 		aprint_error_dev(sc->sc_dev, "can't map i/o space\n");
    593         1.1  augustss 		return;
    594         1.1  augustss 	}
    595         1.1  augustss 
    596         1.1  augustss 	sc->sc_dmatag = pa->pa_dmat;
    597         1.1  augustss 
    598         1.1  augustss 	/* Enable the device. */
    599        1.63       mrg 	csr = pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
    600        1.63       mrg 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    601         1.1  augustss 		       csr | PCI_COMMAND_MASTER_ENABLE);
    602         1.1  augustss 
    603         1.1  augustss 	/* Map and establish the interrupt. */
    604        1.42  sommerfe 	if (pci_intr_map(pa, &ih)) {
    605        1.91      cube 		aprint_error_dev(sc->sc_dev, "couldn't map interrupt\n");
    606         1.1  augustss 		return;
    607         1.1  augustss 	}
    608        1.95  christos 	intrstr = pci_intr_string(pc, ih, intrbuf, sizeof(intrbuf));
    609        1.98  jdolecek 	sc->sc_ih = pci_intr_establish_xname(pc, ih, IPL_AUDIO, eap_intr, sc,
    610        1.98  jdolecek 	    device_xname(self));
    611         1.1  augustss 	if (sc->sc_ih == NULL) {
    612        1.91      cube 		aprint_error_dev(sc->sc_dev, "couldn't establish interrupt");
    613         1.1  augustss 		if (intrstr != NULL)
    614        1.91      cube 			aprint_error(" at %s", intrstr);
    615        1.91      cube 		aprint_error("\n");
    616         1.1  augustss 		return;
    617         1.1  augustss 	}
    618        1.91      cube 	aprint_normal_dev(self, "interrupting at %s\n", intrstr);
    619         1.1  augustss 
    620        1.91      cube 	sc->sc_ei[EAP_I1].parent = self;
    621        1.54     pooka 	sc->sc_ei[EAP_I1].index = EAP_DAC2;
    622        1.91      cube 	sc->sc_ei[EAP_I2].parent = self;
    623        1.54     pooka 	sc->sc_ei[EAP_I2].index = EAP_DAC1;
    624        1.54     pooka 
    625        1.28  augustss 	if (!sc->sc_1371) {
    626        1.28  augustss 		/* Enable interrupts and looping mode. */
    627        1.28  augustss 		/* enable the parts we need */
    628        1.28  augustss 		EWRITE4(sc, EAP_SIC, EAP_P2_INTR_EN | EAP_R1_INTR_EN);
    629        1.76      kent 		EWRITE4(sc, EAP_ICSC, EAP_CDC_EN);
    630        1.28  augustss 
    631        1.76      kent 		/* reset codec */
    632        1.76      kent 		/* normal operation */
    633        1.28  augustss 		/* select codec clocks */
    634        1.76      kent 		eap1370_write_codec(sc, AK_RESET, AK_PD);
    635        1.35     soren 		eap1370_write_codec(sc, AK_RESET, AK_PD | AK_NRST);
    636        1.35     soren 		eap1370_write_codec(sc, AK_CS, 0x0);
    637        1.28  augustss 
    638        1.31     soren 		eap_hw_if = &eap1370_hw_if;
    639        1.28  augustss 
    640        1.28  augustss 		/* Enable all relevant mixer switches. */
    641        1.77     fredb 		ctl.dev = EAP_INPUT_SOURCE;
    642        1.28  augustss 		ctl.type = AUDIO_MIXER_SET;
    643        1.76      kent 		ctl.un.mask = 1 << EAP_VOICE_VOL | 1 << EAP_FM_VOL |
    644        1.96   msaitoh 			1 << EAP_CD_VOL | 1 << EAP_LINE_VOL |
    645        1.96   msaitoh 			1 << EAP_AUX_VOL | 1 << EAP_MIC_VOL;
    646        1.57      gson 		eap_hw_if->set_port(&sc->sc_ei[EAP_I1], &ctl);
    647        1.28  augustss 
    648        1.28  augustss 		ctl.type = AUDIO_MIXER_VALUE;
    649        1.28  augustss 		ctl.un.value.num_channels = 1;
    650        1.76      kent 		for (ctl.dev = EAP_MASTER_VOL; ctl.dev < EAP_MIC_VOL;
    651        1.28  augustss 		     ctl.dev++) {
    652        1.28  augustss 			ctl.un.value.level[AUDIO_MIXER_LEVEL_MONO] = VOL_0DB;
    653        1.57      gson 			eap_hw_if->set_port(&sc->sc_ei[EAP_I1], &ctl);
    654        1.28  augustss 		}
    655        1.28  augustss 		ctl.un.value.level[AUDIO_MIXER_LEVEL_MONO] = 0;
    656        1.57      gson 		eap_hw_if->set_port(&sc->sc_ei[EAP_I1], &ctl);
    657        1.28  augustss 		ctl.dev = EAP_MIC_PREAMP;
    658        1.28  augustss 		ctl.type = AUDIO_MIXER_ENUM;
    659        1.28  augustss 		ctl.un.ord = 0;
    660        1.57      gson 		eap_hw_if->set_port(&sc->sc_ei[EAP_I1], &ctl);
    661        1.28  augustss 		ctl.dev = EAP_RECORD_SOURCE;
    662        1.28  augustss 		ctl.type = AUDIO_MIXER_SET;
    663        1.28  augustss 		ctl.un.mask = 1 << EAP_MIC_VOL;
    664        1.57      gson 		eap_hw_if->set_port(&sc->sc_ei[EAP_I1], &ctl);
    665        1.28  augustss 	} else {
    666        1.37  augustss 		/* clean slate */
    667        1.33     perry 
    668        1.76      kent 		EWRITE4(sc, EAP_SIC, 0);
    669        1.37  augustss 		EWRITE4(sc, EAP_ICSC, 0);
    670        1.37  augustss 		EWRITE4(sc, E1371_LEGACY, 0);
    671        1.37  augustss 
    672        1.37  augustss 		if (ct5880) {
    673        1.37  augustss 			EWRITE4(sc, EAP_ICSS, EAP_CT5880_AC97_RESET);
    674        1.37  augustss 			/* Let codec wake up */
    675        1.59     pooka 			delay(20000);
    676        1.33     perry 		}
    677        1.33     perry 
    678        1.76      kent 		/* Reset from es1371's perspective */
    679        1.76      kent 		EWRITE4(sc, EAP_ICSC, E1371_SYNC_RES);
    680        1.76      kent 		delay(20);
    681        1.76      kent 		EWRITE4(sc, EAP_ICSC, 0);
    682        1.28  augustss 
    683        1.37  augustss 		/*
    684        1.37  augustss 		 * Must properly reprogram sample rate converter,
    685        1.37  augustss 		 * or it locks up.  Set some defaults for the life of the
    686        1.37  augustss 		 * machine, and set up a sb default sample rate.
    687        1.37  augustss 		 */
    688        1.37  augustss 		EWRITE4(sc, E1371_SRC, E1371_SRC_DISABLE);
    689        1.37  augustss 		for (i = 0; i < 0x80; i++)
    690        1.37  augustss 			eap1371_src_write(sc, i, 0);
    691        1.28  augustss 		eap1371_src_write(sc, ESRC_DAC1+ESRC_TRUNC_N, ESRC_SET_N(16));
    692        1.28  augustss 		eap1371_src_write(sc, ESRC_DAC2+ESRC_TRUNC_N, ESRC_SET_N(16));
    693        1.37  augustss 		eap1371_src_write(sc, ESRC_DAC1+ESRC_IREGS, ESRC_SET_VFI(16));
    694        1.37  augustss 		eap1371_src_write(sc, ESRC_DAC2+ESRC_IREGS, ESRC_SET_VFI(16));
    695        1.37  augustss 		eap1371_src_write(sc, ESRC_ADC_VOLL, ESRC_SET_ADC_VOL(16));
    696        1.37  augustss 		eap1371_src_write(sc, ESRC_ADC_VOLR, ESRC_SET_ADC_VOL(16));
    697        1.28  augustss 		eap1371_src_write(sc, ESRC_DAC1_VOLL, ESRC_SET_DAC_VOLI(1));
    698        1.28  augustss 		eap1371_src_write(sc, ESRC_DAC1_VOLR, ESRC_SET_DAC_VOLI(1));
    699        1.28  augustss 		eap1371_src_write(sc, ESRC_DAC2_VOLL, ESRC_SET_DAC_VOLI(1));
    700        1.28  augustss 		eap1371_src_write(sc, ESRC_DAC2_VOLR, ESRC_SET_DAC_VOLI(1));
    701        1.37  augustss 		eap1371_set_adc_rate(sc, 22050);
    702        1.54     pooka 		eap1371_set_dac_rate(&sc->sc_ei[0], 22050);
    703        1.54     pooka 		eap1371_set_dac_rate(&sc->sc_ei[1], 22050);
    704        1.76      kent 
    705        1.37  augustss 		EWRITE4(sc, E1371_SRC, 0);
    706        1.28  augustss 
    707        1.37  augustss 		/* Reset codec */
    708        1.28  augustss 
    709        1.28  augustss 		/* Interrupt enable */
    710        1.28  augustss 		sc->host_if.arg = sc;
    711        1.28  augustss 		sc->host_if.attach = eap1371_attach_codec;
    712        1.28  augustss 		sc->host_if.read = eap1371_read_codec;
    713        1.28  augustss 		sc->host_if.write = eap1371_write_codec;
    714        1.28  augustss 		sc->host_if.reset = eap1371_reset_codec;
    715        1.76      kent 
    716        1.93  jmcneill 		if (ac97_attach(&sc->host_if, self, &sc->sc_lock) == 0) {
    717        1.28  augustss 			/* Interrupt enable */
    718        1.28  augustss 			EWRITE4(sc, EAP_SIC, EAP_P2_INTR_EN | EAP_R1_INTR_EN);
    719        1.28  augustss 		} else
    720        1.28  augustss 			return;
    721        1.28  augustss 
    722        1.31     soren 		eap_hw_if = &eap1371_hw_if;
    723        1.37  augustss 	}
    724         1.1  augustss 
    725        1.63       mrg 	sc->sc_ei[EAP_I1].ei_audiodev =
    726        1.91      cube 	    audio_attach_mi(eap_hw_if, &sc->sc_ei[EAP_I1], sc->sc_dev);
    727        1.54     pooka 
    728        1.54     pooka #ifdef EAP_USE_BOTH_DACS
    729        1.91      cube 	aprint_normal_dev(self, "attaching secondary DAC\n");
    730        1.63       mrg 	sc->sc_ei[EAP_I2].ei_audiodev =
    731        1.91      cube 	    audio_attach_mi(eap_hw_if, &sc->sc_ei[EAP_I2], sc->sc_dev);
    732        1.54     pooka #endif
    733        1.29  augustss 
    734        1.29  augustss #if NMIDI > 0
    735        1.91      cube 	sc->sc_mididev = midi_attach_mi(&eap_midi_hw_if, sc, sc->sc_dev);
    736        1.63       mrg #endif
    737        1.69  drochner 
    738        1.69  drochner #if NJOY_EAP > 0
    739        1.69  drochner 	if (sc->sc_1371) {
    740        1.69  drochner 		gpargs.gpa_iot = sc->iot;
    741        1.69  drochner 		gpargs.gpa_ioh = sc->ioh;
    742        1.91      cube 		sc->sc_gameport = eap_joy_attach(sc->sc_dev, &gpargs);
    743        1.69  drochner 	}
    744        1.69  drochner #endif
    745        1.63       mrg }
    746        1.63       mrg 
    747        1.79   thorpej static int
    748        1.91      cube eap_detach(device_t self, int flags)
    749        1.63       mrg {
    750        1.76      kent 	struct eap_softc *sc;
    751        1.71  drochner 	int res;
    752        1.69  drochner #if NJOY_EAP > 0
    753        1.69  drochner 	struct eap_gameport_args gpargs;
    754        1.63       mrg 
    755        1.91      cube 	sc = device_private(self);
    756        1.69  drochner 	if (sc->sc_gameport) {
    757        1.69  drochner 		gpargs.gpa_iot = sc->iot;
    758        1.69  drochner 		gpargs.gpa_ioh = sc->ioh;
    759        1.71  drochner 		res = eap_joy_detach(sc->sc_gameport, &gpargs);
    760        1.71  drochner 		if (res)
    761        1.76      kent 			return res;
    762        1.69  drochner 	}
    763        1.76      kent #else
    764        1.91      cube 	sc = device_private(self);
    765        1.69  drochner #endif
    766        1.63       mrg #if NMIDI > 0
    767        1.71  drochner 	if (sc->sc_mididev != NULL) {
    768        1.71  drochner 		res = config_detach(sc->sc_mididev, 0);
    769        1.71  drochner 		if (res)
    770        1.76      kent 			return res;
    771        1.71  drochner 	}
    772        1.63       mrg #endif
    773        1.63       mrg #ifdef EAP_USE_BOTH_DACS
    774        1.71  drochner 	if (sc->sc_ei[EAP_I2].ei_audiodev != NULL) {
    775        1.71  drochner 		res = config_detach(sc->sc_ei[EAP_I2].ei_audiodev, 0);
    776        1.71  drochner 		if (res)
    777        1.76      kent 			return res;
    778        1.71  drochner 	}
    779        1.29  augustss #endif
    780        1.71  drochner 	if (sc->sc_ei[EAP_I1].ei_audiodev != NULL) {
    781        1.71  drochner 		res = config_detach(sc->sc_ei[EAP_I1].ei_audiodev, 0);
    782        1.71  drochner 		if (res)
    783        1.76      kent 			return res;
    784        1.71  drochner 	}
    785        1.63       mrg 
    786        1.63       mrg 	bus_space_unmap(sc->iot, sc->ioh, sc->iosz);
    787        1.63       mrg 	pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
    788        1.93  jmcneill 	mutex_destroy(&sc->sc_lock);
    789        1.93  jmcneill 	mutex_destroy(&sc->sc_intr_lock);
    790        1.63       mrg 
    791        1.76      kent 	return 0;
    792         1.1  augustss }
    793         1.1  augustss 
    794        1.79   thorpej static int
    795        1.44  augustss eap1371_attach_codec(void *sc_, struct ac97_codec_if *codec_if)
    796        1.28  augustss {
    797        1.76      kent 	struct eap_softc *sc;
    798        1.76      kent 
    799        1.76      kent 	sc = sc_;
    800        1.28  augustss 	sc->codec_if = codec_if;
    801        1.76      kent 	return 0;
    802        1.28  augustss }
    803        1.28  augustss 
    804        1.79   thorpej static int
    805        1.44  augustss eap1371_reset_codec(void *sc_)
    806        1.28  augustss {
    807        1.76      kent 	struct eap_softc *sc;
    808        1.76      kent 	uint32_t icsc;
    809        1.35     soren 
    810        1.76      kent 	sc = sc_;
    811        1.93  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    812        1.37  augustss 	icsc = EREAD4(sc, EAP_ICSC);
    813        1.28  augustss 	EWRITE4(sc, EAP_ICSC, icsc | E1371_SYNC_RES);
    814        1.35     soren 	delay(20);
    815        1.28  augustss 	EWRITE4(sc, EAP_ICSC, icsc & ~E1371_SYNC_RES);
    816        1.32  augustss 	delay(1);
    817        1.93  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    818        1.28  augustss 
    819        1.72      kent 	return 0;
    820        1.28  augustss }
    821        1.28  augustss 
    822        1.79   thorpej static int
    823        1.44  augustss eap_intr(void *p)
    824         1.1  augustss {
    825        1.76      kent 	struct eap_softc *sc;
    826        1.76      kent 	uint32_t intr, sic;
    827         1.1  augustss 
    828        1.76      kent 	sc = p;
    829        1.93  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    830         1.9   mycroft 	intr = EREAD4(sc, EAP_ICSS);
    831        1.93  jmcneill 	if (!(intr & EAP_INTR)) {
    832        1.93  jmcneill 		mutex_spin_exit(&sc->sc_intr_lock);
    833        1.76      kent 		return 0;
    834        1.93  jmcneill 	}
    835         1.1  augustss 	sic = EREAD4(sc, EAP_SIC);
    836         1.1  augustss 	DPRINTFN(5, ("eap_intr: ICSS=0x%08x, SIC=0x%08x\n", intr, sic));
    837         1.9   mycroft 	if (intr & EAP_I_ADC) {
    838        1.45   mycroft #if 0
    839         1.9   mycroft 		/*
    840         1.9   mycroft 		 * XXX This is a hack!
    841         1.9   mycroft 		 * The EAP chip sometimes generates the recording interrupt
    842         1.9   mycroft 		 * while it is still transferring the data.  To make sure
    843         1.9   mycroft 		 * it has all arrived we busy wait until the count is right.
    844         1.9   mycroft 		 * The transfer we are waiting for is 8 longwords.
    845         1.9   mycroft 		 */
    846         1.9   mycroft 		int s, nw, n;
    847         1.9   mycroft 		EWRITE4(sc, EAP_MEMPAGE, EAP_ADC_PAGE);
    848         1.9   mycroft 		s = EREAD4(sc, EAP_ADC_CSR);
    849         1.9   mycroft 		nw = ((s & 0xffff) + 1) >> 2; /* # of words in DMA */
    850         1.9   mycroft 		n = 0;
    851         1.9   mycroft 		while (((EREAD4(sc, EAP_ADC_SIZE) >> 16) + 8) % nw == 0) {
    852         1.9   mycroft 			delay(10);
    853         1.9   mycroft 			if (++n > 100) {
    854        1.66       wiz 				printf("eapintr: DMA fix timeout");
    855         1.9   mycroft 				break;
    856         1.9   mycroft 			}
    857         1.9   mycroft 		}
    858         1.9   mycroft 		/* Continue with normal interrupt handling. */
    859        1.45   mycroft #endif
    860         1.1  augustss 		EWRITE4(sc, EAP_SIC, sic & ~EAP_R1_INTR_EN);
    861        1.45   mycroft 		EWRITE4(sc, EAP_SIC, sic | EAP_R1_INTR_EN);
    862         1.9   mycroft 		if (sc->sc_rintr)
    863         1.9   mycroft 			sc->sc_rintr(sc->sc_rarg);
    864         1.9   mycroft 	}
    865        1.54     pooka 
    866         1.9   mycroft 	if (intr & EAP_I_DAC2) {
    867         1.1  augustss 		EWRITE4(sc, EAP_SIC, sic & ~EAP_P2_INTR_EN);
    868        1.45   mycroft 		EWRITE4(sc, EAP_SIC, sic | EAP_P2_INTR_EN);
    869        1.54     pooka 		if (sc->sc_ei[EAP_DAC2].ei_pintr)
    870        1.54     pooka 			sc->sc_ei[EAP_DAC2].ei_pintr(sc->sc_ei[EAP_DAC2].ei_parg);
    871        1.54     pooka 	}
    872        1.54     pooka 
    873        1.54     pooka 	if (intr & EAP_I_DAC1) {
    874        1.54     pooka 		EWRITE4(sc, EAP_SIC, sic & ~EAP_P1_INTR_EN);
    875        1.54     pooka 		EWRITE4(sc, EAP_SIC, sic | EAP_P1_INTR_EN);
    876        1.54     pooka 		if (sc->sc_ei[EAP_DAC1].ei_pintr)
    877        1.54     pooka 			sc->sc_ei[EAP_DAC1].ei_pintr(sc->sc_ei[EAP_DAC1].ei_parg);
    878         1.9   mycroft 	}
    879        1.54     pooka 
    880        1.49      gson 	if (intr & EAP_I_MCCB)
    881        1.49      gson 		panic("eap_intr: unexpected MCCB interrupt");
    882        1.29  augustss #if NMIDI > 0
    883        1.84      chap 	if (intr & EAP_I_UART) {
    884        1.84      chap 		uint8_t ustat;
    885        1.76      kent 		uint32_t data;
    886        1.84      chap 
    887        1.84      chap 		ustat = EREAD1(sc, EAP_UART_STATUS);
    888        1.29  augustss 
    889        1.84      chap 		if (ustat & EAP_US_RXINT) {
    890        1.29  augustss 			while (EREAD1(sc, EAP_UART_STATUS) & EAP_US_RXRDY) {
    891        1.29  augustss 				data = EREAD1(sc, EAP_UART_DATA);
    892        1.36  augustss 				sc->sc_iintr(sc->sc_arg, data);
    893        1.29  augustss 			}
    894        1.29  augustss 		}
    895        1.84      chap 
    896        1.84      chap 		if (ustat & EAP_US_TXINT)
    897        1.84      chap 			eap_uart_txrdy(sc);
    898        1.29  augustss 	}
    899        1.29  augustss #endif
    900        1.93  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    901        1.76      kent 	return 1;
    902         1.1  augustss }
    903         1.1  augustss 
    904        1.79   thorpej static int
    905        1.44  augustss eap_allocmem(struct eap_softc *sc, size_t size, size_t align, struct eap_dma *p)
    906         1.1  augustss {
    907         1.1  augustss 	int error;
    908         1.1  augustss 
    909         1.1  augustss 	p->size = size;
    910         1.1  augustss 	error = bus_dmamem_alloc(sc->sc_dmatag, p->size, align, 0,
    911         1.1  augustss 				 p->segs, sizeof(p->segs)/sizeof(p->segs[0]),
    912        1.93  jmcneill 				 &p->nsegs, BUS_DMA_WAITOK);
    913         1.1  augustss 	if (error)
    914        1.76      kent 		return error;
    915         1.1  augustss 
    916        1.76      kent 	error = bus_dmamem_map(sc->sc_dmatag, p->segs, p->nsegs, p->size,
    917        1.93  jmcneill 			       &p->addr, BUS_DMA_WAITOK|BUS_DMA_COHERENT);
    918         1.1  augustss 	if (error)
    919         1.1  augustss 		goto free;
    920         1.1  augustss 
    921         1.1  augustss 	error = bus_dmamap_create(sc->sc_dmatag, p->size, 1, p->size,
    922        1.93  jmcneill 				  0, BUS_DMA_WAITOK, &p->map);
    923         1.1  augustss 	if (error)
    924         1.1  augustss 		goto unmap;
    925         1.1  augustss 
    926        1.76      kent 	error = bus_dmamap_load(sc->sc_dmatag, p->map, p->addr, p->size, NULL,
    927        1.93  jmcneill 				BUS_DMA_WAITOK);
    928         1.1  augustss 	if (error)
    929         1.1  augustss 		goto destroy;
    930         1.1  augustss 	return (0);
    931         1.1  augustss 
    932         1.1  augustss destroy:
    933         1.1  augustss 	bus_dmamap_destroy(sc->sc_dmatag, p->map);
    934         1.1  augustss unmap:
    935         1.1  augustss 	bus_dmamem_unmap(sc->sc_dmatag, p->addr, p->size);
    936         1.1  augustss free:
    937         1.1  augustss 	bus_dmamem_free(sc->sc_dmatag, p->segs, p->nsegs);
    938        1.76      kent 	return error;
    939         1.1  augustss }
    940         1.1  augustss 
    941        1.79   thorpej static int
    942        1.44  augustss eap_freemem(struct eap_softc *sc, struct eap_dma *p)
    943         1.1  augustss {
    944        1.76      kent 
    945         1.1  augustss 	bus_dmamap_unload(sc->sc_dmatag, p->map);
    946         1.1  augustss 	bus_dmamap_destroy(sc->sc_dmatag, p->map);
    947         1.1  augustss 	bus_dmamem_unmap(sc->sc_dmatag, p->addr, p->size);
    948         1.1  augustss 	bus_dmamem_free(sc->sc_dmatag, p->segs, p->nsegs);
    949        1.76      kent 	return 0;
    950         1.1  augustss }
    951         1.1  augustss 
    952        1.79   thorpej static int
    953        1.44  augustss eap_open(void *addr, int flags)
    954         1.1  augustss {
    955        1.76      kent 	struct eap_instance *ei;
    956        1.54     pooka 
    957        1.76      kent 	ei = addr;
    958        1.54     pooka 	/* there is only one ADC */
    959        1.70   mycroft 	if (ei->index == EAP_I2 && flags & FREAD)
    960        1.76      kent 		return EOPNOTSUPP;
    961        1.54     pooka 
    962        1.76      kent 	return 0;
    963         1.1  augustss }
    964         1.1  augustss 
    965        1.79   thorpej static int
    966       1.100     isaki eap_query_format(void *addr, struct audio_format_query *afp)
    967         1.1  augustss {
    968        1.76      kent 
    969       1.100     isaki 	return audio_query_format(eap_formats, EAP_NFORMATS, afp);
    970         1.1  augustss }
    971         1.1  augustss 
    972        1.79   thorpej static int
    973       1.100     isaki eap_set_format(void *addr, int setmode,
    974       1.100     isaki 	       const audio_params_t *play, const audio_params_t *rec,
    975       1.100     isaki 	       audio_filter_reg_t *pfil, audio_filter_reg_t *rfil)
    976         1.1  augustss {
    977        1.76      kent 	struct eap_instance *ei;
    978        1.76      kent 	struct eap_softc *sc;
    979        1.76      kent 	uint32_t div;
    980         1.9   mycroft 
    981        1.76      kent 	ei = addr;
    982        1.91      cube 	sc = device_private(ei->parent);
    983         1.1  augustss 
    984        1.37  augustss 	if (sc->sc_1371) {
    985        1.54     pooka 		eap1371_set_dac_rate(ei, play->sample_rate);
    986        1.28  augustss 		eap1371_set_adc_rate(sc, rec->sample_rate);
    987        1.62     pooka 	} else if (ei->index == EAP_DAC2) {
    988        1.37  augustss 		/* Set the speed */
    989       1.100     isaki 		DPRINTFN(2, ("%s: old ICSC = 0x%08x\n", __func__,
    990        1.37  augustss 			     EREAD4(sc, EAP_ICSC)));
    991        1.37  augustss 		div = EREAD4(sc, EAP_ICSC) & ~EAP_PCLKBITS;
    992        1.37  augustss 		/*
    993       1.100     isaki 		 * *play and *rec are the identical on es1370 because
    994       1.100     isaki 		 * !AUDIO_PROP_INDEPENDENT.
    995       1.100     isaki 		 */
    996       1.100     isaki 
    997       1.100     isaki 		/*
    998        1.37  augustss 		 * XXX
    999        1.76      kent 		 * The -2 isn't documented, but seemed to make the wall
   1000        1.37  augustss 		 * time match
   1001        1.37  augustss 		 * what I expect.  - mycroft
   1002        1.37  augustss 		 */
   1003       1.100     isaki 		div |= EAP_SET_PCLKDIV(EAP_XTAL_FREQ / play->sample_rate - 2);
   1004        1.49      gson #if 0
   1005        1.37  augustss 		div |= EAP_CCB_INTRM;
   1006        1.49      gson #else
   1007        1.49      gson 		/*
   1008        1.49      gson 		 * It is not obvious how to acknowledge MCCB interrupts, so
   1009        1.49      gson 		 * we had better not enable them.
   1010        1.49      gson 		 */
   1011        1.49      gson #endif
   1012        1.62     pooka 		EWRITE4(sc, EAP_ICSC, div);
   1013       1.100     isaki 		DPRINTFN(2, ("%s: set ICSC = 0x%08x\n", __func__, div));
   1014        1.62     pooka 	} else {
   1015        1.62     pooka 		/*
   1016        1.62     pooka 		 * The FM DAC has only a few fixed-frequency choises, so
   1017        1.62     pooka 		 * pick out the best candidate.
   1018        1.62     pooka 		 */
   1019        1.62     pooka 		div = EREAD4(sc, EAP_ICSC);
   1020       1.100     isaki 		DPRINTFN(2, ("%s: old ICSC = 0x%08x\n", __func__, div));
   1021        1.62     pooka 
   1022        1.62     pooka 		div &= ~EAP_WTSRSEL;
   1023       1.100     isaki 		if (play->sample_rate == 5512)
   1024        1.62     pooka 			div |= EAP_WTSRSEL_5;
   1025       1.100     isaki 		else if (play->sample_rate == 11025)
   1026        1.62     pooka 			div |= EAP_WTSRSEL_11;
   1027       1.100     isaki 		else if (play->sample_rate == 22050)
   1028        1.62     pooka 			div |= EAP_WTSRSEL_22;
   1029        1.62     pooka 		else
   1030        1.62     pooka 			div |= EAP_WTSRSEL_44;
   1031        1.62     pooka 
   1032        1.37  augustss 		EWRITE4(sc, EAP_ICSC, div);
   1033       1.100     isaki 		DPRINTFN(2, ("%s: set ICSC = 0x%08x\n", __func__, div));
   1034        1.37  augustss 	}
   1035         1.1  augustss 
   1036        1.76      kent 	return 0;
   1037         1.1  augustss }
   1038         1.1  augustss 
   1039        1.79   thorpej static int
   1040        1.44  augustss eap_trigger_output(
   1041        1.44  augustss 	void *addr,
   1042        1.44  augustss 	void *start,
   1043        1.44  augustss 	void *end,
   1044        1.44  augustss 	int blksize,
   1045        1.44  augustss 	void (*intr)(void *),
   1046        1.44  augustss 	void *arg,
   1047        1.75      kent 	const audio_params_t *param)
   1048         1.1  augustss {
   1049        1.76      kent 	struct eap_instance *ei;
   1050        1.76      kent 	struct eap_softc *sc;
   1051         1.1  augustss 	struct eap_dma *p;
   1052        1.76      kent 	uint32_t icsc, sic;
   1053         1.9   mycroft 	int sampshift;
   1054         1.1  augustss 
   1055        1.76      kent 	ei = addr;
   1056        1.91      cube 	sc = device_private(ei->parent);
   1057         1.9   mycroft #ifdef DIAGNOSTIC
   1058        1.54     pooka 	if (ei->ei_prun)
   1059         1.9   mycroft 		panic("eap_trigger_output: already running");
   1060        1.54     pooka 	ei->ei_prun = 1;
   1061         1.9   mycroft #endif
   1062         1.9   mycroft 
   1063        1.28  augustss 	DPRINTFN(1, ("eap_trigger_output: sc=%p start=%p end=%p "
   1064        1.37  augustss 	    "blksize=%d intr=%p(%p)\n", addr, start, end, blksize, intr, arg));
   1065        1.54     pooka 	ei->ei_pintr = intr;
   1066        1.54     pooka 	ei->ei_parg = arg;
   1067         1.9   mycroft 
   1068        1.24   mycroft 	sic = EREAD4(sc, EAP_SIC);
   1069        1.54     pooka 	sic &= ~(EAP_S_EB(ei->index) | EAP_S_MB(ei->index) | EAP_INC_BITS);
   1070        1.54     pooka 
   1071        1.54     pooka 	if (ei->index == EAP_DAC2)
   1072        1.54     pooka 		sic |= EAP_SET_P2_ST_INC(0)
   1073        1.75      kent 		    | EAP_SET_P2_END_INC(param->precision / 8);
   1074        1.54     pooka 
   1075         1.9   mycroft 	sampshift = 0;
   1076        1.75      kent 	if (param->precision == 16) {
   1077        1.54     pooka 		sic |= EAP_S_EB(ei->index);
   1078         1.9   mycroft 		sampshift++;
   1079         1.9   mycroft 	}
   1080         1.9   mycroft 	if (param->channels == 2) {
   1081        1.54     pooka 		sic |= EAP_S_MB(ei->index);
   1082         1.9   mycroft 		sampshift++;
   1083         1.1  augustss 	}
   1084        1.54     pooka 	EWRITE4(sc, EAP_SIC, sic & ~EAP_P_INTR_EN(ei->index));
   1085        1.54     pooka 	EWRITE4(sc, EAP_SIC, sic | EAP_P_INTR_EN(ei->index));
   1086         1.1  augustss 
   1087         1.9   mycroft 	for (p = sc->sc_dmas; p && KERNADDR(p) != start; p = p->next)
   1088        1.76      kent 		continue;
   1089         1.1  augustss 	if (!p) {
   1090         1.9   mycroft 		printf("eap_trigger_output: bad addr %p\n", start);
   1091        1.76      kent 		return EINVAL;
   1092         1.1  augustss 	}
   1093         1.9   mycroft 
   1094        1.54     pooka 	if (ei->index == EAP_DAC2) {
   1095        1.55   thorpej 		DPRINTF(("eap_trigger_output: DAC2_ADDR=0x%x, DAC2_SIZE=0x%x\n",
   1096        1.76      kent 			 (int)DMAADDR(p),
   1097        1.54     pooka 			 (int)EAP_SET_SIZE(0,
   1098        1.54     pooka 			 (((char *)end - (char *)start) >> 2) - 1)));
   1099        1.54     pooka 		EWRITE4(sc, EAP_MEMPAGE, EAP_DAC_PAGE);
   1100        1.54     pooka 		EWRITE4(sc, EAP_DAC2_ADDR, DMAADDR(p));
   1101        1.76      kent 		EWRITE4(sc, EAP_DAC2_SIZE,
   1102        1.76      kent 			EAP_SET_SIZE(0,
   1103        1.54     pooka 			((char *)end - (char *)start) >> 2) - 1);
   1104        1.54     pooka 		EWRITE4(sc, EAP_DAC2_CSR, (blksize >> sampshift) - 1);
   1105        1.54     pooka 	} else if (ei->index == EAP_DAC1) {
   1106        1.55   thorpej 		DPRINTF(("eap_trigger_output: DAC1_ADDR=0x%x, DAC1_SIZE=0x%x\n",
   1107        1.76      kent 			 (int)DMAADDR(p),
   1108        1.54     pooka 			 (int)EAP_SET_SIZE(0,
   1109        1.54     pooka 			 (((char *)end - (char *)start) >> 2) - 1)));
   1110        1.54     pooka 		EWRITE4(sc, EAP_MEMPAGE, EAP_DAC_PAGE);
   1111        1.54     pooka 		EWRITE4(sc, EAP_DAC1_ADDR, DMAADDR(p));
   1112        1.76      kent 		EWRITE4(sc, EAP_DAC1_SIZE,
   1113        1.76      kent 			EAP_SET_SIZE(0,
   1114        1.54     pooka 			((char *)end - (char *)start) >> 2) - 1);
   1115        1.54     pooka 		EWRITE4(sc, EAP_DAC1_CSR, (blksize >> sampshift) - 1);
   1116        1.54     pooka 	}
   1117        1.54     pooka #ifdef DIAGNOSTIC
   1118        1.54     pooka 	else
   1119        1.54     pooka 		panic("eap_trigger_output: impossible instance %d", ei->index);
   1120        1.54     pooka #endif
   1121        1.24   mycroft 
   1122        1.45   mycroft 	if (sc->sc_1371)
   1123        1.45   mycroft 		EWRITE4(sc, E1371_SRC, 0);
   1124        1.45   mycroft 
   1125        1.45   mycroft 	icsc = EREAD4(sc, EAP_ICSC);
   1126        1.56     pooka 	icsc |= EAP_DAC_EN(ei->index);
   1127        1.53     pooka 	EWRITE4(sc, EAP_ICSC, icsc);
   1128        1.24   mycroft 
   1129        1.24   mycroft 	DPRINTFN(1, ("eap_trigger_output: set ICSC = 0x%08x\n", icsc));
   1130         1.9   mycroft 
   1131        1.76      kent 	return 0;
   1132         1.1  augustss }
   1133         1.1  augustss 
   1134        1.79   thorpej static int
   1135        1.44  augustss eap_trigger_input(
   1136        1.44  augustss 	void *addr,
   1137        1.44  augustss 	void *start,
   1138        1.44  augustss 	void *end,
   1139        1.44  augustss 	int blksize,
   1140        1.44  augustss 	void (*intr)(void *),
   1141        1.44  augustss 	void *arg,
   1142        1.75      kent 	const audio_params_t *param)
   1143         1.1  augustss {
   1144        1.76      kent 	struct eap_instance *ei;
   1145        1.76      kent 	struct eap_softc *sc;
   1146         1.9   mycroft 	struct eap_dma *p;
   1147        1.76      kent 	uint32_t icsc, sic;
   1148         1.9   mycroft 	int sampshift;
   1149         1.1  augustss 
   1150        1.76      kent 	ei = addr;
   1151        1.91      cube 	sc = device_private(ei->parent);
   1152         1.9   mycroft #ifdef DIAGNOSTIC
   1153         1.9   mycroft 	if (sc->sc_rrun)
   1154         1.9   mycroft 		panic("eap_trigger_input: already running");
   1155        1.10   mycroft 	sc->sc_rrun = 1;
   1156         1.1  augustss #endif
   1157         1.9   mycroft 
   1158        1.78     perry 	DPRINTFN(1, ("eap_trigger_input: ei=%p start=%p end=%p blksize=%d intr=%p(%p)\n",
   1159        1.10   mycroft 	    addr, start, end, blksize, intr, arg));
   1160         1.9   mycroft 	sc->sc_rintr = intr;
   1161         1.9   mycroft 	sc->sc_rarg = arg;
   1162         1.9   mycroft 
   1163        1.24   mycroft 	sic = EREAD4(sc, EAP_SIC);
   1164        1.24   mycroft 	sic &= ~(EAP_R1_S_EB | EAP_R1_S_MB);
   1165         1.9   mycroft 	sampshift = 0;
   1166        1.75      kent 	if (param->precision == 16) {
   1167        1.24   mycroft 		sic |= EAP_R1_S_EB;
   1168         1.9   mycroft 		sampshift++;
   1169         1.1  augustss 	}
   1170         1.9   mycroft 	if (param->channels == 2) {
   1171        1.24   mycroft 		sic |= EAP_R1_S_MB;
   1172         1.9   mycroft 		sampshift++;
   1173         1.9   mycroft 	}
   1174        1.45   mycroft 	EWRITE4(sc, EAP_SIC, sic & ~EAP_R1_INTR_EN);
   1175        1.45   mycroft 	EWRITE4(sc, EAP_SIC, sic | EAP_R1_INTR_EN);
   1176         1.9   mycroft 
   1177         1.9   mycroft 	for (p = sc->sc_dmas; p && KERNADDR(p) != start; p = p->next)
   1178        1.76      kent 		continue;
   1179         1.9   mycroft 	if (!p) {
   1180         1.9   mycroft 		printf("eap_trigger_input: bad addr %p\n", start);
   1181         1.9   mycroft 		return (EINVAL);
   1182         1.9   mycroft 	}
   1183         1.9   mycroft 
   1184         1.9   mycroft 	DPRINTF(("eap_trigger_input: ADC_ADDR=0x%x, ADC_SIZE=0x%x\n",
   1185        1.76      kent 		 (int)DMAADDR(p),
   1186        1.46   reinoud 		 (int)EAP_SET_SIZE(0, (((char *)end - (char *)start) >> 2) - 1)));
   1187         1.9   mycroft 	EWRITE4(sc, EAP_MEMPAGE, EAP_ADC_PAGE);
   1188         1.9   mycroft 	EWRITE4(sc, EAP_ADC_ADDR, DMAADDR(p));
   1189        1.76      kent 	EWRITE4(sc, EAP_ADC_SIZE,
   1190        1.20  augustss 		EAP_SET_SIZE(0, (((char *)end - (char *)start) >> 2) - 1));
   1191         1.1  augustss 
   1192        1.45   mycroft 	EWRITE4(sc, EAP_ADC_CSR, (blksize >> sampshift) - 1);
   1193        1.24   mycroft 
   1194        1.45   mycroft 	if (sc->sc_1371)
   1195        1.45   mycroft 		EWRITE4(sc, E1371_SRC, 0);
   1196        1.45   mycroft 
   1197        1.45   mycroft 	icsc = EREAD4(sc, EAP_ICSC);
   1198        1.53     pooka 	icsc |= EAP_ADC_EN;
   1199        1.53     pooka 	EWRITE4(sc, EAP_ICSC, icsc);
   1200        1.24   mycroft 
   1201        1.24   mycroft 	DPRINTFN(1, ("eap_trigger_input: set ICSC = 0x%08x\n", icsc));
   1202         1.9   mycroft 
   1203        1.76      kent 	return 0;
   1204         1.1  augustss }
   1205         1.1  augustss 
   1206        1.79   thorpej static int
   1207        1.44  augustss eap_halt_output(void *addr)
   1208         1.1  augustss {
   1209        1.76      kent 	struct eap_instance *ei;
   1210        1.76      kent 	struct eap_softc *sc;
   1211        1.76      kent 	uint32_t icsc;
   1212        1.54     pooka 
   1213         1.9   mycroft 	DPRINTF(("eap: eap_halt_output\n"));
   1214        1.76      kent 	ei = addr;
   1215        1.91      cube 	sc = device_private(ei->parent);
   1216        1.24   mycroft 	icsc = EREAD4(sc, EAP_ICSC);
   1217        1.56     pooka 	EWRITE4(sc, EAP_ICSC, icsc & ~(EAP_DAC_EN(ei->index)));
   1218        1.70   mycroft 	ei->ei_pintr = 0;
   1219         1.9   mycroft #ifdef DIAGNOSTIC
   1220        1.54     pooka 	ei->ei_prun = 0;
   1221         1.9   mycroft #endif
   1222        1.54     pooka 
   1223        1.76      kent 	return 0;
   1224         1.1  augustss }
   1225         1.1  augustss 
   1226        1.79   thorpej static int
   1227        1.44  augustss eap_halt_input(void *addr)
   1228         1.1  augustss {
   1229        1.76      kent 	struct eap_instance *ei;
   1230        1.76      kent 	struct eap_softc *sc;
   1231        1.76      kent 	uint32_t icsc;
   1232        1.76      kent 
   1233        1.54     pooka #define EAP_USE_FMDAC_ALSO
   1234         1.9   mycroft 	DPRINTF(("eap: eap_halt_input\n"));
   1235        1.76      kent 	ei = addr;
   1236        1.91      cube 	sc = device_private(ei->parent);
   1237        1.24   mycroft 	icsc = EREAD4(sc, EAP_ICSC);
   1238        1.24   mycroft 	EWRITE4(sc, EAP_ICSC, icsc & ~EAP_ADC_EN);
   1239        1.70   mycroft 	sc->sc_rintr = 0;
   1240         1.9   mycroft #ifdef DIAGNOSTIC
   1241         1.1  augustss 	sc->sc_rrun = 0;
   1242         1.9   mycroft #endif
   1243        1.70   mycroft 
   1244        1.76      kent 	return 0;
   1245         1.1  augustss }
   1246         1.1  augustss 
   1247        1.79   thorpej static int
   1248        1.88  christos eap_getdev(void *addr, struct audio_device *retp)
   1249         1.1  augustss {
   1250        1.76      kent 
   1251         1.1  augustss 	*retp = eap_device;
   1252        1.76      kent 	return 0;
   1253         1.1  augustss }
   1254         1.1  augustss 
   1255        1.79   thorpej static int
   1256        1.44  augustss eap1371_mixer_set_port(void *addr, mixer_ctrl_t *cp)
   1257        1.28  augustss {
   1258        1.76      kent 	struct eap_instance *ei;
   1259        1.76      kent 	struct eap_softc *sc;
   1260        1.28  augustss 
   1261        1.76      kent 	ei = addr;
   1262        1.91      cube 	sc = device_private(ei->parent);
   1263        1.76      kent 	return sc->codec_if->vtbl->mixer_set_port(sc->codec_if, cp);
   1264        1.28  augustss }
   1265        1.28  augustss 
   1266        1.79   thorpej static int
   1267        1.44  augustss eap1371_mixer_get_port(void *addr, mixer_ctrl_t *cp)
   1268        1.28  augustss {
   1269        1.76      kent 	struct eap_instance *ei;
   1270        1.76      kent 	struct eap_softc *sc;
   1271        1.28  augustss 
   1272        1.76      kent 	ei = addr;
   1273        1.91      cube 	sc = device_private(ei->parent);
   1274        1.76      kent 	return sc->codec_if->vtbl->mixer_get_port(sc->codec_if, cp);
   1275        1.28  augustss }
   1276        1.28  augustss 
   1277        1.79   thorpej static int
   1278        1.44  augustss eap1371_query_devinfo(void *addr, mixer_devinfo_t *dip)
   1279        1.28  augustss {
   1280        1.76      kent 	struct eap_instance *ei;
   1281        1.76      kent 	struct eap_softc *sc;
   1282        1.28  augustss 
   1283        1.76      kent 	ei = addr;
   1284        1.91      cube 	sc = device_private(ei->parent);
   1285        1.76      kent 	return sc->codec_if->vtbl->query_devinfo(sc->codec_if, dip);
   1286        1.28  augustss }
   1287        1.28  augustss 
   1288        1.79   thorpej static void
   1289        1.44  augustss eap1370_set_mixer(struct eap_softc *sc, int a, int d)
   1290         1.1  augustss {
   1291        1.35     soren 	eap1370_write_codec(sc, a, d);
   1292        1.28  augustss 
   1293        1.37  augustss 	sc->sc_port[a] = d;
   1294        1.37  augustss 	DPRINTFN(1, ("eap1370_mixer_set_port port 0x%02x = 0x%02x\n", a, d));
   1295         1.1  augustss }
   1296         1.1  augustss 
   1297        1.79   thorpej static int
   1298        1.44  augustss eap1370_mixer_set_port(void *addr, mixer_ctrl_t *cp)
   1299         1.1  augustss {
   1300        1.76      kent 	struct eap_instance *ei;
   1301        1.76      kent 	struct eap_softc *sc;
   1302         1.1  augustss 	int lval, rval, l, r, la, ra;
   1303         1.8  augustss 	int l1, r1, l2, r2, m, o1, o2;
   1304         1.1  augustss 
   1305        1.76      kent 	ei = addr;
   1306        1.91      cube 	sc = device_private(ei->parent);
   1307         1.1  augustss 	if (cp->dev == EAP_RECORD_SOURCE) {
   1308         1.1  augustss 		if (cp->type != AUDIO_MIXER_SET)
   1309        1.76      kent 			return EINVAL;
   1310         1.1  augustss 		m = sc->sc_record_source = cp->un.mask;
   1311         1.1  augustss 		l1 = l2 = r1 = r2 = 0;
   1312        1.76      kent 		if (m & (1 << EAP_VOICE_VOL))
   1313         1.8  augustss 			l2 |= AK_M_VOICE, r2 |= AK_M_VOICE;
   1314        1.76      kent 		if (m & (1 << EAP_FM_VOL))
   1315         1.1  augustss 			l1 |= AK_M_FM_L, r1 |= AK_M_FM_R;
   1316        1.76      kent 		if (m & (1 << EAP_CD_VOL))
   1317         1.1  augustss 			l1 |= AK_M_CD_L, r1 |= AK_M_CD_R;
   1318        1.76      kent 		if (m & (1 << EAP_LINE_VOL))
   1319         1.1  augustss 			l1 |= AK_M_LINE_L, r1 |= AK_M_LINE_R;
   1320        1.76      kent 		if (m & (1 << EAP_AUX_VOL))
   1321         1.8  augustss 			l2 |= AK_M2_AUX_L, r2 |= AK_M2_AUX_R;
   1322        1.76      kent 		if (m & (1 << EAP_MIC_VOL))
   1323         1.1  augustss 			l2 |= AK_M_TMIC, r2 |= AK_M_TMIC;
   1324        1.76      kent 		eap1370_set_mixer(sc, AK_IN_MIXER1_L, l1);
   1325        1.35     soren 		eap1370_set_mixer(sc, AK_IN_MIXER1_R, r1);
   1326        1.35     soren 		eap1370_set_mixer(sc, AK_IN_MIXER2_L, l2);
   1327        1.35     soren 		eap1370_set_mixer(sc, AK_IN_MIXER2_R, r2);
   1328        1.76      kent 		return 0;
   1329         1.1  augustss 	}
   1330        1.77     fredb 	if (cp->dev == EAP_INPUT_SOURCE) {
   1331         1.8  augustss 		if (cp->type != AUDIO_MIXER_SET)
   1332        1.76      kent 			return EINVAL;
   1333        1.77     fredb 		m = sc->sc_input_source = cp->un.mask;
   1334         1.8  augustss 		o1 = o2 = 0;
   1335        1.76      kent 		if (m & (1 << EAP_VOICE_VOL))
   1336         1.8  augustss 			o2 |= AK_M_VOICE_L | AK_M_VOICE_R;
   1337        1.76      kent 		if (m & (1 << EAP_FM_VOL))
   1338         1.8  augustss 			o1 |= AK_M_FM_L | AK_M_FM_R;
   1339        1.76      kent 		if (m & (1 << EAP_CD_VOL))
   1340         1.8  augustss 			o1 |= AK_M_CD_L | AK_M_CD_R;
   1341        1.76      kent 		if (m & (1 << EAP_LINE_VOL))
   1342         1.8  augustss 			o1 |= AK_M_LINE_L | AK_M_LINE_R;
   1343        1.76      kent 		if (m & (1 << EAP_AUX_VOL))
   1344         1.8  augustss 			o2 |= AK_M_AUX_L | AK_M_AUX_R;
   1345        1.76      kent 		if (m & (1 << EAP_MIC_VOL))
   1346         1.8  augustss 			o1 |= AK_M_MIC;
   1347        1.35     soren 		eap1370_set_mixer(sc, AK_OUT_MIXER1, o1);
   1348        1.35     soren 		eap1370_set_mixer(sc, AK_OUT_MIXER2, o2);
   1349        1.76      kent 		return 0;
   1350         1.8  augustss 	}
   1351        1.12   mycroft 	if (cp->dev == EAP_MIC_PREAMP) {
   1352        1.12   mycroft 		if (cp->type != AUDIO_MIXER_ENUM)
   1353        1.76      kent 			return EINVAL;
   1354        1.12   mycroft 		if (cp->un.ord != 0 && cp->un.ord != 1)
   1355        1.76      kent 			return EINVAL;
   1356        1.12   mycroft 		sc->sc_mic_preamp = cp->un.ord;
   1357        1.35     soren 		eap1370_set_mixer(sc, AK_MGAIN, cp->un.ord);
   1358        1.76      kent 		return 0;
   1359        1.12   mycroft 	}
   1360         1.1  augustss 	if (cp->type != AUDIO_MIXER_VALUE)
   1361        1.76      kent 		return EINVAL;
   1362         1.1  augustss 	if (cp->un.value.num_channels == 1)
   1363         1.1  augustss 		lval = rval = cp->un.value.level[AUDIO_MIXER_LEVEL_MONO];
   1364         1.1  augustss 	else if (cp->un.value.num_channels == 2) {
   1365         1.1  augustss 		lval = cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT];
   1366         1.1  augustss 		rval = cp->un.value.level[AUDIO_MIXER_LEVEL_RIGHT];
   1367         1.1  augustss 	} else
   1368        1.76      kent 		return EINVAL;
   1369         1.1  augustss 	ra = -1;
   1370         1.1  augustss 	switch (cp->dev) {
   1371         1.1  augustss 	case EAP_MASTER_VOL:
   1372         1.1  augustss 		l = VOL_TO_ATT5(lval);
   1373         1.1  augustss 		r = VOL_TO_ATT5(rval);
   1374         1.1  augustss 		la = AK_MASTER_L;
   1375         1.1  augustss 		ra = AK_MASTER_R;
   1376         1.1  augustss 		break;
   1377         1.1  augustss 	case EAP_MIC_VOL:
   1378         1.1  augustss 		if (cp->un.value.num_channels != 1)
   1379        1.76      kent 			return EINVAL;
   1380         1.1  augustss 		la = AK_MIC;
   1381         1.1  augustss 		goto lr;
   1382         1.1  augustss 	case EAP_VOICE_VOL:
   1383         1.1  augustss 		la = AK_VOICE_L;
   1384         1.1  augustss 		ra = AK_VOICE_R;
   1385         1.1  augustss 		goto lr;
   1386         1.1  augustss 	case EAP_FM_VOL:
   1387         1.1  augustss 		la = AK_FM_L;
   1388         1.1  augustss 		ra = AK_FM_R;
   1389         1.1  augustss 		goto lr;
   1390         1.1  augustss 	case EAP_CD_VOL:
   1391         1.1  augustss 		la = AK_CD_L;
   1392         1.1  augustss 		ra = AK_CD_R;
   1393         1.1  augustss 		goto lr;
   1394         1.1  augustss 	case EAP_LINE_VOL:
   1395         1.1  augustss 		la = AK_LINE_L;
   1396         1.1  augustss 		ra = AK_LINE_R;
   1397         1.1  augustss 		goto lr;
   1398         1.1  augustss 	case EAP_AUX_VOL:
   1399         1.1  augustss 		la = AK_AUX_L;
   1400         1.1  augustss 		ra = AK_AUX_R;
   1401         1.1  augustss 	lr:
   1402         1.1  augustss 		l = VOL_TO_GAIN5(lval);
   1403         1.1  augustss 		r = VOL_TO_GAIN5(rval);
   1404         1.1  augustss 		break;
   1405         1.1  augustss 	default:
   1406        1.76      kent 		return EINVAL;
   1407         1.1  augustss 	}
   1408        1.35     soren 	eap1370_set_mixer(sc, la, l);
   1409         1.1  augustss 	if (ra >= 0) {
   1410        1.35     soren 		eap1370_set_mixer(sc, ra, r);
   1411         1.1  augustss 	}
   1412        1.76      kent 	return 0;
   1413         1.1  augustss }
   1414         1.1  augustss 
   1415        1.79   thorpej static int
   1416        1.44  augustss eap1370_mixer_get_port(void *addr, mixer_ctrl_t *cp)
   1417         1.1  augustss {
   1418        1.76      kent 	struct eap_instance *ei;
   1419        1.76      kent 	struct eap_softc *sc;
   1420         1.1  augustss 	int la, ra, l, r;
   1421         1.1  augustss 
   1422        1.76      kent 	ei = addr;
   1423        1.91      cube 	sc = device_private(ei->parent);
   1424         1.1  augustss 	switch (cp->dev) {
   1425         1.1  augustss 	case EAP_RECORD_SOURCE:
   1426        1.13   mycroft 		if (cp->type != AUDIO_MIXER_SET)
   1427        1.76      kent 			return EINVAL;
   1428         1.1  augustss 		cp->un.mask = sc->sc_record_source;
   1429        1.76      kent 		return 0;
   1430        1.77     fredb 	case EAP_INPUT_SOURCE:
   1431        1.13   mycroft 		if (cp->type != AUDIO_MIXER_SET)
   1432        1.76      kent 			return EINVAL;
   1433        1.77     fredb 		cp->un.mask = sc->sc_input_source;
   1434        1.76      kent 		return 0;
   1435        1.12   mycroft 	case EAP_MIC_PREAMP:
   1436        1.13   mycroft 		if (cp->type != AUDIO_MIXER_ENUM)
   1437        1.76      kent 			return EINVAL;
   1438        1.12   mycroft 		cp->un.ord = sc->sc_mic_preamp;
   1439        1.76      kent 		return 0;
   1440         1.1  augustss 	case EAP_MASTER_VOL:
   1441         1.2   mycroft 		l = ATT5_TO_VOL(sc->sc_port[AK_MASTER_L]);
   1442         1.2   mycroft 		r = ATT5_TO_VOL(sc->sc_port[AK_MASTER_R]);
   1443         1.1  augustss 		break;
   1444         1.1  augustss 	case EAP_MIC_VOL:
   1445         1.1  augustss 		if (cp->un.value.num_channels != 1)
   1446        1.76      kent 			return EINVAL;
   1447         1.1  augustss 		la = ra = AK_MIC;
   1448         1.1  augustss 		goto lr;
   1449         1.1  augustss 	case EAP_VOICE_VOL:
   1450         1.1  augustss 		la = AK_VOICE_L;
   1451         1.1  augustss 		ra = AK_VOICE_R;
   1452         1.1  augustss 		goto lr;
   1453         1.1  augustss 	case EAP_FM_VOL:
   1454         1.1  augustss 		la = AK_FM_L;
   1455         1.1  augustss 		ra = AK_FM_R;
   1456         1.1  augustss 		goto lr;
   1457         1.1  augustss 	case EAP_CD_VOL:
   1458         1.1  augustss 		la = AK_CD_L;
   1459         1.1  augustss 		ra = AK_CD_R;
   1460         1.1  augustss 		goto lr;
   1461         1.1  augustss 	case EAP_LINE_VOL:
   1462         1.1  augustss 		la = AK_LINE_L;
   1463         1.1  augustss 		ra = AK_LINE_R;
   1464         1.1  augustss 		goto lr;
   1465         1.1  augustss 	case EAP_AUX_VOL:
   1466         1.1  augustss 		la = AK_AUX_L;
   1467         1.1  augustss 		ra = AK_AUX_R;
   1468         1.1  augustss 	lr:
   1469         1.1  augustss 		l = GAIN5_TO_VOL(sc->sc_port[la]);
   1470         1.1  augustss 		r = GAIN5_TO_VOL(sc->sc_port[ra]);
   1471         1.1  augustss 		break;
   1472         1.1  augustss 	default:
   1473        1.76      kent 		return EINVAL;
   1474         1.1  augustss 	}
   1475         1.1  augustss 	if (cp->un.value.num_channels == 1)
   1476         1.1  augustss 		cp->un.value.level[AUDIO_MIXER_LEVEL_MONO] = (l+r) / 2;
   1477         1.1  augustss 	else if (cp->un.value.num_channels == 2) {
   1478         1.1  augustss 		cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT]  = l;
   1479         1.1  augustss 		cp->un.value.level[AUDIO_MIXER_LEVEL_RIGHT] = r;
   1480        1.12   mycroft 	} else
   1481        1.76      kent 		return EINVAL;
   1482        1.76      kent 	return 0;
   1483         1.1  augustss }
   1484         1.1  augustss 
   1485        1.79   thorpej static int
   1486        1.88  christos eap1370_query_devinfo(void *addr, mixer_devinfo_t *dip)
   1487         1.1  augustss {
   1488        1.54     pooka 
   1489         1.1  augustss 	switch (dip->index) {
   1490         1.1  augustss 	case EAP_MASTER_VOL:
   1491         1.1  augustss 		dip->type = AUDIO_MIXER_VALUE;
   1492         1.1  augustss 		dip->mixer_class = EAP_OUTPUT_CLASS;
   1493         1.1  augustss 		dip->prev = dip->next = AUDIO_MIXER_LAST;
   1494         1.1  augustss 		strcpy(dip->label.name, AudioNmaster);
   1495         1.1  augustss 		dip->un.v.num_channels = 2;
   1496        1.83    rpaulo 		dip->un.v.delta = 8;
   1497         1.1  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
   1498        1.76      kent 		return 0;
   1499         1.1  augustss 	case EAP_VOICE_VOL:
   1500         1.1  augustss 		dip->type = AUDIO_MIXER_VALUE;
   1501         1.1  augustss 		dip->mixer_class = EAP_INPUT_CLASS;
   1502         1.1  augustss 		dip->prev = AUDIO_MIXER_LAST;
   1503         1.1  augustss 		dip->next = AUDIO_MIXER_LAST;
   1504         1.1  augustss 		strcpy(dip->label.name, AudioNdac);
   1505         1.1  augustss 		dip->un.v.num_channels = 2;
   1506        1.83    rpaulo 		dip->un.v.delta = 8;
   1507         1.1  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
   1508        1.76      kent 		return 0;
   1509         1.1  augustss 	case EAP_FM_VOL:
   1510         1.1  augustss 		dip->type = AUDIO_MIXER_VALUE;
   1511         1.1  augustss 		dip->mixer_class = EAP_INPUT_CLASS;
   1512         1.1  augustss 		dip->prev = AUDIO_MIXER_LAST;
   1513         1.1  augustss 		dip->next = AUDIO_MIXER_LAST;
   1514         1.1  augustss 		strcpy(dip->label.name, AudioNfmsynth);
   1515         1.1  augustss 		dip->un.v.num_channels = 2;
   1516        1.83    rpaulo 		dip->un.v.delta = 8;
   1517         1.1  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
   1518        1.76      kent 		return 0;
   1519         1.1  augustss 	case EAP_CD_VOL:
   1520         1.1  augustss 		dip->type = AUDIO_MIXER_VALUE;
   1521         1.1  augustss 		dip->mixer_class = EAP_INPUT_CLASS;
   1522         1.1  augustss 		dip->prev = AUDIO_MIXER_LAST;
   1523         1.1  augustss 		dip->next = AUDIO_MIXER_LAST;
   1524         1.1  augustss 		strcpy(dip->label.name, AudioNcd);
   1525         1.1  augustss 		dip->un.v.num_channels = 2;
   1526        1.83    rpaulo 		dip->un.v.delta = 8;
   1527         1.1  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
   1528        1.76      kent 		return 0;
   1529         1.1  augustss 	case EAP_LINE_VOL:
   1530         1.1  augustss 		dip->type = AUDIO_MIXER_VALUE;
   1531         1.1  augustss 		dip->mixer_class = EAP_INPUT_CLASS;
   1532         1.1  augustss 		dip->prev = AUDIO_MIXER_LAST;
   1533         1.1  augustss 		dip->next = AUDIO_MIXER_LAST;
   1534         1.1  augustss 		strcpy(dip->label.name, AudioNline);
   1535         1.1  augustss 		dip->un.v.num_channels = 2;
   1536        1.83    rpaulo 		dip->un.v.delta = 8;
   1537         1.1  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
   1538        1.76      kent 		return 0;
   1539         1.1  augustss 	case EAP_AUX_VOL:
   1540         1.1  augustss 		dip->type = AUDIO_MIXER_VALUE;
   1541         1.1  augustss 		dip->mixer_class = EAP_INPUT_CLASS;
   1542         1.1  augustss 		dip->prev = AUDIO_MIXER_LAST;
   1543         1.1  augustss 		dip->next = AUDIO_MIXER_LAST;
   1544         1.1  augustss 		strcpy(dip->label.name, AudioNaux);
   1545         1.1  augustss 		dip->un.v.num_channels = 2;
   1546        1.83    rpaulo 		dip->un.v.delta = 8;
   1547         1.1  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
   1548        1.76      kent 		return 0;
   1549         1.1  augustss 	case EAP_MIC_VOL:
   1550         1.1  augustss 		dip->type = AUDIO_MIXER_VALUE;
   1551         1.1  augustss 		dip->mixer_class = EAP_INPUT_CLASS;
   1552         1.1  augustss 		dip->prev = AUDIO_MIXER_LAST;
   1553        1.14   mycroft 		dip->next = EAP_MIC_PREAMP;
   1554         1.1  augustss 		strcpy(dip->label.name, AudioNmicrophone);
   1555         1.1  augustss 		dip->un.v.num_channels = 1;
   1556        1.83    rpaulo 		dip->un.v.delta = 8;
   1557         1.1  augustss 		strcpy(dip->un.v.units.name, AudioNvolume);
   1558        1.76      kent 		return 0;
   1559         1.1  augustss 	case EAP_RECORD_SOURCE:
   1560         1.1  augustss 		dip->mixer_class = EAP_RECORD_CLASS;
   1561         1.1  augustss 		dip->prev = dip->next = AUDIO_MIXER_LAST;
   1562         1.1  augustss 		strcpy(dip->label.name, AudioNsource);
   1563         1.1  augustss 		dip->type = AUDIO_MIXER_SET;
   1564         1.8  augustss 		dip->un.s.num_mem = 6;
   1565         1.8  augustss 		strcpy(dip->un.s.member[0].label.name, AudioNmicrophone);
   1566         1.8  augustss 		dip->un.s.member[0].mask = 1 << EAP_MIC_VOL;
   1567         1.8  augustss 		strcpy(dip->un.s.member[1].label.name, AudioNcd);
   1568         1.8  augustss 		dip->un.s.member[1].mask = 1 << EAP_CD_VOL;
   1569         1.8  augustss 		strcpy(dip->un.s.member[2].label.name, AudioNline);
   1570         1.8  augustss 		dip->un.s.member[2].mask = 1 << EAP_LINE_VOL;
   1571         1.8  augustss 		strcpy(dip->un.s.member[3].label.name, AudioNfmsynth);
   1572         1.8  augustss 		dip->un.s.member[3].mask = 1 << EAP_FM_VOL;
   1573         1.8  augustss 		strcpy(dip->un.s.member[4].label.name, AudioNaux);
   1574         1.8  augustss 		dip->un.s.member[4].mask = 1 << EAP_AUX_VOL;
   1575         1.8  augustss 		strcpy(dip->un.s.member[5].label.name, AudioNdac);
   1576         1.8  augustss 		dip->un.s.member[5].mask = 1 << EAP_VOICE_VOL;
   1577        1.76      kent 		return 0;
   1578        1.77     fredb 	case EAP_INPUT_SOURCE:
   1579        1.77     fredb 		dip->mixer_class = EAP_INPUT_CLASS;
   1580         1.8  augustss 		dip->prev = dip->next = AUDIO_MIXER_LAST;
   1581        1.77     fredb 		strcpy(dip->label.name, AudioNsource);
   1582         1.8  augustss 		dip->type = AUDIO_MIXER_SET;
   1583         1.8  augustss 		dip->un.s.num_mem = 6;
   1584         1.1  augustss 		strcpy(dip->un.s.member[0].label.name, AudioNmicrophone);
   1585         1.1  augustss 		dip->un.s.member[0].mask = 1 << EAP_MIC_VOL;
   1586         1.1  augustss 		strcpy(dip->un.s.member[1].label.name, AudioNcd);
   1587         1.1  augustss 		dip->un.s.member[1].mask = 1 << EAP_CD_VOL;
   1588         1.1  augustss 		strcpy(dip->un.s.member[2].label.name, AudioNline);
   1589         1.1  augustss 		dip->un.s.member[2].mask = 1 << EAP_LINE_VOL;
   1590         1.1  augustss 		strcpy(dip->un.s.member[3].label.name, AudioNfmsynth);
   1591         1.1  augustss 		dip->un.s.member[3].mask = 1 << EAP_FM_VOL;
   1592         1.1  augustss 		strcpy(dip->un.s.member[4].label.name, AudioNaux);
   1593         1.1  augustss 		dip->un.s.member[4].mask = 1 << EAP_AUX_VOL;
   1594         1.8  augustss 		strcpy(dip->un.s.member[5].label.name, AudioNdac);
   1595         1.8  augustss 		dip->un.s.member[5].mask = 1 << EAP_VOICE_VOL;
   1596        1.76      kent 		return 0;
   1597        1.12   mycroft 	case EAP_MIC_PREAMP:
   1598        1.12   mycroft 		dip->type = AUDIO_MIXER_ENUM;
   1599        1.14   mycroft 		dip->mixer_class = EAP_INPUT_CLASS;
   1600        1.14   mycroft 		dip->prev = EAP_MIC_VOL;
   1601        1.14   mycroft 		dip->next = AUDIO_MIXER_LAST;
   1602        1.12   mycroft 		strcpy(dip->label.name, AudioNpreamp);
   1603        1.12   mycroft 		dip->un.e.num_mem = 2;
   1604        1.12   mycroft 		strcpy(dip->un.e.member[0].label.name, AudioNoff);
   1605        1.12   mycroft 		dip->un.e.member[0].ord = 0;
   1606        1.12   mycroft 		strcpy(dip->un.e.member[1].label.name, AudioNon);
   1607        1.12   mycroft 		dip->un.e.member[1].ord = 1;
   1608        1.76      kent 		return 0;
   1609         1.1  augustss 	case EAP_OUTPUT_CLASS:
   1610         1.1  augustss 		dip->type = AUDIO_MIXER_CLASS;
   1611         1.1  augustss 		dip->mixer_class = EAP_OUTPUT_CLASS;
   1612         1.1  augustss 		dip->next = dip->prev = AUDIO_MIXER_LAST;
   1613         1.1  augustss 		strcpy(dip->label.name, AudioCoutputs);
   1614        1.76      kent 		return 0;
   1615         1.1  augustss 	case EAP_RECORD_CLASS:
   1616         1.1  augustss 		dip->type = AUDIO_MIXER_CLASS;
   1617         1.1  augustss 		dip->mixer_class = EAP_RECORD_CLASS;
   1618         1.1  augustss 		dip->next = dip->prev = AUDIO_MIXER_LAST;
   1619         1.1  augustss 		strcpy(dip->label.name, AudioCrecord);
   1620        1.76      kent 		return 0;
   1621         1.1  augustss 	case EAP_INPUT_CLASS:
   1622         1.1  augustss 		dip->type = AUDIO_MIXER_CLASS;
   1623         1.1  augustss 		dip->mixer_class = EAP_INPUT_CLASS;
   1624         1.1  augustss 		dip->next = dip->prev = AUDIO_MIXER_LAST;
   1625         1.1  augustss 		strcpy(dip->label.name, AudioCinputs);
   1626        1.76      kent 		return 0;
   1627         1.1  augustss 	}
   1628        1.76      kent 	return ENXIO;
   1629         1.1  augustss }
   1630         1.1  augustss 
   1631        1.79   thorpej static void *
   1632        1.93  jmcneill eap_malloc(void *addr, int direction, size_t size)
   1633         1.1  augustss {
   1634        1.76      kent 	struct eap_instance *ei;
   1635        1.76      kent 	struct eap_softc *sc;
   1636         1.9   mycroft 	struct eap_dma *p;
   1637         1.9   mycroft 	int error;
   1638         1.1  augustss 
   1639        1.93  jmcneill 	p = kmem_alloc(sizeof(*p), KM_SLEEP);
   1640        1.76      kent 	ei = addr;
   1641        1.91      cube 	sc = device_private(ei->parent);
   1642         1.9   mycroft 	error = eap_allocmem(sc, size, 16, p);
   1643         1.9   mycroft 	if (error) {
   1644        1.93  jmcneill 		kmem_free(p, sizeof(*p));
   1645        1.76      kent 		return NULL;
   1646         1.9   mycroft 	}
   1647         1.9   mycroft 	p->next = sc->sc_dmas;
   1648         1.9   mycroft 	sc->sc_dmas = p;
   1649        1.76      kent 	return KERNADDR(p);
   1650         1.1  augustss }
   1651         1.1  augustss 
   1652        1.79   thorpej static void
   1653        1.93  jmcneill eap_free(void *addr, void *ptr, size_t size)
   1654         1.1  augustss {
   1655        1.76      kent 	struct eap_instance *ei;
   1656        1.76      kent 	struct eap_softc *sc;
   1657        1.26    kleink 	struct eap_dma **pp, *p;
   1658         1.1  augustss 
   1659        1.76      kent 	ei = addr;
   1660        1.91      cube 	sc = device_private(ei->parent);
   1661        1.26    kleink 	for (pp = &sc->sc_dmas; (p = *pp) != NULL; pp = &p->next) {
   1662        1.26    kleink 		if (KERNADDR(p) == ptr) {
   1663        1.26    kleink 			eap_freemem(sc, p);
   1664        1.26    kleink 			*pp = p->next;
   1665        1.93  jmcneill 			kmem_free(p, sizeof(*p));
   1666         1.9   mycroft 			return;
   1667         1.9   mycroft 		}
   1668         1.9   mycroft 	}
   1669         1.1  augustss }
   1670         1.1  augustss 
   1671       1.100     isaki static int
   1672       1.100     isaki eap_get_props(void *addr)
   1673         1.1  augustss {
   1674        1.76      kent 	struct eap_instance *ei;
   1675        1.76      kent 	struct eap_softc *sc;
   1676       1.100     isaki 	int prop;
   1677         1.1  augustss 
   1678        1.76      kent 	ei = addr;
   1679        1.91      cube 	sc = device_private(ei->parent);
   1680       1.101     isaki 	prop = AUDIO_PROP_PLAYBACK | AUDIO_PROP_CAPTURE |
   1681       1.101     isaki 	    AUDIO_PROP_INDEPENDENT | AUDIO_PROP_FULLDUPLEX;
   1682       1.100     isaki 	/* The es1370 only has one clock, so it's not independent */
   1683       1.100     isaki 	if (!sc->sc_1371 && ei->index == EAP_DAC2)
   1684       1.100     isaki 		prop &= ~AUDIO_PROP_INDEPENDENT;
   1685        1.54     pooka 
   1686       1.100     isaki 	return prop;
   1687         1.1  augustss }
   1688        1.29  augustss 
   1689        1.93  jmcneill static void
   1690        1.93  jmcneill eap_get_locks(void *addr, kmutex_t **intr, kmutex_t **thread)
   1691        1.93  jmcneill {
   1692        1.93  jmcneill 	struct eap_instance *ei;
   1693        1.93  jmcneill 	struct eap_softc *sc;
   1694        1.93  jmcneill 
   1695        1.93  jmcneill 	ei = addr;
   1696        1.93  jmcneill 	sc = device_private(ei->parent);
   1697        1.93  jmcneill 	*intr = &sc->sc_intr_lock;
   1698        1.93  jmcneill 	*thread = &sc->sc_lock;
   1699        1.93  jmcneill }
   1700        1.93  jmcneill 
   1701        1.29  augustss #if NMIDI > 0
   1702        1.79   thorpej static int
   1703        1.44  augustss eap_midi_open(void *addr, int flags,
   1704        1.44  augustss 	      void (*iintr)(void *, int),
   1705        1.44  augustss 	      void (*ointr)(void *),
   1706        1.44  augustss 	      void *arg)
   1707        1.29  augustss {
   1708        1.76      kent 	struct eap_softc *sc;
   1709        1.84      chap 	uint8_t uctrl;
   1710        1.29  augustss 
   1711        1.76      kent 	sc = addr;
   1712        1.29  augustss 	sc->sc_arg = arg;
   1713        1.29  augustss 
   1714        1.29  augustss 	EWRITE4(sc, EAP_ICSC, EREAD4(sc, EAP_ICSC) | EAP_UART_EN);
   1715        1.29  augustss 	uctrl = 0;
   1716        1.84      chap 	if (flags & FREAD) {
   1717        1.29  augustss 		uctrl |= EAP_UC_RXINTEN;
   1718        1.84      chap 		sc->sc_iintr = iintr;
   1719        1.84      chap 	}
   1720        1.29  augustss 	if (flags & FWRITE)
   1721        1.84      chap 		sc->sc_ointr = ointr;
   1722        1.29  augustss 	EWRITE1(sc, EAP_UART_CONTROL, uctrl);
   1723        1.29  augustss 
   1724        1.76      kent 	return 0;
   1725        1.29  augustss }
   1726        1.29  augustss 
   1727        1.79   thorpej static void
   1728        1.44  augustss eap_midi_close(void *addr)
   1729        1.29  augustss {
   1730        1.76      kent 	struct eap_softc *sc;
   1731        1.29  augustss 
   1732        1.76      kent 	sc = addr;
   1733        1.93  jmcneill 	/* give uart a chance to drain */
   1734        1.93  jmcneill 	(void)kpause("eapclm", false, hz/10, &sc->sc_intr_lock);
   1735        1.29  augustss 	EWRITE1(sc, EAP_UART_CONTROL, 0);
   1736        1.29  augustss 	EWRITE4(sc, EAP_ICSC, EREAD4(sc, EAP_ICSC) & ~EAP_UART_EN);
   1737        1.29  augustss 
   1738        1.29  augustss 	sc->sc_iintr = 0;
   1739        1.29  augustss 	sc->sc_ointr = 0;
   1740        1.29  augustss }
   1741        1.29  augustss 
   1742        1.79   thorpej static int
   1743        1.44  augustss eap_midi_output(void *addr, int d)
   1744        1.29  augustss {
   1745        1.76      kent 	struct eap_softc *sc;
   1746        1.84      chap 	uint8_t uctrl;
   1747        1.29  augustss 
   1748        1.76      kent 	sc = addr;
   1749        1.84      chap 	EWRITE1(sc, EAP_UART_DATA, d);
   1750        1.84      chap 
   1751        1.84      chap 	uctrl = EAP_UC_TXINTEN;
   1752        1.84      chap 	if (sc->sc_iintr)
   1753        1.84      chap 		uctrl |= EAP_UC_RXINTEN;
   1754        1.84      chap 	/*
   1755        1.84      chap 	 * This is a write-only register, so we have to remember the right
   1756        1.84      chap 	 * value of RXINTEN as well as setting TXINTEN. But if we are open
   1757        1.84      chap 	 * for reading, it will always be correct to set RXINTEN here; only
   1758        1.84      chap 	 * during service of a receive interrupt could it be momentarily
   1759        1.84      chap 	 * toggled off, and whether we got here from the top half or from
   1760        1.84      chap 	 * an interrupt, that won't be the current state.
   1761        1.84      chap 	 */
   1762        1.84      chap 	EWRITE1(sc, EAP_UART_CONTROL, uctrl);
   1763        1.84      chap 	return 0;
   1764        1.29  augustss }
   1765        1.29  augustss 
   1766        1.79   thorpej static void
   1767        1.88  christos eap_midi_getinfo(void *addr, struct midi_info *mi)
   1768        1.29  augustss {
   1769        1.29  augustss 	mi->name = "AudioPCI MIDI UART";
   1770        1.84      chap 	mi->props = MIDI_PROP_CAN_INPUT | MIDI_PROP_OUT_INTR;
   1771        1.29  augustss }
   1772        1.29  augustss 
   1773        1.85      chap static void
   1774        1.85      chap eap_uart_txrdy(struct eap_softc *sc)
   1775        1.85      chap {
   1776        1.85      chap 	uint8_t uctrl;
   1777        1.85      chap 	uctrl = 0;
   1778        1.85      chap 	if (sc->sc_iintr)
   1779        1.85      chap 		uctrl = EAP_UC_RXINTEN;
   1780        1.85      chap 	EWRITE1(sc, EAP_UART_CONTROL, uctrl);
   1781        1.85      chap 	sc->sc_ointr(sc->sc_arg);
   1782        1.85      chap }
   1783        1.85      chap 
   1784        1.29  augustss #endif
   1785