Home | History | Annotate | Line # | Download | only in dev
audioamd.c revision 1.28
      1  1.28     isaki /*	$NetBSD: audioamd.c,v 1.28 2019/03/16 12:09:57 isaki Exp $	*/
      2   1.1  augustss /*	NetBSD: am7930_sparc.c,v 1.44 1999/03/14 22:29:00 jonathan Exp 	*/
      3   1.1  augustss 
      4   1.1  augustss /*
      5   1.1  augustss  * Copyright (c) 1995 Rolf Grossmann
      6   1.1  augustss  * All rights reserved.
      7   1.1  augustss  *
      8   1.1  augustss  * Redistribution and use in source and binary forms, with or without
      9   1.1  augustss  * modification, are permitted provided that the following conditions
     10   1.1  augustss  * are met:
     11   1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     12   1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     13   1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     15   1.1  augustss  *    documentation and/or other materials provided with the distribution.
     16   1.1  augustss  * 3. All advertising materials mentioning features or use of this software
     17   1.1  augustss  *    must display the following acknowledgement:
     18   1.1  augustss  *      This product includes software developed by Rolf Grossmann.
     19   1.1  augustss  * 4. The name of the author may not be used to endorse or promote products
     20   1.1  augustss  *    derived from this software without specific prior written permission
     21   1.1  augustss  *
     22   1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23   1.1  augustss  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24   1.1  augustss  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25   1.1  augustss  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26   1.1  augustss  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27   1.1  augustss  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28   1.1  augustss  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29   1.1  augustss  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30   1.1  augustss  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31   1.1  augustss  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32   1.1  augustss  */
     33  1.17     lukem 
     34  1.17     lukem #include <sys/cdefs.h>
     35  1.28     isaki __KERNEL_RCSID(0, "$NetBSD: audioamd.c,v 1.28 2019/03/16 12:09:57 isaki Exp $");
     36   1.1  augustss 
     37   1.1  augustss #include "audio.h"
     38   1.1  augustss #if NAUDIO > 0
     39   1.1  augustss 
     40   1.1  augustss #include <sys/param.h>
     41   1.1  augustss #include <sys/systm.h>
     42   1.1  augustss #include <sys/errno.h>
     43   1.1  augustss #include <sys/device.h>
     44  1.22        ad #include <sys/bus.h>
     45  1.22        ad #include <sys/intr.h>
     46  1.23        ad #include <sys/mutex.h>
     47   1.1  augustss 
     48   1.1  augustss #include <machine/autoconf.h>
     49   1.1  augustss 
     50   1.1  augustss #include <sys/audioio.h>
     51   1.1  augustss #include <dev/audio_if.h>
     52   1.1  augustss 
     53   1.1  augustss #include <dev/ic/am7930reg.h>
     54   1.1  augustss #include <dev/ic/am7930var.h>
     55   1.3   mycroft #include <sparc/dev/audioamdvar.h>
     56   1.1  augustss 
     57   1.1  augustss #define AUDIO_ROM_NAME "audio"
     58   1.1  augustss 
     59   1.1  augustss #ifdef AUDIO_DEBUG
     60   1.1  augustss #define DPRINTF(x)      if (am7930debug) printf x
     61   1.1  augustss #define DPRINTFN(n,x)   if (am7930debug>(n)) printf x
     62   1.1  augustss #else
     63   1.1  augustss #define DPRINTF(x)
     64   1.1  augustss #define DPRINTFN(n,x)
     65   1.1  augustss #endif	/* AUDIO_DEBUG */
     66   1.1  augustss 
     67   1.1  augustss 
     68   1.1  augustss /* interrupt interfaces */
     69  1.20      kent int	am7930hwintr(void *);
     70   1.1  augustss struct auio *auiop;
     71  1.20      kent void	am7930swintr(void *);
     72   1.1  augustss 
     73  1.15        pk /* from amd7930intr.s: */
     74  1.15        pk void	amd7930_trap(void);
     75  1.15        pk 
     76   1.1  augustss /*
     77  1.20      kent  * interrupt-handler status
     78   1.1  augustss  */
     79   1.1  augustss struct am7930_intrhand {
     80  1.20      kent 	int	(*ih_fun)(void *);
     81   1.1  augustss 	void	*ih_arg;
     82   1.1  augustss };
     83   1.1  augustss 
     84   1.1  augustss struct audioamd_softc {
     85   1.1  augustss 	struct am7930_softc sc_am7930;	/* glue to MI code */
     86   1.1  augustss 
     87   1.1  augustss 	bus_space_tag_t sc_bt;		/* bus cookie */
     88   1.1  augustss 	bus_space_handle_t sc_bh;	/* device registers */
     89   1.1  augustss 
     90   1.1  augustss 	struct am7930_intrhand	sc_ih;	/* interrupt vector (hw or sw)  */
     91   1.1  augustss 	void	(*sc_rintr)(void*);	/* input completion intr handler */
     92   1.1  augustss 	void	*sc_rarg;		/* arg for sc_rintr() */
     93   1.1  augustss 	void	(*sc_pintr)(void*);	/* output completion intr handler */
     94   1.1  augustss 	void	*sc_parg;		/* arg for sc_pintr() */
     95   1.1  augustss 
     96   1.1  augustss 	/* sc_au is special in that the hardware interrupt handler uses it */
     97   1.1  augustss 	struct  auio sc_au;		/* recv and xmit buffers, etc */
     98   1.1  augustss #define sc_intrcnt	sc_au.au_intrcnt	/* statistics */
     99  1.14        pk 	void	*sc_sicookie;		/* softintr(9) cookie */
    100  1.23        ad 	kmutex_t	sc_lock;
    101   1.1  augustss };
    102   1.1  augustss 
    103  1.24   tsutsui int	audioamd_mainbus_match(device_t, cfdata_t, void *);
    104  1.24   tsutsui void	audioamd_mainbus_attach(device_t, device_t, void *);
    105  1.24   tsutsui int	audioamd_obio_match(device_t, cfdata_t, void *);
    106  1.24   tsutsui void	audioamd_obio_attach(device_t, device_t, void *);
    107  1.24   tsutsui int	audioamd_sbus_match(device_t, cfdata_t, void *);
    108  1.24   tsutsui void	audioamd_sbus_attach(device_t, device_t, void *);
    109  1.20      kent void	audioamd_attach(struct audioamd_softc *, int);
    110   1.1  augustss 
    111  1.26   tsutsui CFATTACH_DECL_NEW(audioamd_mainbus, sizeof(struct audioamd_softc),
    112  1.12   thorpej     audioamd_mainbus_match, audioamd_mainbus_attach, NULL, NULL);
    113   1.1  augustss 
    114  1.26   tsutsui CFATTACH_DECL_NEW(audioamd_obio, sizeof(struct audioamd_softc),
    115  1.13       jdc     audioamd_obio_match, audioamd_obio_attach, NULL, NULL);
    116  1.13       jdc 
    117  1.26   tsutsui CFATTACH_DECL_NEW(audioamd_sbus, sizeof(struct audioamd_softc),
    118  1.12   thorpej     audioamd_sbus_match, audioamd_sbus_attach, NULL, NULL);
    119   1.1  augustss 
    120   1.1  augustss /*
    121   1.1  augustss  * Define our interface into the am7930 MI driver.
    122   1.1  augustss  */
    123   1.1  augustss 
    124  1.20      kent uint8_t	audioamd_codec_iread(struct am7930_softc *, int);
    125  1.20      kent uint16_t	audioamd_codec_iread16(struct am7930_softc *, int);
    126  1.20      kent uint8_t	audioamd_codec_dread(struct audioamd_softc *, int);
    127  1.20      kent void	audioamd_codec_iwrite(struct am7930_softc *, int, uint8_t);
    128  1.20      kent void	audioamd_codec_iwrite16(struct am7930_softc *, int, uint16_t);
    129  1.20      kent void	audioamd_codec_dwrite(struct audioamd_softc *, int, uint8_t);
    130  1.20      kent void	audioamd_onopen(struct am7930_softc *);
    131  1.20      kent void	audioamd_onclose(struct am7930_softc *);
    132   1.1  augustss 
    133   1.1  augustss struct am7930_glue audioamd_glue = {
    134   1.1  augustss 	audioamd_codec_iread,
    135   1.1  augustss 	audioamd_codec_iwrite,
    136   1.1  augustss 	audioamd_codec_iread16,
    137   1.1  augustss 	audioamd_codec_iwrite16,
    138   1.1  augustss 	audioamd_onopen,
    139   1.1  augustss 	audioamd_onclose,
    140   1.1  augustss 	0,
    141   1.1  augustss 	0,
    142   1.1  augustss 	0,
    143   1.1  augustss };
    144   1.1  augustss 
    145   1.1  augustss /*
    146   1.1  augustss  * Define our interface to the higher level audio driver.
    147   1.1  augustss  */
    148  1.20      kent int	audioamd_start_output(void *, void *, int, void (*)(void *), void *);
    149  1.20      kent int	audioamd_start_input(void *, void *, int, void (*)(void *), void *);
    150  1.20      kent int	audioamd_getdev(void *, struct audio_device *);
    151  1.27  jmcneill void	audioamd_get_locks(void *opaque, kmutex_t **intr, kmutex_t **thread);
    152   1.1  augustss 
    153  1.19      yamt const struct audio_hw_if sa_hw_if = {
    154  1.28     isaki 	.open			= am7930_open,
    155  1.28     isaki 	.close			= am7930_close,
    156  1.28     isaki 	.query_encoding		= am7930_query_encoding,
    157  1.28     isaki 	.set_params		= am7930_set_params,
    158  1.28     isaki 	.round_blocksize	= am7930_round_blocksize,
    159  1.28     isaki 	.commit_settings	= am7930_commit_settings,
    160  1.28     isaki 	.start_output		= audioamd_start_output,	/* md */
    161  1.28     isaki 	.start_input		= audioamd_start_input,		/* md */
    162  1.28     isaki 	.halt_output		= am7930_halt_output,
    163  1.28     isaki 	.halt_input		= am7930_halt_input,
    164  1.28     isaki 	.getdev			= audioamd_getdev,
    165  1.28     isaki 	.set_port		= am7930_set_port,
    166  1.28     isaki 	.get_port		= am7930_get_port,
    167  1.28     isaki 	.query_devinfo		= am7930_query_devinfo,
    168  1.28     isaki 	.get_props		= am7930_get_props,
    169  1.28     isaki 	.get_locks		= audioamd_get_locks,
    170   1.1  augustss };
    171   1.1  augustss 
    172   1.1  augustss struct audio_device audioamd_device = {
    173   1.1  augustss 	"am7930",
    174   1.1  augustss 	"x",
    175   1.1  augustss 	"audioamd"
    176   1.1  augustss };
    177   1.1  augustss 
    178   1.1  augustss 
    179   1.1  augustss int
    180  1.24   tsutsui audioamd_mainbus_match(device_t parent, cfdata_t cf, void *aux)
    181   1.1  augustss {
    182  1.20      kent 	struct mainbus_attach_args *ma;
    183   1.1  augustss 
    184  1.20      kent 	ma = aux;
    185   1.1  augustss 	if (CPU_ISSUN4)
    186  1.20      kent 		return 0;
    187  1.20      kent 	return strcmp(AUDIO_ROM_NAME, ma->ma_name) == 0;
    188   1.1  augustss }
    189   1.1  augustss 
    190   1.1  augustss int
    191  1.24   tsutsui audioamd_obio_match(device_t parent, cfdata_t cf, void *aux)
    192  1.13       jdc {
    193  1.20      kent 	union obio_attach_args *uoba;
    194  1.13       jdc 
    195  1.20      kent 	uoba = aux;
    196  1.13       jdc 	if (uoba->uoba_isobio4 != 0)
    197  1.20      kent 		return 0;
    198  1.13       jdc 
    199  1.20      kent 	return strcmp("audio", uoba->uoba_sbus.sa_name) == 0;
    200  1.13       jdc }
    201  1.13       jdc 
    202  1.13       jdc int
    203  1.24   tsutsui audioamd_sbus_match(device_t parent, cfdata_t cf, void *aux)
    204   1.1  augustss {
    205  1.20      kent 	struct sbus_attach_args *sa;
    206   1.1  augustss 
    207  1.20      kent 	sa = aux;
    208  1.20      kent 	return strcmp(AUDIO_ROM_NAME, sa->sa_name) == 0;
    209   1.1  augustss }
    210   1.1  augustss 
    211   1.1  augustss void
    212  1.24   tsutsui audioamd_mainbus_attach(device_t parent, device_t self, void *aux)
    213   1.1  augustss {
    214  1.20      kent 	struct mainbus_attach_args *ma;
    215  1.20      kent 	struct audioamd_softc *sc;
    216   1.1  augustss 	bus_space_handle_t bh;
    217   1.1  augustss 
    218  1.20      kent 	ma = aux;
    219  1.24   tsutsui 	sc = device_private(self);
    220  1.26   tsutsui 	sc->sc_am7930.sc_dev = self;
    221   1.1  augustss 	sc->sc_bt = ma->ma_bustag;
    222   1.1  augustss 
    223   1.8        pk 	if (bus_space_map(
    224   1.1  augustss 			ma->ma_bustag,
    225   1.1  augustss 			ma->ma_paddr,
    226   1.2   mycroft 			AM7930_DREG_SIZE,
    227   1.1  augustss 			BUS_SPACE_MAP_LINEAR,
    228   1.1  augustss 			&bh) != 0) {
    229  1.24   tsutsui 		printf("%s: cannot map registers\n", device_xname(self));
    230   1.1  augustss 		return;
    231   1.1  augustss 	}
    232   1.1  augustss 	sc->sc_bh = bh;
    233   1.1  augustss 	audioamd_attach(sc, ma->ma_pri);
    234   1.1  augustss }
    235   1.1  augustss 
    236  1.13       jdc void
    237  1.24   tsutsui audioamd_obio_attach(device_t parent, device_t self, void *aux)
    238  1.20      kent {
    239  1.20      kent 	union obio_attach_args *uoba;
    240  1.20      kent 	struct sbus_attach_args *sa;
    241  1.20      kent 	struct audioamd_softc *sc;
    242  1.13       jdc 	bus_space_handle_t bh;
    243  1.13       jdc 
    244  1.20      kent 	uoba = aux;
    245  1.20      kent 	sa = &uoba->uoba_sbus;
    246  1.24   tsutsui 	sc = device_private(self);
    247  1.26   tsutsui 	sc->sc_am7930.sc_dev = self;
    248  1.13       jdc 	sc->sc_bt = sa->sa_bustag;
    249  1.13       jdc 
    250  1.13       jdc 	if (sbus_bus_map(sa->sa_bustag,
    251  1.13       jdc 			 sa->sa_slot, sa->sa_offset,
    252  1.13       jdc 			 AM7930_DREG_SIZE,
    253  1.13       jdc 			 0, &bh) != 0) {
    254  1.24   tsutsui 		printf("%s: cannot map registers\n", device_xname(self));
    255  1.13       jdc 		return;
    256  1.13       jdc 	}
    257  1.13       jdc 	sc->sc_bh = bh;
    258  1.13       jdc 	audioamd_attach(sc, sa->sa_pri);
    259  1.13       jdc }
    260   1.1  augustss 
    261   1.1  augustss void
    262  1.24   tsutsui audioamd_sbus_attach(device_t parent, device_t self, void *aux)
    263   1.1  augustss {
    264  1.20      kent 	struct sbus_attach_args *sa;
    265  1.20      kent 	struct audioamd_softc *sc;
    266   1.1  augustss 	bus_space_handle_t bh;
    267   1.1  augustss 
    268  1.20      kent 	sa = aux;
    269  1.24   tsutsui 	sc = device_private(self);
    270  1.26   tsutsui 	sc->sc_am7930.sc_dev = self;
    271   1.1  augustss 	sc->sc_bt = sa->sa_bustag;
    272   1.1  augustss 
    273   1.8        pk 	if (sbus_bus_map(sa->sa_bustag,
    274   1.8        pk 			 sa->sa_slot, sa->sa_offset,
    275   1.8        pk 			 AM7930_DREG_SIZE,
    276   1.8        pk 			 0, &bh) != 0) {
    277  1.24   tsutsui 		printf("%s: cannot map registers\n", device_xname(self));
    278   1.1  augustss 		return;
    279   1.1  augustss 	}
    280   1.1  augustss 	sc->sc_bh = bh;
    281   1.1  augustss 	audioamd_attach(sc, sa->sa_pri);
    282   1.1  augustss }
    283   1.1  augustss 
    284   1.1  augustss void
    285  1.20      kent audioamd_attach(struct audioamd_softc *sc, int pri)
    286   1.1  augustss {
    287  1.24   tsutsui 	device_t self;
    288   1.1  augustss 
    289   1.1  augustss 	/*
    290   1.1  augustss 	 * Set up glue for MI code early; we use some of it here.
    291   1.1  augustss 	 */
    292  1.26   tsutsui 	self = sc->sc_am7930.sc_dev;
    293   1.2   mycroft 	sc->sc_am7930.sc_glue = &audioamd_glue;
    294  1.23        ad 	mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_HIGH);
    295   1.1  augustss 
    296   1.2   mycroft 	am7930_init(&sc->sc_am7930, AUDIOAMD_POLL_MODE);
    297   1.1  augustss 
    298  1.14        pk 	auiop = &sc->sc_au;
    299  1.15        pk 
    300  1.15        pk 	/* Copy bus tag & handle for use by am7930_trap */
    301  1.15        pk 	sc->sc_au.au_bt = sc->sc_bt;
    302  1.15        pk 	sc->sc_au.au_bh = sc->sc_bh;
    303  1.23        ad 	(void)bus_intr_establish2(sc->sc_bt, pri, IPL_HIGH,
    304  1.25   tsutsui 				  am7930hwintr, sc,
    305  1.25   tsutsui #ifdef notyet /* XXX amd7930intr.s needs to be fixed for MI softint(9) */
    306  1.25   tsutsui 				  amd7930_trap
    307  1.25   tsutsui #else
    308  1.25   tsutsui 				  NULL
    309  1.25   tsutsui #endif
    310  1.25   tsutsui 				  );
    311  1.14        pk 
    312  1.22        ad 	sc->sc_sicookie = softint_establish(SOFTINT_SERIAL, am7930swintr, sc);
    313  1.14        pk 	if (sc->sc_sicookie == NULL) {
    314  1.14        pk 		printf("\n%s: cannot establish software interrupt\n",
    315  1.24   tsutsui 			device_xname(self));
    316  1.14        pk 		return;
    317  1.14        pk 	}
    318  1.14        pk 
    319  1.14        pk 	printf(" softpri %d\n", IPL_SOFTAUDIO);
    320  1.14        pk 
    321   1.1  augustss 
    322   1.4       cgd 	evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
    323  1.24   tsutsui 	    device_xname(self), "intr");
    324   1.1  augustss 
    325  1.24   tsutsui 	audio_attach_mi(&sa_hw_if, sc, self);
    326   1.1  augustss }
    327   1.1  augustss 
    328   1.1  augustss 
    329   1.1  augustss void
    330  1.20      kent audioamd_onopen(struct am7930_softc *sc)
    331   1.1  augustss {
    332  1.20      kent 	struct audioamd_softc *mdsc;
    333   1.1  augustss 
    334  1.20      kent 	mdsc = (struct audioamd_softc *)sc;
    335  1.23        ad 
    336   1.1  augustss 	/* reset pdma state */
    337  1.23        ad 	mutex_spin_enter(&mdsc->sc_lock);
    338   1.1  augustss 	mdsc->sc_rintr = 0;
    339   1.1  augustss 	mdsc->sc_rarg = 0;
    340   1.1  augustss 	mdsc->sc_pintr = 0;
    341   1.1  augustss 	mdsc->sc_parg = 0;
    342   1.1  augustss 	mdsc->sc_au.au_rdata = 0;
    343   1.1  augustss 	mdsc->sc_au.au_pdata = 0;
    344  1.23        ad 	mutex_spin_exit(&mdsc->sc_lock);
    345   1.1  augustss }
    346   1.1  augustss 
    347   1.1  augustss 
    348   1.1  augustss void
    349  1.20      kent audioamd_onclose(struct am7930_softc *sc)
    350   1.1  augustss {
    351   1.1  augustss 	/* On sparc, just do the chipset-level halt. */
    352   1.1  augustss 	am7930_halt_input(sc);
    353   1.1  augustss 	am7930_halt_output(sc);
    354   1.1  augustss }
    355   1.1  augustss 
    356   1.1  augustss int
    357  1.20      kent audioamd_start_output(void *addr, void *p, int cc,
    358  1.20      kent 		      void (*intr)(void *), void *arg)
    359   1.1  augustss {
    360  1.20      kent 	struct audioamd_softc *sc;
    361   1.1  augustss 
    362   1.1  augustss 	DPRINTFN(1, ("sa_start_output: cc=%d %p (%p)\n", cc, intr, arg));
    363  1.20      kent 	sc = addr;
    364  1.23        ad 
    365  1.23        ad 	mutex_spin_enter(&sc->sc_lock);
    366  1.18   mycroft 	audioamd_codec_iwrite(&sc->sc_am7930,
    367  1.20      kent 	    AM7930_IREG_INIT, AM7930_INIT_PMS_ACTIVE);
    368   1.1  augustss 	sc->sc_pintr = intr;
    369   1.1  augustss 	sc->sc_parg = arg;
    370   1.1  augustss 	sc->sc_au.au_pdata = p;
    371   1.1  augustss 	sc->sc_au.au_pend = (char *)p + cc - 1;
    372  1.23        ad 	mutex_spin_exit(&sc->sc_lock);
    373  1.23        ad 
    374  1.23        ad 	DPRINTF(("sa_start_output: started intrs.\n"));
    375   1.1  augustss 	return(0);
    376   1.1  augustss }
    377   1.1  augustss 
    378   1.1  augustss int
    379  1.20      kent audioamd_start_input(void *addr, void *p, int cc,
    380  1.20      kent 		     void (*intr)(void *), void *arg)
    381   1.1  augustss {
    382  1.20      kent 	struct audioamd_softc *sc;
    383   1.1  augustss 
    384   1.1  augustss 	DPRINTFN(1, ("sa_start_input: cc=%d %p (%p)\n", cc, intr, arg));
    385  1.20      kent 	sc = addr;
    386  1.23        ad 
    387  1.23        ad 	mutex_spin_enter(&sc->sc_lock);
    388  1.18   mycroft 	audioamd_codec_iwrite(&sc->sc_am7930,
    389  1.20      kent 	    AM7930_IREG_INIT, AM7930_INIT_PMS_ACTIVE);
    390   1.1  augustss 	sc->sc_rintr = intr;
    391   1.1  augustss 	sc->sc_rarg = arg;
    392   1.1  augustss 	sc->sc_au.au_rdata = p;
    393   1.1  augustss 	sc->sc_au.au_rend = (char *)p + cc -1;
    394  1.23        ad 	mutex_spin_exit(&sc->sc_lock);
    395  1.23        ad 
    396  1.23        ad 	DPRINTF(("sa_start_input: started intrs.\n"));
    397  1.23        ad 
    398   1.1  augustss 	return(0);
    399   1.1  augustss }
    400   1.1  augustss 
    401   1.1  augustss 
    402   1.1  augustss /*
    403   1.1  augustss  * Pseudo-DMA support: either C or locore assember.
    404   1.1  augustss  */
    405   1.1  augustss 
    406   1.1  augustss int
    407  1.20      kent am7930hwintr(void *v)
    408   1.1  augustss {
    409  1.20      kent 	struct audioamd_softc *sc;
    410  1.20      kent 	struct auio *au;
    411  1.20      kent 	uint8_t *d, *e;
    412   1.1  augustss 	int k;
    413   1.1  augustss 
    414  1.20      kent 	sc = v;
    415  1.20      kent 	au = &sc->sc_au;
    416  1.23        ad 	mutex_spin_enter(&sc->sc_lock);
    417  1.23        ad 
    418   1.1  augustss 	/* clear interrupt */
    419   1.1  augustss 	k = audioamd_codec_dread(sc, AM7930_DREG_IR);
    420  1.14        pk 	if ((k & (AM7930_IR_DTTHRSH|AM7930_IR_DRTHRSH|AM7930_IR_DSRI|
    421  1.23        ad 		  AM7930_IR_DERI|AM7930_IR_BBUFF)) == 0) {
    422  1.23        ad 		mutex_spin_exit(&sc->sc_lock);
    423  1.20      kent 		return 0;
    424  1.23        ad 	}
    425   1.1  augustss 
    426   1.1  augustss 	/* receive incoming data */
    427   1.1  augustss 	d = au->au_rdata;
    428   1.1  augustss 	e = au->au_rend;
    429   1.1  augustss 	if (d && d <= e) {
    430   1.1  augustss 		*d = audioamd_codec_dread(sc, AM7930_DREG_BBRB);
    431   1.1  augustss 		au->au_rdata++;
    432   1.1  augustss 		if (d == e) {
    433   1.1  augustss 			DPRINTFN(1, ("am7930hwintr: swintr(r) requested"));
    434  1.22        ad 			softint_schedule(sc->sc_sicookie);
    435   1.1  augustss 		}
    436   1.1  augustss 	}
    437   1.1  augustss 
    438   1.1  augustss 	/* send outgoing data */
    439   1.1  augustss 	d = au->au_pdata;
    440   1.1  augustss 	e = au->au_pend;
    441   1.1  augustss 	if (d && d <= e) {
    442   1.1  augustss 		audioamd_codec_dwrite(sc, AM7930_DREG_BBTB, *d);
    443   1.1  augustss 		au->au_pdata++;
    444   1.1  augustss 		if (d == e) {
    445   1.1  augustss 			DPRINTFN(1, ("am7930hwintr: swintr(p) requested"));
    446  1.22        ad 			softint_schedule(sc->sc_sicookie);
    447   1.1  augustss 		}
    448   1.1  augustss 	}
    449   1.1  augustss 
    450   1.9  gmcgarry 	au->au_intrcnt.ev_count++;
    451  1.23        ad 	mutex_spin_exit(&sc->sc_lock);
    452  1.23        ad 
    453  1.20      kent 	return 1;
    454   1.1  augustss }
    455   1.1  augustss 
    456  1.14        pk void
    457  1.20      kent am7930swintr(void *sc0)
    458   1.1  augustss {
    459  1.20      kent 	struct audioamd_softc *sc;
    460   1.1  augustss 	struct auio *au;
    461  1.23        ad 	bool pint;
    462   1.1  augustss 
    463  1.20      kent 	sc = sc0;
    464   1.1  augustss 	DPRINTFN(1, ("audiointr: sc=%p\n", sc););
    465   1.1  augustss 
    466   1.1  augustss 	au = &sc->sc_au;
    467  1.27  jmcneill 
    468  1.27  jmcneill 	mutex_spin_enter(&sc->sc_am7930.sc_lock);
    469   1.1  augustss 	if (au->au_rdata > au->au_rend && sc->sc_rintr != NULL) {
    470   1.1  augustss 		(*sc->sc_rintr)(sc->sc_rarg);
    471   1.1  augustss 	}
    472  1.23        ad 	pint = (au->au_pdata > au->au_pend && sc->sc_pintr != NULL);
    473  1.23        ad 	if (pint)
    474   1.1  augustss 		(*sc->sc_pintr)(sc->sc_parg);
    475  1.27  jmcneill 
    476  1.27  jmcneill 	mutex_spin_exit(&sc->sc_am7930.sc_lock);
    477   1.1  augustss }
    478   1.1  augustss 
    479   1.1  augustss 
    480   1.1  augustss /* indirect write */
    481   1.1  augustss void
    482  1.20      kent audioamd_codec_iwrite(struct am7930_softc *sc, int reg, uint8_t val)
    483   1.1  augustss {
    484  1.20      kent 	struct audioamd_softc *mdsc;
    485   1.2   mycroft 
    486  1.20      kent 	mdsc = (struct audioamd_softc *)sc;
    487   1.2   mycroft 	audioamd_codec_dwrite(mdsc, AM7930_DREG_CR, reg);
    488   1.2   mycroft 	audioamd_codec_dwrite(mdsc, AM7930_DREG_DR, val);
    489   1.1  augustss }
    490   1.1  augustss 
    491   1.1  augustss void
    492  1.20      kent audioamd_codec_iwrite16(struct am7930_softc *sc, int reg, uint16_t val)
    493   1.1  augustss {
    494  1.20      kent 	struct audioamd_softc *mdsc;
    495   1.2   mycroft 
    496  1.20      kent 	mdsc = (struct audioamd_softc *)sc;
    497   1.2   mycroft 	audioamd_codec_dwrite(mdsc, AM7930_DREG_CR, reg);
    498   1.2   mycroft 	audioamd_codec_dwrite(mdsc, AM7930_DREG_DR, val);
    499   1.2   mycroft 	audioamd_codec_dwrite(mdsc, AM7930_DREG_DR, val>>8);
    500   1.1  augustss }
    501   1.1  augustss 
    502   1.1  augustss 
    503   1.1  augustss /* indirect read */
    504  1.20      kent uint8_t
    505  1.20      kent audioamd_codec_iread(struct am7930_softc *sc, int reg)
    506   1.1  augustss {
    507  1.20      kent 	struct audioamd_softc *mdsc;
    508   1.2   mycroft 
    509  1.20      kent 	mdsc = (struct audioamd_softc *)sc;
    510   1.2   mycroft 	audioamd_codec_dwrite(mdsc, AM7930_DREG_CR, reg);
    511   1.2   mycroft 	return (audioamd_codec_dread(mdsc, AM7930_DREG_DR));
    512   1.1  augustss }
    513   1.1  augustss 
    514  1.20      kent uint16_t
    515  1.20      kent audioamd_codec_iread16(struct am7930_softc *sc, int reg)
    516   1.1  augustss {
    517  1.20      kent 	struct audioamd_softc *mdsc;
    518  1.20      kent 	uint8_t lo, hi;
    519   1.2   mycroft 
    520  1.20      kent 	mdsc = (struct audioamd_softc *)sc;
    521   1.2   mycroft 	audioamd_codec_dwrite(mdsc, AM7930_DREG_CR, reg);
    522   1.2   mycroft 	lo = audioamd_codec_dread(mdsc, AM7930_DREG_DR);
    523   1.2   mycroft 	hi = audioamd_codec_dread(mdsc, AM7930_DREG_DR);
    524  1.20      kent 	return (hi << 8) | lo;
    525   1.1  augustss }
    526   1.1  augustss 
    527   1.1  augustss /* direct read */
    528  1.20      kent uint8_t
    529  1.20      kent audioamd_codec_dread(struct audioamd_softc *sc, int reg)
    530   1.2   mycroft {
    531  1.20      kent 
    532  1.20      kent 	return bus_space_read_1(sc->sc_bt, sc->sc_bh, reg);
    533   1.2   mycroft }
    534   1.2   mycroft 
    535   1.2   mycroft /* direct write */
    536   1.2   mycroft void
    537  1.20      kent audioamd_codec_dwrite(struct audioamd_softc *sc, int reg, uint8_t val)
    538   1.1  augustss {
    539  1.20      kent 
    540   1.2   mycroft 	bus_space_write_1(sc->sc_bt, sc->sc_bh, reg, val);
    541   1.2   mycroft }
    542   1.2   mycroft 
    543   1.2   mycroft int
    544  1.20      kent audioamd_getdev(void *addr, struct audio_device *retp)
    545   1.2   mycroft {
    546   1.2   mycroft 
    547   1.2   mycroft 	*retp = audioamd_device;
    548  1.20      kent 	return 0;
    549   1.1  augustss }
    550   1.1  augustss 
    551  1.27  jmcneill void
    552  1.27  jmcneill audioamd_get_locks(void *opaque, kmutex_t **intr, kmutex_t **thread)
    553  1.27  jmcneill {
    554  1.27  jmcneill 	struct audioamd_softc *asc = opaque;
    555  1.27  jmcneill 	struct am7930_softc *sc = &asc->sc_am7930;
    556  1.27  jmcneill 
    557  1.27  jmcneill 	*intr = &sc->sc_intr_lock;
    558  1.27  jmcneill 	*thread = &sc->sc_lock;
    559  1.27  jmcneill }
    560  1.27  jmcneill 
    561   1.1  augustss #endif /* NAUDIO > 0 */
    562