Home | History | Annotate | Line # | Download | only in dev
vs.c revision 1.31
      1  1.31  christos /*	$NetBSD: vs.c,v 1.31 2007/03/04 06:01:07 christos Exp $	*/
      2   1.1   minoura 
      3   1.1   minoura /*
      4   1.1   minoura  * Copyright (c) 2001 Tetsuya Isaki. All rights reserved.
      5   1.1   minoura  *
      6   1.1   minoura  * Redistribution and use in source and binary forms, with or without
      7   1.1   minoura  * modification, are permitted provided that the following conditions
      8   1.1   minoura  * are met:
      9   1.1   minoura  * 1. Redistributions of source code must retain the above copyright
     10   1.1   minoura  *    notice, this list of conditions and the following disclaimer.
     11   1.1   minoura  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1   minoura  *    notice, this list of conditions and the following disclaimer in the
     13   1.1   minoura  *    documentation and/or other materials provided with the distribution.
     14  1.23     isaki  * 3. The name of the author may not be used to endorse or promote products
     15   1.1   minoura  *    derived from this software without specific prior written permission
     16   1.1   minoura  *
     17   1.1   minoura  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     18   1.1   minoura  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     19   1.1   minoura  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     20   1.1   minoura  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     21   1.1   minoura  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     22   1.1   minoura  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     23   1.1   minoura  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     24   1.1   minoura  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     25   1.1   minoura  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     26   1.1   minoura  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     27   1.1   minoura  * SUCH DAMAGE.
     28   1.1   minoura  */
     29   1.1   minoura 
     30   1.1   minoura /*
     31   1.1   minoura  * VS - OKI MSM6258 ADPCM voice synthesizer device driver.
     32   1.1   minoura  */
     33  1.22     lukem 
     34  1.22     lukem #include <sys/cdefs.h>
     35  1.31  christos __KERNEL_RCSID(0, "$NetBSD: vs.c,v 1.31 2007/03/04 06:01:07 christos Exp $");
     36   1.1   minoura 
     37   1.1   minoura #include "audio.h"
     38   1.1   minoura #include "vs.h"
     39   1.1   minoura #if NAUDIO > 0 && NVS > 0
     40   1.1   minoura 
     41   1.1   minoura #include <sys/param.h>
     42   1.1   minoura #include <sys/systm.h>
     43   1.1   minoura #include <sys/device.h>
     44   1.1   minoura 
     45   1.1   minoura #include <sys/audioio.h>
     46   1.1   minoura #include <dev/audio_if.h>
     47  1.27      kent #include <dev/mulaw.h>
     48   1.1   minoura 
     49   1.1   minoura #include <machine/bus.h>
     50   1.1   minoura #include <machine/cpu.h>
     51   1.1   minoura 
     52   1.1   minoura #include <dev/ic/msm6258var.h>
     53   1.1   minoura 
     54   1.1   minoura #include <arch/x68k/dev/dmacvar.h>
     55   1.1   minoura #include <arch/x68k/dev/intiovar.h>
     56  1.24   minoura #include <arch/x68k/dev/opmvar.h>
     57   1.1   minoura 
     58   1.1   minoura #include <arch/x68k/dev/vsvar.h>
     59   1.1   minoura 
     60   1.1   minoura #ifdef VS_DEBUG
     61  1.28      kent #define DPRINTF(y,x)	if (vs_debug >= (y)) printf x
     62   1.9     isaki static int vs_debug;
     63   1.1   minoura #ifdef AUDIO_DEBUG
     64   1.1   minoura extern int audiodebug;
     65   1.1   minoura #endif
     66   1.1   minoura #else
     67   1.9     isaki #define DPRINTF(y,x)
     68   1.1   minoura #endif
     69   1.1   minoura 
     70  1.28      kent static int  vs_match(struct device *, struct cfdata *, void *);
     71  1.28      kent static void vs_attach(struct device *, struct device *, void *);
     72   1.1   minoura 
     73  1.28      kent static int  vs_dmaintr(void *);
     74  1.28      kent static int  vs_dmaerrintr(void *);
     75   1.1   minoura 
     76   1.1   minoura /* MI audio layer interface */
     77  1.28      kent static int  vs_open(void *, int);
     78  1.28      kent static void vs_close(void *);
     79  1.28      kent static int  vs_query_encoding(void *, struct audio_encoding *);
     80  1.28      kent static int  vs_set_params(void *, int, int, audio_params_t *,
     81  1.28      kent 	audio_params_t *, stream_filter_list_t *, stream_filter_list_t *);
     82  1.28      kent static int  vs_trigger_output(void *, void *, void *, int,
     83  1.28      kent 	void (*)(void *), void *, const audio_params_t *);
     84  1.28      kent static int  vs_trigger_input(void *, void *, void *, int,
     85  1.28      kent 	void (*)(void *), void *, const audio_params_t *);
     86  1.28      kent static int  vs_halt_output(void *);
     87  1.28      kent static int  vs_halt_input(void *);
     88  1.28      kent static int  vs_allocmem(struct vs_softc *, size_t, size_t, size_t, int,
     89  1.28      kent 	struct vs_dma *);
     90  1.28      kent static void vs_freemem(struct vs_dma *);
     91  1.28      kent static int  vs_getdev(void *, struct audio_device *);
     92  1.28      kent static int  vs_set_port(void *, mixer_ctrl_t *);
     93  1.28      kent static int  vs_get_port(void *, mixer_ctrl_t *);
     94  1.28      kent static int  vs_query_devinfo(void *, mixer_devinfo_t *);
     95  1.28      kent static void *vs_allocm(void *, int, size_t, struct malloc_type *, int);
     96  1.28      kent static void vs_freem(void *, void *, struct malloc_type *);
     97  1.28      kent static size_t vs_round_buffersize(void *, int, size_t);
     98  1.28      kent static int  vs_get_props(void *);
     99   1.1   minoura 
    100   1.1   minoura /* lower functions */
    101   1.2   minoura static int vs_round_sr(u_long);
    102  1.28      kent static void vs_set_sr(struct vs_softc *, int);
    103  1.28      kent static inline void vs_set_po(struct vs_softc *, u_long);
    104   1.1   minoura 
    105  1.20     isaki extern struct cfdriver vs_cd;
    106   1.1   minoura 
    107  1.17   thorpej CFATTACH_DECL(vs, sizeof(struct vs_softc),
    108  1.18   thorpej     vs_match, vs_attach, NULL, NULL);
    109   1.1   minoura 
    110  1.26       chs static int vs_attached;
    111  1.26       chs 
    112  1.25      yamt static const struct audio_hw_if vs_hw_if = {
    113   1.1   minoura 	vs_open,
    114   1.1   minoura 	vs_close,
    115   1.1   minoura 	NULL,			/* drain */
    116   1.1   minoura 	vs_query_encoding,
    117   1.1   minoura 	vs_set_params,
    118   1.1   minoura 	NULL,			/* round_blocksize */
    119   1.1   minoura 	NULL,			/* commit_settings */
    120  1.28      kent 	NULL,			/* init_output */
    121  1.28      kent 	NULL,			/* init_input */
    122  1.28      kent 	NULL,			/* start_output */
    123   1.1   minoura 	NULL,			/* start_input */
    124   1.1   minoura 	vs_halt_output,
    125   1.1   minoura 	vs_halt_input,
    126   1.1   minoura 	NULL,			/* speaker_ctl */
    127   1.1   minoura 	vs_getdev,
    128   1.1   minoura 	NULL,			/* setfd */
    129   1.1   minoura 	vs_set_port,
    130   1.1   minoura 	vs_get_port,
    131   1.1   minoura 	vs_query_devinfo,
    132   1.1   minoura 	vs_allocm,
    133   1.1   minoura 	vs_freem,
    134   1.1   minoura 	vs_round_buffersize,
    135   1.1   minoura 	NULL,			/* mappage */
    136   1.1   minoura 	vs_get_props,
    137   1.1   minoura 	vs_trigger_output,
    138   1.1   minoura 	vs_trigger_input,
    139   1.8  augustss 	NULL,
    140   1.1   minoura };
    141   1.1   minoura 
    142   1.1   minoura static struct audio_device vs_device = {
    143   1.1   minoura 	"OKI MSM6258",
    144   1.1   minoura 	"",
    145   1.1   minoura 	"vs"
    146   1.1   minoura };
    147   1.1   minoura 
    148   1.1   minoura struct {
    149   1.1   minoura 	u_long rate;
    150   1.1   minoura 	u_char clk;
    151   1.1   minoura 	u_char den;
    152   1.1   minoura } vs_l2r[] = {
    153   1.2   minoura 	{ VS_RATE_15K, VS_CLK_8MHZ, VS_SRATE_512 },
    154   1.2   minoura 	{ VS_RATE_10K, VS_CLK_8MHZ, VS_SRATE_768 },
    155   1.2   minoura 	{ VS_RATE_7K,  VS_CLK_8MHZ, VS_SRATE_1024},
    156   1.2   minoura 	{ VS_RATE_5K,  VS_CLK_4MHZ, VS_SRATE_768 },
    157   1.2   minoura 	{ VS_RATE_3K,  VS_CLK_4MHZ, VS_SRATE_1024}
    158   1.1   minoura };
    159   1.1   minoura 
    160   1.2   minoura #define NUM_RATE	(sizeof(vs_l2r)/sizeof(vs_l2r[0]))
    161   1.1   minoura 
    162  1.15     isaki struct {
    163  1.29        he 	const char *name;
    164  1.15     isaki 	int	encoding;
    165  1.15     isaki 	int	precision;
    166  1.15     isaki } vs_encodings[] = {
    167  1.15     isaki 	{AudioEadpcm,      AUDIO_ENCODING_ADPCM,       4},
    168  1.15     isaki 	{AudioEslinear,    AUDIO_ENCODING_SLINEAR,     8},
    169  1.15     isaki 	{AudioEulinear,    AUDIO_ENCODING_ULINEAR,     8},
    170  1.28      kent 	{AudioEmulaw,      AUDIO_ENCODING_ULAW,	       8},
    171  1.15     isaki 	{AudioEslinear_be, AUDIO_ENCODING_SLINEAR_BE, 16},
    172  1.15     isaki 	{AudioEslinear_le, AUDIO_ENCODING_SLINEAR_LE, 16},
    173  1.10     isaki };
    174  1.10     isaki 
    175   1.1   minoura static int
    176   1.1   minoura vs_match(struct device *parent, struct cfdata *cf, void *aux)
    177   1.1   minoura {
    178  1.28      kent 	struct intio_attach_args *ia;
    179   1.1   minoura 
    180  1.28      kent 	ia = aux;
    181  1.26       chs 	if (strcmp(ia->ia_name, "vs") || vs_attached)
    182   1.1   minoura 		return 0;
    183   1.1   minoura 
    184   1.1   minoura 	if (ia->ia_addr == INTIOCF_ADDR_DEFAULT)
    185   1.1   minoura 		ia->ia_addr = VS_ADDR;
    186   1.1   minoura 	if (ia->ia_dma == INTIOCF_DMA_DEFAULT)
    187   1.1   minoura 		ia->ia_dma = VS_DMA;
    188   1.1   minoura 	if (ia->ia_dmaintr == INTIOCF_DMAINTR_DEFAULT)
    189   1.1   minoura 		ia->ia_dmaintr = VS_DMAINTR;
    190   1.1   minoura 
    191   1.1   minoura 	/* fixed parameters */
    192   1.1   minoura 	if (ia->ia_addr != VS_ADDR)
    193   1.1   minoura 		return 0;
    194   1.1   minoura 	if (ia->ia_dma != VS_DMA)
    195   1.1   minoura 		return 0;
    196   1.1   minoura 	if (ia->ia_dmaintr != VS_DMAINTR)
    197   1.1   minoura 		return 0;
    198   1.1   minoura 
    199   1.9     isaki #ifdef VS_DEBUG
    200   1.9     isaki 	vs_debug = 1;
    201   1.1   minoura #ifdef AUDIO_DEBUG
    202   1.1   minoura 	audiodebug = 2;
    203   1.1   minoura #endif
    204   1.9     isaki #endif
    205   1.1   minoura 
    206   1.1   minoura 	return 1;
    207   1.1   minoura }
    208   1.1   minoura 
    209   1.1   minoura static void
    210   1.1   minoura vs_attach(struct device *parent, struct device *self, void *aux)
    211   1.1   minoura {
    212  1.28      kent 	struct vs_softc *sc;
    213   1.1   minoura 	bus_space_tag_t iot;
    214   1.1   minoura 	bus_space_handle_t ioh;
    215  1.28      kent 	struct intio_attach_args *ia;
    216   1.1   minoura 
    217  1.28      kent 	sc = (struct vs_softc *)self;
    218  1.28      kent 	ia = aux;
    219  1.26       chs 	vs_attached = 1;
    220  1.26       chs 
    221   1.1   minoura 	printf("\n");
    222  1.28      kent 
    223   1.1   minoura 	/* Re-map the I/O space */
    224   1.1   minoura 	iot = ia->ia_bst;
    225   1.1   minoura 	bus_space_map(iot, ia->ia_addr, 0x2000, BUS_SPACE_MAP_SHIFTED, &ioh);
    226   1.1   minoura 
    227   1.1   minoura 	/* Initialize sc */
    228   1.1   minoura 	sc->sc_iot = iot;
    229   1.1   minoura 	sc->sc_ioh = ioh;
    230   1.1   minoura 	sc->sc_hw_if = &vs_hw_if;
    231  1.31  christos 	sc->sc_addr = (void *) ia->ia_addr;
    232   1.1   minoura 	sc->sc_dmas = NULL;
    233   1.1   minoura 
    234   1.1   minoura 	/* XXX */
    235   1.1   minoura 	bus_space_map(iot, PPI_ADDR, PPI_MAPSIZE, BUS_SPACE_MAP_SHIFTED,
    236   1.1   minoura 		      &sc->sc_ppi);
    237   1.1   minoura 
    238   1.1   minoura 	/* Initialize DMAC */
    239   1.1   minoura 	sc->sc_dmat = ia->ia_dmat;
    240   1.1   minoura 	sc->sc_dma_ch = dmac_alloc_channel(parent, ia->ia_dma, "vs",
    241   1.1   minoura 		ia->ia_dmaintr,   vs_dmaintr, sc,
    242   1.1   minoura 		ia->ia_dmaintr+1, vs_dmaerrintr, sc);
    243   1.1   minoura 
    244   1.1   minoura 	printf("%s: MSM6258V ADPCM voice synthesizer\n", sc->sc_dev.dv_xname);
    245   1.1   minoura 
    246   1.1   minoura 	audio_attach_mi(&vs_hw_if, sc, &sc->sc_dev);
    247   1.1   minoura }
    248   1.1   minoura 
    249   1.1   minoura /*
    250   1.1   minoura  * vs interrupt handler
    251   1.1   minoura  */
    252   1.1   minoura static int
    253   1.1   minoura vs_dmaintr(void *hdl)
    254   1.1   minoura {
    255  1.28      kent 	struct vs_softc *sc;
    256   1.1   minoura 
    257   1.9     isaki 	DPRINTF(2, ("vs_dmaintr\n"));
    258  1.28      kent 	sc = hdl;
    259   1.1   minoura 	if (sc->sc_pintr) {
    260   1.1   minoura 		/* start next transfer */
    261   1.2   minoura 		sc->sc_current.dmap += sc->sc_current.blksize;
    262   1.2   minoura 		if (sc->sc_current.dmap + sc->sc_current.blksize
    263  1.19     isaki 		    > sc->sc_current.bufsize)
    264   1.1   minoura 			sc->sc_current.dmap -= sc->sc_current.bufsize;
    265  1.19     isaki 		dmac_start_xfer_offset(sc->sc_dma_ch->ch_softc,
    266   1.1   minoura 					sc->sc_current.xfer,
    267   1.1   minoura 					sc->sc_current.dmap,
    268   1.2   minoura 					sc->sc_current.blksize);
    269   1.1   minoura 		sc->sc_pintr(sc->sc_parg);
    270   1.1   minoura 	} else if (sc->sc_rintr) {
    271   1.1   minoura 		/* start next transfer */
    272   1.2   minoura 		sc->sc_current.dmap += sc->sc_current.blksize;
    273   1.2   minoura 		if (sc->sc_current.dmap + sc->sc_current.blksize
    274  1.19     isaki 		    > sc->sc_current.bufsize)
    275   1.6   minoura 			sc->sc_current.dmap -= sc->sc_current.bufsize;
    276  1.19     isaki 		dmac_start_xfer_offset(sc->sc_dma_ch->ch_softc,
    277   1.1   minoura 					sc->sc_current.xfer,
    278   1.1   minoura 					sc->sc_current.dmap,
    279   1.2   minoura 					sc->sc_current.blksize);
    280   1.1   minoura 		sc->sc_rintr(sc->sc_rarg);
    281   1.1   minoura 	} else {
    282  1.19     isaki 		printf("vs_dmaintr: spurious interrupt\n");
    283   1.1   minoura 	}
    284   1.1   minoura 
    285   1.1   minoura 	return 1;
    286   1.1   minoura }
    287   1.1   minoura 
    288   1.1   minoura static int
    289   1.1   minoura vs_dmaerrintr(void *hdl)
    290   1.1   minoura {
    291  1.28      kent 	struct vs_softc *sc;
    292   1.1   minoura 
    293  1.28      kent 	sc = hdl;
    294   1.9     isaki 	DPRINTF(1, ("%s: DMA transfer error.\n", sc->sc_dev.dv_xname));
    295   1.1   minoura 	/* XXX */
    296  1.11   minoura 	vs_dmaintr(sc);
    297   1.1   minoura 
    298   1.1   minoura 	return 1;
    299   1.1   minoura }
    300   1.1   minoura 
    301   1.1   minoura 
    302   1.1   minoura /*
    303   1.1   minoura  * audio MD layer interfaces
    304   1.1   minoura  */
    305   1.1   minoura 
    306   1.1   minoura static int
    307   1.1   minoura vs_open(void *hdl, int flags)
    308   1.1   minoura {
    309  1.28      kent 	struct vs_softc *sc;
    310   1.1   minoura 
    311   1.9     isaki 	DPRINTF(1, ("vs_open: flags=%d\n", flags));
    312  1.28      kent 	sc = hdl;
    313   1.1   minoura 	sc->sc_pintr = NULL;
    314   1.1   minoura 	sc->sc_rintr = NULL;
    315  1.14     isaki 
    316   1.1   minoura 	return 0;
    317   1.1   minoura }
    318   1.1   minoura 
    319   1.1   minoura static void
    320   1.1   minoura vs_close(void *hdl)
    321   1.1   minoura {
    322  1.28      kent 
    323   1.9     isaki 	DPRINTF(1, ("vs_close\n"));
    324   1.1   minoura }
    325   1.1   minoura 
    326   1.1   minoura static int
    327   1.1   minoura vs_query_encoding(void *hdl, struct audio_encoding *fp)
    328   1.1   minoura {
    329  1.28      kent 
    330   1.9     isaki 	DPRINTF(1, ("vs_query_encoding\n"));
    331  1.10     isaki 	if (fp->index >= sizeof(vs_encodings) / sizeof(vs_encodings[0]))
    332   1.1   minoura 		return EINVAL;
    333  1.10     isaki 
    334  1.15     isaki 	strcpy(fp->name, vs_encodings[fp->index].name);
    335  1.15     isaki 	fp->encoding  = vs_encodings[fp->index].encoding;
    336  1.15     isaki 	fp->precision = vs_encodings[fp->index].precision;
    337  1.15     isaki 	if (fp->encoding == AUDIO_ENCODING_ADPCM)
    338  1.15     isaki 		fp->flags = 0;
    339  1.15     isaki 	else
    340  1.15     isaki 		fp->flags = AUDIO_ENCODINGFLAG_EMULATED;
    341   1.1   minoura 	return 0;
    342   1.1   minoura }
    343   1.1   minoura 
    344   1.2   minoura static int
    345   1.1   minoura vs_round_sr(u_long rate)
    346   1.1   minoura {
    347   1.1   minoura 	int i;
    348  1.28      kent 	int diff;
    349  1.28      kent 	int nearest;
    350   1.2   minoura 
    351  1.28      kent 	diff = rate;
    352  1.28      kent 	nearest = 0;
    353   1.2   minoura 	for (i = 0; i < NUM_RATE; i++) {
    354   1.2   minoura 		if (rate >= vs_l2r[i].rate) {
    355   1.2   minoura 			if (rate - vs_l2r[i].rate < diff) {
    356   1.2   minoura 				diff = rate - vs_l2r[i].rate;
    357   1.2   minoura 				nearest = i;
    358   1.2   minoura 			}
    359   1.2   minoura 		} else {
    360   1.2   minoura 			if (vs_l2r[i].rate - rate < diff) {
    361   1.2   minoura 				diff = vs_l2r[i].rate - rate;
    362   1.2   minoura 				nearest = i;
    363   1.2   minoura 			}
    364   1.2   minoura 		}
    365   1.1   minoura 	}
    366   1.2   minoura 	if (diff * 100 / rate > 15)
    367   1.2   minoura 		return -1;
    368   1.2   minoura 	else
    369   1.2   minoura 		return nearest;
    370   1.1   minoura }
    371   1.1   minoura 
    372   1.1   minoura static int
    373   1.1   minoura vs_set_params(void *hdl, int setmode, int usemode,
    374  1.27      kent 	audio_params_t *play, audio_params_t *rec,
    375  1.27      kent 	stream_filter_list_t *pfil, stream_filter_list_t *rfil)
    376   1.1   minoura {
    377  1.28      kent 	struct vs_softc *sc;
    378   1.1   minoura 	struct audio_params *p;
    379   1.1   minoura 	int mode;
    380   1.2   minoura 	int rate;
    381  1.27      kent 	stream_filter_factory_t *pswcode;
    382  1.27      kent 	stream_filter_factory_t *rswcode;
    383  1.27      kent 	audio_params_t hw;
    384  1.27      kent 	int matched;
    385   1.1   minoura 
    386  1.19     isaki 	DPRINTF(1, ("vs_set_params: setmode=%d, usemode=%d\n",
    387  1.19     isaki 		setmode, usemode));
    388   1.1   minoura 
    389  1.28      kent 	sc = hdl;
    390   1.1   minoura 	/* set first record info, then play info */
    391   1.1   minoura 	for (mode = AUMODE_RECORD; mode != -1;
    392   1.1   minoura 	     mode = (mode == AUMODE_RECORD) ? AUMODE_PLAY : -1) {
    393   1.1   minoura 		if ((setmode & mode) == 0)
    394   1.1   minoura 			continue;
    395   1.1   minoura 
    396   1.1   minoura 		p = (mode == AUMODE_PLAY) ? play : rec;
    397   1.1   minoura 
    398   1.1   minoura 		if (p->channels != 1)
    399  1.28      kent 			return EINVAL;
    400   1.1   minoura 
    401   1.2   minoura 		rate = p->sample_rate;
    402  1.15     isaki 		pswcode = NULL;
    403  1.15     isaki 		rswcode = NULL;
    404  1.27      kent 		hw = *p;
    405  1.27      kent 		hw.encoding = AUDIO_ENCODING_ADPCM;
    406  1.27      kent 		hw.precision = hw.validbits = 4;
    407  1.12     isaki 		DPRINTF(1, ("vs_set_params: encoding=%d, precision=%d\n",
    408  1.12     isaki 			p->encoding, p->precision));
    409  1.27      kent 		matched = 0;
    410  1.15     isaki 		switch (p->precision) {
    411  1.15     isaki 		case 4:
    412  1.15     isaki 			if (p->encoding == AUDIO_ENCODING_ADPCM)
    413  1.27      kent 				matched = 1;
    414   1.1   minoura 			break;
    415  1.15     isaki 		case 8:
    416  1.15     isaki 			switch (p->encoding) {
    417  1.15     isaki 			case AUDIO_ENCODING_ULAW:
    418  1.27      kent 				matched = 1;
    419  1.27      kent 				hw.encoding = AUDIO_ENCODING_ULINEAR_LE;
    420  1.27      kent 				hw.precision = hw.validbits = 8;
    421  1.27      kent 				pfil->prepend(pfil, mulaw_to_linear8, &hw);
    422  1.27      kent 				hw.encoding = AUDIO_ENCODING_ADPCM;
    423  1.27      kent 				hw.precision = hw.validbits = 4;
    424  1.27      kent 				pfil->prepend(pfil, msm6258_linear8_to_adpcm, &hw);
    425  1.27      kent 				rfil->append(rfil, msm6258_adpcm_to_linear8, &hw);
    426  1.27      kent 				hw.encoding = AUDIO_ENCODING_ULINEAR_LE;
    427  1.27      kent 				hw.precision = hw.validbits = 8;
    428  1.27      kent 				rfil->append(rfil, linear8_to_mulaw, &hw);
    429  1.15     isaki 				break;
    430  1.15     isaki 			case AUDIO_ENCODING_SLINEAR:
    431  1.15     isaki 			case AUDIO_ENCODING_SLINEAR_LE:
    432  1.15     isaki 			case AUDIO_ENCODING_SLINEAR_BE:
    433  1.15     isaki 			case AUDIO_ENCODING_ULINEAR:
    434  1.15     isaki 			case AUDIO_ENCODING_ULINEAR_LE:
    435  1.15     isaki 			case AUDIO_ENCODING_ULINEAR_BE:
    436  1.27      kent 				matched = 1;
    437  1.27      kent 				pfil->append(pfil, msm6258_linear8_to_adpcm, &hw);
    438  1.27      kent 				rfil->append(rfil, msm6258_adpcm_to_linear8, &hw);
    439  1.15     isaki 				break;
    440  1.15     isaki 			}
    441   1.1   minoura 			break;
    442  1.15     isaki 		case 16:
    443  1.15     isaki 			switch (p->encoding) {
    444  1.15     isaki 			case AUDIO_ENCODING_SLINEAR_LE:
    445  1.15     isaki 			case AUDIO_ENCODING_SLINEAR_BE:
    446  1.27      kent 				matched = 1;
    447  1.27      kent 				pfil->append(pfil, msm6258_slinear16_to_adpcm, &hw);
    448  1.27      kent 				rfil->append(rfil, msm6258_adpcm_to_slinear16, &hw);
    449  1.15     isaki 				break;
    450  1.15     isaki 			}
    451   1.1   minoura 			break;
    452  1.15     isaki 		}
    453  1.27      kent 		if (matched == 0) {
    454   1.9     isaki 			DPRINTF(1, ("vs_set_params: mode=%d, encoding=%d\n",
    455   1.1   minoura 				mode, p->encoding));
    456  1.15     isaki 			return EINVAL;
    457   1.1   minoura 		}
    458  1.15     isaki 
    459   1.9     isaki 		DPRINTF(1, ("vs_set_params: rate=%d -> ", rate));
    460   1.2   minoura 		rate = vs_round_sr(rate);
    461   1.9     isaki 		DPRINTF(1, ("%d\n", rate));
    462   1.2   minoura 		if (rate < 0)
    463  1.28      kent 			return EINVAL;
    464  1.15     isaki 		if (mode == AUMODE_PLAY) {
    465   1.2   minoura 			sc->sc_current.prate = rate;
    466  1.15     isaki 		} else {
    467   1.2   minoura 			sc->sc_current.rrate = rate;
    468  1.15     isaki 		}
    469   1.1   minoura 	}
    470   1.1   minoura 
    471   1.1   minoura 	return 0;
    472   1.1   minoura }
    473   1.1   minoura 
    474   1.1   minoura static void
    475   1.2   minoura vs_set_sr(struct vs_softc *sc, int rate)
    476   1.1   minoura {
    477  1.28      kent 
    478   1.9     isaki 	DPRINTF(1, ("setting sample rate to %d, %d\n",
    479   1.2   minoura 		 rate, (int)vs_l2r[rate].rate));
    480   1.2   minoura 	bus_space_write_1(sc->sc_iot, sc->sc_ppi, PPI_PORTC,
    481   1.2   minoura 			  (bus_space_read_1 (sc->sc_iot, sc->sc_ppi,
    482   1.2   minoura 					     PPI_PORTC) & 0xf0)
    483   1.2   minoura 			  | vs_l2r[rate].den);
    484   1.2   minoura 	adpcm_chgclk(vs_l2r[rate].clk);
    485   1.1   minoura }
    486   1.1   minoura 
    487   1.1   minoura static inline void
    488   1.1   minoura vs_set_po(struct vs_softc *sc, u_long po)
    489   1.1   minoura {
    490   1.1   minoura 	bus_space_write_1(sc->sc_iot, sc->sc_ppi, PPI_PORTC,
    491   1.1   minoura 			  (bus_space_read_1(sc->sc_iot, sc->sc_ppi, PPI_PORTC)
    492   1.1   minoura 			   & 0xfc) | po);
    493   1.1   minoura }
    494   1.1   minoura 
    495   1.1   minoura static int
    496   1.1   minoura vs_trigger_output(void *hdl, void *start, void *end, int bsize,
    497   1.6   minoura 		  void (*intr)(void *), void *arg,
    498  1.27      kent 		  const audio_params_t *p)
    499   1.1   minoura {
    500  1.28      kent 	struct vs_softc *sc;
    501   1.1   minoura 	struct vs_dma *vd;
    502   1.1   minoura 	struct dmac_dma_xfer *xf;
    503  1.28      kent 	struct dmac_channel_stat *chan;
    504   1.1   minoura 
    505   1.9     isaki 	DPRINTF(2, ("vs_trigger_output: start=%p, bsize=%d, intr=%p, arg=%p\n",
    506   1.1   minoura 		 start, bsize, intr, arg));
    507  1.28      kent 	sc = hdl;
    508  1.28      kent 	chan = sc->sc_dma_ch;
    509   1.1   minoura 	sc->sc_pintr = intr;
    510   1.1   minoura 	sc->sc_parg  = arg;
    511   1.2   minoura 	sc->sc_current.blksize = bsize;
    512   1.1   minoura 	sc->sc_current.bufsize = (char*)end - (char*)start;
    513   1.1   minoura 	sc->sc_current.dmap = 0;
    514   1.1   minoura 
    515   1.1   minoura 	/* Find DMA buffer. */
    516   1.1   minoura 	for (vd = sc->sc_dmas; vd != NULL && KVADDR(vd) != start;
    517   1.1   minoura 	     vd = vd->vd_next)
    518  1.28      kent 		continue;
    519   1.1   minoura 	if (vd == NULL) {
    520   1.1   minoura 		printf("%s: trigger_output: bad addr %p\n",
    521   1.1   minoura 		    sc->sc_dev.dv_xname, start);
    522  1.28      kent 		return EINVAL;
    523   1.1   minoura 	}
    524   1.1   minoura 
    525   1.2   minoura 	vs_set_sr(sc, sc->sc_current.prate);
    526   1.1   minoura 	vs_set_po(sc, VS_PANOUT_LR);
    527   1.2   minoura 
    528  1.19     isaki 	xf = dmac_alloc_xfer(chan, sc->sc_dmat, vd->vd_map);
    529   1.1   minoura 	sc->sc_current.xfer = xf;
    530   1.1   minoura 	chan->ch_dcr = (DMAC_DCR_XRM_CSWOH | DMAC_DCR_OTYP_EASYNC |
    531   1.1   minoura 			DMAC_DCR_OPS_8BIT);
    532   1.1   minoura 	chan->ch_ocr = DMAC_OCR_REQG_EXTERNAL;
    533   1.1   minoura 	xf->dx_ocr = DMAC_OCR_DIR_MTD;
    534   1.1   minoura 	xf->dx_scr = DMAC_SCR_MAC_COUNT_UP | DMAC_SCR_DAC_NO_COUNT;
    535   1.1   minoura 	xf->dx_device = sc->sc_addr + MSM6258_DATA*2 + 1;
    536   1.2   minoura 
    537  1.19     isaki 	dmac_load_xfer(chan->ch_softc, xf);
    538  1.19     isaki 	dmac_start_xfer_offset(chan->ch_softc, xf, 0, sc->sc_current.blksize);
    539  1.19     isaki 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, MSM6258_STAT, 2);
    540   1.1   minoura 
    541   1.1   minoura 	return 0;
    542   1.1   minoura }
    543   1.1   minoura 
    544   1.1   minoura static int
    545   1.1   minoura vs_trigger_input(void *hdl, void *start, void *end, int bsize,
    546   1.6   minoura 		 void (*intr)(void *), void *arg,
    547  1.27      kent 		 const audio_params_t *p)
    548   1.1   minoura {
    549  1.28      kent 	struct vs_softc *sc;
    550   1.1   minoura 	struct vs_dma *vd;
    551   1.2   minoura 	struct dmac_dma_xfer *xf;
    552  1.28      kent 	struct dmac_channel_stat *chan;
    553   1.1   minoura 
    554   1.9     isaki 	DPRINTF(2, ("vs_trigger_input: start=%p, bsize=%d, intr=%p, arg=%p\n",
    555   1.1   minoura 		 start, bsize, intr, arg));
    556  1.28      kent 	sc = hdl;
    557  1.28      kent 	chan = sc->sc_dma_ch;
    558   1.1   minoura 	sc->sc_rintr = intr;
    559   1.1   minoura 	sc->sc_rarg  = arg;
    560   1.2   minoura 	sc->sc_current.blksize = bsize;
    561   1.1   minoura 	sc->sc_current.bufsize = (char*)end - (char*)start;
    562   1.1   minoura 	sc->sc_current.dmap = 0;
    563   1.1   minoura 
    564   1.1   minoura 	/* Find DMA buffer. */
    565   1.1   minoura 	for (vd = sc->sc_dmas; vd != NULL && KVADDR(vd) != start;
    566   1.1   minoura 	     vd = vd->vd_next)
    567  1.28      kent 		continue;
    568   1.1   minoura 	if (vd == NULL) {
    569   1.1   minoura 		printf("%s: trigger_output: bad addr %p\n",
    570   1.1   minoura 		    sc->sc_dev.dv_xname, start);
    571  1.28      kent 		return EINVAL;
    572   1.1   minoura 	}
    573   1.1   minoura 
    574   1.2   minoura 	vs_set_sr(sc, sc->sc_current.rrate);
    575  1.19     isaki 	xf = dmac_alloc_xfer(chan, sc->sc_dmat, vd->vd_map);
    576   1.2   minoura 	sc->sc_current.xfer = xf;
    577   1.2   minoura 	chan->ch_dcr = (DMAC_DCR_XRM_CSWOH | DMAC_DCR_OTYP_EASYNC |
    578   1.2   minoura 			DMAC_DCR_OPS_8BIT);
    579   1.2   minoura 	chan->ch_ocr = DMAC_OCR_REQG_EXTERNAL;
    580   1.2   minoura 	xf->dx_ocr = DMAC_OCR_DIR_DTM;
    581   1.2   minoura 	xf->dx_scr = DMAC_SCR_MAC_COUNT_UP | DMAC_SCR_DAC_NO_COUNT;
    582   1.2   minoura 	xf->dx_device = sc->sc_addr + MSM6258_DATA*2 + 1;
    583   1.2   minoura 
    584  1.19     isaki 	dmac_load_xfer(chan->ch_softc, xf);
    585  1.19     isaki 	dmac_start_xfer_offset(chan->ch_softc, xf, 0, sc->sc_current.blksize);
    586  1.19     isaki 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, MSM6258_STAT, 4);
    587   1.1   minoura 
    588   1.1   minoura 	return 0;
    589   1.1   minoura }
    590   1.1   minoura 
    591   1.1   minoura static int
    592   1.1   minoura vs_halt_output(void *hdl)
    593   1.1   minoura {
    594  1.28      kent 	struct vs_softc *sc;
    595   1.1   minoura 
    596   1.9     isaki 	DPRINTF(1, ("vs_halt_output\n"));
    597  1.28      kent 	sc = hdl;
    598   1.1   minoura 	/* stop ADPCM play */
    599   1.1   minoura 	dmac_abort_xfer(sc->sc_dma_ch->ch_softc, sc->sc_current.xfer);
    600  1.19     isaki 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, MSM6258_STAT, 1);
    601   1.1   minoura 
    602   1.1   minoura 	return 0;
    603   1.1   minoura }
    604   1.1   minoura 
    605   1.1   minoura static int
    606   1.1   minoura vs_halt_input(void *hdl)
    607   1.1   minoura {
    608  1.28      kent 	struct vs_softc *sc;
    609   1.1   minoura 
    610   1.9     isaki 	DPRINTF(1, ("vs_halt_input\n"));
    611  1.28      kent 	sc = hdl;
    612   1.1   minoura 	/* stop ADPCM recoding */
    613   1.1   minoura 	dmac_abort_xfer(sc->sc_dma_ch->ch_softc, sc->sc_current.xfer);
    614  1.19     isaki 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, MSM6258_STAT, 1);
    615   1.1   minoura 
    616   1.1   minoura 	return 0;
    617   1.1   minoura }
    618   1.1   minoura 
    619   1.1   minoura static int
    620  1.19     isaki vs_allocmem(struct vs_softc *sc, size_t size, size_t align, size_t boundary,
    621  1.19     isaki 	int flags, struct vs_dma *vd)
    622   1.1   minoura {
    623   1.1   minoura 	int error, wait;
    624   1.1   minoura 
    625   1.1   minoura #ifdef DIAGNOSTIC
    626   1.1   minoura 	if (size > DMAC_MAXSEGSZ)
    627   1.1   minoura 		panic ("vs_allocmem: maximum size exceeded, %d", (int) size);
    628   1.1   minoura #endif
    629   1.1   minoura 
    630   1.1   minoura 	wait = (flags & M_NOWAIT) ? BUS_DMA_NOWAIT : BUS_DMA_WAITOK;
    631   1.1   minoura 	vd->vd_size = size;
    632  1.28      kent 
    633   1.1   minoura 	error = bus_dmamem_alloc(vd->vd_dmat, vd->vd_size, align, boundary,
    634   1.1   minoura 				 vd->vd_segs,
    635   1.1   minoura 				 sizeof (vd->vd_segs) / sizeof (vd->vd_segs[0]),
    636   1.1   minoura 				 &vd->vd_nsegs, wait);
    637   1.1   minoura 	if (error)
    638   1.1   minoura 		goto out;
    639   1.1   minoura 
    640   1.1   minoura 	error = bus_dmamem_map(vd->vd_dmat, vd->vd_segs, vd->vd_nsegs,
    641   1.1   minoura 			       vd->vd_size, &vd->vd_addr,
    642   1.1   minoura 			       wait | BUS_DMA_COHERENT);
    643   1.1   minoura 	if (error)
    644   1.1   minoura 		goto free;
    645   1.1   minoura 
    646   1.1   minoura 	error = bus_dmamap_create(vd->vd_dmat, vd->vd_size, 1, DMAC_MAXSEGSZ,
    647   1.1   minoura 				  0, wait, &vd->vd_map);
    648   1.1   minoura 	if (error)
    649   1.1   minoura 		goto unmap;
    650   1.1   minoura 
    651   1.1   minoura 	error = bus_dmamap_load(vd->vd_dmat, vd->vd_map, vd->vd_addr,
    652   1.1   minoura 				vd->vd_size, NULL, wait);
    653   1.1   minoura 	if (error)
    654   1.1   minoura 		goto destroy;
    655   1.1   minoura 
    656  1.28      kent 	return 0;
    657   1.1   minoura 
    658   1.1   minoura  destroy:
    659   1.1   minoura 	bus_dmamap_destroy(vd->vd_dmat, vd->vd_map);
    660   1.1   minoura  unmap:
    661   1.1   minoura 	bus_dmamem_unmap(vd->vd_dmat, vd->vd_addr, vd->vd_size);
    662   1.1   minoura  free:
    663   1.1   minoura 	bus_dmamem_free(vd->vd_dmat, vd->vd_segs, vd->vd_nsegs);
    664   1.1   minoura  out:
    665  1.28      kent 	return error;
    666   1.1   minoura }
    667   1.1   minoura 
    668   1.1   minoura static void
    669  1.19     isaki vs_freemem(struct vs_dma *vd)
    670   1.1   minoura {
    671   1.1   minoura 
    672   1.1   minoura 	bus_dmamap_unload(vd->vd_dmat, vd->vd_map);
    673   1.1   minoura 	bus_dmamap_destroy(vd->vd_dmat, vd->vd_map);
    674   1.1   minoura 	bus_dmamem_unmap(vd->vd_dmat, vd->vd_addr, vd->vd_size);
    675   1.1   minoura 	bus_dmamem_free(vd->vd_dmat, vd->vd_segs, vd->vd_nsegs);
    676   1.1   minoura }
    677   1.1   minoura 
    678   1.1   minoura static int
    679   1.1   minoura vs_getdev(void *hdl, struct audio_device *retp)
    680   1.1   minoura {
    681  1.28      kent 
    682   1.9     isaki 	DPRINTF(1, ("vs_getdev\n"));
    683   1.1   minoura 	*retp = vs_device;
    684   1.1   minoura 	return 0;
    685   1.1   minoura }
    686   1.1   minoura 
    687   1.1   minoura static int
    688   1.1   minoura vs_set_port(void *hdl, mixer_ctrl_t *cp)
    689   1.1   minoura {
    690  1.28      kent 
    691   1.9     isaki 	DPRINTF(1, ("vs_set_port\n"));
    692   1.1   minoura 	return 0;
    693   1.1   minoura }
    694   1.1   minoura 
    695   1.1   minoura static int
    696   1.1   minoura vs_get_port(void *hdl, mixer_ctrl_t *cp)
    697   1.1   minoura {
    698  1.28      kent 
    699   1.9     isaki 	DPRINTF(1, ("vs_get_port\n"));
    700   1.1   minoura 	return 0;
    701   1.1   minoura }
    702   1.1   minoura 
    703   1.1   minoura static int
    704   1.1   minoura vs_query_devinfo(void *hdl, mixer_devinfo_t *mi)
    705   1.1   minoura {
    706  1.28      kent 
    707   1.9     isaki 	DPRINTF(1, ("vs_query_devinfo\n"));
    708   1.1   minoura 	switch (mi->index) {
    709   1.1   minoura 	default:
    710   1.1   minoura 		return EINVAL;
    711   1.1   minoura 	}
    712   1.1   minoura 	return 0;
    713   1.1   minoura }
    714   1.1   minoura 
    715   1.1   minoura static void *
    716  1.21   thorpej vs_allocm(void *hdl, int direction, size_t size, struct malloc_type *type,
    717  1.21   thorpej     int flags)
    718   1.1   minoura {
    719  1.28      kent 	struct vs_softc *sc;
    720   1.1   minoura 	struct vs_dma *vd;
    721   1.1   minoura 	int error;
    722   1.1   minoura 
    723   1.1   minoura 	if ((vd = malloc(size, type, flags)) == NULL)
    724  1.28      kent 		return NULL;
    725  1.28      kent 	sc = hdl;
    726   1.1   minoura 	vd->vd_dmat = sc->sc_dmat;
    727   1.1   minoura 
    728   1.1   minoura 	error = vs_allocmem(sc, size, 32, 0, flags, vd);
    729   1.1   minoura 	if (error) {
    730   1.1   minoura 		free(vd, type);
    731  1.28      kent 		return NULL;
    732   1.1   minoura 	}
    733   1.1   minoura 	vd->vd_next = sc->sc_dmas;
    734   1.1   minoura 	sc->sc_dmas = vd;
    735   1.1   minoura 
    736  1.28      kent 	return KVADDR(vd);
    737   1.1   minoura }
    738   1.1   minoura 
    739   1.1   minoura static void
    740  1.21   thorpej vs_freem(void *hdl, void *addr, struct malloc_type *type)
    741   1.1   minoura {
    742  1.28      kent 	struct vs_softc *sc;
    743   1.1   minoura 	struct vs_dma *p, **pp;
    744   1.1   minoura 
    745  1.28      kent 	sc = hdl;
    746   1.1   minoura 	for (pp = &sc->sc_dmas; (p = *pp) != NULL; pp = &p->vd_next) {
    747   1.1   minoura 		if (KVADDR(p) == addr) {
    748   1.1   minoura 			vs_freemem(p);
    749   1.1   minoura 			*pp = p->vd_next;
    750   1.1   minoura 			free(p, type);
    751   1.1   minoura 			return;
    752   1.1   minoura 		}
    753   1.1   minoura 	}
    754   1.1   minoura }
    755   1.1   minoura 
    756   1.1   minoura static size_t
    757   1.1   minoura vs_round_buffersize(void *hdl, int direction, size_t bufsize)
    758   1.1   minoura {
    759  1.28      kent 
    760   1.1   minoura 	if (bufsize > DMAC_MAXSEGSZ)
    761   1.1   minoura 		bufsize = DMAC_MAXSEGSZ;
    762   1.1   minoura 	return bufsize;
    763   1.1   minoura }
    764   1.1   minoura 
    765   1.1   minoura #if 0
    766   1.1   minoura paddr_t
    767  1.19     isaki vs_mappage(void *addr, void *mem, off_t off, int prot)
    768   1.1   minoura {
    769  1.28      kent 	struct vs_softc *sc;
    770   1.1   minoura 	struct vs_dma *p;
    771   1.1   minoura 
    772   1.1   minoura 	if (off < 0)
    773  1.28      kent 		return -1;
    774  1.28      kent 	sc = addr;
    775   1.1   minoura 	for (p = sc->sc_dmas; p != NULL && KVADDR(p) != mem;
    776   1.1   minoura 	     p = p->vd_next)
    777  1.28      kent 		continue;
    778   1.1   minoura 	if (p == NULL) {
    779   1.1   minoura 		printf("%s: mappage: bad addr %p\n",
    780   1.1   minoura 		    sc->sc_dev.dv_xname, start);
    781  1.28      kent 		return -1;
    782   1.1   minoura 	}
    783   1.1   minoura 
    784  1.28      kent 	return bus_dmamem_mmap(sc->sc_dmat, p->vd_segs, p->vd_nsegs,
    785  1.28      kent 			       off, prot, BUS_DMA_WAITOK);
    786   1.1   minoura }
    787   1.1   minoura #endif
    788   1.1   minoura 
    789   1.1   minoura static int
    790   1.1   minoura vs_get_props(void *hdl)
    791   1.1   minoura {
    792  1.28      kent 
    793   1.9     isaki 	DPRINTF(1, ("vs_get_props\n"));
    794   1.1   minoura 	return 0 /* | dependent | half duplex | no mmap */;
    795   1.1   minoura }
    796   1.1   minoura #endif /* NAUDIO > 0 && NVS > 0*/
    797