Add uaudio -- a USB audio device driver.
This driver actually works slightly better on -stable than on -current (the system locks on detach on -current), so it should be MFC'd somewhat sooner. This driver currently points out a difficulty in the sound device framework. The PCM unregister routine is allowed to refuse the detach if the device is in use. In the case of a USB device, however, this unregistration is much more mandatory in nature, since the device is *actually* gone when this call is made. The sound subsystem really should not refuse an unregistration and should take its own steps to reject further I/O. As a result, if you detach a USB sound device while it is in use, you can expect a panic shortly thereafter. This device cannot currently record audio. Some routines are unwritten as of yet in uaudio.c to support recording. This device hangs my -current box on detach. I don't know why. This does not happen on my -stable machine. Obtained from: Hiroyuki Aizu MFC after: 2 weeks
This commit is contained in:
parent
45841b7025
commit
d807a231a2
@ -591,6 +591,8 @@ dev/sound/pcm/sndstat.c optional pcm
|
||||
dev/sound/pcm/sound.c optional pcm
|
||||
dev/sound/pcm/vchan.c optional pcm
|
||||
#dev/sound/usb/upcm.c optional pcm usb
|
||||
dev/sound/usb/uaudio.c optional pcm usb
|
||||
dev/sound/usb/uaudio_pcm.c optional pcm usb
|
||||
dev/sr/if_sr.c optional sr
|
||||
dev/sr/if_sr_pci.c optional sr pci
|
||||
dev/streams/streams.c optional streams
|
||||
|
2912
sys/dev/sound/usb/uaudio.c
Normal file
2912
sys/dev/sound/usb/uaudio.c
Normal file
File diff suppressed because it is too large
Load Diff
49
sys/dev/sound/usb/uaudio.h
Normal file
49
sys/dev/sound/usb/uaudio.h
Normal file
@ -0,0 +1,49 @@
|
||||
/* $FreeBSD$ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000-2002 Hiroyuki Aizu <aizu@navi.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#define NO_RECORDING /* XXX: some routines missing from uaudio.c */
|
||||
|
||||
/* Defined in uaudio.c, used in uaudio_pcm,c */
|
||||
|
||||
void uaudio_chan_set_param_pcm_dma_buff(device_t dev, u_char *start,
|
||||
u_char *end, struct pcm_channel *pc);
|
||||
int uaudio_trigger_output(device_t dev);
|
||||
int uaudio_halt_out_dma(device_t dev);
|
||||
#ifndef NO_RECORDING
|
||||
int uaudio_trigger_input(device_t dev);
|
||||
int uaudio_halt_in_dma(device_t dev);
|
||||
#endif
|
||||
void uaudio_chan_set_param(device_t, u_char *, u_char *);
|
||||
void uaudio_chan_set_param_blocksize(device_t dev, u_int32_t blocksize);
|
||||
void uaudio_chan_set_param_speed(device_t dev, u_int32_t speed);
|
||||
void uaudio_chan_set_param_format(device_t dev, u_int32_t format);
|
||||
int uaudio_chan_getptr(device_t dev);
|
||||
void uaudio_mixer_set(device_t dev, unsigned type, unsigned left,
|
||||
unsigned right);
|
||||
u_int32_t uaudio_query_mix_info(device_t dev);
|
||||
void uaudio_query_formats(device_t dev, u_int32_t *pfmt, u_int32_t *rfmt);
|
||||
|
375
sys/dev/sound/usb/uaudio_pcm.c
Normal file
375
sys/dev/sound/usb/uaudio_pcm.c
Normal file
@ -0,0 +1,375 @@
|
||||
/* $FreeBSD$ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000-2002 Hiroyuki Aizu <aizu@navi.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
#include <sys/soundcard.h>
|
||||
#include <dev/sound/pcm/sound.h>
|
||||
#include <dev/sound/chip.h>
|
||||
|
||||
#include <dev/sound/usb/uaudio.h>
|
||||
|
||||
#include "mixer_if.h"
|
||||
|
||||
struct ua_info;
|
||||
|
||||
struct ua_chinfo {
|
||||
struct ua_info *parent;
|
||||
struct pcm_channel *channel;
|
||||
struct snd_dbuf *buffer;
|
||||
int dir, hwch;
|
||||
u_int32_t fmt, spd, blksz; /* XXXXX */
|
||||
};
|
||||
|
||||
struct ua_info {
|
||||
device_t sc_dev;
|
||||
struct ua_chinfo pch, rch;
|
||||
bus_dma_tag_t parent_dmat;
|
||||
};
|
||||
|
||||
static u_int32_t ua_playfmt[8*2+1]; /* 8 format * (stereo or mono) + endptr */
|
||||
|
||||
static struct pcmchan_caps ua_playcaps = {8000, 48000, ua_playfmt, 0};
|
||||
|
||||
static u_int32_t ua_recfmt[8*2+1]; /* 8 format * (stereo or mono) + endptr */
|
||||
|
||||
static struct pcmchan_caps ua_reccaps = {8000, 48000, ua_recfmt, 0};
|
||||
|
||||
#define UAUDIO_PCM_BUFF_SIZE 16*1024
|
||||
|
||||
/************************************************************/
|
||||
static void *
|
||||
ua_chan_init(kobj_t obj, void *devinfo, struct snd_dbuf *b, struct pcm_channel *c, int dir)
|
||||
{
|
||||
device_t pa_dev;
|
||||
u_char *buf,*end;
|
||||
|
||||
struct ua_info *sc = devinfo;
|
||||
struct ua_chinfo *ch = (dir == PCMDIR_PLAY)? &sc->pch : &sc->rch;
|
||||
|
||||
ch->parent = sc;
|
||||
ch->channel = c;
|
||||
ch->buffer = b;
|
||||
|
||||
/* allocate PCM side DMA buffer */
|
||||
if (sndbuf_alloc(ch->buffer, sc->parent_dmat, UAUDIO_PCM_BUFF_SIZE) != 0) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
pa_dev = device_get_parent(sc->sc_dev);
|
||||
buf = end = sndbuf_getbuf(b);
|
||||
end += sndbuf_getsize(b);
|
||||
uaudio_chan_set_param_pcm_dma_buff(pa_dev, buf, end, ch->channel);
|
||||
|
||||
/* Create ua_playfmt[] & ua_recfmt[] */
|
||||
uaudio_query_formats(pa_dev, (u_int32_t *)&ua_playfmt, (u_int32_t *)&ua_recfmt);
|
||||
|
||||
ch->dir = dir;
|
||||
#ifndef NO_RECORDING
|
||||
ch->hwch = 1;
|
||||
if (dir == PCMDIR_PLAY)
|
||||
ch->hwch = 2;
|
||||
#else
|
||||
ch->hwch = 2;
|
||||
#endif
|
||||
|
||||
return ch;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_chan_setformat(kobj_t obj, void *data, u_int32_t format)
|
||||
{
|
||||
device_t pa_dev;
|
||||
struct ua_info *ua;
|
||||
|
||||
struct ua_chinfo *ch = data;
|
||||
|
||||
ua = ch->parent;
|
||||
pa_dev = device_get_parent(ua->sc_dev);
|
||||
uaudio_chan_set_param_format(pa_dev, format);
|
||||
|
||||
ch->fmt = format;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_chan_setspeed(kobj_t obj, void *data, u_int32_t speed)
|
||||
{
|
||||
device_t pa_dev;
|
||||
struct ua_info *ua;
|
||||
|
||||
struct ua_chinfo *ch = data;
|
||||
ch->spd = speed;
|
||||
|
||||
ua = ch->parent;
|
||||
pa_dev = device_get_parent(ua->sc_dev);
|
||||
uaudio_chan_set_param_speed(pa_dev, speed);
|
||||
|
||||
return ch->spd;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_chan_setblocksize(kobj_t obj, void *data, u_int32_t blocksize)
|
||||
{
|
||||
device_t pa_dev;
|
||||
struct ua_info *ua;
|
||||
struct ua_chinfo *ch = data;
|
||||
/* ch->blksz = blocksize; */
|
||||
if (blocksize) {
|
||||
ch->blksz = blocksize;
|
||||
} else {
|
||||
ch->blksz = UAUDIO_PCM_BUFF_SIZE/2;
|
||||
}
|
||||
|
||||
/* XXXXX */
|
||||
ua = ch->parent;
|
||||
pa_dev = device_get_parent(ua->sc_dev);
|
||||
uaudio_chan_set_param_blocksize(pa_dev, blocksize);
|
||||
|
||||
return ch->blksz;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_chan_trigger(kobj_t obj, void *data, int go)
|
||||
{
|
||||
device_t pa_dev;
|
||||
struct ua_info *ua;
|
||||
struct ua_chinfo *ch = data;
|
||||
|
||||
if (go == PCMTRIG_EMLDMAWR || go == PCMTRIG_EMLDMARD)
|
||||
return 0;
|
||||
|
||||
ua = ch->parent;
|
||||
pa_dev = device_get_parent(ua->sc_dev);
|
||||
|
||||
/* XXXXX */
|
||||
if (ch->dir == PCMDIR_PLAY) {
|
||||
if (go == PCMTRIG_START) {
|
||||
uaudio_trigger_output(pa_dev);
|
||||
} else {
|
||||
uaudio_halt_out_dma(pa_dev);
|
||||
}
|
||||
} else {
|
||||
#ifndef NO_RECORDING
|
||||
if (go == PCMTRIG_START)
|
||||
uaudio_trigger_input(pa_dev);
|
||||
else
|
||||
uaudio_halt_in_dma(pa_dev);
|
||||
#endif
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_chan_getptr(kobj_t obj, void *data)
|
||||
{
|
||||
device_t pa_dev;
|
||||
struct ua_info *ua;
|
||||
struct ua_chinfo *ch = data;
|
||||
|
||||
ua = ch->parent;
|
||||
pa_dev = device_get_parent(ua->sc_dev);
|
||||
|
||||
return uaudio_chan_getptr(pa_dev);
|
||||
}
|
||||
|
||||
static struct pcmchan_caps *
|
||||
ua_chan_getcaps(kobj_t obj, void *data)
|
||||
{
|
||||
struct ua_chinfo *ch = data;
|
||||
|
||||
return (ch->dir == PCMDIR_PLAY) ? &ua_playcaps : & ua_reccaps;
|
||||
}
|
||||
|
||||
static kobj_method_t ua_chan_methods[] = {
|
||||
KOBJMETHOD(channel_init, ua_chan_init),
|
||||
KOBJMETHOD(channel_setformat, ua_chan_setformat),
|
||||
KOBJMETHOD(channel_setspeed, ua_chan_setspeed),
|
||||
KOBJMETHOD(channel_setblocksize, ua_chan_setblocksize),
|
||||
KOBJMETHOD(channel_trigger, ua_chan_trigger),
|
||||
KOBJMETHOD(channel_getptr, ua_chan_getptr),
|
||||
KOBJMETHOD(channel_getcaps, ua_chan_getcaps),
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
CHANNEL_DECLARE(ua_chan);
|
||||
|
||||
/************************************************************/
|
||||
static int
|
||||
ua_mixer_init(struct snd_mixer *m)
|
||||
{
|
||||
u_int32_t mask;
|
||||
device_t pa_dev;
|
||||
struct ua_info *ua = mix_getdevinfo(m);
|
||||
|
||||
pa_dev = device_get_parent(ua->sc_dev);
|
||||
|
||||
mask = uaudio_query_mix_info(pa_dev);
|
||||
mix_setdevs(m, mask);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_mixer_set(struct snd_mixer *m, unsigned type, unsigned left, unsigned right)
|
||||
{
|
||||
device_t pa_dev;
|
||||
struct ua_info *ua = mix_getdevinfo(m);
|
||||
|
||||
pa_dev = device_get_parent(ua->sc_dev);
|
||||
uaudio_mixer_set(pa_dev, type, left, right);
|
||||
|
||||
return left | (right << 8);
|
||||
}
|
||||
|
||||
static int
|
||||
ua_mixer_setrecsrc(struct snd_mixer *m, u_int32_t src)
|
||||
{
|
||||
return src;
|
||||
}
|
||||
|
||||
static kobj_method_t ua_mixer_methods[] = {
|
||||
KOBJMETHOD(mixer_init, ua_mixer_init),
|
||||
KOBJMETHOD(mixer_set, ua_mixer_set),
|
||||
KOBJMETHOD(mixer_setrecsrc, ua_mixer_setrecsrc),
|
||||
|
||||
{ 0, 0 }
|
||||
};
|
||||
MIXER_DECLARE(ua_mixer);
|
||||
/************************************************************/
|
||||
|
||||
|
||||
static int
|
||||
ua_probe(device_t dev)
|
||||
{
|
||||
char *s;
|
||||
struct sndcard_func *func;
|
||||
|
||||
/* The parent device has already been probed. */
|
||||
|
||||
func = device_get_ivars(dev);
|
||||
if (func == NULL || func->func != SCF_PCM)
|
||||
return (ENXIO);
|
||||
|
||||
s = "USB Audio";
|
||||
|
||||
device_set_desc(dev, s);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_attach(device_t dev)
|
||||
{
|
||||
struct ua_info *ua;
|
||||
char status[SND_STATUSLEN];
|
||||
unsigned int bufsz;
|
||||
|
||||
ua = (struct ua_info *)malloc(sizeof *ua, M_DEVBUF, M_NOWAIT);
|
||||
if (!ua)
|
||||
return ENXIO;
|
||||
bzero(ua, sizeof *ua);
|
||||
|
||||
ua->sc_dev = dev;
|
||||
|
||||
bufsz = pcm_getbuffersize(dev, 4096, UAUDIO_PCM_BUFF_SIZE, 65536);
|
||||
|
||||
if (bus_dma_tag_create(/*parent*/NULL, /*alignment*/2, /*boundary*/0,
|
||||
/*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
|
||||
/*highaddr*/BUS_SPACE_MAXADDR,
|
||||
/*filter*/NULL, /*filterarg*/NULL,
|
||||
/*maxsize*/bufsz, /*nsegments*/1,
|
||||
/*maxsegz*/0x3fff, /*flags*/0,
|
||||
&ua->parent_dmat) != 0) {
|
||||
device_printf(dev, "unable to create dma tag\n");
|
||||
goto bad;
|
||||
}
|
||||
|
||||
if (mixer_init(dev, &ua_mixer_class, ua)) {
|
||||
return(ENXIO);
|
||||
}
|
||||
|
||||
snprintf(status, SND_STATUSLEN, "at addr ?");
|
||||
|
||||
if (pcm_register(dev, ua, 1, 0)) {
|
||||
return(ENXIO);
|
||||
}
|
||||
|
||||
pcm_addchan(dev, PCMDIR_PLAY, &ua_chan_class, ua);
|
||||
#ifndef NO_RECORDING
|
||||
pcm_addchan(dev, PCMDIR_REC, &ua_chan_class, ua);
|
||||
#endif
|
||||
pcm_setstatus(dev, status);
|
||||
|
||||
return 0;
|
||||
bad:
|
||||
if (ua->parent_dmat)
|
||||
bus_dma_tag_destroy(ua->parent_dmat);
|
||||
free(ua, M_DEVBUF);
|
||||
|
||||
return ENXIO;
|
||||
}
|
||||
|
||||
static int
|
||||
ua_detach(device_t dev)
|
||||
{
|
||||
int r;
|
||||
struct ua_info *sc;
|
||||
|
||||
r = pcm_unregister(dev);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
sc = pcm_getdevinfo(dev);
|
||||
bus_dma_tag_destroy(sc->parent_dmat);
|
||||
free(sc, M_DEVBUF);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/************************************************************/
|
||||
|
||||
static device_method_t ua_pcm_methods[] = {
|
||||
/* Device interface */
|
||||
DEVMETHOD(device_probe, ua_probe),
|
||||
DEVMETHOD(device_attach, ua_attach),
|
||||
DEVMETHOD(device_detach, ua_detach),
|
||||
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
static driver_t ua_pcm_driver = {
|
||||
"pcm",
|
||||
ua_pcm_methods,
|
||||
PCM_SOFTC_SIZE,
|
||||
};
|
||||
|
||||
static devclass_t pcm_devclass;
|
||||
|
||||
DRIVER_MODULE(ua_pcm, uaudio, ua_pcm_driver, pcm_devclass, 0, 0);
|
||||
MODULE_DEPEND(ua_pcm, uaudio, 1, 1, 1);
|
||||
MODULE_DEPEND(ua_pcm, snd_pcm, PCM_MINVER, PCM_PREFVER, PCM_MAXVER);
|
||||
MODULE_VERSION(ua_pcm, 1);
|
384
sys/dev/sound/usb/uaudioreg.h
Normal file
384
sys/dev/sound/usb/uaudioreg.h
Normal file
@ -0,0 +1,384 @@
|
||||
/* $NetBSD: uaudioreg.h,v 1.7 2000/12/28 00:29:58 augustss Exp $ */
|
||||
/* $FreeBSD$ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Lennart Augustsson (lennart@augustsson.net) at
|
||||
* Carlstedt Research & Technology.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#define UAUDIO_VERSION 0x100
|
||||
|
||||
#define UDESC_CS_DEVICE 0x21
|
||||
#define UDESC_CS_CONFIG 0x22
|
||||
#define UDESC_CS_STRING 0x23
|
||||
#define UDESC_CS_INTERFACE 0x24
|
||||
#define UDESC_CS_ENDPOINT 0x25
|
||||
|
||||
#define UDESCSUB_AC_HEADER 1
|
||||
#define UDESCSUB_AC_INPUT 2
|
||||
#define UDESCSUB_AC_OUTPUT 3
|
||||
#define UDESCSUB_AC_MIXER 4
|
||||
#define UDESCSUB_AC_SELECTOR 5
|
||||
#define UDESCSUB_AC_FEATURE 6
|
||||
#define UDESCSUB_AC_PROCESSING 7
|
||||
#define UDESCSUB_AC_EXTENSION 8
|
||||
|
||||
#if defined(__FreeBSD__) && (__FreeBSD_version <= 500014)
|
||||
#define UPACKED __attribute__ ((packed))
|
||||
#endif
|
||||
|
||||
/* The first fields are identical to usb_endpoint_descriptor_t */
|
||||
typedef struct {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bEndpointAddress;
|
||||
uByte bmAttributes;
|
||||
uWord wMaxPacketSize;
|
||||
uByte bInterval;
|
||||
/*
|
||||
* The following two entries are only used by the Audio Class.
|
||||
* And according to the specs the Audio Class is the only one
|
||||
* allowed to extend the endpoint descriptor.
|
||||
* Who knows what goes on in the minds of the people in the USB
|
||||
* standardization? :-(
|
||||
*/
|
||||
uByte bRefresh;
|
||||
uByte bSynchAddress;
|
||||
} UPACKED usb_endpoint_descriptor_audio_t;
|
||||
|
||||
struct usb_audio_control_descriptor {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uWord bcdADC;
|
||||
uWord wTotalLength;
|
||||
uByte bInCollection;
|
||||
uByte baInterfaceNr[1];
|
||||
} UPACKED;
|
||||
|
||||
struct usb_audio_streaming_interface_descriptor {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bTerminalLink;
|
||||
uByte bDelay;
|
||||
uWord wFormatTag;
|
||||
} UPACKED;
|
||||
|
||||
struct usb_audio_streaming_endpoint_descriptor {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bmAttributes;
|
||||
uByte bLockDelayUnits;
|
||||
uWord wLockDelay;
|
||||
} UPACKED;
|
||||
|
||||
struct usb_audio_streaming_type1_descriptor {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bFormatType;
|
||||
uByte bNrChannels;
|
||||
uByte bSubFrameSize;
|
||||
uByte bBitResolution;
|
||||
uByte bSamFreqType;
|
||||
#define UA_SAMP_CONTNUOUS 0
|
||||
uByte tSamFreq[3*2]; /* room for low and high */
|
||||
#define UA_GETSAMP(p, n) ((p)->tSamFreq[(n)*3+0] | ((p)->tSamFreq[(n)*3+1] << 8) | ((p)->tSamFreq[(n)*3+2] << 16))
|
||||
#define UA_SAMP_LO(p) UA_GETSAMP(p, 0)
|
||||
#define UA_SAMP_HI(p) UA_GETSAMP(p, 1)
|
||||
} UPACKED;
|
||||
|
||||
struct usb_audio_cluster {
|
||||
uByte bNrChannels;
|
||||
uWord wChannelConfig;
|
||||
uByte iChannelNames;
|
||||
} UPACKED;
|
||||
|
||||
/* UDESCSUB_AC_INPUT */
|
||||
struct usb_audio_input_terminal {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bTerminalId;
|
||||
uWord wTerminalType;
|
||||
uByte bAssocTerminal;
|
||||
uByte bNrChannels;
|
||||
uWord wChannelConfig;
|
||||
uByte iChannelNames;
|
||||
uByte iTerminal;
|
||||
} UPACKED;
|
||||
|
||||
/* UDESCSUB_AC_OUTPUT */
|
||||
struct usb_audio_output_terminal {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bTerminalId;
|
||||
uWord wTerminalType;
|
||||
uByte bAssocTerminal;
|
||||
uByte bSourceId;
|
||||
uByte iTerminal;
|
||||
} UPACKED;
|
||||
|
||||
/* UDESCSUB_AC_MIXER */
|
||||
struct usb_audio_mixer_unit {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bUnitId;
|
||||
uByte bNrInPins;
|
||||
uByte baSourceId[255]; /* [bNrInPins] */
|
||||
/* struct usb_audio_mixer_unit_1 */
|
||||
} UPACKED;
|
||||
struct usb_audio_mixer_unit_1 {
|
||||
uByte bNrChannels;
|
||||
uWord wChannelConfig;
|
||||
uByte iChannelNames;
|
||||
uByte bmControls[255]; /* [bNrChannels] */
|
||||
/*uByte iMixer;*/
|
||||
} UPACKED;
|
||||
|
||||
/* UDESCSUB_AC_SELECTOR */
|
||||
struct usb_audio_selector_unit {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bUnitId;
|
||||
uByte bNrInPins;
|
||||
uByte baSourceId[255]; /* [bNrInPins] */
|
||||
/* uByte iSelector; */
|
||||
} UPACKED;
|
||||
|
||||
/* UDESCSUB_AC_FEATURE */
|
||||
struct usb_audio_feature_unit {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bUnitId;
|
||||
uByte bSourceId;
|
||||
uByte bControlSize;
|
||||
uByte bmaControls[255]; /* size for more than enough */
|
||||
/* uByte iFeature; */
|
||||
} UPACKED;
|
||||
|
||||
/* UDESCSUB_AC_PROCESSING */
|
||||
struct usb_audio_processing_unit {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bUnitId;
|
||||
uWord wProcessType;
|
||||
uByte bNrInPins;
|
||||
uByte baSourceId[255]; /* [bNrInPins] */
|
||||
/* struct usb_audio_processing_unit_1 */
|
||||
} UPACKED;
|
||||
struct usb_audio_processing_unit_1{
|
||||
uByte bNrChannels;
|
||||
uWord wChannelConfig;
|
||||
uByte iChannelNames;
|
||||
uByte bControlSize;
|
||||
uByte bmControls[255]; /* [bControlSize] */
|
||||
#define UA_PROC_ENABLE_MASK 1
|
||||
} UPACKED;
|
||||
|
||||
struct usb_audio_processing_unit_updown {
|
||||
uByte iProcessing;
|
||||
uByte bNrModes;
|
||||
uWord waModes[255]; /* [bNrModes] */
|
||||
} UPACKED;
|
||||
|
||||
/* UDESCSUB_AC_EXTENSION */
|
||||
struct usb_audio_extension_unit {
|
||||
uByte bLength;
|
||||
uByte bDescriptorType;
|
||||
uByte bDescriptorSubtype;
|
||||
uByte bUnitId;
|
||||
uWord wExtensionCode;
|
||||
uByte bNrInPins;
|
||||
uByte baSourceId[255]; /* [bNrInPins] */
|
||||
/* struct usb_audio_extension_unit_1 */
|
||||
} UPACKED;
|
||||
struct usb_audio_extension_unit_1 {
|
||||
uByte bNrChannels;
|
||||
uWord wChannelConfig;
|
||||
uByte iChannelNames;
|
||||
uByte bControlSize;
|
||||
uByte bmControls[255]; /* [bControlSize] */
|
||||
#define UA_EXT_ENABLE_MASK 1
|
||||
#define UA_EXT_ENABLE 1
|
||||
/*uByte iExtension;*/
|
||||
} UPACKED;
|
||||
|
||||
/* USB terminal types */
|
||||
#define UAT_UNDEFINED 0x0100
|
||||
#define UAT_STREAM 0x0101
|
||||
#define UAT_VENDOR 0x01ff
|
||||
/* input terminal types */
|
||||
#define UATI_UNDEFINED 0x0200
|
||||
#define UATI_MICROPHONE 0x0201
|
||||
#define UATI_DESKMICROPHONE 0x0202
|
||||
#define UATI_PERSONALMICROPHONE 0x0203
|
||||
#define UATI_OMNIMICROPHONE 0x0204
|
||||
#define UATI_MICROPHONEARRAY 0x0205
|
||||
#define UATI_PROCMICROPHONEARR 0x0206
|
||||
/* output terminal types */
|
||||
#define UATO_UNDEFINED 0x0300
|
||||
#define UATO_SPEAKER 0x0301
|
||||
#define UATO_HEADPHONES 0x0302
|
||||
#define UATO_DISPLAYAUDIO 0x0303
|
||||
#define UATO_DESKTOPSPEAKER 0x0304
|
||||
#define UATO_ROOMSPEAKER 0x0305
|
||||
#define UATO_COMMSPEAKER 0x0306
|
||||
#define UATO_SUBWOOFER 0x0307
|
||||
/* bidir terminal types */
|
||||
#define UATB_UNDEFINED 0x0400
|
||||
#define UATB_HANDSET 0x0401
|
||||
#define UATB_HEADSET 0x0402
|
||||
#define UATB_SPEAKERPHONE 0x0403
|
||||
#define UATB_SPEAKERPHONEESUP 0x0404
|
||||
#define UATB_SPEAKERPHONEECANC 0x0405
|
||||
/* telephony terminal types */
|
||||
#define UATT_UNDEFINED 0x0500
|
||||
#define UATT_PHONELINE 0x0501
|
||||
#define UATT_TELEPHONE 0x0502
|
||||
#define UATT_DOWNLINEPHONE 0x0503
|
||||
/* external terminal types */
|
||||
#define UATE_UNDEFINED 0x0600
|
||||
#define UATE_ANALOGCONN 0x0601
|
||||
#define UATE_DIGITALAUIFC 0x0602
|
||||
#define UATE_LINECONN 0x0603
|
||||
#define UATE_LEGACYCONN 0x0604
|
||||
#define UATE_SPDIF 0x0605
|
||||
#define UATE_1394DA 0x0606
|
||||
#define UATE_1394DV 0x0607
|
||||
/* embedded function terminal types */
|
||||
#define UATF_UNDEFINED 0x0700
|
||||
#define UATF_CALIBNOISE 0x0701
|
||||
#define UATF_EQUNOISE 0x0702
|
||||
#define UATF_CDPLAYER 0x0703
|
||||
#define UATF_DAT 0x0704
|
||||
#define UATF_DCC 0x0705
|
||||
#define UATF_MINIDISK 0x0706
|
||||
#define UATF_ANALOGTAPE 0x0707
|
||||
#define UATF_PHONOGRAPH 0x0708
|
||||
#define UATF_VCRAUDIO 0x0709
|
||||
#define UATF_VIDEODISCAUDIO 0x070a
|
||||
#define UATF_DVDAUDIO 0x070b
|
||||
#define UATF_TVTUNERAUDIO 0x070c
|
||||
#define UATF_SATELLITE 0x070d
|
||||
#define UATF_CABLETUNER 0x070e
|
||||
#define UATF_DSS 0x070f
|
||||
#define UATF_RADIORECV 0x0710
|
||||
#define UATF_RADIOXMIT 0x0711
|
||||
#define UATF_MULTITRACK 0x0712
|
||||
#define UATF_SYNTHESIZER 0x0713
|
||||
|
||||
|
||||
#define SET_CUR 0x01
|
||||
#define GET_CUR 0x81
|
||||
#define SET_MIN 0x02
|
||||
#define GET_MIN 0x82
|
||||
#define SET_MAX 0x03
|
||||
#define GET_MAX 0x83
|
||||
#define SET_RES 0x04
|
||||
#define GET_RES 0x84
|
||||
#define SET_MEM 0x05
|
||||
#define GET_MEM 0x85
|
||||
#define GET_STAT 0xff
|
||||
|
||||
#define MUTE_CONTROL 0x01
|
||||
#define VOLUME_CONTROL 0x02
|
||||
#define BASS_CONTROL 0x03
|
||||
#define MID_CONTROL 0x04
|
||||
#define TREBLE_CONTROL 0x05
|
||||
#define GRAPHIC_EQUALIZER_CONTROL 0x06
|
||||
#define AGC_CONTROL 0x07
|
||||
#define DELAY_CONTROL 0x08
|
||||
#define BASS_BOOST_CONTROL 0x09
|
||||
#define LOUDNESS_CONTROL 0x0a
|
||||
|
||||
#define FU_MASK(u) (1 << ((u)-1))
|
||||
|
||||
#define MASTER_CHAN 0
|
||||
|
||||
#define AS_GENERAL 1
|
||||
#define FORMAT_TYPE 2
|
||||
#define FORMAT_SPECIFIC 3
|
||||
|
||||
#define UA_FMT_PCM 1
|
||||
#define UA_FMT_PCM8 2
|
||||
#define UA_FMT_IEEE_FLOAT 3
|
||||
#define UA_FMT_ALAW 4
|
||||
#define UA_FMT_MULAW 5
|
||||
|
||||
#define SAMPLING_FREQ_CONTROL 0x01
|
||||
|
||||
#define FORMAT_TYPE_UNDEFINED 0
|
||||
#define FORMAT_TYPE_I 1
|
||||
#define FORMAT_TYPE_II 2
|
||||
#define FORMAT_TYPE_III 3
|
||||
|
||||
#define UA_PROC_MASK(n) (1<< ((n)-1))
|
||||
#define PROCESS_UNDEFINED 0
|
||||
#define XX_ENABLE_CONTROL 1
|
||||
#define UPDOWNMIX_PROCESS 1
|
||||
#define UD_ENABLE_CONTROL 1
|
||||
#define UD_MODE_SELECT_CONTROL 2
|
||||
#define DOLBY_PROLOGIC_PROCESS 2
|
||||
#define DP_ENABLE_CONTROL 1
|
||||
#define DP_MODE_SELECT_CONTROL 2
|
||||
#define P3D_STEREO_EXTENDER_PROCESS 3
|
||||
#define P3D_ENABLE_CONTROL 1
|
||||
#define P3D_SPACIOUSNESS_CONTROL 2
|
||||
#define REVERBATION_PROCESS 4
|
||||
#define RV_ENABLE_CONTROL 1
|
||||
#define RV_LEVEL_CONTROL 2
|
||||
#define RV_TIME_CONTROL 3
|
||||
#define RV_FEEDBACK_CONTROL 4
|
||||
#define CHORUS_PROCESS 5
|
||||
#define CH_ENABLE_CONTROL 1
|
||||
#define CH_LEVEL_CONTROL 2
|
||||
#define CH_RATE_CONTROL 3
|
||||
#define CH_DEPTH_CONTROL 4
|
||||
#define DYN_RANGE_COMP_PROCESS 6
|
||||
#define DR_ENABLE_CONTROL 1
|
||||
#define DR_COMPRESSION_RATE_CONTROL 2
|
||||
#define DR_MAXAMPL_CONTROL 3
|
||||
#define DR_THRESHOLD_CONTROL 4
|
||||
#define DR_ATTACK_TIME_CONTROL 5
|
||||
#define DR_RELEASE_TIME_CONTROL 6
|
||||
|
@ -3,6 +3,6 @@
|
||||
SUBDIR = als4000 ad1816 cmi cs4281 csa ds1 emu10k1 es137x ess
|
||||
SUBDIR += fm801 ich maestro maestro3 mss neomagic sb16 sb8 sbc solo
|
||||
SUBDIR += t4dwave via82c686 vibes
|
||||
SUBDIR += driver
|
||||
SUBDIR += driver uaudio
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
9
sys/modules/sound/driver/uaudio/Makefile
Normal file
9
sys/modules/sound/driver/uaudio/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../dev/sound/usb
|
||||
|
||||
KMOD= snd_uaudio
|
||||
SRCS= device_if.h bus_if.h opt_usb.h vnode_if.h isa_if.h
|
||||
SRCS+= uaudio.c uaudio_pcm.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
Loading…
x
Reference in New Issue
Block a user