pxa2x0_ac97.c revision 1.15.2.1       1  1.15.2.1     isaki /*	$NetBSD: pxa2x0_ac97.c,v 1.15.2.1 2019/04/21 05:11:21 isaki Exp $	*/
      2       1.1       scw 
      3       1.1       scw /*
      4       1.1       scw  * Copyright (c) 2003, 2005 Wasabi Systems, Inc.
      5       1.1       scw  * All rights reserved.
      6       1.1       scw  *
      7       1.1       scw  * Written by Steve C. Woodford for Wasabi Systems, Inc.
      8       1.1       scw  *
      9       1.1       scw  * Redistribution and use in source and binary forms, with or without
     10       1.1       scw  * modification, are permitted provided that the following conditions
     11       1.1       scw  * are met:
     12       1.1       scw  * 1. Redistributions of source code must retain the above copyright
     13       1.1       scw  *    notice, this list of conditions and the following disclaimer.
     14       1.1       scw  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.1       scw  *    notice, this list of conditions and the following disclaimer in the
     16       1.1       scw  *    documentation and/or other materials provided with the distribution.
     17       1.1       scw  * 3. All advertising materials mentioning features or use of this software
     18       1.1       scw  *    must display the following acknowledgement:
     19       1.1       scw  *	This product includes software developed for the NetBSD Project by
     20       1.1       scw  *	Wasabi Systems, Inc.
     21       1.1       scw  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22       1.1       scw  *    or promote products derived from this software without specific prior
     23       1.1       scw  *    written permission.
     24       1.1       scw  *
     25       1.1       scw  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26       1.1       scw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27       1.1       scw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28       1.1       scw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29       1.1       scw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30       1.1       scw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31       1.1       scw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32       1.1       scw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33       1.1       scw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34       1.1       scw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35       1.1       scw  * POSSIBILITY OF SUCH DAMAGE.
     36       1.1       scw  */
     37       1.1       scw 
     38       1.1       scw #include <sys/param.h>
     39       1.1       scw #include <sys/systm.h>
     40       1.1       scw #include <sys/device.h>
     41       1.1       scw #include <sys/kernel.h>
     42       1.1       scw #include <sys/malloc.h>
     43       1.1       scw #include <sys/select.h>
     44       1.1       scw #include <sys/audioio.h>
     45      1.10  jmcneill #include <sys/kmem.h>
     46       1.1       scw 
     47       1.1       scw #include <machine/intr.h>
     48       1.9    dyoung #include <sys/bus.h>
     49       1.1       scw 
     50       1.1       scw #include <dev/audio_if.h>
     51       1.1       scw #include <dev/audiovar.h>
     52       1.1       scw #include <dev/mulaw.h>
     53       1.1       scw #include <dev/auconv.h>
     54       1.1       scw #include <dev/ic/ac97reg.h>
     55       1.1       scw #include <dev/ic/ac97var.h>
     56       1.1       scw 
     57       1.6  kiyohara #include <arm/xscale/pxa2x0cpu.h>
     58       1.1       scw #include <arm/xscale/pxa2x0reg.h>
     59       1.1       scw #include <arm/xscale/pxa2x0var.h>
     60       1.1       scw #include <arm/xscale/pxa2x0_gpio.h>
     61       1.1       scw #include <arm/xscale/pxa2x0_dmac.h>
     62       1.1       scw 
     63       1.1       scw #include "locators.h"
     64       1.1       scw 
     65       1.1       scw struct acu_dma {
     66       1.1       scw 	bus_dmamap_t ad_map;
     67       1.5  christos 	void *ad_addr;
     68       1.1       scw #define	ACU_N_SEGS	1	/* XXX: We don't support > 1 */
     69       1.1       scw 	bus_dma_segment_t ad_segs[ACU_N_SEGS];
     70       1.1       scw 	int ad_nsegs;
     71       1.1       scw 	size_t ad_size;
     72       1.1       scw 	struct dmac_xfer *ad_dx;
     73       1.1       scw 	struct acu_dma *ad_next;
     74       1.1       scw };
     75       1.1       scw 
     76       1.1       scw #define KERNADDR(ad) ((void *)((ad)->ad_addr))
     77       1.1       scw 
     78       1.1       scw struct acu_softc {
     79       1.8    nonaka 	device_t sc_dev;
     80       1.1       scw 	bus_space_tag_t sc_bust;
     81       1.1       scw 	bus_dma_tag_t sc_dmat;
     82       1.1       scw 	bus_space_handle_t sc_bush;
     83       1.1       scw 	void *sc_irqcookie;
     84       1.1       scw 	int sc_in_reset;
     85       1.1       scw 	u_int sc_dac_rate;
     86       1.1       scw 	u_int sc_adc_rate;
     87       1.1       scw 
     88       1.1       scw 	/* List of DMA ring-buffers allocated by acu_malloc() */
     89       1.1       scw 	struct acu_dma *sc_dmas;
     90       1.1       scw 
     91       1.1       scw 	/* Dummy DMA segment which points to the AC97 PCM Fifo register */
     92       1.1       scw 	bus_dma_segment_t sc_dr;
     93       1.1       scw 
     94       1.1       scw 	/* PCM Output (Tx) state */
     95       1.1       scw 	dmac_peripheral_t sc_txp;
     96       1.1       scw 	struct acu_dma *sc_txdma;
     97       1.1       scw 	void (*sc_txfunc)(void *);
     98       1.1       scw 	void *sc_txarg;
     99       1.1       scw 
    100       1.1       scw 	/* PCM Input (Rx) state */
    101       1.1       scw 	dmac_peripheral_t sc_rxp;
    102       1.1       scw 	struct acu_dma *sc_rxdma;
    103       1.1       scw 	void (*sc_rxfunc)(void *);
    104       1.1       scw 	void *sc_rxarg;
    105       1.1       scw 
    106       1.1       scw 	/* AC97 Codec State */
    107       1.1       scw 	struct ac97_codec_if *sc_codec_if;
    108       1.1       scw 	struct ac97_host_if sc_host_if;
    109       1.1       scw 
    110       1.1       scw 	/* Child audio(4) device */
    111      1.12       chs 	device_t sc_audiodev;
    112       1.1       scw 
    113       1.1       scw 	/* auconv encodings */
    114       1.1       scw 	struct audio_encoding_set *sc_encodings;
    115      1.10  jmcneill 
    116      1.10  jmcneill 	/* MPSAFE interfaces */
    117      1.10  jmcneill 	kmutex_t sc_lock;
    118      1.10  jmcneill 	kmutex_t sc_intr_lock;
    119       1.1       scw };
    120       1.1       scw 
    121       1.8    nonaka static int	pxaacu_match(device_t, cfdata_t, void *);
    122       1.8    nonaka static void	pxaacu_attach(device_t, device_t, void *);
    123       1.1       scw 
    124       1.8    nonaka CFATTACH_DECL_NEW(pxaacu, sizeof(struct acu_softc),
    125       1.1       scw     pxaacu_match, pxaacu_attach, NULL, NULL);
    126       1.1       scw 
    127       1.1       scw static int acu_codec_attach(void *, struct ac97_codec_if *);
    128      1.13     skrll static int acu_codec_read(void *, uint8_t, uint16_t *);
    129      1.13     skrll static int acu_codec_write(void *, uint8_t, uint16_t);
    130       1.1       scw static int acu_codec_reset(void *);
    131       1.1       scw static int acu_intr(void *);
    132       1.1       scw 
    133       1.1       scw static int acu_open(void *, int);
    134       1.1       scw static void acu_close(void *);
    135       1.1       scw static int acu_query_encoding(void *, struct audio_encoding *);
    136       1.1       scw static int acu_set_params(void *, int, int, audio_params_t *, audio_params_t *,
    137       1.1       scw 	    stream_filter_list_t *, stream_filter_list_t *);
    138       1.1       scw static int acu_round_blocksize(void *, int, int, const audio_params_t *);
    139       1.1       scw static int acu_halt_output(void *);
    140       1.1       scw static int acu_halt_input(void *);
    141       1.1       scw static int acu_trigger_output(void *, void *, void *, int, void (*)(void *),
    142       1.1       scw 	    void *, const audio_params_t *);
    143       1.1       scw static int acu_trigger_input(void *, void *, void *, int, void (*)(void *),
    144       1.1       scw 	    void *, const audio_params_t *);
    145       1.1       scw static void acu_tx_loop_segment(struct dmac_xfer *, int);
    146       1.1       scw static void acu_rx_loop_segment(struct dmac_xfer *, int);
    147       1.1       scw static int acu_getdev(void *, struct audio_device *);
    148       1.1       scw static int acu_mixer_set_port(void *, mixer_ctrl_t *);
    149       1.1       scw static int acu_mixer_get_port(void *, mixer_ctrl_t *);
    150       1.1       scw static int acu_query_devinfo(void *, mixer_devinfo_t *);
    151      1.10  jmcneill static void *acu_malloc(void *, int, size_t);
    152      1.10  jmcneill static void acu_free(void *, void *, size_t);
    153       1.1       scw static size_t acu_round_buffersize(void *, int, size_t);
    154       1.1       scw static paddr_t acu_mappage(void *, void *, off_t, int);
    155       1.1       scw static int acu_get_props(void *);
    156      1.10  jmcneill static void acu_get_locks(void *, kmutex_t **, kmutex_t **);
    157       1.1       scw 
    158       1.1       scw struct audio_hw_if acu_hw_if = {
    159      1.15     isaki 	.open			= acu_open,
    160      1.15     isaki 	.close			= acu_close,
    161      1.15     isaki 	.query_encoding		= acu_query_encoding,
    162      1.15     isaki 	.set_params		= acu_set_params,
    163      1.15     isaki 	.round_blocksize	= acu_round_blocksize,
    164      1.15     isaki 	.halt_output		= acu_halt_output,
    165      1.15     isaki 	.halt_input		= acu_halt_input,
    166      1.15     isaki 	.getdev			= acu_getdev,
    167      1.15     isaki 	.set_port		= acu_mixer_set_port,
    168      1.15     isaki 	.get_port		= acu_mixer_get_port,
    169      1.15     isaki 	.query_devinfo		= acu_query_devinfo,
    170      1.15     isaki 	.allocm			= acu_malloc,
    171      1.15     isaki 	.freem			= acu_free,
    172      1.15     isaki 	.round_buffersize	= acu_round_buffersize,
    173      1.15     isaki 	.mappage		= acu_mappage,
    174      1.15     isaki 	.get_props		= acu_get_props,
    175      1.15     isaki 	.trigger_output		= acu_trigger_output,
    176      1.15     isaki 	.trigger_input		= acu_trigger_input,
    177      1.15     isaki 	.get_locks		= acu_get_locks,
    178       1.1       scw };
    179       1.1       scw 
    180       1.1       scw struct audio_device acu_device = {
    181       1.1       scw 	"PXA250 AC97",
    182       1.1       scw 	"",
    183       1.1       scw 	"acu"
    184       1.1       scw };
    185       1.1       scw 
    186       1.1       scw static const struct audio_format acu_formats[] = {
    187  1.15.2.1     isaki 	{
    188  1.15.2.1     isaki 		.mode		= AUMODE_PLAY | AUMODE_RECORD,
    189  1.15.2.1     isaki 		.encoding	= AUDIO_ENCODING_SLINEAR_LE,
    190  1.15.2.1     isaki 		.validbits	= 16,
    191  1.15.2.1     isaki 		.precision	= 16,
    192  1.15.2.1     isaki 		.channels	= 2,
    193  1.15.2.1     isaki 		.channel_mask	= AUFMT_STEREO,
    194  1.15.2.1     isaki 		.frequency_type	= 0,
    195  1.15.2.1     isaki 		.frequency	= { 4000, 48000 },
    196  1.15.2.1     isaki 	},
    197       1.1       scw };
    198       1.1       scw #define	ACU_NFORMATS	(sizeof(acu_formats) / sizeof(struct audio_format))
    199       1.1       scw 
    200      1.13     skrll static inline uint32_t
    201       1.1       scw acu_reg_read(struct acu_softc *sc, int reg)
    202       1.1       scw {
    203       1.1       scw 
    204       1.1       scw 	return (bus_space_read_4(sc->sc_bust, sc->sc_bush, reg));
    205       1.1       scw }
    206       1.1       scw 
    207       1.3     perry static inline void
    208      1.13     skrll acu_reg_write(struct acu_softc *sc, int reg, uint32_t val)
    209       1.1       scw {
    210       1.1       scw 
    211       1.1       scw 	bus_space_write_4(sc->sc_bust, sc->sc_bush, reg, val);
    212       1.1       scw }
    213       1.1       scw 
    214       1.3     perry static inline int
    215       1.1       scw acu_codec_ready(struct acu_softc *sc)
    216       1.1       scw {
    217       1.1       scw 
    218       1.1       scw 	return (acu_reg_read(sc, AC97_GSR) & GSR_PCR);
    219       1.1       scw }
    220       1.1       scw 
    221       1.3     perry static inline int
    222      1.13     skrll acu_wait_gsr(struct acu_softc *sc, uint32_t bit)
    223       1.1       scw {
    224       1.1       scw 	int timeout;
    225      1.13     skrll 	uint32_t rv;
    226       1.1       scw 
    227       1.1       scw 	for (timeout = 5000; timeout; timeout--) {
    228       1.1       scw 		if ((rv = acu_reg_read(sc, AC97_GSR)) & bit) {
    229       1.1       scw 			acu_reg_write(sc, AC97_GSR, rv | bit);
    230       1.1       scw 			return (0);
    231       1.1       scw 		}
    232       1.1       scw 		delay(1);
    233       1.1       scw 	}
    234       1.1       scw 
    235       1.1       scw 	return (1);
    236       1.1       scw }
    237       1.1       scw 
    238       1.1       scw static int
    239       1.8    nonaka pxaacu_match(device_t parent, cfdata_t cf, void *aux)
    240       1.1       scw {
    241       1.1       scw 	struct pxaip_attach_args *pxa = aux;
    242       1.6  kiyohara 	struct pxa2x0_gpioconf *gpioconf;
    243       1.6  kiyohara 	u_int gpio;
    244       1.6  kiyohara 	int i;
    245       1.1       scw 
    246       1.1       scw 	if (pxa->pxa_addr != PXA2X0_AC97_BASE ||
    247       1.1       scw 	    pxa->pxa_intr != PXA2X0_INT_AC97)
    248       1.1       scw 		return (0);
    249       1.1       scw 
    250       1.6  kiyohara 	gpioconf = CPU_IS_PXA250 ? pxa25x_pxaacu_gpioconf :
    251       1.6  kiyohara 	    pxa27x_pxaacu_gpioconf;
    252       1.6  kiyohara 	for (i = 0; gpioconf[i].pin != -1; i++) {
    253       1.6  kiyohara 		gpio = pxa2x0_gpio_get_function(gpioconf[i].pin);
    254       1.6  kiyohara 		if (GPIO_FN(gpio) != GPIO_FN(gpioconf[i].value) ||
    255       1.6  kiyohara 		    GPIO_FN_IS_OUT(gpio) != GPIO_FN_IS_OUT(gpioconf[i].value))
    256       1.6  kiyohara 			return (0);
    257       1.6  kiyohara 	}
    258       1.6  kiyohara 
    259       1.1       scw 	pxa->pxa_size = PXA2X0_AC97_SIZE;
    260       1.1       scw 
    261       1.1       scw 	return (1);
    262       1.1       scw }
    263       1.1       scw 
    264       1.1       scw static void
    265       1.8    nonaka pxaacu_attach(device_t parent, device_t self, void *aux)
    266       1.1       scw {
    267       1.8    nonaka 	struct acu_softc *sc = device_private(self);
    268       1.1       scw 	struct pxaip_attach_args *pxa = aux;
    269       1.1       scw 
    270       1.8    nonaka 	sc->sc_dev = self;
    271       1.1       scw 	sc->sc_bust = pxa->pxa_iot;
    272       1.1       scw 	sc->sc_dmat = pxa->pxa_dmat;
    273       1.1       scw 
    274       1.1       scw 	aprint_naive("\n");
    275       1.1       scw 	aprint_normal(": AC97 Controller\n");
    276       1.1       scw 
    277       1.1       scw 	if (bus_space_map(sc->sc_bust, pxa->pxa_addr, pxa->pxa_size, 0,
    278       1.1       scw 	    &sc->sc_bush)) {
    279       1.8    nonaka 		aprint_error_dev(self, "Can't map registers!\n");
    280       1.1       scw 		return;
    281       1.1       scw 	}
    282       1.1       scw 
    283      1.11       mrg 	sc->sc_irqcookie = pxa2x0_intr_establish(pxa->pxa_intr, IPL_AUDIO,
    284       1.1       scw 	    acu_intr, sc);
    285       1.1       scw 	KASSERT(sc->sc_irqcookie != NULL);
    286       1.1       scw 
    287       1.1       scw 	/* Make sure the AC97 clock is enabled */
    288       1.4   thorpej 	pxa2x0_clkman_config(CKEN_AC97, true);
    289       1.1       scw 	delay(100);
    290       1.1       scw 
    291       1.1       scw 	/* Do a cold reset */
    292       1.1       scw 	acu_reg_write(sc, AC97_GCR, 0);
    293       1.1       scw 	delay(100);
    294       1.1       scw 	acu_reg_write(sc, AC97_GCR, GCR_COLD_RST);
    295       1.1       scw 	delay(100);
    296       1.1       scw 	acu_reg_write(sc, AC97_CAR, 0);
    297       1.1       scw 
    298       1.1       scw 	if (acu_wait_gsr(sc, GSR_PCR)) {
    299       1.1       scw 		acu_reg_write(sc, AC97_GCR, 0);
    300       1.1       scw 		delay(100);
    301       1.4   thorpej 		pxa2x0_clkman_config(CKEN_AC97, false);
    302       1.1       scw 		bus_space_unmap(sc->sc_bust, sc->sc_bush, pxa->pxa_size);
    303       1.8    nonaka 		aprint_error_dev(self, "Primary codec not ready\n");
    304       1.1       scw 		return;
    305       1.1       scw 	}
    306       1.1       scw 
    307       1.1       scw 	sc->sc_dr.ds_addr = pxa->pxa_addr + AC97_PCDR;
    308       1.1       scw 	sc->sc_dr.ds_len = 4;
    309       1.1       scw 
    310       1.1       scw 	sc->sc_codec_if = NULL;
    311       1.1       scw 	sc->sc_host_if.arg = sc;
    312       1.1       scw 	sc->sc_host_if.attach = acu_codec_attach;
    313       1.1       scw 	sc->sc_host_if.read = acu_codec_read;
    314       1.1       scw 	sc->sc_host_if.write = acu_codec_write;
    315       1.1       scw 	sc->sc_host_if.reset = acu_codec_reset;
    316       1.1       scw 	sc->sc_host_if.flags = NULL;
    317       1.1       scw 	sc->sc_in_reset = 0;
    318       1.1       scw 	sc->sc_dac_rate = sc->sc_adc_rate = 0;
    319       1.1       scw 
    320      1.10  jmcneill 	if (ac97_attach(&sc->sc_host_if, sc->sc_dev, &sc->sc_lock)) {
    321       1.8    nonaka 		aprint_error_dev(self, "Failed to attach primary codec\n");
    322       1.1       scw  fail:
    323       1.1       scw 		acu_reg_write(sc, AC97_GCR, 0);
    324       1.1       scw 		delay(100);
    325       1.4   thorpej 		pxa2x0_clkman_config(CKEN_AC97, false);
    326       1.1       scw 		bus_space_unmap(sc->sc_bust, sc->sc_bush, pxa->pxa_size);
    327       1.1       scw 		return;
    328       1.1       scw 	}
    329       1.1       scw 
    330       1.1       scw 	if (auconv_create_encodings(acu_formats, ACU_NFORMATS,
    331       1.1       scw 	    &sc->sc_encodings)) {
    332       1.8    nonaka 		aprint_error_dev(self, "Failed to create encodings\n");
    333       1.1       scw 		if (sc->sc_codec_if != NULL)
    334       1.1       scw 			(sc->sc_codec_if->vtbl->detach)(sc->sc_codec_if);
    335       1.1       scw 		goto fail;
    336       1.1       scw 	}
    337       1.1       scw 
    338       1.8    nonaka 	sc->sc_audiodev = audio_attach_mi(&acu_hw_if, sc, sc->sc_dev);
    339       1.1       scw 
    340       1.1       scw 	/*
    341       1.1       scw 	 * As a work-around for braindamage in the PXA250's AC97 controller
    342       1.1       scw 	 * (see errata #125), we hold the ACUNIT/Codec in Cold Reset until
    343       1.1       scw 	 * acu_open() is called. acu_close() also puts the controller into
    344       1.1       scw 	 * Cold Reset.
    345       1.1       scw 	 *
    346       1.1       scw 	 * While this won't necessarily prevent Rx FIFO overruns, it at least
    347       1.1       scw 	 * allows the user to recover by closing then re-opening the audio
    348       1.1       scw 	 * device.
    349       1.1       scw 	 */
    350       1.1       scw 	acu_reg_write(sc, AC97_GCR, 0);
    351       1.1       scw 	sc->sc_in_reset = 1;
    352       1.1       scw }
    353       1.1       scw 
    354       1.1       scw static int
    355       1.1       scw acu_codec_attach(void *arg, struct ac97_codec_if *aci)
    356       1.1       scw {
    357       1.1       scw 	struct acu_softc *sc = arg;
    358       1.1       scw 
    359       1.1       scw 	sc->sc_codec_if = aci;
    360       1.1       scw 	return (0);
    361       1.1       scw }
    362       1.1       scw 
    363       1.1       scw static int
    364      1.13     skrll acu_codec_read(void *arg, uint8_t codec_reg, uint16_t *valp)
    365       1.1       scw {
    366       1.1       scw 	struct acu_softc *sc = arg;
    367      1.13     skrll 	uint32_t val;
    368      1.10  jmcneill 	int reg, rv = 1;
    369       1.1       scw 
    370       1.1       scw 	/*
    371       1.1       scw 	 * If we're currently closed, return non-zero. The ac97 frontend
    372       1.1       scw 	 * will use its cached copy of the register instead.
    373       1.1       scw 	 */
    374       1.1       scw 	if (sc->sc_in_reset)
    375       1.1       scw 		return (1);
    376       1.1       scw 
    377       1.1       scw 	reg = AC97_CODEC_BASE(0) + codec_reg * 2;
    378       1.1       scw 
    379      1.10  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    380       1.1       scw 
    381       1.1       scw 	if (!acu_codec_ready(sc) || (acu_reg_read(sc, AC97_CAR) & CAR_CAIP))
    382       1.1       scw 		goto out_nocar;
    383       1.1       scw 
    384       1.1       scw 	val = acu_reg_read(sc, AC97_GSR);
    385       1.1       scw 	val |= GSR_RDCS | GSR_SDONE;
    386       1.1       scw 	acu_reg_write(sc, AC97_GSR, val);
    387       1.1       scw 
    388       1.1       scw 	/*
    389       1.1       scw 	 * Dummy read to initiate the real read access
    390       1.1       scw 	 */
    391       1.1       scw 	(void) acu_reg_read(sc, reg);
    392       1.1       scw 	if (acu_wait_gsr(sc, GSR_SDONE))
    393       1.1       scw 		goto out;
    394       1.1       scw 
    395       1.1       scw 	(void) acu_reg_read(sc, reg);
    396       1.1       scw 	if (acu_wait_gsr(sc, GSR_SDONE))
    397       1.1       scw 		goto out;
    398       1.1       scw 
    399       1.1       scw 	val = acu_reg_read(sc, AC97_GSR);
    400       1.1       scw 	if (val & GSR_RDCS)
    401       1.1       scw 		goto out;
    402       1.1       scw 
    403       1.1       scw 	*valp = acu_reg_read(sc, reg);
    404       1.1       scw 	if (acu_wait_gsr(sc, GSR_SDONE))
    405       1.1       scw 		goto out;
    406       1.1       scw 
    407       1.1       scw 	rv = 0;
    408       1.1       scw 
    409       1.1       scw out:
    410       1.1       scw 	acu_reg_write(sc, AC97_CAR, 0);
    411       1.1       scw out_nocar:
    412      1.10  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    413       1.1       scw 	delay(10);
    414       1.1       scw 	return (rv);
    415       1.1       scw }
    416       1.1       scw 
    417       1.1       scw static int
    418      1.13     skrll acu_codec_write(void *arg, uint8_t codec_reg, uint16_t val)
    419       1.1       scw {
    420       1.1       scw 	struct acu_softc *sc = arg;
    421      1.13     skrll 	uint16_t rv;
    422       1.1       scw 
    423       1.1       scw 	/*
    424       1.1       scw 	 * If we're currently closed, chances are the user is just
    425       1.1       scw 	 * tweaking mixer settings. Pretend the write succeeded.
    426       1.1       scw 	 * The ac97 frontend will cache the value anyway, and it'll
    427       1.1       scw 	 * be written correctly when the driver is opened.
    428       1.1       scw 	 */
    429       1.1       scw 	if (sc->sc_in_reset)
    430       1.1       scw 		return (0);
    431       1.1       scw 
    432      1.10  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    433       1.1       scw 
    434       1.1       scw 	if (!acu_codec_ready(sc) || (acu_reg_read(sc, AC97_CAR) & CAR_CAIP)) {
    435      1.10  jmcneill 		mutex_spin_exit(&sc->sc_intr_lock);
    436       1.1       scw 		return (1);
    437       1.1       scw 	}
    438       1.1       scw 
    439       1.1       scw 	rv = acu_reg_read(sc, AC97_GSR);
    440       1.1       scw 	rv |= GSR_RDCS | GSR_CDONE;
    441       1.1       scw 	acu_reg_write(sc, AC97_GSR, rv);
    442       1.1       scw 
    443       1.1       scw 	acu_reg_write(sc, AC97_CODEC_BASE(0) + codec_reg * 2, val);
    444       1.1       scw 
    445       1.1       scw 	/*
    446       1.1       scw 	 * Wait for the write to complete
    447       1.1       scw 	 */
    448       1.1       scw 	(void) acu_wait_gsr(sc, GSR_CDONE);
    449       1.1       scw 	acu_reg_write(sc, AC97_CAR, 0);
    450       1.1       scw 
    451      1.10  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    452       1.1       scw 	delay(10);
    453       1.1       scw 	return (0);
    454       1.1       scw }
    455       1.1       scw 
    456       1.1       scw static int
    457       1.1       scw acu_codec_reset(void *arg)
    458       1.1       scw {
    459       1.1       scw 	struct acu_softc *sc = arg;
    460      1.13     skrll 	uint32_t rv;
    461       1.1       scw 
    462       1.1       scw 	rv = acu_reg_read(sc, AC97_GCR);
    463       1.1       scw 	acu_reg_write(sc, AC97_GCR, rv | GCR_WARM_RST);
    464       1.1       scw 	delay(100);
    465       1.1       scw 	acu_reg_write(sc, AC97_GCR, rv);
    466       1.1       scw 	delay(100);
    467       1.1       scw 
    468       1.1       scw 	if (acu_wait_gsr(sc, GSR_PCR)) {
    469       1.8    nonaka 		aprint_error_dev(sc->sc_dev,
    470       1.8    nonaka 		    "acu_codec_reset: failed to ready after reset\n");
    471       1.1       scw 		return (ETIMEDOUT);
    472       1.1       scw 	}
    473       1.1       scw 
    474       1.1       scw 	return (0);
    475       1.1       scw }
    476       1.1       scw 
    477       1.1       scw static int
    478       1.1       scw acu_intr(void *arg)
    479       1.1       scw {
    480       1.1       scw 	struct acu_softc *sc = arg;
    481      1.13     skrll 	uint32_t gsr, reg;
    482       1.1       scw 
    483      1.10  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    484       1.1       scw 	gsr = acu_reg_read(sc, AC97_GSR);
    485       1.1       scw 
    486       1.1       scw 	/*
    487       1.1       scw 	 * Tx FIFO underruns are no big deal. Just log it and ignore and
    488       1.1       scw 	 * subsequent underruns until the next time acu_trigger_output()
    489       1.1       scw 	 * is called.
    490       1.1       scw 	 */
    491       1.1       scw 	if ((gsr & GSR_POINT) && (acu_reg_read(sc, AC97_POCR) & AC97_FEFIE)) {
    492       1.1       scw 		acu_reg_write(sc, AC97_POCR, 0);
    493       1.1       scw 		reg = acu_reg_read(sc, AC97_POSR);
    494       1.1       scw 		acu_reg_write(sc, AC97_POSR, reg);
    495       1.8    nonaka 		aprint_error_dev(sc->sc_dev, "Tx PCM Fifo underrun\n");
    496       1.1       scw 	}
    497       1.1       scw 
    498       1.1       scw 	/*
    499       1.1       scw 	 * Rx FIFO overruns are a different story. See PAX250 Errata #125
    500       1.1       scw 	 * for the gory details.
    501       1.1       scw 	 * I don't see any way to gracefully recover from this problem,
    502       1.1       scw 	 * other than a issuing a Cold Reset in acu_close().
    503       1.1       scw 	 * The best we can do here is to report the problem on the console.
    504       1.1       scw 	 */
    505       1.1       scw 	if ((gsr & GSR_PIINT) && (acu_reg_read(sc, AC97_PICR) & AC97_FEFIE)) {
    506       1.1       scw 		acu_reg_write(sc, AC97_PICR, 0);
    507       1.1       scw 		reg = acu_reg_read(sc, AC97_PISR);
    508       1.1       scw 		acu_reg_write(sc, AC97_PISR, reg);
    509       1.8    nonaka 		aprint_error_dev(sc->sc_dev, "Rx PCM Fifo overrun\n");
    510       1.1       scw 	}
    511       1.1       scw 
    512      1.10  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    513      1.10  jmcneill 
    514       1.1       scw 	return (1);
    515       1.1       scw }
    516       1.1       scw 
    517       1.1       scw static int
    518       1.1       scw acu_open(void *arg, int flags)
    519       1.1       scw {
    520       1.1       scw 	struct acu_softc *sc = arg;
    521       1.1       scw 
    522       1.1       scw 	/*
    523       1.1       scw 	 * Deassert Cold Reset
    524       1.1       scw 	 */
    525       1.1       scw 	acu_reg_write(sc, AC97_GCR, GCR_COLD_RST);
    526       1.1       scw 	delay(100);
    527       1.1       scw 	acu_reg_write(sc, AC97_CAR, 0);
    528       1.1       scw 
    529       1.1       scw 	/*
    530       1.1       scw 	 * Wait for the primary codec to become ready
    531       1.1       scw 	 */
    532       1.1       scw 	if (acu_wait_gsr(sc, GSR_PCR))
    533       1.1       scw 		return (EIO);
    534       1.1       scw 	sc->sc_in_reset = 0;
    535       1.1       scw 
    536       1.1       scw 	/*
    537       1.1       scw 	 * Restore the codec port settings
    538       1.1       scw 	 */
    539       1.1       scw 	sc->sc_codec_if->vtbl->restore_ports(sc->sc_codec_if);
    540       1.1       scw 
    541       1.1       scw 	/*
    542       1.1       scw 	 * Need to reprogram the sample rates, since 'restore_ports'
    543       1.1       scw 	 * doesn't do it.
    544       1.1       scw 	 *
    545       1.1       scw 	 * XXX: These aren't the only two sample rate registers ...
    546       1.1       scw 	 */
    547       1.1       scw 	if (sc->sc_dac_rate)
    548       1.1       scw 		(void) sc->sc_codec_if->vtbl->set_rate(sc->sc_codec_if,
    549       1.1       scw 		    AC97_REG_PCM_FRONT_DAC_RATE, &sc->sc_dac_rate);
    550       1.1       scw 	if (sc->sc_adc_rate)
    551       1.1       scw 		(void) sc->sc_codec_if->vtbl->set_rate(sc->sc_codec_if,
    552       1.1       scw 		    AC97_REG_PCM_LR_ADC_RATE, &sc->sc_adc_rate);
    553       1.1       scw 
    554       1.1       scw 	return (0);
    555       1.1       scw }
    556       1.1       scw 
    557       1.1       scw static void
    558       1.1       scw acu_close(void *arg)
    559       1.1       scw {
    560       1.1       scw 	struct acu_softc *sc = arg;
    561       1.1       scw 
    562       1.1       scw 	/*
    563       1.1       scw 	 * Make sure the hardware is quiescent
    564       1.1       scw 	 */
    565       1.1       scw 	acu_halt_output(sc);
    566       1.1       scw 	acu_halt_input(sc);
    567       1.1       scw 	delay(100);
    568       1.1       scw 
    569       1.1       scw 	/* Assert Cold Reset */
    570       1.1       scw 	acu_reg_write(sc, AC97_GCR, 0);
    571       1.1       scw 	sc->sc_in_reset = 1;
    572       1.1       scw }
    573       1.1       scw 
    574       1.1       scw static int
    575       1.1       scw acu_query_encoding(void *arg, struct audio_encoding *fp)
    576       1.1       scw {
    577       1.1       scw 	struct acu_softc *sc = arg;
    578       1.1       scw 
    579       1.1       scw 	return (auconv_query_encoding(sc->sc_encodings, fp));
    580       1.1       scw }
    581       1.1       scw 
    582       1.1       scw static int
    583       1.1       scw acu_set_params(void *arg, int setmode, int usemode,
    584       1.1       scw     audio_params_t *play, audio_params_t *rec,
    585       1.1       scw     stream_filter_list_t *pfil, stream_filter_list_t *rfil)
    586       1.1       scw {
    587       1.1       scw 	struct acu_softc *sc = arg;
    588       1.1       scw 	struct audio_params *p;
    589       1.1       scw 	stream_filter_list_t *fil;
    590       1.1       scw 	int mode, err;
    591       1.1       scw 
    592       1.1       scw 	for (mode = AUMODE_RECORD; mode != -1;
    593       1.1       scw 	    mode = (mode == AUMODE_RECORD) ? AUMODE_PLAY : -1) {
    594       1.1       scw 		if ((setmode & mode) == 0)
    595       1.1       scw 			continue;
    596       1.1       scw 
    597       1.1       scw 		p = (mode == AUMODE_PLAY) ? play : rec;
    598       1.1       scw 
    599       1.1       scw 		if (p->sample_rate < 4000 || p->sample_rate > 48000 ||
    600       1.1       scw 		    (p->precision != 8 && p->precision != 16) ||
    601       1.1       scw 		    (p->channels != 1 && p->channels != 2)) {
    602       1.1       scw 			printf("acu_set_params: precision/channels botch\n");
    603       1.1       scw 			printf("acu_set_params: rate %d, prec %d, chan %d\n",
    604       1.1       scw 			    p->sample_rate, p->precision, p->channels);
    605       1.1       scw 			return (EINVAL);
    606       1.1       scw 		}
    607       1.1       scw 
    608       1.1       scw 		fil = (mode == AUMODE_PLAY) ? pfil : rfil;
    609       1.1       scw 		err = auconv_set_converter(acu_formats, ACU_NFORMATS,
    610       1.4   thorpej 		    mode, p, true, fil);
    611       1.1       scw 		if (err < 0)
    612       1.1       scw 			return (EINVAL);
    613       1.1       scw 
    614       1.1       scw 		if (mode == AUMODE_PLAY) {
    615       1.1       scw 			err = sc->sc_codec_if->vtbl->set_rate(sc->sc_codec_if,
    616       1.1       scw 			    AC97_REG_PCM_FRONT_DAC_RATE, &play->sample_rate);
    617       1.1       scw 			sc->sc_dac_rate = play->sample_rate;
    618       1.1       scw 		} else {
    619       1.1       scw 			err = sc->sc_codec_if->vtbl->set_rate(sc->sc_codec_if,
    620       1.1       scw 			    AC97_REG_PCM_LR_ADC_RATE, &rec->sample_rate);
    621       1.1       scw 			sc->sc_adc_rate = rec->sample_rate;
    622       1.1       scw 		}
    623       1.1       scw 		if (err)
    624       1.1       scw 			return (EINVAL);
    625       1.1       scw 	}
    626       1.1       scw 
    627       1.1       scw 	return (0);
    628       1.1       scw }
    629       1.1       scw 
    630       1.1       scw static int
    631       1.1       scw acu_round_blocksize(void *arg, int blk, int mode, const audio_params_t *param)
    632       1.1       scw {
    633       1.1       scw 
    634       1.1       scw 	return (blk & ~0x1f);
    635       1.1       scw }
    636       1.1       scw 
    637       1.1       scw static int
    638       1.1       scw acu_getdev(void *addr, struct audio_device *retp)
    639       1.1       scw {
    640       1.1       scw 
    641       1.1       scw 	*retp = acu_device;
    642       1.1       scw 	return (0);
    643       1.1       scw }
    644       1.1       scw 
    645       1.1       scw static int
    646       1.1       scw acu_mixer_set_port(void *arg, mixer_ctrl_t *cp)
    647       1.1       scw {
    648       1.1       scw 	struct acu_softc *sc = arg;
    649       1.1       scw 
    650       1.1       scw 	return (sc->sc_codec_if->vtbl->mixer_set_port(sc->sc_codec_if, cp));
    651       1.1       scw }
    652       1.1       scw 
    653       1.1       scw static int
    654       1.1       scw acu_mixer_get_port(void *arg, mixer_ctrl_t *cp)
    655       1.1       scw {
    656       1.1       scw 	struct acu_softc *sc = arg;
    657       1.1       scw 
    658       1.1       scw 	return (sc->sc_codec_if->vtbl->mixer_get_port(sc->sc_codec_if, cp));
    659       1.1       scw }
    660       1.1       scw 
    661       1.1       scw static int
    662       1.1       scw acu_query_devinfo(void *arg, mixer_devinfo_t *dip)
    663       1.1       scw {
    664       1.1       scw 	struct acu_softc *sc = arg;
    665       1.1       scw 
    666       1.1       scw 	return (sc->sc_codec_if->vtbl->query_devinfo(sc->sc_codec_if, dip));
    667       1.1       scw }
    668       1.1       scw 
    669       1.1       scw static void *
    670      1.10  jmcneill acu_malloc(void *arg, int direction, size_t size)
    671       1.1       scw {
    672       1.1       scw 	struct acu_softc *sc = arg;
    673       1.1       scw 	struct acu_dma *ad;
    674       1.1       scw 	int error;
    675       1.1       scw 
    676      1.14       chs 	ad = kmem_alloc(sizeof(*ad), KM_SLEEP);
    677       1.1       scw 
    678      1.10  jmcneill 	/* XXX */
    679      1.10  jmcneill 	if ((ad->ad_dx = pxa2x0_dmac_allocate_xfer()) == NULL)
    680       1.1       scw 		goto error;
    681       1.1       scw 
    682       1.1       scw 	ad->ad_size = size;
    683       1.1       scw 
    684       1.1       scw 	error = bus_dmamem_alloc(sc->sc_dmat, size, 16, 0, ad->ad_segs,
    685      1.10  jmcneill 	    ACU_N_SEGS, &ad->ad_nsegs, BUS_DMA_WAITOK);
    686       1.1       scw 	if (error)
    687       1.1       scw 		goto free_xfer;
    688       1.1       scw 
    689       1.1       scw 	error = bus_dmamem_map(sc->sc_dmat, ad->ad_segs, ad->ad_nsegs, size,
    690      1.10  jmcneill 	    &ad->ad_addr, BUS_DMA_WAITOK | BUS_DMA_COHERENT | BUS_DMA_NOCACHE);
    691       1.1       scw 	if (error)
    692       1.1       scw 		goto free_dmamem;
    693       1.1       scw 
    694       1.1       scw 	error = bus_dmamap_create(sc->sc_dmat, size, 1, size, 0,
    695      1.10  jmcneill 	    BUS_DMA_WAITOK | BUS_DMA_ALLOCNOW, &ad->ad_map);
    696       1.1       scw 	if (error)
    697       1.1       scw 		goto unmap_dmamem;
    698       1.1       scw 
    699       1.1       scw 	error = bus_dmamap_load(sc->sc_dmat, ad->ad_map, ad->ad_addr, size,
    700      1.10  jmcneill 	    NULL, BUS_DMA_WAITOK);
    701       1.1       scw 	if (error) {
    702       1.1       scw 		bus_dmamap_destroy(sc->sc_dmat, ad->ad_map);
    703       1.1       scw unmap_dmamem:	bus_dmamem_unmap(sc->sc_dmat, ad->ad_addr, size);
    704       1.1       scw free_dmamem:	bus_dmamem_free(sc->sc_dmat, ad->ad_segs, ad->ad_nsegs);
    705       1.1       scw free_xfer:	pxa2x0_dmac_free_xfer(ad->ad_dx);
    706      1.10  jmcneill error:		kmem_free(ad, sizeof(*ad));
    707       1.1       scw 		return (NULL);
    708       1.1       scw 	}
    709       1.1       scw 
    710       1.1       scw 	ad->ad_dx->dx_cookie = sc;
    711       1.1       scw 	ad->ad_dx->dx_priority = DMAC_PRIORITY_HIGH;
    712       1.1       scw 	ad->ad_dx->dx_dev_width = DMAC_DEV_WIDTH_4;
    713       1.1       scw 	ad->ad_dx->dx_burst_size = DMAC_BURST_SIZE_32;
    714       1.1       scw 
    715       1.1       scw 	ad->ad_next = sc->sc_dmas;
    716       1.1       scw 	sc->sc_dmas = ad;
    717       1.1       scw 	return (KERNADDR(ad));
    718       1.1       scw }
    719       1.1       scw 
    720       1.1       scw static void
    721      1.10  jmcneill acu_free(void *arg, void *ptr, size_t size)
    722       1.1       scw {
    723       1.1       scw 	struct acu_softc *sc = arg;
    724       1.1       scw 	struct acu_dma *ad, **adp;
    725       1.1       scw 
    726       1.1       scw 	for (adp = &sc->sc_dmas; (ad = *adp) != NULL; adp = &ad->ad_next) {
    727       1.1       scw 		if (KERNADDR(ad) == ptr) {
    728       1.1       scw 			pxa2x0_dmac_abort_xfer(ad->ad_dx);
    729       1.1       scw 			pxa2x0_dmac_free_xfer(ad->ad_dx);
    730       1.1       scw 			ad->ad_segs[0].ds_len = ad->ad_size;	/* XXX */
    731       1.1       scw 			bus_dmamap_unload(sc->sc_dmat, ad->ad_map);
    732       1.1       scw 			bus_dmamap_destroy(sc->sc_dmat, ad->ad_map);
    733       1.1       scw 			bus_dmamem_unmap(sc->sc_dmat, ad->ad_addr, ad->ad_size);
    734       1.1       scw 			bus_dmamem_free(sc->sc_dmat, ad->ad_segs, ad->ad_nsegs);
    735       1.1       scw 			*adp = ad->ad_next;
    736      1.10  jmcneill 			kmem_free(ad, sizeof(*ad));
    737       1.1       scw 			return;
    738       1.1       scw 		}
    739       1.1       scw 	}
    740       1.1       scw }
    741       1.1       scw 
    742       1.1       scw static size_t
    743       1.1       scw acu_round_buffersize(void *arg, int direction, size_t size)
    744       1.1       scw {
    745       1.1       scw 
    746       1.1       scw 	return (size);
    747       1.1       scw }
    748       1.1       scw 
    749       1.1       scw static paddr_t
    750       1.1       scw acu_mappage(void *arg, void *mem, off_t off, int prot)
    751       1.1       scw {
    752       1.1       scw 	struct acu_softc *sc = arg;
    753       1.1       scw 	struct acu_dma *ad;
    754       1.1       scw 
    755       1.1       scw 	if (off < 0)
    756       1.1       scw 		return (-1);
    757       1.1       scw 	for (ad = sc->sc_dmas; ad && KERNADDR(ad) != mem; ad = ad->ad_next)
    758       1.1       scw 		;
    759       1.1       scw 	if (ad == NULL)
    760       1.1       scw 		return (-1);
    761       1.1       scw 	return (bus_dmamem_mmap(sc->sc_dmat, ad->ad_segs, ad->ad_nsegs,
    762       1.1       scw 	    off, prot, BUS_DMA_WAITOK));
    763       1.1       scw }
    764       1.1       scw 
    765       1.1       scw static int
    766       1.1       scw acu_get_props(void *arg)
    767       1.1       scw {
    768       1.1       scw 
    769       1.1       scw 	return (AUDIO_PROP_MMAP|AUDIO_PROP_INDEPENDENT|AUDIO_PROP_FULLDUPLEX);
    770       1.1       scw }
    771       1.1       scw 
    772      1.10  jmcneill static void
    773      1.10  jmcneill acu_get_locks(void *opaque, kmutex_t **intr, kmutex_t **thread)
    774      1.10  jmcneill {
    775      1.10  jmcneill 	struct acu_softc *sc = opaque;
    776      1.10  jmcneill 
    777      1.10  jmcneill 	*intr = &sc->sc_intr_lock;
    778      1.10  jmcneill 	*thread = &sc->sc_lock;
    779      1.10  jmcneill }
    780      1.10  jmcneill 
    781       1.1       scw static int
    782       1.1       scw acu_halt_output(void *arg)
    783       1.1       scw {
    784       1.1       scw 	struct acu_softc *sc = arg;
    785       1.1       scw 
    786      1.10  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    787       1.1       scw 	if (sc->sc_txdma) {
    788       1.1       scw 		acu_reg_write(sc, AC97_POCR, 0);
    789       1.1       scw 		acu_reg_write(sc, AC97_POSR, AC97_FIFOE);
    790       1.1       scw 		pxa2x0_dmac_abort_xfer(sc->sc_txdma->ad_dx);
    791       1.1       scw 		sc->sc_txdma = NULL;
    792       1.1       scw 	}
    793      1.10  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    794       1.1       scw 	return (0);
    795       1.1       scw }
    796       1.1       scw 
    797       1.1       scw static int
    798       1.1       scw acu_halt_input(void *arg)
    799       1.1       scw {
    800       1.1       scw 	struct acu_softc *sc = arg;
    801       1.1       scw 
    802      1.10  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    803       1.1       scw 	if (sc->sc_rxdma) {
    804       1.1       scw 		acu_reg_write(sc, AC97_PICR, 0);
    805       1.1       scw 		acu_reg_write(sc, AC97_PISR, AC97_FIFOE);
    806       1.1       scw 		pxa2x0_dmac_abort_xfer(sc->sc_rxdma->ad_dx);
    807       1.1       scw 		sc->sc_rxdma = NULL;
    808       1.1       scw 	}
    809      1.10  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    810       1.1       scw 	return (0);
    811       1.1       scw }
    812       1.1       scw 
    813       1.1       scw static int
    814       1.1       scw acu_trigger_output(void *arg, void *start, void *end, int blksize,
    815       1.1       scw     void (*tx_func)(void *), void *tx_arg, const audio_params_t *param)
    816       1.1       scw {
    817       1.1       scw 	struct acu_softc *sc = arg;
    818       1.1       scw 	struct dmac_xfer *dx;
    819       1.1       scw 	struct acu_dma *ad;
    820       1.1       scw 	int rv;
    821       1.1       scw 
    822       1.1       scw 	if (sc->sc_txdma)
    823       1.1       scw 		return (EBUSY);
    824       1.1       scw 
    825       1.1       scw 	sc->sc_txfunc = tx_func;
    826       1.1       scw 	sc->sc_txarg = tx_arg;
    827       1.1       scw 
    828       1.1       scw 	for (ad = sc->sc_dmas; ad && KERNADDR(ad) != start; ad = ad->ad_next)
    829       1.1       scw 		;
    830       1.1       scw 	if (ad == NULL) {
    831       1.1       scw 		printf("acu_trigger_output: bad addr %p\n", start);
    832       1.1       scw 		return (EINVAL);
    833       1.1       scw 	}
    834       1.1       scw 
    835       1.1       scw 	sc->sc_txdma = ad;
    836       1.1       scw 	ad->ad_segs[0].ds_addr = ad->ad_map->dm_segs[0].ds_addr;
    837       1.1       scw 	ad->ad_segs[0].ds_len = (uintptr_t)end - (uintptr_t)start;
    838       1.1       scw 
    839       1.1       scw 	/*
    840       1.1       scw 	 * Fix up a looping DMA request.
    841       1.1       scw 	 * The 'done' function will be called for every 'blksize' bytes
    842       1.1       scw 	 * transferred by the DMA engine.
    843       1.1       scw 	 */
    844       1.1       scw 	dx = ad->ad_dx;
    845       1.1       scw 	dx->dx_done = acu_tx_loop_segment;
    846       1.1       scw 	dx->dx_peripheral = DMAC_PERIPH_AC97AUDIOTX;
    847       1.1       scw 	dx->dx_flow = DMAC_FLOW_CTRL_DEST;
    848       1.1       scw 	dx->dx_loop_notify = blksize;
    849       1.4   thorpej 	dx->dx_desc[DMAC_DESC_SRC].xd_addr_hold = false;
    850       1.1       scw 	dx->dx_desc[DMAC_DESC_SRC].xd_nsegs = ad->ad_nsegs;
    851       1.1       scw 	dx->dx_desc[DMAC_DESC_SRC].xd_dma_segs = ad->ad_segs;
    852       1.4   thorpej 	dx->dx_desc[DMAC_DESC_DST].xd_addr_hold = true;
    853       1.1       scw 	dx->dx_desc[DMAC_DESC_DST].xd_nsegs = 1;
    854       1.1       scw 	dx->dx_desc[DMAC_DESC_DST].xd_dma_segs = &sc->sc_dr;
    855       1.1       scw 
    856       1.1       scw 	rv = pxa2x0_dmac_start_xfer(dx);
    857       1.1       scw 	if (rv == 0) {
    858       1.1       scw 		/*
    859       1.1       scw 		 * XXX: We should only do this once the request has been
    860       1.1       scw 		 * loaded into a DMAC channel.
    861       1.1       scw 		 */
    862       1.1       scw 		acu_reg_write(sc, AC97_POSR, AC97_FIFOE);
    863       1.1       scw 		acu_reg_write(sc, AC97_POCR, AC97_FEFIE);
    864       1.1       scw 	}
    865       1.1       scw 
    866       1.1       scw 	return (rv);
    867       1.1       scw }
    868       1.1       scw 
    869       1.1       scw static int
    870       1.1       scw acu_trigger_input(void *arg, void *start, void *end, int blksize,
    871       1.1       scw     void (*rx_func)(void *), void *rx_arg, const audio_params_t *param)
    872       1.1       scw {
    873       1.1       scw 	struct acu_softc *sc = arg;
    874       1.1       scw 	struct dmac_xfer *dx;
    875       1.1       scw 	struct acu_dma *ad;
    876       1.1       scw 	int rv;
    877       1.1       scw 
    878       1.1       scw 	if (sc->sc_rxdma)
    879       1.1       scw 		return (EBUSY);
    880       1.1       scw 
    881       1.1       scw 	sc->sc_rxfunc = rx_func;
    882       1.1       scw 	sc->sc_rxarg = rx_arg;
    883       1.1       scw 
    884       1.1       scw 	for (ad = sc->sc_dmas; ad && KERNADDR(ad) != start; ad = ad->ad_next)
    885       1.1       scw 		;
    886       1.1       scw 	if (ad == NULL) {
    887       1.1       scw 		printf("acu_trigger_input: bad addr %p\n", start);
    888       1.1       scw 		return (EINVAL);
    889       1.1       scw 	}
    890       1.1       scw 
    891       1.1       scw 	sc->sc_rxdma = ad;
    892       1.1       scw 	ad->ad_segs[0].ds_addr = ad->ad_map->dm_segs[0].ds_addr;
    893       1.1       scw 	ad->ad_segs[0].ds_len = (uintptr_t)end - (uintptr_t)start;
    894       1.1       scw 
    895       1.1       scw 	/*
    896       1.1       scw 	 * Fix up a looping DMA request.
    897       1.1       scw 	 * The 'done' function will be called for every 'blksize' bytes
    898       1.1       scw 	 * transferred by the DMA engine.
    899       1.1       scw 	 */
    900       1.1       scw 	dx = ad->ad_dx;
    901       1.1       scw 	dx->dx_done = acu_rx_loop_segment;
    902       1.1       scw 	dx->dx_peripheral = DMAC_PERIPH_AC97AUDIORX;
    903       1.1       scw 	dx->dx_flow = DMAC_FLOW_CTRL_SRC;
    904       1.1       scw 	dx->dx_loop_notify = blksize;
    905       1.4   thorpej 	dx->dx_desc[DMAC_DESC_DST].xd_addr_hold = false;
    906       1.1       scw 	dx->dx_desc[DMAC_DESC_DST].xd_nsegs = ad->ad_nsegs;
    907       1.1       scw 	dx->dx_desc[DMAC_DESC_DST].xd_dma_segs = ad->ad_segs;
    908       1.4   thorpej 	dx->dx_desc[DMAC_DESC_SRC].xd_addr_hold = true;
    909       1.1       scw 	dx->dx_desc[DMAC_DESC_SRC].xd_nsegs = 1;
    910       1.1       scw 	dx->dx_desc[DMAC_DESC_SRC].xd_dma_segs = &sc->sc_dr;
    911       1.1       scw 
    912       1.1       scw 	rv = pxa2x0_dmac_start_xfer(dx);
    913       1.1       scw 
    914       1.1       scw 	if (rv == 0) {
    915       1.1       scw 		/*
    916       1.1       scw 		 * XXX: We should only do this once the request has been
    917       1.1       scw 		 * loaded into a DMAC channel.
    918       1.1       scw 		 */
    919       1.1       scw 		acu_reg_write(sc, AC97_PISR, AC97_FIFOE);
    920       1.1       scw 		acu_reg_write(sc, AC97_PICR, AC97_FEFIE);
    921       1.1       scw 	}
    922       1.1       scw 
    923       1.1       scw 	return (rv);
    924       1.1       scw }
    925       1.1       scw 
    926       1.1       scw static void
    927       1.1       scw acu_tx_loop_segment(struct dmac_xfer *dx, int status)
    928       1.1       scw {
    929       1.1       scw 	struct acu_softc *sc = dx->dx_cookie;
    930       1.1       scw 	struct acu_dma *ad;
    931       1.1       scw 
    932       1.1       scw 	if ((ad = sc->sc_txdma) == NULL)
    933       1.1       scw 		panic("acu_tx_loop_segment: bad TX dma descriptor!");
    934       1.1       scw 
    935       1.1       scw 	if (ad->ad_dx != dx)
    936       1.1       scw 		panic("acu_tx_loop_segment: xfer mismatch!");
    937       1.1       scw 
    938       1.1       scw 	if (status) {
    939       1.8    nonaka 		aprint_error_dev(sc->sc_dev,
    940       1.8    nonaka 		    "acu_tx_loop_segment: non-zero completion status %d\n",
    941       1.8    nonaka 		    status);
    942       1.1       scw 	}
    943       1.1       scw 
    944      1.10  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    945       1.1       scw 	(sc->sc_txfunc)(sc->sc_txarg);
    946      1.10  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    947       1.1       scw }
    948       1.1       scw 
    949       1.1       scw static void
    950       1.1       scw acu_rx_loop_segment(struct dmac_xfer *dx, int status)
    951       1.1       scw {
    952       1.1       scw 	struct acu_softc *sc = dx->dx_cookie;
    953       1.1       scw 	struct acu_dma *ad;
    954       1.1       scw 
    955       1.1       scw 	if ((ad = sc->sc_rxdma) == NULL)
    956       1.1       scw 		panic("acu_rx_loop_segment: bad RX dma descriptor!");
    957       1.1       scw 
    958       1.1       scw 	if (ad->ad_dx != dx)
    959       1.1       scw 		panic("acu_rx_loop_segment: xfer mismatch!");
    960       1.1       scw 
    961       1.1       scw 	if (status) {
    962       1.8    nonaka 		aprint_error_dev(sc->sc_dev,
    963       1.8    nonaka 		    "acu_rx_loop_segment: non-zero completion status %d\n",
    964       1.8    nonaka 		    status);
    965       1.1       scw 	}
    966       1.1       scw 
    967      1.10  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
    968       1.1       scw 	(sc->sc_rxfunc)(sc->sc_rxarg);
    969      1.10  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
    970       1.1       scw }
    971