Home | History | Annotate | Line # | Download | only in usb
uaudio.c revision 1.130
      1  1.130    bouyer /*	$NetBSD: uaudio.c,v 1.130 2012/03/15 18:40:32 bouyer Exp $	*/
      2    1.1  augustss 
      3    1.1  augustss /*
      4    1.1  augustss  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5    1.1  augustss  * All rights reserved.
      6    1.1  augustss  *
      7    1.5  augustss  * This code is derived from software contributed to The NetBSD Foundation
      8   1.24  augustss  * by Lennart Augustsson (lennart (at) augustsson.net) at
      9    1.5  augustss  * Carlstedt Research & Technology.
     10    1.1  augustss  *
     11    1.1  augustss  * Redistribution and use in source and binary forms, with or without
     12    1.1  augustss  * modification, are permitted provided that the following conditions
     13    1.1  augustss  * are met:
     14    1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     15    1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     16    1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     17    1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     18    1.1  augustss  *    documentation and/or other materials provided with the distribution.
     19    1.1  augustss  *
     20    1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21    1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22    1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23    1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24    1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25    1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26    1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27    1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28    1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29    1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30    1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     31    1.1  augustss  */
     32    1.1  augustss 
     33    1.1  augustss /*
     34   1.68  augustss  * USB audio specs: http://www.usb.org/developers/devclass_docs/audio10.pdf
     35   1.68  augustss  *                  http://www.usb.org/developers/devclass_docs/frmts10.pdf
     36   1.68  augustss  *                  http://www.usb.org/developers/devclass_docs/termt10.pdf
     37    1.1  augustss  */
     38   1.44     lukem 
     39   1.44     lukem #include <sys/cdefs.h>
     40  1.130    bouyer __KERNEL_RCSID(0, "$NetBSD: uaudio.c,v 1.130 2012/03/15 18:40:32 bouyer Exp $");
     41    1.1  augustss 
     42    1.1  augustss #include <sys/param.h>
     43    1.1  augustss #include <sys/systm.h>
     44    1.1  augustss #include <sys/kernel.h>
     45    1.1  augustss #include <sys/malloc.h>
     46    1.1  augustss #include <sys/device.h>
     47    1.1  augustss #include <sys/ioctl.h>
     48    1.1  augustss #include <sys/file.h>
     49   1.40  augustss #include <sys/reboot.h>		/* for bootverbose */
     50    1.1  augustss #include <sys/select.h>
     51    1.1  augustss #include <sys/proc.h>
     52    1.1  augustss #include <sys/vnode.h>
     53    1.1  augustss #include <sys/poll.h>
     54  1.114      kent #include <sys/module.h>
     55  1.119  jmcneill #include <sys/bus.h>
     56  1.122       mrg #include <sys/cpu.h>
     57    1.1  augustss 
     58    1.1  augustss #include <sys/audioio.h>
     59    1.1  augustss #include <dev/audio_if.h>
     60   1.77   mycroft #include <dev/audiovar.h>
     61    1.1  augustss #include <dev/mulaw.h>
     62    1.1  augustss #include <dev/auconv.h>
     63    1.1  augustss 
     64    1.1  augustss #include <dev/usb/usb.h>
     65    1.1  augustss #include <dev/usb/usbdi.h>
     66  1.119  jmcneill #include <dev/usb/usbdivar.h>
     67    1.1  augustss #include <dev/usb/usbdi_util.h>
     68    1.1  augustss #include <dev/usb/usb_quirks.h>
     69    1.1  augustss 
     70  1.120  jakllsch #include <dev/usb/usbdevs.h>
     71  1.120  jakllsch 
     72    1.1  augustss #include <dev/usb/uaudioreg.h>
     73    1.1  augustss 
     74   1.80      kent /* #define UAUDIO_DEBUG */
     75   1.80      kent /* #define UAUDIO_MULTIPLE_ENDPOINTS */
     76    1.4  augustss #ifdef UAUDIO_DEBUG
     77  1.122       mrg #define DPRINTF(x,y...)		do { \
     78  1.122       mrg 		if (uaudiodebug) { \
     79  1.122       mrg 			struct lwp *l = curlwp; \
     80  1.122       mrg 			printf("%s[%d:%d]: "x, __func__, l->l_proc->p_pid, l->l_lid, y); \
     81  1.122       mrg 		} \
     82  1.122       mrg 	} while (0)
     83  1.122       mrg #define DPRINTFN_CLEAN(n,x...)	do { \
     84  1.122       mrg 		if (uaudiodebug > (n)) \
     85  1.122       mrg 			printf(x); \
     86  1.122       mrg 	} while (0)
     87  1.122       mrg #define DPRINTFN(n,x,y...)	do { \
     88  1.122       mrg 		if (uaudiodebug > (n)) { \
     89  1.122       mrg 			struct lwp *l = curlwp; \
     90  1.122       mrg 			printf("%s[%d:%d]: "x, __func__, l->l_proc->p_pid, l->l_lid, y); \
     91  1.122       mrg 		} \
     92  1.122       mrg 	} while (0)
     93  1.124       mrg int	uaudiodebug = 6;
     94    1.1  augustss #else
     95  1.122       mrg #define DPRINTF(x,y...)
     96  1.122       mrg #define DPRINTFN_CLEAN(n,x...)
     97  1.122       mrg #define DPRINTFN(n,x,y...)
     98    1.1  augustss #endif
     99    1.1  augustss 
    100   1.22  augustss #define UAUDIO_NCHANBUFS 6	/* number of outstanding request */
    101   1.55      kent #define UAUDIO_NFRAMES   10	/* ms of sound in each request */
    102    1.1  augustss 
    103    1.1  augustss 
    104    1.1  augustss #define MIX_MAX_CHAN 8
    105    1.1  augustss struct mixerctl {
    106   1.94      kent 	uint16_t	wValue[MIX_MAX_CHAN]; /* using nchan */
    107   1.94      kent 	uint16_t	wIndex;
    108   1.94      kent 	uint8_t		nchan;
    109   1.94      kent 	uint8_t		type;
    110    1.1  augustss #define MIX_ON_OFF	1
    111    1.1  augustss #define MIX_SIGNED_16	2
    112    1.1  augustss #define MIX_UNSIGNED_16	3
    113    1.1  augustss #define MIX_SIGNED_8	4
    114   1.79      kent #define MIX_SELECTOR	5
    115    1.1  augustss #define MIX_SIZE(n) ((n) == MIX_SIGNED_16 || (n) == MIX_UNSIGNED_16 ? 2 : 1)
    116    1.1  augustss #define MIX_UNSIGNED(n) ((n) == MIX_UNSIGNED_16)
    117   1.34  augustss 	int		minval, maxval;
    118   1.34  augustss 	u_int		delta;
    119   1.34  augustss 	u_int		mul;
    120   1.94      kent 	uint8_t		class;
    121    1.1  augustss 	char		ctlname[MAX_AUDIO_DEV_LEN];
    122   1.99  christos 	const char	*ctlunit;
    123    1.1  augustss };
    124    1.1  augustss #define MAKE(h,l) (((h) << 8) | (l))
    125    1.1  augustss 
    126    1.1  augustss struct as_info {
    127   1.94      kent 	uint8_t		alt;
    128   1.94      kent 	uint8_t		encoding;
    129   1.94      kent 	uint8_t		attributes; /* Copy of bmAttributes of
    130   1.50      kent 				     * usb_audio_streaming_endpoint_descriptor
    131   1.50      kent 				     */
    132   1.37   mycroft 	usbd_interface_handle	ifaceh;
    133   1.78      kent 	const usb_interface_descriptor_t *idesc;
    134   1.78      kent 	const usb_endpoint_descriptor_audio_t *edesc;
    135   1.80      kent 	const usb_endpoint_descriptor_audio_t *edesc1;
    136   1.78      kent 	const struct usb_audio_streaming_type1_descriptor *asf1desc;
    137   1.92      kent 	struct audio_format *aformat;
    138   1.47  jdolecek 	int		sc_busy;	/* currently used */
    139    1.1  augustss };
    140    1.1  augustss 
    141    1.1  augustss struct chan {
    142   1.67       wiz 	void	(*intr)(void *);	/* DMA completion intr handler */
    143    1.1  augustss 	void	*arg;		/* arg for intr() */
    144    1.1  augustss 	usbd_pipe_handle pipe;
    145   1.83      kent 	usbd_pipe_handle sync_pipe;
    146    1.1  augustss 
    147    1.1  augustss 	u_int	sample_size;
    148    1.1  augustss 	u_int	sample_rate;
    149    1.1  augustss 	u_int	bytes_per_frame;
    150    1.1  augustss 	u_int	fraction;	/* fraction/1000 is the extra samples/frame */
    151    1.1  augustss 	u_int	residue;	/* accumulates the fractional samples */
    152    1.1  augustss 
    153    1.1  augustss 	u_char	*start;		/* upper layer buffer start */
    154    1.1  augustss 	u_char	*end;		/* upper layer buffer end */
    155    1.1  augustss 	u_char	*cur;		/* current position in upper layer buffer */
    156    1.1  augustss 	int	blksize;	/* chunk size to report up */
    157    1.1  augustss 	int	transferred;	/* transferred bytes not reported up */
    158    1.1  augustss 
    159   1.47  jdolecek 	int	altidx;		/* currently used altidx */
    160   1.31  augustss 
    161    1.1  augustss 	int	curchanbuf;
    162    1.1  augustss 	struct chanbuf {
    163   1.56      kent 		struct chan	*chan;
    164    1.9  augustss 		usbd_xfer_handle xfer;
    165   1.56      kent 		u_char		*buffer;
    166   1.94      kent 		uint16_t	sizes[UAUDIO_NFRAMES];
    167   1.94      kent 		uint16_t	offsets[UAUDIO_NFRAMES];
    168   1.94      kent 		uint16_t	size;
    169    1.1  augustss 	} chanbufs[UAUDIO_NCHANBUFS];
    170    1.8  augustss 
    171    1.8  augustss 	struct uaudio_softc *sc; /* our softc */
    172    1.1  augustss };
    173    1.1  augustss 
    174  1.121  jmcneill /*
    175  1.121  jmcneill  * XXX Locking notes:
    176  1.121  jmcneill  *
    177  1.121  jmcneill  *    The MI USB audio subsystem is not MP-SAFE.  Our strategy here
    178  1.121  jmcneill  *    is to ensure we have the kernel lock held when calling into
    179  1.121  jmcneill  *    usbd, and, generally, to have dropped the sc_intr_lock during
    180  1.121  jmcneill  *    these sections as well since the usb code will sleep.
    181  1.121  jmcneill  */
    182    1.1  augustss struct uaudio_softc {
    183  1.118    dyoung 	device_t	sc_dev;		/* base device */
    184  1.121  jmcneill 	kmutex_t	sc_lock;
    185  1.121  jmcneill 	kmutex_t	sc_intr_lock;
    186    1.1  augustss 	usbd_device_handle sc_udev;	/* USB device */
    187   1.86      kent 	int		sc_ac_iface;	/* Audio Control interface */
    188    1.1  augustss 	usbd_interface_handle	sc_ac_ifaceh;
    189   1.86      kent 	struct chan	sc_playchan;	/* play channel */
    190   1.86      kent 	struct chan	sc_recchan;	/* record channel */
    191   1.86      kent 	int		sc_nullalt;
    192   1.86      kent 	int		sc_audio_rev;
    193   1.86      kent 	struct as_info	*sc_alts;	/* alternate settings */
    194   1.86      kent 	int		sc_nalts;	/* # of alternate settings */
    195   1.86      kent 	int		sc_altflags;
    196   1.56      kent #define HAS_8		0x01
    197   1.56      kent #define HAS_16		0x02
    198   1.56      kent #define HAS_8U		0x04
    199   1.56      kent #define HAS_ALAW	0x08
    200   1.56      kent #define HAS_MULAW	0x10
    201   1.47  jdolecek #define UA_NOFRAC	0x20		/* don't do sample rate adjustment */
    202   1.51      kent #define HAS_24		0x40
    203   1.86      kent 	int		sc_mode;	/* play/record capability */
    204   1.86      kent 	struct mixerctl *sc_ctls;	/* mixer controls */
    205   1.86      kent 	int		sc_nctls;	/* # of mixer controls */
    206  1.117    dyoung 	device_t	sc_audiodev;
    207   1.92      kent 	struct audio_format *sc_formats;
    208   1.92      kent 	int		sc_nformats;
    209   1.92      kent 	struct audio_encoding_set *sc_encodings;
    210   1.92      kent 	u_int		sc_channel_config;
    211   1.86      kent 	char		sc_dying;
    212  1.119  jmcneill 	struct audio_device sc_adev;
    213    1.1  augustss };
    214    1.1  augustss 
    215   1.82      kent struct terminal_list {
    216   1.82      kent 	int size;
    217   1.82      kent 	uint16_t terminals[1];
    218   1.82      kent };
    219   1.82      kent #define TERMINAL_LIST_SIZE(N)	(offsetof(struct terminal_list, terminals) \
    220   1.82      kent 				+ sizeof(uint16_t) * (N))
    221   1.82      kent 
    222   1.82      kent struct io_terminal {
    223   1.82      kent 	union {
    224  1.109  drochner 		const uaudio_cs_descriptor_t *desc;
    225   1.82      kent 		const struct usb_audio_input_terminal *it;
    226   1.82      kent 		const struct usb_audio_output_terminal *ot;
    227   1.82      kent 		const struct usb_audio_mixer_unit *mu;
    228   1.82      kent 		const struct usb_audio_selector_unit *su;
    229   1.82      kent 		const struct usb_audio_feature_unit *fu;
    230   1.82      kent 		const struct usb_audio_processing_unit *pu;
    231   1.82      kent 		const struct usb_audio_extension_unit *eu;
    232   1.82      kent 	} d;
    233   1.82      kent 	int inputs_size;
    234   1.82      kent 	struct terminal_list **inputs; /* list of source input terminals */
    235   1.82      kent 	struct terminal_list *output; /* list of destination output terminals */
    236   1.83      kent 	int direct;		/* directly connected to an output terminal */
    237   1.82      kent };
    238   1.82      kent 
    239   1.82      kent #define UAC_OUTPUT	0
    240   1.82      kent #define UAC_INPUT	1
    241   1.82      kent #define UAC_EQUAL	2
    242   1.82      kent #define UAC_RECORD	3
    243   1.82      kent #define UAC_NCLASSES	4
    244   1.82      kent #ifdef UAUDIO_DEBUG
    245   1.82      kent Static const char *uac_names[] = {
    246   1.82      kent 	AudioCoutputs, AudioCinputs, AudioCequalization, AudioCrecord,
    247   1.82      kent };
    248   1.82      kent #endif
    249    1.1  augustss 
    250   1.86      kent Static usbd_status uaudio_identify_ac
    251   1.86      kent 	(struct uaudio_softc *, const usb_config_descriptor_t *);
    252   1.86      kent Static usbd_status uaudio_identify_as
    253   1.86      kent 	(struct uaudio_softc *, const usb_config_descriptor_t *);
    254   1.86      kent Static usbd_status uaudio_process_as
    255   1.86      kent 	(struct uaudio_softc *, const char *, int *, int,
    256   1.86      kent 	 const usb_interface_descriptor_t *);
    257   1.78      kent 
    258   1.78      kent Static void	uaudio_add_alt(struct uaudio_softc *, const struct as_info *);
    259   1.78      kent 
    260   1.78      kent Static const usb_interface_descriptor_t *uaudio_find_iface
    261   1.78      kent 	(const char *, int, int *, int);
    262   1.78      kent 
    263   1.78      kent Static void	uaudio_mixer_add_ctl(struct uaudio_softc *, struct mixerctl *);
    264   1.86      kent Static char	*uaudio_id_name
    265   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    266   1.91      kent #ifdef UAUDIO_DEBUG
    267   1.91      kent Static void	uaudio_dump_cluster(const struct usb_audio_cluster *);
    268   1.91      kent #endif
    269   1.86      kent Static struct usb_audio_cluster uaudio_get_cluster
    270   1.86      kent 	(int, const struct io_terminal *);
    271   1.86      kent Static void	uaudio_add_input
    272   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    273   1.86      kent Static void	uaudio_add_output
    274   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    275   1.86      kent Static void	uaudio_add_mixer
    276   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    277   1.86      kent Static void	uaudio_add_selector
    278   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    279   1.82      kent #ifdef UAUDIO_DEBUG
    280   1.82      kent Static const char *uaudio_get_terminal_name(int);
    281   1.82      kent #endif
    282   1.86      kent Static int	uaudio_determine_class
    283   1.86      kent 	(const struct io_terminal *, struct mixerctl *);
    284   1.86      kent Static const char *uaudio_feature_name
    285   1.86      kent 	(const struct io_terminal *, struct mixerctl *);
    286   1.86      kent Static void	uaudio_add_feature
    287   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    288   1.86      kent Static void	uaudio_add_processing_updown
    289   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    290   1.86      kent Static void	uaudio_add_processing
    291   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    292   1.86      kent Static void	uaudio_add_extension
    293   1.86      kent 	(struct uaudio_softc *, const struct io_terminal *, int);
    294   1.86      kent Static struct terminal_list *uaudio_merge_terminal_list
    295   1.86      kent 	(const struct io_terminal *);
    296   1.86      kent Static struct terminal_list *uaudio_io_terminaltype
    297   1.86      kent 	(int, struct io_terminal *, int);
    298   1.86      kent Static usbd_status uaudio_identify
    299   1.86      kent 	(struct uaudio_softc *, const usb_config_descriptor_t *);
    300   1.78      kent 
    301   1.78      kent Static int	uaudio_signext(int, int);
    302   1.78      kent Static int	uaudio_value2bsd(struct mixerctl *, int);
    303   1.78      kent Static int	uaudio_bsd2value(struct mixerctl *, int);
    304   1.78      kent Static int	uaudio_get(struct uaudio_softc *, int, int, int, int, int);
    305   1.86      kent Static int	uaudio_ctl_get
    306   1.86      kent 	(struct uaudio_softc *, int, struct mixerctl *, int);
    307   1.86      kent Static void	uaudio_set
    308   1.86      kent 	(struct uaudio_softc *, int, int, int, int, int, int);
    309   1.86      kent Static void	uaudio_ctl_set
    310   1.86      kent 	(struct uaudio_softc *, int, struct mixerctl *, int, int);
    311   1.78      kent 
    312   1.78      kent Static usbd_status uaudio_set_speed(struct uaudio_softc *, int, u_int);
    313   1.78      kent 
    314   1.78      kent Static usbd_status uaudio_chan_open(struct uaudio_softc *, struct chan *);
    315   1.78      kent Static void	uaudio_chan_close(struct uaudio_softc *, struct chan *);
    316   1.86      kent Static usbd_status uaudio_chan_alloc_buffers
    317   1.86      kent 	(struct uaudio_softc *, struct chan *);
    318   1.78      kent Static void	uaudio_chan_free_buffers(struct uaudio_softc *, struct chan *);
    319   1.86      kent Static void	uaudio_chan_init
    320   1.86      kent 	(struct chan *, int, const struct audio_params *, int);
    321   1.78      kent Static void	uaudio_chan_set_param(struct chan *, u_char *, u_char *, int);
    322   1.78      kent Static void	uaudio_chan_ptransfer(struct chan *);
    323   1.86      kent Static void	uaudio_chan_pintr
    324   1.86      kent 	(usbd_xfer_handle, usbd_private_handle, usbd_status);
    325   1.78      kent 
    326   1.78      kent Static void	uaudio_chan_rtransfer(struct chan *);
    327   1.86      kent Static void	uaudio_chan_rintr
    328   1.86      kent 	(usbd_xfer_handle, usbd_private_handle, usbd_status);
    329   1.78      kent 
    330   1.78      kent Static int	uaudio_open(void *, int);
    331   1.78      kent Static void	uaudio_close(void *);
    332   1.78      kent Static int	uaudio_drain(void *);
    333   1.78      kent Static int	uaudio_query_encoding(void *, struct audio_encoding *);
    334   1.86      kent Static int	uaudio_set_params
    335   1.93      kent 	(void *, int, int, struct audio_params *, struct audio_params *,
    336   1.93      kent 	 stream_filter_list_t *, stream_filter_list_t *);
    337   1.93      kent Static int	uaudio_round_blocksize(void *, int, int, const audio_params_t *);
    338   1.86      kent Static int	uaudio_trigger_output
    339   1.86      kent 	(void *, void *, void *, int, void (*)(void *), void *,
    340   1.93      kent 	 const audio_params_t *);
    341   1.86      kent Static int	uaudio_trigger_input
    342   1.86      kent 	(void *, void *, void *, int, void (*)(void *), void *,
    343   1.93      kent 	 const audio_params_t *);
    344   1.78      kent Static int	uaudio_halt_in_dma(void *);
    345   1.78      kent Static int	uaudio_halt_out_dma(void *);
    346   1.78      kent Static int	uaudio_getdev(void *, struct audio_device *);
    347   1.78      kent Static int	uaudio_mixer_set_port(void *, mixer_ctrl_t *);
    348   1.78      kent Static int	uaudio_mixer_get_port(void *, mixer_ctrl_t *);
    349   1.78      kent Static int	uaudio_query_devinfo(void *, mixer_devinfo_t *);
    350   1.78      kent Static int	uaudio_get_props(void *);
    351  1.121  jmcneill Static void	uaudio_get_locks(void *, kmutex_t **, kmutex_t **);
    352    1.1  augustss 
    353   1.88      yamt Static const struct audio_hw_if uaudio_hw_if = {
    354    1.1  augustss 	uaudio_open,
    355    1.1  augustss 	uaudio_close,
    356    1.1  augustss 	uaudio_drain,
    357    1.1  augustss 	uaudio_query_encoding,
    358    1.1  augustss 	uaudio_set_params,
    359    1.1  augustss 	uaudio_round_blocksize,
    360    1.1  augustss 	NULL,
    361    1.1  augustss 	NULL,
    362    1.1  augustss 	NULL,
    363    1.1  augustss 	NULL,
    364    1.1  augustss 	NULL,
    365    1.1  augustss 	uaudio_halt_out_dma,
    366    1.1  augustss 	uaudio_halt_in_dma,
    367    1.1  augustss 	NULL,
    368    1.1  augustss 	uaudio_getdev,
    369    1.1  augustss 	NULL,
    370    1.1  augustss 	uaudio_mixer_set_port,
    371    1.1  augustss 	uaudio_mixer_get_port,
    372    1.1  augustss 	uaudio_query_devinfo,
    373    1.1  augustss 	NULL,
    374    1.1  augustss 	NULL,
    375    1.1  augustss 	NULL,
    376    1.1  augustss 	NULL,
    377    1.1  augustss 	uaudio_get_props,
    378    1.1  augustss 	uaudio_trigger_output,
    379    1.1  augustss 	uaudio_trigger_input,
    380   1.43  augustss 	NULL,
    381  1.121  jmcneill 	uaudio_get_locks,
    382    1.1  augustss };
    383    1.1  augustss 
    384  1.113      cube int uaudio_match(device_t, cfdata_t, void *);
    385  1.111    dyoung void uaudio_attach(device_t, device_t, void *);
    386  1.111    dyoung int uaudio_detach(device_t, int);
    387  1.111    dyoung void uaudio_childdet(device_t, device_t);
    388  1.111    dyoung int uaudio_activate(device_t, enum devact);
    389  1.111    dyoung 
    390  1.111    dyoung extern struct cfdriver uaudio_cd;
    391  1.111    dyoung 
    392  1.113      cube CFATTACH_DECL2_NEW(uaudio, sizeof(struct uaudio_softc),
    393  1.111    dyoung     uaudio_match, uaudio_attach, uaudio_detach, uaudio_activate, NULL,
    394  1.111    dyoung     uaudio_childdet);
    395    1.1  augustss 
    396  1.128  jakllsch int
    397  1.118    dyoung uaudio_match(device_t parent, cfdata_t match, void *aux)
    398    1.1  augustss {
    399  1.118    dyoung 	struct usbif_attach_arg *uaa = aux;
    400    1.1  augustss 
    401    1.1  augustss 	/* Trigger on the control interface. */
    402  1.110  drochner 	if (uaa->class != UICLASS_AUDIO ||
    403  1.110  drochner 	    uaa->subclass != UISUBCLASS_AUDIOCONTROL ||
    404   1.10  augustss 	    (usbd_get_quirks(uaa->device)->uq_flags & UQ_BAD_AUDIO))
    405   1.94      kent 		return UMATCH_NONE;
    406    1.1  augustss 
    407   1.94      kent 	return UMATCH_IFACECLASS_IFACESUBCLASS;
    408    1.1  augustss }
    409    1.1  augustss 
    410  1.128  jakllsch void
    411  1.118    dyoung uaudio_attach(device_t parent, device_t self, void *aux)
    412    1.1  augustss {
    413  1.118    dyoung 	struct uaudio_softc *sc = device_private(self);
    414  1.118    dyoung 	struct usbif_attach_arg *uaa = aux;
    415    1.1  augustss 	usb_interface_descriptor_t *id;
    416    1.1  augustss 	usb_config_descriptor_t *cdesc;
    417   1.98  augustss 	char *devinfop;
    418    1.9  augustss 	usbd_status err;
    419   1.37   mycroft 	int i, j, found;
    420    1.1  augustss 
    421  1.113      cube 	sc->sc_dev = self;
    422  1.116    plunky 	sc->sc_udev = uaa->device;
    423  1.121  jmcneill 	mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NONE);
    424  1.121  jmcneill 	mutex_init(&sc->sc_intr_lock, MUTEX_DEFAULT, IPL_USB);
    425  1.116    plunky 
    426  1.119  jmcneill 	strlcpy(sc->sc_adev.name, "USB audio", sizeof(sc->sc_adev.name));
    427  1.119  jmcneill 	strlcpy(sc->sc_adev.version, "", sizeof(sc->sc_adev.version));
    428  1.119  jmcneill 	snprintf(sc->sc_adev.config, sizeof(sc->sc_adev.config), "usb:%08x",
    429  1.119  jmcneill 	    sc->sc_udev->cookie.cookie);
    430  1.119  jmcneill 
    431  1.116    plunky 	aprint_naive("\n");
    432  1.116    plunky 	aprint_normal("\n");
    433  1.113      cube 
    434   1.98  augustss 	devinfop = usbd_devinfo_alloc(uaa->device, 0);
    435  1.116    plunky 	aprint_normal_dev(self, "%s\n", devinfop);
    436   1.98  augustss 	usbd_devinfo_free(devinfop);
    437    1.1  augustss 
    438    1.1  augustss 	cdesc = usbd_get_config_descriptor(sc->sc_udev);
    439   1.13  augustss 	if (cdesc == NULL) {
    440  1.113      cube 		aprint_error_dev(self,
    441  1.113      cube 		    "failed to get configuration descriptor\n");
    442  1.118    dyoung 		return;
    443   1.13  augustss 	}
    444    1.1  augustss 
    445    1.9  augustss 	err = uaudio_identify(sc, cdesc);
    446    1.9  augustss 	if (err) {
    447  1.113      cube 		aprint_error_dev(self,
    448  1.113      cube 		    "audio descriptors make no sense, error=%d\n", err);
    449  1.118    dyoung 		return;
    450    1.1  augustss 	}
    451    1.1  augustss 
    452    1.1  augustss 	sc->sc_ac_ifaceh = uaa->iface;
    453    1.1  augustss 	/* Pick up the AS interface. */
    454    1.1  augustss 	for (i = 0; i < uaa->nifaces; i++) {
    455   1.37   mycroft 		if (uaa->ifaces[i] == NULL)
    456   1.37   mycroft 			continue;
    457   1.37   mycroft 		id = usbd_get_interface_descriptor(uaa->ifaces[i]);
    458   1.37   mycroft 		if (id == NULL)
    459   1.37   mycroft 			continue;
    460   1.37   mycroft 		found = 0;
    461   1.37   mycroft 		for (j = 0; j < sc->sc_nalts; j++) {
    462   1.37   mycroft 			if (id->bInterfaceNumber ==
    463   1.37   mycroft 			    sc->sc_alts[j].idesc->bInterfaceNumber) {
    464   1.37   mycroft 				sc->sc_alts[j].ifaceh = uaa->ifaces[i];
    465   1.37   mycroft 				found = 1;
    466    1.1  augustss 			}
    467    1.1  augustss 		}
    468   1.37   mycroft 		if (found)
    469   1.37   mycroft 			uaa->ifaces[i] = NULL;
    470    1.1  augustss 	}
    471    1.1  augustss 
    472   1.37   mycroft 	for (j = 0; j < sc->sc_nalts; j++) {
    473   1.37   mycroft 		if (sc->sc_alts[j].ifaceh == NULL) {
    474  1.113      cube 			aprint_error_dev(self,
    475  1.113      cube 			    "alt %d missing AS interface(s)\n", j);
    476  1.118    dyoung 			return;
    477   1.37   mycroft 		}
    478    1.1  augustss 	}
    479    1.1  augustss 
    480  1.113      cube 	aprint_normal_dev(self, "audio rev %d.%02x\n",
    481    1.7  augustss 	       sc->sc_audio_rev >> 8, sc->sc_audio_rev & 0xff);
    482    1.7  augustss 
    483   1.47  jdolecek 	sc->sc_playchan.sc = sc->sc_recchan.sc = sc;
    484   1.60      kent 	sc->sc_playchan.altidx = -1;
    485   1.60      kent 	sc->sc_recchan.altidx = -1;
    486    1.8  augustss 
    487   1.31  augustss 	if (usbd_get_quirks(sc->sc_udev)->uq_flags & UQ_AU_NO_FRAC)
    488   1.47  jdolecek 		sc->sc_altflags |= UA_NOFRAC;
    489   1.31  augustss 
    490   1.40  augustss #ifndef UAUDIO_DEBUG
    491   1.40  augustss 	if (bootverbose)
    492   1.40  augustss #endif
    493  1.113      cube 		aprint_normal_dev(self, "%d mixer controls\n",
    494   1.40  augustss 		    sc->sc_nctls);
    495   1.40  augustss 
    496   1.41  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
    497  1.118    dyoung 			   sc->sc_dev);
    498   1.41  augustss 
    499  1.122       mrg 	DPRINTF("%s", "doing audio_attach_mi\n");
    500  1.113      cube 	sc->sc_audiodev = audio_attach_mi(&uaudio_hw_if, sc, sc->sc_dev);
    501   1.17  augustss 
    502  1.118    dyoung 	return;
    503    1.1  augustss }
    504    1.1  augustss 
    505    1.1  augustss int
    506  1.117    dyoung uaudio_activate(device_t self, enum devact act)
    507    1.1  augustss {
    508  1.117    dyoung 	struct uaudio_softc *sc = device_private(self);
    509    1.1  augustss 
    510    1.1  augustss 	switch (act) {
    511    1.1  augustss 	case DVACT_DEACTIVATE:
    512    1.1  augustss 		sc->sc_dying = 1;
    513  1.117    dyoung 		return 0;
    514  1.117    dyoung 	default:
    515  1.117    dyoung 		return EOPNOTSUPP;
    516    1.1  augustss 	}
    517    1.1  augustss }
    518    1.1  augustss 
    519  1.111    dyoung void
    520  1.111    dyoung uaudio_childdet(device_t self, device_t child)
    521  1.111    dyoung {
    522  1.111    dyoung 	struct uaudio_softc *sc = device_private(self);
    523  1.111    dyoung 
    524  1.111    dyoung 	KASSERT(sc->sc_audiodev == child);
    525  1.111    dyoung 	sc->sc_audiodev = NULL;
    526  1.111    dyoung }
    527  1.111    dyoung 
    528    1.1  augustss int
    529  1.111    dyoung uaudio_detach(device_t self, int flags)
    530    1.1  augustss {
    531  1.111    dyoung 	struct uaudio_softc *sc = device_private(self);
    532   1.94      kent 	int rv;
    533    1.1  augustss 
    534   1.94      kent 	rv = 0;
    535    1.8  augustss 	/* Wait for outstanding requests to complete. */
    536    1.8  augustss 	usbd_delay_ms(sc->sc_udev, UAUDIO_NCHANBUFS * UAUDIO_NFRAMES);
    537    1.8  augustss 
    538    1.9  augustss 	if (sc->sc_audiodev != NULL)
    539    1.1  augustss 		rv = config_detach(sc->sc_audiodev, flags);
    540   1.17  augustss 
    541   1.17  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
    542  1.118    dyoung 			   sc->sc_dev);
    543    1.1  augustss 
    544   1.92      kent 	if (sc->sc_formats != NULL)
    545   1.92      kent 		free(sc->sc_formats, M_USBDEV);
    546   1.92      kent 	auconv_delete_encodings(sc->sc_encodings);
    547  1.121  jmcneill 
    548  1.121  jmcneill 	mutex_destroy(&sc->sc_lock);
    549  1.121  jmcneill 	mutex_destroy(&sc->sc_intr_lock);
    550  1.121  jmcneill 
    551   1.94      kent 	return rv;
    552    1.1  augustss }
    553    1.1  augustss 
    554   1.86      kent Static int
    555   1.26  augustss uaudio_query_encoding(void *addr, struct audio_encoding *fp)
    556    1.1  augustss {
    557   1.94      kent 	struct uaudio_softc *sc;
    558   1.94      kent 	int flags;
    559    1.1  augustss 
    560   1.94      kent 	sc = addr;
    561   1.94      kent 	flags = sc->sc_altflags;
    562    1.1  augustss 	if (sc->sc_dying)
    563   1.94      kent 		return EIO;
    564   1.56      kent 
    565    1.1  augustss 	if (sc->sc_nalts == 0 || flags == 0)
    566   1.94      kent 		return ENXIO;
    567    1.1  augustss 
    568   1.92      kent 	return auconv_query_encoding(sc->sc_encodings, fp);
    569    1.1  augustss }
    570    1.1  augustss 
    571   1.86      kent Static const usb_interface_descriptor_t *
    572   1.99  christos uaudio_find_iface(const char *tbuf, int size, int *offsp, int subtype)
    573    1.1  augustss {
    574   1.78      kent 	const usb_interface_descriptor_t *d;
    575    1.1  augustss 
    576    1.1  augustss 	while (*offsp < size) {
    577   1.99  christos 		d = (const void *)(tbuf + *offsp);
    578    1.1  augustss 		*offsp += d->bLength;
    579    1.1  augustss 		if (d->bDescriptorType == UDESC_INTERFACE &&
    580   1.19  augustss 		    d->bInterfaceClass == UICLASS_AUDIO &&
    581    1.1  augustss 		    d->bInterfaceSubClass == subtype)
    582   1.94      kent 			return d;
    583    1.1  augustss 	}
    584   1.94      kent 	return NULL;
    585    1.1  augustss }
    586    1.1  augustss 
    587   1.86      kent Static void
    588   1.26  augustss uaudio_mixer_add_ctl(struct uaudio_softc *sc, struct mixerctl *mc)
    589    1.1  augustss {
    590   1.33  augustss 	int res;
    591   1.84      kent 	size_t len;
    592   1.84      kent 	struct mixerctl *nmc;
    593   1.33  augustss 
    594   1.82      kent 	if (mc->class < UAC_NCLASSES) {
    595  1.122       mrg 		DPRINTF("adding %s.%s\n", uac_names[mc->class], mc->ctlname);
    596   1.82      kent 	} else {
    597  1.122       mrg 		DPRINTF("adding %s\n", mc->ctlname);
    598   1.82      kent 	}
    599   1.84      kent 	len = sizeof(*mc) * (sc->sc_nctls + 1);
    600   1.84      kent 	nmc = malloc(len, M_USBDEV, M_NOWAIT);
    601   1.42  christos 	if (nmc == NULL) {
    602  1.113      cube 		aprint_error("uaudio_mixer_add_ctl: no memory\n");
    603    1.1  augustss 		return;
    604    1.1  augustss 	}
    605   1.84      kent 	/* Copy old data, if there was any */
    606   1.84      kent 	if (sc->sc_nctls != 0) {
    607   1.84      kent 		memcpy(nmc, sc->sc_ctls, sizeof(*mc) * (sc->sc_nctls));
    608   1.84      kent 		free(sc->sc_ctls, M_USBDEV);
    609   1.84      kent 	}
    610   1.42  christos 	sc->sc_ctls = nmc;
    611    1.1  augustss 
    612   1.33  augustss 	mc->delta = 0;
    613   1.79      kent 	if (mc->type == MIX_ON_OFF) {
    614   1.79      kent 		mc->minval = 0;
    615   1.79      kent 		mc->maxval = 1;
    616   1.79      kent 	} else if (mc->type == MIX_SELECTOR) {
    617   1.79      kent 		;
    618   1.79      kent 	} else {
    619    1.1  augustss 		/* Determine min and max values. */
    620   1.56      kent 		mc->minval = uaudio_signext(mc->type,
    621   1.56      kent 			uaudio_get(sc, GET_MIN, UT_READ_CLASS_INTERFACE,
    622   1.56      kent 				   mc->wValue[0], mc->wIndex,
    623    1.1  augustss 				   MIX_SIZE(mc->type)));
    624   1.56      kent 		mc->maxval = 1 + uaudio_signext(mc->type,
    625    1.1  augustss 			uaudio_get(sc, GET_MAX, UT_READ_CLASS_INTERFACE,
    626    1.1  augustss 				   mc->wValue[0], mc->wIndex,
    627    1.1  augustss 				   MIX_SIZE(mc->type)));
    628   1.34  augustss 		mc->mul = mc->maxval - mc->minval;
    629   1.34  augustss 		if (mc->mul == 0)
    630   1.34  augustss 			mc->mul = 1;
    631   1.33  augustss 		res = uaudio_get(sc, GET_RES, UT_READ_CLASS_INTERFACE,
    632   1.33  augustss 				 mc->wValue[0], mc->wIndex,
    633   1.33  augustss 				 MIX_SIZE(mc->type));
    634   1.34  augustss 		if (res > 0)
    635   1.69       wiz 			mc->delta = (res * 255 + mc->mul/2) / mc->mul;
    636    1.1  augustss 	}
    637    1.1  augustss 
    638    1.1  augustss 	sc->sc_ctls[sc->sc_nctls++] = *mc;
    639    1.1  augustss 
    640    1.4  augustss #ifdef UAUDIO_DEBUG
    641    1.1  augustss 	if (uaudiodebug > 2) {
    642    1.1  augustss 		int i;
    643  1.122       mrg 
    644  1.122       mrg 		DPRINTFN_CLEAN(2, "wValue=%04x", mc->wValue[0]);
    645    1.1  augustss 		for (i = 1; i < mc->nchan; i++)
    646  1.122       mrg 			DPRINTFN_CLEAN(2, ",%04x", mc->wValue[i]);
    647  1.122       mrg 		DPRINTFN_CLEAN(2, " wIndex=%04x type=%d name='%s' unit='%s' "
    648    1.1  augustss 			 "min=%d max=%d\n",
    649    1.1  augustss 			 mc->wIndex, mc->type, mc->ctlname, mc->ctlunit,
    650  1.122       mrg 			 mc->minval, mc->maxval);
    651    1.1  augustss 	}
    652    1.1  augustss #endif
    653    1.1  augustss }
    654    1.1  augustss 
    655   1.86      kent Static char *
    656  1.107  christos uaudio_id_name(struct uaudio_softc *sc,
    657  1.107  christos     const struct io_terminal *iot, int id)
    658    1.1  augustss {
    659   1.99  christos 	static char tbuf[32];
    660   1.94      kent 
    661   1.99  christos 	snprintf(tbuf, sizeof(tbuf), "i%d", id);
    662   1.99  christos 	return tbuf;
    663    1.1  augustss }
    664    1.1  augustss 
    665   1.91      kent #ifdef UAUDIO_DEBUG
    666   1.91      kent Static void
    667   1.91      kent uaudio_dump_cluster(const struct usb_audio_cluster *cl)
    668   1.91      kent {
    669   1.91      kent 	static const char *channel_names[16] = {
    670   1.91      kent 		"LEFT", "RIGHT", "CENTER", "LFE",
    671   1.91      kent 		"LEFT_SURROUND", "RIGHT_SURROUND", "LEFT_CENTER", "RIGHT_CENTER",
    672   1.91      kent 		"SURROUND", "LEFT_SIDE", "RIGHT_SIDE", "TOP",
    673   1.91      kent 		"RESERVED12", "RESERVED13", "RESERVED14", "RESERVED15",
    674   1.91      kent 	};
    675   1.91      kent 	int cc, i, first;
    676   1.91      kent 
    677   1.91      kent 	cc = UGETW(cl->wChannelConfig);
    678  1.118    dyoung 	printf("cluster: bNrChannels=%u wChannelConfig=0x%.4x",
    679   1.91      kent 		  cl->bNrChannels, cc);
    680   1.91      kent 	first = TRUE;
    681   1.91      kent 	for (i = 0; cc != 0; i++) {
    682   1.91      kent 		if (cc & 1) {
    683  1.118    dyoung 			printf("%c%s", first ? '<' : ',', channel_names[i]);
    684   1.91      kent 			first = FALSE;
    685   1.91      kent 		}
    686   1.91      kent 		cc = cc >> 1;
    687   1.91      kent 	}
    688  1.118    dyoung 	printf("> iChannelNames=%u", cl->iChannelNames);
    689   1.91      kent }
    690   1.91      kent #endif
    691   1.91      kent 
    692   1.86      kent Static struct usb_audio_cluster
    693   1.82      kent uaudio_get_cluster(int id, const struct io_terminal *iot)
    694    1.1  augustss {
    695    1.1  augustss 	struct usb_audio_cluster r;
    696  1.109  drochner 	const uaudio_cs_descriptor_t *dp;
    697    1.1  augustss 	int i;
    698    1.1  augustss 
    699    1.1  augustss 	for (i = 0; i < 25; i++) { /* avoid infinite loops */
    700   1.82      kent 		dp = iot[id].d.desc;
    701    1.1  augustss 		if (dp == 0)
    702    1.1  augustss 			goto bad;
    703    1.1  augustss 		switch (dp->bDescriptorSubtype) {
    704    1.1  augustss 		case UDESCSUB_AC_INPUT:
    705   1.82      kent 			r.bNrChannels = iot[id].d.it->bNrChannels;
    706   1.82      kent 			USETW(r.wChannelConfig, UGETW(iot[id].d.it->wChannelConfig));
    707   1.82      kent 			r.iChannelNames = iot[id].d.it->iChannelNames;
    708   1.94      kent 			return r;
    709    1.1  augustss 		case UDESCSUB_AC_OUTPUT:
    710   1.82      kent 			id = iot[id].d.ot->bSourceId;
    711    1.1  augustss 			break;
    712    1.1  augustss 		case UDESCSUB_AC_MIXER:
    713   1.99  christos 			r = *(const struct usb_audio_cluster *)
    714   1.82      kent 				&iot[id].d.mu->baSourceId[iot[id].d.mu->bNrInPins];
    715   1.94      kent 			return r;
    716    1.1  augustss 		case UDESCSUB_AC_SELECTOR:
    717    1.1  augustss 			/* XXX This is not really right */
    718   1.82      kent 			id = iot[id].d.su->baSourceId[0];
    719    1.1  augustss 			break;
    720    1.1  augustss 		case UDESCSUB_AC_FEATURE:
    721   1.82      kent 			id = iot[id].d.fu->bSourceId;
    722    1.1  augustss 			break;
    723    1.1  augustss 		case UDESCSUB_AC_PROCESSING:
    724   1.99  christos 			r = *(const struct usb_audio_cluster *)
    725   1.82      kent 				&iot[id].d.pu->baSourceId[iot[id].d.pu->bNrInPins];
    726   1.94      kent 			return r;
    727    1.1  augustss 		case UDESCSUB_AC_EXTENSION:
    728   1.99  christos 			r = *(const struct usb_audio_cluster *)
    729   1.82      kent 				&iot[id].d.eu->baSourceId[iot[id].d.eu->bNrInPins];
    730   1.94      kent 			return r;
    731    1.1  augustss 		default:
    732    1.1  augustss 			goto bad;
    733    1.1  augustss 		}
    734    1.1  augustss 	}
    735    1.1  augustss  bad:
    736  1.113      cube 	aprint_error("uaudio_get_cluster: bad data\n");
    737    1.1  augustss 	memset(&r, 0, sizeof r);
    738   1.94      kent 	return r;
    739    1.1  augustss 
    740    1.1  augustss }
    741    1.1  augustss 
    742   1.86      kent Static void
    743   1.82      kent uaudio_add_input(struct uaudio_softc *sc, const struct io_terminal *iot, int id)
    744    1.1  augustss {
    745   1.94      kent 	const struct usb_audio_input_terminal *d;
    746    1.1  augustss 
    747   1.94      kent 	d = iot[id].d.it;
    748   1.92      kent #ifdef UAUDIO_DEBUG
    749  1.122       mrg 	DPRINTFN(2,"bTerminalId=%d wTerminalType=0x%04x "
    750    1.1  augustss 		    "bAssocTerminal=%d bNrChannels=%d wChannelConfig=%d "
    751    1.1  augustss 		    "iChannelNames=%d iTerminal=%d\n",
    752    1.1  augustss 		    d->bTerminalId, UGETW(d->wTerminalType), d->bAssocTerminal,
    753    1.1  augustss 		    d->bNrChannels, UGETW(d->wChannelConfig),
    754  1.122       mrg 		    d->iChannelNames, d->iTerminal);
    755    1.1  augustss #endif
    756   1.92      kent 	/* If USB input terminal, record wChannelConfig */
    757   1.92      kent 	if ((UGETW(d->wTerminalType) & 0xff00) != 0x0100)
    758   1.92      kent 		return;
    759   1.92      kent 	sc->sc_channel_config = UGETW(d->wChannelConfig);
    760    1.1  augustss }
    761    1.1  augustss 
    762   1.86      kent Static void
    763  1.107  christos uaudio_add_output(struct uaudio_softc *sc,
    764  1.107  christos     const struct io_terminal *iot, int id)
    765    1.1  augustss {
    766    1.4  augustss #ifdef UAUDIO_DEBUG
    767   1.94      kent 	const struct usb_audio_output_terminal *d;
    768    1.1  augustss 
    769   1.94      kent 	d = iot[id].d.ot;
    770  1.122       mrg 	DPRINTFN(2,"bTerminalId=%d wTerminalType=0x%04x "
    771    1.1  augustss 		    "bAssocTerminal=%d bSourceId=%d iTerminal=%d\n",
    772    1.1  augustss 		    d->bTerminalId, UGETW(d->wTerminalType), d->bAssocTerminal,
    773  1.122       mrg 		    d->bSourceId, d->iTerminal);
    774    1.1  augustss #endif
    775    1.1  augustss }
    776    1.1  augustss 
    777   1.86      kent Static void
    778   1.82      kent uaudio_add_mixer(struct uaudio_softc *sc, const struct io_terminal *iot, int id)
    779    1.1  augustss {
    780   1.94      kent 	const struct usb_audio_mixer_unit *d;
    781   1.99  christos 	const struct usb_audio_mixer_unit_1 *d1;
    782    1.1  augustss 	int c, chs, ichs, ochs, i, o, bno, p, mo, mc, k;
    783   1.99  christos 	const uByte *bm;
    784    1.1  augustss 	struct mixerctl mix;
    785    1.1  augustss 
    786   1.94      kent 	d = iot[id].d.mu;
    787  1.122       mrg 	DPRINTFN(2,"bUnitId=%d bNrInPins=%d\n",
    788  1.122       mrg 		    d->bUnitId, d->bNrInPins);
    789   1.56      kent 
    790    1.1  augustss 	/* Compute the number of input channels */
    791    1.1  augustss 	ichs = 0;
    792    1.1  augustss 	for (i = 0; i < d->bNrInPins; i++)
    793   1.82      kent 		ichs += uaudio_get_cluster(d->baSourceId[i], iot).bNrChannels;
    794    1.1  augustss 
    795    1.1  augustss 	/* and the number of output channels */
    796   1.99  christos 	d1 = (const struct usb_audio_mixer_unit_1 *)&d->baSourceId[d->bNrInPins];
    797    1.1  augustss 	ochs = d1->bNrChannels;
    798  1.122       mrg 	DPRINTFN(2,"ichs=%d ochs=%d\n", ichs, ochs);
    799    1.1  augustss 
    800    1.1  augustss 	bm = d1->bmControls;
    801    1.1  augustss 	mix.wIndex = MAKE(d->bUnitId, sc->sc_ac_iface);
    802   1.82      kent 	uaudio_determine_class(&iot[id], &mix);
    803    1.1  augustss 	mix.type = MIX_SIGNED_16;
    804    1.1  augustss 	mix.ctlunit = AudioNvolume;
    805  1.101    dyoung #define _BIT(bno) ((bm[bno / 8] >> (7 - bno % 8)) & 1)
    806    1.1  augustss 	for (p = i = 0; i < d->bNrInPins; i++) {
    807   1.82      kent 		chs = uaudio_get_cluster(d->baSourceId[i], iot).bNrChannels;
    808    1.1  augustss 		mc = 0;
    809    1.1  augustss 		for (c = 0; c < chs; c++) {
    810    1.1  augustss 			mo = 0;
    811    1.1  augustss 			for (o = 0; o < ochs; o++) {
    812    1.1  augustss 				bno = (p + c) * ochs + o;
    813  1.101    dyoung 				if (_BIT(bno))
    814    1.1  augustss 					mo++;
    815    1.1  augustss 			}
    816    1.1  augustss 			if (mo == 1)
    817    1.1  augustss 				mc++;
    818    1.1  augustss 		}
    819    1.1  augustss 		if (mc == chs && chs <= MIX_MAX_CHAN) {
    820    1.1  augustss 			k = 0;
    821    1.1  augustss 			for (c = 0; c < chs; c++)
    822    1.1  augustss 				for (o = 0; o < ochs; o++) {
    823    1.1  augustss 					bno = (p + c) * ochs + o;
    824  1.101    dyoung 					if (_BIT(bno))
    825   1.56      kent 						mix.wValue[k++] =
    826    1.1  augustss 							MAKE(p+c+1, o+1);
    827    1.1  augustss 				}
    828   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname), "mix%d-%s",
    829   1.82      kent 			    d->bUnitId, uaudio_id_name(sc, iot,
    830   1.70    itojun 			    d->baSourceId[i]));
    831    1.1  augustss 			mix.nchan = chs;
    832    1.1  augustss 			uaudio_mixer_add_ctl(sc, &mix);
    833    1.1  augustss 		} else {
    834    1.1  augustss 			/* XXX */
    835    1.1  augustss 		}
    836  1.101    dyoung #undef _BIT
    837    1.1  augustss 		p += chs;
    838    1.1  augustss 	}
    839    1.1  augustss 
    840    1.1  augustss }
    841    1.1  augustss 
    842   1.86      kent Static void
    843   1.82      kent uaudio_add_selector(struct uaudio_softc *sc, const struct io_terminal *iot, int id)
    844    1.1  augustss {
    845   1.94      kent 	const struct usb_audio_selector_unit *d;
    846   1.79      kent 	struct mixerctl mix;
    847   1.79      kent 	int i, wp;
    848    1.1  augustss 
    849   1.94      kent 	d = iot[id].d.su;
    850  1.122       mrg 	DPRINTFN(2,"bUnitId=%d bNrInPins=%d\n",
    851  1.122       mrg 		    d->bUnitId, d->bNrInPins);
    852   1.79      kent 	mix.wIndex = MAKE(d->bUnitId, sc->sc_ac_iface);
    853   1.79      kent 	mix.wValue[0] = MAKE(0, 0);
    854   1.82      kent 	uaudio_determine_class(&iot[id], &mix);
    855   1.79      kent 	mix.nchan = 1;
    856   1.79      kent 	mix.type = MIX_SELECTOR;
    857   1.79      kent 	mix.ctlunit = "";
    858   1.79      kent 	mix.minval = 1;
    859   1.79      kent 	mix.maxval = d->bNrInPins;
    860   1.79      kent 	mix.mul = mix.maxval - mix.minval;
    861   1.81      kent 	wp = snprintf(mix.ctlname, MAX_AUDIO_DEV_LEN, "sel%d-", d->bUnitId);
    862   1.79      kent 	for (i = 1; i <= d->bNrInPins; i++) {
    863   1.79      kent 		wp += snprintf(mix.ctlname + wp, MAX_AUDIO_DEV_LEN - wp,
    864   1.79      kent 			       "i%d", d->baSourceId[i - 1]);
    865   1.79      kent 		if (wp > MAX_AUDIO_DEV_LEN - 1)
    866   1.79      kent 			break;
    867   1.79      kent 	}
    868   1.79      kent 	uaudio_mixer_add_ctl(sc, &mix);
    869    1.1  augustss }
    870    1.1  augustss 
    871   1.82      kent #ifdef UAUDIO_DEBUG
    872   1.86      kent Static const char *
    873   1.82      kent uaudio_get_terminal_name(int terminal_type)
    874   1.82      kent {
    875   1.99  christos 	static char tbuf[100];
    876   1.82      kent 
    877   1.82      kent 	switch (terminal_type) {
    878   1.87      kent 	/* USB terminal types */
    879   1.87      kent 	case UAT_UNDEFINED:	return "UAT_UNDEFINED";
    880   1.82      kent 	case UAT_STREAM:	return "UAT_STREAM";
    881   1.87      kent 	case UAT_VENDOR:	return "UAT_VENDOR";
    882   1.87      kent 	/* input terminal types */
    883   1.87      kent 	case UATI_UNDEFINED:	return "UATI_UNDEFINED";
    884   1.82      kent 	case UATI_MICROPHONE:	return "UATI_MICROPHONE";
    885   1.82      kent 	case UATI_DESKMICROPHONE:	return "UATI_DESKMICROPHONE";
    886   1.82      kent 	case UATI_PERSONALMICROPHONE:	return "UATI_PERSONALMICROPHONE";
    887   1.82      kent 	case UATI_OMNIMICROPHONE:	return "UATI_OMNIMICROPHONE";
    888   1.82      kent 	case UATI_MICROPHONEARRAY:	return "UATI_MICROPHONEARRAY";
    889   1.82      kent 	case UATI_PROCMICROPHONEARR:	return "UATI_PROCMICROPHONEARR";
    890   1.87      kent 	/* output terminal types */
    891   1.87      kent 	case UATO_UNDEFINED:	return "UATO_UNDEFINED";
    892   1.82      kent 	case UATO_SPEAKER:	return "UATO_SPEAKER";
    893   1.87      kent 	case UATO_HEADPHONES:	return "UATO_HEADPHONES";
    894   1.87      kent 	case UATO_DISPLAYAUDIO:	return "UATO_DISPLAYAUDIO";
    895   1.82      kent 	case UATO_DESKTOPSPEAKER:	return "UATO_DESKTOPSPEAKER";
    896   1.82      kent 	case UATO_ROOMSPEAKER:	return "UATO_ROOMSPEAKER";
    897   1.82      kent 	case UATO_COMMSPEAKER:	return "UATO_COMMSPEAKER";
    898   1.82      kent 	case UATO_SUBWOOFER:	return "UATO_SUBWOOFER";
    899   1.87      kent 	/* bidir terminal types */
    900   1.82      kent 	case UATB_UNDEFINED:	return "UATB_UNDEFINED";
    901   1.82      kent 	case UATB_HANDSET:	return "UATB_HANDSET";
    902   1.82      kent 	case UATB_HEADSET:	return "UATB_HEADSET";
    903   1.82      kent 	case UATB_SPEAKERPHONE:	return "UATB_SPEAKERPHONE";
    904   1.82      kent 	case UATB_SPEAKERPHONEESUP:	return "UATB_SPEAKERPHONEESUP";
    905   1.82      kent 	case UATB_SPEAKERPHONEECANC:	return "UATB_SPEAKERPHONEECANC";
    906   1.87      kent 	/* telephony terminal types */
    907   1.82      kent 	case UATT_UNDEFINED:	return "UATT_UNDEFINED";
    908   1.82      kent 	case UATT_PHONELINE:	return "UATT_PHONELINE";
    909   1.82      kent 	case UATT_TELEPHONE:	return "UATT_TELEPHONE";
    910   1.82      kent 	case UATT_DOWNLINEPHONE:	return "UATT_DOWNLINEPHONE";
    911   1.87      kent 	/* external terminal types */
    912   1.82      kent 	case UATE_UNDEFINED:	return "UATE_UNDEFINED";
    913   1.87      kent 	case UATE_ANALOGCONN:	return "UATE_ANALOGCONN";
    914   1.87      kent 	case UATE_LINECONN:	return "UATE_LINECONN";
    915   1.87      kent 	case UATE_LEGACYCONN:	return "UATE_LEGACYCONN";
    916   1.87      kent 	case UATE_DIGITALAUIFC:	return "UATE_DIGITALAUIFC";
    917   1.87      kent 	case UATE_SPDIF:	return "UATE_SPDIF";
    918   1.87      kent 	case UATE_1394DA:	return "UATE_1394DA";
    919   1.87      kent 	case UATE_1394DV:	return "UATE_1394DV";
    920   1.87      kent 	/* embedded function terminal types */
    921   1.82      kent 	case UATF_UNDEFINED:	return "UATF_UNDEFINED";
    922   1.82      kent 	case UATF_CALIBNOISE:	return "UATF_CALIBNOISE";
    923   1.82      kent 	case UATF_EQUNOISE:	return "UATF_EQUNOISE";
    924   1.87      kent 	case UATF_CDPLAYER:	return "UATF_CDPLAYER";
    925   1.82      kent 	case UATF_DAT:	return "UATF_DAT";
    926   1.82      kent 	case UATF_DCC:	return "UATF_DCC";
    927   1.82      kent 	case UATF_MINIDISK:	return "UATF_MINIDISK";
    928   1.82      kent 	case UATF_ANALOGTAPE:	return "UATF_ANALOGTAPE";
    929   1.82      kent 	case UATF_PHONOGRAPH:	return "UATF_PHONOGRAPH";
    930   1.82      kent 	case UATF_VCRAUDIO:	return "UATF_VCRAUDIO";
    931   1.87      kent 	case UATF_VIDEODISCAUDIO:	return "UATF_VIDEODISCAUDIO";
    932   1.87      kent 	case UATF_DVDAUDIO:	return "UATF_DVDAUDIO";
    933   1.87      kent 	case UATF_TVTUNERAUDIO:	return "UATF_TVTUNERAUDIO";
    934   1.82      kent 	case UATF_SATELLITE:	return "UATF_SATELLITE";
    935   1.82      kent 	case UATF_CABLETUNER:	return "UATF_CABLETUNER";
    936   1.82      kent 	case UATF_DSS:	return "UATF_DSS";
    937   1.82      kent 	case UATF_RADIORECV:	return "UATF_RADIORECV";
    938   1.82      kent 	case UATF_RADIOXMIT:	return "UATF_RADIOXMIT";
    939   1.82      kent 	case UATF_MULTITRACK:	return "UATF_MULTITRACK";
    940   1.87      kent 	case UATF_SYNTHESIZER:	return "UATF_SYNTHESIZER";
    941   1.82      kent 	default:
    942   1.99  christos 		snprintf(tbuf, sizeof(tbuf), "unknown type (0x%.4x)", terminal_type);
    943   1.99  christos 		return tbuf;
    944   1.82      kent 	}
    945   1.82      kent }
    946   1.82      kent #endif
    947   1.82      kent 
    948   1.86      kent Static int
    949   1.82      kent uaudio_determine_class(const struct io_terminal *iot, struct mixerctl *mix)
    950   1.82      kent {
    951   1.82      kent 	int terminal_type;
    952   1.82      kent 
    953   1.82      kent 	if (iot == NULL || iot->output == NULL) {
    954   1.82      kent 		mix->class = UAC_OUTPUT;
    955   1.82      kent 		return 0;
    956   1.82      kent 	}
    957   1.82      kent 	terminal_type = 0;
    958   1.82      kent 	if (iot->output->size == 1)
    959   1.82      kent 		terminal_type = iot->output->terminals[0];
    960   1.82      kent 	/*
    961   1.82      kent 	 * If the only output terminal is USB,
    962   1.82      kent 	 * the class is UAC_RECORD.
    963   1.82      kent 	 */
    964   1.82      kent 	if ((terminal_type & 0xff00) == (UAT_UNDEFINED & 0xff00)) {
    965   1.82      kent 		mix->class = UAC_RECORD;
    966   1.82      kent 		if (iot->inputs_size == 1
    967   1.82      kent 		    && iot->inputs[0] != NULL
    968   1.82      kent 		    && iot->inputs[0]->size == 1)
    969   1.82      kent 			return iot->inputs[0]->terminals[0];
    970   1.82      kent 		else
    971   1.82      kent 			return 0;
    972   1.82      kent 	}
    973   1.82      kent 	/*
    974   1.83      kent 	 * If the ultimate destination of the unit is just one output
    975   1.82      kent 	 * terminal and the unit is connected to the output terminal
    976   1.82      kent 	 * directly, the class is UAC_OUTPUT.
    977   1.82      kent 	 */
    978   1.82      kent 	if (terminal_type != 0 && iot->direct) {
    979   1.82      kent 		mix->class = UAC_OUTPUT;
    980   1.82      kent 		return terminal_type;
    981   1.82      kent 	}
    982   1.82      kent 	/*
    983   1.82      kent 	 * If the unit is connected to just one input terminal,
    984   1.82      kent 	 * the class is UAC_INPUT.
    985   1.82      kent 	 */
    986   1.82      kent 	if (iot->inputs_size == 1 && iot->inputs[0] != NULL
    987   1.82      kent 	    && iot->inputs[0]->size == 1) {
    988   1.82      kent 		mix->class = UAC_INPUT;
    989   1.82      kent 		return iot->inputs[0]->terminals[0];
    990   1.82      kent 	}
    991   1.82      kent 	/*
    992   1.82      kent 	 * Otherwise, the class is UAC_OUTPUT.
    993   1.82      kent 	 */
    994   1.82      kent 	mix->class = UAC_OUTPUT;
    995   1.82      kent 	return terminal_type;
    996   1.82      kent }
    997   1.82      kent 
    998   1.86      kent Static const char *
    999   1.82      kent uaudio_feature_name(const struct io_terminal *iot, struct mixerctl *mix)
   1000   1.82      kent {
   1001   1.82      kent 	int terminal_type;
   1002   1.82      kent 
   1003   1.82      kent 	terminal_type = uaudio_determine_class(iot, mix);
   1004   1.82      kent 	if (mix->class == UAC_RECORD && terminal_type == 0)
   1005   1.82      kent 		return AudioNmixerout;
   1006  1.122       mrg 	DPRINTF("terminal_type=%s\n", uaudio_get_terminal_name(terminal_type));
   1007   1.82      kent 	switch (terminal_type) {
   1008   1.82      kent 	case UAT_STREAM:
   1009   1.82      kent 		return AudioNdac;
   1010   1.82      kent 
   1011   1.82      kent 	case UATI_MICROPHONE:
   1012   1.82      kent 	case UATI_DESKMICROPHONE:
   1013   1.82      kent 	case UATI_PERSONALMICROPHONE:
   1014   1.82      kent 	case UATI_OMNIMICROPHONE:
   1015   1.82      kent 	case UATI_MICROPHONEARRAY:
   1016   1.82      kent 	case UATI_PROCMICROPHONEARR:
   1017   1.82      kent 		return AudioNmicrophone;
   1018   1.82      kent 
   1019   1.82      kent 	case UATO_SPEAKER:
   1020   1.82      kent 	case UATO_DESKTOPSPEAKER:
   1021   1.82      kent 	case UATO_ROOMSPEAKER:
   1022   1.82      kent 	case UATO_COMMSPEAKER:
   1023   1.82      kent 		return AudioNspeaker;
   1024   1.82      kent 
   1025   1.82      kent 	case UATO_HEADPHONES:
   1026   1.82      kent 		return AudioNheadphone;
   1027   1.82      kent 
   1028   1.87      kent 	case UATO_SUBWOOFER:
   1029   1.87      kent 		return AudioNlfe;
   1030   1.87      kent 
   1031   1.87      kent 	/* telephony terminal types */
   1032   1.87      kent 	case UATT_UNDEFINED:
   1033   1.87      kent 	case UATT_PHONELINE:
   1034   1.87      kent 	case UATT_TELEPHONE:
   1035   1.87      kent 	case UATT_DOWNLINEPHONE:
   1036   1.87      kent 		return "phone";
   1037   1.87      kent 
   1038   1.82      kent 	case UATE_ANALOGCONN:
   1039   1.82      kent 	case UATE_LINECONN:
   1040   1.82      kent 	case UATE_LEGACYCONN:
   1041   1.82      kent 		return AudioNline;
   1042   1.82      kent 
   1043   1.82      kent 	case UATE_DIGITALAUIFC:
   1044   1.82      kent 	case UATE_SPDIF:
   1045   1.82      kent 	case UATE_1394DA:
   1046   1.82      kent 	case UATE_1394DV:
   1047   1.82      kent 		return AudioNaux;
   1048   1.82      kent 
   1049   1.82      kent 	case UATF_CDPLAYER:
   1050   1.82      kent 		return AudioNcd;
   1051   1.82      kent 
   1052   1.82      kent 	case UATF_SYNTHESIZER:
   1053   1.82      kent 		return AudioNfmsynth;
   1054   1.82      kent 
   1055   1.82      kent 	case UATF_VIDEODISCAUDIO:
   1056   1.82      kent 	case UATF_DVDAUDIO:
   1057   1.82      kent 	case UATF_TVTUNERAUDIO:
   1058   1.82      kent 		return AudioNvideo;
   1059   1.82      kent 
   1060   1.82      kent 	case UAT_UNDEFINED:
   1061   1.82      kent 	case UAT_VENDOR:
   1062   1.82      kent 	case UATI_UNDEFINED:
   1063   1.82      kent /* output terminal types */
   1064   1.82      kent 	case UATO_UNDEFINED:
   1065   1.82      kent 	case UATO_DISPLAYAUDIO:
   1066   1.82      kent /* bidir terminal types */
   1067   1.82      kent 	case UATB_UNDEFINED:
   1068   1.82      kent 	case UATB_HANDSET:
   1069   1.82      kent 	case UATB_HEADSET:
   1070   1.82      kent 	case UATB_SPEAKERPHONE:
   1071   1.82      kent 	case UATB_SPEAKERPHONEESUP:
   1072   1.82      kent 	case UATB_SPEAKERPHONEECANC:
   1073   1.82      kent /* external terminal types */
   1074   1.82      kent 	case UATE_UNDEFINED:
   1075   1.82      kent /* embedded function terminal types */
   1076   1.82      kent 	case UATF_UNDEFINED:
   1077   1.82      kent 	case UATF_CALIBNOISE:
   1078   1.82      kent 	case UATF_EQUNOISE:
   1079   1.82      kent 	case UATF_DAT:
   1080   1.82      kent 	case UATF_DCC:
   1081   1.82      kent 	case UATF_MINIDISK:
   1082   1.82      kent 	case UATF_ANALOGTAPE:
   1083   1.82      kent 	case UATF_PHONOGRAPH:
   1084   1.82      kent 	case UATF_VCRAUDIO:
   1085   1.82      kent 	case UATF_SATELLITE:
   1086   1.82      kent 	case UATF_CABLETUNER:
   1087   1.82      kent 	case UATF_DSS:
   1088   1.82      kent 	case UATF_RADIORECV:
   1089   1.82      kent 	case UATF_RADIOXMIT:
   1090   1.82      kent 	case UATF_MULTITRACK:
   1091   1.82      kent 	case 0xffff:
   1092   1.82      kent 	default:
   1093  1.122       mrg 		DPRINTF("'master' for 0x%.4x\n", terminal_type);
   1094   1.82      kent 		return AudioNmaster;
   1095   1.82      kent 	}
   1096   1.82      kent 	return AudioNmaster;
   1097   1.82      kent }
   1098   1.82      kent 
   1099   1.86      kent Static void
   1100   1.82      kent uaudio_add_feature(struct uaudio_softc *sc, const struct io_terminal *iot, int id)
   1101    1.1  augustss {
   1102   1.94      kent 	const struct usb_audio_feature_unit *d;
   1103   1.94      kent 	const uByte *ctls;
   1104   1.94      kent 	int ctlsize;
   1105   1.94      kent 	int nchan;
   1106    1.1  augustss 	u_int fumask, mmask, cmask;
   1107    1.1  augustss 	struct mixerctl mix;
   1108    1.1  augustss 	int chan, ctl, i, unit;
   1109   1.82      kent 	const char *mixername;
   1110    1.1  augustss 
   1111    1.1  augustss #define GET(i) (ctls[(i)*ctlsize] | \
   1112    1.1  augustss 		(ctlsize > 1 ? ctls[(i)*ctlsize+1] << 8 : 0))
   1113   1.94      kent 	d = iot[id].d.fu;
   1114   1.94      kent 	ctls = d->bmaControls;
   1115   1.94      kent 	ctlsize = d->bControlSize;
   1116   1.94      kent 	nchan = (d->bLength - 7) / ctlsize;
   1117    1.1  augustss 	mmask = GET(0);
   1118    1.1  augustss 	/* Figure out what we can control */
   1119    1.1  augustss 	for (cmask = 0, chan = 1; chan < nchan; chan++) {
   1120  1.122       mrg 		DPRINTFN(9,"chan=%d mask=%x\n",
   1121  1.122       mrg 			    chan, GET(chan));
   1122    1.1  augustss 		cmask |= GET(chan);
   1123    1.1  augustss 	}
   1124    1.1  augustss 
   1125  1.122       mrg 	DPRINTFN(1,"bUnitId=%d, "
   1126   1.56      kent 		    "%d channels, mmask=0x%04x, cmask=0x%04x\n",
   1127  1.122       mrg 		    d->bUnitId, nchan, mmask, cmask);
   1128    1.1  augustss 
   1129    1.1  augustss 	if (nchan > MIX_MAX_CHAN)
   1130    1.1  augustss 		nchan = MIX_MAX_CHAN;
   1131    1.1  augustss 	unit = d->bUnitId;
   1132    1.1  augustss 	mix.wIndex = MAKE(unit, sc->sc_ac_iface);
   1133    1.1  augustss 	for (ctl = MUTE_CONTROL; ctl < LOUDNESS_CONTROL; ctl++) {
   1134    1.1  augustss 		fumask = FU_MASK(ctl);
   1135  1.122       mrg 		DPRINTFN(4,"ctl=%d fumask=0x%04x\n",
   1136  1.122       mrg 			    ctl, fumask);
   1137    1.1  augustss 		if (mmask & fumask) {
   1138    1.1  augustss 			mix.nchan = 1;
   1139    1.1  augustss 			mix.wValue[0] = MAKE(ctl, 0);
   1140    1.1  augustss 		} else if (cmask & fumask) {
   1141    1.1  augustss 			mix.nchan = nchan - 1;
   1142    1.1  augustss 			for (i = 1; i < nchan; i++) {
   1143    1.1  augustss 				if (GET(i) & fumask)
   1144    1.1  augustss 					mix.wValue[i-1] = MAKE(ctl, i);
   1145    1.1  augustss 				else
   1146    1.1  augustss 					mix.wValue[i-1] = -1;
   1147    1.1  augustss 			}
   1148    1.1  augustss 		} else {
   1149    1.1  augustss 			continue;
   1150    1.1  augustss 		}
   1151    1.1  augustss #undef GET
   1152   1.82      kent 		mixername = uaudio_feature_name(&iot[id], &mix);
   1153    1.1  augustss 		switch (ctl) {
   1154    1.1  augustss 		case MUTE_CONTROL:
   1155    1.1  augustss 			mix.type = MIX_ON_OFF;
   1156   1.63  augustss 			mix.ctlunit = "";
   1157   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname),
   1158   1.82      kent 				 "%s.%s", mixername, AudioNmute);
   1159    1.1  augustss 			break;
   1160    1.1  augustss 		case VOLUME_CONTROL:
   1161    1.1  augustss 			mix.type = MIX_SIGNED_16;
   1162   1.63  augustss 			mix.ctlunit = AudioNvolume;
   1163   1.82      kent 			strlcpy(mix.ctlname, mixername, sizeof(mix.ctlname));
   1164    1.1  augustss 			break;
   1165    1.1  augustss 		case BASS_CONTROL:
   1166    1.1  augustss 			mix.type = MIX_SIGNED_8;
   1167   1.63  augustss 			mix.ctlunit = AudioNbass;
   1168   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname),
   1169   1.82      kent 				 "%s.%s", mixername, AudioNbass);
   1170    1.1  augustss 			break;
   1171    1.1  augustss 		case MID_CONTROL:
   1172    1.1  augustss 			mix.type = MIX_SIGNED_8;
   1173   1.63  augustss 			mix.ctlunit = AudioNmid;
   1174   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname),
   1175   1.82      kent 				 "%s.%s", mixername, AudioNmid);
   1176    1.1  augustss 			break;
   1177    1.1  augustss 		case TREBLE_CONTROL:
   1178    1.1  augustss 			mix.type = MIX_SIGNED_8;
   1179   1.63  augustss 			mix.ctlunit = AudioNtreble;
   1180   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname),
   1181   1.82      kent 				 "%s.%s", mixername, AudioNtreble);
   1182    1.1  augustss 			break;
   1183    1.1  augustss 		case GRAPHIC_EQUALIZER_CONTROL:
   1184    1.7  augustss 			continue; /* XXX don't add anything */
   1185    1.1  augustss 			break;
   1186    1.1  augustss 		case AGC_CONTROL:
   1187    1.1  augustss 			mix.type = MIX_ON_OFF;
   1188    1.1  augustss 			mix.ctlunit = "";
   1189   1.82      kent 			snprintf(mix.ctlname, sizeof(mix.ctlname), "%s.%s",
   1190   1.82      kent 				 mixername, AudioNagc);
   1191    1.1  augustss 			break;
   1192    1.1  augustss 		case DELAY_CONTROL:
   1193    1.1  augustss 			mix.type = MIX_UNSIGNED_16;
   1194   1.82      kent 			mix.ctlunit = "4 ms";
   1195   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname),
   1196   1.82      kent 				 "%s.%s", mixername, AudioNdelay);
   1197    1.1  augustss 			break;
   1198    1.1  augustss 		case BASS_BOOST_CONTROL:
   1199    1.1  augustss 			mix.type = MIX_ON_OFF;
   1200   1.82      kent 			mix.ctlunit = "";
   1201   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname),
   1202   1.82      kent 				 "%s.%s", mixername, AudioNbassboost);
   1203    1.1  augustss 			break;
   1204    1.1  augustss 		case LOUDNESS_CONTROL:
   1205    1.1  augustss 			mix.type = MIX_ON_OFF;
   1206   1.82      kent 			mix.ctlunit = "";
   1207   1.70    itojun 			snprintf(mix.ctlname, sizeof(mix.ctlname),
   1208   1.82      kent 				 "%s.%s", mixername, AudioNloudness);
   1209    1.1  augustss 			break;
   1210    1.1  augustss 		}
   1211    1.1  augustss 		uaudio_mixer_add_ctl(sc, &mix);
   1212    1.1  augustss 	}
   1213    1.1  augustss }
   1214    1.1  augustss 
   1215   1.86      kent Static void
   1216   1.78      kent uaudio_add_processing_updown(struct uaudio_softc *sc,
   1217   1.82      kent 			     const struct io_terminal *iot, int id)
   1218   1.78      kent {
   1219   1.94      kent 	const struct usb_audio_processing_unit *d;
   1220   1.94      kent 	const struct usb_audio_processing_unit_1 *d1;
   1221   1.94      kent 	const struct usb_audio_processing_unit_updown *ud;
   1222   1.16  augustss 	struct mixerctl mix;
   1223   1.16  augustss 	int i;
   1224   1.16  augustss 
   1225   1.94      kent 	d = iot[id].d.pu;
   1226   1.94      kent 	d1 = (const struct usb_audio_processing_unit_1 *)
   1227   1.94      kent 	    &d->baSourceId[d->bNrInPins];
   1228   1.94      kent 	ud = (const struct usb_audio_processing_unit_updown *)
   1229   1.94      kent 	    &d1->bmControls[d1->bControlSize];
   1230  1.122       mrg 	DPRINTFN(2,"bUnitId=%d bNrModes=%d\n",
   1231  1.122       mrg 		    d->bUnitId, ud->bNrModes);
   1232   1.16  augustss 
   1233   1.16  augustss 	if (!(d1->bmControls[0] & UA_PROC_MASK(UD_MODE_SELECT_CONTROL))) {
   1234  1.122       mrg 		DPRINTF("%s", "no mode select\n");
   1235   1.16  augustss 		return;
   1236   1.16  augustss 	}
   1237   1.16  augustss 
   1238   1.16  augustss 	mix.wIndex = MAKE(d->bUnitId, sc->sc_ac_iface);
   1239   1.16  augustss 	mix.nchan = 1;
   1240   1.16  augustss 	mix.wValue[0] = MAKE(UD_MODE_SELECT_CONTROL, 0);
   1241   1.82      kent 	uaudio_determine_class(&iot[id], &mix);
   1242   1.16  augustss 	mix.type = MIX_ON_OFF;	/* XXX */
   1243   1.16  augustss 	mix.ctlunit = "";
   1244   1.70    itojun 	snprintf(mix.ctlname, sizeof(mix.ctlname), "pro%d-mode", d->bUnitId);
   1245   1.16  augustss 
   1246   1.16  augustss 	for (i = 0; i < ud->bNrModes; i++) {
   1247  1.122       mrg 		DPRINTFN(2,"i=%d bm=0x%x\n",
   1248  1.122       mrg 			    i, UGETW(ud->waModes[i]));
   1249   1.16  augustss 		/* XXX */
   1250   1.16  augustss 	}
   1251   1.16  augustss 	uaudio_mixer_add_ctl(sc, &mix);
   1252   1.16  augustss }
   1253   1.16  augustss 
   1254   1.86      kent Static void
   1255   1.82      kent uaudio_add_processing(struct uaudio_softc *sc, const struct io_terminal *iot, int id)
   1256    1.1  augustss {
   1257   1.94      kent 	const struct usb_audio_processing_unit *d;
   1258   1.94      kent 	const struct usb_audio_processing_unit_1 *d1;
   1259   1.94      kent 	int ptype;
   1260   1.15  augustss 	struct mixerctl mix;
   1261   1.15  augustss 
   1262   1.94      kent 	d = iot[id].d.pu;
   1263   1.94      kent 	d1 = (const struct usb_audio_processing_unit_1 *)
   1264   1.94      kent 	    &d->baSourceId[d->bNrInPins];
   1265   1.94      kent 	ptype = UGETW(d->wProcessType);
   1266  1.122       mrg 	DPRINTFN(2,"wProcessType=%d bUnitId=%d "
   1267  1.122       mrg 		    "bNrInPins=%d\n", ptype, d->bUnitId, d->bNrInPins);
   1268   1.15  augustss 
   1269   1.15  augustss 	if (d1->bmControls[0] & UA_PROC_ENABLE_MASK) {
   1270   1.15  augustss 		mix.wIndex = MAKE(d->bUnitId, sc->sc_ac_iface);
   1271   1.15  augustss 		mix.nchan = 1;
   1272   1.15  augustss 		mix.wValue[0] = MAKE(XX_ENABLE_CONTROL, 0);
   1273   1.82      kent 		uaudio_determine_class(&iot[id], &mix);
   1274   1.15  augustss 		mix.type = MIX_ON_OFF;
   1275   1.15  augustss 		mix.ctlunit = "";
   1276   1.70    itojun 		snprintf(mix.ctlname, sizeof(mix.ctlname), "pro%d.%d-enable",
   1277   1.70    itojun 		    d->bUnitId, ptype);
   1278   1.15  augustss 		uaudio_mixer_add_ctl(sc, &mix);
   1279   1.15  augustss 	}
   1280    1.1  augustss 
   1281   1.15  augustss 	switch(ptype) {
   1282   1.15  augustss 	case UPDOWNMIX_PROCESS:
   1283   1.82      kent 		uaudio_add_processing_updown(sc, iot, id);
   1284   1.16  augustss 		break;
   1285   1.15  augustss 	case DOLBY_PROLOGIC_PROCESS:
   1286   1.15  augustss 	case P3D_STEREO_EXTENDER_PROCESS:
   1287   1.15  augustss 	case REVERBATION_PROCESS:
   1288   1.15  augustss 	case CHORUS_PROCESS:
   1289   1.15  augustss 	case DYN_RANGE_COMP_PROCESS:
   1290   1.15  augustss 	default:
   1291   1.15  augustss #ifdef UAUDIO_DEBUG
   1292  1.113      cube 		aprint_debug(
   1293  1.113      cube 		    "uaudio_add_processing: unit %d, type=%d not impl.\n",
   1294  1.113      cube 		    d->bUnitId, ptype);
   1295    1.1  augustss #endif
   1296   1.15  augustss 		break;
   1297   1.15  augustss 	}
   1298    1.1  augustss }
   1299    1.1  augustss 
   1300   1.86      kent Static void
   1301   1.82      kent uaudio_add_extension(struct uaudio_softc *sc, const struct io_terminal *iot, int id)
   1302    1.1  augustss {
   1303   1.94      kent 	const struct usb_audio_extension_unit *d;
   1304   1.94      kent 	const struct usb_audio_extension_unit_1 *d1;
   1305    1.1  augustss 	struct mixerctl mix;
   1306    1.1  augustss 
   1307   1.94      kent 	d = iot[id].d.eu;
   1308   1.94      kent 	d1 = (const struct usb_audio_extension_unit_1 *)
   1309   1.94      kent 	    &d->baSourceId[d->bNrInPins];
   1310  1.122       mrg 	DPRINTFN(2,"bUnitId=%d bNrInPins=%d\n",
   1311  1.122       mrg 		    d->bUnitId, d->bNrInPins);
   1312   1.28  augustss 
   1313   1.31  augustss 	if (usbd_get_quirks(sc->sc_udev)->uq_flags & UQ_AU_NO_XU)
   1314   1.28  augustss 		return;
   1315    1.1  augustss 
   1316   1.15  augustss 	if (d1->bmControls[0] & UA_EXT_ENABLE_MASK) {
   1317    1.1  augustss 		mix.wIndex = MAKE(d->bUnitId, sc->sc_ac_iface);
   1318    1.1  augustss 		mix.nchan = 1;
   1319    1.1  augustss 		mix.wValue[0] = MAKE(UA_EXT_ENABLE, 0);
   1320   1.82      kent 		uaudio_determine_class(&iot[id], &mix);
   1321    1.1  augustss 		mix.type = MIX_ON_OFF;
   1322    1.1  augustss 		mix.ctlunit = "";
   1323   1.70    itojun 		snprintf(mix.ctlname, sizeof(mix.ctlname), "ext%d-enable",
   1324   1.70    itojun 		    d->bUnitId);
   1325    1.1  augustss 		uaudio_mixer_add_ctl(sc, &mix);
   1326    1.1  augustss 	}
   1327    1.1  augustss }
   1328    1.1  augustss 
   1329   1.86      kent Static struct terminal_list*
   1330   1.82      kent uaudio_merge_terminal_list(const struct io_terminal *iot)
   1331   1.82      kent {
   1332   1.82      kent 	struct terminal_list *tml;
   1333   1.82      kent 	uint16_t *ptm;
   1334   1.82      kent 	int i, len;
   1335   1.82      kent 
   1336   1.82      kent 	len = 0;
   1337   1.82      kent 	if (iot->inputs == NULL)
   1338   1.82      kent 		return NULL;
   1339   1.82      kent 	for (i = 0; i < iot->inputs_size; i++) {
   1340   1.82      kent 		if (iot->inputs[i] != NULL)
   1341   1.82      kent 			len += iot->inputs[i]->size;
   1342   1.82      kent 	}
   1343   1.82      kent 	tml = malloc(TERMINAL_LIST_SIZE(len), M_TEMP, M_NOWAIT);
   1344   1.82      kent 	if (tml == NULL) {
   1345  1.113      cube 		aprint_error("uaudio_merge_terminal_list: no memory\n");
   1346   1.82      kent 		return NULL;
   1347   1.82      kent 	}
   1348   1.82      kent 	tml->size = 0;
   1349   1.82      kent 	ptm = tml->terminals;
   1350   1.82      kent 	for (i = 0; i < iot->inputs_size; i++) {
   1351   1.82      kent 		if (iot->inputs[i] == NULL)
   1352   1.82      kent 			continue;
   1353   1.82      kent 		if (iot->inputs[i]->size > len)
   1354   1.82      kent 			break;
   1355   1.82      kent 		memcpy(ptm, iot->inputs[i]->terminals,
   1356   1.82      kent 		       iot->inputs[i]->size * sizeof(uint16_t));
   1357   1.82      kent 		tml->size += iot->inputs[i]->size;
   1358   1.82      kent 		ptm += iot->inputs[i]->size;
   1359   1.82      kent 		len -= iot->inputs[i]->size;
   1360   1.82      kent 	}
   1361   1.82      kent 	return tml;
   1362   1.82      kent }
   1363   1.82      kent 
   1364   1.86      kent Static struct terminal_list *
   1365   1.82      kent uaudio_io_terminaltype(int outtype, struct io_terminal *iot, int id)
   1366   1.82      kent {
   1367   1.82      kent 	struct terminal_list *tml;
   1368   1.82      kent 	struct io_terminal *it;
   1369   1.82      kent 	int src_id, i;
   1370   1.82      kent 
   1371   1.82      kent 	it = &iot[id];
   1372   1.82      kent 	if (it->output != NULL) {
   1373   1.82      kent 		/* already has outtype? */
   1374   1.82      kent 		for (i = 0; i < it->output->size; i++)
   1375   1.82      kent 			if (it->output->terminals[i] == outtype)
   1376   1.82      kent 				return uaudio_merge_terminal_list(it);
   1377   1.82      kent 		tml = malloc(TERMINAL_LIST_SIZE(it->output->size + 1),
   1378   1.82      kent 			     M_TEMP, M_NOWAIT);
   1379   1.82      kent 		if (tml == NULL) {
   1380  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1381   1.82      kent 			return uaudio_merge_terminal_list(it);
   1382   1.82      kent 		}
   1383   1.82      kent 		memcpy(tml, it->output, TERMINAL_LIST_SIZE(it->output->size));
   1384   1.82      kent 		tml->terminals[it->output->size] = outtype;
   1385   1.82      kent 		tml->size++;
   1386   1.82      kent 		free(it->output, M_TEMP);
   1387   1.82      kent 		it->output = tml;
   1388   1.82      kent 		if (it->inputs != NULL) {
   1389   1.82      kent 			for (i = 0; i < it->inputs_size; i++)
   1390   1.82      kent 				if (it->inputs[i] != NULL)
   1391   1.82      kent 					free(it->inputs[i], M_TEMP);
   1392   1.82      kent 			free(it->inputs, M_TEMP);
   1393   1.82      kent 		}
   1394   1.82      kent 		it->inputs_size = 0;
   1395   1.82      kent 		it->inputs = NULL;
   1396   1.82      kent 	} else {		/* end `iot[id] != NULL' */
   1397   1.82      kent 		it->inputs_size = 0;
   1398   1.82      kent 		it->inputs = NULL;
   1399   1.82      kent 		it->output = malloc(TERMINAL_LIST_SIZE(1), M_TEMP, M_NOWAIT);
   1400   1.82      kent 		if (it->output == NULL) {
   1401  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1402   1.82      kent 			return NULL;
   1403   1.82      kent 		}
   1404   1.82      kent 		it->output->terminals[0] = outtype;
   1405   1.82      kent 		it->output->size = 1;
   1406   1.82      kent 		it->direct = FALSE;
   1407   1.82      kent 	}
   1408   1.82      kent 
   1409   1.82      kent 	switch (it->d.desc->bDescriptorSubtype) {
   1410   1.82      kent 	case UDESCSUB_AC_INPUT:
   1411   1.82      kent 		it->inputs = malloc(sizeof(struct terminal_list *), M_TEMP, M_NOWAIT);
   1412   1.82      kent 		if (it->inputs == NULL) {
   1413  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1414   1.82      kent 			return NULL;
   1415   1.82      kent 		}
   1416   1.82      kent 		tml = malloc(TERMINAL_LIST_SIZE(1), M_TEMP, M_NOWAIT);
   1417   1.82      kent 		if (tml == NULL) {
   1418  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1419   1.82      kent 			free(it->inputs, M_TEMP);
   1420   1.82      kent 			it->inputs = NULL;
   1421   1.82      kent 			return NULL;
   1422   1.82      kent 		}
   1423   1.82      kent 		it->inputs[0] = tml;
   1424   1.82      kent 		tml->terminals[0] = UGETW(it->d.it->wTerminalType);
   1425   1.82      kent 		tml->size = 1;
   1426   1.82      kent 		it->inputs_size = 1;
   1427   1.82      kent 		return uaudio_merge_terminal_list(it);
   1428   1.82      kent 	case UDESCSUB_AC_FEATURE:
   1429   1.82      kent 		src_id = it->d.fu->bSourceId;
   1430   1.82      kent 		it->inputs = malloc(sizeof(struct terminal_list *), M_TEMP, M_NOWAIT);
   1431   1.82      kent 		if (it->inputs == NULL) {
   1432  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1433   1.82      kent 			return uaudio_io_terminaltype(outtype, iot, src_id);
   1434   1.82      kent 		}
   1435   1.82      kent 		it->inputs[0] = uaudio_io_terminaltype(outtype, iot, src_id);
   1436   1.82      kent 		it->inputs_size = 1;
   1437   1.82      kent 		return uaudio_merge_terminal_list(it);
   1438   1.82      kent 	case UDESCSUB_AC_OUTPUT:
   1439   1.82      kent 		it->inputs = malloc(sizeof(struct terminal_list *), M_TEMP, M_NOWAIT);
   1440   1.82      kent 		if (it->inputs == NULL) {
   1441  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1442   1.82      kent 			return NULL;
   1443   1.82      kent 		}
   1444   1.82      kent 		src_id = it->d.ot->bSourceId;
   1445   1.82      kent 		it->inputs[0] = uaudio_io_terminaltype(outtype, iot, src_id);
   1446   1.82      kent 		it->inputs_size = 1;
   1447   1.82      kent 		iot[src_id].direct = TRUE;
   1448   1.82      kent 		return NULL;
   1449   1.82      kent 	case UDESCSUB_AC_MIXER:
   1450   1.82      kent 		it->inputs_size = 0;
   1451   1.82      kent 		it->inputs = malloc(sizeof(struct terminal_list *)
   1452   1.82      kent 				    * it->d.mu->bNrInPins, M_TEMP, M_NOWAIT);
   1453   1.82      kent 		if (it->inputs == NULL) {
   1454  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1455   1.82      kent 			return NULL;
   1456   1.82      kent 		}
   1457   1.82      kent 		for (i = 0; i < it->d.mu->bNrInPins; i++) {
   1458   1.82      kent 			src_id = it->d.mu->baSourceId[i];
   1459   1.82      kent 			it->inputs[i] = uaudio_io_terminaltype(outtype, iot,
   1460   1.82      kent 							       src_id);
   1461   1.82      kent 			it->inputs_size++;
   1462   1.82      kent 		}
   1463   1.82      kent 		return uaudio_merge_terminal_list(it);
   1464   1.82      kent 	case UDESCSUB_AC_SELECTOR:
   1465   1.82      kent 		it->inputs_size = 0;
   1466   1.82      kent 		it->inputs = malloc(sizeof(struct terminal_list *)
   1467   1.82      kent 				    * it->d.su->bNrInPins, M_TEMP, M_NOWAIT);
   1468   1.82      kent 		if (it->inputs == NULL) {
   1469  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1470   1.82      kent 			return NULL;
   1471   1.82      kent 		}
   1472   1.82      kent 		for (i = 0; i < it->d.su->bNrInPins; i++) {
   1473   1.82      kent 			src_id = it->d.su->baSourceId[i];
   1474   1.82      kent 			it->inputs[i] = uaudio_io_terminaltype(outtype, iot,
   1475   1.82      kent 							       src_id);
   1476   1.82      kent 			it->inputs_size++;
   1477   1.82      kent 		}
   1478   1.82      kent 		return uaudio_merge_terminal_list(it);
   1479   1.82      kent 	case UDESCSUB_AC_PROCESSING:
   1480   1.82      kent 		it->inputs_size = 0;
   1481   1.82      kent 		it->inputs = malloc(sizeof(struct terminal_list *)
   1482   1.82      kent 				    * it->d.pu->bNrInPins, M_TEMP, M_NOWAIT);
   1483   1.82      kent 		if (it->inputs == NULL) {
   1484  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1485   1.82      kent 			return NULL;
   1486   1.82      kent 		}
   1487   1.82      kent 		for (i = 0; i < it->d.pu->bNrInPins; i++) {
   1488   1.82      kent 			src_id = it->d.pu->baSourceId[i];
   1489   1.82      kent 			it->inputs[i] = uaudio_io_terminaltype(outtype, iot,
   1490   1.82      kent 							       src_id);
   1491   1.82      kent 			it->inputs_size++;
   1492   1.82      kent 		}
   1493   1.82      kent 		return uaudio_merge_terminal_list(it);
   1494   1.82      kent 	case UDESCSUB_AC_EXTENSION:
   1495   1.82      kent 		it->inputs_size = 0;
   1496   1.82      kent 		it->inputs = malloc(sizeof(struct terminal_list *)
   1497   1.82      kent 				    * it->d.eu->bNrInPins, M_TEMP, M_NOWAIT);
   1498   1.82      kent 		if (it->inputs == NULL) {
   1499  1.113      cube 			aprint_error("uaudio_io_terminaltype: no memory\n");
   1500   1.82      kent 			return NULL;
   1501   1.82      kent 		}
   1502   1.82      kent 		for (i = 0; i < it->d.eu->bNrInPins; i++) {
   1503   1.82      kent 			src_id = it->d.eu->baSourceId[i];
   1504   1.82      kent 			it->inputs[i] = uaudio_io_terminaltype(outtype, iot,
   1505   1.82      kent 							       src_id);
   1506   1.82      kent 			it->inputs_size++;
   1507   1.82      kent 		}
   1508   1.82      kent 		return uaudio_merge_terminal_list(it);
   1509   1.82      kent 	case UDESCSUB_AC_HEADER:
   1510   1.82      kent 	default:
   1511   1.82      kent 		return NULL;
   1512   1.82      kent 	}
   1513   1.82      kent }
   1514   1.82      kent 
   1515   1.86      kent Static usbd_status
   1516   1.78      kent uaudio_identify(struct uaudio_softc *sc, const usb_config_descriptor_t *cdesc)
   1517    1.1  augustss {
   1518    1.9  augustss 	usbd_status err;
   1519    1.1  augustss 
   1520    1.9  augustss 	err = uaudio_identify_ac(sc, cdesc);
   1521    1.9  augustss 	if (err)
   1522   1.94      kent 		return err;
   1523   1.94      kent 	return uaudio_identify_as(sc, cdesc);
   1524    1.1  augustss }
   1525    1.1  augustss 
   1526   1.86      kent Static void
   1527   1.78      kent uaudio_add_alt(struct uaudio_softc *sc, const struct as_info *ai)
   1528    1.1  augustss {
   1529   1.84      kent 	size_t len;
   1530   1.84      kent 	struct as_info *nai;
   1531   1.42  christos 
   1532   1.84      kent 	len = sizeof(*ai) * (sc->sc_nalts + 1);
   1533   1.84      kent 	nai = malloc(len, M_USBDEV, M_NOWAIT);
   1534   1.42  christos 	if (nai == NULL) {
   1535  1.113      cube 		aprint_error("uaudio_add_alt: no memory\n");
   1536    1.1  augustss 		return;
   1537    1.1  augustss 	}
   1538   1.84      kent 	/* Copy old data, if there was any */
   1539   1.84      kent 	if (sc->sc_nalts != 0) {
   1540   1.84      kent 		memcpy(nai, sc->sc_alts, sizeof(*ai) * (sc->sc_nalts));
   1541   1.84      kent 		free(sc->sc_alts, M_USBDEV);
   1542   1.84      kent 	}
   1543   1.42  christos 	sc->sc_alts = nai;
   1544  1.122       mrg 	DPRINTFN(2,"adding alt=%d, enc=%d\n",
   1545  1.122       mrg 		    ai->alt, ai->encoding);
   1546    1.1  augustss 	sc->sc_alts[sc->sc_nalts++] = *ai;
   1547    1.1  augustss }
   1548    1.1  augustss 
   1549   1.86      kent Static usbd_status
   1550   1.99  christos uaudio_process_as(struct uaudio_softc *sc, const char *tbuf, int *offsp,
   1551   1.78      kent 		  int size, const usb_interface_descriptor_t *id)
   1552    1.1  augustss #define offs (*offsp)
   1553    1.1  augustss {
   1554   1.78      kent 	const struct usb_audio_streaming_interface_descriptor *asid;
   1555   1.78      kent 	const struct usb_audio_streaming_type1_descriptor *asf1d;
   1556   1.78      kent 	const usb_endpoint_descriptor_audio_t *ed;
   1557   1.80      kent 	const usb_endpoint_descriptor_audio_t *epdesc1;
   1558   1.78      kent 	const struct usb_audio_streaming_endpoint_descriptor *sed;
   1559    1.1  augustss 	int format, chan, prec, enc;
   1560   1.80      kent 	int dir, type, sync;
   1561    1.1  augustss 	struct as_info ai;
   1562   1.78      kent 	const char *format_str;
   1563    1.1  augustss 
   1564   1.99  christos 	asid = (const void *)(tbuf + offs);
   1565    1.1  augustss 	if (asid->bDescriptorType != UDESC_CS_INTERFACE ||
   1566    1.1  augustss 	    asid->bDescriptorSubtype != AS_GENERAL)
   1567   1.94      kent 		return USBD_INVAL;
   1568  1.122       mrg 	DPRINTF("asid: bTerminakLink=%d wFormatTag=%d\n",
   1569  1.122       mrg 		 asid->bTerminalLink, UGETW(asid->wFormatTag));
   1570    1.1  augustss 	offs += asid->bLength;
   1571    1.1  augustss 	if (offs > size)
   1572   1.94      kent 		return USBD_INVAL;
   1573   1.78      kent 
   1574   1.99  christos 	asf1d = (const void *)(tbuf + offs);
   1575    1.1  augustss 	if (asf1d->bDescriptorType != UDESC_CS_INTERFACE ||
   1576    1.1  augustss 	    asf1d->bDescriptorSubtype != FORMAT_TYPE)
   1577   1.94      kent 		return USBD_INVAL;
   1578    1.1  augustss 	offs += asf1d->bLength;
   1579    1.1  augustss 	if (offs > size)
   1580   1.94      kent 		return USBD_INVAL;
   1581    1.1  augustss 
   1582    1.3  augustss 	if (asf1d->bFormatType != FORMAT_TYPE_I) {
   1583  1.113      cube 		aprint_error_dev(sc->sc_dev,
   1584  1.113      cube 		    "ignored setting with type %d format\n", UGETW(asid->wFormatTag));
   1585   1.94      kent 		return USBD_NORMAL_COMPLETION;
   1586    1.3  augustss 	}
   1587    1.3  augustss 
   1588   1.99  christos 	ed = (const void *)(tbuf + offs);
   1589    1.1  augustss 	if (ed->bDescriptorType != UDESC_ENDPOINT)
   1590   1.94      kent 		return USBD_INVAL;
   1591  1.122       mrg 	DPRINTF("endpoint[0] bLength=%d bDescriptorType=%d "
   1592    1.5  augustss 		 "bEndpointAddress=%d bmAttributes=0x%x wMaxPacketSize=%d "
   1593    1.5  augustss 		 "bInterval=%d bRefresh=%d bSynchAddress=%d\n",
   1594    1.5  augustss 		 ed->bLength, ed->bDescriptorType, ed->bEndpointAddress,
   1595    1.5  augustss 		 ed->bmAttributes, UGETW(ed->wMaxPacketSize),
   1596  1.122       mrg 		 ed->bInterval, ed->bRefresh, ed->bSynchAddress);
   1597    1.1  augustss 	offs += ed->bLength;
   1598    1.1  augustss 	if (offs > size)
   1599   1.94      kent 		return USBD_INVAL;
   1600    1.5  augustss 	if (UE_GET_XFERTYPE(ed->bmAttributes) != UE_ISOCHRONOUS)
   1601   1.94      kent 		return USBD_INVAL;
   1602    1.5  augustss 
   1603    1.5  augustss 	dir = UE_GET_DIR(ed->bEndpointAddress);
   1604    1.5  augustss 	type = UE_GET_ISO_TYPE(ed->bmAttributes);
   1605   1.31  augustss 	if ((usbd_get_quirks(sc->sc_udev)->uq_flags & UQ_AU_INP_ASYNC) &&
   1606   1.31  augustss 	    dir == UE_DIR_IN && type == UE_ISO_ADAPT)
   1607   1.31  augustss 		type = UE_ISO_ASYNC;
   1608   1.31  augustss 
   1609   1.40  augustss 	/* We can't handle endpoints that need a sync pipe yet. */
   1610   1.80      kent 	sync = FALSE;
   1611   1.78      kent 	if (dir == UE_DIR_IN && type == UE_ISO_ADAPT) {
   1612   1.80      kent 		sync = TRUE;
   1613   1.80      kent #ifndef UAUDIO_MULTIPLE_ENDPOINTS
   1614  1.113      cube 		aprint_error_dev(sc->sc_dev,
   1615  1.113      cube 		    "ignored input endpoint of type adaptive\n");
   1616   1.94      kent 		return USBD_NORMAL_COMPLETION;
   1617   1.80      kent #endif
   1618   1.78      kent 	}
   1619   1.78      kent 	if (dir != UE_DIR_IN && type == UE_ISO_ASYNC) {
   1620   1.80      kent 		sync = TRUE;
   1621   1.80      kent #ifndef UAUDIO_MULTIPLE_ENDPOINTS
   1622  1.113      cube 		aprint_error_dev(sc->sc_dev,
   1623  1.113      cube 		    "ignored output endpoint of type async\n");
   1624   1.94      kent 		return USBD_NORMAL_COMPLETION;
   1625   1.80      kent #endif
   1626    1.1  augustss 	}
   1627   1.56      kent 
   1628   1.99  christos 	sed = (const void *)(tbuf + offs);
   1629    1.1  augustss 	if (sed->bDescriptorType != UDESC_CS_ENDPOINT ||
   1630    1.1  augustss 	    sed->bDescriptorSubtype != AS_GENERAL)
   1631   1.94      kent 		return USBD_INVAL;
   1632  1.122       mrg 	DPRINTF(" streadming_endpoint: offset=%d bLength=%d\n", offs, sed->bLength);
   1633    1.1  augustss 	offs += sed->bLength;
   1634    1.1  augustss 	if (offs > size)
   1635   1.94      kent 		return USBD_INVAL;
   1636   1.56      kent 
   1637  1.102  christos #ifdef UAUDIO_MULTIPLE_ENDPOINTS
   1638   1.80      kent 	if (sync && id->bNumEndpoints <= 1) {
   1639  1.113      cube 		aprint_error_dev(sc->sc_dev,
   1640  1.113      cube 		    "a sync-pipe endpoint but no other endpoint\n");
   1641   1.80      kent 		return USBD_INVAL;
   1642   1.80      kent 	}
   1643  1.102  christos #endif
   1644   1.80      kent 	if (!sync && id->bNumEndpoints > 1) {
   1645  1.113      cube 		aprint_error_dev(sc->sc_dev,
   1646  1.113      cube 		    "non sync-pipe endpoint but multiple endpoints\n");
   1647   1.80      kent 		return USBD_INVAL;
   1648   1.80      kent 	}
   1649   1.80      kent 	epdesc1 = NULL;
   1650   1.80      kent 	if (id->bNumEndpoints > 1) {
   1651   1.99  christos 		epdesc1 = (const void*)(tbuf + offs);
   1652   1.80      kent 		if (epdesc1->bDescriptorType != UDESC_ENDPOINT)
   1653   1.80      kent 			return USBD_INVAL;
   1654  1.122       mrg 		DPRINTF("endpoint[1] bLength=%d "
   1655   1.80      kent 			 "bDescriptorType=%d bEndpointAddress=%d "
   1656   1.80      kent 			 "bmAttributes=0x%x wMaxPacketSize=%d bInterval=%d "
   1657   1.80      kent 			 "bRefresh=%d bSynchAddress=%d\n",
   1658   1.80      kent 			 epdesc1->bLength, epdesc1->bDescriptorType,
   1659   1.80      kent 			 epdesc1->bEndpointAddress, epdesc1->bmAttributes,
   1660   1.80      kent 			 UGETW(epdesc1->wMaxPacketSize), epdesc1->bInterval,
   1661  1.122       mrg 			 epdesc1->bRefresh, epdesc1->bSynchAddress);
   1662   1.80      kent 		offs += epdesc1->bLength;
   1663   1.80      kent 		if (offs > size)
   1664   1.80      kent 			return USBD_INVAL;
   1665   1.80      kent 		if (epdesc1->bSynchAddress != 0) {
   1666  1.113      cube 			aprint_error_dev(sc->sc_dev,
   1667  1.113      cube 			    "invalid endpoint: bSynchAddress=0\n");
   1668   1.80      kent 			return USBD_INVAL;
   1669   1.80      kent 		}
   1670   1.80      kent 		if (UE_GET_XFERTYPE(epdesc1->bmAttributes) != UE_ISOCHRONOUS) {
   1671  1.113      cube 			aprint_error_dev(sc->sc_dev,
   1672  1.113      cube 			    "invalid endpoint: bmAttributes=0x%x\n",
   1673  1.113      cube 			     epdesc1->bmAttributes);
   1674   1.80      kent 			return USBD_INVAL;
   1675   1.80      kent 		}
   1676   1.80      kent 		if (epdesc1->bEndpointAddress != ed->bSynchAddress) {
   1677  1.113      cube 			aprint_error_dev(sc->sc_dev,
   1678  1.113      cube 			    "invalid endpoint addresses: "
   1679  1.113      cube 			    "ep[0]->bSynchAddress=0x%x "
   1680  1.113      cube 			    "ep[1]->bEndpointAddress=0x%x\n",
   1681  1.113      cube 			    ed->bSynchAddress, epdesc1->bEndpointAddress);
   1682   1.80      kent 			return USBD_INVAL;
   1683   1.80      kent 		}
   1684   1.80      kent 		/* UE_GET_ADDR(epdesc1->bEndpointAddress), and epdesc1->bRefresh */
   1685   1.80      kent 	}
   1686   1.80      kent 
   1687    1.3  augustss 	format = UGETW(asid->wFormatTag);
   1688    1.1  augustss 	chan = asf1d->bNrChannels;
   1689    1.1  augustss 	prec = asf1d->bBitResolution;
   1690   1.51      kent 	if (prec != 8 && prec != 16 && prec != 24) {
   1691  1.113      cube 		aprint_error_dev(sc->sc_dev,
   1692  1.113      cube 		    "ignored setting with precision %d\n", prec);
   1693   1.94      kent 		return USBD_NORMAL_COMPLETION;
   1694    1.1  augustss 	}
   1695    1.1  augustss 	switch (format) {
   1696    1.3  augustss 	case UA_FMT_PCM:
   1697   1.51      kent 		if (prec == 8) {
   1698   1.51      kent 			sc->sc_altflags |= HAS_8;
   1699   1.51      kent 		} else if (prec == 16) {
   1700   1.51      kent 			sc->sc_altflags |= HAS_16;
   1701   1.51      kent 		} else if (prec == 24) {
   1702   1.51      kent 			sc->sc_altflags |= HAS_24;
   1703   1.51      kent 		}
   1704    1.5  augustss 		enc = AUDIO_ENCODING_SLINEAR_LE;
   1705   1.78      kent 		format_str = "pcm";
   1706    1.1  augustss 		break;
   1707    1.3  augustss 	case UA_FMT_PCM8:
   1708    1.5  augustss 		enc = AUDIO_ENCODING_ULINEAR_LE;
   1709    1.1  augustss 		sc->sc_altflags |= HAS_8U;
   1710   1.78      kent 		format_str = "pcm8";
   1711    1.1  augustss 		break;
   1712    1.3  augustss 	case UA_FMT_ALAW:
   1713    1.5  augustss 		enc = AUDIO_ENCODING_ALAW;
   1714    1.1  augustss 		sc->sc_altflags |= HAS_ALAW;
   1715   1.78      kent 		format_str = "alaw";
   1716    1.1  augustss 		break;
   1717    1.3  augustss 	case UA_FMT_MULAW:
   1718    1.5  augustss 		enc = AUDIO_ENCODING_ULAW;
   1719    1.1  augustss 		sc->sc_altflags |= HAS_MULAW;
   1720   1.78      kent 		format_str = "mulaw";
   1721    1.1  augustss 		break;
   1722   1.80      kent 	case UA_FMT_IEEE_FLOAT:
   1723    1.1  augustss 	default:
   1724  1.113      cube 		aprint_error_dev(sc->sc_dev,
   1725  1.113      cube 		    "ignored setting with format %d\n", format);
   1726   1.94      kent 		return USBD_NORMAL_COMPLETION;
   1727    1.1  augustss 	}
   1728   1.78      kent #ifdef UAUDIO_DEBUG
   1729  1.113      cube 	aprint_debug_dev(sc->sc_dev, "%s: %dch, %d/%dbit, %s,",
   1730   1.78      kent 	       dir == UE_DIR_IN ? "recording" : "playback",
   1731   1.78      kent 	       chan, prec, asf1d->bSubFrameSize * 8, format_str);
   1732   1.78      kent 	if (asf1d->bSamFreqType == UA_SAMP_CONTNUOUS) {
   1733  1.113      cube 		aprint_debug(" %d-%dHz\n", UA_SAMP_LO(asf1d),
   1734  1.113      cube 		    UA_SAMP_HI(asf1d));
   1735   1.78      kent 	} else {
   1736   1.78      kent 		int r;
   1737  1.113      cube 		aprint_debug(" %d", UA_GETSAMP(asf1d, 0));
   1738   1.78      kent 		for (r = 1; r < asf1d->bSamFreqType; r++)
   1739  1.113      cube 			aprint_debug(",%d", UA_GETSAMP(asf1d, r));
   1740  1.113      cube 		aprint_debug("Hz\n");
   1741   1.78      kent 	}
   1742   1.78      kent #endif
   1743    1.1  augustss 	ai.alt = id->bAlternateSetting;
   1744    1.1  augustss 	ai.encoding = enc;
   1745   1.50      kent 	ai.attributes = sed->bmAttributes;
   1746    1.1  augustss 	ai.idesc = id;
   1747    1.1  augustss 	ai.edesc = ed;
   1748   1.80      kent 	ai.edesc1 = epdesc1;
   1749    1.1  augustss 	ai.asf1desc = asf1d;
   1750   1.50      kent 	ai.sc_busy = 0;
   1751  1.103       mrg 	ai.aformat = NULL;
   1752  1.103       mrg 	ai.ifaceh = NULL;
   1753    1.1  augustss 	uaudio_add_alt(sc, &ai);
   1754   1.50      kent #ifdef UAUDIO_DEBUG
   1755   1.78      kent 	if (ai.attributes & UA_SED_FREQ_CONTROL)
   1756  1.122       mrg 		DPRINTFN(1, "%s", "FREQ_CONTROL\n");
   1757   1.78      kent 	if (ai.attributes & UA_SED_PITCH_CONTROL)
   1758  1.122       mrg 		DPRINTFN(1, "%s", "PITCH_CONTROL\n");
   1759   1.50      kent #endif
   1760   1.47  jdolecek 	sc->sc_mode |= (dir == UE_DIR_OUT) ? AUMODE_PLAY : AUMODE_RECORD;
   1761   1.47  jdolecek 
   1762   1.94      kent 	return USBD_NORMAL_COMPLETION;
   1763    1.1  augustss }
   1764    1.1  augustss #undef offs
   1765   1.56      kent 
   1766   1.86      kent Static usbd_status
   1767   1.78      kent uaudio_identify_as(struct uaudio_softc *sc,
   1768   1.78      kent 		   const usb_config_descriptor_t *cdesc)
   1769    1.1  augustss {
   1770   1.78      kent 	const usb_interface_descriptor_t *id;
   1771   1.99  christos 	const char *tbuf;
   1772   1.92      kent 	struct audio_format *auf;
   1773   1.92      kent 	const struct usb_audio_streaming_type1_descriptor *t1desc;
   1774    1.1  augustss 	int size, offs;
   1775   1.92      kent 	int i, j;
   1776    1.1  augustss 
   1777    1.1  augustss 	size = UGETW(cdesc->wTotalLength);
   1778   1.99  christos 	tbuf = (const char *)cdesc;
   1779    1.1  augustss 
   1780    1.1  augustss 	/* Locate the AudioStreaming interface descriptor. */
   1781    1.1  augustss 	offs = 0;
   1782   1.99  christos 	id = uaudio_find_iface(tbuf, size, &offs, UISUBCLASS_AUDIOSTREAM);
   1783    1.9  augustss 	if (id == NULL)
   1784   1.94      kent 		return USBD_INVAL;
   1785    1.1  augustss 
   1786    1.1  augustss 	/* Loop through all the alternate settings. */
   1787    1.1  augustss 	while (offs <= size) {
   1788  1.122       mrg 		DPRINTFN(2, "interface=%d offset=%d\n",
   1789  1.122       mrg 		    id->bInterfaceNumber, offs);
   1790    1.1  augustss 		switch (id->bNumEndpoints) {
   1791    1.1  augustss 		case 0:
   1792  1.122       mrg 			DPRINTFN(2, "AS null alt=%d\n",
   1793  1.122       mrg 				     id->bAlternateSetting);
   1794    1.1  augustss 			sc->sc_nullalt = id->bAlternateSetting;
   1795    1.1  augustss 			break;
   1796    1.1  augustss 		case 1:
   1797   1.80      kent #ifdef UAUDIO_MULTIPLE_ENDPOINTS
   1798   1.80      kent 		case 2:
   1799   1.80      kent #endif
   1800   1.99  christos 			uaudio_process_as(sc, tbuf, &offs, size, id);
   1801    1.1  augustss 			break;
   1802    1.1  augustss 		default:
   1803  1.113      cube 			aprint_error_dev(sc->sc_dev,
   1804  1.113      cube 			    "ignored audio interface with %d endpoints\n",
   1805  1.113      cube 			     id->bNumEndpoints);
   1806    1.1  augustss 			break;
   1807    1.1  augustss 		}
   1808   1.99  christos 		id = uaudio_find_iface(tbuf, size, &offs,UISUBCLASS_AUDIOSTREAM);
   1809    1.9  augustss 		if (id == NULL)
   1810    1.1  augustss 			break;
   1811    1.1  augustss 	}
   1812    1.1  augustss 	if (offs > size)
   1813   1.94      kent 		return USBD_INVAL;
   1814  1.122       mrg 	DPRINTF("%d alts available\n", sc->sc_nalts);
   1815   1.47  jdolecek 
   1816   1.74   mycroft 	if (sc->sc_mode == 0) {
   1817  1.113      cube 		aprint_error_dev(sc->sc_dev, "no usable endpoint found\n");
   1818   1.94      kent 		return USBD_INVAL;
   1819    1.5  augustss 	}
   1820   1.47  jdolecek 
   1821   1.92      kent 	/* build audio_format array */
   1822   1.92      kent 	sc->sc_formats = malloc(sizeof(struct audio_format) * sc->sc_nalts,
   1823   1.92      kent 				M_USBDEV, M_NOWAIT);
   1824   1.92      kent 	if (sc->sc_formats == NULL)
   1825   1.92      kent 		return USBD_NOMEM;
   1826   1.92      kent 	sc->sc_nformats = sc->sc_nalts;
   1827   1.92      kent 	for (i = 0; i < sc->sc_nalts; i++) {
   1828   1.92      kent 		auf = &sc->sc_formats[i];
   1829   1.92      kent 		t1desc = sc->sc_alts[i].asf1desc;
   1830   1.92      kent 		auf->driver_data = NULL;
   1831   1.92      kent 		if (UE_GET_DIR(sc->sc_alts[i].edesc->bEndpointAddress) == UE_DIR_OUT)
   1832   1.92      kent 			auf->mode = AUMODE_PLAY;
   1833   1.92      kent 		else
   1834   1.92      kent 			auf->mode = AUMODE_RECORD;
   1835   1.92      kent 		auf->encoding = sc->sc_alts[i].encoding;
   1836   1.93      kent 		auf->validbits = t1desc->bBitResolution;
   1837   1.93      kent 		auf->precision = t1desc->bSubFrameSize * 8;
   1838   1.92      kent 		auf->channels = t1desc->bNrChannels;
   1839   1.92      kent 		auf->channel_mask = sc->sc_channel_config;
   1840   1.92      kent 		auf->frequency_type = t1desc->bSamFreqType;
   1841   1.92      kent 		if (t1desc->bSamFreqType == UA_SAMP_CONTNUOUS) {
   1842   1.92      kent 			auf->frequency[0] = UA_SAMP_LO(t1desc);
   1843   1.92      kent 			auf->frequency[1] = UA_SAMP_HI(t1desc);
   1844   1.92      kent 		} else {
   1845   1.92      kent 			for (j = 0; j  < t1desc->bSamFreqType; j++) {
   1846   1.92      kent 				if (j >= AUFMT_MAX_FREQUENCIES) {
   1847  1.113      cube 					aprint_error("%s: please increase "
   1848   1.92      kent 					       "AUFMT_MAX_FREQUENCIES to %d\n",
   1849   1.92      kent 					       __func__, t1desc->bSamFreqType);
   1850   1.92      kent 					break;
   1851   1.92      kent 				}
   1852  1.130    bouyer 				if (j >= 2) {
   1853  1.130    bouyer 					aprint_error("%s: too much tSamFreq: "
   1854  1.130    bouyer 					       "%d\n",
   1855  1.130    bouyer 					       __func__, t1desc->bSamFreqType);
   1856  1.130    bouyer 					break;
   1857  1.130    bouyer 				}
   1858   1.92      kent 				auf->frequency[j] = UA_GETSAMP(t1desc, j);
   1859   1.92      kent 			}
   1860   1.92      kent 		}
   1861   1.92      kent 		sc->sc_alts[i].aformat = auf;
   1862   1.92      kent 	}
   1863   1.92      kent 
   1864   1.92      kent 	if (0 != auconv_create_encodings(sc->sc_formats, sc->sc_nformats,
   1865   1.92      kent 					 &sc->sc_encodings)) {
   1866   1.92      kent 		free(sc->sc_formats, M_DEVBUF);
   1867   1.92      kent 		sc->sc_formats = NULL;
   1868   1.92      kent 		return ENOMEM;
   1869   1.92      kent 	}
   1870   1.92      kent 
   1871   1.94      kent 	return USBD_NORMAL_COMPLETION;
   1872    1.1  augustss }
   1873    1.1  augustss 
   1874   1.86      kent Static usbd_status
   1875   1.78      kent uaudio_identify_ac(struct uaudio_softc *sc, const usb_config_descriptor_t *cdesc)
   1876    1.1  augustss {
   1877   1.82      kent 	struct io_terminal* iot;
   1878   1.78      kent 	const usb_interface_descriptor_t *id;
   1879   1.78      kent 	const struct usb_audio_control_descriptor *acdp;
   1880  1.109  drochner 	const uaudio_cs_descriptor_t *dp;
   1881   1.82      kent 	const struct usb_audio_output_terminal *pot;
   1882   1.82      kent 	struct terminal_list *tml;
   1883   1.99  christos 	const char *tbuf, *ibuf, *ibufend;
   1884  1.120  jakllsch 	int size, offs, ndps, i, j;
   1885    1.1  augustss 
   1886    1.1  augustss 	size = UGETW(cdesc->wTotalLength);
   1887   1.99  christos 	tbuf = (const char *)cdesc;
   1888    1.1  augustss 
   1889    1.1  augustss 	/* Locate the AudioControl interface descriptor. */
   1890    1.1  augustss 	offs = 0;
   1891   1.99  christos 	id = uaudio_find_iface(tbuf, size, &offs, UISUBCLASS_AUDIOCONTROL);
   1892   1.14  augustss 	if (id == NULL)
   1893   1.94      kent 		return USBD_INVAL;
   1894    1.1  augustss 	if (offs + sizeof *acdp > size)
   1895   1.94      kent 		return USBD_INVAL;
   1896    1.1  augustss 	sc->sc_ac_iface = id->bInterfaceNumber;
   1897  1.122       mrg 	DPRINTFN(2,"AC interface is %d\n", sc->sc_ac_iface);
   1898    1.1  augustss 
   1899    1.1  augustss 	/* A class-specific AC interface header should follow. */
   1900   1.99  christos 	ibuf = tbuf + offs;
   1901  1.120  jakllsch 	ibufend = tbuf + size;
   1902   1.78      kent 	acdp = (const struct usb_audio_control_descriptor *)ibuf;
   1903    1.1  augustss 	if (acdp->bDescriptorType != UDESC_CS_INTERFACE ||
   1904    1.1  augustss 	    acdp->bDescriptorSubtype != UDESCSUB_AC_HEADER)
   1905   1.94      kent 		return USBD_INVAL;
   1906    1.5  augustss 
   1907    1.1  augustss 	if (!(usbd_get_quirks(sc->sc_udev)->uq_flags & UQ_BAD_ADC) &&
   1908    1.1  augustss 	     UGETW(acdp->bcdADC) != UAUDIO_VERSION)
   1909   1.94      kent 		return USBD_INVAL;
   1910    1.1  augustss 
   1911    1.7  augustss 	sc->sc_audio_rev = UGETW(acdp->bcdADC);
   1912  1.122       mrg 	DPRINTFN(2, "found AC header, vers=%03x\n", sc->sc_audio_rev);
   1913    1.1  augustss 
   1914    1.1  augustss 	sc->sc_nullalt = -1;
   1915    1.1  augustss 
   1916    1.1  augustss 	/* Scan through all the AC specific descriptors */
   1917  1.109  drochner 	dp = (const uaudio_cs_descriptor_t *)ibuf;
   1918    1.1  augustss 	ndps = 0;
   1919   1.82      kent 	iot = malloc(sizeof(struct io_terminal) * 256, M_TEMP, M_NOWAIT | M_ZERO);
   1920   1.82      kent 	if (iot == NULL) {
   1921  1.113      cube 		aprint_error("%s: no memory\n", __func__);
   1922   1.82      kent 		return USBD_NOMEM;
   1923   1.82      kent 	}
   1924    1.1  augustss 	for (;;) {
   1925    1.1  augustss 		ibuf += dp->bLength;
   1926    1.1  augustss 		if (ibuf >= ibufend)
   1927    1.1  augustss 			break;
   1928  1.109  drochner 		dp = (const uaudio_cs_descriptor_t *)ibuf;
   1929   1.97    martin 		if (ibuf + dp->bLength > ibufend) {
   1930   1.97    martin 			free(iot, M_TEMP);
   1931   1.94      kent 			return USBD_INVAL;
   1932   1.97    martin 		}
   1933  1.120  jakllsch 		if (dp->bDescriptorType != UDESC_CS_INTERFACE)
   1934  1.120  jakllsch 			break;
   1935   1.82      kent 		i = ((const struct usb_audio_input_terminal *)dp)->bTerminalId;
   1936   1.82      kent 		iot[i].d.desc = dp;
   1937    1.1  augustss 		if (i > ndps)
   1938    1.1  augustss 			ndps = i;
   1939    1.1  augustss 	}
   1940    1.1  augustss 	ndps++;
   1941    1.1  augustss 
   1942   1.82      kent 	/* construct io_terminal */
   1943   1.82      kent 	for (i = 0; i < ndps; i++) {
   1944   1.82      kent 		dp = iot[i].d.desc;
   1945   1.82      kent 		if (dp == NULL)
   1946   1.82      kent 			continue;
   1947   1.82      kent 		if (dp->bDescriptorSubtype != UDESCSUB_AC_OUTPUT)
   1948   1.82      kent 			continue;
   1949   1.82      kent 		pot = iot[i].d.ot;
   1950   1.82      kent 		tml = uaudio_io_terminaltype(UGETW(pot->wTerminalType), iot, i);
   1951   1.82      kent 		if (tml != NULL)
   1952   1.82      kent 			free(tml, M_TEMP);
   1953   1.82      kent 	}
   1954   1.82      kent 
   1955   1.82      kent #ifdef UAUDIO_DEBUG
   1956   1.82      kent 	for (i = 0; i < 256; i++) {
   1957   1.91      kent 		struct usb_audio_cluster cluster;
   1958   1.91      kent 
   1959   1.82      kent 		if (iot[i].d.desc == NULL)
   1960   1.82      kent 			continue;
   1961  1.118    dyoung 		printf("id %d:\t", i);
   1962   1.82      kent 		switch (iot[i].d.desc->bDescriptorSubtype) {
   1963   1.82      kent 		case UDESCSUB_AC_INPUT:
   1964  1.118    dyoung 			printf("AC_INPUT type=%s\n", uaudio_get_terminal_name
   1965   1.89      kent 				  (UGETW(iot[i].d.it->wTerminalType)));
   1966  1.118    dyoung 			printf("\t");
   1967   1.91      kent 			cluster = uaudio_get_cluster(i, iot);
   1968   1.91      kent 			uaudio_dump_cluster(&cluster);
   1969  1.118    dyoung 			printf("\n");
   1970   1.82      kent 			break;
   1971   1.82      kent 		case UDESCSUB_AC_OUTPUT:
   1972  1.118    dyoung 			printf("AC_OUTPUT type=%s ", uaudio_get_terminal_name
   1973   1.89      kent 				  (UGETW(iot[i].d.ot->wTerminalType)));
   1974  1.118    dyoung 			printf("src=%d\n", iot[i].d.ot->bSourceId);
   1975   1.82      kent 			break;
   1976   1.82      kent 		case UDESCSUB_AC_MIXER:
   1977  1.118    dyoung 			printf("AC_MIXER src=");
   1978   1.82      kent 			for (j = 0; j < iot[i].d.mu->bNrInPins; j++)
   1979  1.118    dyoung 				printf("%d ", iot[i].d.mu->baSourceId[j]);
   1980  1.118    dyoung 			printf("\n\t");
   1981   1.91      kent 			cluster = uaudio_get_cluster(i, iot);
   1982   1.91      kent 			uaudio_dump_cluster(&cluster);
   1983  1.118    dyoung 			printf("\n");
   1984   1.82      kent 			break;
   1985   1.82      kent 		case UDESCSUB_AC_SELECTOR:
   1986  1.118    dyoung 			printf("AC_SELECTOR src=");
   1987   1.82      kent 			for (j = 0; j < iot[i].d.su->bNrInPins; j++)
   1988  1.118    dyoung 				printf("%d ", iot[i].d.su->baSourceId[j]);
   1989  1.118    dyoung 			printf("\n");
   1990   1.82      kent 			break;
   1991   1.82      kent 		case UDESCSUB_AC_FEATURE:
   1992  1.118    dyoung 			printf("AC_FEATURE src=%d\n", iot[i].d.fu->bSourceId);
   1993   1.82      kent 			break;
   1994   1.82      kent 		case UDESCSUB_AC_PROCESSING:
   1995  1.118    dyoung 			printf("AC_PROCESSING src=");
   1996   1.82      kent 			for (j = 0; j < iot[i].d.pu->bNrInPins; j++)
   1997  1.118    dyoung 				printf("%d ", iot[i].d.pu->baSourceId[j]);
   1998  1.118    dyoung 			printf("\n\t");
   1999   1.91      kent 			cluster = uaudio_get_cluster(i, iot);
   2000   1.91      kent 			uaudio_dump_cluster(&cluster);
   2001  1.118    dyoung 			printf("\n");
   2002   1.82      kent 			break;
   2003   1.82      kent 		case UDESCSUB_AC_EXTENSION:
   2004  1.118    dyoung 			printf("AC_EXTENSION src=");
   2005   1.82      kent 			for (j = 0; j < iot[i].d.eu->bNrInPins; j++)
   2006  1.118    dyoung 				printf("%d ", iot[i].d.eu->baSourceId[j]);
   2007  1.118    dyoung 			printf("\n\t");
   2008   1.91      kent 			cluster = uaudio_get_cluster(i, iot);
   2009   1.91      kent 			uaudio_dump_cluster(&cluster);
   2010  1.118    dyoung 			printf("\n");
   2011   1.82      kent 			break;
   2012   1.82      kent 		default:
   2013  1.118    dyoung 			printf("unknown audio control (subtype=%d)\n",
   2014   1.89      kent 				  iot[i].d.desc->bDescriptorSubtype);
   2015   1.82      kent 		}
   2016   1.82      kent 		for (j = 0; j < iot[i].inputs_size; j++) {
   2017   1.82      kent 			int k;
   2018  1.118    dyoung 			printf("\tinput%d: ", j);
   2019   1.82      kent 			tml = iot[i].inputs[j];
   2020   1.82      kent 			if (tml == NULL) {
   2021  1.118    dyoung 				printf("NULL\n");
   2022   1.82      kent 				continue;
   2023   1.82      kent 			}
   2024   1.82      kent 			for (k = 0; k < tml->size; k++)
   2025  1.118    dyoung 				printf("%s ", uaudio_get_terminal_name
   2026   1.89      kent 					  (tml->terminals[k]));
   2027  1.118    dyoung 			printf("\n");
   2028   1.82      kent 		}
   2029  1.118    dyoung 		printf("\toutput: ");
   2030   1.82      kent 		tml = iot[i].output;
   2031   1.82      kent 		for (j = 0; j < tml->size; j++)
   2032  1.118    dyoung 			printf("%s ", uaudio_get_terminal_name(tml->terminals[j]));
   2033  1.118    dyoung 		printf("\n");
   2034   1.82      kent 	}
   2035   1.82      kent #endif
   2036   1.82      kent 
   2037    1.1  augustss 	for (i = 0; i < ndps; i++) {
   2038   1.82      kent 		dp = iot[i].d.desc;
   2039   1.14  augustss 		if (dp == NULL)
   2040    1.1  augustss 			continue;
   2041  1.122       mrg 		DPRINTF("id=%d subtype=%d\n", i, dp->bDescriptorSubtype);
   2042    1.1  augustss 		switch (dp->bDescriptorSubtype) {
   2043    1.1  augustss 		case UDESCSUB_AC_HEADER:
   2044  1.113      cube 			aprint_error("uaudio_identify_ac: unexpected AC header\n");
   2045    1.1  augustss 			break;
   2046    1.1  augustss 		case UDESCSUB_AC_INPUT:
   2047   1.82      kent 			uaudio_add_input(sc, iot, i);
   2048    1.1  augustss 			break;
   2049    1.1  augustss 		case UDESCSUB_AC_OUTPUT:
   2050   1.82      kent 			uaudio_add_output(sc, iot, i);
   2051    1.1  augustss 			break;
   2052    1.1  augustss 		case UDESCSUB_AC_MIXER:
   2053   1.82      kent 			uaudio_add_mixer(sc, iot, i);
   2054    1.1  augustss 			break;
   2055    1.1  augustss 		case UDESCSUB_AC_SELECTOR:
   2056   1.82      kent 			uaudio_add_selector(sc, iot, i);
   2057    1.1  augustss 			break;
   2058    1.1  augustss 		case UDESCSUB_AC_FEATURE:
   2059   1.82      kent 			uaudio_add_feature(sc, iot, i);
   2060    1.1  augustss 			break;
   2061    1.1  augustss 		case UDESCSUB_AC_PROCESSING:
   2062   1.82      kent 			uaudio_add_processing(sc, iot, i);
   2063    1.1  augustss 			break;
   2064    1.1  augustss 		case UDESCSUB_AC_EXTENSION:
   2065   1.82      kent 			uaudio_add_extension(sc, iot, i);
   2066    1.1  augustss 			break;
   2067    1.1  augustss 		default:
   2068  1.113      cube 			aprint_error(
   2069  1.113      cube 			    "uaudio_identify_ac: bad AC desc subtype=0x%02x\n",
   2070  1.113      cube 			    dp->bDescriptorSubtype);
   2071    1.1  augustss 			break;
   2072    1.1  augustss 		}
   2073    1.1  augustss 	}
   2074   1.82      kent 
   2075   1.82      kent 	/* delete io_terminal */
   2076   1.82      kent 	for (i = 0; i < 256; i++) {
   2077   1.82      kent 		if (iot[i].d.desc == NULL)
   2078   1.82      kent 			continue;
   2079   1.82      kent 		if (iot[i].inputs != NULL) {
   2080   1.82      kent 			for (j = 0; j < iot[i].inputs_size; j++) {
   2081   1.82      kent 				if (iot[i].inputs[j] != NULL)
   2082   1.82      kent 					free(iot[i].inputs[j], M_TEMP);
   2083   1.82      kent 			}
   2084   1.82      kent 			free(iot[i].inputs, M_TEMP);
   2085   1.82      kent 		}
   2086   1.82      kent 		if (iot[i].output != NULL)
   2087   1.82      kent 			free(iot[i].output, M_TEMP);
   2088   1.82      kent 		iot[i].d.desc = NULL;
   2089   1.82      kent 	}
   2090   1.82      kent 	free(iot, M_TEMP);
   2091   1.82      kent 
   2092   1.94      kent 	return USBD_NORMAL_COMPLETION;
   2093    1.1  augustss }
   2094    1.1  augustss 
   2095   1.86      kent Static int
   2096   1.26  augustss uaudio_query_devinfo(void *addr, mixer_devinfo_t *mi)
   2097    1.1  augustss {
   2098   1.94      kent 	struct uaudio_softc *sc;
   2099    1.1  augustss 	struct mixerctl *mc;
   2100   1.79      kent 	int n, nctls, i;
   2101    1.1  augustss 
   2102  1.122       mrg 	DPRINTFN(2, "index=%d\n", mi->index);
   2103   1.94      kent 	sc = addr;
   2104    1.1  augustss 	if (sc->sc_dying)
   2105   1.94      kent 		return EIO;
   2106   1.56      kent 
   2107    1.1  augustss 	n = mi->index;
   2108    1.1  augustss 	nctls = sc->sc_nctls;
   2109    1.1  augustss 
   2110   1.63  augustss 	switch (n) {
   2111   1.63  augustss 	case UAC_OUTPUT:
   2112   1.63  augustss 		mi->type = AUDIO_MIXER_CLASS;
   2113   1.63  augustss 		mi->mixer_class = UAC_OUTPUT;
   2114   1.63  augustss 		mi->next = mi->prev = AUDIO_MIXER_LAST;
   2115   1.71    itojun 		strlcpy(mi->label.name, AudioCoutputs, sizeof(mi->label.name));
   2116   1.94      kent 		return 0;
   2117   1.63  augustss 	case UAC_INPUT:
   2118   1.63  augustss 		mi->type = AUDIO_MIXER_CLASS;
   2119   1.63  augustss 		mi->mixer_class = UAC_INPUT;
   2120   1.63  augustss 		mi->next = mi->prev = AUDIO_MIXER_LAST;
   2121   1.71    itojun 		strlcpy(mi->label.name, AudioCinputs, sizeof(mi->label.name));
   2122   1.94      kent 		return 0;
   2123   1.63  augustss 	case UAC_EQUAL:
   2124   1.63  augustss 		mi->type = AUDIO_MIXER_CLASS;
   2125   1.63  augustss 		mi->mixer_class = UAC_EQUAL;
   2126   1.63  augustss 		mi->next = mi->prev = AUDIO_MIXER_LAST;
   2127   1.71    itojun 		strlcpy(mi->label.name, AudioCequalization,
   2128   1.71    itojun 		    sizeof(mi->label.name));
   2129   1.94      kent 		return 0;
   2130   1.82      kent 	case UAC_RECORD:
   2131   1.82      kent 		mi->type = AUDIO_MIXER_CLASS;
   2132   1.82      kent 		mi->mixer_class = UAC_RECORD;
   2133   1.82      kent 		mi->next = mi->prev = AUDIO_MIXER_LAST;
   2134   1.82      kent 		strlcpy(mi->label.name, AudioCrecord, sizeof(mi->label.name));
   2135   1.82      kent 		return 0;
   2136   1.63  augustss 	default:
   2137   1.63  augustss 		break;
   2138    1.1  augustss 	}
   2139   1.63  augustss 
   2140   1.63  augustss 	n -= UAC_NCLASSES;
   2141   1.63  augustss 	if (n < 0 || n >= nctls)
   2142   1.94      kent 		return ENXIO;
   2143   1.63  augustss 
   2144    1.1  augustss 	mc = &sc->sc_ctls[n];
   2145   1.71    itojun 	strlcpy(mi->label.name, mc->ctlname, sizeof(mi->label.name));
   2146    1.1  augustss 	mi->mixer_class = mc->class;
   2147    1.1  augustss 	mi->next = mi->prev = AUDIO_MIXER_LAST;	/* XXX */
   2148    1.1  augustss 	switch (mc->type) {
   2149    1.1  augustss 	case MIX_ON_OFF:
   2150    1.1  augustss 		mi->type = AUDIO_MIXER_ENUM;
   2151    1.1  augustss 		mi->un.e.num_mem = 2;
   2152   1.71    itojun 		strlcpy(mi->un.e.member[0].label.name, AudioNoff,
   2153   1.71    itojun 		    sizeof(mi->un.e.member[0].label.name));
   2154    1.1  augustss 		mi->un.e.member[0].ord = 0;
   2155   1.71    itojun 		strlcpy(mi->un.e.member[1].label.name, AudioNon,
   2156   1.71    itojun 		    sizeof(mi->un.e.member[1].label.name));
   2157    1.1  augustss 		mi->un.e.member[1].ord = 1;
   2158    1.1  augustss 		break;
   2159   1.79      kent 	case MIX_SELECTOR:
   2160   1.79      kent 		mi->type = AUDIO_MIXER_ENUM;
   2161   1.79      kent 		mi->un.e.num_mem = mc->maxval - mc->minval + 1;
   2162   1.79      kent 		for (i = 0; i <= mc->maxval - mc->minval; i++) {
   2163   1.79      kent 			snprintf(mi->un.e.member[i].label.name,
   2164   1.79      kent 				 sizeof(mi->un.e.member[i].label.name),
   2165   1.79      kent 				 "%d", i + mc->minval);
   2166   1.79      kent 			mi->un.e.member[i].ord = i + mc->minval;
   2167   1.79      kent 		}
   2168   1.79      kent 		break;
   2169    1.1  augustss 	default:
   2170    1.1  augustss 		mi->type = AUDIO_MIXER_VALUE;
   2171    1.1  augustss 		strncpy(mi->un.v.units.name, mc->ctlunit, MAX_AUDIO_DEV_LEN);
   2172    1.1  augustss 		mi->un.v.num_channels = mc->nchan;
   2173   1.33  augustss 		mi->un.v.delta = mc->delta;
   2174    1.1  augustss 		break;
   2175    1.1  augustss 	}
   2176   1.94      kent 	return 0;
   2177    1.1  augustss }
   2178    1.1  augustss 
   2179   1.86      kent Static int
   2180   1.26  augustss uaudio_open(void *addr, int flags)
   2181    1.1  augustss {
   2182   1.94      kent 	struct uaudio_softc *sc;
   2183    1.1  augustss 
   2184   1.95   dsainty 	sc = addr;
   2185  1.122       mrg 	DPRINTF("sc=%p\n", sc);
   2186    1.1  augustss 	if (sc->sc_dying)
   2187   1.94      kent 		return EIO;
   2188    1.1  augustss 
   2189   1.77   mycroft 	if ((flags & FWRITE) && !(sc->sc_mode & AUMODE_PLAY))
   2190   1.94      kent 		return EACCES;
   2191   1.77   mycroft 	if ((flags & FREAD) && !(sc->sc_mode & AUMODE_RECORD))
   2192   1.94      kent 		return EACCES;
   2193    1.1  augustss 
   2194   1.94      kent 	return 0;
   2195    1.1  augustss }
   2196    1.1  augustss 
   2197    1.1  augustss /*
   2198    1.1  augustss  * Close function is called at splaudio().
   2199    1.1  augustss  */
   2200   1.86      kent Static void
   2201  1.107  christos uaudio_close(void *addr)
   2202    1.1  augustss {
   2203    1.1  augustss }
   2204    1.1  augustss 
   2205   1.86      kent Static int
   2206   1.26  augustss uaudio_drain(void *addr)
   2207    1.1  augustss {
   2208  1.121  jmcneill 	struct uaudio_softc *sc = addr;
   2209  1.121  jmcneill 
   2210  1.121  jmcneill 	KASSERT(mutex_owned(&sc->sc_intr_lock));
   2211    1.1  augustss 
   2212  1.121  jmcneill 	kpause("uaudiodr", false,
   2213  1.121  jmcneill 	    mstohz(UAUDIO_NCHANBUFS * UAUDIO_NFRAMES), &sc->sc_intr_lock);
   2214    1.1  augustss 
   2215   1.94      kent 	return 0;
   2216    1.1  augustss }
   2217    1.1  augustss 
   2218   1.86      kent Static int
   2219   1.26  augustss uaudio_halt_out_dma(void *addr)
   2220    1.1  augustss {
   2221  1.121  jmcneill 	struct uaudio_softc *sc = addr;
   2222    1.1  augustss 
   2223  1.122       mrg 	DPRINTF("%s", "enter\n");
   2224  1.121  jmcneill 
   2225  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2226  1.121  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
   2227   1.47  jdolecek 	if (sc->sc_playchan.pipe != NULL) {
   2228   1.47  jdolecek 		uaudio_chan_close(sc, &sc->sc_playchan);
   2229   1.47  jdolecek 		sc->sc_playchan.pipe = NULL;
   2230   1.47  jdolecek 		uaudio_chan_free_buffers(sc, &sc->sc_playchan);
   2231   1.74   mycroft 		sc->sc_playchan.intr = NULL;
   2232    1.1  augustss 	}
   2233  1.121  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
   2234  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2235  1.121  jmcneill 
   2236   1.94      kent 	return 0;
   2237    1.1  augustss }
   2238    1.1  augustss 
   2239   1.86      kent Static int
   2240   1.26  augustss uaudio_halt_in_dma(void *addr)
   2241    1.1  augustss {
   2242  1.121  jmcneill 	struct uaudio_softc *sc = addr;
   2243    1.1  augustss 
   2244  1.122       mrg 	DPRINTF("%s", "enter\n");
   2245  1.121  jmcneill 
   2246  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2247  1.121  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
   2248   1.47  jdolecek 	if (sc->sc_recchan.pipe != NULL) {
   2249   1.47  jdolecek 		uaudio_chan_close(sc, &sc->sc_recchan);
   2250   1.47  jdolecek 		sc->sc_recchan.pipe = NULL;
   2251   1.47  jdolecek 		uaudio_chan_free_buffers(sc, &sc->sc_recchan);
   2252   1.74   mycroft 		sc->sc_recchan.intr = NULL;
   2253    1.5  augustss 	}
   2254  1.121  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
   2255  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2256  1.121  jmcneill 
   2257   1.94      kent 	return 0;
   2258    1.1  augustss }
   2259    1.1  augustss 
   2260   1.86      kent Static int
   2261   1.26  augustss uaudio_getdev(void *addr, struct audio_device *retp)
   2262    1.1  augustss {
   2263   1.94      kent 	struct uaudio_softc *sc;
   2264    1.1  augustss 
   2265  1.122       mrg 	DPRINTF("%s", "\n");
   2266   1.94      kent 	sc = addr;
   2267    1.1  augustss 	if (sc->sc_dying)
   2268   1.94      kent 		return EIO;
   2269   1.56      kent 
   2270  1.119  jmcneill 	*retp = sc->sc_adev;
   2271   1.94      kent 	return 0;
   2272    1.1  augustss }
   2273    1.1  augustss 
   2274    1.1  augustss /*
   2275    1.1  augustss  * Make sure the block size is large enough to hold all outstanding transfers.
   2276    1.1  augustss  */
   2277   1.86      kent Static int
   2278   1.93      kent uaudio_round_blocksize(void *addr, int blk,
   2279   1.93      kent 		       int mode, const audio_params_t *param)
   2280    1.1  augustss {
   2281   1.94      kent 	struct uaudio_softc *sc;
   2282   1.96      kent 	int b;
   2283    1.1  augustss 
   2284   1.94      kent 	sc = addr;
   2285  1.122       mrg 	DPRINTF("blk=%d mode=%s\n", blk,
   2286  1.122       mrg 	    mode == AUMODE_PLAY ? "AUMODE_PLAY" : "AUMODE_RECORD");
   2287   1.96      kent 
   2288   1.96      kent 	/* chan.bytes_per_frame can be 0. */
   2289   1.96      kent 	if (mode == AUMODE_PLAY || sc->sc_recchan.bytes_per_frame <= 0) {
   2290   1.96      kent 		b = param->sample_rate * UAUDIO_NFRAMES * UAUDIO_NCHANBUFS;
   2291   1.96      kent 
   2292   1.96      kent 		/*
   2293   1.96      kent 		 * This does not make accurate value in the case
   2294   1.96      kent 		 * of b % USB_FRAMES_PER_SECOND != 0
   2295   1.96      kent 		 */
   2296   1.96      kent 		b /= USB_FRAMES_PER_SECOND;
   2297   1.96      kent 
   2298   1.96      kent 		b *= param->precision / 8 * param->channels;
   2299   1.47  jdolecek 	} else {
   2300   1.96      kent 		/*
   2301   1.96      kent 		 * use wMaxPacketSize in bytes_per_frame.
   2302   1.96      kent 		 * See uaudio_set_params() and uaudio_chan_init()
   2303   1.96      kent 		 */
   2304   1.96      kent 		b = sc->sc_recchan.bytes_per_frame
   2305   1.96      kent 		    * UAUDIO_NFRAMES * UAUDIO_NCHANBUFS;
   2306   1.47  jdolecek 	}
   2307    1.1  augustss 
   2308   1.96      kent 	if (b <= 0)
   2309   1.96      kent 		b = 1;
   2310   1.96      kent 	blk = blk <= b ? b : blk / b * b;
   2311    1.1  augustss 
   2312    1.5  augustss #ifdef DIAGNOSTIC
   2313    1.5  augustss 	if (blk <= 0) {
   2314  1.113      cube 		aprint_debug("uaudio_round_blocksize: blk=%d\n", blk);
   2315    1.5  augustss 		blk = 512;
   2316    1.5  augustss 	}
   2317    1.5  augustss #endif
   2318    1.5  augustss 
   2319  1.122       mrg 	DPRINTF("resultant blk=%d\n", blk);
   2320   1.94      kent 	return blk;
   2321    1.1  augustss }
   2322    1.1  augustss 
   2323   1.86      kent Static int
   2324  1.107  christos uaudio_get_props(void *addr)
   2325    1.1  augustss {
   2326   1.94      kent 	return AUDIO_PROP_FULLDUPLEX | AUDIO_PROP_INDEPENDENT;
   2327    1.1  augustss 
   2328    1.1  augustss }
   2329    1.1  augustss 
   2330  1.121  jmcneill Static void
   2331  1.121  jmcneill uaudio_get_locks(void *addr, kmutex_t **intr, kmutex_t **thread)
   2332  1.121  jmcneill {
   2333  1.121  jmcneill 	struct uaudio_softc *sc;
   2334  1.121  jmcneill 
   2335  1.121  jmcneill 	sc = addr;
   2336  1.121  jmcneill 	*intr = &sc->sc_intr_lock;
   2337  1.121  jmcneill 	*thread = &sc->sc_lock;
   2338  1.121  jmcneill }
   2339  1.121  jmcneill 
   2340   1.86      kent Static int
   2341   1.27  augustss uaudio_get(struct uaudio_softc *sc, int which, int type, int wValue,
   2342   1.26  augustss 	   int wIndex, int len)
   2343    1.1  augustss {
   2344    1.1  augustss 	usb_device_request_t req;
   2345    1.1  augustss 	u_int8_t data[4];
   2346    1.9  augustss 	usbd_status err;
   2347    1.1  augustss 	int val;
   2348    1.1  augustss 
   2349    1.1  augustss 	if (wValue == -1)
   2350   1.94      kent 		return 0;
   2351    1.1  augustss 
   2352    1.1  augustss 	req.bmRequestType = type;
   2353    1.1  augustss 	req.bRequest = which;
   2354    1.1  augustss 	USETW(req.wValue, wValue);
   2355    1.1  augustss 	USETW(req.wIndex, wIndex);
   2356    1.1  augustss 	USETW(req.wLength, len);
   2357  1.122       mrg 	DPRINTFN(2,"type=0x%02x req=0x%02x wValue=0x%04x "
   2358   1.56      kent 		    "wIndex=0x%04x len=%d\n",
   2359  1.122       mrg 		    type, which, wValue, wIndex, len);
   2360   1.47  jdolecek 	err = usbd_do_request(sc->sc_udev, &req, data);
   2361    1.9  augustss 	if (err) {
   2362  1.122       mrg 		DPRINTF("err=%s\n", usbd_errstr(err));
   2363   1.94      kent 		return -1;
   2364    1.1  augustss 	}
   2365    1.1  augustss 	switch (len) {
   2366    1.1  augustss 	case 1:
   2367    1.1  augustss 		val = data[0];
   2368    1.1  augustss 		break;
   2369    1.1  augustss 	case 2:
   2370    1.1  augustss 		val = data[0] | (data[1] << 8);
   2371    1.1  augustss 		break;
   2372    1.1  augustss 	default:
   2373  1.122       mrg 		DPRINTF("bad length=%d\n", len);
   2374   1.94      kent 		return -1;
   2375    1.1  augustss 	}
   2376  1.122       mrg 	DPRINTFN(2,"val=%d\n", val);
   2377   1.94      kent 	return val;
   2378    1.1  augustss }
   2379    1.1  augustss 
   2380   1.86      kent Static void
   2381   1.27  augustss uaudio_set(struct uaudio_softc *sc, int which, int type, int wValue,
   2382   1.26  augustss 	   int wIndex, int len, int val)
   2383    1.1  augustss {
   2384    1.1  augustss 	usb_device_request_t req;
   2385    1.1  augustss 	u_int8_t data[4];
   2386    1.9  augustss 	usbd_status err;
   2387    1.1  augustss 
   2388    1.1  augustss 	if (wValue == -1)
   2389    1.1  augustss 		return;
   2390    1.1  augustss 
   2391    1.1  augustss 	req.bmRequestType = type;
   2392    1.1  augustss 	req.bRequest = which;
   2393    1.1  augustss 	USETW(req.wValue, wValue);
   2394    1.1  augustss 	USETW(req.wIndex, wIndex);
   2395    1.1  augustss 	USETW(req.wLength, len);
   2396    1.1  augustss 	switch (len) {
   2397    1.1  augustss 	case 1:
   2398    1.1  augustss 		data[0] = val;
   2399    1.1  augustss 		break;
   2400    1.1  augustss 	case 2:
   2401    1.1  augustss 		data[0] = val;
   2402    1.1  augustss 		data[1] = val >> 8;
   2403    1.1  augustss 		break;
   2404    1.1  augustss 	default:
   2405    1.1  augustss 		return;
   2406    1.1  augustss 	}
   2407  1.122       mrg 	DPRINTFN(2,"type=0x%02x req=0x%02x wValue=0x%04x "
   2408   1.56      kent 		    "wIndex=0x%04x len=%d, val=%d\n",
   2409  1.122       mrg 		    type, which, wValue, wIndex, len, val & 0xffff);
   2410   1.47  jdolecek 	err = usbd_do_request(sc->sc_udev, &req, data);
   2411    1.4  augustss #ifdef UAUDIO_DEBUG
   2412   1.12  augustss 	if (err)
   2413  1.122       mrg 		DPRINTF("err=%d\n", err);
   2414    1.1  augustss #endif
   2415    1.1  augustss }
   2416    1.1  augustss 
   2417   1.86      kent Static int
   2418   1.26  augustss uaudio_signext(int type, int val)
   2419    1.1  augustss {
   2420    1.1  augustss 	if (!MIX_UNSIGNED(type)) {
   2421    1.1  augustss 		if (MIX_SIZE(type) == 2)
   2422    1.1  augustss 			val = (int16_t)val;
   2423    1.1  augustss 		else
   2424    1.1  augustss 			val = (int8_t)val;
   2425    1.1  augustss 	}
   2426   1.94      kent 	return val;
   2427    1.1  augustss }
   2428    1.1  augustss 
   2429   1.86      kent Static int
   2430   1.26  augustss uaudio_value2bsd(struct mixerctl *mc, int val)
   2431    1.1  augustss {
   2432  1.122       mrg 	DPRINTFN(5, "type=%03x val=%d min=%d max=%d ",
   2433  1.122       mrg 		     mc->type, val, mc->minval, mc->maxval);
   2434   1.79      kent 	if (mc->type == MIX_ON_OFF) {
   2435   1.47  jdolecek 		val = (val != 0);
   2436   1.79      kent 	} else if (mc->type == MIX_SELECTOR) {
   2437   1.79      kent 		if (val < mc->minval || val > mc->maxval)
   2438   1.79      kent 			val = mc->minval;
   2439   1.79      kent 	} else
   2440   1.69       wiz 		val = ((uaudio_signext(mc->type, val) - mc->minval) * 255
   2441   1.34  augustss 			+ mc->mul/2) / mc->mul;
   2442  1.122       mrg 	DPRINTFN_CLEAN(5, "val'=%d\n", val);
   2443   1.94      kent 	return val;
   2444    1.1  augustss }
   2445    1.1  augustss 
   2446    1.1  augustss int
   2447   1.26  augustss uaudio_bsd2value(struct mixerctl *mc, int val)
   2448    1.1  augustss {
   2449  1.122       mrg 	DPRINTFN(5,"type=%03x val=%d min=%d max=%d ",
   2450  1.122       mrg 		    mc->type, val, mc->minval, mc->maxval);
   2451   1.79      kent 	if (mc->type == MIX_ON_OFF) {
   2452   1.47  jdolecek 		val = (val != 0);
   2453   1.79      kent 	} else if (mc->type == MIX_SELECTOR) {
   2454   1.79      kent 		if (val < mc->minval || val > mc->maxval)
   2455   1.79      kent 			val = mc->minval;
   2456   1.79      kent 	} else
   2457   1.69       wiz 		val = (val + mc->delta/2) * mc->mul / 255 + mc->minval;
   2458  1.122       mrg 	DPRINTFN_CLEAN(5, "val'=%d\n", val);
   2459   1.94      kent 	return val;
   2460    1.1  augustss }
   2461    1.1  augustss 
   2462   1.86      kent Static int
   2463   1.56      kent uaudio_ctl_get(struct uaudio_softc *sc, int which, struct mixerctl *mc,
   2464   1.26  augustss 	       int chan)
   2465    1.1  augustss {
   2466    1.1  augustss 	int val;
   2467    1.1  augustss 
   2468  1.122       mrg 	DPRINTFN(5,"which=%d chan=%d\n", which, chan);
   2469  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2470    1.1  augustss 	val = uaudio_get(sc, which, UT_READ_CLASS_INTERFACE, mc->wValue[chan],
   2471    1.1  augustss 			 mc->wIndex, MIX_SIZE(mc->type));
   2472  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2473   1.94      kent 	return uaudio_value2bsd(mc, val);
   2474    1.1  augustss }
   2475    1.1  augustss 
   2476   1.86      kent Static void
   2477   1.26  augustss uaudio_ctl_set(struct uaudio_softc *sc, int which, struct mixerctl *mc,
   2478   1.26  augustss 	       int chan, int val)
   2479    1.1  augustss {
   2480  1.124       mrg 
   2481    1.1  augustss 	val = uaudio_bsd2value(mc, val);
   2482  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2483    1.1  augustss 	uaudio_set(sc, which, UT_WRITE_CLASS_INTERFACE, mc->wValue[chan],
   2484    1.1  augustss 		   mc->wIndex, MIX_SIZE(mc->type), val);
   2485  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2486    1.1  augustss }
   2487    1.1  augustss 
   2488   1.86      kent Static int
   2489   1.26  augustss uaudio_mixer_get_port(void *addr, mixer_ctrl_t *cp)
   2490    1.1  augustss {
   2491   1.94      kent 	struct uaudio_softc *sc;
   2492    1.1  augustss 	struct mixerctl *mc;
   2493    1.1  augustss 	int i, n, vals[MIX_MAX_CHAN], val;
   2494    1.1  augustss 
   2495  1.122       mrg 	DPRINTFN(2, "index=%d\n", cp->dev);
   2496   1.94      kent 	sc = addr;
   2497    1.1  augustss 	if (sc->sc_dying)
   2498   1.94      kent 		return EIO;
   2499   1.56      kent 
   2500   1.63  augustss 	n = cp->dev - UAC_NCLASSES;
   2501    1.1  augustss 	if (n < 0 || n >= sc->sc_nctls)
   2502   1.94      kent 		return ENXIO;
   2503    1.1  augustss 	mc = &sc->sc_ctls[n];
   2504    1.1  augustss 
   2505    1.1  augustss 	if (mc->type == MIX_ON_OFF) {
   2506    1.1  augustss 		if (cp->type != AUDIO_MIXER_ENUM)
   2507   1.94      kent 			return EINVAL;
   2508    1.1  augustss 		cp->un.ord = uaudio_ctl_get(sc, GET_CUR, mc, 0);
   2509   1.79      kent 	} else if (mc->type == MIX_SELECTOR) {
   2510   1.79      kent 		if (cp->type != AUDIO_MIXER_ENUM)
   2511   1.94      kent 			return EINVAL;
   2512   1.79      kent 		cp->un.ord = uaudio_ctl_get(sc, GET_CUR, mc, 0);
   2513    1.1  augustss 	} else {
   2514    1.1  augustss 		if (cp->type != AUDIO_MIXER_VALUE)
   2515   1.94      kent 			return EINVAL;
   2516    1.1  augustss 		if (cp->un.value.num_channels != 1 &&
   2517    1.1  augustss 		    cp->un.value.num_channels != mc->nchan)
   2518   1.94      kent 			return EINVAL;
   2519    1.1  augustss 		for (i = 0; i < mc->nchan; i++)
   2520    1.1  augustss 			vals[i] = uaudio_ctl_get(sc, GET_CUR, mc, i);
   2521    1.1  augustss 		if (cp->un.value.num_channels == 1 && mc->nchan != 1) {
   2522    1.1  augustss 			for (val = 0, i = 0; i < mc->nchan; i++)
   2523    1.1  augustss 				val += vals[i];
   2524    1.1  augustss 			vals[0] = val / mc->nchan;
   2525    1.1  augustss 		}
   2526    1.1  augustss 		for (i = 0; i < cp->un.value.num_channels; i++)
   2527    1.1  augustss 			cp->un.value.level[i] = vals[i];
   2528    1.1  augustss 	}
   2529    1.1  augustss 
   2530   1.94      kent 	return 0;
   2531    1.1  augustss }
   2532   1.56      kent 
   2533   1.86      kent Static int
   2534   1.26  augustss uaudio_mixer_set_port(void *addr, mixer_ctrl_t *cp)
   2535    1.1  augustss {
   2536   1.94      kent 	struct uaudio_softc *sc;
   2537    1.1  augustss 	struct mixerctl *mc;
   2538    1.1  augustss 	int i, n, vals[MIX_MAX_CHAN];
   2539    1.1  augustss 
   2540  1.122       mrg 	DPRINTFN(2, "index = %d\n", cp->dev);
   2541   1.94      kent 	sc = addr;
   2542    1.1  augustss 	if (sc->sc_dying)
   2543   1.94      kent 		return EIO;
   2544   1.56      kent 
   2545   1.63  augustss 	n = cp->dev - UAC_NCLASSES;
   2546    1.1  augustss 	if (n < 0 || n >= sc->sc_nctls)
   2547   1.94      kent 		return ENXIO;
   2548    1.1  augustss 	mc = &sc->sc_ctls[n];
   2549    1.1  augustss 
   2550    1.1  augustss 	if (mc->type == MIX_ON_OFF) {
   2551    1.1  augustss 		if (cp->type != AUDIO_MIXER_ENUM)
   2552   1.94      kent 			return EINVAL;
   2553    1.1  augustss 		uaudio_ctl_set(sc, SET_CUR, mc, 0, cp->un.ord);
   2554   1.79      kent 	} else if (mc->type == MIX_SELECTOR) {
   2555   1.79      kent 		if (cp->type != AUDIO_MIXER_ENUM)
   2556   1.94      kent 			return EINVAL;
   2557   1.79      kent 		uaudio_ctl_set(sc, SET_CUR, mc, 0, cp->un.ord);
   2558    1.1  augustss 	} else {
   2559    1.1  augustss 		if (cp->type != AUDIO_MIXER_VALUE)
   2560   1.94      kent 			return EINVAL;
   2561    1.1  augustss 		if (cp->un.value.num_channels == 1)
   2562    1.1  augustss 			for (i = 0; i < mc->nchan; i++)
   2563    1.1  augustss 				vals[i] = cp->un.value.level[0];
   2564    1.1  augustss 		else if (cp->un.value.num_channels == mc->nchan)
   2565    1.1  augustss 			for (i = 0; i < mc->nchan; i++)
   2566    1.1  augustss 				vals[i] = cp->un.value.level[i];
   2567    1.1  augustss 		else
   2568   1.94      kent 			return EINVAL;
   2569    1.1  augustss 		for (i = 0; i < mc->nchan; i++)
   2570    1.1  augustss 			uaudio_ctl_set(sc, SET_CUR, mc, i, vals[i]);
   2571    1.1  augustss 	}
   2572   1.94      kent 	return 0;
   2573    1.1  augustss }
   2574    1.1  augustss 
   2575   1.86      kent Static int
   2576   1.26  augustss uaudio_trigger_input(void *addr, void *start, void *end, int blksize,
   2577   1.26  augustss 		     void (*intr)(void *), void *arg,
   2578  1.107  christos 		     const audio_params_t *param)
   2579    1.1  augustss {
   2580   1.94      kent 	struct uaudio_softc *sc;
   2581   1.94      kent 	struct chan *ch;
   2582    1.9  augustss 	usbd_status err;
   2583    1.5  augustss 	int i, s;
   2584    1.1  augustss 
   2585   1.94      kent 	sc = addr;
   2586    1.1  augustss 	if (sc->sc_dying)
   2587   1.94      kent 		return EIO;
   2588    1.1  augustss 
   2589  1.122       mrg 	DPRINTFN(3, "sc=%p start=%p end=%p "
   2590  1.122       mrg 		    "blksize=%d\n", sc, start, end, blksize);
   2591   1.94      kent 	ch = &sc->sc_recchan;
   2592   1.54      kent 	uaudio_chan_set_param(ch, start, end, blksize);
   2593  1.122       mrg 	DPRINTFN(3, "sample_size=%d bytes/frame=%d "
   2594    1.5  augustss 		    "fraction=0.%03d\n", ch->sample_size, ch->bytes_per_frame,
   2595  1.122       mrg 		    ch->fraction);
   2596    1.5  augustss 
   2597  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2598  1.121  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
   2599    1.9  augustss 	err = uaudio_chan_alloc_buffers(sc, ch);
   2600  1.121  jmcneill 	if (err) {
   2601  1.121  jmcneill 		mutex_spin_enter(&sc->sc_intr_lock);
   2602  1.121  jmcneill 		KERNEL_UNLOCK_ONE(curlwp);
   2603   1.94      kent 		return EIO;
   2604  1.121  jmcneill 	}
   2605    1.5  augustss 
   2606    1.9  augustss 	err = uaudio_chan_open(sc, ch);
   2607  1.121  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
   2608  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2609    1.9  augustss 	if (err) {
   2610    1.5  augustss 		uaudio_chan_free_buffers(sc, ch);
   2611   1.94      kent 		return EIO;
   2612    1.5  augustss 	}
   2613    1.5  augustss 
   2614   1.47  jdolecek 	ch->intr = intr;
   2615   1.47  jdolecek 	ch->arg = arg;
   2616    1.5  augustss 
   2617  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2618  1.124       mrg 	mutex_spin_exit(&sc->sc_intr_lock);
   2619    1.5  augustss 	s = splusb();
   2620   1.22  augustss 	for (i = 0; i < UAUDIO_NCHANBUFS-1; i++) /* XXX -1 shouldn't be needed */
   2621    1.5  augustss 		uaudio_chan_rtransfer(ch);
   2622    1.5  augustss 	splx(s);
   2623  1.124       mrg 	mutex_spin_enter(&sc->sc_intr_lock);
   2624  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2625    1.5  augustss 
   2626   1.94      kent 	return 0;
   2627    1.1  augustss }
   2628   1.56      kent 
   2629   1.86      kent Static int
   2630   1.26  augustss uaudio_trigger_output(void *addr, void *start, void *end, int blksize,
   2631   1.26  augustss 		      void (*intr)(void *), void *arg,
   2632  1.107  christos 		      const audio_params_t *param)
   2633    1.1  augustss {
   2634   1.94      kent 	struct uaudio_softc *sc;
   2635   1.94      kent 	struct chan *ch;
   2636    1.9  augustss 	usbd_status err;
   2637    1.1  augustss 	int i, s;
   2638    1.1  augustss 
   2639   1.94      kent 	sc = addr;
   2640    1.1  augustss 	if (sc->sc_dying)
   2641   1.94      kent 		return EIO;
   2642    1.1  augustss 
   2643  1.122       mrg 	DPRINTFN(3, "sc=%p start=%p end=%p "
   2644  1.122       mrg 		    "blksize=%d\n", sc, start, end, blksize);
   2645   1.94      kent 	ch = &sc->sc_playchan;
   2646   1.54      kent 	uaudio_chan_set_param(ch, start, end, blksize);
   2647  1.122       mrg 	DPRINTFN(3, "sample_size=%d bytes/frame=%d "
   2648    1.1  augustss 		    "fraction=0.%03d\n", ch->sample_size, ch->bytes_per_frame,
   2649  1.122       mrg 		    ch->fraction);
   2650    1.1  augustss 
   2651  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2652  1.121  jmcneill 	mutex_spin_exit(&sc->sc_intr_lock);
   2653    1.9  augustss 	err = uaudio_chan_alloc_buffers(sc, ch);
   2654  1.121  jmcneill 	if (err) {
   2655  1.121  jmcneill 		mutex_spin_enter(&sc->sc_intr_lock);
   2656  1.121  jmcneill 		KERNEL_UNLOCK_ONE(curlwp);
   2657   1.94      kent 		return EIO;
   2658  1.121  jmcneill 	}
   2659    1.1  augustss 
   2660    1.9  augustss 	err = uaudio_chan_open(sc, ch);
   2661  1.121  jmcneill 	mutex_spin_enter(&sc->sc_intr_lock);
   2662  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2663    1.9  augustss 	if (err) {
   2664    1.1  augustss 		uaudio_chan_free_buffers(sc, ch);
   2665   1.94      kent 		return EIO;
   2666    1.1  augustss 	}
   2667    1.1  augustss 
   2668   1.47  jdolecek 	ch->intr = intr;
   2669   1.47  jdolecek 	ch->arg = arg;
   2670    1.1  augustss 
   2671  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   2672  1.123       mrg 	mutex_spin_exit(&sc->sc_intr_lock);
   2673    1.1  augustss 	s = splusb();
   2674   1.22  augustss 	for (i = 0; i < UAUDIO_NCHANBUFS-1; i++) /* XXX */
   2675    1.5  augustss 		uaudio_chan_ptransfer(ch);
   2676    1.1  augustss 	splx(s);
   2677  1.123       mrg 	mutex_spin_enter(&sc->sc_intr_lock);
   2678  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   2679    1.1  augustss 
   2680   1.94      kent 	return 0;
   2681    1.1  augustss }
   2682    1.1  augustss 
   2683    1.1  augustss /* Set up a pipe for a channel. */
   2684   1.86      kent Static usbd_status
   2685   1.26  augustss uaudio_chan_open(struct uaudio_softc *sc, struct chan *ch)
   2686    1.1  augustss {
   2687   1.94      kent 	struct as_info *as;
   2688   1.94      kent 	int endpt;
   2689    1.9  augustss 	usbd_status err;
   2690    1.1  augustss 
   2691   1.94      kent 	as = &sc->sc_alts[ch->altidx];
   2692   1.94      kent 	endpt = as->edesc->bEndpointAddress;
   2693  1.122       mrg 	DPRINTF("endpt=0x%02x, speed=%d, alt=%d\n",
   2694  1.122       mrg 		 endpt, ch->sample_rate, as->alt);
   2695    1.1  augustss 
   2696    1.1  augustss 	/* Set alternate interface corresponding to the mode. */
   2697   1.37   mycroft 	err = usbd_set_interface(as->ifaceh, as->alt);
   2698    1.9  augustss 	if (err)
   2699   1.94      kent 		return err;
   2700    1.1  augustss 
   2701   1.90      kent 	/*
   2702   1.90      kent 	 * Roland SD-90 freezes by a SAMPLING_FREQ_CONTROL request.
   2703   1.90      kent 	 */
   2704  1.120  jakllsch 	if ((UGETW(sc->sc_udev->ddesc.idVendor) != USB_VENDOR_ROLAND) &&
   2705  1.120  jakllsch 	    (UGETW(sc->sc_udev->ddesc.idProduct) != USB_PRODUCT_ROLAND_SD90)) {
   2706   1.90      kent 		err = uaudio_set_speed(sc, endpt, ch->sample_rate);
   2707  1.105  christos 		if (err) {
   2708  1.122       mrg 			DPRINTF("set_speed failed err=%s\n", usbd_errstr(err));
   2709  1.105  christos 		}
   2710   1.90      kent 	}
   2711    1.1  augustss 
   2712   1.83      kent 	ch->pipe = 0;
   2713   1.83      kent 	ch->sync_pipe = 0;
   2714  1.122       mrg 	DPRINTF("create pipe to 0x%02x\n", endpt);
   2715   1.37   mycroft 	err = usbd_open_pipe(as->ifaceh, endpt, 0, &ch->pipe);
   2716   1.83      kent 	if (err)
   2717   1.83      kent 		return err;
   2718   1.83      kent 	if (as->edesc1 != NULL) {
   2719   1.83      kent 		endpt = as->edesc1->bEndpointAddress;
   2720  1.122       mrg 		DPRINTF("create sync-pipe to 0x%02x\n", endpt);
   2721   1.83      kent 		err = usbd_open_pipe(as->ifaceh, endpt, 0, &ch->sync_pipe);
   2722   1.83      kent 	}
   2723   1.83      kent 	return err;
   2724    1.1  augustss }
   2725    1.1  augustss 
   2726   1.86      kent Static void
   2727   1.26  augustss uaudio_chan_close(struct uaudio_softc *sc, struct chan *ch)
   2728    1.1  augustss {
   2729   1.94      kent 	struct as_info *as;
   2730   1.37   mycroft 
   2731   1.94      kent 	as = &sc->sc_alts[ch->altidx];
   2732   1.58      kent 	as->sc_busy = 0;
   2733   1.92      kent 	AUFMT_VALIDATE(as->aformat);
   2734    1.1  augustss 	if (sc->sc_nullalt >= 0) {
   2735  1.122       mrg 		DPRINTF("set null alt=%d\n", sc->sc_nullalt);
   2736   1.37   mycroft 		usbd_set_interface(as->ifaceh, sc->sc_nullalt);
   2737    1.1  augustss 	}
   2738   1.83      kent 	if (ch->pipe) {
   2739   1.83      kent 		usbd_abort_pipe(ch->pipe);
   2740   1.83      kent 		usbd_close_pipe(ch->pipe);
   2741   1.83      kent 	}
   2742   1.83      kent 	if (ch->sync_pipe) {
   2743   1.83      kent 		usbd_abort_pipe(ch->sync_pipe);
   2744   1.83      kent 		usbd_close_pipe(ch->sync_pipe);
   2745   1.83      kent 	}
   2746    1.1  augustss }
   2747    1.1  augustss 
   2748   1.86      kent Static usbd_status
   2749   1.26  augustss uaudio_chan_alloc_buffers(struct uaudio_softc *sc, struct chan *ch)
   2750    1.1  augustss {
   2751    1.9  augustss 	usbd_xfer_handle xfer;
   2752   1.99  christos 	void *tbuf;
   2753    1.1  augustss 	int i, size;
   2754    1.1  augustss 
   2755    1.1  augustss 	size = (ch->bytes_per_frame + ch->sample_size) * UAUDIO_NFRAMES;
   2756    1.1  augustss 	for (i = 0; i < UAUDIO_NCHANBUFS; i++) {
   2757   1.11  augustss 		xfer = usbd_alloc_xfer(sc->sc_udev);
   2758    1.9  augustss 		if (xfer == 0)
   2759    1.1  augustss 			goto bad;
   2760    1.9  augustss 		ch->chanbufs[i].xfer = xfer;
   2761   1.99  christos 		tbuf = usbd_alloc_buffer(xfer, size);
   2762   1.99  christos 		if (tbuf == 0) {
   2763    1.1  augustss 			i++;
   2764    1.1  augustss 			goto bad;
   2765    1.1  augustss 		}
   2766   1.99  christos 		ch->chanbufs[i].buffer = tbuf;
   2767    1.1  augustss 		ch->chanbufs[i].chan = ch;
   2768    1.1  augustss 	}
   2769    1.1  augustss 
   2770   1.94      kent 	return USBD_NORMAL_COMPLETION;
   2771    1.1  augustss 
   2772    1.1  augustss bad:
   2773    1.1  augustss 	while (--i >= 0)
   2774    1.1  augustss 		/* implicit buffer free */
   2775   1.11  augustss 		usbd_free_xfer(ch->chanbufs[i].xfer);
   2776   1.94      kent 	return USBD_NOMEM;
   2777    1.1  augustss }
   2778    1.1  augustss 
   2779   1.86      kent Static void
   2780  1.107  christos uaudio_chan_free_buffers(struct uaudio_softc *sc, struct chan *ch)
   2781    1.1  augustss {
   2782    1.1  augustss 	int i;
   2783    1.1  augustss 
   2784    1.1  augustss 	for (i = 0; i < UAUDIO_NCHANBUFS; i++)
   2785   1.11  augustss 		usbd_free_xfer(ch->chanbufs[i].xfer);
   2786    1.1  augustss }
   2787    1.1  augustss 
   2788    1.1  augustss /* Called at splusb() */
   2789   1.86      kent Static void
   2790   1.26  augustss uaudio_chan_ptransfer(struct chan *ch)
   2791    1.1  augustss {
   2792    1.1  augustss 	struct chanbuf *cb;
   2793    1.1  augustss 	int i, n, size, residue, total;
   2794    1.1  augustss 
   2795    1.8  augustss 	if (ch->sc->sc_dying)
   2796    1.8  augustss 		return;
   2797    1.8  augustss 
   2798    1.1  augustss 	/* Pick the next channel buffer. */
   2799    1.1  augustss 	cb = &ch->chanbufs[ch->curchanbuf];
   2800    1.1  augustss 	if (++ch->curchanbuf >= UAUDIO_NCHANBUFS)
   2801    1.1  augustss 		ch->curchanbuf = 0;
   2802    1.1  augustss 
   2803    1.1  augustss 	/* Compute the size of each frame in the next transfer. */
   2804    1.1  augustss 	residue = ch->residue;
   2805    1.1  augustss 	total = 0;
   2806    1.1  augustss 	for (i = 0; i < UAUDIO_NFRAMES; i++) {
   2807    1.1  augustss 		size = ch->bytes_per_frame;
   2808    1.1  augustss 		residue += ch->fraction;
   2809    1.1  augustss 		if (residue >= USB_FRAMES_PER_SECOND) {
   2810   1.47  jdolecek 			if ((ch->sc->sc_altflags & UA_NOFRAC) == 0)
   2811   1.31  augustss 				size += ch->sample_size;
   2812    1.1  augustss 			residue -= USB_FRAMES_PER_SECOND;
   2813    1.1  augustss 		}
   2814    1.1  augustss 		cb->sizes[i] = size;
   2815    1.1  augustss 		total += size;
   2816    1.1  augustss 	}
   2817    1.1  augustss 	ch->residue = residue;
   2818    1.1  augustss 	cb->size = total;
   2819    1.1  augustss 
   2820   1.56      kent 	/*
   2821    1.1  augustss 	 * Transfer data from upper layer buffer to channel buffer, taking
   2822    1.1  augustss 	 * care of wrapping the upper layer buffer.
   2823    1.1  augustss 	 */
   2824    1.1  augustss 	n = min(total, ch->end - ch->cur);
   2825    1.1  augustss 	memcpy(cb->buffer, ch->cur, n);
   2826    1.1  augustss 	ch->cur += n;
   2827    1.1  augustss 	if (ch->cur >= ch->end)
   2828    1.1  augustss 		ch->cur = ch->start;
   2829    1.1  augustss 	if (total > n) {
   2830    1.1  augustss 		total -= n;
   2831    1.1  augustss 		memcpy(cb->buffer + n, ch->cur, total);
   2832    1.1  augustss 		ch->cur += total;
   2833    1.1  augustss 	}
   2834    1.1  augustss 
   2835    1.4  augustss #ifdef UAUDIO_DEBUG
   2836    1.1  augustss 	if (uaudiodebug > 8) {
   2837  1.122       mrg 		DPRINTF("buffer=%p, residue=0.%03d\n", cb->buffer, ch->residue);
   2838    1.1  augustss 		for (i = 0; i < UAUDIO_NFRAMES; i++) {
   2839  1.122       mrg 			DPRINTF("   [%d] length %d\n", i, cb->sizes[i]);
   2840    1.1  augustss 		}
   2841    1.1  augustss 	}
   2842    1.1  augustss #endif
   2843    1.1  augustss 
   2844  1.124       mrg 	//DPRINTFN(5, "ptransfer xfer=%p\n", cb->xfer);
   2845    1.1  augustss 	/* Fill the request */
   2846   1.56      kent 	usbd_setup_isoc_xfer(cb->xfer, ch->pipe, cb, cb->sizes,
   2847   1.56      kent 			     UAUDIO_NFRAMES, USBD_NO_COPY,
   2848   1.11  augustss 			     uaudio_chan_pintr);
   2849    1.1  augustss 
   2850    1.9  augustss 	(void)usbd_transfer(cb->xfer);
   2851    1.1  augustss }
   2852    1.1  augustss 
   2853   1.86      kent Static void
   2854   1.26  augustss uaudio_chan_pintr(usbd_xfer_handle xfer, usbd_private_handle priv,
   2855   1.26  augustss 		  usbd_status status)
   2856    1.1  augustss {
   2857   1.94      kent 	struct chanbuf *cb;
   2858   1.94      kent 	struct chan *ch;
   2859   1.94      kent 	uint32_t count;
   2860    1.1  augustss 
   2861   1.94      kent 	cb = priv;
   2862   1.94      kent 	ch = cb->chan;
   2863    1.1  augustss 	/* Return if we are aborting. */
   2864    1.1  augustss 	if (status == USBD_CANCELLED)
   2865    1.1  augustss 		return;
   2866    1.1  augustss 
   2867   1.18  augustss 	usbd_get_xfer_status(xfer, NULL, NULL, &count, NULL);
   2868  1.122       mrg 	DPRINTFN(5, "count=%d, transferred=%d\n",
   2869  1.122       mrg 		    count, ch->transferred);
   2870    1.5  augustss #ifdef DIAGNOSTIC
   2871    1.5  augustss 	if (count != cb->size) {
   2872  1.113      cube 		aprint_error("uaudio_chan_pintr: count(%d) != size(%d)\n",
   2873    1.5  augustss 		       count, cb->size);
   2874    1.5  augustss 	}
   2875    1.5  augustss #endif
   2876    1.5  augustss 
   2877    1.5  augustss 	ch->transferred += cb->size;
   2878  1.121  jmcneill 	mutex_spin_enter(&ch->sc->sc_intr_lock);
   2879    1.1  augustss 	/* Call back to upper layer */
   2880    1.5  augustss 	while (ch->transferred >= ch->blksize) {
   2881    1.5  augustss 		ch->transferred -= ch->blksize;
   2882  1.122       mrg 		DPRINTFN(5, "call %p(%p)\n", ch->intr, ch->arg);
   2883    1.5  augustss 		ch->intr(ch->arg);
   2884    1.5  augustss 	}
   2885  1.121  jmcneill 	mutex_spin_exit(&ch->sc->sc_intr_lock);
   2886    1.5  augustss 
   2887    1.5  augustss 	/* start next transfer */
   2888    1.5  augustss 	uaudio_chan_ptransfer(ch);
   2889    1.5  augustss }
   2890    1.5  augustss 
   2891    1.5  augustss /* Called at splusb() */
   2892   1.86      kent Static void
   2893   1.26  augustss uaudio_chan_rtransfer(struct chan *ch)
   2894    1.5  augustss {
   2895    1.5  augustss 	struct chanbuf *cb;
   2896    1.5  augustss 	int i, size, residue, total;
   2897    1.8  augustss 
   2898    1.8  augustss 	if (ch->sc->sc_dying)
   2899    1.8  augustss 		return;
   2900    1.5  augustss 
   2901    1.5  augustss 	/* Pick the next channel buffer. */
   2902    1.5  augustss 	cb = &ch->chanbufs[ch->curchanbuf];
   2903    1.5  augustss 	if (++ch->curchanbuf >= UAUDIO_NCHANBUFS)
   2904    1.5  augustss 		ch->curchanbuf = 0;
   2905    1.5  augustss 
   2906    1.5  augustss 	/* Compute the size of each frame in the next transfer. */
   2907    1.5  augustss 	residue = ch->residue;
   2908    1.5  augustss 	total = 0;
   2909    1.5  augustss 	for (i = 0; i < UAUDIO_NFRAMES; i++) {
   2910    1.5  augustss 		size = ch->bytes_per_frame;
   2911    1.5  augustss 		cb->sizes[i] = size;
   2912   1.62    toshii 		cb->offsets[i] = total;
   2913    1.5  augustss 		total += size;
   2914    1.5  augustss 	}
   2915    1.5  augustss 	ch->residue = residue;
   2916    1.5  augustss 	cb->size = total;
   2917    1.5  augustss 
   2918    1.5  augustss #ifdef UAUDIO_DEBUG
   2919    1.5  augustss 	if (uaudiodebug > 8) {
   2920  1.122       mrg 		DPRINTF("buffer=%p, residue=0.%03d\n", cb->buffer, ch->residue);
   2921    1.5  augustss 		for (i = 0; i < UAUDIO_NFRAMES; i++) {
   2922  1.122       mrg 			DPRINTF("   [%d] length %d\n", i, cb->sizes[i]);
   2923    1.5  augustss 		}
   2924    1.5  augustss 	}
   2925    1.5  augustss #endif
   2926    1.5  augustss 
   2927  1.122       mrg 	DPRINTFN(5, "transfer xfer=%p\n", cb->xfer);
   2928    1.5  augustss 	/* Fill the request */
   2929   1.56      kent 	usbd_setup_isoc_xfer(cb->xfer, ch->pipe, cb, cb->sizes,
   2930   1.56      kent 			     UAUDIO_NFRAMES, USBD_NO_COPY,
   2931   1.11  augustss 			     uaudio_chan_rintr);
   2932    1.5  augustss 
   2933    1.9  augustss 	(void)usbd_transfer(cb->xfer);
   2934    1.5  augustss }
   2935    1.5  augustss 
   2936   1.86      kent Static void
   2937   1.26  augustss uaudio_chan_rintr(usbd_xfer_handle xfer, usbd_private_handle priv,
   2938   1.26  augustss 		  usbd_status status)
   2939    1.5  augustss {
   2940   1.94      kent 	struct chanbuf *cb;
   2941   1.94      kent 	struct chan *ch;
   2942   1.94      kent 	uint32_t count;
   2943  1.121  jmcneill 	int i, n, frsize;
   2944    1.5  augustss 
   2945   1.94      kent 	cb = priv;
   2946   1.94      kent 	ch = cb->chan;
   2947    1.5  augustss 	/* Return if we are aborting. */
   2948    1.5  augustss 	if (status == USBD_CANCELLED)
   2949    1.5  augustss 		return;
   2950    1.5  augustss 
   2951   1.18  augustss 	usbd_get_xfer_status(xfer, NULL, NULL, &count, NULL);
   2952  1.122       mrg 	DPRINTFN(5, "count=%d, transferred=%d\n", count, ch->transferred);
   2953   1.31  augustss 
   2954   1.62    toshii 	/* count < cb->size is normal for asynchronous source */
   2955    1.1  augustss #ifdef DIAGNOSTIC
   2956   1.62    toshii 	if (count > cb->size) {
   2957  1.113      cube 		aprint_error("uaudio_chan_rintr: count(%d) > size(%d)\n",
   2958    1.1  augustss 		       count, cb->size);
   2959    1.1  augustss 	}
   2960    1.1  augustss #endif
   2961    1.1  augustss 
   2962   1.56      kent 	/*
   2963    1.5  augustss 	 * Transfer data from channel buffer to upper layer buffer, taking
   2964    1.5  augustss 	 * care of wrapping the upper layer buffer.
   2965    1.5  augustss 	 */
   2966   1.62    toshii 	for(i = 0; i < UAUDIO_NFRAMES; i++) {
   2967   1.62    toshii 		frsize = cb->sizes[i];
   2968   1.62    toshii 		n = min(frsize, ch->end - ch->cur);
   2969   1.62    toshii 		memcpy(ch->cur, cb->buffer + cb->offsets[i], n);
   2970   1.62    toshii 		ch->cur += n;
   2971   1.62    toshii 		if (ch->cur >= ch->end)
   2972   1.62    toshii 			ch->cur = ch->start;
   2973   1.62    toshii 		if (frsize > n) {
   2974   1.62    toshii 			memcpy(ch->cur, cb->buffer + cb->offsets[i] + n,
   2975   1.62    toshii 			    frsize - n);
   2976   1.62    toshii 			ch->cur += frsize - n;
   2977   1.62    toshii 		}
   2978    1.5  augustss 	}
   2979    1.5  augustss 
   2980    1.5  augustss 	/* Call back to upper layer */
   2981   1.62    toshii 	ch->transferred += count;
   2982  1.121  jmcneill 	mutex_spin_enter(&ch->sc->sc_intr_lock);
   2983    1.1  augustss 	while (ch->transferred >= ch->blksize) {
   2984    1.1  augustss 		ch->transferred -= ch->blksize;
   2985  1.122       mrg 		DPRINTFN(5, "call %p(%p)\n", ch->intr, ch->arg);
   2986    1.1  augustss 		ch->intr(ch->arg);
   2987    1.1  augustss 	}
   2988  1.121  jmcneill 	mutex_spin_exit(&ch->sc->sc_intr_lock);
   2989    1.1  augustss 
   2990    1.1  augustss 	/* start next transfer */
   2991    1.5  augustss 	uaudio_chan_rtransfer(ch);
   2992    1.1  augustss }
   2993    1.1  augustss 
   2994   1.86      kent Static void
   2995   1.65    toshii uaudio_chan_init(struct chan *ch, int altidx, const struct audio_params *param,
   2996   1.65    toshii     int maxpktsize)
   2997    1.1  augustss {
   2998    1.1  augustss 	int samples_per_frame, sample_size;
   2999    1.1  augustss 
   3000   1.54      kent 	ch->altidx = altidx;
   3001   1.93      kent 	sample_size = param->precision * param->channels / 8;
   3002   1.93      kent 	samples_per_frame = param->sample_rate / USB_FRAMES_PER_SECOND;
   3003    1.1  augustss 	ch->sample_size = sample_size;
   3004   1.93      kent 	ch->sample_rate = param->sample_rate;
   3005   1.65    toshii 	if (maxpktsize == 0) {
   3006   1.93      kent 		ch->fraction = param->sample_rate % USB_FRAMES_PER_SECOND;
   3007   1.65    toshii 		ch->bytes_per_frame = samples_per_frame * sample_size;
   3008   1.65    toshii 	} else {
   3009   1.65    toshii 		ch->fraction = 0;
   3010   1.65    toshii 		ch->bytes_per_frame = maxpktsize;
   3011   1.65    toshii 	}
   3012    1.1  augustss 	ch->residue = 0;
   3013   1.54      kent }
   3014    1.1  augustss 
   3015   1.86      kent Static void
   3016   1.54      kent uaudio_chan_set_param(struct chan *ch, u_char *start, u_char *end, int blksize)
   3017   1.54      kent {
   3018   1.94      kent 
   3019    1.1  augustss 	ch->start = start;
   3020    1.1  augustss 	ch->end = end;
   3021    1.1  augustss 	ch->cur = start;
   3022    1.1  augustss 	ch->blksize = blksize;
   3023    1.1  augustss 	ch->transferred = 0;
   3024    1.1  augustss 	ch->curchanbuf = 0;
   3025    1.1  augustss }
   3026    1.1  augustss 
   3027   1.86      kent Static int
   3028   1.26  augustss uaudio_set_params(void *addr, int setmode, int usemode,
   3029   1.93      kent 		  struct audio_params *play, struct audio_params *rec,
   3030   1.93      kent 		  stream_filter_list_t *pfil, stream_filter_list_t *rfil)
   3031    1.1  augustss {
   3032   1.94      kent 	struct uaudio_softc *sc;
   3033   1.94      kent 	int paltidx, raltidx;
   3034   1.38   mycroft 	struct audio_params *p;
   3035   1.93      kent 	stream_filter_list_t *fil;
   3036   1.92      kent 	int mode, i;
   3037    1.1  augustss 
   3038   1.94      kent 	sc = addr;
   3039   1.94      kent 	paltidx = -1;
   3040   1.94      kent 	raltidx = -1;
   3041    1.1  augustss 	if (sc->sc_dying)
   3042   1.94      kent 		return EIO;
   3043    1.1  augustss 
   3044   1.73   mycroft 	if (((usemode & AUMODE_PLAY) && sc->sc_playchan.pipe != NULL) ||
   3045   1.73   mycroft 	    ((usemode & AUMODE_RECORD) && sc->sc_recchan.pipe != NULL))
   3046   1.94      kent 		return EBUSY;
   3047    1.1  augustss 
   3048   1.92      kent 	if ((usemode & AUMODE_PLAY) && sc->sc_playchan.altidx != -1) {
   3049   1.47  jdolecek 		sc->sc_alts[sc->sc_playchan.altidx].sc_busy = 0;
   3050   1.92      kent 		AUFMT_VALIDATE(sc->sc_alts[sc->sc_playchan.altidx].aformat);
   3051   1.92      kent 	}
   3052   1.92      kent 	if ((usemode & AUMODE_RECORD) && sc->sc_recchan.altidx != -1) {
   3053   1.47  jdolecek 		sc->sc_alts[sc->sc_recchan.altidx].sc_busy = 0;
   3054   1.92      kent 		AUFMT_VALIDATE(sc->sc_alts[sc->sc_recchan.altidx].aformat);
   3055   1.92      kent 	}
   3056   1.47  jdolecek 
   3057   1.76   mycroft 	/* Some uaudio devices are unidirectional.  Don't try to find a
   3058   1.76   mycroft 	   matching mode for the unsupported direction. */
   3059   1.76   mycroft 	setmode &= sc->sc_mode;
   3060   1.76   mycroft 
   3061   1.38   mycroft 	for (mode = AUMODE_RECORD; mode != -1;
   3062   1.38   mycroft 	     mode = mode == AUMODE_RECORD ? AUMODE_PLAY : -1) {
   3063   1.76   mycroft 		if ((setmode & mode) == 0)
   3064   1.38   mycroft 			continue;
   3065   1.56      kent 
   3066   1.93      kent 		if (mode == AUMODE_PLAY) {
   3067   1.93      kent 			p = play;
   3068   1.93      kent 			fil = pfil;
   3069   1.93      kent 		} else {
   3070   1.93      kent 			p = rec;
   3071   1.93      kent 			fil = rfil;
   3072   1.93      kent 		}
   3073   1.92      kent 		i = auconv_set_converter(sc->sc_formats, sc->sc_nformats,
   3074   1.93      kent 					 mode, p, TRUE, fil);
   3075   1.50      kent 		if (i < 0)
   3076   1.92      kent 			return EINVAL;
   3077   1.73   mycroft 
   3078   1.73   mycroft 		if (mode == AUMODE_PLAY)
   3079   1.73   mycroft 			paltidx = i;
   3080   1.73   mycroft 		else
   3081   1.73   mycroft 			raltidx = i;
   3082    1.1  augustss 	}
   3083    1.1  augustss 
   3084   1.73   mycroft 	if ((setmode & AUMODE_PLAY)) {
   3085   1.93      kent 		p = pfil->req_size > 0 ? &pfil->filters[0].param : play;
   3086   1.47  jdolecek 		/* XXX abort transfer if currently happening? */
   3087   1.93      kent 		uaudio_chan_init(&sc->sc_playchan, paltidx, p, 0);
   3088   1.47  jdolecek 	}
   3089   1.73   mycroft 	if ((setmode & AUMODE_RECORD)) {
   3090   1.93      kent 		p = rfil->req_size > 0 ? &pfil->filters[0].param : rec;
   3091   1.47  jdolecek 		/* XXX abort transfer if currently happening? */
   3092   1.93      kent 		uaudio_chan_init(&sc->sc_recchan, raltidx, p,
   3093   1.65    toshii 		    UGETW(sc->sc_alts[raltidx].edesc->wMaxPacketSize));
   3094   1.47  jdolecek 	}
   3095   1.47  jdolecek 
   3096   1.92      kent 	if ((usemode & AUMODE_PLAY) && sc->sc_playchan.altidx != -1) {
   3097   1.73   mycroft 		sc->sc_alts[sc->sc_playchan.altidx].sc_busy = 1;
   3098   1.92      kent 		AUFMT_INVALIDATE(sc->sc_alts[sc->sc_playchan.altidx].aformat);
   3099   1.92      kent 	}
   3100   1.92      kent 	if ((usemode & AUMODE_RECORD) && sc->sc_recchan.altidx != -1) {
   3101   1.73   mycroft 		sc->sc_alts[sc->sc_recchan.altidx].sc_busy = 1;
   3102   1.92      kent 		AUFMT_INVALIDATE(sc->sc_alts[sc->sc_recchan.altidx].aformat);
   3103   1.92      kent 	}
   3104   1.73   mycroft 
   3105  1.122       mrg 	DPRINTF("use altidx=p%d/r%d, altno=p%d/r%d\n",
   3106   1.56      kent 		 sc->sc_playchan.altidx, sc->sc_recchan.altidx,
   3107   1.47  jdolecek 		 (sc->sc_playchan.altidx >= 0)
   3108   1.47  jdolecek 		   ?sc->sc_alts[sc->sc_playchan.altidx].idesc->bAlternateSetting
   3109   1.47  jdolecek 		   : -1,
   3110   1.47  jdolecek 		 (sc->sc_recchan.altidx >= 0)
   3111   1.47  jdolecek 		   ? sc->sc_alts[sc->sc_recchan.altidx].idesc->bAlternateSetting
   3112  1.122       mrg 		   : -1);
   3113   1.56      kent 
   3114   1.94      kent 	return 0;
   3115    1.1  augustss }
   3116    1.1  augustss 
   3117   1.86      kent Static usbd_status
   3118   1.26  augustss uaudio_set_speed(struct uaudio_softc *sc, int endpt, u_int speed)
   3119    1.1  augustss {
   3120    1.1  augustss 	usb_device_request_t req;
   3121  1.121  jmcneill 	usbd_status err;
   3122   1.94      kent 	uint8_t data[3];
   3123    1.1  augustss 
   3124  1.122       mrg 	DPRINTFN(5, "endpt=%d speed=%u\n", endpt, speed);
   3125    1.1  augustss 	req.bmRequestType = UT_WRITE_CLASS_ENDPOINT;
   3126    1.1  augustss 	req.bRequest = SET_CUR;
   3127    1.1  augustss 	USETW2(req.wValue, SAMPLING_FREQ_CONTROL, 0);
   3128    1.1  augustss 	USETW(req.wIndex, endpt);
   3129    1.1  augustss 	USETW(req.wLength, 3);
   3130    1.1  augustss 	data[0] = speed;
   3131    1.1  augustss 	data[1] = speed >> 8;
   3132    1.1  augustss 	data[2] = speed >> 16;
   3133    1.1  augustss 
   3134  1.121  jmcneill 	KERNEL_LOCK(1, curlwp);
   3135  1.121  jmcneill 	err = usbd_do_request(sc->sc_udev, &req, data);
   3136  1.121  jmcneill 	KERNEL_UNLOCK_ONE(curlwp);
   3137  1.121  jmcneill 
   3138  1.121  jmcneill 	return err;
   3139    1.1  augustss }
   3140  1.114      kent 
   3141  1.114      kent #ifdef _MODULE
   3142  1.114      kent 
   3143  1.114      kent MODULE(MODULE_CLASS_DRIVER, uaudio, NULL);
   3144  1.114      kent 
   3145  1.114      kent static const struct cfiattrdata audiobuscf_iattrdata = {
   3146  1.114      kent 	"audiobus", 0, { { NULL, NULL, 0 }, }
   3147  1.114      kent };
   3148  1.114      kent static const struct cfiattrdata * const uaudio_attrs[] = {
   3149  1.114      kent 	&audiobuscf_iattrdata, NULL
   3150  1.114      kent };
   3151  1.114      kent CFDRIVER_DECL(uaudio, DV_DULL, uaudio_attrs);
   3152  1.114      kent extern struct cfattach uaudio_ca;
   3153  1.114      kent static int uaudioloc[6/*USBIFIFCF_NLOCS*/] = {
   3154  1.114      kent 	-1/*USBIFIFCF_PORT_DEFAULT*/,
   3155  1.114      kent 	-1/*USBIFIFCF_CONFIGURATION_DEFAULT*/,
   3156  1.114      kent 	-1/*USBIFIFCF_INTERFACE_DEFAULT*/,
   3157  1.114      kent 	-1/*USBIFIFCF_VENDOR_DEFAULT*/,
   3158  1.114      kent 	-1/*USBIFIFCF_PRODUCT_DEFAULT*/,
   3159  1.114      kent 	-1/*USBIFIFCF_RELEASE_DEFAULT*/};
   3160  1.114      kent static struct cfparent uhubparent = {
   3161  1.114      kent 	"usbifif", NULL, DVUNIT_ANY
   3162  1.114      kent };
   3163  1.114      kent static struct cfdata uaudio_cfdata[] = {
   3164  1.114      kent 	{
   3165  1.114      kent 		.cf_name = "uaudio",
   3166  1.114      kent 		.cf_atname = "uaudio",
   3167  1.114      kent 		.cf_unit = 0,
   3168  1.114      kent 		.cf_fstate = FSTATE_STAR,
   3169  1.114      kent 		.cf_loc = uaudioloc,
   3170  1.114      kent 		.cf_flags = 0,
   3171  1.114      kent 		.cf_pspec = &uhubparent,
   3172  1.114      kent 	},
   3173  1.114      kent 	{ NULL }
   3174  1.114      kent };
   3175  1.114      kent 
   3176  1.114      kent static int
   3177  1.114      kent uaudio_modcmd(modcmd_t cmd, void *arg)
   3178  1.114      kent {
   3179  1.114      kent 	int err;
   3180  1.114      kent 
   3181  1.114      kent 	switch (cmd) {
   3182  1.114      kent 	case MODULE_CMD_INIT:
   3183  1.114      kent 		err = config_cfdriver_attach(&uaudio_cd);
   3184  1.114      kent 		if (err) {
   3185  1.114      kent 			return err;
   3186  1.114      kent 		}
   3187  1.114      kent 		err = config_cfattach_attach("uaudio", &uaudio_ca);
   3188  1.114      kent 		if (err) {
   3189  1.114      kent 			config_cfdriver_detach(&uaudio_cd);
   3190  1.114      kent 			return err;
   3191  1.114      kent 		}
   3192  1.114      kent 		err = config_cfdata_attach(uaudio_cfdata, 1);
   3193  1.114      kent 		if (err) {
   3194  1.114      kent 			config_cfattach_detach("uaudio", &uaudio_ca);
   3195  1.114      kent 			config_cfdriver_detach(&uaudio_cd);
   3196  1.114      kent 			return err;
   3197  1.114      kent 		}
   3198  1.114      kent 		return 0;
   3199  1.114      kent 	case MODULE_CMD_FINI:
   3200  1.114      kent 		err = config_cfdata_detach(uaudio_cfdata);
   3201  1.114      kent 		if (err)
   3202  1.114      kent 			return err;
   3203  1.114      kent 		config_cfattach_detach("uaudio", &uaudio_ca);
   3204  1.114      kent 		config_cfdriver_detach(&uaudio_cd);
   3205  1.114      kent 		return 0;
   3206  1.114      kent 	default:
   3207  1.114      kent 		return ENOTTY;
   3208  1.114      kent 	}
   3209  1.114      kent }
   3210  1.114      kent 
   3211  1.114      kent #endif
   3212